@aws-sdk/client-opensearch 3.1034.0 → 3.1036.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 +7 -0
- package/dist-cjs/index.js +14 -0
- package/dist-cjs/schemas/schemas_0.js +55 -22
- package/dist-es/OpenSearch.js +2 -0
- package/dist-es/commands/RollbackServiceSoftwareUpdateCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +51 -18
- package/dist-types/OpenSearch.d.ts +7 -0
- package/dist-types/OpenSearchClient.d.ts +3 -2
- package/dist-types/commands/AuthorizeVpcEndpointAccessCommand.d.ts +10 -0
- package/dist-types/commands/CreateDomainCommand.d.ts +4 -0
- package/dist-types/commands/DeleteDomainCommand.d.ts +2 -0
- package/dist-types/commands/DescribeDomainCommand.d.ts +2 -0
- package/dist-types/commands/DescribeDomainConfigCommand.d.ts +2 -0
- package/dist-types/commands/DescribeDomainsCommand.d.ts +2 -0
- package/dist-types/commands/DescribeDryRunProgressCommand.d.ts +2 -0
- package/dist-types/commands/ListVpcEndpointAccessCommand.d.ts +5 -0
- package/dist-types/commands/RevokeVpcEndpointAccessCommand.d.ts +5 -0
- package/dist-types/commands/RollbackServiceSoftwareUpdateCommand.d.ts +96 -0
- package/dist-types/commands/StartServiceSoftwareUpdateCommand.d.ts +2 -1
- package/dist-types/commands/UpdateApplicationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +1 -2
- package/dist-types/commands/UpdateDomainConfigCommand.d.ts +4 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +95 -110
- package/dist-types/models/models_1.d.ts +112 -2
- package/dist-types/schemas/schemas_0.d.ts +5 -0
- package/dist-types/ts3.4/OpenSearch.d.ts +17 -0
- package/dist-types/ts3.4/OpenSearchClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/RollbackServiceSoftwareUpdateCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartServiceSoftwareUpdateCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDataSourceCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +21 -25
- package/dist-types/ts3.4/models/models_1.d.ts +31 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +5 -0
- package/package.json +14 -14
|
@@ -1,6 +1,116 @@
|
|
|
1
1
|
import type { DocumentType as __DocumentType } from "@smithy/types";
|
|
2
|
-
import type { ActionType, DryRunMode, IndexStatus, IPAddressType, LogType, PackageScopeOperationEnum, ScheduleAt } from "./enums";
|
|
3
|
-
import type { AdvancedSecurityOptionsInput, AIMLOptionsInput, AutoTuneOptions, ChangeProgressDetails, ClusterConfig, CognitoOptions, DeploymentStrategyOptions, DirectQueryDataSourceType, DomainConfig, DomainEndpointOptions, DryRunProgressStatus, DryRunResults, EBSOptions, EncryptionAtRestOptions, IdentityCenterOptionsInput, LogPublishingOption, NodeToNodeEncryptionOptions, OffPeakWindowOptions, PackageConfiguration, PackageDetails, PackageEncryptionOptions, PackageSource, ScheduledAction, SnapshotOptions, SoftwareUpdateOptions, VpcEndpoint, VPCOptions } from "./models_0";
|
|
2
|
+
import type { ActionType, DataSourceStatus, DryRunMode, IndexStatus, IPAddressType, LogType, PackageScopeOperationEnum, ScheduleAt } from "./enums";
|
|
3
|
+
import type { AdvancedSecurityOptionsInput, AIMLOptionsInput, AppConfig, AutoTuneOptions, ChangeProgressDetails, ClusterConfig, CognitoOptions, DataSource, DataSourceType, DeploymentStrategyOptions, DirectQueryDataSourceType, DomainConfig, DomainEndpointOptions, DryRunProgressStatus, DryRunResults, EBSOptions, EncryptionAtRestOptions, IamIdentityCenterOptions, IdentityCenterOptionsInput, LogPublishingOption, NodeToNodeEncryptionOptions, OffPeakWindowOptions, PackageConfiguration, PackageDetails, PackageEncryptionOptions, PackageSource, ScheduledAction, ServiceSoftwareOptions, SnapshotOptions, SoftwareUpdateOptions, VpcEndpoint, VPCOptions } from "./models_0";
|
|
4
|
+
/**
|
|
5
|
+
* <p>Represents the output of a <code>StartServiceSoftwareUpdate</code> operation. Contains
|
|
6
|
+
* the status of the update.</p>
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export interface StartServiceSoftwareUpdateResponse {
|
|
10
|
+
/**
|
|
11
|
+
* <p>The current status of the OpenSearch Service software update.</p>
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
ServiceSoftwareOptions?: ServiceSoftwareOptions | undefined;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
export interface UpdateApplicationRequest {
|
|
20
|
+
/**
|
|
21
|
+
* <p>The unique identifier for the OpenSearch application to be updated.</p>
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
id: string | undefined;
|
|
25
|
+
/**
|
|
26
|
+
* <p>The data sources to associate with the OpenSearch application.</p>
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
dataSources?: DataSource[] | undefined;
|
|
30
|
+
/**
|
|
31
|
+
* <p>The configuration settings to modify for the OpenSearch application.</p>
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
34
|
+
appConfigs?: AppConfig[] | undefined;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
export interface UpdateApplicationResponse {
|
|
40
|
+
/**
|
|
41
|
+
* <p>The unique identifier of the updated OpenSearch application.</p>
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
id?: string | undefined;
|
|
45
|
+
/**
|
|
46
|
+
* <p>The name of the updated OpenSearch application.</p>
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
name?: string | undefined;
|
|
50
|
+
/**
|
|
51
|
+
* <p>The Amazon Resource Name (ARN) of the domain. See <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/index.html">Identifiers for IAM Entities </a> in
|
|
52
|
+
* <i>Using Amazon Web Services Identity and Access Management</i> for
|
|
53
|
+
* more information. </p>
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
arn?: string | undefined;
|
|
57
|
+
/**
|
|
58
|
+
* <p>The data sources associated with the updated OpenSearch application.</p>
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
dataSources?: DataSource[] | undefined;
|
|
62
|
+
/**
|
|
63
|
+
* <p>The IAM Identity Center configuration for the updated OpenSearch application.</p>
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
66
|
+
iamIdentityCenterOptions?: IamIdentityCenterOptions | undefined;
|
|
67
|
+
/**
|
|
68
|
+
* <p>The configuration settings for the updated OpenSearch application.</p>
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
appConfigs?: AppConfig[] | undefined;
|
|
72
|
+
/**
|
|
73
|
+
* <p>The timestamp when the OpenSearch application was originally created.</p>
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
createdAt?: Date | undefined;
|
|
77
|
+
/**
|
|
78
|
+
* <p>The timestamp when the OpenSearch application was last updated.</p>
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
lastUpdatedAt?: Date | undefined;
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* <p>Container for the parameters to the <code>UpdateDataSource</code> operation.</p>
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
87
|
+
export interface UpdateDataSourceRequest {
|
|
88
|
+
/**
|
|
89
|
+
* <p>The name of the domain.</p>
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
92
|
+
DomainName: string | undefined;
|
|
93
|
+
/**
|
|
94
|
+
* <p>The name of the data source to modify.</p>
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
97
|
+
Name: string | undefined;
|
|
98
|
+
/**
|
|
99
|
+
* <p>The type of data source.</p>
|
|
100
|
+
* @public
|
|
101
|
+
*/
|
|
102
|
+
DataSourceType: DataSourceType | undefined;
|
|
103
|
+
/**
|
|
104
|
+
* <p>A new description of the data source.</p>
|
|
105
|
+
* @public
|
|
106
|
+
*/
|
|
107
|
+
Description?: string | undefined;
|
|
108
|
+
/**
|
|
109
|
+
* <p>The status of the data source update.</p>
|
|
110
|
+
* @public
|
|
111
|
+
*/
|
|
112
|
+
Status?: DataSourceStatus | undefined;
|
|
113
|
+
}
|
|
4
114
|
/**
|
|
5
115
|
* <p>The result of an <code>UpdateDataSource</code> operation.</p>
|
|
6
116
|
* @public
|
|
@@ -281,6 +281,9 @@ export declare var ReservedInstance$: StaticStructureSchema;
|
|
|
281
281
|
export declare var ReservedInstanceOffering$: StaticStructureSchema;
|
|
282
282
|
export declare var RevokeVpcEndpointAccessRequest$: StaticStructureSchema;
|
|
283
283
|
export declare var RevokeVpcEndpointAccessResponse$: StaticStructureSchema;
|
|
284
|
+
export declare var RollbackServiceSoftwareOptions$: StaticStructureSchema;
|
|
285
|
+
export declare var RollbackServiceSoftwareUpdateRequest$: StaticStructureSchema;
|
|
286
|
+
export declare var RollbackServiceSoftwareUpdateResponse$: StaticStructureSchema;
|
|
284
287
|
export declare var S3GlueDataCatalog$: StaticStructureSchema;
|
|
285
288
|
export declare var S3VectorsEngine$: StaticStructureSchema;
|
|
286
289
|
export declare var SAMLIdp$: StaticStructureSchema;
|
|
@@ -290,6 +293,7 @@ export declare var ScheduledAction$: StaticStructureSchema;
|
|
|
290
293
|
export declare var ScheduledAutoTuneDetails$: StaticStructureSchema;
|
|
291
294
|
export declare var SecurityLakeDirectQueryDataSource$: StaticStructureSchema;
|
|
292
295
|
export declare var ServerlessVectorAcceleration$: StaticStructureSchema;
|
|
296
|
+
export declare var ServiceOptions$: StaticStructureSchema;
|
|
293
297
|
export declare var ServiceSoftwareOptions$: StaticStructureSchema;
|
|
294
298
|
export declare var SnapshotOptions$: StaticStructureSchema;
|
|
295
299
|
export declare var SnapshotOptionsStatus$: StaticStructureSchema;
|
|
@@ -414,6 +418,7 @@ export declare var RegisterCapability$: StaticOperationSchema;
|
|
|
414
418
|
export declare var RejectInboundConnection$: StaticOperationSchema;
|
|
415
419
|
export declare var RemoveTags$: StaticOperationSchema;
|
|
416
420
|
export declare var RevokeVpcEndpointAccess$: StaticOperationSchema;
|
|
421
|
+
export declare var RollbackServiceSoftwareUpdate$: StaticOperationSchema;
|
|
417
422
|
export declare var StartDomainMaintenance$: StaticOperationSchema;
|
|
418
423
|
export declare var StartServiceSoftwareUpdate$: StaticOperationSchema;
|
|
419
424
|
export declare var UpdateApplication$: StaticOperationSchema;
|
|
@@ -303,6 +303,10 @@ import {
|
|
|
303
303
|
RevokeVpcEndpointAccessCommandInput,
|
|
304
304
|
RevokeVpcEndpointAccessCommandOutput,
|
|
305
305
|
} from "./commands/RevokeVpcEndpointAccessCommand";
|
|
306
|
+
import {
|
|
307
|
+
RollbackServiceSoftwareUpdateCommandInput,
|
|
308
|
+
RollbackServiceSoftwareUpdateCommandOutput,
|
|
309
|
+
} from "./commands/RollbackServiceSoftwareUpdateCommand";
|
|
306
310
|
import {
|
|
307
311
|
StartDomainMaintenanceCommandInput,
|
|
308
312
|
StartDomainMaintenanceCommandOutput,
|
|
@@ -1346,6 +1350,19 @@ export interface OpenSearch {
|
|
|
1346
1350
|
options: __HttpHandlerOptions,
|
|
1347
1351
|
cb: (err: any, data?: RevokeVpcEndpointAccessCommandOutput) => void
|
|
1348
1352
|
): void;
|
|
1353
|
+
rollbackServiceSoftwareUpdate(
|
|
1354
|
+
args: RollbackServiceSoftwareUpdateCommandInput,
|
|
1355
|
+
options?: __HttpHandlerOptions
|
|
1356
|
+
): Promise<RollbackServiceSoftwareUpdateCommandOutput>;
|
|
1357
|
+
rollbackServiceSoftwareUpdate(
|
|
1358
|
+
args: RollbackServiceSoftwareUpdateCommandInput,
|
|
1359
|
+
cb: (err: any, data?: RollbackServiceSoftwareUpdateCommandOutput) => void
|
|
1360
|
+
): void;
|
|
1361
|
+
rollbackServiceSoftwareUpdate(
|
|
1362
|
+
args: RollbackServiceSoftwareUpdateCommandInput,
|
|
1363
|
+
options: __HttpHandlerOptions,
|
|
1364
|
+
cb: (err: any, data?: RollbackServiceSoftwareUpdateCommandOutput) => void
|
|
1365
|
+
): void;
|
|
1349
1366
|
startDomainMaintenance(
|
|
1350
1367
|
args: StartDomainMaintenanceCommandInput,
|
|
1351
1368
|
options?: __HttpHandlerOptions
|
|
@@ -344,6 +344,10 @@ import {
|
|
|
344
344
|
RevokeVpcEndpointAccessCommandInput,
|
|
345
345
|
RevokeVpcEndpointAccessCommandOutput,
|
|
346
346
|
} from "./commands/RevokeVpcEndpointAccessCommand";
|
|
347
|
+
import {
|
|
348
|
+
RollbackServiceSoftwareUpdateCommandInput,
|
|
349
|
+
RollbackServiceSoftwareUpdateCommandOutput,
|
|
350
|
+
} from "./commands/RollbackServiceSoftwareUpdateCommand";
|
|
347
351
|
import {
|
|
348
352
|
StartDomainMaintenanceCommandInput,
|
|
349
353
|
StartDomainMaintenanceCommandOutput,
|
|
@@ -475,6 +479,7 @@ export type ServiceInputTypes =
|
|
|
475
479
|
| RejectInboundConnectionCommandInput
|
|
476
480
|
| RemoveTagsCommandInput
|
|
477
481
|
| RevokeVpcEndpointAccessCommandInput
|
|
482
|
+
| RollbackServiceSoftwareUpdateCommandInput
|
|
478
483
|
| StartDomainMaintenanceCommandInput
|
|
479
484
|
| StartServiceSoftwareUpdateCommandInput
|
|
480
485
|
| UpdateApplicationCommandInput
|
|
@@ -563,6 +568,7 @@ export type ServiceOutputTypes =
|
|
|
563
568
|
| RejectInboundConnectionCommandOutput
|
|
564
569
|
| RemoveTagsCommandOutput
|
|
565
570
|
| RevokeVpcEndpointAccessCommandOutput
|
|
571
|
+
| RollbackServiceSoftwareUpdateCommandOutput
|
|
566
572
|
| StartDomainMaintenanceCommandOutput
|
|
567
573
|
| StartServiceSoftwareUpdateCommandOutput
|
|
568
574
|
| UpdateApplicationCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
RollbackServiceSoftwareUpdateRequest,
|
|
5
|
+
RollbackServiceSoftwareUpdateResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
OpenSearchClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../OpenSearchClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface RollbackServiceSoftwareUpdateCommandInput
|
|
15
|
+
extends RollbackServiceSoftwareUpdateRequest {}
|
|
16
|
+
export interface RollbackServiceSoftwareUpdateCommandOutput
|
|
17
|
+
extends RollbackServiceSoftwareUpdateResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const RollbackServiceSoftwareUpdateCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: RollbackServiceSoftwareUpdateCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
RollbackServiceSoftwareUpdateCommandInput,
|
|
24
|
+
RollbackServiceSoftwareUpdateCommandOutput,
|
|
25
|
+
OpenSearchClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: RollbackServiceSoftwareUpdateCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
RollbackServiceSoftwareUpdateCommandInput,
|
|
33
|
+
RollbackServiceSoftwareUpdateCommandOutput,
|
|
34
|
+
OpenSearchClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class RollbackServiceSoftwareUpdateCommand extends RollbackServiceSoftwareUpdateCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: RollbackServiceSoftwareUpdateRequest;
|
|
44
|
+
output: RollbackServiceSoftwareUpdateResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: RollbackServiceSoftwareUpdateCommandInput;
|
|
48
|
+
output: RollbackServiceSoftwareUpdateCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
StartServiceSoftwareUpdateResponse,
|
|
6
|
-
} from "../models/models_0";
|
|
3
|
+
import { StartServiceSoftwareUpdateRequest } from "../models/models_0";
|
|
4
|
+
import { StartServiceSoftwareUpdateResponse } from "../models/models_1";
|
|
7
5
|
import {
|
|
8
6
|
OpenSearchClientResolvedConfig,
|
|
9
7
|
ServiceInputTypes,
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
3
|
+
import {
|
|
4
|
+
UpdateDataSourceRequest,
|
|
5
|
+
UpdateDataSourceResponse,
|
|
6
|
+
} from "../models/models_1";
|
|
5
7
|
import {
|
|
6
8
|
OpenSearchClientResolvedConfig,
|
|
7
9
|
ServiceInputTypes,
|
|
@@ -73,6 +73,7 @@ export * from "./RegisterCapabilityCommand";
|
|
|
73
73
|
export * from "./RejectInboundConnectionCommand";
|
|
74
74
|
export * from "./RemoveTagsCommand";
|
|
75
75
|
export * from "./RevokeVpcEndpointAccessCommand";
|
|
76
|
+
export * from "./RollbackServiceSoftwareUpdateCommand";
|
|
76
77
|
export * from "./StartDomainMaintenanceCommand";
|
|
77
78
|
export * from "./StartServiceSoftwareUpdateCommand";
|
|
78
79
|
export * from "./UpdateApplicationCommand";
|
|
@@ -354,14 +354,19 @@ export interface AssociatePackagesRequest {
|
|
|
354
354
|
export interface AssociatePackagesResponse {
|
|
355
355
|
DomainPackageDetailsList?: DomainPackageDetails[] | undefined;
|
|
356
356
|
}
|
|
357
|
+
export interface ServiceOptions {
|
|
358
|
+
SupportedRegions?: string[] | undefined;
|
|
359
|
+
}
|
|
357
360
|
export interface AuthorizeVpcEndpointAccessRequest {
|
|
358
361
|
DomainName: string | undefined;
|
|
359
362
|
Account?: string | undefined;
|
|
360
363
|
Service?: AWSServicePrincipal | undefined;
|
|
364
|
+
ServiceOptions?: ServiceOptions | undefined;
|
|
361
365
|
}
|
|
362
366
|
export interface AuthorizedPrincipal {
|
|
363
367
|
PrincipalType?: PrincipalType | undefined;
|
|
364
368
|
Principal?: string | undefined;
|
|
369
|
+
ServiceOptions?: ServiceOptions | undefined;
|
|
365
370
|
}
|
|
366
371
|
export interface AuthorizeVpcEndpointAccessResponse {
|
|
367
372
|
AuthorizedPrincipal: AuthorizedPrincipal | undefined;
|
|
@@ -510,6 +515,7 @@ export interface EncryptionAtRestOptions {
|
|
|
510
515
|
export interface IdentityCenterOptionsInput {
|
|
511
516
|
EnabledAPIAccess?: boolean | undefined;
|
|
512
517
|
IdentityCenterInstanceARN?: string | undefined;
|
|
518
|
+
IdentityCenterInstanceRegion?: string | undefined;
|
|
513
519
|
SubjectKey?: SubjectKeyIdCOption | undefined;
|
|
514
520
|
RolesKey?: RolesKeyIdCOption | undefined;
|
|
515
521
|
}
|
|
@@ -536,6 +542,7 @@ export interface SnapshotOptions {
|
|
|
536
542
|
}
|
|
537
543
|
export interface SoftwareUpdateOptions {
|
|
538
544
|
AutoSoftwareUpdateEnabled?: boolean | undefined;
|
|
545
|
+
UseLatestServiceSoftwareForBlueGreen?: boolean | undefined;
|
|
539
546
|
}
|
|
540
547
|
export interface VPCOptions {
|
|
541
548
|
SubnetIds?: string[] | undefined;
|
|
@@ -583,6 +590,7 @@ export interface ChangeProgressDetails {
|
|
|
583
590
|
export interface IdentityCenterOptions {
|
|
584
591
|
EnabledAPIAccess?: boolean | undefined;
|
|
585
592
|
IdentityCenterInstanceARN?: string | undefined;
|
|
593
|
+
IdentityCenterInstanceRegion?: string | undefined;
|
|
586
594
|
SubjectKey?: SubjectKeyIdCOption | undefined;
|
|
587
595
|
RolesKey?: RolesKeyIdCOption | undefined;
|
|
588
596
|
IdentityCenterApplicationARN?: string | undefined;
|
|
@@ -1634,8 +1642,21 @@ export interface RevokeVpcEndpointAccessRequest {
|
|
|
1634
1642
|
DomainName: string | undefined;
|
|
1635
1643
|
Account?: string | undefined;
|
|
1636
1644
|
Service?: AWSServicePrincipal | undefined;
|
|
1645
|
+
ServiceOptions?: ServiceOptions | undefined;
|
|
1637
1646
|
}
|
|
1638
1647
|
export interface RevokeVpcEndpointAccessResponse {}
|
|
1648
|
+
export interface RollbackServiceSoftwareUpdateRequest {
|
|
1649
|
+
DomainName: string | undefined;
|
|
1650
|
+
}
|
|
1651
|
+
export interface RollbackServiceSoftwareOptions {
|
|
1652
|
+
CurrentVersion?: string | undefined;
|
|
1653
|
+
NewVersion?: string | undefined;
|
|
1654
|
+
RollbackAvailable?: boolean | undefined;
|
|
1655
|
+
Description?: string | undefined;
|
|
1656
|
+
}
|
|
1657
|
+
export interface RollbackServiceSoftwareUpdateResponse {
|
|
1658
|
+
RollbackServiceSoftwareOptions?: RollbackServiceSoftwareOptions | undefined;
|
|
1659
|
+
}
|
|
1639
1660
|
export interface StartDomainMaintenanceRequest {
|
|
1640
1661
|
DomainName: string | undefined;
|
|
1641
1662
|
Action: MaintenanceType | undefined;
|
|
@@ -1649,28 +1670,3 @@ export interface StartServiceSoftwareUpdateRequest {
|
|
|
1649
1670
|
ScheduleAt?: ScheduleAt | undefined;
|
|
1650
1671
|
DesiredStartTime?: number | undefined;
|
|
1651
1672
|
}
|
|
1652
|
-
export interface StartServiceSoftwareUpdateResponse {
|
|
1653
|
-
ServiceSoftwareOptions?: ServiceSoftwareOptions | undefined;
|
|
1654
|
-
}
|
|
1655
|
-
export interface UpdateApplicationRequest {
|
|
1656
|
-
id: string | undefined;
|
|
1657
|
-
dataSources?: DataSource[] | undefined;
|
|
1658
|
-
appConfigs?: AppConfig[] | undefined;
|
|
1659
|
-
}
|
|
1660
|
-
export interface UpdateApplicationResponse {
|
|
1661
|
-
id?: string | undefined;
|
|
1662
|
-
name?: string | undefined;
|
|
1663
|
-
arn?: string | undefined;
|
|
1664
|
-
dataSources?: DataSource[] | undefined;
|
|
1665
|
-
iamIdentityCenterOptions?: IamIdentityCenterOptions | undefined;
|
|
1666
|
-
appConfigs?: AppConfig[] | undefined;
|
|
1667
|
-
createdAt?: Date | undefined;
|
|
1668
|
-
lastUpdatedAt?: Date | undefined;
|
|
1669
|
-
}
|
|
1670
|
-
export interface UpdateDataSourceRequest {
|
|
1671
|
-
DomainName: string | undefined;
|
|
1672
|
-
Name: string | undefined;
|
|
1673
|
-
DataSourceType: DataSourceType | undefined;
|
|
1674
|
-
Description?: string | undefined;
|
|
1675
|
-
Status?: DataSourceStatus | undefined;
|
|
1676
|
-
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { DocumentType as __DocumentType } from "@smithy/types";
|
|
2
2
|
import {
|
|
3
3
|
ActionType,
|
|
4
|
+
DataSourceStatus,
|
|
4
5
|
DryRunMode,
|
|
5
6
|
IndexStatus,
|
|
6
7
|
IPAddressType,
|
|
@@ -11,10 +12,13 @@ import {
|
|
|
11
12
|
import {
|
|
12
13
|
AdvancedSecurityOptionsInput,
|
|
13
14
|
AIMLOptionsInput,
|
|
15
|
+
AppConfig,
|
|
14
16
|
AutoTuneOptions,
|
|
15
17
|
ChangeProgressDetails,
|
|
16
18
|
ClusterConfig,
|
|
17
19
|
CognitoOptions,
|
|
20
|
+
DataSource,
|
|
21
|
+
DataSourceType,
|
|
18
22
|
DeploymentStrategyOptions,
|
|
19
23
|
DirectQueryDataSourceType,
|
|
20
24
|
DomainConfig,
|
|
@@ -23,6 +27,7 @@ import {
|
|
|
23
27
|
DryRunResults,
|
|
24
28
|
EBSOptions,
|
|
25
29
|
EncryptionAtRestOptions,
|
|
30
|
+
IamIdentityCenterOptions,
|
|
26
31
|
IdentityCenterOptionsInput,
|
|
27
32
|
LogPublishingOption,
|
|
28
33
|
NodeToNodeEncryptionOptions,
|
|
@@ -32,11 +37,37 @@ import {
|
|
|
32
37
|
PackageEncryptionOptions,
|
|
33
38
|
PackageSource,
|
|
34
39
|
ScheduledAction,
|
|
40
|
+
ServiceSoftwareOptions,
|
|
35
41
|
SnapshotOptions,
|
|
36
42
|
SoftwareUpdateOptions,
|
|
37
43
|
VpcEndpoint,
|
|
38
44
|
VPCOptions,
|
|
39
45
|
} from "./models_0";
|
|
46
|
+
export interface StartServiceSoftwareUpdateResponse {
|
|
47
|
+
ServiceSoftwareOptions?: ServiceSoftwareOptions | undefined;
|
|
48
|
+
}
|
|
49
|
+
export interface UpdateApplicationRequest {
|
|
50
|
+
id: string | undefined;
|
|
51
|
+
dataSources?: DataSource[] | undefined;
|
|
52
|
+
appConfigs?: AppConfig[] | undefined;
|
|
53
|
+
}
|
|
54
|
+
export interface UpdateApplicationResponse {
|
|
55
|
+
id?: string | undefined;
|
|
56
|
+
name?: string | undefined;
|
|
57
|
+
arn?: string | undefined;
|
|
58
|
+
dataSources?: DataSource[] | undefined;
|
|
59
|
+
iamIdentityCenterOptions?: IamIdentityCenterOptions | undefined;
|
|
60
|
+
appConfigs?: AppConfig[] | undefined;
|
|
61
|
+
createdAt?: Date | undefined;
|
|
62
|
+
lastUpdatedAt?: Date | undefined;
|
|
63
|
+
}
|
|
64
|
+
export interface UpdateDataSourceRequest {
|
|
65
|
+
DomainName: string | undefined;
|
|
66
|
+
Name: string | undefined;
|
|
67
|
+
DataSourceType: DataSourceType | undefined;
|
|
68
|
+
Description?: string | undefined;
|
|
69
|
+
Status?: DataSourceStatus | undefined;
|
|
70
|
+
}
|
|
40
71
|
export interface UpdateDataSourceResponse {
|
|
41
72
|
Message?: string | undefined;
|
|
42
73
|
}
|
|
@@ -281,6 +281,9 @@ export declare var ReservedInstance$: StaticStructureSchema;
|
|
|
281
281
|
export declare var ReservedInstanceOffering$: StaticStructureSchema;
|
|
282
282
|
export declare var RevokeVpcEndpointAccessRequest$: StaticStructureSchema;
|
|
283
283
|
export declare var RevokeVpcEndpointAccessResponse$: StaticStructureSchema;
|
|
284
|
+
export declare var RollbackServiceSoftwareOptions$: StaticStructureSchema;
|
|
285
|
+
export declare var RollbackServiceSoftwareUpdateRequest$: StaticStructureSchema;
|
|
286
|
+
export declare var RollbackServiceSoftwareUpdateResponse$: StaticStructureSchema;
|
|
284
287
|
export declare var S3GlueDataCatalog$: StaticStructureSchema;
|
|
285
288
|
export declare var S3VectorsEngine$: StaticStructureSchema;
|
|
286
289
|
export declare var SAMLIdp$: StaticStructureSchema;
|
|
@@ -290,6 +293,7 @@ export declare var ScheduledAction$: StaticStructureSchema;
|
|
|
290
293
|
export declare var ScheduledAutoTuneDetails$: StaticStructureSchema;
|
|
291
294
|
export declare var SecurityLakeDirectQueryDataSource$: StaticStructureSchema;
|
|
292
295
|
export declare var ServerlessVectorAcceleration$: StaticStructureSchema;
|
|
296
|
+
export declare var ServiceOptions$: StaticStructureSchema;
|
|
293
297
|
export declare var ServiceSoftwareOptions$: StaticStructureSchema;
|
|
294
298
|
export declare var SnapshotOptions$: StaticStructureSchema;
|
|
295
299
|
export declare var SnapshotOptionsStatus$: StaticStructureSchema;
|
|
@@ -414,6 +418,7 @@ export declare var RegisterCapability$: StaticOperationSchema;
|
|
|
414
418
|
export declare var RejectInboundConnection$: StaticOperationSchema;
|
|
415
419
|
export declare var RemoveTags$: StaticOperationSchema;
|
|
416
420
|
export declare var RevokeVpcEndpointAccess$: StaticOperationSchema;
|
|
421
|
+
export declare var RollbackServiceSoftwareUpdate$: StaticOperationSchema;
|
|
417
422
|
export declare var StartDomainMaintenance$: StaticOperationSchema;
|
|
418
423
|
export declare var StartServiceSoftwareUpdate$: StaticOperationSchema;
|
|
419
424
|
export declare var UpdateApplication$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-opensearch",
|
|
3
3
|
"description": "AWS SDK for JavaScript Opensearch Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1036.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-opensearch",
|
|
@@ -21,41 +21,41 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.974.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.974.5",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.36",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.10",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.10",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.11",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.35",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.13",
|
|
31
31
|
"@aws-sdk/types": "^3.973.8",
|
|
32
32
|
"@aws-sdk/util-endpoints": "^3.996.8",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.10",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.21",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.17",
|
|
36
|
-
"@smithy/core": "^3.23.
|
|
36
|
+
"@smithy/core": "^3.23.17",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.17",
|
|
38
38
|
"@smithy/hash-node": "^4.2.14",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.14",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.14",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.5.
|
|
43
|
-
"@smithy/middleware-serde": "^4.2.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.32",
|
|
42
|
+
"@smithy/middleware-retry": "^4.5.5",
|
|
43
|
+
"@smithy/middleware-serde": "^4.2.20",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.14",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.14",
|
|
46
|
-
"@smithy/node-http-handler": "^4.6.
|
|
46
|
+
"@smithy/node-http-handler": "^4.6.1",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.14",
|
|
48
|
-
"@smithy/smithy-client": "^4.12.
|
|
48
|
+
"@smithy/smithy-client": "^4.12.13",
|
|
49
49
|
"@smithy/types": "^4.14.1",
|
|
50
50
|
"@smithy/url-parser": "^4.2.14",
|
|
51
51
|
"@smithy/util-base64": "^4.3.2",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.49",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.54",
|
|
56
56
|
"@smithy/util-endpoints": "^3.4.2",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.14",
|
|
58
|
-
"@smithy/util-retry": "^4.3.
|
|
58
|
+
"@smithy/util-retry": "^4.3.4",
|
|
59
59
|
"@smithy/util-utf8": "^4.2.2",
|
|
60
60
|
"tslib": "^2.6.2"
|
|
61
61
|
},
|