-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SAJARI-2744 Release for UpdateRecord support in the SDK
- Loading branch information
1 parent
5b6964a
commit fb5e6ad
Showing
147 changed files
with
2,599 additions
and
1,282 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
5.0.0-SNAPSHOT | ||
5.3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
# Com.Sajari.Sdk.Model.BatchCreateSchemaFieldsRequest | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
# Com.Sajari.Sdk.Model.BatchCreateSchemaFieldsResponse | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**Fields** | [**List<SchemaField>**](SchemaField.md) | Schema fields created. | [optional] | ||
**Errors** | [**List<BatchCreateSchemaFieldsResponseError>**](BatchCreateSchemaFieldsResponseError.md) | Errors that occurred. | [optional] | ||
**Fields** | [**List<SchemaField>**](SchemaField.md) | Schema fields created. | [optional] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
# Com.Sajari.Sdk.Model.BatchCreateSchemaFieldsResponseError | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
# Com.Sajari.Sdk.Model.BatchUpsertRecordsRequest | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**Pipeline** | [**BatchUpsertRecordsRequestPipeline**](BatchUpsertRecordsRequestPipeline.md) | | [optional] | ||
**Records** | **List<Object>** | A list of records to upsert. | | ||
**Variables** | **Object** | The initial values for the variables the pipeline operates on and transforms throughout its steps. | [optional] | ||
**Records** | **List<Object>** | A list of records to upsert. A maximum of 200 records can be upsert in a batch. | | ||
**Variables** | **Dictionary<string, Object>** | The initial values for the variables the pipeline operates on and transforms throughout its steps. | [optional] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
# Com.Sajari.Sdk.Model.BatchUpsertRecordsRequestPipeline | ||
The pipeline to use when upserting the records. If not provided the default record pipeline is used. | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**Name** | **string** | The record pipeline's name, e.g. `my-pipeline`. | | ||
**Version** | **string** | The record pipeline's version, e.g. `42`. If not provided the default version is used. | [optional] | ||
**_Version** | **string** | The record pipeline's version, e.g. `42`. If not provided the default version is used. | [optional] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
# Com.Sajari.Sdk.Model.BatchUpsertRecordsResponse | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**Errors** | [**List<BatchUpsertRecordsResponseError>**](BatchUpsertRecordsResponseError.md) | Errors that occurred. | [optional] | ||
**Keys** | [**List<BatchUpsertRecordsResponseKey>**](BatchUpsertRecordsResponseKey.md) | A list of keys of the records that were inserted. If a record was inserted, keys contains an entry containing the index of the inserted record from `records` and the key. You can use the key if you need to retrieve or delete the record. If a record was updated, keys contains no such entry for the updated record. | [optional] | ||
**Variables** | [**List<BatchUpsertRecordsResponseVariables>**](BatchUpsertRecordsResponseVariables.md) | A list of modified variables returned by the pipeline after it has finished processing each record. | [optional] | ||
**Errors** | [**List<BatchUpsertRecordsResponseError>**](BatchUpsertRecordsResponseError.md) | Errors that occurred. | [optional] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
# Com.Sajari.Sdk.Model.BatchUpsertRecordsResponseError | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
# Com.Sajari.Sdk.Model.BatchUpsertRecordsResponseKey | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
# Com.Sajari.Sdk.Model.BatchUpsertRecordsResponseVariables | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**Index** | **int** | Index of the record in `records` that these variables correspond to. | [optional] | ||
**Variables** | **Object** | The variables. | [optional] | ||
**Variables** | **Dictionary<string, Object>** | The variables. | [optional] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
# Com.Sajari.Sdk.Model.Collection | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**Id** | **string** | Output only. The collection's ID. | [optional] [readonly] | ||
**AccountId** | **string** | Output only. The ID of the account that owns this collection. | [optional] [readonly] | ||
**CreateTime** | **DateTime** | Output only. Creation time of the collection. | [optional] [readonly] | ||
**DisplayName** | **string** | The collection's display name. You can change this at any time. | | ||
**AuthorizedQueryDomains** | **List<string>** | The list of authorized query domains for the collection. Client-side / browser requests to the [QueryCollection](/api#operation/QueryCollection) call can be made by any authorized query domain or any of its subdomains. This allows your interface to make search requests without having to provide an API key in the client-side request. | [optional] | ||
**CreateTime** | **DateTime** | Output only. Time the collection was created. | [optional] [readonly] | ||
**DisplayName** | **string** | The collection's display name. You can change this at any time. | | ||
**Id** | **string** | Output only. The collection's ID. | [optional] [readonly] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
Oops, something went wrong.