|
Synapseml
1.0.4
|
AddDocuments implements AddDocuments More...


Public Member Functions | |
| AddDocuments () | |
| Creates a AddDocuments without any parameters. More... | |
| AddDocuments (string uid) | |
| Creates a AddDocuments with a UID that is used to give the AddDocuments a unique ID. More... | |
| AddDocuments | SetAADToken (string value) |
| Sets value for AADToken More... | |
| AddDocuments | SetAADTokenCol (string value) |
| Sets value for AADToken column More... | |
| AddDocuments | SetCustomAuthHeader (string value) |
| Sets value for CustomAuthHeader More... | |
| AddDocuments | SetCustomAuthHeaderCol (string value) |
| Sets value for CustomAuthHeader column More... | |
| AddDocuments | SetActionCol (string value) |
| Sets value for actionCol More... | |
| AddDocuments | SetBatchSize (int value) |
| Sets value for batchSize More... | |
| AddDocuments | SetConcurrency (int value) |
| Sets value for concurrency More... | |
| AddDocuments | SetConcurrentTimeout (double value) |
| Sets value for concurrentTimeout More... | |
| AddDocuments | SetErrorCol (string value) |
| Sets value for errorCol More... | |
| AddDocuments | SetHandler (object value) |
| Sets value for handler More... | |
| AddDocuments | SetIndexName (string value) |
| Sets value for indexName More... | |
| AddDocuments | SetOutputCol (string value) |
| Sets value for outputCol More... | |
| AddDocuments | SetServiceName (string value) |
| Sets value for serviceName More... | |
| AddDocuments | SetSubscriptionKey (string value) |
| Sets value for subscriptionKey More... | |
| AddDocuments | SetSubscriptionKeyCol (string value) |
| Sets value for subscriptionKey column More... | |
| AddDocuments | SetTimeout (double value) |
| Sets value for timeout More... | |
| AddDocuments | SetUrl (string value) |
| Sets value for url More... | |
| string | GetAADToken () |
| Gets AADToken value More... | |
| string | GetCustomAuthHeader () |
| Gets CustomAuthHeader value More... | |
| string | GetActionCol () |
| Gets actionCol value More... | |
| int | GetBatchSize () |
| Gets batchSize value More... | |
| int | GetConcurrency () |
| Gets concurrency value More... | |
| double | GetConcurrentTimeout () |
| Gets concurrentTimeout value More... | |
| string | GetErrorCol () |
| Gets errorCol value More... | |
| object | GetHandler () |
| Gets handler value More... | |
| string | GetIndexName () |
| Gets indexName value More... | |
| string | GetOutputCol () |
| Gets outputCol value More... | |
| string | GetServiceName () |
| Gets serviceName value More... | |
| string | GetSubscriptionKey () |
| Gets subscriptionKey value More... | |
| double | GetTimeout () |
| Gets timeout value More... | |
| string | GetUrl () |
| Gets url value More... | |
| void | Save (string path) |
| Saves the object so that it can be loaded later using Load. Note that these objects can be shared with Scala by Loading or Saving in Scala. More... | |
| JavaMLWriter | Write () |
| |
| JavaMLReader< AddDocuments > | Read () |
| Get the corresponding JavaMLReader instance. More... | |
| AddDocuments | SetCustomServiceName (string value) |
| Sets value for service name More... | |
| AddDocuments | SetEndpoint (string value) |
| Sets value for endpoint More... | |
Static Public Member Functions | |
| static AddDocuments | Load (string path) |
| Loads the AddDocuments that was previously saved using Save(string). More... | |
AddDocuments implements AddDocuments
|
inline |
Creates a AddDocuments without any parameters.
|
inline |
Creates a AddDocuments with a UID that is used to give the AddDocuments a unique ID.
| uid | An immutable unique ID for the object and its derivatives. |
| string Synapse.ML.Services.Search.AddDocuments.GetAADToken | ( | ) |
Gets AADToken value
| string Synapse.ML.Services.Search.AddDocuments.GetActionCol | ( | ) |
Gets actionCol value
| int Synapse.ML.Services.Search.AddDocuments.GetBatchSize | ( | ) |
Gets batchSize value
| int Synapse.ML.Services.Search.AddDocuments.GetConcurrency | ( | ) |
Gets concurrency value
| double Synapse.ML.Services.Search.AddDocuments.GetConcurrentTimeout | ( | ) |
Gets concurrentTimeout value
| string Synapse.ML.Services.Search.AddDocuments.GetCustomAuthHeader | ( | ) |
Gets CustomAuthHeader value
| string Synapse.ML.Services.Search.AddDocuments.GetErrorCol | ( | ) |
Gets errorCol value
| object Synapse.ML.Services.Search.AddDocuments.GetHandler | ( | ) |
Gets handler value
| string Synapse.ML.Services.Search.AddDocuments.GetIndexName | ( | ) |
Gets indexName value
| string Synapse.ML.Services.Search.AddDocuments.GetOutputCol | ( | ) |
Gets outputCol value
| string Synapse.ML.Services.Search.AddDocuments.GetServiceName | ( | ) |
Gets serviceName value
| string Synapse.ML.Services.Search.AddDocuments.GetSubscriptionKey | ( | ) |
Gets subscriptionKey value
| double Synapse.ML.Services.Search.AddDocuments.GetTimeout | ( | ) |
Gets timeout value
| string Synapse.ML.Services.Search.AddDocuments.GetUrl | ( | ) |
Gets url value
|
static |
Loads the AddDocuments that was previously saved using Save(string).
| path | The path the previous AddDocuments was saved to |
| JavaMLReader<AddDocuments> Synapse.ML.Services.Search.AddDocuments.Read | ( | ) |
Get the corresponding JavaMLReader instance.
| void Synapse.ML.Services.Search.AddDocuments.Save | ( | string | path | ) |
Saves the object so that it can be loaded later using Load. Note that these objects can be shared with Scala by Loading or Saving in Scala.
| path | The path to save the object to |
| AddDocuments Synapse.ML.Services.Search.AddDocuments.SetAADToken | ( | string | value | ) |
Sets value for AADToken
| value | AAD Token used for authentication |
| AddDocuments Synapse.ML.Services.Search.AddDocuments.SetAADTokenCol | ( | string | value | ) |
Sets value for AADToken column
| value | AAD Token used for authentication |
| AddDocuments Synapse.ML.Services.Search.AddDocuments.SetActionCol | ( | string | value | ) |
Sets value for actionCol
| value | You can combine actions, such as an upload and a delete, in the same batch. upload: An upload action is similar to an 'upsert' where the document will be inserted if it is new and updated/replaced if it exists. Note that all fields are replaced in the update case. merge: Merge updates an existing document with the specified fields. If the document doesn't exist, the merge will fail. Any field you specify in a merge will replace the existing field in the document. This includes fields of type Collection(Edm.String). For example, if the document contains a field 'tags' with value ['budget'] and you execute a merge with value ['economy', 'pool'] for 'tags', the final value of the 'tags' field will be ['economy', 'pool']. It will not be ['budget', 'economy', 'pool']. mergeOrUpload: This action behaves like merge if a document with the given key already exists in the index. If the document does not exist, it behaves like upload with a new document. delete: Delete removes the specified document from the index. Note that any field you specify in a delete operation, other than the key field, will be ignored. If you want to remove an individual field from a document, use merge instead and simply set the field explicitly to null. |
| AddDocuments Synapse.ML.Services.Search.AddDocuments.SetBatchSize | ( | int | value | ) |
| AddDocuments Synapse.ML.Services.Search.AddDocuments.SetConcurrency | ( | int | value | ) |
Sets value for concurrency
| value | max number of concurrent calls |
| AddDocuments Synapse.ML.Services.Search.AddDocuments.SetConcurrentTimeout | ( | double | value | ) |
Sets value for concurrentTimeout
| value | max number seconds to wait on futures if concurrency >= 1 |
| AddDocuments Synapse.ML.Services.Search.AddDocuments.SetCustomAuthHeader | ( | string | value | ) |
Sets value for CustomAuthHeader
| value | A Custom Value for Authorization Header |
| AddDocuments Synapse.ML.Services.Search.AddDocuments.SetCustomAuthHeaderCol | ( | string | value | ) |
Sets value for CustomAuthHeader column
| value | A Custom Value for Authorization Header |
| AddDocuments Synapse.ML.Services.Search.AddDocuments.SetCustomServiceName | ( | string | value | ) |
Sets value for service name
| value | Service name of the cognitive service if it's custom domain |
| AddDocuments Synapse.ML.Services.Search.AddDocuments.SetEndpoint | ( | string | value | ) |
Sets value for endpoint
| value | Endpoint of the cognitive service |
| AddDocuments Synapse.ML.Services.Search.AddDocuments.SetErrorCol | ( | string | value | ) |
| AddDocuments Synapse.ML.Services.Search.AddDocuments.SetHandler | ( | object | value | ) |
Sets value for handler
| value | Which strategy to use when handling requests |
| AddDocuments Synapse.ML.Services.Search.AddDocuments.SetIndexName | ( | string | value | ) |
| AddDocuments Synapse.ML.Services.Search.AddDocuments.SetOutputCol | ( | string | value | ) |
Sets value for outputCol
| value | The name of the output column |
| AddDocuments Synapse.ML.Services.Search.AddDocuments.SetServiceName | ( | string | value | ) |
| AddDocuments Synapse.ML.Services.Search.AddDocuments.SetSubscriptionKey | ( | string | value | ) |
| AddDocuments Synapse.ML.Services.Search.AddDocuments.SetSubscriptionKeyCol | ( | string | value | ) |
Sets value for subscriptionKey column
| value | the API key to use |
| AddDocuments Synapse.ML.Services.Search.AddDocuments.SetTimeout | ( | double | value | ) |
Sets value for timeout
| value | number of seconds to wait before closing the connection |
| AddDocuments Synapse.ML.Services.Search.AddDocuments.SetUrl | ( | string | value | ) |
1.8.17