@aws-sdk/client-opensearch 3.687.0 → 3.691.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 +24 -0
- package/dist-cjs/index.js +186 -3
- package/dist-es/OpenSearch.js +6 -0
- package/dist-es/commands/AssociatePackagesCommand.js +22 -0
- package/dist-es/commands/DissociatePackagesCommand.js +22 -0
- package/dist-es/commands/UpdatePackageScopeCommand.js +22 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +8 -0
- package/dist-es/models/models_1.js +5 -0
- package/dist-es/protocols/Aws_restJson1.js +108 -1
- package/dist-types/OpenSearch.d.ts +21 -0
- package/dist-types/OpenSearchClient.d.ts +5 -2
- package/dist-types/commands/AssociatePackageCommand.d.ts +19 -1
- package/dist-types/commands/AssociatePackagesCommand.d.ts +127 -0
- package/dist-types/commands/CreatePackageCommand.d.ts +33 -2
- package/dist-types/commands/DeletePackageCommand.d.ts +18 -1
- package/dist-types/commands/DescribePackagesCommand.d.ts +19 -2
- package/dist-types/commands/DissociatePackageCommand.d.ts +10 -1
- package/dist-types/commands/DissociatePackagesCommand.d.ts +116 -0
- package/dist-types/commands/GetPackageVersionHistoryCommand.d.ts +6 -0
- package/dist-types/commands/ListDomainsForPackageCommand.d.ts +10 -1
- package/dist-types/commands/ListPackagesForDomainCommand.d.ts +10 -1
- package/dist-types/commands/ListVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListVpcEndpointAccessCommand.d.ts +1 -1
- package/dist-types/commands/ListVpcEndpointsCommand.d.ts +1 -1
- package/dist-types/commands/ListVpcEndpointsForDomainCommand.d.ts +1 -1
- package/dist-types/commands/PurchaseReservedInstanceOfferingCommand.d.ts +1 -1
- package/dist-types/commands/RejectInboundConnectionCommand.d.ts +1 -2
- package/dist-types/commands/UpdatePackageCommand.d.ts +28 -1
- package/dist-types/commands/UpdatePackageScopeCommand.d.ts +94 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +834 -778
- package/dist-types/models/models_1.d.ts +307 -58
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- package/dist-types/ts3.4/OpenSearch.d.ts +51 -0
- package/dist-types/ts3.4/OpenSearchClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/AssociatePackagesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DissociatePackagesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListVersionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListVpcEndpointAccessCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListVpcEndpointsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListVpcEndpointsForDomainCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PurchaseReservedInstanceOfferingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RejectInboundConnectionCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdatePackageScopeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +663 -635
- package/dist-types/ts3.4/models/models_1.d.ts +125 -57
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/package.json +7 -7
|
@@ -4,6 +4,7 @@ import {
|
|
|
4
4
|
AdvancedSecurityOptionsInput,
|
|
5
5
|
AIMLOptionsInput,
|
|
6
6
|
AppConfig,
|
|
7
|
+
AuthorizedPrincipal,
|
|
7
8
|
AutoTuneOptions,
|
|
8
9
|
AWSServicePrincipal,
|
|
9
10
|
ChangeProgressDetails,
|
|
@@ -27,18 +28,64 @@ import {
|
|
|
27
28
|
MaintenanceType,
|
|
28
29
|
NodeToNodeEncryptionOptions,
|
|
29
30
|
OffPeakWindowOptions,
|
|
31
|
+
PackageConfiguration,
|
|
30
32
|
PackageDetails,
|
|
33
|
+
PackageEncryptionOptions,
|
|
31
34
|
PackageSource,
|
|
32
35
|
ScheduledAction,
|
|
33
36
|
ServiceSoftwareOptions,
|
|
34
37
|
SnapshotOptions,
|
|
35
38
|
SoftwareUpdateOptions,
|
|
36
39
|
VpcEndpoint,
|
|
40
|
+
VpcEndpointSummary,
|
|
37
41
|
VPCOptions,
|
|
38
42
|
} from "./models_0";
|
|
39
43
|
import { OpenSearchServiceException as __BaseException } from "./OpenSearchServiceException";
|
|
44
|
+
export interface ListVersionsRequest {
|
|
45
|
+
MaxResults?: number | undefined;
|
|
46
|
+
NextToken?: string | undefined;
|
|
47
|
+
}
|
|
48
|
+
export interface ListVersionsResponse {
|
|
49
|
+
Versions?: string[] | undefined;
|
|
50
|
+
NextToken?: string | undefined;
|
|
51
|
+
}
|
|
52
|
+
export interface ListVpcEndpointAccessRequest {
|
|
53
|
+
DomainName: string | undefined;
|
|
54
|
+
NextToken?: string | undefined;
|
|
55
|
+
}
|
|
56
|
+
export interface ListVpcEndpointAccessResponse {
|
|
57
|
+
AuthorizedPrincipalList: AuthorizedPrincipal[] | undefined;
|
|
58
|
+
NextToken: string | undefined;
|
|
59
|
+
}
|
|
60
|
+
export interface ListVpcEndpointsRequest {
|
|
61
|
+
NextToken?: string | undefined;
|
|
62
|
+
}
|
|
63
|
+
export interface ListVpcEndpointsResponse {
|
|
64
|
+
VpcEndpointSummaryList: VpcEndpointSummary[] | undefined;
|
|
65
|
+
NextToken: string | undefined;
|
|
66
|
+
}
|
|
67
|
+
export interface ListVpcEndpointsForDomainRequest {
|
|
68
|
+
DomainName: string | undefined;
|
|
69
|
+
NextToken?: string | undefined;
|
|
70
|
+
}
|
|
71
|
+
export interface ListVpcEndpointsForDomainResponse {
|
|
72
|
+
VpcEndpointSummaryList: VpcEndpointSummary[] | undefined;
|
|
73
|
+
NextToken: string | undefined;
|
|
74
|
+
}
|
|
75
|
+
export interface PurchaseReservedInstanceOfferingRequest {
|
|
76
|
+
ReservedInstanceOfferingId: string | undefined;
|
|
77
|
+
ReservationName: string | undefined;
|
|
78
|
+
InstanceCount?: number | undefined;
|
|
79
|
+
}
|
|
80
|
+
export interface PurchaseReservedInstanceOfferingResponse {
|
|
81
|
+
ReservedInstanceId?: string | undefined;
|
|
82
|
+
ReservationName?: string | undefined;
|
|
83
|
+
}
|
|
84
|
+
export interface RejectInboundConnectionRequest {
|
|
85
|
+
ConnectionId: string | undefined;
|
|
86
|
+
}
|
|
40
87
|
export interface RejectInboundConnectionResponse {
|
|
41
|
-
Connection?: InboundConnection;
|
|
88
|
+
Connection?: InboundConnection | undefined;
|
|
42
89
|
}
|
|
43
90
|
export interface RemoveTagsRequest {
|
|
44
91
|
ARN: string | undefined;
|
|
@@ -46,17 +93,17 @@ export interface RemoveTagsRequest {
|
|
|
46
93
|
}
|
|
47
94
|
export interface RevokeVpcEndpointAccessRequest {
|
|
48
95
|
DomainName: string | undefined;
|
|
49
|
-
Account?: string;
|
|
50
|
-
Service?: AWSServicePrincipal;
|
|
96
|
+
Account?: string | undefined;
|
|
97
|
+
Service?: AWSServicePrincipal | undefined;
|
|
51
98
|
}
|
|
52
99
|
export interface RevokeVpcEndpointAccessResponse {}
|
|
53
100
|
export interface StartDomainMaintenanceRequest {
|
|
54
101
|
DomainName: string | undefined;
|
|
55
102
|
Action: MaintenanceType | undefined;
|
|
56
|
-
NodeId?: string;
|
|
103
|
+
NodeId?: string | undefined;
|
|
57
104
|
}
|
|
58
105
|
export interface StartDomainMaintenanceResponse {
|
|
59
|
-
MaintenanceId?: string;
|
|
106
|
+
MaintenanceId?: string | undefined;
|
|
60
107
|
}
|
|
61
108
|
export declare const ScheduleAt: {
|
|
62
109
|
readonly NOW: "NOW";
|
|
@@ -66,36 +113,36 @@ export declare const ScheduleAt: {
|
|
|
66
113
|
export type ScheduleAt = (typeof ScheduleAt)[keyof typeof ScheduleAt];
|
|
67
114
|
export interface StartServiceSoftwareUpdateRequest {
|
|
68
115
|
DomainName: string | undefined;
|
|
69
|
-
ScheduleAt?: ScheduleAt;
|
|
70
|
-
DesiredStartTime?: number;
|
|
116
|
+
ScheduleAt?: ScheduleAt | undefined;
|
|
117
|
+
DesiredStartTime?: number | undefined;
|
|
71
118
|
}
|
|
72
119
|
export interface StartServiceSoftwareUpdateResponse {
|
|
73
|
-
ServiceSoftwareOptions?: ServiceSoftwareOptions;
|
|
120
|
+
ServiceSoftwareOptions?: ServiceSoftwareOptions | undefined;
|
|
74
121
|
}
|
|
75
122
|
export interface UpdateApplicationRequest {
|
|
76
123
|
id: string | undefined;
|
|
77
|
-
dataSources?: DataSource[];
|
|
78
|
-
appConfigs?: AppConfig[];
|
|
124
|
+
dataSources?: DataSource[] | undefined;
|
|
125
|
+
appConfigs?: AppConfig[] | undefined;
|
|
79
126
|
}
|
|
80
127
|
export interface UpdateApplicationResponse {
|
|
81
|
-
id?: string;
|
|
82
|
-
name?: string;
|
|
83
|
-
arn?: string;
|
|
84
|
-
dataSources?: DataSource[];
|
|
85
|
-
iamIdentityCenterOptions?: IamIdentityCenterOptions;
|
|
86
|
-
appConfigs?: AppConfig[];
|
|
87
|
-
createdAt?: Date;
|
|
88
|
-
lastUpdatedAt?: Date;
|
|
128
|
+
id?: string | undefined;
|
|
129
|
+
name?: string | undefined;
|
|
130
|
+
arn?: string | undefined;
|
|
131
|
+
dataSources?: DataSource[] | undefined;
|
|
132
|
+
iamIdentityCenterOptions?: IamIdentityCenterOptions | undefined;
|
|
133
|
+
appConfigs?: AppConfig[] | undefined;
|
|
134
|
+
createdAt?: Date | undefined;
|
|
135
|
+
lastUpdatedAt?: Date | undefined;
|
|
89
136
|
}
|
|
90
137
|
export interface UpdateDataSourceRequest {
|
|
91
138
|
DomainName: string | undefined;
|
|
92
139
|
Name: string | undefined;
|
|
93
140
|
DataSourceType: DataSourceType | undefined;
|
|
94
|
-
Description?: string;
|
|
95
|
-
Status?: DataSourceStatus;
|
|
141
|
+
Description?: string | undefined;
|
|
142
|
+
Status?: DataSourceStatus | undefined;
|
|
96
143
|
}
|
|
97
144
|
export interface UpdateDataSourceResponse {
|
|
98
|
-
Message?: string;
|
|
145
|
+
Message?: string | undefined;
|
|
99
146
|
}
|
|
100
147
|
export declare const DryRunMode: {
|
|
101
148
|
readonly Basic: "Basic";
|
|
@@ -104,45 +151,66 @@ export declare const DryRunMode: {
|
|
|
104
151
|
export type DryRunMode = (typeof DryRunMode)[keyof typeof DryRunMode];
|
|
105
152
|
export interface UpdateDomainConfigRequest {
|
|
106
153
|
DomainName: string | undefined;
|
|
107
|
-
ClusterConfig?: ClusterConfig;
|
|
108
|
-
EBSOptions?: EBSOptions;
|
|
109
|
-
SnapshotOptions?: SnapshotOptions;
|
|
110
|
-
VPCOptions?: VPCOptions;
|
|
111
|
-
CognitoOptions?: CognitoOptions;
|
|
112
|
-
AdvancedOptions?: Record<string, string
|
|
113
|
-
AccessPolicies?: string;
|
|
114
|
-
IPAddressType?: IPAddressType;
|
|
115
|
-
LogPublishingOptions?:
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
154
|
+
ClusterConfig?: ClusterConfig | undefined;
|
|
155
|
+
EBSOptions?: EBSOptions | undefined;
|
|
156
|
+
SnapshotOptions?: SnapshotOptions | undefined;
|
|
157
|
+
VPCOptions?: VPCOptions | undefined;
|
|
158
|
+
CognitoOptions?: CognitoOptions | undefined;
|
|
159
|
+
AdvancedOptions?: Record<string, string> | undefined;
|
|
160
|
+
AccessPolicies?: string | undefined;
|
|
161
|
+
IPAddressType?: IPAddressType | undefined;
|
|
162
|
+
LogPublishingOptions?:
|
|
163
|
+
| Partial<Record<LogType, LogPublishingOption>>
|
|
164
|
+
| undefined;
|
|
165
|
+
EncryptionAtRestOptions?: EncryptionAtRestOptions | undefined;
|
|
166
|
+
DomainEndpointOptions?: DomainEndpointOptions | undefined;
|
|
167
|
+
NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptions | undefined;
|
|
168
|
+
AdvancedSecurityOptions?: AdvancedSecurityOptionsInput | undefined;
|
|
169
|
+
IdentityCenterOptions?: IdentityCenterOptionsInput | undefined;
|
|
170
|
+
AutoTuneOptions?: AutoTuneOptions | undefined;
|
|
171
|
+
DryRun?: boolean | undefined;
|
|
172
|
+
DryRunMode?: DryRunMode | undefined;
|
|
173
|
+
OffPeakWindowOptions?: OffPeakWindowOptions | undefined;
|
|
174
|
+
SoftwareUpdateOptions?: SoftwareUpdateOptions | undefined;
|
|
175
|
+
AIMLOptions?: AIMLOptionsInput | undefined;
|
|
127
176
|
}
|
|
128
177
|
export interface UpdateDomainConfigResponse {
|
|
129
178
|
DomainConfig: DomainConfig | undefined;
|
|
130
|
-
DryRunResults?: DryRunResults;
|
|
131
|
-
DryRunProgressStatus?: DryRunProgressStatus;
|
|
179
|
+
DryRunResults?: DryRunResults | undefined;
|
|
180
|
+
DryRunProgressStatus?: DryRunProgressStatus | undefined;
|
|
132
181
|
}
|
|
133
182
|
export interface UpdatePackageRequest {
|
|
134
183
|
PackageID: string | undefined;
|
|
135
184
|
PackageSource: PackageSource | undefined;
|
|
136
|
-
PackageDescription?: string;
|
|
137
|
-
CommitMessage?: string;
|
|
185
|
+
PackageDescription?: string | undefined;
|
|
186
|
+
CommitMessage?: string | undefined;
|
|
187
|
+
PackageConfiguration?: PackageConfiguration | undefined;
|
|
188
|
+
PackageEncryptionOptions?: PackageEncryptionOptions | undefined;
|
|
138
189
|
}
|
|
139
190
|
export interface UpdatePackageResponse {
|
|
140
|
-
PackageDetails?: PackageDetails;
|
|
191
|
+
PackageDetails?: PackageDetails | undefined;
|
|
192
|
+
}
|
|
193
|
+
export declare const PackageScopeOperationEnum: {
|
|
194
|
+
readonly ADD: "ADD";
|
|
195
|
+
readonly OVERRIDE: "OVERRIDE";
|
|
196
|
+
readonly REMOVE: "REMOVE";
|
|
197
|
+
};
|
|
198
|
+
export type PackageScopeOperationEnum =
|
|
199
|
+
(typeof PackageScopeOperationEnum)[keyof typeof PackageScopeOperationEnum];
|
|
200
|
+
export interface UpdatePackageScopeRequest {
|
|
201
|
+
PackageID: string | undefined;
|
|
202
|
+
Operation: PackageScopeOperationEnum | undefined;
|
|
203
|
+
PackageUserList: string[] | undefined;
|
|
204
|
+
}
|
|
205
|
+
export interface UpdatePackageScopeResponse {
|
|
206
|
+
PackageID?: string | undefined;
|
|
207
|
+
Operation?: PackageScopeOperationEnum | undefined;
|
|
208
|
+
PackageUserList?: string[] | undefined;
|
|
141
209
|
}
|
|
142
210
|
export declare class SlotNotAvailableException extends __BaseException {
|
|
143
211
|
readonly name: "SlotNotAvailableException";
|
|
144
212
|
readonly $fault: "client";
|
|
145
|
-
SlotSuggestions?: number[];
|
|
213
|
+
SlotSuggestions?: number[] | undefined;
|
|
146
214
|
constructor(
|
|
147
215
|
opts: __ExceptionOptionType<SlotNotAvailableException, __BaseException>
|
|
148
216
|
);
|
|
@@ -152,10 +220,10 @@ export interface UpdateScheduledActionRequest {
|
|
|
152
220
|
ActionID: string | undefined;
|
|
153
221
|
ActionType: ActionType | undefined;
|
|
154
222
|
ScheduleAt: ScheduleAt | undefined;
|
|
155
|
-
DesiredStartTime?: number;
|
|
223
|
+
DesiredStartTime?: number | undefined;
|
|
156
224
|
}
|
|
157
225
|
export interface UpdateScheduledActionResponse {
|
|
158
|
-
ScheduledAction?: ScheduledAction;
|
|
226
|
+
ScheduledAction?: ScheduledAction | undefined;
|
|
159
227
|
}
|
|
160
228
|
export interface UpdateVpcEndpointRequest {
|
|
161
229
|
VpcEndpointId: string | undefined;
|
|
@@ -167,16 +235,16 @@ export interface UpdateVpcEndpointResponse {
|
|
|
167
235
|
export interface UpgradeDomainRequest {
|
|
168
236
|
DomainName: string | undefined;
|
|
169
237
|
TargetVersion: string | undefined;
|
|
170
|
-
PerformCheckOnly?: boolean;
|
|
171
|
-
AdvancedOptions?: Record<string, string
|
|
238
|
+
PerformCheckOnly?: boolean | undefined;
|
|
239
|
+
AdvancedOptions?: Record<string, string> | undefined;
|
|
172
240
|
}
|
|
173
241
|
export interface UpgradeDomainResponse {
|
|
174
|
-
UpgradeId?: string;
|
|
175
|
-
DomainName?: string;
|
|
176
|
-
TargetVersion?: string;
|
|
177
|
-
PerformCheckOnly?: boolean;
|
|
178
|
-
AdvancedOptions?: Record<string, string
|
|
179
|
-
ChangeProgressDetails?: ChangeProgressDetails;
|
|
242
|
+
UpgradeId?: string | undefined;
|
|
243
|
+
DomainName?: string | undefined;
|
|
244
|
+
TargetVersion?: string | undefined;
|
|
245
|
+
PerformCheckOnly?: boolean | undefined;
|
|
246
|
+
AdvancedOptions?: Record<string, string> | undefined;
|
|
247
|
+
ChangeProgressDetails?: ChangeProgressDetails | undefined;
|
|
180
248
|
}
|
|
181
249
|
export declare const UpdateDomainConfigRequestFilterSensitiveLog: (
|
|
182
250
|
obj: UpdateDomainConfigRequest
|
|
@@ -19,6 +19,10 @@ import {
|
|
|
19
19
|
AssociatePackageCommandInput,
|
|
20
20
|
AssociatePackageCommandOutput,
|
|
21
21
|
} from "../commands/AssociatePackageCommand";
|
|
22
|
+
import {
|
|
23
|
+
AssociatePackagesCommandInput,
|
|
24
|
+
AssociatePackagesCommandOutput,
|
|
25
|
+
} from "../commands/AssociatePackagesCommand";
|
|
22
26
|
import {
|
|
23
27
|
AuthorizeVpcEndpointAccessCommandInput,
|
|
24
28
|
AuthorizeVpcEndpointAccessCommandOutput,
|
|
@@ -143,6 +147,10 @@ import {
|
|
|
143
147
|
DissociatePackageCommandInput,
|
|
144
148
|
DissociatePackageCommandOutput,
|
|
145
149
|
} from "../commands/DissociatePackageCommand";
|
|
150
|
+
import {
|
|
151
|
+
DissociatePackagesCommandInput,
|
|
152
|
+
DissociatePackagesCommandOutput,
|
|
153
|
+
} from "../commands/DissociatePackagesCommand";
|
|
146
154
|
import {
|
|
147
155
|
GetApplicationCommandInput,
|
|
148
156
|
GetApplicationCommandOutput,
|
|
@@ -263,6 +271,10 @@ import {
|
|
|
263
271
|
UpdatePackageCommandInput,
|
|
264
272
|
UpdatePackageCommandOutput,
|
|
265
273
|
} from "../commands/UpdatePackageCommand";
|
|
274
|
+
import {
|
|
275
|
+
UpdatePackageScopeCommandInput,
|
|
276
|
+
UpdatePackageScopeCommandOutput,
|
|
277
|
+
} from "../commands/UpdatePackageScopeCommand";
|
|
266
278
|
import {
|
|
267
279
|
UpdateScheduledActionCommandInput,
|
|
268
280
|
UpdateScheduledActionCommandOutput,
|
|
@@ -291,6 +303,10 @@ export declare const se_AssociatePackageCommand: (
|
|
|
291
303
|
input: AssociatePackageCommandInput,
|
|
292
304
|
context: __SerdeContext
|
|
293
305
|
) => Promise<__HttpRequest>;
|
|
306
|
+
export declare const se_AssociatePackagesCommand: (
|
|
307
|
+
input: AssociatePackagesCommandInput,
|
|
308
|
+
context: __SerdeContext
|
|
309
|
+
) => Promise<__HttpRequest>;
|
|
294
310
|
export declare const se_AuthorizeVpcEndpointAccessCommand: (
|
|
295
311
|
input: AuthorizeVpcEndpointAccessCommandInput,
|
|
296
312
|
context: __SerdeContext
|
|
@@ -415,6 +431,10 @@ export declare const se_DissociatePackageCommand: (
|
|
|
415
431
|
input: DissociatePackageCommandInput,
|
|
416
432
|
context: __SerdeContext
|
|
417
433
|
) => Promise<__HttpRequest>;
|
|
434
|
+
export declare const se_DissociatePackagesCommand: (
|
|
435
|
+
input: DissociatePackagesCommandInput,
|
|
436
|
+
context: __SerdeContext
|
|
437
|
+
) => Promise<__HttpRequest>;
|
|
418
438
|
export declare const se_GetApplicationCommand: (
|
|
419
439
|
input: GetApplicationCommandInput,
|
|
420
440
|
context: __SerdeContext
|
|
@@ -535,6 +555,10 @@ export declare const se_UpdatePackageCommand: (
|
|
|
535
555
|
input: UpdatePackageCommandInput,
|
|
536
556
|
context: __SerdeContext
|
|
537
557
|
) => Promise<__HttpRequest>;
|
|
558
|
+
export declare const se_UpdatePackageScopeCommand: (
|
|
559
|
+
input: UpdatePackageScopeCommandInput,
|
|
560
|
+
context: __SerdeContext
|
|
561
|
+
) => Promise<__HttpRequest>;
|
|
538
562
|
export declare const se_UpdateScheduledActionCommand: (
|
|
539
563
|
input: UpdateScheduledActionCommandInput,
|
|
540
564
|
context: __SerdeContext
|
|
@@ -563,6 +587,10 @@ export declare const de_AssociatePackageCommand: (
|
|
|
563
587
|
output: __HttpResponse,
|
|
564
588
|
context: __SerdeContext
|
|
565
589
|
) => Promise<AssociatePackageCommandOutput>;
|
|
590
|
+
export declare const de_AssociatePackagesCommand: (
|
|
591
|
+
output: __HttpResponse,
|
|
592
|
+
context: __SerdeContext
|
|
593
|
+
) => Promise<AssociatePackagesCommandOutput>;
|
|
566
594
|
export declare const de_AuthorizeVpcEndpointAccessCommand: (
|
|
567
595
|
output: __HttpResponse,
|
|
568
596
|
context: __SerdeContext
|
|
@@ -687,6 +715,10 @@ export declare const de_DissociatePackageCommand: (
|
|
|
687
715
|
output: __HttpResponse,
|
|
688
716
|
context: __SerdeContext
|
|
689
717
|
) => Promise<DissociatePackageCommandOutput>;
|
|
718
|
+
export declare const de_DissociatePackagesCommand: (
|
|
719
|
+
output: __HttpResponse,
|
|
720
|
+
context: __SerdeContext
|
|
721
|
+
) => Promise<DissociatePackagesCommandOutput>;
|
|
690
722
|
export declare const de_GetApplicationCommand: (
|
|
691
723
|
output: __HttpResponse,
|
|
692
724
|
context: __SerdeContext
|
|
@@ -807,6 +839,10 @@ export declare const de_UpdatePackageCommand: (
|
|
|
807
839
|
output: __HttpResponse,
|
|
808
840
|
context: __SerdeContext
|
|
809
841
|
) => Promise<UpdatePackageCommandOutput>;
|
|
842
|
+
export declare const de_UpdatePackageScopeCommand: (
|
|
843
|
+
output: __HttpResponse,
|
|
844
|
+
context: __SerdeContext
|
|
845
|
+
) => Promise<UpdatePackageScopeCommandOutput>;
|
|
810
846
|
export declare const de_UpdateScheduledActionCommand: (
|
|
811
847
|
output: __HttpResponse,
|
|
812
848
|
context: __SerdeContext
|
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.691.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-opensearch",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.691.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.691.0",
|
|
25
|
+
"@aws-sdk/core": "3.691.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.691.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
|
37
37
|
"@smithy/core": "^2.5.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|