@aws-sdk/client-elasticsearch-service 3.325.0 → 3.326.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/dist-types/commands/AcceptInboundCrossClusterSearchConnectionCommand.d.ts +22 -0
- package/dist-types/commands/AddTagsCommand.d.ts +4 -0
- package/dist-types/commands/AssociatePackageCommand.d.ts +19 -0
- package/dist-types/commands/AuthorizeVpcEndpointAccessCommand.d.ts +9 -0
- package/dist-types/commands/CancelElasticsearchServiceSoftwareUpdateCommand.d.ts +15 -0
- package/dist-types/commands/CreateElasticsearchDomainCommand.d.ts +122 -0
- package/dist-types/commands/CreateOutboundCrossClusterSearchConnectionCommand.d.ts +21 -0
- package/dist-types/commands/CreatePackageCommand.d.ts +19 -0
- package/dist-types/commands/CreateVpcEndpointCommand.d.ts +24 -0
- package/dist-types/commands/DeleteElasticsearchDomainCommand.d.ts +122 -0
- package/dist-types/commands/DeleteElasticsearchServiceRoleCommand.d.ts +4 -0
- package/dist-types/commands/DeleteInboundCrossClusterSearchConnectionCommand.d.ts +22 -0
- package/dist-types/commands/DeleteOutboundCrossClusterSearchConnectionCommand.d.ts +23 -0
- package/dist-types/commands/DeletePackageCommand.d.ts +19 -0
- package/dist-types/commands/DeleteVpcEndpointCommand.d.ts +11 -0
- package/dist-types/commands/DescribeDomainAutoTunesCommand.d.ts +19 -0
- package/dist-types/commands/DescribeDomainChangeProgressCommand.d.ts +25 -0
- package/dist-types/commands/DescribeElasticsearchDomainCommand.d.ts +122 -0
- package/dist-types/commands/DescribeElasticsearchDomainConfigCommand.d.ts +190 -0
- package/dist-types/commands/DescribeElasticsearchDomainsCommand.d.ts +124 -0
- package/dist-types/commands/DescribeElasticsearchInstanceTypeLimitsCommand.d.ts +37 -0
- package/dist-types/commands/DescribeInboundCrossClusterSearchConnectionsCommand.d.ts +25 -0
- package/dist-types/commands/DescribeOutboundCrossClusterSearchConnectionsCommand.d.ts +26 -0
- package/dist-types/commands/DescribePackagesCommand.d.ts +22 -0
- package/dist-types/commands/DescribeReservedElasticsearchInstanceOfferingsCommand.d.ts +23 -0
- package/dist-types/commands/DescribeReservedElasticsearchInstancesCommand.d.ts +28 -0
- package/dist-types/commands/DescribeVpcEndpointsCommand.d.ts +33 -0
- package/dist-types/commands/DissociatePackageCommand.d.ts +19 -0
- package/dist-types/commands/GetCompatibleElasticsearchVersionsCommand.d.ts +13 -0
- package/dist-types/commands/GetPackageVersionHistoryCommand.d.ts +14 -0
- package/dist-types/commands/GetUpgradeHistoryCommand.d.ts +23 -0
- package/dist-types/commands/GetUpgradeStatusCommand.d.ts +8 -0
- package/dist-types/commands/ListDomainNamesCommand.d.ts +11 -0
- package/dist-types/commands/ListDomainsForPackageCommand.d.ts +22 -0
- package/dist-types/commands/ListElasticsearchInstanceTypesCommand.d.ts +9 -0
- package/dist-types/commands/ListElasticsearchVersionsCommand.d.ts +9 -0
- package/dist-types/commands/ListPackagesForDomainCommand.d.ts +22 -0
- package/dist-types/commands/ListTagsCommand.d.ts +11 -0
- package/dist-types/commands/ListVpcEndpointAccessCommand.d.ts +12 -0
- package/dist-types/commands/ListVpcEndpointsCommand.d.ts +14 -0
- package/dist-types/commands/ListVpcEndpointsForDomainCommand.d.ts +14 -0
- package/dist-types/commands/PurchaseReservedElasticsearchInstanceOfferingCommand.d.ts +7 -0
- package/dist-types/commands/RejectInboundCrossClusterSearchConnectionCommand.d.ts +22 -0
- package/dist-types/commands/RemoveTagsCommand.d.ts +4 -0
- package/dist-types/commands/RevokeVpcEndpointAccessCommand.d.ts +4 -0
- package/dist-types/commands/StartElasticsearchServiceSoftwareUpdateCommand.d.ts +15 -0
- package/dist-types/commands/UpdateElasticsearchDomainConfigCommand.d.ts +194 -0
- package/dist-types/commands/UpdatePackageCommand.d.ts +19 -0
- package/dist-types/commands/UpdateVpcEndpointCommand.d.ts +24 -0
- package/dist-types/commands/UpgradeElasticsearchDomainCommand.d.ts +12 -0
- package/package.json +3 -3
|
@@ -40,6 +40,41 @@ export interface DescribeElasticsearchInstanceTypeLimitsCommandOutput extends De
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new DescribeElasticsearchInstanceTypeLimitsCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // DescribeElasticsearchInstanceTypeLimitsResponse
|
|
44
|
+
* // LimitsByRole: { // LimitsByRole
|
|
45
|
+
* // "<keys>": { // Limits
|
|
46
|
+
* // StorageTypes: [ // StorageTypeList
|
|
47
|
+
* // { // StorageType
|
|
48
|
+
* // StorageTypeName: "STRING_VALUE",
|
|
49
|
+
* // StorageSubTypeName: "STRING_VALUE",
|
|
50
|
+
* // StorageTypeLimits: [ // StorageTypeLimitList
|
|
51
|
+
* // { // StorageTypeLimit
|
|
52
|
+
* // LimitName: "STRING_VALUE",
|
|
53
|
+
* // LimitValues: [ // LimitValueList
|
|
54
|
+
* // "STRING_VALUE",
|
|
55
|
+
* // ],
|
|
56
|
+
* // },
|
|
57
|
+
* // ],
|
|
58
|
+
* // },
|
|
59
|
+
* // ],
|
|
60
|
+
* // InstanceLimits: { // InstanceLimits
|
|
61
|
+
* // InstanceCountLimits: { // InstanceCountLimits
|
|
62
|
+
* // MinimumInstanceCount: Number("int"),
|
|
63
|
+
* // MaximumInstanceCount: Number("int"),
|
|
64
|
+
* // },
|
|
65
|
+
* // },
|
|
66
|
+
* // AdditionalLimits: [ // AdditionalLimitList
|
|
67
|
+
* // { // AdditionalLimit
|
|
68
|
+
* // LimitName: "STRING_VALUE",
|
|
69
|
+
* // LimitValues: [
|
|
70
|
+
* // "STRING_VALUE",
|
|
71
|
+
* // ],
|
|
72
|
+
* // },
|
|
73
|
+
* // ],
|
|
74
|
+
* // },
|
|
75
|
+
* // },
|
|
76
|
+
* // };
|
|
77
|
+
*
|
|
43
78
|
* ```
|
|
44
79
|
*
|
|
45
80
|
* @param DescribeElasticsearchInstanceTypeLimitsCommandInput - {@link DescribeElasticsearchInstanceTypeLimitsCommandInput}
|
|
@@ -66,6 +101,8 @@ export interface DescribeElasticsearchInstanceTypeLimitsCommandOutput extends De
|
|
|
66
101
|
* @throws {@link ValidationException} (client fault)
|
|
67
102
|
* <p>An exception for missing / invalid input fields. Gives http status code of 400.</p>
|
|
68
103
|
*
|
|
104
|
+
* @throws {@link ElasticsearchServiceServiceException}
|
|
105
|
+
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
69
106
|
*
|
|
70
107
|
*/
|
|
71
108
|
export declare class DescribeElasticsearchInstanceTypeLimitsCommand extends $Command<DescribeElasticsearchInstanceTypeLimitsCommandInput, DescribeElasticsearchInstanceTypeLimitsCommandOutput, ElasticsearchServiceClientResolvedConfig> {
|
|
@@ -40,6 +40,29 @@ export interface DescribeInboundCrossClusterSearchConnectionsCommandOutput exten
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new DescribeInboundCrossClusterSearchConnectionsCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // DescribeInboundCrossClusterSearchConnectionsResponse
|
|
44
|
+
* // CrossClusterSearchConnections: [ // InboundCrossClusterSearchConnections
|
|
45
|
+
* // { // InboundCrossClusterSearchConnection
|
|
46
|
+
* // SourceDomainInfo: { // DomainInformation
|
|
47
|
+
* // OwnerId: "STRING_VALUE",
|
|
48
|
+
* // DomainName: "STRING_VALUE", // required
|
|
49
|
+
* // Region: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // DestinationDomainInfo: {
|
|
52
|
+
* // OwnerId: "STRING_VALUE",
|
|
53
|
+
* // DomainName: "STRING_VALUE", // required
|
|
54
|
+
* // Region: "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // CrossClusterSearchConnectionId: "STRING_VALUE",
|
|
57
|
+
* // ConnectionStatus: { // InboundCrossClusterSearchConnectionStatus
|
|
58
|
+
* // StatusCode: "PENDING_ACCEPTANCE" || "APPROVED" || "REJECTING" || "REJECTED" || "DELETING" || "DELETED",
|
|
59
|
+
* // Message: "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // },
|
|
62
|
+
* // ],
|
|
63
|
+
* // NextToken: "STRING_VALUE",
|
|
64
|
+
* // };
|
|
65
|
+
*
|
|
43
66
|
* ```
|
|
44
67
|
*
|
|
45
68
|
* @param DescribeInboundCrossClusterSearchConnectionsCommandInput - {@link DescribeInboundCrossClusterSearchConnectionsCommandInput}
|
|
@@ -54,6 +77,8 @@ export interface DescribeInboundCrossClusterSearchConnectionsCommandOutput exten
|
|
|
54
77
|
* @throws {@link InvalidPaginationTokenException} (client fault)
|
|
55
78
|
* <p>The request processing has failed because of invalid pagination token provided by customer. Returns an HTTP status code of 400. </p>
|
|
56
79
|
*
|
|
80
|
+
* @throws {@link ElasticsearchServiceServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
57
82
|
*
|
|
58
83
|
*/
|
|
59
84
|
export declare class DescribeInboundCrossClusterSearchConnectionsCommand extends $Command<DescribeInboundCrossClusterSearchConnectionsCommandInput, DescribeInboundCrossClusterSearchConnectionsCommandOutput, ElasticsearchServiceClientResolvedConfig> {
|
|
@@ -40,6 +40,30 @@ export interface DescribeOutboundCrossClusterSearchConnectionsCommandOutput exte
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new DescribeOutboundCrossClusterSearchConnectionsCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // DescribeOutboundCrossClusterSearchConnectionsResponse
|
|
44
|
+
* // CrossClusterSearchConnections: [ // OutboundCrossClusterSearchConnections
|
|
45
|
+
* // { // OutboundCrossClusterSearchConnection
|
|
46
|
+
* // SourceDomainInfo: { // DomainInformation
|
|
47
|
+
* // OwnerId: "STRING_VALUE",
|
|
48
|
+
* // DomainName: "STRING_VALUE", // required
|
|
49
|
+
* // Region: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // DestinationDomainInfo: {
|
|
52
|
+
* // OwnerId: "STRING_VALUE",
|
|
53
|
+
* // DomainName: "STRING_VALUE", // required
|
|
54
|
+
* // Region: "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // CrossClusterSearchConnectionId: "STRING_VALUE",
|
|
57
|
+
* // ConnectionAlias: "STRING_VALUE",
|
|
58
|
+
* // ConnectionStatus: { // OutboundCrossClusterSearchConnectionStatus
|
|
59
|
+
* // StatusCode: "PENDING_ACCEPTANCE" || "VALIDATING" || "VALIDATION_FAILED" || "PROVISIONING" || "ACTIVE" || "REJECTED" || "DELETING" || "DELETED",
|
|
60
|
+
* // Message: "STRING_VALUE",
|
|
61
|
+
* // },
|
|
62
|
+
* // },
|
|
63
|
+
* // ],
|
|
64
|
+
* // NextToken: "STRING_VALUE",
|
|
65
|
+
* // };
|
|
66
|
+
*
|
|
43
67
|
* ```
|
|
44
68
|
*
|
|
45
69
|
* @param DescribeOutboundCrossClusterSearchConnectionsCommandInput - {@link DescribeOutboundCrossClusterSearchConnectionsCommandInput}
|
|
@@ -54,6 +78,8 @@ export interface DescribeOutboundCrossClusterSearchConnectionsCommandOutput exte
|
|
|
54
78
|
* @throws {@link InvalidPaginationTokenException} (client fault)
|
|
55
79
|
* <p>The request processing has failed because of invalid pagination token provided by customer. Returns an HTTP status code of 400. </p>
|
|
56
80
|
*
|
|
81
|
+
* @throws {@link ElasticsearchServiceServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
57
83
|
*
|
|
58
84
|
*/
|
|
59
85
|
export declare class DescribeOutboundCrossClusterSearchConnectionsCommand extends $Command<DescribeOutboundCrossClusterSearchConnectionsCommandInput, DescribeOutboundCrossClusterSearchConnectionsCommandOutput, ElasticsearchServiceClientResolvedConfig> {
|
|
@@ -40,6 +40,26 @@ export interface DescribePackagesCommandOutput extends DescribePackagesResponse,
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new DescribePackagesCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // DescribePackagesResponse
|
|
44
|
+
* // PackageDetailsList: [ // PackageDetailsList
|
|
45
|
+
* // { // PackageDetails
|
|
46
|
+
* // PackageID: "STRING_VALUE",
|
|
47
|
+
* // PackageName: "STRING_VALUE",
|
|
48
|
+
* // PackageType: "TXT-DICTIONARY",
|
|
49
|
+
* // PackageDescription: "STRING_VALUE",
|
|
50
|
+
* // PackageStatus: "COPYING" || "COPY_FAILED" || "VALIDATING" || "VALIDATION_FAILED" || "AVAILABLE" || "DELETING" || "DELETED" || "DELETE_FAILED",
|
|
51
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
52
|
+
* // LastUpdatedAt: new Date("TIMESTAMP"),
|
|
53
|
+
* // AvailablePackageVersion: "STRING_VALUE",
|
|
54
|
+
* // ErrorDetails: { // ErrorDetails
|
|
55
|
+
* // ErrorType: "STRING_VALUE",
|
|
56
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // },
|
|
59
|
+
* // ],
|
|
60
|
+
* // NextToken: "STRING_VALUE",
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
43
63
|
* ```
|
|
44
64
|
*
|
|
45
65
|
* @param DescribePackagesCommandInput - {@link DescribePackagesCommandInput}
|
|
@@ -63,6 +83,8 @@ export interface DescribePackagesCommandOutput extends DescribePackagesResponse,
|
|
|
63
83
|
* @throws {@link ValidationException} (client fault)
|
|
64
84
|
* <p>An exception for missing / invalid input fields. Gives http status code of 400.</p>
|
|
65
85
|
*
|
|
86
|
+
* @throws {@link ElasticsearchServiceServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
66
88
|
*
|
|
67
89
|
*/
|
|
68
90
|
export declare class DescribePackagesCommand extends $Command<DescribePackagesCommandInput, DescribePackagesCommandOutput, ElasticsearchServiceClientResolvedConfig> {
|
|
@@ -33,6 +33,27 @@ export interface DescribeReservedElasticsearchInstanceOfferingsCommandOutput ext
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DescribeReservedElasticsearchInstanceOfferingsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // DescribeReservedElasticsearchInstanceOfferingsResponse
|
|
37
|
+
* // NextToken: "STRING_VALUE",
|
|
38
|
+
* // ReservedElasticsearchInstanceOfferings: [ // ReservedElasticsearchInstanceOfferingList
|
|
39
|
+
* // { // ReservedElasticsearchInstanceOffering
|
|
40
|
+
* // ReservedElasticsearchInstanceOfferingId: "STRING_VALUE",
|
|
41
|
+
* // ElasticsearchInstanceType: "m3.medium.elasticsearch" || "m3.large.elasticsearch" || "m3.xlarge.elasticsearch" || "m3.2xlarge.elasticsearch" || "m4.large.elasticsearch" || "m4.xlarge.elasticsearch" || "m4.2xlarge.elasticsearch" || "m4.4xlarge.elasticsearch" || "m4.10xlarge.elasticsearch" || "m5.large.elasticsearch" || "m5.xlarge.elasticsearch" || "m5.2xlarge.elasticsearch" || "m5.4xlarge.elasticsearch" || "m5.12xlarge.elasticsearch" || "r5.large.elasticsearch" || "r5.xlarge.elasticsearch" || "r5.2xlarge.elasticsearch" || "r5.4xlarge.elasticsearch" || "r5.12xlarge.elasticsearch" || "c5.large.elasticsearch" || "c5.xlarge.elasticsearch" || "c5.2xlarge.elasticsearch" || "c5.4xlarge.elasticsearch" || "c5.9xlarge.elasticsearch" || "c5.18xlarge.elasticsearch" || "ultrawarm1.medium.elasticsearch" || "ultrawarm1.large.elasticsearch" || "t2.micro.elasticsearch" || "t2.small.elasticsearch" || "t2.medium.elasticsearch" || "r3.large.elasticsearch" || "r3.xlarge.elasticsearch" || "r3.2xlarge.elasticsearch" || "r3.4xlarge.elasticsearch" || "r3.8xlarge.elasticsearch" || "i2.xlarge.elasticsearch" || "i2.2xlarge.elasticsearch" || "d2.xlarge.elasticsearch" || "d2.2xlarge.elasticsearch" || "d2.4xlarge.elasticsearch" || "d2.8xlarge.elasticsearch" || "c4.large.elasticsearch" || "c4.xlarge.elasticsearch" || "c4.2xlarge.elasticsearch" || "c4.4xlarge.elasticsearch" || "c4.8xlarge.elasticsearch" || "r4.large.elasticsearch" || "r4.xlarge.elasticsearch" || "r4.2xlarge.elasticsearch" || "r4.4xlarge.elasticsearch" || "r4.8xlarge.elasticsearch" || "r4.16xlarge.elasticsearch" || "i3.large.elasticsearch" || "i3.xlarge.elasticsearch" || "i3.2xlarge.elasticsearch" || "i3.4xlarge.elasticsearch" || "i3.8xlarge.elasticsearch" || "i3.16xlarge.elasticsearch",
|
|
42
|
+
* // Duration: Number("int"),
|
|
43
|
+
* // FixedPrice: Number("double"),
|
|
44
|
+
* // UsagePrice: Number("double"),
|
|
45
|
+
* // CurrencyCode: "STRING_VALUE",
|
|
46
|
+
* // PaymentOption: "ALL_UPFRONT" || "PARTIAL_UPFRONT" || "NO_UPFRONT",
|
|
47
|
+
* // RecurringCharges: [ // RecurringChargeList
|
|
48
|
+
* // { // RecurringCharge
|
|
49
|
+
* // RecurringChargeAmount: Number("double"),
|
|
50
|
+
* // RecurringChargeFrequency: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // },
|
|
54
|
+
* // ],
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
36
57
|
* ```
|
|
37
58
|
*
|
|
38
59
|
* @param DescribeReservedElasticsearchInstanceOfferingsCommandInput - {@link DescribeReservedElasticsearchInstanceOfferingsCommandInput}
|
|
@@ -53,6 +74,8 @@ export interface DescribeReservedElasticsearchInstanceOfferingsCommandOutput ext
|
|
|
53
74
|
* @throws {@link ValidationException} (client fault)
|
|
54
75
|
* <p>An exception for missing / invalid input fields. Gives http status code of 400.</p>
|
|
55
76
|
*
|
|
77
|
+
* @throws {@link ElasticsearchServiceServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
56
79
|
*
|
|
57
80
|
*/
|
|
58
81
|
export declare class DescribeReservedElasticsearchInstanceOfferingsCommand extends $Command<DescribeReservedElasticsearchInstanceOfferingsCommandInput, DescribeReservedElasticsearchInstanceOfferingsCommandOutput, ElasticsearchServiceClientResolvedConfig> {
|
|
@@ -33,6 +33,32 @@ export interface DescribeReservedElasticsearchInstancesCommandOutput extends Des
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DescribeReservedElasticsearchInstancesCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // DescribeReservedElasticsearchInstancesResponse
|
|
37
|
+
* // NextToken: "STRING_VALUE",
|
|
38
|
+
* // ReservedElasticsearchInstances: [ // ReservedElasticsearchInstanceList
|
|
39
|
+
* // { // ReservedElasticsearchInstance
|
|
40
|
+
* // ReservationName: "STRING_VALUE",
|
|
41
|
+
* // ReservedElasticsearchInstanceId: "STRING_VALUE",
|
|
42
|
+
* // ReservedElasticsearchInstanceOfferingId: "STRING_VALUE",
|
|
43
|
+
* // ElasticsearchInstanceType: "m3.medium.elasticsearch" || "m3.large.elasticsearch" || "m3.xlarge.elasticsearch" || "m3.2xlarge.elasticsearch" || "m4.large.elasticsearch" || "m4.xlarge.elasticsearch" || "m4.2xlarge.elasticsearch" || "m4.4xlarge.elasticsearch" || "m4.10xlarge.elasticsearch" || "m5.large.elasticsearch" || "m5.xlarge.elasticsearch" || "m5.2xlarge.elasticsearch" || "m5.4xlarge.elasticsearch" || "m5.12xlarge.elasticsearch" || "r5.large.elasticsearch" || "r5.xlarge.elasticsearch" || "r5.2xlarge.elasticsearch" || "r5.4xlarge.elasticsearch" || "r5.12xlarge.elasticsearch" || "c5.large.elasticsearch" || "c5.xlarge.elasticsearch" || "c5.2xlarge.elasticsearch" || "c5.4xlarge.elasticsearch" || "c5.9xlarge.elasticsearch" || "c5.18xlarge.elasticsearch" || "ultrawarm1.medium.elasticsearch" || "ultrawarm1.large.elasticsearch" || "t2.micro.elasticsearch" || "t2.small.elasticsearch" || "t2.medium.elasticsearch" || "r3.large.elasticsearch" || "r3.xlarge.elasticsearch" || "r3.2xlarge.elasticsearch" || "r3.4xlarge.elasticsearch" || "r3.8xlarge.elasticsearch" || "i2.xlarge.elasticsearch" || "i2.2xlarge.elasticsearch" || "d2.xlarge.elasticsearch" || "d2.2xlarge.elasticsearch" || "d2.4xlarge.elasticsearch" || "d2.8xlarge.elasticsearch" || "c4.large.elasticsearch" || "c4.xlarge.elasticsearch" || "c4.2xlarge.elasticsearch" || "c4.4xlarge.elasticsearch" || "c4.8xlarge.elasticsearch" || "r4.large.elasticsearch" || "r4.xlarge.elasticsearch" || "r4.2xlarge.elasticsearch" || "r4.4xlarge.elasticsearch" || "r4.8xlarge.elasticsearch" || "r4.16xlarge.elasticsearch" || "i3.large.elasticsearch" || "i3.xlarge.elasticsearch" || "i3.2xlarge.elasticsearch" || "i3.4xlarge.elasticsearch" || "i3.8xlarge.elasticsearch" || "i3.16xlarge.elasticsearch",
|
|
44
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
45
|
+
* // Duration: Number("int"),
|
|
46
|
+
* // FixedPrice: Number("double"),
|
|
47
|
+
* // UsagePrice: Number("double"),
|
|
48
|
+
* // CurrencyCode: "STRING_VALUE",
|
|
49
|
+
* // ElasticsearchInstanceCount: Number("int"),
|
|
50
|
+
* // State: "STRING_VALUE",
|
|
51
|
+
* // PaymentOption: "ALL_UPFRONT" || "PARTIAL_UPFRONT" || "NO_UPFRONT",
|
|
52
|
+
* // RecurringCharges: [ // RecurringChargeList
|
|
53
|
+
* // { // RecurringCharge
|
|
54
|
+
* // RecurringChargeAmount: Number("double"),
|
|
55
|
+
* // RecurringChargeFrequency: "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // ],
|
|
58
|
+
* // },
|
|
59
|
+
* // ],
|
|
60
|
+
* // };
|
|
61
|
+
*
|
|
36
62
|
* ```
|
|
37
63
|
*
|
|
38
64
|
* @param DescribeReservedElasticsearchInstancesCommandInput - {@link DescribeReservedElasticsearchInstancesCommandInput}
|
|
@@ -53,6 +79,8 @@ export interface DescribeReservedElasticsearchInstancesCommandOutput extends Des
|
|
|
53
79
|
* @throws {@link ValidationException} (client fault)
|
|
54
80
|
* <p>An exception for missing / invalid input fields. Gives http status code of 400.</p>
|
|
55
81
|
*
|
|
82
|
+
* @throws {@link ElasticsearchServiceServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
56
84
|
*
|
|
57
85
|
*/
|
|
58
86
|
export declare class DescribeReservedElasticsearchInstancesCommand extends $Command<DescribeReservedElasticsearchInstancesCommandInput, DescribeReservedElasticsearchInstancesCommandOutput, ElasticsearchServiceClientResolvedConfig> {
|
|
@@ -33,6 +33,37 @@ export interface DescribeVpcEndpointsCommandOutput extends DescribeVpcEndpointsR
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DescribeVpcEndpointsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // DescribeVpcEndpointsResponse
|
|
37
|
+
* // VpcEndpoints: [ // VpcEndpoints // required
|
|
38
|
+
* // { // VpcEndpoint
|
|
39
|
+
* // VpcEndpointId: "STRING_VALUE",
|
|
40
|
+
* // VpcEndpointOwner: "STRING_VALUE",
|
|
41
|
+
* // DomainArn: "STRING_VALUE",
|
|
42
|
+
* // VpcOptions: { // VPCDerivedInfo
|
|
43
|
+
* // VPCId: "STRING_VALUE",
|
|
44
|
+
* // SubnetIds: [ // StringList
|
|
45
|
+
* // "STRING_VALUE",
|
|
46
|
+
* // ],
|
|
47
|
+
* // AvailabilityZones: [
|
|
48
|
+
* // "STRING_VALUE",
|
|
49
|
+
* // ],
|
|
50
|
+
* // SecurityGroupIds: [
|
|
51
|
+
* // "STRING_VALUE",
|
|
52
|
+
* // ],
|
|
53
|
+
* // },
|
|
54
|
+
* // Status: "CREATING" || "CREATE_FAILED" || "ACTIVE" || "UPDATING" || "UPDATE_FAILED" || "DELETING" || "DELETE_FAILED",
|
|
55
|
+
* // Endpoint: "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // ],
|
|
58
|
+
* // VpcEndpointErrors: [ // VpcEndpointErrorList // required
|
|
59
|
+
* // { // VpcEndpointError
|
|
60
|
+
* // VpcEndpointId: "STRING_VALUE",
|
|
61
|
+
* // ErrorCode: "ENDPOINT_NOT_FOUND" || "SERVER_ERROR",
|
|
62
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
63
|
+
* // },
|
|
64
|
+
* // ],
|
|
65
|
+
* // };
|
|
66
|
+
*
|
|
36
67
|
* ```
|
|
37
68
|
*
|
|
38
69
|
* @param DescribeVpcEndpointsCommandInput - {@link DescribeVpcEndpointsCommandInput}
|
|
@@ -53,6 +84,8 @@ export interface DescribeVpcEndpointsCommandOutput extends DescribeVpcEndpointsR
|
|
|
53
84
|
* @throws {@link ValidationException} (client fault)
|
|
54
85
|
* <p>An exception for missing / invalid input fields. Gives http status code of 400.</p>
|
|
55
86
|
*
|
|
87
|
+
* @throws {@link ElasticsearchServiceServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
56
89
|
*
|
|
57
90
|
*/
|
|
58
91
|
export declare class DescribeVpcEndpointsCommand extends $Command<DescribeVpcEndpointsCommandInput, DescribeVpcEndpointsCommandOutput, ElasticsearchServiceClientResolvedConfig> {
|
|
@@ -32,6 +32,23 @@ export interface DissociatePackageCommandOutput extends DissociatePackageRespons
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DissociatePackageCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DissociatePackageResponse
|
|
36
|
+
* // DomainPackageDetails: { // DomainPackageDetails
|
|
37
|
+
* // PackageID: "STRING_VALUE",
|
|
38
|
+
* // PackageName: "STRING_VALUE",
|
|
39
|
+
* // PackageType: "TXT-DICTIONARY",
|
|
40
|
+
* // LastUpdated: new Date("TIMESTAMP"),
|
|
41
|
+
* // DomainName: "STRING_VALUE",
|
|
42
|
+
* // DomainPackageStatus: "ASSOCIATING" || "ASSOCIATION_FAILED" || "ACTIVE" || "DISSOCIATING" || "DISSOCIATION_FAILED",
|
|
43
|
+
* // PackageVersion: "STRING_VALUE",
|
|
44
|
+
* // ReferencePath: "STRING_VALUE",
|
|
45
|
+
* // ErrorDetails: { // ErrorDetails
|
|
46
|
+
* // ErrorType: "STRING_VALUE",
|
|
47
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // },
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
35
52
|
* ```
|
|
36
53
|
*
|
|
37
54
|
* @param DissociatePackageCommandInput - {@link DissociatePackageCommandInput}
|
|
@@ -58,6 +75,8 @@ export interface DissociatePackageCommandOutput extends DissociatePackageRespons
|
|
|
58
75
|
* @throws {@link ValidationException} (client fault)
|
|
59
76
|
* <p>An exception for missing / invalid input fields. Gives http status code of 400.</p>
|
|
60
77
|
*
|
|
78
|
+
* @throws {@link ElasticsearchServiceServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
61
80
|
*
|
|
62
81
|
*/
|
|
63
82
|
export declare class DissociatePackageCommand extends $Command<DissociatePackageCommandInput, DissociatePackageCommandOutput, ElasticsearchServiceClientResolvedConfig> {
|
|
@@ -38,6 +38,17 @@ export interface GetCompatibleElasticsearchVersionsCommandOutput extends GetComp
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new GetCompatibleElasticsearchVersionsCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // GetCompatibleElasticsearchVersionsResponse
|
|
42
|
+
* // CompatibleElasticsearchVersions: [ // CompatibleElasticsearchVersionsList
|
|
43
|
+
* // { // CompatibleVersionsMap
|
|
44
|
+
* // SourceVersion: "STRING_VALUE",
|
|
45
|
+
* // TargetVersions: [ // ElasticsearchVersionList
|
|
46
|
+
* // "STRING_VALUE",
|
|
47
|
+
* // ],
|
|
48
|
+
* // },
|
|
49
|
+
* // ],
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
41
52
|
* ```
|
|
42
53
|
*
|
|
43
54
|
* @param GetCompatibleElasticsearchVersionsCommandInput - {@link GetCompatibleElasticsearchVersionsCommandInput}
|
|
@@ -61,6 +72,8 @@ export interface GetCompatibleElasticsearchVersionsCommandOutput extends GetComp
|
|
|
61
72
|
* @throws {@link ValidationException} (client fault)
|
|
62
73
|
* <p>An exception for missing / invalid input fields. Gives http status code of 400.</p>
|
|
63
74
|
*
|
|
75
|
+
* @throws {@link ElasticsearchServiceServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
64
77
|
*
|
|
65
78
|
*/
|
|
66
79
|
export declare class GetCompatibleElasticsearchVersionsCommand extends $Command<GetCompatibleElasticsearchVersionsCommandInput, GetCompatibleElasticsearchVersionsCommandOutput, ElasticsearchServiceClientResolvedConfig> {
|
|
@@ -33,6 +33,18 @@ export interface GetPackageVersionHistoryCommandOutput extends GetPackageVersion
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetPackageVersionHistoryCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetPackageVersionHistoryResponse
|
|
37
|
+
* // PackageID: "STRING_VALUE",
|
|
38
|
+
* // PackageVersionHistoryList: [ // PackageVersionHistoryList
|
|
39
|
+
* // { // PackageVersionHistory
|
|
40
|
+
* // PackageVersion: "STRING_VALUE",
|
|
41
|
+
* // CommitMessage: "STRING_VALUE",
|
|
42
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
43
|
+
* // },
|
|
44
|
+
* // ],
|
|
45
|
+
* // NextToken: "STRING_VALUE",
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
36
48
|
* ```
|
|
37
49
|
*
|
|
38
50
|
* @param GetPackageVersionHistoryCommandInput - {@link GetPackageVersionHistoryCommandInput}
|
|
@@ -56,6 +68,8 @@ export interface GetPackageVersionHistoryCommandOutput extends GetPackageVersion
|
|
|
56
68
|
* @throws {@link ValidationException} (client fault)
|
|
57
69
|
* <p>An exception for missing / invalid input fields. Gives http status code of 400.</p>
|
|
58
70
|
*
|
|
71
|
+
* @throws {@link ElasticsearchServiceServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
59
73
|
*
|
|
60
74
|
*/
|
|
61
75
|
export declare class GetPackageVersionHistoryCommand extends $Command<GetPackageVersionHistoryCommandInput, GetPackageVersionHistoryCommandOutput, ElasticsearchServiceClientResolvedConfig> {
|
|
@@ -33,6 +33,27 @@ export interface GetUpgradeHistoryCommandOutput extends GetUpgradeHistoryRespons
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetUpgradeHistoryCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetUpgradeHistoryResponse
|
|
37
|
+
* // UpgradeHistories: [ // UpgradeHistoryList
|
|
38
|
+
* // { // UpgradeHistory
|
|
39
|
+
* // UpgradeName: "STRING_VALUE",
|
|
40
|
+
* // StartTimestamp: new Date("TIMESTAMP"),
|
|
41
|
+
* // UpgradeStatus: "IN_PROGRESS" || "SUCCEEDED" || "SUCCEEDED_WITH_ISSUES" || "FAILED",
|
|
42
|
+
* // StepsList: [ // UpgradeStepsList
|
|
43
|
+
* // { // UpgradeStepItem
|
|
44
|
+
* // UpgradeStep: "PRE_UPGRADE_CHECK" || "SNAPSHOT" || "UPGRADE",
|
|
45
|
+
* // UpgradeStepStatus: "IN_PROGRESS" || "SUCCEEDED" || "SUCCEEDED_WITH_ISSUES" || "FAILED",
|
|
46
|
+
* // Issues: [ // Issues
|
|
47
|
+
* // "STRING_VALUE",
|
|
48
|
+
* // ],
|
|
49
|
+
* // ProgressPercent: Number("double"),
|
|
50
|
+
* // },
|
|
51
|
+
* // ],
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // NextToken: "STRING_VALUE",
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
36
57
|
* ```
|
|
37
58
|
*
|
|
38
59
|
* @param GetUpgradeHistoryCommandInput - {@link GetUpgradeHistoryCommandInput}
|
|
@@ -56,6 +77,8 @@ export interface GetUpgradeHistoryCommandOutput extends GetUpgradeHistoryRespons
|
|
|
56
77
|
* @throws {@link ValidationException} (client fault)
|
|
57
78
|
* <p>An exception for missing / invalid input fields. Gives http status code of 400.</p>
|
|
58
79
|
*
|
|
80
|
+
* @throws {@link ElasticsearchServiceServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
59
82
|
*
|
|
60
83
|
*/
|
|
61
84
|
export declare class GetUpgradeHistoryCommand extends $Command<GetUpgradeHistoryCommandInput, GetUpgradeHistoryCommandOutput, ElasticsearchServiceClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface GetUpgradeStatusCommandOutput extends GetUpgradeStatusResponse,
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetUpgradeStatusCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetUpgradeStatusResponse
|
|
35
|
+
* // UpgradeStep: "PRE_UPGRADE_CHECK" || "SNAPSHOT" || "UPGRADE",
|
|
36
|
+
* // StepStatus: "IN_PROGRESS" || "SUCCEEDED" || "SUCCEEDED_WITH_ISSUES" || "FAILED",
|
|
37
|
+
* // UpgradeName: "STRING_VALUE",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param GetUpgradeStatusCommandInput - {@link GetUpgradeStatusCommandInput}
|
|
@@ -54,6 +60,8 @@ export interface GetUpgradeStatusCommandOutput extends GetUpgradeStatusResponse,
|
|
|
54
60
|
* @throws {@link ValidationException} (client fault)
|
|
55
61
|
* <p>An exception for missing / invalid input fields. Gives http status code of 400.</p>
|
|
56
62
|
*
|
|
63
|
+
* @throws {@link ElasticsearchServiceServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
57
65
|
*
|
|
58
66
|
*/
|
|
59
67
|
export declare class GetUpgradeStatusCommand extends $Command<GetUpgradeStatusCommandInput, GetUpgradeStatusCommandOutput, ElasticsearchServiceClientResolvedConfig> {
|
|
@@ -31,6 +31,15 @@ export interface ListDomainNamesCommandOutput extends ListDomainNamesResponse, _
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListDomainNamesCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListDomainNamesResponse
|
|
35
|
+
* // DomainNames: [ // DomainInfoList
|
|
36
|
+
* // { // DomainInfo
|
|
37
|
+
* // DomainName: "STRING_VALUE",
|
|
38
|
+
* // EngineType: "OpenSearch" || "Elasticsearch",
|
|
39
|
+
* // },
|
|
40
|
+
* // ],
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
34
43
|
* ```
|
|
35
44
|
*
|
|
36
45
|
* @param ListDomainNamesCommandInput - {@link ListDomainNamesCommandInput}
|
|
@@ -45,6 +54,8 @@ export interface ListDomainNamesCommandOutput extends ListDomainNamesResponse, _
|
|
|
45
54
|
* @throws {@link ValidationException} (client fault)
|
|
46
55
|
* <p>An exception for missing / invalid input fields. Gives http status code of 400.</p>
|
|
47
56
|
*
|
|
57
|
+
* @throws {@link ElasticsearchServiceServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
48
59
|
*
|
|
49
60
|
*/
|
|
50
61
|
export declare class ListDomainNamesCommand extends $Command<ListDomainNamesCommandInput, ListDomainNamesCommandOutput, ElasticsearchServiceClientResolvedConfig> {
|
|
@@ -33,6 +33,26 @@ export interface ListDomainsForPackageCommandOutput extends ListDomainsForPackag
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListDomainsForPackageCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListDomainsForPackageResponse
|
|
37
|
+
* // DomainPackageDetailsList: [ // DomainPackageDetailsList
|
|
38
|
+
* // { // DomainPackageDetails
|
|
39
|
+
* // PackageID: "STRING_VALUE",
|
|
40
|
+
* // PackageName: "STRING_VALUE",
|
|
41
|
+
* // PackageType: "TXT-DICTIONARY",
|
|
42
|
+
* // LastUpdated: new Date("TIMESTAMP"),
|
|
43
|
+
* // DomainName: "STRING_VALUE",
|
|
44
|
+
* // DomainPackageStatus: "ASSOCIATING" || "ASSOCIATION_FAILED" || "ACTIVE" || "DISSOCIATING" || "DISSOCIATION_FAILED",
|
|
45
|
+
* // PackageVersion: "STRING_VALUE",
|
|
46
|
+
* // ReferencePath: "STRING_VALUE",
|
|
47
|
+
* // ErrorDetails: { // ErrorDetails
|
|
48
|
+
* // ErrorType: "STRING_VALUE",
|
|
49
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // NextToken: "STRING_VALUE",
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
36
56
|
* ```
|
|
37
57
|
*
|
|
38
58
|
* @param ListDomainsForPackageCommandInput - {@link ListDomainsForPackageCommandInput}
|
|
@@ -56,6 +76,8 @@ export interface ListDomainsForPackageCommandOutput extends ListDomainsForPackag
|
|
|
56
76
|
* @throws {@link ValidationException} (client fault)
|
|
57
77
|
* <p>An exception for missing / invalid input fields. Gives http status code of 400.</p>
|
|
58
78
|
*
|
|
79
|
+
* @throws {@link ElasticsearchServiceServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
59
81
|
*
|
|
60
82
|
*/
|
|
61
83
|
export declare class ListDomainsForPackageCommand extends $Command<ListDomainsForPackageCommandInput, ListDomainsForPackageCommandOutput, ElasticsearchServiceClientResolvedConfig> {
|
|
@@ -34,6 +34,13 @@ export interface ListElasticsearchInstanceTypesCommandOutput extends ListElastic
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListElasticsearchInstanceTypesCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListElasticsearchInstanceTypesResponse
|
|
38
|
+
* // ElasticsearchInstanceTypes: [ // ElasticsearchInstanceTypeList
|
|
39
|
+
* // "m3.medium.elasticsearch" || "m3.large.elasticsearch" || "m3.xlarge.elasticsearch" || "m3.2xlarge.elasticsearch" || "m4.large.elasticsearch" || "m4.xlarge.elasticsearch" || "m4.2xlarge.elasticsearch" || "m4.4xlarge.elasticsearch" || "m4.10xlarge.elasticsearch" || "m5.large.elasticsearch" || "m5.xlarge.elasticsearch" || "m5.2xlarge.elasticsearch" || "m5.4xlarge.elasticsearch" || "m5.12xlarge.elasticsearch" || "r5.large.elasticsearch" || "r5.xlarge.elasticsearch" || "r5.2xlarge.elasticsearch" || "r5.4xlarge.elasticsearch" || "r5.12xlarge.elasticsearch" || "c5.large.elasticsearch" || "c5.xlarge.elasticsearch" || "c5.2xlarge.elasticsearch" || "c5.4xlarge.elasticsearch" || "c5.9xlarge.elasticsearch" || "c5.18xlarge.elasticsearch" || "ultrawarm1.medium.elasticsearch" || "ultrawarm1.large.elasticsearch" || "t2.micro.elasticsearch" || "t2.small.elasticsearch" || "t2.medium.elasticsearch" || "r3.large.elasticsearch" || "r3.xlarge.elasticsearch" || "r3.2xlarge.elasticsearch" || "r3.4xlarge.elasticsearch" || "r3.8xlarge.elasticsearch" || "i2.xlarge.elasticsearch" || "i2.2xlarge.elasticsearch" || "d2.xlarge.elasticsearch" || "d2.2xlarge.elasticsearch" || "d2.4xlarge.elasticsearch" || "d2.8xlarge.elasticsearch" || "c4.large.elasticsearch" || "c4.xlarge.elasticsearch" || "c4.2xlarge.elasticsearch" || "c4.4xlarge.elasticsearch" || "c4.8xlarge.elasticsearch" || "r4.large.elasticsearch" || "r4.xlarge.elasticsearch" || "r4.2xlarge.elasticsearch" || "r4.4xlarge.elasticsearch" || "r4.8xlarge.elasticsearch" || "r4.16xlarge.elasticsearch" || "i3.large.elasticsearch" || "i3.xlarge.elasticsearch" || "i3.2xlarge.elasticsearch" || "i3.4xlarge.elasticsearch" || "i3.8xlarge.elasticsearch" || "i3.16xlarge.elasticsearch",
|
|
40
|
+
* // ],
|
|
41
|
+
* // NextToken: "STRING_VALUE",
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
37
44
|
* ```
|
|
38
45
|
*
|
|
39
46
|
* @param ListElasticsearchInstanceTypesCommandInput - {@link ListElasticsearchInstanceTypesCommandInput}
|
|
@@ -54,6 +61,8 @@ export interface ListElasticsearchInstanceTypesCommandOutput extends ListElastic
|
|
|
54
61
|
* @throws {@link ValidationException} (client fault)
|
|
55
62
|
* <p>An exception for missing / invalid input fields. Gives http status code of 400.</p>
|
|
56
63
|
*
|
|
64
|
+
* @throws {@link ElasticsearchServiceServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
57
66
|
*
|
|
58
67
|
*/
|
|
59
68
|
export declare class ListElasticsearchInstanceTypesCommand extends $Command<ListElasticsearchInstanceTypesCommandInput, ListElasticsearchInstanceTypesCommandOutput, ElasticsearchServiceClientResolvedConfig> {
|
|
@@ -32,6 +32,13 @@ export interface ListElasticsearchVersionsCommandOutput extends ListElasticsearc
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListElasticsearchVersionsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListElasticsearchVersionsResponse
|
|
36
|
+
* // ElasticsearchVersions: [ // ElasticsearchVersionList
|
|
37
|
+
* // "STRING_VALUE",
|
|
38
|
+
* // ],
|
|
39
|
+
* // NextToken: "STRING_VALUE",
|
|
40
|
+
* // };
|
|
41
|
+
*
|
|
35
42
|
* ```
|
|
36
43
|
*
|
|
37
44
|
* @param ListElasticsearchVersionsCommandInput - {@link ListElasticsearchVersionsCommandInput}
|
|
@@ -52,6 +59,8 @@ export interface ListElasticsearchVersionsCommandOutput extends ListElasticsearc
|
|
|
52
59
|
* @throws {@link ValidationException} (client fault)
|
|
53
60
|
* <p>An exception for missing / invalid input fields. Gives http status code of 400.</p>
|
|
54
61
|
*
|
|
62
|
+
* @throws {@link ElasticsearchServiceServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
55
64
|
*
|
|
56
65
|
*/
|
|
57
66
|
export declare class ListElasticsearchVersionsCommand extends $Command<ListElasticsearchVersionsCommandInput, ListElasticsearchVersionsCommandOutput, ElasticsearchServiceClientResolvedConfig> {
|
|
@@ -33,6 +33,26 @@ export interface ListPackagesForDomainCommandOutput extends ListPackagesForDomai
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListPackagesForDomainCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListPackagesForDomainResponse
|
|
37
|
+
* // DomainPackageDetailsList: [ // DomainPackageDetailsList
|
|
38
|
+
* // { // DomainPackageDetails
|
|
39
|
+
* // PackageID: "STRING_VALUE",
|
|
40
|
+
* // PackageName: "STRING_VALUE",
|
|
41
|
+
* // PackageType: "TXT-DICTIONARY",
|
|
42
|
+
* // LastUpdated: new Date("TIMESTAMP"),
|
|
43
|
+
* // DomainName: "STRING_VALUE",
|
|
44
|
+
* // DomainPackageStatus: "ASSOCIATING" || "ASSOCIATION_FAILED" || "ACTIVE" || "DISSOCIATING" || "DISSOCIATION_FAILED",
|
|
45
|
+
* // PackageVersion: "STRING_VALUE",
|
|
46
|
+
* // ReferencePath: "STRING_VALUE",
|
|
47
|
+
* // ErrorDetails: { // ErrorDetails
|
|
48
|
+
* // ErrorType: "STRING_VALUE",
|
|
49
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // NextToken: "STRING_VALUE",
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
36
56
|
* ```
|
|
37
57
|
*
|
|
38
58
|
* @param ListPackagesForDomainCommandInput - {@link ListPackagesForDomainCommandInput}
|
|
@@ -56,6 +76,8 @@ export interface ListPackagesForDomainCommandOutput extends ListPackagesForDomai
|
|
|
56
76
|
* @throws {@link ValidationException} (client fault)
|
|
57
77
|
* <p>An exception for missing / invalid input fields. Gives http status code of 400.</p>
|
|
58
78
|
*
|
|
79
|
+
* @throws {@link ElasticsearchServiceServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
59
81
|
*
|
|
60
82
|
*/
|
|
61
83
|
export declare class ListPackagesForDomainCommand extends $Command<ListPackagesForDomainCommandInput, ListPackagesForDomainCommandOutput, ElasticsearchServiceClientResolvedConfig> {
|
|
@@ -31,6 +31,15 @@ export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBeare
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsResponse
|
|
35
|
+
* // TagList: [ // TagList
|
|
36
|
+
* // { // Tag
|
|
37
|
+
* // Key: "STRING_VALUE", // required
|
|
38
|
+
* // Value: "STRING_VALUE", // required
|
|
39
|
+
* // },
|
|
40
|
+
* // ],
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
34
43
|
* ```
|
|
35
44
|
*
|
|
36
45
|
* @param ListTagsCommandInput - {@link ListTagsCommandInput}
|
|
@@ -51,6 +60,8 @@ export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBeare
|
|
|
51
60
|
* @throws {@link ValidationException} (client fault)
|
|
52
61
|
* <p>An exception for missing / invalid input fields. Gives http status code of 400.</p>
|
|
53
62
|
*
|
|
63
|
+
* @throws {@link ElasticsearchServiceServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
54
65
|
*
|
|
55
66
|
*/
|
|
56
67
|
export declare class ListTagsCommand extends $Command<ListTagsCommandInput, ListTagsCommandOutput, ElasticsearchServiceClientResolvedConfig> {
|