@aws-sdk/client-opensearch 3.507.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.
Files changed (30) hide show
  1. package/README.md +8 -0
  2. package/dist-cjs/commands/CancelDomainConfigChangeCommand.js +1 -0
  3. package/dist-cjs/index.js +106 -3
  4. package/dist-es/OpenSearch.js +2 -0
  5. package/dist-es/commands/CancelDomainConfigChangeCommand.js +24 -0
  6. package/dist-es/commands/index.js +1 -0
  7. package/dist-es/models/models_0.js +27 -0
  8. package/dist-es/protocols/Aws_restJson1.js +49 -3
  9. package/dist-types/OpenSearch.d.ts +7 -0
  10. package/dist-types/OpenSearchClient.d.ts +3 -2
  11. package/dist-types/commands/CancelDomainConfigChangeCommand.d.ts +84 -0
  12. package/dist-types/commands/CreateDomainCommand.d.ts +13 -0
  13. package/dist-types/commands/DeleteDomainCommand.d.ts +13 -0
  14. package/dist-types/commands/DescribeDomainChangeProgressCommand.d.ts +3 -0
  15. package/dist-types/commands/DescribeDomainCommand.d.ts +13 -0
  16. package/dist-types/commands/DescribeDomainConfigCommand.d.ts +12 -0
  17. package/dist-types/commands/DescribeDomainsCommand.d.ts +13 -0
  18. package/dist-types/commands/DescribeDryRunProgressCommand.d.ts +13 -0
  19. package/dist-types/commands/UpdateDomainConfigCommand.d.ts +12 -0
  20. package/dist-types/commands/UpgradeDomainCommand.d.ts +4 -0
  21. package/dist-types/commands/index.d.ts +1 -0
  22. package/dist-types/models/models_0.d.ts +205 -2
  23. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  24. package/dist-types/ts3.4/OpenSearch.d.ts +17 -0
  25. package/dist-types/ts3.4/OpenSearchClient.d.ts +6 -0
  26. package/dist-types/ts3.4/commands/CancelDomainConfigChangeCommand.d.ts +30 -0
  27. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  28. package/dist-types/ts3.4/models/models_0.d.ts +64 -0
  29. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
  30. package/package.json +1 -1
@@ -159,6 +159,10 @@ declare const DeleteDomainCommand_base: {
159
159
  * // ChangeProgressDetails: { // ChangeProgressDetails
160
160
  * // ChangeId: "STRING_VALUE",
161
161
  * // Message: "STRING_VALUE",
162
+ * // ConfigChangeStatus: "Pending" || "Initializing" || "Validating" || "ValidationFailed" || "ApplyingChanges" || "Completed" || "PendingUserInput" || "Cancelled",
163
+ * // InitiatedBy: "CUSTOMER" || "SERVICE",
164
+ * // StartTime: new Date("TIMESTAMP"),
165
+ * // LastUpdatedTime: new Date("TIMESTAMP"),
162
166
  * // },
163
167
  * // OffPeakWindowOptions: { // OffPeakWindowOptions
164
168
  * // Enabled: true || false,
@@ -172,6 +176,15 @@ declare const DeleteDomainCommand_base: {
172
176
  * // SoftwareUpdateOptions: { // SoftwareUpdateOptions
173
177
  * // AutoSoftwareUpdateEnabled: true || false,
174
178
  * // },
179
+ * // DomainProcessingStatus: "Creating" || "Active" || "Modifying" || "UpgradingEngineVersion" || "UpdatingServiceSoftware" || "Isolated" || "Deleting",
180
+ * // ModifyingProperties: [ // ModifyingPropertiesList
181
+ * // { // ModifyingProperties
182
+ * // Name: "STRING_VALUE",
183
+ * // ActiveValue: "STRING_VALUE",
184
+ * // PendingValue: "STRING_VALUE",
185
+ * // ValueType: "PLAIN_TEXT" || "STRINGIFIED_JSON",
186
+ * // },
187
+ * // ],
175
188
  * // },
176
189
  * // };
177
190
  *
@@ -60,6 +60,9 @@ declare const DescribeDomainChangeProgressCommand_base: {
60
60
  * // LastUpdated: new Date("TIMESTAMP"),
61
61
  * // },
62
62
  * // ],
63
+ * // LastUpdatedTime: new Date("TIMESTAMP"),
64
+ * // ConfigChangeStatus: "Pending" || "Initializing" || "Validating" || "ValidationFailed" || "ApplyingChanges" || "Completed" || "PendingUserInput" || "Cancelled",
65
+ * // InitiatedBy: "CUSTOMER" || "SERVICE",
63
66
  * // },
64
67
  * // };
65
68
  *
@@ -159,6 +159,10 @@ declare const DescribeDomainCommand_base: {
159
159
  * // ChangeProgressDetails: { // ChangeProgressDetails
160
160
  * // ChangeId: "STRING_VALUE",
161
161
  * // Message: "STRING_VALUE",
162
+ * // ConfigChangeStatus: "Pending" || "Initializing" || "Validating" || "ValidationFailed" || "ApplyingChanges" || "Completed" || "PendingUserInput" || "Cancelled",
163
+ * // InitiatedBy: "CUSTOMER" || "SERVICE",
164
+ * // StartTime: new Date("TIMESTAMP"),
165
+ * // LastUpdatedTime: new Date("TIMESTAMP"),
162
166
  * // },
163
167
  * // OffPeakWindowOptions: { // OffPeakWindowOptions
164
168
  * // Enabled: true || false,
@@ -172,6 +176,15 @@ declare const DescribeDomainCommand_base: {
172
176
  * // SoftwareUpdateOptions: { // SoftwareUpdateOptions
173
177
  * // AutoSoftwareUpdateEnabled: true || false,
174
178
  * // },
179
+ * // DomainProcessingStatus: "Creating" || "Active" || "Modifying" || "UpgradingEngineVersion" || "UpdatingServiceSoftware" || "Isolated" || "Deleting",
180
+ * // ModifyingProperties: [ // ModifyingPropertiesList
181
+ * // { // ModifyingProperties
182
+ * // Name: "STRING_VALUE",
183
+ * // ActiveValue: "STRING_VALUE",
184
+ * // PendingValue: "STRING_VALUE",
185
+ * // ValueType: "PLAIN_TEXT" || "STRINGIFIED_JSON",
186
+ * // },
187
+ * // ],
175
188
  * // },
176
189
  * // };
177
190
  *
@@ -228,6 +228,10 @@ declare const DescribeDomainConfigCommand_base: {
228
228
  * // ChangeProgressDetails: { // ChangeProgressDetails
229
229
  * // ChangeId: "STRING_VALUE",
230
230
  * // Message: "STRING_VALUE",
231
+ * // ConfigChangeStatus: "Pending" || "Initializing" || "Validating" || "ValidationFailed" || "ApplyingChanges" || "Completed" || "PendingUserInput" || "Cancelled",
232
+ * // InitiatedBy: "CUSTOMER" || "SERVICE",
233
+ * // StartTime: new Date("TIMESTAMP"),
234
+ * // LastUpdatedTime: new Date("TIMESTAMP"),
231
235
  * // },
232
236
  * // OffPeakWindowOptions: { // OffPeakWindowOptionsStatus
233
237
  * // Options: { // OffPeakWindowOptions
@@ -247,6 +251,14 @@ declare const DescribeDomainConfigCommand_base: {
247
251
  * // },
248
252
  * // Status: "<OptionStatus>",
249
253
  * // },
254
+ * // ModifyingProperties: [ // ModifyingPropertiesList
255
+ * // { // ModifyingProperties
256
+ * // Name: "STRING_VALUE",
257
+ * // ActiveValue: "STRING_VALUE",
258
+ * // PendingValue: "STRING_VALUE",
259
+ * // ValueType: "PLAIN_TEXT" || "STRINGIFIED_JSON",
260
+ * // },
261
+ * // ],
250
262
  * // },
251
263
  * // };
252
264
  *
@@ -162,6 +162,10 @@ declare const DescribeDomainsCommand_base: {
162
162
  * // ChangeProgressDetails: { // ChangeProgressDetails
163
163
  * // ChangeId: "STRING_VALUE",
164
164
  * // Message: "STRING_VALUE",
165
+ * // ConfigChangeStatus: "Pending" || "Initializing" || "Validating" || "ValidationFailed" || "ApplyingChanges" || "Completed" || "PendingUserInput" || "Cancelled",
166
+ * // InitiatedBy: "CUSTOMER" || "SERVICE",
167
+ * // StartTime: new Date("TIMESTAMP"),
168
+ * // LastUpdatedTime: new Date("TIMESTAMP"),
165
169
  * // },
166
170
  * // OffPeakWindowOptions: { // OffPeakWindowOptions
167
171
  * // Enabled: true || false,
@@ -175,6 +179,15 @@ declare const DescribeDomainsCommand_base: {
175
179
  * // SoftwareUpdateOptions: { // SoftwareUpdateOptions
176
180
  * // AutoSoftwareUpdateEnabled: true || false,
177
181
  * // },
182
+ * // DomainProcessingStatus: "Creating" || "Active" || "Modifying" || "UpgradingEngineVersion" || "UpdatingServiceSoftware" || "Isolated" || "Deleting",
183
+ * // ModifyingProperties: [ // ModifyingPropertiesList
184
+ * // { // ModifyingProperties
185
+ * // Name: "STRING_VALUE",
186
+ * // ActiveValue: "STRING_VALUE",
187
+ * // PendingValue: "STRING_VALUE",
188
+ * // ValueType: "PLAIN_TEXT" || "STRINGIFIED_JSON",
189
+ * // },
190
+ * // ],
178
191
  * // },
179
192
  * // ],
180
193
  * // };
@@ -173,6 +173,10 @@ declare const DescribeDryRunProgressCommand_base: {
173
173
  * // ChangeProgressDetails: { // ChangeProgressDetails
174
174
  * // ChangeId: "STRING_VALUE",
175
175
  * // Message: "STRING_VALUE",
176
+ * // ConfigChangeStatus: "Pending" || "Initializing" || "Validating" || "ValidationFailed" || "ApplyingChanges" || "Completed" || "PendingUserInput" || "Cancelled",
177
+ * // InitiatedBy: "CUSTOMER" || "SERVICE",
178
+ * // StartTime: new Date("TIMESTAMP"),
179
+ * // LastUpdatedTime: new Date("TIMESTAMP"),
176
180
  * // },
177
181
  * // OffPeakWindowOptions: { // OffPeakWindowOptions
178
182
  * // Enabled: true || false,
@@ -186,6 +190,15 @@ declare const DescribeDryRunProgressCommand_base: {
186
190
  * // SoftwareUpdateOptions: { // SoftwareUpdateOptions
187
191
  * // AutoSoftwareUpdateEnabled: true || false,
188
192
  * // },
193
+ * // DomainProcessingStatus: "Creating" || "Active" || "Modifying" || "UpgradingEngineVersion" || "UpdatingServiceSoftware" || "Isolated" || "Deleting",
194
+ * // ModifyingProperties: [ // ModifyingPropertiesList
195
+ * // { // ModifyingProperties
196
+ * // Name: "STRING_VALUE",
197
+ * // ActiveValue: "STRING_VALUE",
198
+ * // PendingValue: "STRING_VALUE",
199
+ * // ValueType: "PLAIN_TEXT" || "STRINGIFIED_JSON",
200
+ * // },
201
+ * // ],
189
202
  * // },
190
203
  * // DryRunResults: { // DryRunResults
191
204
  * // DeploymentType: "STRING_VALUE",
@@ -347,6 +347,10 @@ declare const UpdateDomainConfigCommand_base: {
347
347
  * // ChangeProgressDetails: { // ChangeProgressDetails
348
348
  * // ChangeId: "STRING_VALUE",
349
349
  * // Message: "STRING_VALUE",
350
+ * // ConfigChangeStatus: "Pending" || "Initializing" || "Validating" || "ValidationFailed" || "ApplyingChanges" || "Completed" || "PendingUserInput" || "Cancelled",
351
+ * // InitiatedBy: "CUSTOMER" || "SERVICE",
352
+ * // StartTime: new Date("TIMESTAMP"),
353
+ * // LastUpdatedTime: new Date("TIMESTAMP"),
350
354
  * // },
351
355
  * // OffPeakWindowOptions: { // OffPeakWindowOptionsStatus
352
356
  * // Options: { // OffPeakWindowOptions
@@ -366,6 +370,14 @@ declare const UpdateDomainConfigCommand_base: {
366
370
  * // },
367
371
  * // Status: "<OptionStatus>",
368
372
  * // },
373
+ * // ModifyingProperties: [ // ModifyingPropertiesList
374
+ * // { // ModifyingProperties
375
+ * // Name: "STRING_VALUE",
376
+ * // ActiveValue: "STRING_VALUE",
377
+ * // PendingValue: "STRING_VALUE",
378
+ * // ValueType: "PLAIN_TEXT" || "STRINGIFIED_JSON",
379
+ * // },
380
+ * // ],
369
381
  * // },
370
382
  * // DryRunResults: { // DryRunResults
371
383
  * // DeploymentType: "STRING_VALUE",
@@ -55,6 +55,10 @@ declare const UpgradeDomainCommand_base: {
55
55
  * // ChangeProgressDetails: { // ChangeProgressDetails
56
56
  * // ChangeId: "STRING_VALUE",
57
57
  * // Message: "STRING_VALUE",
58
+ * // ConfigChangeStatus: "Pending" || "Initializing" || "Validating" || "ValidationFailed" || "ApplyingChanges" || "Completed" || "PendingUserInput" || "Cancelled",
59
+ * // InitiatedBy: "CUSTOMER" || "SERVICE",
60
+ * // StartTime: new Date("TIMESTAMP"),
61
+ * // LastUpdatedTime: new Date("TIMESTAMP"),
58
62
  * // },
59
63
  * // };
60
64
  *
@@ -3,6 +3,7 @@ export * from "./AddDataSourceCommand";
3
3
  export * from "./AddTagsCommand";
4
4
  export * from "./AssociatePackageCommand";
5
5
  export * from "./AuthorizeVpcEndpointAccessCommand";
6
+ export * from "./CancelDomainConfigChangeCommand";
6
7
  export * from "./CancelServiceSoftwareUpdateCommand";
7
8
  export * from "./CreateDomainCommand";
8
9
  export * from "./CreateOutboundConnectionCommand";
@@ -957,6 +957,63 @@ export interface AuthorizeVpcEndpointAccessResponse {
957
957
  */
958
958
  AuthorizedPrincipal: AuthorizedPrincipal | undefined;
959
959
  }
960
+ /**
961
+ * @public
962
+ */
963
+ export interface CancelDomainConfigChangeRequest {
964
+ /**
965
+ * @public
966
+ * <p>The name of an OpenSearch Service domain. Domain names are unique across the domains owned
967
+ * by an account within an Amazon Web Services Region.</p>
968
+ */
969
+ DomainName: string | undefined;
970
+ /**
971
+ * @public
972
+ * <p>When set to <code>True</code>, returns the list of change IDs and properties that will be cancelled without actually cancelling the change.</p>
973
+ */
974
+ DryRun?: boolean;
975
+ }
976
+ /**
977
+ * @public
978
+ * <p>A property change that was cancelled for an Amazon OpenSearch Service domain.</p>
979
+ */
980
+ export interface CancelledChangeProperty {
981
+ /**
982
+ * @public
983
+ * <p>The name of the property whose change was cancelled.</p>
984
+ */
985
+ PropertyName?: string;
986
+ /**
987
+ * @public
988
+ * <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>
989
+ */
990
+ CancelledValue?: string;
991
+ /**
992
+ * @public
993
+ * <p>The current value of the property, after the change was cancelled.</p>
994
+ */
995
+ ActiveValue?: string;
996
+ }
997
+ /**
998
+ * @public
999
+ */
1000
+ export interface CancelDomainConfigChangeResponse {
1001
+ /**
1002
+ * @public
1003
+ * <p>The unique identifiers of the changes that were cancelled.</p>
1004
+ */
1005
+ CancelledChangeIds?: string[];
1006
+ /**
1007
+ * @public
1008
+ * <p>The domain change properties that were cancelled.</p>
1009
+ */
1010
+ CancelledChangeProperties?: CancelledChangeProperty[];
1011
+ /**
1012
+ * @public
1013
+ * <p>Whether or not the request was a dry run. If <code>True</code>, the changes were not actually cancelled. </p>
1014
+ */
1015
+ DryRun?: boolean;
1016
+ }
960
1017
  /**
961
1018
  * @public
962
1019
  * <p>Container for the request parameters to cancel a service software update.</p>
@@ -1502,8 +1559,9 @@ export interface EBSOptions {
1502
1559
  /**
1503
1560
  * @public
1504
1561
  * <p>Specifies whether the domain should encrypt data at rest, and if so, the Key Management
1505
- * Service (KMS) key to use. Can be used only to create a new domain, not update an existing
1506
- * one.</p>
1562
+ * Service (KMS) key to use. Can only be used when creating a new domain or enabling encryption at rest
1563
+ * for the first time on an existing domain. You can't modify this parameter after it's already been
1564
+ * specified.</p>
1507
1565
  */
1508
1566
  export interface EncryptionAtRestOptions {
1509
1567
  /**
@@ -1866,6 +1924,36 @@ export interface AutoTuneOptionsOutput {
1866
1924
  */
1867
1925
  UseOffPeakWindow?: boolean;
1868
1926
  }
1927
+ /**
1928
+ * @public
1929
+ * @enum
1930
+ */
1931
+ export declare const ConfigChangeStatus: {
1932
+ readonly APPLYING_CHANGES: "ApplyingChanges";
1933
+ readonly CANCELLED: "Cancelled";
1934
+ readonly COMPLETED: "Completed";
1935
+ readonly INITIALIZING: "Initializing";
1936
+ readonly PENDING: "Pending";
1937
+ readonly PENDING_USER_INPUT: "PendingUserInput";
1938
+ readonly VALIDATING: "Validating";
1939
+ readonly VALIDATION_FAILED: "ValidationFailed";
1940
+ };
1941
+ /**
1942
+ * @public
1943
+ */
1944
+ export type ConfigChangeStatus = (typeof ConfigChangeStatus)[keyof typeof ConfigChangeStatus];
1945
+ /**
1946
+ * @public
1947
+ * @enum
1948
+ */
1949
+ export declare const InitiatedBy: {
1950
+ readonly CUSTOMER: "CUSTOMER";
1951
+ readonly SERVICE: "SERVICE";
1952
+ };
1953
+ /**
1954
+ * @public
1955
+ */
1956
+ export type InitiatedBy = (typeof InitiatedBy)[keyof typeof InitiatedBy];
1869
1957
  /**
1870
1958
  * @public
1871
1959
  * <p>Container for information about a configuration change happening on a domain.</p>
@@ -1881,6 +1969,91 @@ export interface ChangeProgressDetails {
1881
1969
  * <p>A message corresponding to the status of the configuration change.</p>
1882
1970
  */
1883
1971
  Message?: string;
1972
+ /**
1973
+ * @public
1974
+ * <p>The current status of the configuration change.</p>
1975
+ */
1976
+ ConfigChangeStatus?: ConfigChangeStatus;
1977
+ /**
1978
+ * @public
1979
+ * <p>The IAM principal who initiated the configuration change.</p>
1980
+ */
1981
+ InitiatedBy?: InitiatedBy;
1982
+ /**
1983
+ * @public
1984
+ * <p>The time that the configuration change was initiated, in Universal Coordinated Time (UTC).</p>
1985
+ */
1986
+ StartTime?: Date;
1987
+ /**
1988
+ * @public
1989
+ * <p>The last time that the configuration change was updated.</p>
1990
+ */
1991
+ LastUpdatedTime?: Date;
1992
+ }
1993
+ /**
1994
+ * @public
1995
+ * @enum
1996
+ */
1997
+ export declare const DomainProcessingStatusType: {
1998
+ readonly ACTIVE: "Active";
1999
+ readonly CREATING: "Creating";
2000
+ readonly DELETING: "Deleting";
2001
+ readonly ISOLATED: "Isolated";
2002
+ readonly MODIFYING: "Modifying";
2003
+ readonly UPDATING: "UpdatingServiceSoftware";
2004
+ readonly UPGRADING: "UpgradingEngineVersion";
2005
+ };
2006
+ /**
2007
+ * @public
2008
+ */
2009
+ export type DomainProcessingStatusType = (typeof DomainProcessingStatusType)[keyof typeof DomainProcessingStatusType];
2010
+ /**
2011
+ * @public
2012
+ * @enum
2013
+ */
2014
+ export declare const PropertyValueType: {
2015
+ readonly PLAIN_TEXT: "PLAIN_TEXT";
2016
+ readonly STRINGIFIED_JSON: "STRINGIFIED_JSON";
2017
+ };
2018
+ /**
2019
+ * @public
2020
+ */
2021
+ export type PropertyValueType = (typeof PropertyValueType)[keyof typeof PropertyValueType];
2022
+ /**
2023
+ * @public
2024
+ * <p>Information about the domain properties that are currently being modified.</p>
2025
+ */
2026
+ export interface ModifyingProperties {
2027
+ /**
2028
+ * @public
2029
+ * <p>The name of the property that is currently being modified.</p>
2030
+ */
2031
+ Name?: string;
2032
+ /**
2033
+ * @public
2034
+ * <p>The current value of the domain property that is being modified.</p>
2035
+ */
2036
+ ActiveValue?: string;
2037
+ /**
2038
+ * @public
2039
+ * <p>The value that the property that is currently being modified will eventually have.</p>
2040
+ */
2041
+ PendingValue?: string;
2042
+ /**
2043
+ * @public
2044
+ * <p>The type of value that is currently being modified. Properties can have two types:</p>
2045
+ * <ul>
2046
+ * <li>
2047
+ * <p>
2048
+ * <code>PLAIN_TEXT</code>: Contain direct values such as "1", "True", or "c5.large.search".</p>
2049
+ * </li>
2050
+ * <li>
2051
+ * <p>
2052
+ * <code>STRINGIFIED_JSON</code>: Contain content in JSON format, such as \{"Enabled":"True"\}".</p>
2053
+ * </li>
2054
+ * </ul>
2055
+ */
2056
+ ValueType?: PropertyValueType;
1884
2057
  }
1885
2058
  /**
1886
2059
  * @public
@@ -2080,6 +2253,16 @@ export interface DomainStatus {
2080
2253
  * <p>Service software update options for the domain.</p>
2081
2254
  */
2082
2255
  SoftwareUpdateOptions?: SoftwareUpdateOptions;
2256
+ /**
2257
+ * @public
2258
+ * <p>The status of any changes that are currently in progress for the domain.</p>
2259
+ */
2260
+ DomainProcessingStatus?: DomainProcessingStatusType;
2261
+ /**
2262
+ * @public
2263
+ * <p>Information about the domain properties that are currently being modified.</p>
2264
+ */
2265
+ ModifyingProperties?: ModifyingProperties[];
2083
2266
  }
2084
2267
  /**
2085
2268
  * @public
@@ -3031,6 +3214,21 @@ export interface ChangeProgressStatusDetails {
3031
3214
  * <p>The specific stages that the domain is going through to perform the configuration change.</p>
3032
3215
  */
3033
3216
  ChangeProgressStages?: ChangeProgressStage[];
3217
+ /**
3218
+ * @public
3219
+ * <p>The last time that the status of the configuration change was updated.</p>
3220
+ */
3221
+ LastUpdatedTime?: Date;
3222
+ /**
3223
+ * @public
3224
+ * <p>The current status of the configuration change.</p>
3225
+ */
3226
+ ConfigChangeStatus?: ConfigChangeStatus;
3227
+ /**
3228
+ * @public
3229
+ * <p>The IAM principal who initiated the configuration change.</p>
3230
+ */
3231
+ InitiatedBy?: InitiatedBy;
3034
3232
  }
3035
3233
  /**
3036
3234
  * @public
@@ -3464,6 +3662,11 @@ export interface DomainConfig {
3464
3662
  * <p>Software update options for the domain.</p>
3465
3663
  */
3466
3664
  SoftwareUpdateOptions?: SoftwareUpdateOptionsStatus;
3665
+ /**
3666
+ * @public
3667
+ * <p>Information about the domain properties that are currently being modified.</p>
3668
+ */
3669
+ ModifyingProperties?: ModifyingProperties[];
3467
3670
  }
3468
3671
  /**
3469
3672
  * @public
@@ -5,6 +5,7 @@ import { AddDataSourceCommandInput, AddDataSourceCommandOutput } from "../comman
5
5
  import { AddTagsCommandInput, AddTagsCommandOutput } from "../commands/AddTagsCommand";
6
6
  import { AssociatePackageCommandInput, AssociatePackageCommandOutput } from "../commands/AssociatePackageCommand";
7
7
  import { AuthorizeVpcEndpointAccessCommandInput, AuthorizeVpcEndpointAccessCommandOutput } from "../commands/AuthorizeVpcEndpointAccessCommand";
8
+ import { CancelDomainConfigChangeCommandInput, CancelDomainConfigChangeCommandOutput } from "../commands/CancelDomainConfigChangeCommand";
8
9
  import { CancelServiceSoftwareUpdateCommandInput, CancelServiceSoftwareUpdateCommandOutput } from "../commands/CancelServiceSoftwareUpdateCommand";
9
10
  import { CreateDomainCommandInput, CreateDomainCommandOutput } from "../commands/CreateDomainCommand";
10
11
  import { CreateOutboundConnectionCommandInput, CreateOutboundConnectionCommandOutput } from "../commands/CreateOutboundConnectionCommand";
@@ -82,6 +83,10 @@ export declare const se_AssociatePackageCommand: (input: AssociatePackageCommand
82
83
  * serializeAws_restJson1AuthorizeVpcEndpointAccessCommand
83
84
  */
84
85
  export declare const se_AuthorizeVpcEndpointAccessCommand: (input: AuthorizeVpcEndpointAccessCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
86
+ /**
87
+ * serializeAws_restJson1CancelDomainConfigChangeCommand
88
+ */
89
+ export declare const se_CancelDomainConfigChangeCommand: (input: CancelDomainConfigChangeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
85
90
  /**
86
91
  * serializeAws_restJson1CancelServiceSoftwareUpdateCommand
87
92
  */
@@ -330,6 +335,10 @@ export declare const de_AssociatePackageCommand: (output: __HttpResponse, contex
330
335
  * deserializeAws_restJson1AuthorizeVpcEndpointAccessCommand
331
336
  */
332
337
  export declare const de_AuthorizeVpcEndpointAccessCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AuthorizeVpcEndpointAccessCommandOutput>;
338
+ /**
339
+ * deserializeAws_restJson1CancelDomainConfigChangeCommand
340
+ */
341
+ export declare const de_CancelDomainConfigChangeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelDomainConfigChangeCommandOutput>;
333
342
  /**
334
343
  * deserializeAws_restJson1CancelServiceSoftwareUpdateCommand
335
344
  */
@@ -19,6 +19,10 @@ import {
19
19
  AuthorizeVpcEndpointAccessCommandInput,
20
20
  AuthorizeVpcEndpointAccessCommandOutput,
21
21
  } from "./commands/AuthorizeVpcEndpointAccessCommand";
22
+ import {
23
+ CancelDomainConfigChangeCommandInput,
24
+ CancelDomainConfigChangeCommandOutput,
25
+ } from "./commands/CancelDomainConfigChangeCommand";
22
26
  import {
23
27
  CancelServiceSoftwareUpdateCommandInput,
24
28
  CancelServiceSoftwareUpdateCommandOutput,
@@ -314,6 +318,19 @@ export interface OpenSearch {
314
318
  options: __HttpHandlerOptions,
315
319
  cb: (err: any, data?: AuthorizeVpcEndpointAccessCommandOutput) => void
316
320
  ): void;
321
+ cancelDomainConfigChange(
322
+ args: CancelDomainConfigChangeCommandInput,
323
+ options?: __HttpHandlerOptions
324
+ ): Promise<CancelDomainConfigChangeCommandOutput>;
325
+ cancelDomainConfigChange(
326
+ args: CancelDomainConfigChangeCommandInput,
327
+ cb: (err: any, data?: CancelDomainConfigChangeCommandOutput) => void
328
+ ): void;
329
+ cancelDomainConfigChange(
330
+ args: CancelDomainConfigChangeCommandInput,
331
+ options: __HttpHandlerOptions,
332
+ cb: (err: any, data?: CancelDomainConfigChangeCommandOutput) => void
333
+ ): void;
317
334
  cancelServiceSoftwareUpdate(
318
335
  args: CancelServiceSoftwareUpdateCommandInput,
319
336
  options?: __HttpHandlerOptions
@@ -65,6 +65,10 @@ import {
65
65
  AuthorizeVpcEndpointAccessCommandInput,
66
66
  AuthorizeVpcEndpointAccessCommandOutput,
67
67
  } from "./commands/AuthorizeVpcEndpointAccessCommand";
68
+ import {
69
+ CancelDomainConfigChangeCommandInput,
70
+ CancelDomainConfigChangeCommandOutput,
71
+ } from "./commands/CancelDomainConfigChangeCommand";
68
72
  import {
69
73
  CancelServiceSoftwareUpdateCommandInput,
70
74
  CancelServiceSoftwareUpdateCommandOutput,
@@ -306,6 +310,7 @@ export type ServiceInputTypes =
306
310
  | AddTagsCommandInput
307
311
  | AssociatePackageCommandInput
308
312
  | AuthorizeVpcEndpointAccessCommandInput
313
+ | CancelDomainConfigChangeCommandInput
309
314
  | CancelServiceSoftwareUpdateCommandInput
310
315
  | CreateDomainCommandInput
311
316
  | CreateOutboundConnectionCommandInput
@@ -369,6 +374,7 @@ export type ServiceOutputTypes =
369
374
  | AddTagsCommandOutput
370
375
  | AssociatePackageCommandOutput
371
376
  | AuthorizeVpcEndpointAccessCommandOutput
377
+ | CancelDomainConfigChangeCommandOutput
372
378
  | CancelServiceSoftwareUpdateCommandOutput
373
379
  | CreateDomainCommandOutput
374
380
  | CreateOutboundConnectionCommandOutput
@@ -0,0 +1,30 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CancelDomainConfigChangeRequest,
5
+ CancelDomainConfigChangeResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ OpenSearchClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../OpenSearchClient";
12
+ export { __MetadataBearer, $Command };
13
+ export interface CancelDomainConfigChangeCommandInput
14
+ extends CancelDomainConfigChangeRequest {}
15
+ export interface CancelDomainConfigChangeCommandOutput
16
+ extends CancelDomainConfigChangeResponse,
17
+ __MetadataBearer {}
18
+ declare const CancelDomainConfigChangeCommand_base: {
19
+ new (
20
+ input: CancelDomainConfigChangeCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ CancelDomainConfigChangeCommandInput,
23
+ CancelDomainConfigChangeCommandOutput,
24
+ OpenSearchClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class CancelDomainConfigChangeCommand extends CancelDomainConfigChangeCommand_base {}
@@ -3,6 +3,7 @@ export * from "./AddDataSourceCommand";
3
3
  export * from "./AddTagsCommand";
4
4
  export * from "./AssociatePackageCommand";
5
5
  export * from "./AuthorizeVpcEndpointAccessCommand";
6
+ export * from "./CancelDomainConfigChangeCommand";
6
7
  export * from "./CancelServiceSoftwareUpdateCommand";
7
8
  export * from "./CreateDomainCommand";
8
9
  export * from "./CreateOutboundConnectionCommand";