aws-sdk 2.1656.0 → 2.1657.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/apis/datazone-2018-05-10.min.json +8 -2
- package/apis/fsx-2018-03-01.min.json +7 -1
- package/apis/opensearch-2021-01-01.min.json +141 -98
- package/apis/sagemaker-2017-07-24.min.json +1129 -801
- package/apis/sagemaker-2017-07-24.paginators.json +6 -0
- package/clients/fsx.d.ts +22 -18
- package/clients/opensearch.d.ts +53 -0
- package/clients/sagemaker.d.ts +389 -0
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +6 -6
- package/dist/aws-sdk.js +3 -3
- package/dist/aws-sdk.min.js +2 -2
- package/lib/core.js +1 -1
- package/package.json +1 -1
@@ -318,6 +318,12 @@
|
|
318
318
|
"limit_key": "MaxResults",
|
319
319
|
"result_key": "NotebookInstances"
|
320
320
|
},
|
321
|
+
"ListOptimizationJobs": {
|
322
|
+
"input_token": "NextToken",
|
323
|
+
"output_token": "NextToken",
|
324
|
+
"limit_key": "MaxResults",
|
325
|
+
"result_key": "OptimizationJobSummaries"
|
326
|
+
},
|
321
327
|
"ListPipelineExecutionSteps": {
|
322
328
|
"input_token": "NextToken",
|
323
329
|
"output_token": "NextToken",
|
package/clients/fsx.d.ts
CHANGED
@@ -390,7 +390,7 @@ declare namespace FSx {
|
|
390
390
|
export interface AdministrativeAction {
|
391
391
|
AdministrativeActionType?: AdministrativeActionType;
|
392
392
|
/**
|
393
|
-
* The percentage-complete status of a STORAGE_OPTIMIZATION administrative action. Does not apply to any other administrative action type.
|
393
|
+
* The percentage-complete status of a STORAGE_OPTIMIZATION or DOWNLOAD_DATA_FROM_BACKUP administrative action. Does not apply to any other administrative action type.
|
394
394
|
*/
|
395
395
|
ProgressPercent?: ProgressPercent;
|
396
396
|
/**
|
@@ -398,7 +398,7 @@ declare namespace FSx {
|
|
398
398
|
*/
|
399
399
|
RequestTime?: RequestTime;
|
400
400
|
/**
|
401
|
-
* The status of the administrative action, as follows: FAILED - Amazon FSx failed to process the administrative action successfully. IN_PROGRESS - Amazon FSx is processing the administrative action. PENDING - Amazon FSx is waiting to process the administrative action. COMPLETED - Amazon FSx has finished processing the administrative task. UPDATED_OPTIMIZING - For a storage-capacity increase update, Amazon FSx has updated the file system with the new storage capacity, and is now performing the storage-optimization process.
|
401
|
+
* The status of the administrative action, as follows: FAILED - Amazon FSx failed to process the administrative action successfully. IN_PROGRESS - Amazon FSx is processing the administrative action. PENDING - Amazon FSx is waiting to process the administrative action. COMPLETED - Amazon FSx has finished processing the administrative task. For a backup restore to a second-generation FSx for ONTAP file system, indicates that all data has been downloaded to the volume, and clients now have read-write access to volume. UPDATED_OPTIMIZING - For a storage-capacity increase update, Amazon FSx has updated the file system with the new storage capacity, and is now performing the storage-optimization process. PENDING - For a backup restore to a second-generation FSx for ONTAP file system, indicates that the file metadata is being downloaded onto the volume. The volume's Lifecycle state is CREATING. IN_PROGRESS - For a backup restore to a second-generation FSx for ONTAP file system, indicates that all metadata has been downloaded to the new volume and client can access data with read-only access while Amazon FSx downloads the file data to the volume. Track the progress of this process with the ProgressPercent element.
|
402
402
|
*/
|
403
403
|
Status?: Status;
|
404
404
|
/**
|
@@ -423,12 +423,12 @@ declare namespace FSx {
|
|
423
423
|
*/
|
424
424
|
Message?: ErrorMessage;
|
425
425
|
}
|
426
|
-
export type AdministrativeActionType = "FILE_SYSTEM_UPDATE"|"STORAGE_OPTIMIZATION"|"FILE_SYSTEM_ALIAS_ASSOCIATION"|"FILE_SYSTEM_ALIAS_DISASSOCIATION"|"VOLUME_UPDATE"|"SNAPSHOT_UPDATE"|"RELEASE_NFS_V3_LOCKS"|"VOLUME_RESTORE"|"THROUGHPUT_OPTIMIZATION"|"IOPS_OPTIMIZATION"|"STORAGE_TYPE_OPTIMIZATION"|"MISCONFIGURED_STATE_RECOVERY"|"VOLUME_UPDATE_WITH_SNAPSHOT"|"VOLUME_INITIALIZE_WITH_SNAPSHOT"|string;
|
426
|
+
export type AdministrativeActionType = "FILE_SYSTEM_UPDATE"|"STORAGE_OPTIMIZATION"|"FILE_SYSTEM_ALIAS_ASSOCIATION"|"FILE_SYSTEM_ALIAS_DISASSOCIATION"|"VOLUME_UPDATE"|"SNAPSHOT_UPDATE"|"RELEASE_NFS_V3_LOCKS"|"VOLUME_RESTORE"|"THROUGHPUT_OPTIMIZATION"|"IOPS_OPTIMIZATION"|"STORAGE_TYPE_OPTIMIZATION"|"MISCONFIGURED_STATE_RECOVERY"|"VOLUME_UPDATE_WITH_SNAPSHOT"|"VOLUME_INITIALIZE_WITH_SNAPSHOT"|"DOWNLOAD_DATA_FROM_BACKUP"|string;
|
427
427
|
export type AdministrativeActions = AdministrativeAction[];
|
428
428
|
export type Aggregate = string;
|
429
429
|
export interface AggregateConfiguration {
|
430
430
|
/**
|
431
|
-
* The list of aggregates that this volume resides on. Aggregates are storage pools which make up your primary storage tier. Each high-availability (HA) pair has one aggregate. The names of the aggregates map to the names of the aggregates in the ONTAP CLI and REST API. For FlexVols, there will always be a single entry. Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions: The strings in the value of Aggregates are not are not formatted as aggrX, where X is a number between 1 and
|
431
|
+
* The list of aggregates that this volume resides on. Aggregates are storage pools which make up your primary storage tier. Each high-availability (HA) pair has one aggregate. The names of the aggregates map to the names of the aggregates in the ONTAP CLI and REST API. For FlexVols, there will always be a single entry. Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions: The strings in the value of Aggregates are not are not formatted as aggrX, where X is a number between 1 and 12. The value of Aggregates contains aggregates that are not present. One or more of the aggregates supplied are too close to the volume limit to support adding more volumes.
|
432
432
|
*/
|
433
433
|
Aggregates?: Aggregates;
|
434
434
|
/**
|
@@ -928,7 +928,7 @@ declare namespace FSx {
|
|
928
928
|
AutomaticBackupRetentionDays?: AutomaticBackupRetentionDays;
|
929
929
|
DailyAutomaticBackupStartTime?: DailyTime;
|
930
930
|
/**
|
931
|
-
* Specifies the FSx for ONTAP file system deployment type to use in creating the file system. MULTI_AZ_1 -
|
931
|
+
* Specifies the FSx for ONTAP file system deployment type to use in creating the file system. MULTI_AZ_1 - A high availability file system configured for Multi-AZ redundancy to tolerate temporary Availability Zone (AZ) unavailability. This is a first-generation FSx for ONTAP file system. MULTI_AZ_2 - A high availability file system configured for Multi-AZ redundancy to tolerate temporary AZ unavailability. This is a second-generation FSx for ONTAP file system. SINGLE_AZ_1 - A file system configured for Single-AZ redundancy. This is a first-generation FSx for ONTAP file system. SINGLE_AZ_2 - A file system configured with multiple high-availability (HA) pairs for Single-AZ redundancy. This is a second-generation FSx for ONTAP file system. For information about the use cases for Multi-AZ and Single-AZ deployments, refer to Choosing a file system deployment type.
|
932
932
|
*/
|
933
933
|
DeploymentType: OntapDeploymentType;
|
934
934
|
/**
|
@@ -944,7 +944,7 @@ declare namespace FSx {
|
|
944
944
|
*/
|
945
945
|
DiskIopsConfiguration?: DiskIopsConfiguration;
|
946
946
|
/**
|
947
|
-
* Required when DeploymentType is set to MULTI_AZ_1. This specifies the subnet in which you want the preferred file server to be located.
|
947
|
+
* Required when DeploymentType is set to MULTI_AZ_1 or MULTI_AZ_2. This specifies the subnet in which you want the preferred file server to be located.
|
948
948
|
*/
|
949
949
|
PreferredSubnetId?: SubnetId;
|
950
950
|
/**
|
@@ -957,11 +957,11 @@ declare namespace FSx {
|
|
957
957
|
ThroughputCapacity?: MegabytesPerSecond;
|
958
958
|
WeeklyMaintenanceStartTime?: WeeklyTime;
|
959
959
|
/**
|
960
|
-
* Specifies how many high-availability (HA) pairs of file servers will power your file system.
|
960
|
+
* Specifies how many high-availability (HA) pairs of file servers will power your file system. First-generation file systems are powered by 1 HA pair. Second-generation multi-AZ file systems are powered by 1 HA pair. Second generation single-AZ file systems are powered by up to 12 HA pairs. The default value is 1. The value of this property affects the values of StorageCapacity, Iops, and ThroughputCapacity. For more information, see High-availability (HA) pairs in the FSx for ONTAP user guide. Block storage protocol support (iSCSI and NVMe over TCP) is disabled on file systems with more than 6 HA pairs. For more information, see Using block storage protocols. Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions: The value of HAPairs is less than 1 or greater than 12. The value of HAPairs is greater than 1 and the value of DeploymentType is SINGLE_AZ_1, MULTI_AZ_1, or MULTI_AZ_2.
|
961
961
|
*/
|
962
962
|
HAPairs?: HAPairs;
|
963
963
|
/**
|
964
|
-
* Use to choose the throughput capacity per HA pair, rather than the total throughput for the file system. You can define either the ThroughputCapacityPerHAPair or the ThroughputCapacity when creating a file system, but not both. This field and ThroughputCapacity are the same for
|
964
|
+
* Use to choose the throughput capacity per HA pair, rather than the total throughput for the file system. You can define either the ThroughputCapacityPerHAPair or the ThroughputCapacity when creating a file system, but not both. This field and ThroughputCapacity are the same for file systems powered by one HA pair. For SINGLE_AZ_1 and MULTI_AZ_1 file systems, valid values are 128, 256, 512, 1024, 2048, or 4096 MBps. For SINGLE_AZ_2, valid values are 1536, 3072, or 6144 MBps. For MULTI_AZ_2, valid values are 384, 768, 1536, 3072, or 6144 MBps. Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions: The value of ThroughputCapacity and ThroughputCapacityPerHAPair are not the same value for file systems with one HA pair. The value of deployment type is SINGLE_AZ_2 and ThroughputCapacity / ThroughputCapacityPerHAPair is not a valid HA pair (a value between 1 and 12). The value of ThroughputCapacityPerHAPair is not a valid value.
|
965
965
|
*/
|
966
966
|
ThroughputCapacityPerHAPair?: ThroughputCapacityPerHAPair;
|
967
967
|
}
|
@@ -977,7 +977,7 @@ declare namespace FSx {
|
|
977
977
|
CopyTagsToVolumes?: Flag;
|
978
978
|
DailyAutomaticBackupStartTime?: DailyTime;
|
979
979
|
/**
|
980
|
-
* Specifies the file system deployment type.
|
980
|
+
* Specifies the file system deployment type. Valid values are the following: MULTI_AZ_1- Creates file systems with high availability and durability by replicating your data and supporting failover across multiple Availability Zones in the same Amazon Web Services Region. SINGLE_AZ_HA_2- Creates file systems with high availability and throughput capacities of 160 - 10,240 MB/s using an NVMe L2ARC cache by deploying a primary and standby file system within the same Availability Zone. SINGLE_AZ_HA_1- Creates file systems with high availability and throughput capacities of 64 - 4,096 MB/s by deploying a primary and standby file system within the same Availability Zone. SINGLE_AZ_2- Creates file systems with throughput capacities of 160 - 10,240 MB/s using an NVMe L2ARC cache that automatically recover within a single Availability Zone. SINGLE_AZ_1- Creates file systems with throughput capacities of 64 - 4,096 MBs that automatically recover within a single Availability Zone. For a list of which Amazon Web Services Regions each deployment type is available in, see Deployment type availability. For more information on the differences in performance between deployment types, see File system performance in the Amazon FSx for OpenZFS User Guide.
|
981
981
|
*/
|
982
982
|
DeploymentType: OpenZFSDeploymentType;
|
983
983
|
/**
|
@@ -2063,7 +2063,7 @@ declare namespace FSx {
|
|
2063
2063
|
*/
|
2064
2064
|
Lifecycle?: FileCacheLifecycle;
|
2065
2065
|
/**
|
2066
|
-
* A structure providing details of any failures that occurred.
|
2066
|
+
* A structure providing details of any failures that occurred in creating a cache.
|
2067
2067
|
*/
|
2068
2068
|
FailureDetails?: FileCacheFailureDetails;
|
2069
2069
|
/**
|
@@ -2451,13 +2451,13 @@ declare namespace FSx {
|
|
2451
2451
|
export type NetworkInterfaceIds = NetworkInterfaceId[];
|
2452
2452
|
export type NextToken = string;
|
2453
2453
|
export type NfsVersion = "NFS3"|string;
|
2454
|
-
export type OntapDeploymentType = "MULTI_AZ_1"|"SINGLE_AZ_1"|"SINGLE_AZ_2"|string;
|
2454
|
+
export type OntapDeploymentType = "MULTI_AZ_1"|"SINGLE_AZ_1"|"SINGLE_AZ_2"|"MULTI_AZ_2"|string;
|
2455
2455
|
export type OntapEndpointIpAddresses = IpAddress[];
|
2456
2456
|
export interface OntapFileSystemConfiguration {
|
2457
2457
|
AutomaticBackupRetentionDays?: AutomaticBackupRetentionDays;
|
2458
2458
|
DailyAutomaticBackupStartTime?: DailyTime;
|
2459
2459
|
/**
|
2460
|
-
* Specifies the FSx for ONTAP file system deployment type in use in the file system. MULTI_AZ_1 -
|
2460
|
+
* Specifies the FSx for ONTAP file system deployment type in use in the file system. MULTI_AZ_1 - A high availability file system configured for Multi-AZ redundancy to tolerate temporary Availability Zone (AZ) unavailability. This is a first-generation FSx for ONTAP file system. MULTI_AZ_2 - A high availability file system configured for Multi-AZ redundancy to tolerate temporary AZ unavailability. This is a second-generation FSx for ONTAP file system. SINGLE_AZ_1 - A file system configured for Single-AZ redundancy. This is a first-generation FSx for ONTAP file system. SINGLE_AZ_2 - A file system configured with multiple high-availability (HA) pairs for Single-AZ redundancy. This is a second-generation FSx for ONTAP file system. For information about the use cases for Multi-AZ and Single-AZ deployments, refer to Choosing Multi-AZ or Single-AZ file system deployment.
|
2461
2461
|
*/
|
2462
2462
|
DeploymentType?: OntapDeploymentType;
|
2463
2463
|
/**
|
@@ -2484,11 +2484,11 @@ declare namespace FSx {
|
|
2484
2484
|
*/
|
2485
2485
|
FsxAdminPassword?: AdminPassword;
|
2486
2486
|
/**
|
2487
|
-
* Specifies how many high-availability (HA) file server pairs the file system will have. The default value is 1. The value of this property affects the values of StorageCapacity, Iops, and ThroughputCapacity. For more information, see High-availability (HA) pairs in the FSx for ONTAP user guide. Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions: The value of HAPairs is less than 1 or greater than 12. The value of HAPairs is greater than 1 and the value of DeploymentType is SINGLE_AZ_1 or
|
2487
|
+
* Specifies how many high-availability (HA) file server pairs the file system will have. The default value is 1. The value of this property affects the values of StorageCapacity, Iops, and ThroughputCapacity. For more information, see High-availability (HA) pairs in the FSx for ONTAP user guide. Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions: The value of HAPairs is less than 1 or greater than 12. The value of HAPairs is greater than 1 and the value of DeploymentType is SINGLE_AZ_1, MULTI_AZ_1, or MULTI_AZ_2.
|
2488
2488
|
*/
|
2489
2489
|
HAPairs?: HAPairs;
|
2490
2490
|
/**
|
2491
|
-
* Use to choose the throughput capacity per HA pair. When the value of HAPairs is equal to 1, the value of ThroughputCapacityPerHAPair is the total throughput for the file system. This field and ThroughputCapacity cannot be defined in the same API call, but one is required. This field and ThroughputCapacity are the same for file systems with one HA pair. For SINGLE_AZ_1 and MULTI_AZ_1, valid values are 128, 256, 512, 1024, 2048, or 4096 MBps. For SINGLE_AZ_2, valid values are 3072 or 6144 MBps. Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions: The value of ThroughputCapacity and ThroughputCapacityPerHAPair are not the same value. The value of deployment type is SINGLE_AZ_2 and ThroughputCapacity / ThroughputCapacityPerHAPair is a valid HA pair (a value between
|
2491
|
+
* Use to choose the throughput capacity per HA pair. When the value of HAPairs is equal to 1, the value of ThroughputCapacityPerHAPair is the total throughput for the file system. This field and ThroughputCapacity cannot be defined in the same API call, but one is required. This field and ThroughputCapacity are the same for file systems with one HA pair. For SINGLE_AZ_1 and MULTI_AZ_1 file systems, valid values are 128, 256, 512, 1024, 2048, or 4096 MBps. For SINGLE_AZ_2, valid values are 1536, 3072, or 6144 MBps. For MULTI_AZ_2, valid values are 384, 768, 1536, 3072, or 6144 MBps. Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions: The value of ThroughputCapacity and ThroughputCapacityPerHAPair are not the same value. The value of deployment type is SINGLE_AZ_2 and ThroughputCapacity / ThroughputCapacityPerHAPair is not a valid HA pair (a value between 1 and 12). The value of ThroughputCapacityPerHAPair is not a valid value.
|
2492
2492
|
*/
|
2493
2493
|
ThroughputCapacityPerHAPair?: ThroughputCapacityPerHAPair;
|
2494
2494
|
}
|
@@ -2599,7 +2599,7 @@ declare namespace FSx {
|
|
2599
2599
|
ReadOnly?: ReadOnly;
|
2600
2600
|
}
|
2601
2601
|
export type OpenZFSDataCompressionType = "NONE"|"ZSTD"|"LZ4"|string;
|
2602
|
-
export type OpenZFSDeploymentType = "SINGLE_AZ_1"|"SINGLE_AZ_2"|"MULTI_AZ_1"|string;
|
2602
|
+
export type OpenZFSDeploymentType = "SINGLE_AZ_1"|"SINGLE_AZ_2"|"SINGLE_AZ_HA_1"|"SINGLE_AZ_HA_2"|"MULTI_AZ_1"|string;
|
2603
2603
|
export interface OpenZFSFileSystemConfiguration {
|
2604
2604
|
AutomaticBackupRetentionDays?: AutomaticBackupRetentionDays;
|
2605
2605
|
/**
|
@@ -2612,7 +2612,7 @@ declare namespace FSx {
|
|
2612
2612
|
CopyTagsToVolumes?: Flag;
|
2613
2613
|
DailyAutomaticBackupStartTime?: DailyTime;
|
2614
2614
|
/**
|
2615
|
-
* Specifies the file-system deployment type. Amazon FSx for OpenZFS supports
 MULTI_AZ_1,
|
2615
|
+
* Specifies the file-system deployment type. Amazon FSx for OpenZFS supports
 MULTI_AZ_1, SINGLE_AZ_HA_2, SINGLE_AZ_HA_1, SINGLE_AZ_2, and SINGLE_AZ_1.
|
2616
2616
|
*/
|
2617
2617
|
DeploymentType?: OpenZFSDeploymentType;
|
2618
2618
|
/**
|
@@ -3000,7 +3000,7 @@ declare namespace FSx {
|
|
3000
3000
|
FileSystem?: FileSystem;
|
3001
3001
|
}
|
3002
3002
|
export type StartTime = Date;
|
3003
|
-
export type Status = "FAILED"|"IN_PROGRESS"|"PENDING"|"COMPLETED"|"UPDATED_OPTIMIZING"|string;
|
3003
|
+
export type Status = "FAILED"|"IN_PROGRESS"|"PENDING"|"COMPLETED"|"UPDATED_OPTIMIZING"|"OPTIMIZING"|string;
|
3004
3004
|
export type StorageCapacity = number;
|
3005
3005
|
export type StorageType = "SSD"|"HDD"|string;
|
3006
3006
|
export interface StorageVirtualMachine {
|
@@ -3270,9 +3270,13 @@ declare namespace FSx {
|
|
3270
3270
|
*/
|
3271
3271
|
RemoveRouteTableIds?: RouteTableIds;
|
3272
3272
|
/**
|
3273
|
-
* Use to choose the throughput capacity per HA pair, rather than the total throughput for the file system. This field and ThroughputCapacity cannot be defined in the same API call, but one is required. This field and ThroughputCapacity are the same for file systems with one HA pair. For SINGLE_AZ_1 and MULTI_AZ_1, valid values are 128, 256, 512, 1024, 2048, or 4096 MBps. For SINGLE_AZ_2, valid values are 3072 or 6144 MBps. Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions: The value of ThroughputCapacity and ThroughputCapacityPerHAPair are not the same value for file systems with one HA pair. The value of deployment type is SINGLE_AZ_2 and ThroughputCapacity / ThroughputCapacityPerHAPair is a valid HA pair (a value between
|
3273
|
+
* Use to choose the throughput capacity per HA pair, rather than the total throughput for the file system. This field and ThroughputCapacity cannot be defined in the same API call, but one is required. This field and ThroughputCapacity are the same for file systems with one HA pair. For SINGLE_AZ_1 and MULTI_AZ_1 file systems, valid values are 128, 256, 512, 1024, 2048, or 4096 MBps. For SINGLE_AZ_2, valid values are 1536, 3072, or 6144 MBps. For MULTI_AZ_2, valid values are 384, 768, 1536, 3072, or 6144 MBps. Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions: The value of ThroughputCapacity and ThroughputCapacityPerHAPair are not the same value for file systems with one HA pair. The value of deployment type is SINGLE_AZ_2 and ThroughputCapacity / ThroughputCapacityPerHAPair is not a valid HA pair (a value between 1 and 12). The value of ThroughputCapacityPerHAPair is not a valid value.
|
3274
3274
|
*/
|
3275
3275
|
ThroughputCapacityPerHAPair?: ThroughputCapacityPerHAPair;
|
3276
|
+
/**
|
3277
|
+
* Use to update the number of high-availability (HA) pairs for a second-generation single-AZ file system. If you increase the number of HA pairs for your file system, you must specify proportional increases for StorageCapacity, Iops, and ThroughputCapacity. For more information, see High-availability (HA) pairs in the FSx for ONTAP user guide. Block storage protocol support (iSCSI and NVMe over TCP) is disabled on file systems with more than 6 HA pairs. For more information, see Using block storage protocols.
|
3278
|
+
*/
|
3279
|
+
HAPairs?: HAPairs;
|
3276
3280
|
}
|
3277
3281
|
export interface UpdateFileSystemOpenZFSConfiguration {
|
3278
3282
|
AutomaticBackupRetentionDays?: AutomaticBackupRetentionDays;
|
package/clients/opensearch.d.ts
CHANGED
@@ -517,6 +517,25 @@ declare class OpenSearch extends Service {
|
|
517
517
|
upgradeDomain(callback?: (err: AWSError, data: OpenSearch.Types.UpgradeDomainResponse) => void): Request<OpenSearch.Types.UpgradeDomainResponse, AWSError>;
|
518
518
|
}
|
519
519
|
declare namespace OpenSearch {
|
520
|
+
export interface AIMLOptionsInput {
|
521
|
+
/**
|
522
|
+
* Container for parameters required for natural language query generation on the specified domain.
|
523
|
+
*/
|
524
|
+
NaturalLanguageQueryGenerationOptions?: NaturalLanguageQueryGenerationOptionsInput;
|
525
|
+
}
|
526
|
+
export interface AIMLOptionsOutput {
|
527
|
+
/**
|
528
|
+
* Container for parameters required for natural language query generation on the specified domain.
|
529
|
+
*/
|
530
|
+
NaturalLanguageQueryGenerationOptions?: NaturalLanguageQueryGenerationOptionsOutput;
|
531
|
+
}
|
532
|
+
export interface AIMLOptionsStatus {
|
533
|
+
/**
|
534
|
+
* Machine learning options on the specified domain.
|
535
|
+
*/
|
536
|
+
Options?: AIMLOptionsOutput;
|
537
|
+
Status?: OptionStatus;
|
538
|
+
}
|
520
539
|
export type ARN = string;
|
521
540
|
export type AWSAccount = string;
|
522
541
|
export interface AWSDomainInformation {
|
@@ -1205,6 +1224,10 @@ declare namespace OpenSearch {
|
|
1205
1224
|
* Software update options for the domain.
|
1206
1225
|
*/
|
1207
1226
|
SoftwareUpdateOptions?: SoftwareUpdateOptions;
|
1227
|
+
/**
|
1228
|
+
* Options for all machine learning features for the specified domain.
|
1229
|
+
*/
|
1230
|
+
AIMLOptions?: AIMLOptionsInput;
|
1208
1231
|
}
|
1209
1232
|
export interface CreateDomainResponse {
|
1210
1233
|
/**
|
@@ -1864,6 +1887,10 @@ declare namespace OpenSearch {
|
|
1864
1887
|
* Information about the domain properties that are currently being modified.
|
1865
1888
|
*/
|
1866
1889
|
ModifyingProperties?: ModifyingPropertiesList;
|
1890
|
+
/**
|
1891
|
+
* Container for parameters required to enable all machine learning features.
|
1892
|
+
*/
|
1893
|
+
AIMLOptions?: AIMLOptionsStatus;
|
1867
1894
|
}
|
1868
1895
|
export interface DomainEndpointOptions {
|
1869
1896
|
/**
|
@@ -2160,6 +2187,10 @@ declare namespace OpenSearch {
|
|
2160
2187
|
* Information about the domain properties that are currently being modified.
|
2161
2188
|
*/
|
2162
2189
|
ModifyingProperties?: ModifyingPropertiesList;
|
2190
|
+
/**
|
2191
|
+
* Container for parameters required to enable all machine learning features.
|
2192
|
+
*/
|
2193
|
+
AIMLOptions?: AIMLOptionsOutput;
|
2163
2194
|
}
|
2164
2195
|
export type DomainStatusList = DomainStatus[];
|
2165
2196
|
export type Double = number;
|
@@ -2920,6 +2951,24 @@ declare namespace OpenSearch {
|
|
2920
2951
|
ValueType?: PropertyValueType;
|
2921
2952
|
}
|
2922
2953
|
export type ModifyingPropertiesList = ModifyingProperties[];
|
2954
|
+
export type NaturalLanguageQueryGenerationCurrentState = "NOT_ENABLED"|"ENABLE_COMPLETE"|"ENABLE_IN_PROGRESS"|"ENABLE_FAILED"|"DISABLE_COMPLETE"|"DISABLE_IN_PROGRESS"|"DISABLE_FAILED"|string;
|
2955
|
+
export type NaturalLanguageQueryGenerationDesiredState = "ENABLED"|"DISABLED"|string;
|
2956
|
+
export interface NaturalLanguageQueryGenerationOptionsInput {
|
2957
|
+
/**
|
2958
|
+
* The desired state of the natural language query generation feature. Valid values are ENABLED and DISABLED.
|
2959
|
+
*/
|
2960
|
+
DesiredState?: NaturalLanguageQueryGenerationDesiredState;
|
2961
|
+
}
|
2962
|
+
export interface NaturalLanguageQueryGenerationOptionsOutput {
|
2963
|
+
/**
|
2964
|
+
* The desired state of the natural language query generation feature. Valid values are ENABLED and DISABLED.
|
2965
|
+
*/
|
2966
|
+
DesiredState?: NaturalLanguageQueryGenerationDesiredState;
|
2967
|
+
/**
|
2968
|
+
* The current state of the natural language query generation feature, indicating completion, in progress, or failure.
|
2969
|
+
*/
|
2970
|
+
CurrentState?: NaturalLanguageQueryGenerationCurrentState;
|
2971
|
+
}
|
2923
2972
|
export type NextToken = string;
|
2924
2973
|
export type NodeId = string;
|
2925
2974
|
export type NodeStatus = "Active"|"StandBy"|"NotAvailable"|string;
|
@@ -3722,6 +3771,10 @@ declare namespace OpenSearch {
|
|
3722
3771
|
* Service software update options for the domain.
|
3723
3772
|
*/
|
3724
3773
|
SoftwareUpdateOptions?: SoftwareUpdateOptions;
|
3774
|
+
/**
|
3775
|
+
* Options for all machine learning features for the specified domain.
|
3776
|
+
*/
|
3777
|
+
AIMLOptions?: AIMLOptionsInput;
|
3725
3778
|
}
|
3726
3779
|
export interface UpdateDomainConfigResponse {
|
3727
3780
|
/**
|