@aws-sdk/client-elasticsearch-service 3.504.0 → 3.508.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 +8 -0
- package/dist-cjs/commands/CancelDomainConfigChangeCommand.js +1 -0
- package/dist-cjs/index.js +195 -1500
- package/dist-es/ElasticsearchService.js +2 -0
- package/dist-es/commands/CancelDomainConfigChangeCommand.js +24 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +27 -0
- package/dist-es/protocols/Aws_restJson1.js +139 -1501
- package/dist-types/ElasticsearchService.d.ts +7 -0
- package/dist-types/ElasticsearchServiceClient.d.ts +3 -2
- package/dist-types/commands/CancelDomainConfigChangeCommand.d.ts +84 -0
- package/dist-types/commands/CreateElasticsearchDomainCommand.d.ts +13 -0
- package/dist-types/commands/DeleteElasticsearchDomainCommand.d.ts +13 -0
- package/dist-types/commands/DescribeDomainChangeProgressCommand.d.ts +3 -0
- package/dist-types/commands/DescribeElasticsearchDomainCommand.d.ts +13 -0
- package/dist-types/commands/DescribeElasticsearchDomainConfigCommand.d.ts +12 -0
- package/dist-types/commands/DescribeElasticsearchDomainsCommand.d.ts +13 -0
- package/dist-types/commands/UpdateElasticsearchDomainConfigCommand.d.ts +12 -0
- package/dist-types/commands/UpgradeElasticsearchDomainCommand.d.ts +4 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +197 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/ElasticsearchService.d.ts +17 -0
- package/dist-types/ts3.4/ElasticsearchServiceClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/CancelDomainConfigChangeCommand.d.ts +30 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +64 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +3 -3
|
@@ -3,6 +3,7 @@ import { AcceptInboundCrossClusterSearchConnectionCommandInput, AcceptInboundCro
|
|
|
3
3
|
import { AddTagsCommandInput, AddTagsCommandOutput } from "./commands/AddTagsCommand";
|
|
4
4
|
import { AssociatePackageCommandInput, AssociatePackageCommandOutput } from "./commands/AssociatePackageCommand";
|
|
5
5
|
import { AuthorizeVpcEndpointAccessCommandInput, AuthorizeVpcEndpointAccessCommandOutput } from "./commands/AuthorizeVpcEndpointAccessCommand";
|
|
6
|
+
import { CancelDomainConfigChangeCommandInput, CancelDomainConfigChangeCommandOutput } from "./commands/CancelDomainConfigChangeCommand";
|
|
6
7
|
import { CancelElasticsearchServiceSoftwareUpdateCommandInput, CancelElasticsearchServiceSoftwareUpdateCommandOutput } from "./commands/CancelElasticsearchServiceSoftwareUpdateCommand";
|
|
7
8
|
import { CreateElasticsearchDomainCommandInput, CreateElasticsearchDomainCommandOutput } from "./commands/CreateElasticsearchDomainCommand";
|
|
8
9
|
import { CreateOutboundCrossClusterSearchConnectionCommandInput, CreateOutboundCrossClusterSearchConnectionCommandOutput } from "./commands/CreateOutboundCrossClusterSearchConnectionCommand";
|
|
@@ -75,6 +76,12 @@ export interface ElasticsearchService {
|
|
|
75
76
|
authorizeVpcEndpointAccess(args: AuthorizeVpcEndpointAccessCommandInput, options?: __HttpHandlerOptions): Promise<AuthorizeVpcEndpointAccessCommandOutput>;
|
|
76
77
|
authorizeVpcEndpointAccess(args: AuthorizeVpcEndpointAccessCommandInput, cb: (err: any, data?: AuthorizeVpcEndpointAccessCommandOutput) => void): void;
|
|
77
78
|
authorizeVpcEndpointAccess(args: AuthorizeVpcEndpointAccessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AuthorizeVpcEndpointAccessCommandOutput) => void): void;
|
|
79
|
+
/**
|
|
80
|
+
* @see {@link CancelDomainConfigChangeCommand}
|
|
81
|
+
*/
|
|
82
|
+
cancelDomainConfigChange(args: CancelDomainConfigChangeCommandInput, options?: __HttpHandlerOptions): Promise<CancelDomainConfigChangeCommandOutput>;
|
|
83
|
+
cancelDomainConfigChange(args: CancelDomainConfigChangeCommandInput, cb: (err: any, data?: CancelDomainConfigChangeCommandOutput) => void): void;
|
|
84
|
+
cancelDomainConfigChange(args: CancelDomainConfigChangeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelDomainConfigChangeCommandOutput) => void): void;
|
|
78
85
|
/**
|
|
79
86
|
* @see {@link CancelElasticsearchServiceSoftwareUpdateCommand}
|
|
80
87
|
*/
|
|
@@ -12,6 +12,7 @@ import { AcceptInboundCrossClusterSearchConnectionCommandInput, AcceptInboundCro
|
|
|
12
12
|
import { AddTagsCommandInput, AddTagsCommandOutput } from "./commands/AddTagsCommand";
|
|
13
13
|
import { AssociatePackageCommandInput, AssociatePackageCommandOutput } from "./commands/AssociatePackageCommand";
|
|
14
14
|
import { AuthorizeVpcEndpointAccessCommandInput, AuthorizeVpcEndpointAccessCommandOutput } from "./commands/AuthorizeVpcEndpointAccessCommand";
|
|
15
|
+
import { CancelDomainConfigChangeCommandInput, CancelDomainConfigChangeCommandOutput } from "./commands/CancelDomainConfigChangeCommand";
|
|
15
16
|
import { CancelElasticsearchServiceSoftwareUpdateCommandInput, CancelElasticsearchServiceSoftwareUpdateCommandOutput } from "./commands/CancelElasticsearchServiceSoftwareUpdateCommand";
|
|
16
17
|
import { CreateElasticsearchDomainCommandInput, CreateElasticsearchDomainCommandOutput } from "./commands/CreateElasticsearchDomainCommand";
|
|
17
18
|
import { CreateOutboundCrossClusterSearchConnectionCommandInput, CreateOutboundCrossClusterSearchConnectionCommandOutput } from "./commands/CreateOutboundCrossClusterSearchConnectionCommand";
|
|
@@ -64,11 +65,11 @@ export { __Client };
|
|
|
64
65
|
/**
|
|
65
66
|
* @public
|
|
66
67
|
*/
|
|
67
|
-
export type ServiceInputTypes = AcceptInboundCrossClusterSearchConnectionCommandInput | AddTagsCommandInput | AssociatePackageCommandInput | AuthorizeVpcEndpointAccessCommandInput | CancelElasticsearchServiceSoftwareUpdateCommandInput | CreateElasticsearchDomainCommandInput | CreateOutboundCrossClusterSearchConnectionCommandInput | CreatePackageCommandInput | CreateVpcEndpointCommandInput | DeleteElasticsearchDomainCommandInput | DeleteElasticsearchServiceRoleCommandInput | DeleteInboundCrossClusterSearchConnectionCommandInput | DeleteOutboundCrossClusterSearchConnectionCommandInput | DeletePackageCommandInput | DeleteVpcEndpointCommandInput | DescribeDomainAutoTunesCommandInput | DescribeDomainChangeProgressCommandInput | DescribeElasticsearchDomainCommandInput | DescribeElasticsearchDomainConfigCommandInput | DescribeElasticsearchDomainsCommandInput | DescribeElasticsearchInstanceTypeLimitsCommandInput | DescribeInboundCrossClusterSearchConnectionsCommandInput | DescribeOutboundCrossClusterSearchConnectionsCommandInput | DescribePackagesCommandInput | DescribeReservedElasticsearchInstanceOfferingsCommandInput | DescribeReservedElasticsearchInstancesCommandInput | DescribeVpcEndpointsCommandInput | DissociatePackageCommandInput | GetCompatibleElasticsearchVersionsCommandInput | GetPackageVersionHistoryCommandInput | GetUpgradeHistoryCommandInput | GetUpgradeStatusCommandInput | ListDomainNamesCommandInput | ListDomainsForPackageCommandInput | ListElasticsearchInstanceTypesCommandInput | ListElasticsearchVersionsCommandInput | ListPackagesForDomainCommandInput | ListTagsCommandInput | ListVpcEndpointAccessCommandInput | ListVpcEndpointsCommandInput | ListVpcEndpointsForDomainCommandInput | PurchaseReservedElasticsearchInstanceOfferingCommandInput | RejectInboundCrossClusterSearchConnectionCommandInput | RemoveTagsCommandInput | RevokeVpcEndpointAccessCommandInput | StartElasticsearchServiceSoftwareUpdateCommandInput | UpdateElasticsearchDomainConfigCommandInput | UpdatePackageCommandInput | UpdateVpcEndpointCommandInput | UpgradeElasticsearchDomainCommandInput;
|
|
68
|
+
export type ServiceInputTypes = AcceptInboundCrossClusterSearchConnectionCommandInput | AddTagsCommandInput | AssociatePackageCommandInput | AuthorizeVpcEndpointAccessCommandInput | CancelDomainConfigChangeCommandInput | CancelElasticsearchServiceSoftwareUpdateCommandInput | CreateElasticsearchDomainCommandInput | CreateOutboundCrossClusterSearchConnectionCommandInput | CreatePackageCommandInput | CreateVpcEndpointCommandInput | DeleteElasticsearchDomainCommandInput | DeleteElasticsearchServiceRoleCommandInput | DeleteInboundCrossClusterSearchConnectionCommandInput | DeleteOutboundCrossClusterSearchConnectionCommandInput | DeletePackageCommandInput | DeleteVpcEndpointCommandInput | DescribeDomainAutoTunesCommandInput | DescribeDomainChangeProgressCommandInput | DescribeElasticsearchDomainCommandInput | DescribeElasticsearchDomainConfigCommandInput | DescribeElasticsearchDomainsCommandInput | DescribeElasticsearchInstanceTypeLimitsCommandInput | DescribeInboundCrossClusterSearchConnectionsCommandInput | DescribeOutboundCrossClusterSearchConnectionsCommandInput | DescribePackagesCommandInput | DescribeReservedElasticsearchInstanceOfferingsCommandInput | DescribeReservedElasticsearchInstancesCommandInput | DescribeVpcEndpointsCommandInput | DissociatePackageCommandInput | GetCompatibleElasticsearchVersionsCommandInput | GetPackageVersionHistoryCommandInput | GetUpgradeHistoryCommandInput | GetUpgradeStatusCommandInput | ListDomainNamesCommandInput | ListDomainsForPackageCommandInput | ListElasticsearchInstanceTypesCommandInput | ListElasticsearchVersionsCommandInput | ListPackagesForDomainCommandInput | ListTagsCommandInput | ListVpcEndpointAccessCommandInput | ListVpcEndpointsCommandInput | ListVpcEndpointsForDomainCommandInput | PurchaseReservedElasticsearchInstanceOfferingCommandInput | RejectInboundCrossClusterSearchConnectionCommandInput | RemoveTagsCommandInput | RevokeVpcEndpointAccessCommandInput | StartElasticsearchServiceSoftwareUpdateCommandInput | UpdateElasticsearchDomainConfigCommandInput | UpdatePackageCommandInput | UpdateVpcEndpointCommandInput | UpgradeElasticsearchDomainCommandInput;
|
|
68
69
|
/**
|
|
69
70
|
* @public
|
|
70
71
|
*/
|
|
71
|
-
export type ServiceOutputTypes = AcceptInboundCrossClusterSearchConnectionCommandOutput | AddTagsCommandOutput | AssociatePackageCommandOutput | AuthorizeVpcEndpointAccessCommandOutput | CancelElasticsearchServiceSoftwareUpdateCommandOutput | CreateElasticsearchDomainCommandOutput | CreateOutboundCrossClusterSearchConnectionCommandOutput | CreatePackageCommandOutput | CreateVpcEndpointCommandOutput | DeleteElasticsearchDomainCommandOutput | DeleteElasticsearchServiceRoleCommandOutput | DeleteInboundCrossClusterSearchConnectionCommandOutput | DeleteOutboundCrossClusterSearchConnectionCommandOutput | DeletePackageCommandOutput | DeleteVpcEndpointCommandOutput | DescribeDomainAutoTunesCommandOutput | DescribeDomainChangeProgressCommandOutput | DescribeElasticsearchDomainCommandOutput | DescribeElasticsearchDomainConfigCommandOutput | DescribeElasticsearchDomainsCommandOutput | DescribeElasticsearchInstanceTypeLimitsCommandOutput | DescribeInboundCrossClusterSearchConnectionsCommandOutput | DescribeOutboundCrossClusterSearchConnectionsCommandOutput | DescribePackagesCommandOutput | DescribeReservedElasticsearchInstanceOfferingsCommandOutput | DescribeReservedElasticsearchInstancesCommandOutput | DescribeVpcEndpointsCommandOutput | DissociatePackageCommandOutput | GetCompatibleElasticsearchVersionsCommandOutput | GetPackageVersionHistoryCommandOutput | GetUpgradeHistoryCommandOutput | GetUpgradeStatusCommandOutput | ListDomainNamesCommandOutput | ListDomainsForPackageCommandOutput | ListElasticsearchInstanceTypesCommandOutput | ListElasticsearchVersionsCommandOutput | ListPackagesForDomainCommandOutput | ListTagsCommandOutput | ListVpcEndpointAccessCommandOutput | ListVpcEndpointsCommandOutput | ListVpcEndpointsForDomainCommandOutput | PurchaseReservedElasticsearchInstanceOfferingCommandOutput | RejectInboundCrossClusterSearchConnectionCommandOutput | RemoveTagsCommandOutput | RevokeVpcEndpointAccessCommandOutput | StartElasticsearchServiceSoftwareUpdateCommandOutput | UpdateElasticsearchDomainConfigCommandOutput | UpdatePackageCommandOutput | UpdateVpcEndpointCommandOutput | UpgradeElasticsearchDomainCommandOutput;
|
|
72
|
+
export type ServiceOutputTypes = AcceptInboundCrossClusterSearchConnectionCommandOutput | AddTagsCommandOutput | AssociatePackageCommandOutput | AuthorizeVpcEndpointAccessCommandOutput | CancelDomainConfigChangeCommandOutput | CancelElasticsearchServiceSoftwareUpdateCommandOutput | CreateElasticsearchDomainCommandOutput | CreateOutboundCrossClusterSearchConnectionCommandOutput | CreatePackageCommandOutput | CreateVpcEndpointCommandOutput | DeleteElasticsearchDomainCommandOutput | DeleteElasticsearchServiceRoleCommandOutput | DeleteInboundCrossClusterSearchConnectionCommandOutput | DeleteOutboundCrossClusterSearchConnectionCommandOutput | DeletePackageCommandOutput | DeleteVpcEndpointCommandOutput | DescribeDomainAutoTunesCommandOutput | DescribeDomainChangeProgressCommandOutput | DescribeElasticsearchDomainCommandOutput | DescribeElasticsearchDomainConfigCommandOutput | DescribeElasticsearchDomainsCommandOutput | DescribeElasticsearchInstanceTypeLimitsCommandOutput | DescribeInboundCrossClusterSearchConnectionsCommandOutput | DescribeOutboundCrossClusterSearchConnectionsCommandOutput | DescribePackagesCommandOutput | DescribeReservedElasticsearchInstanceOfferingsCommandOutput | DescribeReservedElasticsearchInstancesCommandOutput | DescribeVpcEndpointsCommandOutput | DissociatePackageCommandOutput | GetCompatibleElasticsearchVersionsCommandOutput | GetPackageVersionHistoryCommandOutput | GetUpgradeHistoryCommandOutput | GetUpgradeStatusCommandOutput | ListDomainNamesCommandOutput | ListDomainsForPackageCommandOutput | ListElasticsearchInstanceTypesCommandOutput | ListElasticsearchVersionsCommandOutput | ListPackagesForDomainCommandOutput | ListTagsCommandOutput | ListVpcEndpointAccessCommandOutput | ListVpcEndpointsCommandOutput | ListVpcEndpointsForDomainCommandOutput | PurchaseReservedElasticsearchInstanceOfferingCommandOutput | RejectInboundCrossClusterSearchConnectionCommandOutput | RemoveTagsCommandOutput | RevokeVpcEndpointAccessCommandOutput | StartElasticsearchServiceSoftwareUpdateCommandOutput | UpdateElasticsearchDomainConfigCommandOutput | UpdatePackageCommandOutput | UpdateVpcEndpointCommandOutput | UpgradeElasticsearchDomainCommandOutput;
|
|
72
73
|
/**
|
|
73
74
|
* @public
|
|
74
75
|
*/
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticsearchServiceClient";
|
|
4
|
+
import { CancelDomainConfigChangeRequest, CancelDomainConfigChangeResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export { __MetadataBearer, $Command };
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*
|
|
12
|
+
* The input for {@link CancelDomainConfigChangeCommand}.
|
|
13
|
+
*/
|
|
14
|
+
export interface CancelDomainConfigChangeCommandInput extends CancelDomainConfigChangeRequest {
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
*
|
|
19
|
+
* The output of {@link CancelDomainConfigChangeCommand}.
|
|
20
|
+
*/
|
|
21
|
+
export interface CancelDomainConfigChangeCommandOutput extends CancelDomainConfigChangeResponse, __MetadataBearer {
|
|
22
|
+
}
|
|
23
|
+
declare const CancelDomainConfigChangeCommand_base: {
|
|
24
|
+
new (input: CancelDomainConfigChangeCommandInput): import("@smithy/smithy-client").CommandImpl<CancelDomainConfigChangeCommandInput, CancelDomainConfigChangeCommandOutput, ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
* @public
|
|
29
|
+
* <p>Cancels a pending configuration change on an Amazon OpenSearch Service domain.</p>
|
|
30
|
+
* @example
|
|
31
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
32
|
+
* ```javascript
|
|
33
|
+
* import { ElasticsearchServiceClient, CancelDomainConfigChangeCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
34
|
+
* // const { ElasticsearchServiceClient, CancelDomainConfigChangeCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
35
|
+
* const client = new ElasticsearchServiceClient(config);
|
|
36
|
+
* const input = { // CancelDomainConfigChangeRequest
|
|
37
|
+
* DomainName: "STRING_VALUE", // required
|
|
38
|
+
* DryRun: true || false,
|
|
39
|
+
* };
|
|
40
|
+
* const command = new CancelDomainConfigChangeCommand(input);
|
|
41
|
+
* const response = await client.send(command);
|
|
42
|
+
* // { // CancelDomainConfigChangeResponse
|
|
43
|
+
* // DryRun: true || false,
|
|
44
|
+
* // CancelledChangeIds: [ // GUIDList
|
|
45
|
+
* // "STRING_VALUE",
|
|
46
|
+
* // ],
|
|
47
|
+
* // CancelledChangeProperties: [ // CancelledChangePropertyList
|
|
48
|
+
* // { // CancelledChangeProperty
|
|
49
|
+
* // PropertyName: "STRING_VALUE",
|
|
50
|
+
* // CancelledValue: "STRING_VALUE",
|
|
51
|
+
* // ActiveValue: "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
56
|
+
* ```
|
|
57
|
+
*
|
|
58
|
+
* @param CancelDomainConfigChangeCommandInput - {@link CancelDomainConfigChangeCommandInput}
|
|
59
|
+
* @returns {@link CancelDomainConfigChangeCommandOutput}
|
|
60
|
+
* @see {@link CancelDomainConfigChangeCommandInput} for command's `input` shape.
|
|
61
|
+
* @see {@link CancelDomainConfigChangeCommandOutput} for command's `response` shape.
|
|
62
|
+
* @see {@link ElasticsearchServiceClientResolvedConfig | config} for ElasticsearchServiceClient's `config` shape.
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link BaseException} (client fault)
|
|
65
|
+
* <p>An error occurred while processing the request.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link DisabledOperationException} (client fault)
|
|
68
|
+
* <p>An error occured because the client wanted to access a not supported operation. Gives http status code of 409.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link InternalException} (server fault)
|
|
71
|
+
* <p>The request processing has failed because of an unknown error, exception or failure (the failure is internal to the service) . Gives http status code of 500.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
74
|
+
* <p>An exception for accessing or deleting a resource that does not exist. Gives http status code of 400.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link ValidationException} (client fault)
|
|
77
|
+
* <p>An exception for missing / invalid input fields. Gives http status code of 400.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link ElasticsearchServiceServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
|
|
81
|
+
*
|
|
82
|
+
*/
|
|
83
|
+
export declare class CancelDomainConfigChangeCommand extends CancelDomainConfigChangeCommand_base {
|
|
84
|
+
}
|
|
@@ -262,7 +262,20 @@ declare const CreateElasticsearchDomainCommand_base: {
|
|
|
262
262
|
* // ChangeProgressDetails: { // ChangeProgressDetails
|
|
263
263
|
* // ChangeId: "STRING_VALUE",
|
|
264
264
|
* // Message: "STRING_VALUE",
|
|
265
|
+
* // ConfigChangeStatus: "Pending" || "Initializing" || "Validating" || "ValidationFailed" || "ApplyingChanges" || "Completed" || "PendingUserInput" || "Cancelled",
|
|
266
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
267
|
+
* // LastUpdatedTime: new Date("TIMESTAMP"),
|
|
268
|
+
* // InitiatedBy: "CUSTOMER" || "SERVICE",
|
|
265
269
|
* // },
|
|
270
|
+
* // DomainProcessingStatus: "Creating" || "Active" || "Modifying" || "UpgradingEngineVersion" || "UpdatingServiceSoftware" || "Isolated" || "Deleting",
|
|
271
|
+
* // ModifyingProperties: [ // ModifyingPropertiesList
|
|
272
|
+
* // { // ModifyingProperties
|
|
273
|
+
* // Name: "STRING_VALUE",
|
|
274
|
+
* // ActiveValue: "STRING_VALUE",
|
|
275
|
+
* // PendingValue: "STRING_VALUE",
|
|
276
|
+
* // ValueType: "PLAIN_TEXT" || "STRINGIFIED_JSON",
|
|
277
|
+
* // },
|
|
278
|
+
* // ],
|
|
266
279
|
* // },
|
|
267
280
|
* // };
|
|
268
281
|
*
|
|
@@ -154,7 +154,20 @@ declare const DeleteElasticsearchDomainCommand_base: {
|
|
|
154
154
|
* // ChangeProgressDetails: { // ChangeProgressDetails
|
|
155
155
|
* // ChangeId: "STRING_VALUE",
|
|
156
156
|
* // Message: "STRING_VALUE",
|
|
157
|
+
* // ConfigChangeStatus: "Pending" || "Initializing" || "Validating" || "ValidationFailed" || "ApplyingChanges" || "Completed" || "PendingUserInput" || "Cancelled",
|
|
158
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
159
|
+
* // LastUpdatedTime: new Date("TIMESTAMP"),
|
|
160
|
+
* // InitiatedBy: "CUSTOMER" || "SERVICE",
|
|
157
161
|
* // },
|
|
162
|
+
* // DomainProcessingStatus: "Creating" || "Active" || "Modifying" || "UpgradingEngineVersion" || "UpdatingServiceSoftware" || "Isolated" || "Deleting",
|
|
163
|
+
* // ModifyingProperties: [ // ModifyingPropertiesList
|
|
164
|
+
* // { // ModifyingProperties
|
|
165
|
+
* // Name: "STRING_VALUE",
|
|
166
|
+
* // ActiveValue: "STRING_VALUE",
|
|
167
|
+
* // PendingValue: "STRING_VALUE",
|
|
168
|
+
* // ValueType: "PLAIN_TEXT" || "STRINGIFIED_JSON",
|
|
169
|
+
* // },
|
|
170
|
+
* // ],
|
|
158
171
|
* // },
|
|
159
172
|
* // };
|
|
160
173
|
*
|
|
@@ -60,6 +60,9 @@ declare const DescribeDomainChangeProgressCommand_base: {
|
|
|
60
60
|
* // LastUpdated: new Date("TIMESTAMP"),
|
|
61
61
|
* // },
|
|
62
62
|
* // ],
|
|
63
|
+
* // ConfigChangeStatus: "Pending" || "Initializing" || "Validating" || "ValidationFailed" || "ApplyingChanges" || "Completed" || "PendingUserInput" || "Cancelled",
|
|
64
|
+
* // LastUpdatedTime: new Date("TIMESTAMP"),
|
|
65
|
+
* // InitiatedBy: "CUSTOMER" || "SERVICE",
|
|
63
66
|
* // },
|
|
64
67
|
* // };
|
|
65
68
|
*
|
|
@@ -154,7 +154,20 @@ declare const DescribeElasticsearchDomainCommand_base: {
|
|
|
154
154
|
* // ChangeProgressDetails: { // ChangeProgressDetails
|
|
155
155
|
* // ChangeId: "STRING_VALUE",
|
|
156
156
|
* // Message: "STRING_VALUE",
|
|
157
|
+
* // ConfigChangeStatus: "Pending" || "Initializing" || "Validating" || "ValidationFailed" || "ApplyingChanges" || "Completed" || "PendingUserInput" || "Cancelled",
|
|
158
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
159
|
+
* // LastUpdatedTime: new Date("TIMESTAMP"),
|
|
160
|
+
* // InitiatedBy: "CUSTOMER" || "SERVICE",
|
|
157
161
|
* // },
|
|
162
|
+
* // DomainProcessingStatus: "Creating" || "Active" || "Modifying" || "UpgradingEngineVersion" || "UpdatingServiceSoftware" || "Isolated" || "Deleting",
|
|
163
|
+
* // ModifyingProperties: [ // ModifyingPropertiesList
|
|
164
|
+
* // { // ModifyingProperties
|
|
165
|
+
* // Name: "STRING_VALUE",
|
|
166
|
+
* // ActiveValue: "STRING_VALUE",
|
|
167
|
+
* // PendingValue: "STRING_VALUE",
|
|
168
|
+
* // ValueType: "PLAIN_TEXT" || "STRINGIFIED_JSON",
|
|
169
|
+
* // },
|
|
170
|
+
* // ],
|
|
158
171
|
* // },
|
|
159
172
|
* // };
|
|
160
173
|
*
|
|
@@ -222,7 +222,19 @@ declare const DescribeElasticsearchDomainConfigCommand_base: {
|
|
|
222
222
|
* // ChangeProgressDetails: { // ChangeProgressDetails
|
|
223
223
|
* // ChangeId: "STRING_VALUE",
|
|
224
224
|
* // Message: "STRING_VALUE",
|
|
225
|
+
* // ConfigChangeStatus: "Pending" || "Initializing" || "Validating" || "ValidationFailed" || "ApplyingChanges" || "Completed" || "PendingUserInput" || "Cancelled",
|
|
226
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
227
|
+
* // LastUpdatedTime: new Date("TIMESTAMP"),
|
|
228
|
+
* // InitiatedBy: "CUSTOMER" || "SERVICE",
|
|
225
229
|
* // },
|
|
230
|
+
* // ModifyingProperties: [ // ModifyingPropertiesList
|
|
231
|
+
* // { // ModifyingProperties
|
|
232
|
+
* // Name: "STRING_VALUE",
|
|
233
|
+
* // ActiveValue: "STRING_VALUE",
|
|
234
|
+
* // PendingValue: "STRING_VALUE",
|
|
235
|
+
* // ValueType: "PLAIN_TEXT" || "STRINGIFIED_JSON",
|
|
236
|
+
* // },
|
|
237
|
+
* // ],
|
|
226
238
|
* // },
|
|
227
239
|
* // };
|
|
228
240
|
*
|
|
@@ -157,7 +157,20 @@ declare const DescribeElasticsearchDomainsCommand_base: {
|
|
|
157
157
|
* // ChangeProgressDetails: { // ChangeProgressDetails
|
|
158
158
|
* // ChangeId: "STRING_VALUE",
|
|
159
159
|
* // Message: "STRING_VALUE",
|
|
160
|
+
* // ConfigChangeStatus: "Pending" || "Initializing" || "Validating" || "ValidationFailed" || "ApplyingChanges" || "Completed" || "PendingUserInput" || "Cancelled",
|
|
161
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
162
|
+
* // LastUpdatedTime: new Date("TIMESTAMP"),
|
|
163
|
+
* // InitiatedBy: "CUSTOMER" || "SERVICE",
|
|
160
164
|
* // },
|
|
165
|
+
* // DomainProcessingStatus: "Creating" || "Active" || "Modifying" || "UpgradingEngineVersion" || "UpdatingServiceSoftware" || "Isolated" || "Deleting",
|
|
166
|
+
* // ModifyingProperties: [ // ModifyingPropertiesList
|
|
167
|
+
* // { // ModifyingProperties
|
|
168
|
+
* // Name: "STRING_VALUE",
|
|
169
|
+
* // ActiveValue: "STRING_VALUE",
|
|
170
|
+
* // PendingValue: "STRING_VALUE",
|
|
171
|
+
* // ValueType: "PLAIN_TEXT" || "STRINGIFIED_JSON",
|
|
172
|
+
* // },
|
|
173
|
+
* // ],
|
|
161
174
|
* // },
|
|
162
175
|
* // ],
|
|
163
176
|
* // };
|
|
@@ -324,7 +324,19 @@ declare const UpdateElasticsearchDomainConfigCommand_base: {
|
|
|
324
324
|
* // ChangeProgressDetails: { // ChangeProgressDetails
|
|
325
325
|
* // ChangeId: "STRING_VALUE",
|
|
326
326
|
* // Message: "STRING_VALUE",
|
|
327
|
+
* // ConfigChangeStatus: "Pending" || "Initializing" || "Validating" || "ValidationFailed" || "ApplyingChanges" || "Completed" || "PendingUserInput" || "Cancelled",
|
|
328
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
329
|
+
* // LastUpdatedTime: new Date("TIMESTAMP"),
|
|
330
|
+
* // InitiatedBy: "CUSTOMER" || "SERVICE",
|
|
327
331
|
* // },
|
|
332
|
+
* // ModifyingProperties: [ // ModifyingPropertiesList
|
|
333
|
+
* // { // ModifyingProperties
|
|
334
|
+
* // Name: "STRING_VALUE",
|
|
335
|
+
* // ActiveValue: "STRING_VALUE",
|
|
336
|
+
* // PendingValue: "STRING_VALUE",
|
|
337
|
+
* // ValueType: "PLAIN_TEXT" || "STRINGIFIED_JSON",
|
|
338
|
+
* // },
|
|
339
|
+
* // ],
|
|
328
340
|
* // },
|
|
329
341
|
* // DryRunResults: { // DryRunResults
|
|
330
342
|
* // DeploymentType: "STRING_VALUE",
|
|
@@ -47,6 +47,10 @@ declare const UpgradeElasticsearchDomainCommand_base: {
|
|
|
47
47
|
* // ChangeProgressDetails: { // ChangeProgressDetails
|
|
48
48
|
* // ChangeId: "STRING_VALUE",
|
|
49
49
|
* // Message: "STRING_VALUE",
|
|
50
|
+
* // ConfigChangeStatus: "Pending" || "Initializing" || "Validating" || "ValidationFailed" || "ApplyingChanges" || "Completed" || "PendingUserInput" || "Cancelled",
|
|
51
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
52
|
+
* // LastUpdatedTime: new Date("TIMESTAMP"),
|
|
53
|
+
* // InitiatedBy: "CUSTOMER" || "SERVICE",
|
|
50
54
|
* // },
|
|
51
55
|
* // };
|
|
52
56
|
*
|
|
@@ -2,6 +2,7 @@ export * from "./AcceptInboundCrossClusterSearchConnectionCommand";
|
|
|
2
2
|
export * from "./AddTagsCommand";
|
|
3
3
|
export * from "./AssociatePackageCommand";
|
|
4
4
|
export * from "./AuthorizeVpcEndpointAccessCommand";
|
|
5
|
+
export * from "./CancelDomainConfigChangeCommand";
|
|
5
6
|
export * from "./CancelElasticsearchServiceSoftwareUpdateCommand";
|
|
6
7
|
export * from "./CreateElasticsearchDomainCommand";
|
|
7
8
|
export * from "./CreateOutboundCrossClusterSearchConnectionCommand";
|
|
@@ -730,6 +730,64 @@ export interface AuthorizeVpcEndpointAccessResponse {
|
|
|
730
730
|
*/
|
|
731
731
|
AuthorizedPrincipal: AuthorizedPrincipal | undefined;
|
|
732
732
|
}
|
|
733
|
+
/**
|
|
734
|
+
* @public
|
|
735
|
+
* <p>Container for parameters of the <code>CancelDomainConfigChange</code> operation.</p>
|
|
736
|
+
*/
|
|
737
|
+
export interface CancelDomainConfigChangeRequest {
|
|
738
|
+
/**
|
|
739
|
+
* @public
|
|
740
|
+
* <p>Name of the OpenSearch Service domain configuration request to cancel.</p>
|
|
741
|
+
*/
|
|
742
|
+
DomainName: string | undefined;
|
|
743
|
+
/**
|
|
744
|
+
* @public
|
|
745
|
+
* <p>When set to <b>True</b>, returns the list of change IDs and properties that will be cancelled without actually cancelling the change.</p>
|
|
746
|
+
*/
|
|
747
|
+
DryRun?: boolean;
|
|
748
|
+
}
|
|
749
|
+
/**
|
|
750
|
+
* @public
|
|
751
|
+
* <p>A property change that was cancelled for an Amazon OpenSearch Service domain.</p>
|
|
752
|
+
*/
|
|
753
|
+
export interface CancelledChangeProperty {
|
|
754
|
+
/**
|
|
755
|
+
* @public
|
|
756
|
+
* <p>The name of the property whose change was cancelled.</p>
|
|
757
|
+
*/
|
|
758
|
+
PropertyName?: string;
|
|
759
|
+
/**
|
|
760
|
+
* @public
|
|
761
|
+
* <p>The pending value of the property that was cancelled. This would have been the eventual value of the property if the chance had not been cancelled.</p>
|
|
762
|
+
*/
|
|
763
|
+
CancelledValue?: string;
|
|
764
|
+
/**
|
|
765
|
+
* @public
|
|
766
|
+
* <p>The current value of the property, after the change was cancelled.</p>
|
|
767
|
+
*/
|
|
768
|
+
ActiveValue?: string;
|
|
769
|
+
}
|
|
770
|
+
/**
|
|
771
|
+
* @public
|
|
772
|
+
* <p>Contains the details of the cancelled domain config change.</p>
|
|
773
|
+
*/
|
|
774
|
+
export interface CancelDomainConfigChangeResponse {
|
|
775
|
+
/**
|
|
776
|
+
* @public
|
|
777
|
+
* <p>Whether or not the request was a dry run. If <b>True</b>, the changes were not actually cancelled.</p>
|
|
778
|
+
*/
|
|
779
|
+
DryRun?: boolean;
|
|
780
|
+
/**
|
|
781
|
+
* @public
|
|
782
|
+
* <p>The unique identifiers of the changes that were cancelled.</p>
|
|
783
|
+
*/
|
|
784
|
+
CancelledChangeIds?: string[];
|
|
785
|
+
/**
|
|
786
|
+
* @public
|
|
787
|
+
* <p>The domain change properties that were cancelled.</p>
|
|
788
|
+
*/
|
|
789
|
+
CancelledChangeProperties?: CancelledChangeProperty[];
|
|
790
|
+
}
|
|
733
791
|
/**
|
|
734
792
|
* @public
|
|
735
793
|
* <p>Container for the parameters to the <code><a>CancelElasticsearchServiceSoftwareUpdate</a></code> operation. Specifies the name of the Elasticsearch domain that you wish to cancel a service software update on.</p>
|
|
@@ -1386,6 +1444,36 @@ export interface AutoTuneOptionsOutput {
|
|
|
1386
1444
|
*/
|
|
1387
1445
|
ErrorMessage?: string;
|
|
1388
1446
|
}
|
|
1447
|
+
/**
|
|
1448
|
+
* @public
|
|
1449
|
+
* @enum
|
|
1450
|
+
*/
|
|
1451
|
+
export declare const ConfigChangeStatus: {
|
|
1452
|
+
readonly APPLYING_CHANGES: "ApplyingChanges";
|
|
1453
|
+
readonly CANCELLED: "Cancelled";
|
|
1454
|
+
readonly COMPLETED: "Completed";
|
|
1455
|
+
readonly INITIALIZING: "Initializing";
|
|
1456
|
+
readonly PENDING: "Pending";
|
|
1457
|
+
readonly PENDING_USER_INPUT: "PendingUserInput";
|
|
1458
|
+
readonly VALIDATING: "Validating";
|
|
1459
|
+
readonly VALIDATION_FAILED: "ValidationFailed";
|
|
1460
|
+
};
|
|
1461
|
+
/**
|
|
1462
|
+
* @public
|
|
1463
|
+
*/
|
|
1464
|
+
export type ConfigChangeStatus = (typeof ConfigChangeStatus)[keyof typeof ConfigChangeStatus];
|
|
1465
|
+
/**
|
|
1466
|
+
* @public
|
|
1467
|
+
* @enum
|
|
1468
|
+
*/
|
|
1469
|
+
export declare const InitiatedBy: {
|
|
1470
|
+
readonly CUSTOMER: "CUSTOMER";
|
|
1471
|
+
readonly SERVICE: "SERVICE";
|
|
1472
|
+
};
|
|
1473
|
+
/**
|
|
1474
|
+
* @public
|
|
1475
|
+
*/
|
|
1476
|
+
export type InitiatedBy = (typeof InitiatedBy)[keyof typeof InitiatedBy];
|
|
1389
1477
|
/**
|
|
1390
1478
|
* @public
|
|
1391
1479
|
* <p>Specifies change details of the domain configuration change.</p>
|
|
@@ -1401,6 +1489,85 @@ export interface ChangeProgressDetails {
|
|
|
1401
1489
|
* <p>Contains an optional message associated with the domain configuration change.</p>
|
|
1402
1490
|
*/
|
|
1403
1491
|
Message?: string;
|
|
1492
|
+
/**
|
|
1493
|
+
* @public
|
|
1494
|
+
* <p>The current status of the configuration change.</p>
|
|
1495
|
+
*/
|
|
1496
|
+
ConfigChangeStatus?: ConfigChangeStatus;
|
|
1497
|
+
/**
|
|
1498
|
+
* @public
|
|
1499
|
+
* <p>The time that the configuration change was initiated, in Universal Coordinated Time (UTC).</p>
|
|
1500
|
+
*/
|
|
1501
|
+
StartTime?: Date;
|
|
1502
|
+
/**
|
|
1503
|
+
* @public
|
|
1504
|
+
* <p>The last time that the configuration change was updated.</p>
|
|
1505
|
+
*/
|
|
1506
|
+
LastUpdatedTime?: Date;
|
|
1507
|
+
/**
|
|
1508
|
+
* @public
|
|
1509
|
+
* <p>The IAM principal who initiated the configuration change.</p>
|
|
1510
|
+
*/
|
|
1511
|
+
InitiatedBy?: InitiatedBy;
|
|
1512
|
+
}
|
|
1513
|
+
/**
|
|
1514
|
+
* @public
|
|
1515
|
+
* @enum
|
|
1516
|
+
*/
|
|
1517
|
+
export declare const DomainProcessingStatusType: {
|
|
1518
|
+
readonly ACTIVE: "Active";
|
|
1519
|
+
readonly CREATING: "Creating";
|
|
1520
|
+
readonly DELETING: "Deleting";
|
|
1521
|
+
readonly ISOLATED: "Isolated";
|
|
1522
|
+
readonly MODIFYING: "Modifying";
|
|
1523
|
+
readonly UPDATING: "UpdatingServiceSoftware";
|
|
1524
|
+
readonly UPGRADING: "UpgradingEngineVersion";
|
|
1525
|
+
};
|
|
1526
|
+
/**
|
|
1527
|
+
* @public
|
|
1528
|
+
*/
|
|
1529
|
+
export type DomainProcessingStatusType = (typeof DomainProcessingStatusType)[keyof typeof DomainProcessingStatusType];
|
|
1530
|
+
/**
|
|
1531
|
+
* @public
|
|
1532
|
+
* @enum
|
|
1533
|
+
*/
|
|
1534
|
+
export declare const PropertyValueType: {
|
|
1535
|
+
readonly PLAIN_TEXT: "PLAIN_TEXT";
|
|
1536
|
+
readonly STRINGIFIED_JSON: "STRINGIFIED_JSON";
|
|
1537
|
+
};
|
|
1538
|
+
/**
|
|
1539
|
+
* @public
|
|
1540
|
+
*/
|
|
1541
|
+
export type PropertyValueType = (typeof PropertyValueType)[keyof typeof PropertyValueType];
|
|
1542
|
+
/**
|
|
1543
|
+
* @public
|
|
1544
|
+
* <p>Information about the domain properties that are currently being modified.</p>
|
|
1545
|
+
*/
|
|
1546
|
+
export interface ModifyingProperties {
|
|
1547
|
+
/**
|
|
1548
|
+
* @public
|
|
1549
|
+
* <p>The name of the property that is currently being modified.</p>
|
|
1550
|
+
*/
|
|
1551
|
+
Name?: string;
|
|
1552
|
+
/**
|
|
1553
|
+
* @public
|
|
1554
|
+
* <p>The current value of the domain property that is being modified.</p>
|
|
1555
|
+
*/
|
|
1556
|
+
ActiveValue?: string;
|
|
1557
|
+
/**
|
|
1558
|
+
* @public
|
|
1559
|
+
* <p>The value that the property that is currently being modified will eventually have.</p>
|
|
1560
|
+
*/
|
|
1561
|
+
PendingValue?: string;
|
|
1562
|
+
/**
|
|
1563
|
+
* @public
|
|
1564
|
+
* <p>The type of value that is currently being modified. Properties can have two types:</p>
|
|
1565
|
+
* <ul>
|
|
1566
|
+
* <li><b>PLAIN_TEXT</b>: Contain direct values such as "1", "True", or "c5.large.search".</li>
|
|
1567
|
+
* <li><b>STRINGIFIED_JSON</b>: Contain content in JSON format, such as \{"Enabled":"True"\}".</li>
|
|
1568
|
+
* </ul>
|
|
1569
|
+
*/
|
|
1570
|
+
ValueType?: PropertyValueType;
|
|
1404
1571
|
}
|
|
1405
1572
|
/**
|
|
1406
1573
|
* @public
|
|
@@ -1554,6 +1721,16 @@ export interface ElasticsearchDomainStatus {
|
|
|
1554
1721
|
* <p>Specifies change details of the domain configuration change.</p>
|
|
1555
1722
|
*/
|
|
1556
1723
|
ChangeProgressDetails?: ChangeProgressDetails;
|
|
1724
|
+
/**
|
|
1725
|
+
* @public
|
|
1726
|
+
* <p>The status of any changes that are currently in progress for the domain.</p>
|
|
1727
|
+
*/
|
|
1728
|
+
DomainProcessingStatus?: DomainProcessingStatusType;
|
|
1729
|
+
/**
|
|
1730
|
+
* @public
|
|
1731
|
+
* <p>Information about the domain properties that are currently being modified.</p>
|
|
1732
|
+
*/
|
|
1733
|
+
ModifyingProperties?: ModifyingProperties[];
|
|
1557
1734
|
}
|
|
1558
1735
|
/**
|
|
1559
1736
|
* @public
|
|
@@ -2305,6 +2482,21 @@ export interface ChangeProgressStatusDetails {
|
|
|
2305
2482
|
* <p>The specific stages that the domain is going through to perform the configuration change.</p>
|
|
2306
2483
|
*/
|
|
2307
2484
|
ChangeProgressStages?: ChangeProgressStage[];
|
|
2485
|
+
/**
|
|
2486
|
+
* @public
|
|
2487
|
+
* <p>The current status of the configuration change.</p>
|
|
2488
|
+
*/
|
|
2489
|
+
ConfigChangeStatus?: ConfigChangeStatus;
|
|
2490
|
+
/**
|
|
2491
|
+
* @public
|
|
2492
|
+
* <p>The last time that the status of the configuration change was updated.</p>
|
|
2493
|
+
*/
|
|
2494
|
+
LastUpdatedTime?: Date;
|
|
2495
|
+
/**
|
|
2496
|
+
* @public
|
|
2497
|
+
* <p>The IAM principal who initiated the configuration change.</p>
|
|
2498
|
+
*/
|
|
2499
|
+
InitiatedBy?: InitiatedBy;
|
|
2308
2500
|
}
|
|
2309
2501
|
/**
|
|
2310
2502
|
* @public
|
|
@@ -2678,6 +2870,11 @@ export interface ElasticsearchDomainConfig {
|
|
|
2678
2870
|
* <p>Specifies change details of the domain configuration change.</p>
|
|
2679
2871
|
*/
|
|
2680
2872
|
ChangeProgressDetails?: ChangeProgressDetails;
|
|
2873
|
+
/**
|
|
2874
|
+
* @public
|
|
2875
|
+
* <p>Information about the domain properties that are currently being modified.</p>
|
|
2876
|
+
*/
|
|
2877
|
+
ModifyingProperties?: ModifyingProperties[];
|
|
2681
2878
|
}
|
|
2682
2879
|
/**
|
|
2683
2880
|
* @public
|
|
@@ -4,6 +4,7 @@ import { AcceptInboundCrossClusterSearchConnectionCommandInput, AcceptInboundCro
|
|
|
4
4
|
import { AddTagsCommandInput, AddTagsCommandOutput } from "../commands/AddTagsCommand";
|
|
5
5
|
import { AssociatePackageCommandInput, AssociatePackageCommandOutput } from "../commands/AssociatePackageCommand";
|
|
6
6
|
import { AuthorizeVpcEndpointAccessCommandInput, AuthorizeVpcEndpointAccessCommandOutput } from "../commands/AuthorizeVpcEndpointAccessCommand";
|
|
7
|
+
import { CancelDomainConfigChangeCommandInput, CancelDomainConfigChangeCommandOutput } from "../commands/CancelDomainConfigChangeCommand";
|
|
7
8
|
import { CancelElasticsearchServiceSoftwareUpdateCommandInput, CancelElasticsearchServiceSoftwareUpdateCommandOutput } from "../commands/CancelElasticsearchServiceSoftwareUpdateCommand";
|
|
8
9
|
import { CreateElasticsearchDomainCommandInput, CreateElasticsearchDomainCommandOutput } from "../commands/CreateElasticsearchDomainCommand";
|
|
9
10
|
import { CreateOutboundCrossClusterSearchConnectionCommandInput, CreateOutboundCrossClusterSearchConnectionCommandOutput } from "../commands/CreateOutboundCrossClusterSearchConnectionCommand";
|
|
@@ -66,6 +67,10 @@ export declare const se_AssociatePackageCommand: (input: AssociatePackageCommand
|
|
|
66
67
|
* serializeAws_restJson1AuthorizeVpcEndpointAccessCommand
|
|
67
68
|
*/
|
|
68
69
|
export declare const se_AuthorizeVpcEndpointAccessCommand: (input: AuthorizeVpcEndpointAccessCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
70
|
+
/**
|
|
71
|
+
* serializeAws_restJson1CancelDomainConfigChangeCommand
|
|
72
|
+
*/
|
|
73
|
+
export declare const se_CancelDomainConfigChangeCommand: (input: CancelDomainConfigChangeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
69
74
|
/**
|
|
70
75
|
* serializeAws_restJson1CancelElasticsearchServiceSoftwareUpdateCommand
|
|
71
76
|
*/
|
|
@@ -266,6 +271,10 @@ export declare const de_AssociatePackageCommand: (output: __HttpResponse, contex
|
|
|
266
271
|
* deserializeAws_restJson1AuthorizeVpcEndpointAccessCommand
|
|
267
272
|
*/
|
|
268
273
|
export declare const de_AuthorizeVpcEndpointAccessCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AuthorizeVpcEndpointAccessCommandOutput>;
|
|
274
|
+
/**
|
|
275
|
+
* deserializeAws_restJson1CancelDomainConfigChangeCommand
|
|
276
|
+
*/
|
|
277
|
+
export declare const de_CancelDomainConfigChangeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelDomainConfigChangeCommandOutput>;
|
|
269
278
|
/**
|
|
270
279
|
* deserializeAws_restJson1CancelElasticsearchServiceSoftwareUpdateCommand
|
|
271
280
|
*/
|
|
@@ -15,6 +15,10 @@ import {
|
|
|
15
15
|
AuthorizeVpcEndpointAccessCommandInput,
|
|
16
16
|
AuthorizeVpcEndpointAccessCommandOutput,
|
|
17
17
|
} from "./commands/AuthorizeVpcEndpointAccessCommand";
|
|
18
|
+
import {
|
|
19
|
+
CancelDomainConfigChangeCommandInput,
|
|
20
|
+
CancelDomainConfigChangeCommandOutput,
|
|
21
|
+
} from "./commands/CancelDomainConfigChangeCommand";
|
|
18
22
|
import {
|
|
19
23
|
CancelElasticsearchServiceSoftwareUpdateCommandInput,
|
|
20
24
|
CancelElasticsearchServiceSoftwareUpdateCommandOutput,
|
|
@@ -259,6 +263,19 @@ export interface ElasticsearchService {
|
|
|
259
263
|
options: __HttpHandlerOptions,
|
|
260
264
|
cb: (err: any, data?: AuthorizeVpcEndpointAccessCommandOutput) => void
|
|
261
265
|
): void;
|
|
266
|
+
cancelDomainConfigChange(
|
|
267
|
+
args: CancelDomainConfigChangeCommandInput,
|
|
268
|
+
options?: __HttpHandlerOptions
|
|
269
|
+
): Promise<CancelDomainConfigChangeCommandOutput>;
|
|
270
|
+
cancelDomainConfigChange(
|
|
271
|
+
args: CancelDomainConfigChangeCommandInput,
|
|
272
|
+
cb: (err: any, data?: CancelDomainConfigChangeCommandOutput) => void
|
|
273
|
+
): void;
|
|
274
|
+
cancelDomainConfigChange(
|
|
275
|
+
args: CancelDomainConfigChangeCommandInput,
|
|
276
|
+
options: __HttpHandlerOptions,
|
|
277
|
+
cb: (err: any, data?: CancelDomainConfigChangeCommandOutput) => void
|
|
278
|
+
): void;
|
|
262
279
|
cancelElasticsearchServiceSoftwareUpdate(
|
|
263
280
|
args: CancelElasticsearchServiceSoftwareUpdateCommandInput,
|
|
264
281
|
options?: __HttpHandlerOptions
|
|
@@ -61,6 +61,10 @@ import {
|
|
|
61
61
|
AuthorizeVpcEndpointAccessCommandInput,
|
|
62
62
|
AuthorizeVpcEndpointAccessCommandOutput,
|
|
63
63
|
} from "./commands/AuthorizeVpcEndpointAccessCommand";
|
|
64
|
+
import {
|
|
65
|
+
CancelDomainConfigChangeCommandInput,
|
|
66
|
+
CancelDomainConfigChangeCommandOutput,
|
|
67
|
+
} from "./commands/CancelDomainConfigChangeCommand";
|
|
64
68
|
import {
|
|
65
69
|
CancelElasticsearchServiceSoftwareUpdateCommandInput,
|
|
66
70
|
CancelElasticsearchServiceSoftwareUpdateCommandOutput,
|
|
@@ -257,6 +261,7 @@ export type ServiceInputTypes =
|
|
|
257
261
|
| AddTagsCommandInput
|
|
258
262
|
| AssociatePackageCommandInput
|
|
259
263
|
| AuthorizeVpcEndpointAccessCommandInput
|
|
264
|
+
| CancelDomainConfigChangeCommandInput
|
|
260
265
|
| CancelElasticsearchServiceSoftwareUpdateCommandInput
|
|
261
266
|
| CreateElasticsearchDomainCommandInput
|
|
262
267
|
| CreateOutboundCrossClusterSearchConnectionCommandInput
|
|
@@ -308,6 +313,7 @@ export type ServiceOutputTypes =
|
|
|
308
313
|
| AddTagsCommandOutput
|
|
309
314
|
| AssociatePackageCommandOutput
|
|
310
315
|
| AuthorizeVpcEndpointAccessCommandOutput
|
|
316
|
+
| CancelDomainConfigChangeCommandOutput
|
|
311
317
|
| CancelElasticsearchServiceSoftwareUpdateCommandOutput
|
|
312
318
|
| CreateElasticsearchDomainCommandOutput
|
|
313
319
|
| CreateOutboundCrossClusterSearchConnectionCommandOutput
|