@aws-sdk/client-opensearch 3.689.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.
|
@@ -42,23 +42,23 @@ import {
|
|
|
42
42
|
} from "./models_0";
|
|
43
43
|
import { OpenSearchServiceException as __BaseException } from "./OpenSearchServiceException";
|
|
44
44
|
export interface ListVersionsRequest {
|
|
45
|
-
MaxResults?: number;
|
|
46
|
-
NextToken?: string;
|
|
45
|
+
MaxResults?: number | undefined;
|
|
46
|
+
NextToken?: string | undefined;
|
|
47
47
|
}
|
|
48
48
|
export interface ListVersionsResponse {
|
|
49
|
-
Versions?: string[];
|
|
50
|
-
NextToken?: string;
|
|
49
|
+
Versions?: string[] | undefined;
|
|
50
|
+
NextToken?: string | undefined;
|
|
51
51
|
}
|
|
52
52
|
export interface ListVpcEndpointAccessRequest {
|
|
53
53
|
DomainName: string | undefined;
|
|
54
|
-
NextToken?: string;
|
|
54
|
+
NextToken?: string | undefined;
|
|
55
55
|
}
|
|
56
56
|
export interface ListVpcEndpointAccessResponse {
|
|
57
57
|
AuthorizedPrincipalList: AuthorizedPrincipal[] | undefined;
|
|
58
58
|
NextToken: string | undefined;
|
|
59
59
|
}
|
|
60
60
|
export interface ListVpcEndpointsRequest {
|
|
61
|
-
NextToken?: string;
|
|
61
|
+
NextToken?: string | undefined;
|
|
62
62
|
}
|
|
63
63
|
export interface ListVpcEndpointsResponse {
|
|
64
64
|
VpcEndpointSummaryList: VpcEndpointSummary[] | undefined;
|
|
@@ -66,7 +66,7 @@ export interface ListVpcEndpointsResponse {
|
|
|
66
66
|
}
|
|
67
67
|
export interface ListVpcEndpointsForDomainRequest {
|
|
68
68
|
DomainName: string | undefined;
|
|
69
|
-
NextToken?: string;
|
|
69
|
+
NextToken?: string | undefined;
|
|
70
70
|
}
|
|
71
71
|
export interface ListVpcEndpointsForDomainResponse {
|
|
72
72
|
VpcEndpointSummaryList: VpcEndpointSummary[] | undefined;
|
|
@@ -75,17 +75,17 @@ export interface ListVpcEndpointsForDomainResponse {
|
|
|
75
75
|
export interface PurchaseReservedInstanceOfferingRequest {
|
|
76
76
|
ReservedInstanceOfferingId: string | undefined;
|
|
77
77
|
ReservationName: string | undefined;
|
|
78
|
-
InstanceCount?: number;
|
|
78
|
+
InstanceCount?: number | undefined;
|
|
79
79
|
}
|
|
80
80
|
export interface PurchaseReservedInstanceOfferingResponse {
|
|
81
|
-
ReservedInstanceId?: string;
|
|
82
|
-
ReservationName?: string;
|
|
81
|
+
ReservedInstanceId?: string | undefined;
|
|
82
|
+
ReservationName?: string | undefined;
|
|
83
83
|
}
|
|
84
84
|
export interface RejectInboundConnectionRequest {
|
|
85
85
|
ConnectionId: string | undefined;
|
|
86
86
|
}
|
|
87
87
|
export interface RejectInboundConnectionResponse {
|
|
88
|
-
Connection?: InboundConnection;
|
|
88
|
+
Connection?: InboundConnection | undefined;
|
|
89
89
|
}
|
|
90
90
|
export interface RemoveTagsRequest {
|
|
91
91
|
ARN: string | undefined;
|
|
@@ -93,17 +93,17 @@ export interface RemoveTagsRequest {
|
|
|
93
93
|
}
|
|
94
94
|
export interface RevokeVpcEndpointAccessRequest {
|
|
95
95
|
DomainName: string | undefined;
|
|
96
|
-
Account?: string;
|
|
97
|
-
Service?: AWSServicePrincipal;
|
|
96
|
+
Account?: string | undefined;
|
|
97
|
+
Service?: AWSServicePrincipal | undefined;
|
|
98
98
|
}
|
|
99
99
|
export interface RevokeVpcEndpointAccessResponse {}
|
|
100
100
|
export interface StartDomainMaintenanceRequest {
|
|
101
101
|
DomainName: string | undefined;
|
|
102
102
|
Action: MaintenanceType | undefined;
|
|
103
|
-
NodeId?: string;
|
|
103
|
+
NodeId?: string | undefined;
|
|
104
104
|
}
|
|
105
105
|
export interface StartDomainMaintenanceResponse {
|
|
106
|
-
MaintenanceId?: string;
|
|
106
|
+
MaintenanceId?: string | undefined;
|
|
107
107
|
}
|
|
108
108
|
export declare const ScheduleAt: {
|
|
109
109
|
readonly NOW: "NOW";
|
|
@@ -113,36 +113,36 @@ export declare const ScheduleAt: {
|
|
|
113
113
|
export type ScheduleAt = (typeof ScheduleAt)[keyof typeof ScheduleAt];
|
|
114
114
|
export interface StartServiceSoftwareUpdateRequest {
|
|
115
115
|
DomainName: string | undefined;
|
|
116
|
-
ScheduleAt?: ScheduleAt;
|
|
117
|
-
DesiredStartTime?: number;
|
|
116
|
+
ScheduleAt?: ScheduleAt | undefined;
|
|
117
|
+
DesiredStartTime?: number | undefined;
|
|
118
118
|
}
|
|
119
119
|
export interface StartServiceSoftwareUpdateResponse {
|
|
120
|
-
ServiceSoftwareOptions?: ServiceSoftwareOptions;
|
|
120
|
+
ServiceSoftwareOptions?: ServiceSoftwareOptions | undefined;
|
|
121
121
|
}
|
|
122
122
|
export interface UpdateApplicationRequest {
|
|
123
123
|
id: string | undefined;
|
|
124
|
-
dataSources?: DataSource[];
|
|
125
|
-
appConfigs?: AppConfig[];
|
|
124
|
+
dataSources?: DataSource[] | undefined;
|
|
125
|
+
appConfigs?: AppConfig[] | undefined;
|
|
126
126
|
}
|
|
127
127
|
export interface UpdateApplicationResponse {
|
|
128
|
-
id?: string;
|
|
129
|
-
name?: string;
|
|
130
|
-
arn?: string;
|
|
131
|
-
dataSources?: DataSource[];
|
|
132
|
-
iamIdentityCenterOptions?: IamIdentityCenterOptions;
|
|
133
|
-
appConfigs?: AppConfig[];
|
|
134
|
-
createdAt?: Date;
|
|
135
|
-
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;
|
|
136
136
|
}
|
|
137
137
|
export interface UpdateDataSourceRequest {
|
|
138
138
|
DomainName: string | undefined;
|
|
139
139
|
Name: string | undefined;
|
|
140
140
|
DataSourceType: DataSourceType | undefined;
|
|
141
|
-
Description?: string;
|
|
142
|
-
Status?: DataSourceStatus;
|
|
141
|
+
Description?: string | undefined;
|
|
142
|
+
Status?: DataSourceStatus | undefined;
|
|
143
143
|
}
|
|
144
144
|
export interface UpdateDataSourceResponse {
|
|
145
|
-
Message?: string;
|
|
145
|
+
Message?: string | undefined;
|
|
146
146
|
}
|
|
147
147
|
export declare const DryRunMode: {
|
|
148
148
|
readonly Basic: "Basic";
|
|
@@ -151,42 +151,44 @@ export declare const DryRunMode: {
|
|
|
151
151
|
export type DryRunMode = (typeof DryRunMode)[keyof typeof DryRunMode];
|
|
152
152
|
export interface UpdateDomainConfigRequest {
|
|
153
153
|
DomainName: string | undefined;
|
|
154
|
-
ClusterConfig?: ClusterConfig;
|
|
155
|
-
EBSOptions?: EBSOptions;
|
|
156
|
-
SnapshotOptions?: SnapshotOptions;
|
|
157
|
-
VPCOptions?: VPCOptions;
|
|
158
|
-
CognitoOptions?: CognitoOptions;
|
|
159
|
-
AdvancedOptions?: Record<string, string
|
|
160
|
-
AccessPolicies?: string;
|
|
161
|
-
IPAddressType?: IPAddressType;
|
|
162
|
-
LogPublishingOptions?:
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
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;
|
|
174
176
|
}
|
|
175
177
|
export interface UpdateDomainConfigResponse {
|
|
176
178
|
DomainConfig: DomainConfig | undefined;
|
|
177
|
-
DryRunResults?: DryRunResults;
|
|
178
|
-
DryRunProgressStatus?: DryRunProgressStatus;
|
|
179
|
+
DryRunResults?: DryRunResults | undefined;
|
|
180
|
+
DryRunProgressStatus?: DryRunProgressStatus | undefined;
|
|
179
181
|
}
|
|
180
182
|
export interface UpdatePackageRequest {
|
|
181
183
|
PackageID: string | undefined;
|
|
182
184
|
PackageSource: PackageSource | undefined;
|
|
183
|
-
PackageDescription?: string;
|
|
184
|
-
CommitMessage?: string;
|
|
185
|
-
PackageConfiguration?: PackageConfiguration;
|
|
186
|
-
PackageEncryptionOptions?: PackageEncryptionOptions;
|
|
185
|
+
PackageDescription?: string | undefined;
|
|
186
|
+
CommitMessage?: string | undefined;
|
|
187
|
+
PackageConfiguration?: PackageConfiguration | undefined;
|
|
188
|
+
PackageEncryptionOptions?: PackageEncryptionOptions | undefined;
|
|
187
189
|
}
|
|
188
190
|
export interface UpdatePackageResponse {
|
|
189
|
-
PackageDetails?: PackageDetails;
|
|
191
|
+
PackageDetails?: PackageDetails | undefined;
|
|
190
192
|
}
|
|
191
193
|
export declare const PackageScopeOperationEnum: {
|
|
192
194
|
readonly ADD: "ADD";
|
|
@@ -201,14 +203,14 @@ export interface UpdatePackageScopeRequest {
|
|
|
201
203
|
PackageUserList: string[] | undefined;
|
|
202
204
|
}
|
|
203
205
|
export interface UpdatePackageScopeResponse {
|
|
204
|
-
PackageID?: string;
|
|
205
|
-
Operation?: PackageScopeOperationEnum;
|
|
206
|
-
PackageUserList?: string[];
|
|
206
|
+
PackageID?: string | undefined;
|
|
207
|
+
Operation?: PackageScopeOperationEnum | undefined;
|
|
208
|
+
PackageUserList?: string[] | undefined;
|
|
207
209
|
}
|
|
208
210
|
export declare class SlotNotAvailableException extends __BaseException {
|
|
209
211
|
readonly name: "SlotNotAvailableException";
|
|
210
212
|
readonly $fault: "client";
|
|
211
|
-
SlotSuggestions?: number[];
|
|
213
|
+
SlotSuggestions?: number[] | undefined;
|
|
212
214
|
constructor(
|
|
213
215
|
opts: __ExceptionOptionType<SlotNotAvailableException, __BaseException>
|
|
214
216
|
);
|
|
@@ -218,10 +220,10 @@ export interface UpdateScheduledActionRequest {
|
|
|
218
220
|
ActionID: string | undefined;
|
|
219
221
|
ActionType: ActionType | undefined;
|
|
220
222
|
ScheduleAt: ScheduleAt | undefined;
|
|
221
|
-
DesiredStartTime?: number;
|
|
223
|
+
DesiredStartTime?: number | undefined;
|
|
222
224
|
}
|
|
223
225
|
export interface UpdateScheduledActionResponse {
|
|
224
|
-
ScheduledAction?: ScheduledAction;
|
|
226
|
+
ScheduledAction?: ScheduledAction | undefined;
|
|
225
227
|
}
|
|
226
228
|
export interface UpdateVpcEndpointRequest {
|
|
227
229
|
VpcEndpointId: string | undefined;
|
|
@@ -233,16 +235,16 @@ export interface UpdateVpcEndpointResponse {
|
|
|
233
235
|
export interface UpgradeDomainRequest {
|
|
234
236
|
DomainName: string | undefined;
|
|
235
237
|
TargetVersion: string | undefined;
|
|
236
|
-
PerformCheckOnly?: boolean;
|
|
237
|
-
AdvancedOptions?: Record<string, string
|
|
238
|
+
PerformCheckOnly?: boolean | undefined;
|
|
239
|
+
AdvancedOptions?: Record<string, string> | undefined;
|
|
238
240
|
}
|
|
239
241
|
export interface UpgradeDomainResponse {
|
|
240
|
-
UpgradeId?: string;
|
|
241
|
-
DomainName?: string;
|
|
242
|
-
TargetVersion?: string;
|
|
243
|
-
PerformCheckOnly?: boolean;
|
|
244
|
-
AdvancedOptions?: Record<string, string
|
|
245
|
-
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;
|
|
246
248
|
}
|
|
247
249
|
export declare const UpdateDomainConfigRequestFilterSensitiveLog: (
|
|
248
250
|
obj: UpdateDomainConfigRequest
|
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",
|