@aws-sdk/client-opensearchserverless 3.428.0 → 3.429.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.
|
@@ -37,7 +37,7 @@ export interface CreateAccessPolicyRequest {
|
|
|
37
37
|
* @public
|
|
38
38
|
* <p>The type of policy.</p>
|
|
39
39
|
*/
|
|
40
|
-
type: AccessPolicyType |
|
|
40
|
+
type: AccessPolicyType | undefined;
|
|
41
41
|
/**
|
|
42
42
|
* @public
|
|
43
43
|
* <p>The name of the policy.</p>
|
|
@@ -69,7 +69,7 @@ export interface AccessPolicyDetail {
|
|
|
69
69
|
* @public
|
|
70
70
|
* <p>The type of access policy.</p>
|
|
71
71
|
*/
|
|
72
|
-
type?: AccessPolicyType
|
|
72
|
+
type?: AccessPolicyType;
|
|
73
73
|
/**
|
|
74
74
|
* @public
|
|
75
75
|
* <p>The name of the policy.</p>
|
|
@@ -176,7 +176,7 @@ export interface DeleteAccessPolicyRequest {
|
|
|
176
176
|
* @public
|
|
177
177
|
* <p>The type of policy.</p>
|
|
178
178
|
*/
|
|
179
|
-
type: AccessPolicyType |
|
|
179
|
+
type: AccessPolicyType | undefined;
|
|
180
180
|
/**
|
|
181
181
|
* @public
|
|
182
182
|
* <p>The name of the policy to delete.</p>
|
|
@@ -213,7 +213,7 @@ export interface GetAccessPolicyRequest {
|
|
|
213
213
|
* @public
|
|
214
214
|
* <p>Tye type of policy. Currently the only supported value is <code>data</code>.</p>
|
|
215
215
|
*/
|
|
216
|
-
type: AccessPolicyType |
|
|
216
|
+
type: AccessPolicyType | undefined;
|
|
217
217
|
/**
|
|
218
218
|
* @public
|
|
219
219
|
* <p>The name of the access policy.</p>
|
|
@@ -238,7 +238,7 @@ export interface ListAccessPoliciesRequest {
|
|
|
238
238
|
* @public
|
|
239
239
|
* <p>The type of access policy.</p>
|
|
240
240
|
*/
|
|
241
|
-
type: AccessPolicyType |
|
|
241
|
+
type: AccessPolicyType | undefined;
|
|
242
242
|
/**
|
|
243
243
|
* @public
|
|
244
244
|
* <p>Resource filters (can be collections or indexes) that policies can apply to.</p>
|
|
@@ -268,7 +268,7 @@ export interface AccessPolicySummary {
|
|
|
268
268
|
* @public
|
|
269
269
|
* <p>The type of access policy. Currently the only available type is <code>data</code>.</p>
|
|
270
270
|
*/
|
|
271
|
-
type?: AccessPolicyType
|
|
271
|
+
type?: AccessPolicyType;
|
|
272
272
|
/**
|
|
273
273
|
* @public
|
|
274
274
|
* <p>The name of the access policy.</p>
|
|
@@ -320,7 +320,7 @@ export interface UpdateAccessPolicyRequest {
|
|
|
320
320
|
* @public
|
|
321
321
|
* <p>The type of policy.</p>
|
|
322
322
|
*/
|
|
323
|
-
type: AccessPolicyType |
|
|
323
|
+
type: AccessPolicyType | undefined;
|
|
324
324
|
/**
|
|
325
325
|
* @public
|
|
326
326
|
* <p>The name of the policy.</p>
|
|
@@ -486,12 +486,12 @@ export interface CollectionDetail {
|
|
|
486
486
|
* @public
|
|
487
487
|
* <p>The current status of the collection.</p>
|
|
488
488
|
*/
|
|
489
|
-
status?: CollectionStatus
|
|
489
|
+
status?: CollectionStatus;
|
|
490
490
|
/**
|
|
491
491
|
* @public
|
|
492
492
|
* <p>The type of collection.</p>
|
|
493
493
|
*/
|
|
494
|
-
type?: CollectionType
|
|
494
|
+
type?: CollectionType;
|
|
495
495
|
/**
|
|
496
496
|
* @public
|
|
497
497
|
* <p>A description of the collection.</p>
|
|
@@ -645,7 +645,7 @@ export interface VpcEndpointDetail {
|
|
|
645
645
|
* @public
|
|
646
646
|
* <p>The current status of the endpoint.</p>
|
|
647
647
|
*/
|
|
648
|
-
status?: VpcEndpointStatus
|
|
648
|
+
status?: VpcEndpointStatus;
|
|
649
649
|
/**
|
|
650
650
|
* @public
|
|
651
651
|
* <p>The date the endpoint was created.</p>
|
|
@@ -717,7 +717,7 @@ export interface CreateCollectionRequest {
|
|
|
717
717
|
* @public
|
|
718
718
|
* <p>The type of collection.</p>
|
|
719
719
|
*/
|
|
720
|
-
type?: CollectionType
|
|
720
|
+
type?: CollectionType;
|
|
721
721
|
/**
|
|
722
722
|
* @public
|
|
723
723
|
* <p>Description of the collection.</p>
|
|
@@ -753,12 +753,12 @@ export interface CreateCollectionDetail {
|
|
|
753
753
|
* @public
|
|
754
754
|
* <p>The current status of the collection.</p>
|
|
755
755
|
*/
|
|
756
|
-
status?: CollectionStatus
|
|
756
|
+
status?: CollectionStatus;
|
|
757
757
|
/**
|
|
758
758
|
* @public
|
|
759
759
|
* <p>The type of collection.</p>
|
|
760
760
|
*/
|
|
761
|
-
type?: CollectionType
|
|
761
|
+
type?: CollectionType;
|
|
762
762
|
/**
|
|
763
763
|
* @public
|
|
764
764
|
* <p>A description of the collection.</p>
|
|
@@ -842,7 +842,7 @@ export interface DeleteCollectionDetail {
|
|
|
842
842
|
* @public
|
|
843
843
|
* <p>The current status of the collection.</p>
|
|
844
844
|
*/
|
|
845
|
-
status?: CollectionStatus
|
|
845
|
+
status?: CollectionStatus;
|
|
846
846
|
}
|
|
847
847
|
/**
|
|
848
848
|
* @public
|
|
@@ -869,7 +869,7 @@ export interface CollectionFilters {
|
|
|
869
869
|
* @public
|
|
870
870
|
* <p>The current status of the collection.</p>
|
|
871
871
|
*/
|
|
872
|
-
status?: CollectionStatus
|
|
872
|
+
status?: CollectionStatus;
|
|
873
873
|
}
|
|
874
874
|
/**
|
|
875
875
|
* @public
|
|
@@ -913,7 +913,7 @@ export interface CollectionSummary {
|
|
|
913
913
|
* @public
|
|
914
914
|
* <p>The current status of the collection.</p>
|
|
915
915
|
*/
|
|
916
|
-
status?: CollectionStatus
|
|
916
|
+
status?: CollectionStatus;
|
|
917
917
|
/**
|
|
918
918
|
* @public
|
|
919
919
|
* <p>The Amazon Resource Name (ARN) of the collection.</p>
|
|
@@ -976,12 +976,12 @@ export interface UpdateCollectionDetail {
|
|
|
976
976
|
* @public
|
|
977
977
|
* <p>The current status of the collection.</p>
|
|
978
978
|
*/
|
|
979
|
-
status?: CollectionStatus
|
|
979
|
+
status?: CollectionStatus;
|
|
980
980
|
/**
|
|
981
981
|
* @public
|
|
982
982
|
* <p>The collection type.</p>
|
|
983
983
|
*/
|
|
984
|
-
type?: CollectionType
|
|
984
|
+
type?: CollectionType;
|
|
985
985
|
/**
|
|
986
986
|
* @public
|
|
987
987
|
* <p>The description of the collection.</p>
|
|
@@ -1062,7 +1062,7 @@ export interface CreateSecurityConfigRequest {
|
|
|
1062
1062
|
* @public
|
|
1063
1063
|
* <p>The type of security configuration.</p>
|
|
1064
1064
|
*/
|
|
1065
|
-
type: SecurityConfigType |
|
|
1065
|
+
type: SecurityConfigType | undefined;
|
|
1066
1066
|
/**
|
|
1067
1067
|
* @public
|
|
1068
1068
|
* <p>The name of the security configuration.</p>
|
|
@@ -1099,7 +1099,7 @@ export interface SecurityConfigDetail {
|
|
|
1099
1099
|
* @public
|
|
1100
1100
|
* <p>The type of security configuration.</p>
|
|
1101
1101
|
*/
|
|
1102
|
-
type?: SecurityConfigType
|
|
1102
|
+
type?: SecurityConfigType;
|
|
1103
1103
|
/**
|
|
1104
1104
|
* @public
|
|
1105
1105
|
* <p>The version of the security configuration.</p>
|
|
@@ -1162,7 +1162,7 @@ export interface CreateSecurityPolicyRequest {
|
|
|
1162
1162
|
* @public
|
|
1163
1163
|
* <p>The type of security policy.</p>
|
|
1164
1164
|
*/
|
|
1165
|
-
type: SecurityPolicyType |
|
|
1165
|
+
type: SecurityPolicyType | undefined;
|
|
1166
1166
|
/**
|
|
1167
1167
|
* @public
|
|
1168
1168
|
* <p>The name of the policy.</p>
|
|
@@ -1194,7 +1194,7 @@ export interface SecurityPolicyDetail {
|
|
|
1194
1194
|
* @public
|
|
1195
1195
|
* <p>The type of security policy.</p>
|
|
1196
1196
|
*/
|
|
1197
|
-
type?: SecurityPolicyType
|
|
1197
|
+
type?: SecurityPolicyType;
|
|
1198
1198
|
/**
|
|
1199
1199
|
* @public
|
|
1200
1200
|
* <p>The name of the policy.</p>
|
|
@@ -1287,7 +1287,7 @@ export interface CreateVpcEndpointDetail {
|
|
|
1287
1287
|
* @public
|
|
1288
1288
|
* <p>The current status in the endpoint creation process.</p>
|
|
1289
1289
|
*/
|
|
1290
|
-
status?: VpcEndpointStatus
|
|
1290
|
+
status?: VpcEndpointStatus;
|
|
1291
1291
|
}
|
|
1292
1292
|
/**
|
|
1293
1293
|
* @public
|
|
@@ -1329,7 +1329,7 @@ export interface DeleteSecurityPolicyRequest {
|
|
|
1329
1329
|
* @public
|
|
1330
1330
|
* <p>The type of policy.</p>
|
|
1331
1331
|
*/
|
|
1332
|
-
type: SecurityPolicyType |
|
|
1332
|
+
type: SecurityPolicyType | undefined;
|
|
1333
1333
|
/**
|
|
1334
1334
|
* @public
|
|
1335
1335
|
* <p>The name of the policy to delete.</p>
|
|
@@ -1380,7 +1380,7 @@ export interface DeleteVpcEndpointDetail {
|
|
|
1380
1380
|
* @public
|
|
1381
1381
|
* <p>The current status of the endpoint deletion process.</p>
|
|
1382
1382
|
*/
|
|
1383
|
-
status?: VpcEndpointStatus
|
|
1383
|
+
status?: VpcEndpointStatus;
|
|
1384
1384
|
}
|
|
1385
1385
|
/**
|
|
1386
1386
|
* @public
|
|
@@ -1493,7 +1493,7 @@ export interface GetSecurityPolicyRequest {
|
|
|
1493
1493
|
* @public
|
|
1494
1494
|
* <p>The type of security policy.</p>
|
|
1495
1495
|
*/
|
|
1496
|
-
type: SecurityPolicyType |
|
|
1496
|
+
type: SecurityPolicyType | undefined;
|
|
1497
1497
|
/**
|
|
1498
1498
|
* @public
|
|
1499
1499
|
* <p>The name of the security policy.</p>
|
|
@@ -1518,7 +1518,7 @@ export interface ListSecurityConfigsRequest {
|
|
|
1518
1518
|
* @public
|
|
1519
1519
|
* <p>The type of security configuration.</p>
|
|
1520
1520
|
*/
|
|
1521
|
-
type: SecurityConfigType |
|
|
1521
|
+
type: SecurityConfigType | undefined;
|
|
1522
1522
|
/**
|
|
1523
1523
|
* @public
|
|
1524
1524
|
* <p>If your initial <code>ListSecurityConfigs</code> operation returns a
|
|
@@ -1548,7 +1548,7 @@ export interface SecurityConfigSummary {
|
|
|
1548
1548
|
* @public
|
|
1549
1549
|
* <p>The type of security configuration.</p>
|
|
1550
1550
|
*/
|
|
1551
|
-
type?: SecurityConfigType
|
|
1551
|
+
type?: SecurityConfigType;
|
|
1552
1552
|
/**
|
|
1553
1553
|
* @public
|
|
1554
1554
|
* <p>The version of the security configuration.</p>
|
|
@@ -1595,7 +1595,7 @@ export interface ListSecurityPoliciesRequest {
|
|
|
1595
1595
|
* @public
|
|
1596
1596
|
* <p>The type of policy.</p>
|
|
1597
1597
|
*/
|
|
1598
|
-
type: SecurityPolicyType |
|
|
1598
|
+
type: SecurityPolicyType | undefined;
|
|
1599
1599
|
/**
|
|
1600
1600
|
* @public
|
|
1601
1601
|
* <p>Resource filters (can be collection or indexes) that policies can apply to. </p>
|
|
@@ -1625,7 +1625,7 @@ export interface SecurityPolicySummary {
|
|
|
1625
1625
|
* @public
|
|
1626
1626
|
* <p>The type of security policy.</p>
|
|
1627
1627
|
*/
|
|
1628
|
-
type?: SecurityPolicyType
|
|
1628
|
+
type?: SecurityPolicyType;
|
|
1629
1629
|
/**
|
|
1630
1630
|
* @public
|
|
1631
1631
|
* <p>The name of the policy.</p>
|
|
@@ -1700,7 +1700,7 @@ export interface VpcEndpointFilters {
|
|
|
1700
1700
|
* @public
|
|
1701
1701
|
* <p>The current status of the endpoint.</p>
|
|
1702
1702
|
*/
|
|
1703
|
-
status?: VpcEndpointStatus
|
|
1703
|
+
status?: VpcEndpointStatus;
|
|
1704
1704
|
}
|
|
1705
1705
|
/**
|
|
1706
1706
|
* @public
|
|
@@ -1747,7 +1747,7 @@ export interface VpcEndpointSummary {
|
|
|
1747
1747
|
* @public
|
|
1748
1748
|
* <p>The current status of the endpoint.</p>
|
|
1749
1749
|
*/
|
|
1750
|
-
status?: VpcEndpointStatus
|
|
1750
|
+
status?: VpcEndpointStatus;
|
|
1751
1751
|
}
|
|
1752
1752
|
/**
|
|
1753
1753
|
* @public
|
|
@@ -1818,7 +1818,7 @@ export interface UpdateSecurityPolicyRequest {
|
|
|
1818
1818
|
* @public
|
|
1819
1819
|
* <p>The type of access policy.</p>
|
|
1820
1820
|
*/
|
|
1821
|
-
type: SecurityPolicyType |
|
|
1821
|
+
type: SecurityPolicyType | undefined;
|
|
1822
1822
|
/**
|
|
1823
1823
|
* @public
|
|
1824
1824
|
* <p>The name of the policy.</p>
|
|
@@ -1981,7 +1981,7 @@ export interface UpdateVpcEndpointDetail {
|
|
|
1981
1981
|
* @public
|
|
1982
1982
|
* <p>The current status of the endpoint update process.</p>
|
|
1983
1983
|
*/
|
|
1984
|
-
status?: VpcEndpointStatus
|
|
1984
|
+
status?: VpcEndpointStatus;
|
|
1985
1985
|
/**
|
|
1986
1986
|
* @public
|
|
1987
1987
|
* <p>The ID of the subnets from which you access OpenSearch Serverless.</p>
|
|
@@ -12,14 +12,14 @@ export declare class ConflictException extends __BaseException {
|
|
|
12
12
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
13
13
|
}
|
|
14
14
|
export interface CreateAccessPolicyRequest {
|
|
15
|
-
type: AccessPolicyType |
|
|
15
|
+
type: AccessPolicyType | undefined;
|
|
16
16
|
name: string | undefined;
|
|
17
17
|
description?: string;
|
|
18
18
|
policy: string | undefined;
|
|
19
19
|
clientToken?: string;
|
|
20
20
|
}
|
|
21
21
|
export interface AccessPolicyDetail {
|
|
22
|
-
type?: AccessPolicyType
|
|
22
|
+
type?: AccessPolicyType;
|
|
23
23
|
name?: string;
|
|
24
24
|
policyVersion?: string;
|
|
25
25
|
description?: string;
|
|
@@ -56,7 +56,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
56
56
|
);
|
|
57
57
|
}
|
|
58
58
|
export interface DeleteAccessPolicyRequest {
|
|
59
|
-
type: AccessPolicyType |
|
|
59
|
+
type: AccessPolicyType | undefined;
|
|
60
60
|
name: string | undefined;
|
|
61
61
|
clientToken?: string;
|
|
62
62
|
}
|
|
@@ -69,20 +69,20 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
69
69
|
);
|
|
70
70
|
}
|
|
71
71
|
export interface GetAccessPolicyRequest {
|
|
72
|
-
type: AccessPolicyType |
|
|
72
|
+
type: AccessPolicyType | undefined;
|
|
73
73
|
name: string | undefined;
|
|
74
74
|
}
|
|
75
75
|
export interface GetAccessPolicyResponse {
|
|
76
76
|
accessPolicyDetail?: AccessPolicyDetail;
|
|
77
77
|
}
|
|
78
78
|
export interface ListAccessPoliciesRequest {
|
|
79
|
-
type: AccessPolicyType |
|
|
79
|
+
type: AccessPolicyType | undefined;
|
|
80
80
|
resource?: string[];
|
|
81
81
|
nextToken?: string;
|
|
82
82
|
maxResults?: number;
|
|
83
83
|
}
|
|
84
84
|
export interface AccessPolicySummary {
|
|
85
|
-
type?: AccessPolicyType
|
|
85
|
+
type?: AccessPolicyType;
|
|
86
86
|
name?: string;
|
|
87
87
|
policyVersion?: string;
|
|
88
88
|
description?: string;
|
|
@@ -94,7 +94,7 @@ export interface ListAccessPoliciesResponse {
|
|
|
94
94
|
nextToken?: string;
|
|
95
95
|
}
|
|
96
96
|
export interface UpdateAccessPolicyRequest {
|
|
97
|
-
type: AccessPolicyType |
|
|
97
|
+
type: AccessPolicyType | undefined;
|
|
98
98
|
name: string | undefined;
|
|
99
99
|
policyVersion: string | undefined;
|
|
100
100
|
description?: string;
|
|
@@ -136,8 +136,8 @@ export type CollectionType =
|
|
|
136
136
|
export interface CollectionDetail {
|
|
137
137
|
id?: string;
|
|
138
138
|
name?: string;
|
|
139
|
-
status?: CollectionStatus
|
|
140
|
-
type?: CollectionType
|
|
139
|
+
status?: CollectionStatus;
|
|
140
|
+
type?: CollectionType;
|
|
141
141
|
description?: string;
|
|
142
142
|
arn?: string;
|
|
143
143
|
kmsKeyArn?: string;
|
|
@@ -173,7 +173,7 @@ export interface VpcEndpointDetail {
|
|
|
173
173
|
vpcId?: string;
|
|
174
174
|
subnetIds?: string[];
|
|
175
175
|
securityGroupIds?: string[];
|
|
176
|
-
status?: VpcEndpointStatus
|
|
176
|
+
status?: VpcEndpointStatus;
|
|
177
177
|
createdDate?: number;
|
|
178
178
|
}
|
|
179
179
|
export interface VpcEndpointErrorDetail {
|
|
@@ -191,7 +191,7 @@ export interface Tag {
|
|
|
191
191
|
}
|
|
192
192
|
export interface CreateCollectionRequest {
|
|
193
193
|
name: string | undefined;
|
|
194
|
-
type?: CollectionType
|
|
194
|
+
type?: CollectionType;
|
|
195
195
|
description?: string;
|
|
196
196
|
tags?: Tag[];
|
|
197
197
|
clientToken?: string;
|
|
@@ -199,8 +199,8 @@ export interface CreateCollectionRequest {
|
|
|
199
199
|
export interface CreateCollectionDetail {
|
|
200
200
|
id?: string;
|
|
201
201
|
name?: string;
|
|
202
|
-
status?: CollectionStatus
|
|
203
|
-
type?: CollectionType
|
|
202
|
+
status?: CollectionStatus;
|
|
203
|
+
type?: CollectionType;
|
|
204
204
|
description?: string;
|
|
205
205
|
arn?: string;
|
|
206
206
|
kmsKeyArn?: string;
|
|
@@ -224,14 +224,14 @@ export interface DeleteCollectionRequest {
|
|
|
224
224
|
export interface DeleteCollectionDetail {
|
|
225
225
|
id?: string;
|
|
226
226
|
name?: string;
|
|
227
|
-
status?: CollectionStatus
|
|
227
|
+
status?: CollectionStatus;
|
|
228
228
|
}
|
|
229
229
|
export interface DeleteCollectionResponse {
|
|
230
230
|
deleteCollectionDetail?: DeleteCollectionDetail;
|
|
231
231
|
}
|
|
232
232
|
export interface CollectionFilters {
|
|
233
233
|
name?: string;
|
|
234
|
-
status?: CollectionStatus
|
|
234
|
+
status?: CollectionStatus;
|
|
235
235
|
}
|
|
236
236
|
export interface ListCollectionsRequest {
|
|
237
237
|
collectionFilters?: CollectionFilters;
|
|
@@ -241,7 +241,7 @@ export interface ListCollectionsRequest {
|
|
|
241
241
|
export interface CollectionSummary {
|
|
242
242
|
id?: string;
|
|
243
243
|
name?: string;
|
|
244
|
-
status?: CollectionStatus
|
|
244
|
+
status?: CollectionStatus;
|
|
245
245
|
arn?: string;
|
|
246
246
|
}
|
|
247
247
|
export interface ListCollectionsResponse {
|
|
@@ -256,8 +256,8 @@ export interface UpdateCollectionRequest {
|
|
|
256
256
|
export interface UpdateCollectionDetail {
|
|
257
257
|
id?: string;
|
|
258
258
|
name?: string;
|
|
259
|
-
status?: CollectionStatus
|
|
260
|
-
type?: CollectionType
|
|
259
|
+
status?: CollectionStatus;
|
|
260
|
+
type?: CollectionType;
|
|
261
261
|
description?: string;
|
|
262
262
|
arn?: string;
|
|
263
263
|
createdDate?: number;
|
|
@@ -278,7 +278,7 @@ export declare const SecurityConfigType: {
|
|
|
278
278
|
export type SecurityConfigType =
|
|
279
279
|
(typeof SecurityConfigType)[keyof typeof SecurityConfigType];
|
|
280
280
|
export interface CreateSecurityConfigRequest {
|
|
281
|
-
type: SecurityConfigType |
|
|
281
|
+
type: SecurityConfigType | undefined;
|
|
282
282
|
name: string | undefined;
|
|
283
283
|
description?: string;
|
|
284
284
|
samlOptions?: SamlConfigOptions;
|
|
@@ -286,7 +286,7 @@ export interface CreateSecurityConfigRequest {
|
|
|
286
286
|
}
|
|
287
287
|
export interface SecurityConfigDetail {
|
|
288
288
|
id?: string;
|
|
289
|
-
type?: SecurityConfigType
|
|
289
|
+
type?: SecurityConfigType;
|
|
290
290
|
configVersion?: string;
|
|
291
291
|
description?: string;
|
|
292
292
|
samlOptions?: SamlConfigOptions;
|
|
@@ -303,14 +303,14 @@ export declare const SecurityPolicyType: {
|
|
|
303
303
|
export type SecurityPolicyType =
|
|
304
304
|
(typeof SecurityPolicyType)[keyof typeof SecurityPolicyType];
|
|
305
305
|
export interface CreateSecurityPolicyRequest {
|
|
306
|
-
type: SecurityPolicyType |
|
|
306
|
+
type: SecurityPolicyType | undefined;
|
|
307
307
|
name: string | undefined;
|
|
308
308
|
description?: string;
|
|
309
309
|
policy: string | undefined;
|
|
310
310
|
clientToken?: string;
|
|
311
311
|
}
|
|
312
312
|
export interface SecurityPolicyDetail {
|
|
313
|
-
type?: SecurityPolicyType
|
|
313
|
+
type?: SecurityPolicyType;
|
|
314
314
|
name?: string;
|
|
315
315
|
policyVersion?: string;
|
|
316
316
|
description?: string;
|
|
@@ -331,7 +331,7 @@ export interface CreateVpcEndpointRequest {
|
|
|
331
331
|
export interface CreateVpcEndpointDetail {
|
|
332
332
|
id?: string;
|
|
333
333
|
name?: string;
|
|
334
|
-
status?: VpcEndpointStatus
|
|
334
|
+
status?: VpcEndpointStatus;
|
|
335
335
|
}
|
|
336
336
|
export interface CreateVpcEndpointResponse {
|
|
337
337
|
createVpcEndpointDetail?: CreateVpcEndpointDetail;
|
|
@@ -342,7 +342,7 @@ export interface DeleteSecurityConfigRequest {
|
|
|
342
342
|
}
|
|
343
343
|
export interface DeleteSecurityConfigResponse {}
|
|
344
344
|
export interface DeleteSecurityPolicyRequest {
|
|
345
|
-
type: SecurityPolicyType |
|
|
345
|
+
type: SecurityPolicyType | undefined;
|
|
346
346
|
name: string | undefined;
|
|
347
347
|
clientToken?: string;
|
|
348
348
|
}
|
|
@@ -354,7 +354,7 @@ export interface DeleteVpcEndpointRequest {
|
|
|
354
354
|
export interface DeleteVpcEndpointDetail {
|
|
355
355
|
id?: string;
|
|
356
356
|
name?: string;
|
|
357
|
-
status?: VpcEndpointStatus
|
|
357
|
+
status?: VpcEndpointStatus;
|
|
358
358
|
}
|
|
359
359
|
export interface DeleteVpcEndpointResponse {
|
|
360
360
|
deleteVpcEndpointDetail?: DeleteVpcEndpointDetail;
|
|
@@ -384,20 +384,20 @@ export interface GetSecurityConfigResponse {
|
|
|
384
384
|
securityConfigDetail?: SecurityConfigDetail;
|
|
385
385
|
}
|
|
386
386
|
export interface GetSecurityPolicyRequest {
|
|
387
|
-
type: SecurityPolicyType |
|
|
387
|
+
type: SecurityPolicyType | undefined;
|
|
388
388
|
name: string | undefined;
|
|
389
389
|
}
|
|
390
390
|
export interface GetSecurityPolicyResponse {
|
|
391
391
|
securityPolicyDetail?: SecurityPolicyDetail;
|
|
392
392
|
}
|
|
393
393
|
export interface ListSecurityConfigsRequest {
|
|
394
|
-
type: SecurityConfigType |
|
|
394
|
+
type: SecurityConfigType | undefined;
|
|
395
395
|
nextToken?: string;
|
|
396
396
|
maxResults?: number;
|
|
397
397
|
}
|
|
398
398
|
export interface SecurityConfigSummary {
|
|
399
399
|
id?: string;
|
|
400
|
-
type?: SecurityConfigType
|
|
400
|
+
type?: SecurityConfigType;
|
|
401
401
|
configVersion?: string;
|
|
402
402
|
description?: string;
|
|
403
403
|
createdDate?: number;
|
|
@@ -408,13 +408,13 @@ export interface ListSecurityConfigsResponse {
|
|
|
408
408
|
nextToken?: string;
|
|
409
409
|
}
|
|
410
410
|
export interface ListSecurityPoliciesRequest {
|
|
411
|
-
type: SecurityPolicyType |
|
|
411
|
+
type: SecurityPolicyType | undefined;
|
|
412
412
|
resource?: string[];
|
|
413
413
|
nextToken?: string;
|
|
414
414
|
maxResults?: number;
|
|
415
415
|
}
|
|
416
416
|
export interface SecurityPolicySummary {
|
|
417
|
-
type?: SecurityPolicyType
|
|
417
|
+
type?: SecurityPolicyType;
|
|
418
418
|
name?: string;
|
|
419
419
|
policyVersion?: string;
|
|
420
420
|
description?: string;
|
|
@@ -432,7 +432,7 @@ export interface ListTagsForResourceResponse {
|
|
|
432
432
|
tags?: Tag[];
|
|
433
433
|
}
|
|
434
434
|
export interface VpcEndpointFilters {
|
|
435
|
-
status?: VpcEndpointStatus
|
|
435
|
+
status?: VpcEndpointStatus;
|
|
436
436
|
}
|
|
437
437
|
export interface ListVpcEndpointsRequest {
|
|
438
438
|
vpcEndpointFilters?: VpcEndpointFilters;
|
|
@@ -442,7 +442,7 @@ export interface ListVpcEndpointsRequest {
|
|
|
442
442
|
export interface VpcEndpointSummary {
|
|
443
443
|
id?: string;
|
|
444
444
|
name?: string;
|
|
445
|
-
status?: VpcEndpointStatus
|
|
445
|
+
status?: VpcEndpointStatus;
|
|
446
446
|
}
|
|
447
447
|
export interface ListVpcEndpointsResponse {
|
|
448
448
|
vpcEndpointSummaries?: VpcEndpointSummary[];
|
|
@@ -459,7 +459,7 @@ export interface UpdateSecurityConfigResponse {
|
|
|
459
459
|
securityConfigDetail?: SecurityConfigDetail;
|
|
460
460
|
}
|
|
461
461
|
export interface UpdateSecurityPolicyRequest {
|
|
462
|
-
type: SecurityPolicyType |
|
|
462
|
+
type: SecurityPolicyType | undefined;
|
|
463
463
|
name: string | undefined;
|
|
464
464
|
policyVersion: string | undefined;
|
|
465
465
|
description?: string;
|
|
@@ -496,7 +496,7 @@ export interface UpdateVpcEndpointRequest {
|
|
|
496
496
|
export interface UpdateVpcEndpointDetail {
|
|
497
497
|
id?: string;
|
|
498
498
|
name?: string;
|
|
499
|
-
status?: VpcEndpointStatus
|
|
499
|
+
status?: VpcEndpointStatus;
|
|
500
500
|
subnetIds?: string[];
|
|
501
501
|
securityGroupIds?: string[];
|
|
502
502
|
lastModifiedDate?: number;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-opensearchserverless",
|
|
3
3
|
"description": "AWS SDK for JavaScript Opensearchserverless Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.429.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
42
|
"@smithy/middleware-retry": "^2.0.16",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|