@aws-sdk/client-opensearchserverless 3.378.0 → 3.382.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.
|
@@ -34,23 +34,28 @@ export declare class ConflictException extends __BaseException {
|
|
|
34
34
|
*/
|
|
35
35
|
export interface CreateAccessPolicyRequest {
|
|
36
36
|
/**
|
|
37
|
+
* @public
|
|
37
38
|
* <p>The type of policy.</p>
|
|
38
39
|
*/
|
|
39
40
|
type: AccessPolicyType | string | undefined;
|
|
40
41
|
/**
|
|
42
|
+
* @public
|
|
41
43
|
* <p>The name of the policy.</p>
|
|
42
44
|
*/
|
|
43
45
|
name: string | undefined;
|
|
44
46
|
/**
|
|
47
|
+
* @public
|
|
45
48
|
* <p>A description of the policy. Typically used to store information about the permissions
|
|
46
49
|
* defined in the policy.</p>
|
|
47
50
|
*/
|
|
48
51
|
description?: string;
|
|
49
52
|
/**
|
|
53
|
+
* @public
|
|
50
54
|
* <p>The JSON policy document to use as the content for the policy.</p>
|
|
51
55
|
*/
|
|
52
56
|
policy: string | undefined;
|
|
53
57
|
/**
|
|
58
|
+
* @public
|
|
54
59
|
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
55
60
|
*/
|
|
56
61
|
clientToken?: string;
|
|
@@ -61,30 +66,37 @@ export interface CreateAccessPolicyRequest {
|
|
|
61
66
|
*/
|
|
62
67
|
export interface AccessPolicyDetail {
|
|
63
68
|
/**
|
|
69
|
+
* @public
|
|
64
70
|
* <p>The type of access policy.</p>
|
|
65
71
|
*/
|
|
66
72
|
type?: AccessPolicyType | string;
|
|
67
73
|
/**
|
|
74
|
+
* @public
|
|
68
75
|
* <p>The name of the policy.</p>
|
|
69
76
|
*/
|
|
70
77
|
name?: string;
|
|
71
78
|
/**
|
|
79
|
+
* @public
|
|
72
80
|
* <p>The version of the policy.</p>
|
|
73
81
|
*/
|
|
74
82
|
policyVersion?: string;
|
|
75
83
|
/**
|
|
84
|
+
* @public
|
|
76
85
|
* <p>The description of the policy.</p>
|
|
77
86
|
*/
|
|
78
87
|
description?: string;
|
|
79
88
|
/**
|
|
89
|
+
* @public
|
|
80
90
|
* <p>The JSON policy document without any whitespaces.</p>
|
|
81
91
|
*/
|
|
82
92
|
policy?: __DocumentType;
|
|
83
93
|
/**
|
|
94
|
+
* @public
|
|
84
95
|
* <p>The date the policy was created.</p>
|
|
85
96
|
*/
|
|
86
97
|
createdDate?: number;
|
|
87
98
|
/**
|
|
99
|
+
* @public
|
|
88
100
|
* <p>The timestamp of when the policy was last modified.</p>
|
|
89
101
|
*/
|
|
90
102
|
lastModifiedDate?: number;
|
|
@@ -94,6 +106,7 @@ export interface AccessPolicyDetail {
|
|
|
94
106
|
*/
|
|
95
107
|
export interface CreateAccessPolicyResponse {
|
|
96
108
|
/**
|
|
109
|
+
* @public
|
|
97
110
|
* <p>Details about the created access policy.</p>
|
|
98
111
|
*/
|
|
99
112
|
accessPolicyDetail?: AccessPolicyDetail;
|
|
@@ -118,18 +131,22 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
118
131
|
readonly name: "ServiceQuotaExceededException";
|
|
119
132
|
readonly $fault: "client";
|
|
120
133
|
/**
|
|
134
|
+
* @public
|
|
121
135
|
* Identifier of the resource affected.
|
|
122
136
|
*/
|
|
123
137
|
resourceId?: string;
|
|
124
138
|
/**
|
|
139
|
+
* @public
|
|
125
140
|
* Type of the resource affected.
|
|
126
141
|
*/
|
|
127
142
|
resourceType?: string;
|
|
128
143
|
/**
|
|
144
|
+
* @public
|
|
129
145
|
* Service Quotas requirement to identify originating service.
|
|
130
146
|
*/
|
|
131
147
|
serviceCode: string | undefined;
|
|
132
148
|
/**
|
|
149
|
+
* @public
|
|
133
150
|
* Service Quotas requirement to identify originating quota.
|
|
134
151
|
*/
|
|
135
152
|
quotaCode?: string;
|
|
@@ -156,14 +173,17 @@ export declare class ValidationException extends __BaseException {
|
|
|
156
173
|
*/
|
|
157
174
|
export interface DeleteAccessPolicyRequest {
|
|
158
175
|
/**
|
|
176
|
+
* @public
|
|
159
177
|
* <p>The type of policy.</p>
|
|
160
178
|
*/
|
|
161
179
|
type: AccessPolicyType | string | undefined;
|
|
162
180
|
/**
|
|
181
|
+
* @public
|
|
163
182
|
* <p>The name of the policy to delete.</p>
|
|
164
183
|
*/
|
|
165
184
|
name: string | undefined;
|
|
166
185
|
/**
|
|
186
|
+
* @public
|
|
167
187
|
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
168
188
|
*/
|
|
169
189
|
clientToken?: string;
|
|
@@ -190,10 +210,12 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
190
210
|
*/
|
|
191
211
|
export interface GetAccessPolicyRequest {
|
|
192
212
|
/**
|
|
213
|
+
* @public
|
|
193
214
|
* <p>Tye type of policy. Currently the only supported value is <code>data</code>.</p>
|
|
194
215
|
*/
|
|
195
216
|
type: AccessPolicyType | string | undefined;
|
|
196
217
|
/**
|
|
218
|
+
* @public
|
|
197
219
|
* <p>The name of the access policy.</p>
|
|
198
220
|
*/
|
|
199
221
|
name: string | undefined;
|
|
@@ -203,6 +225,7 @@ export interface GetAccessPolicyRequest {
|
|
|
203
225
|
*/
|
|
204
226
|
export interface GetAccessPolicyResponse {
|
|
205
227
|
/**
|
|
228
|
+
* @public
|
|
206
229
|
* <p>Details about the requested access policy.</p>
|
|
207
230
|
*/
|
|
208
231
|
accessPolicyDetail?: AccessPolicyDetail;
|
|
@@ -212,14 +235,17 @@ export interface GetAccessPolicyResponse {
|
|
|
212
235
|
*/
|
|
213
236
|
export interface ListAccessPoliciesRequest {
|
|
214
237
|
/**
|
|
238
|
+
* @public
|
|
215
239
|
* <p>The type of access policy.</p>
|
|
216
240
|
*/
|
|
217
241
|
type: AccessPolicyType | string | undefined;
|
|
218
242
|
/**
|
|
243
|
+
* @public
|
|
219
244
|
* <p>Resource filters (can be collections or indexes) that policies can apply to.</p>
|
|
220
245
|
*/
|
|
221
246
|
resource?: string[];
|
|
222
247
|
/**
|
|
248
|
+
* @public
|
|
223
249
|
* <p>If your initial <code>ListAccessPolicies</code> operation returns a
|
|
224
250
|
* <code>nextToken</code>, you can include the returned <code>nextToken</code> in
|
|
225
251
|
* subsequent <code>ListAccessPolicies</code> operations, which returns results in the next
|
|
@@ -227,6 +253,7 @@ export interface ListAccessPoliciesRequest {
|
|
|
227
253
|
*/
|
|
228
254
|
nextToken?: string;
|
|
229
255
|
/**
|
|
256
|
+
* @public
|
|
230
257
|
* <p>An optional parameter that specifies the maximum number of results to return. You can
|
|
231
258
|
* use <code>nextToken</code> to get the next page of results. The default is 20.</p>
|
|
232
259
|
*/
|
|
@@ -238,26 +265,32 @@ export interface ListAccessPoliciesRequest {
|
|
|
238
265
|
*/
|
|
239
266
|
export interface AccessPolicySummary {
|
|
240
267
|
/**
|
|
268
|
+
* @public
|
|
241
269
|
* <p>The type of access policy. Currently the only available type is <code>data</code>.</p>
|
|
242
270
|
*/
|
|
243
271
|
type?: AccessPolicyType | string;
|
|
244
272
|
/**
|
|
273
|
+
* @public
|
|
245
274
|
* <p>The name of the access policy.</p>
|
|
246
275
|
*/
|
|
247
276
|
name?: string;
|
|
248
277
|
/**
|
|
278
|
+
* @public
|
|
249
279
|
* <p>The version of the policy.</p>
|
|
250
280
|
*/
|
|
251
281
|
policyVersion?: string;
|
|
252
282
|
/**
|
|
283
|
+
* @public
|
|
253
284
|
* <p>The description of the access policy.</p>
|
|
254
285
|
*/
|
|
255
286
|
description?: string;
|
|
256
287
|
/**
|
|
288
|
+
* @public
|
|
257
289
|
* <p>The Epoch time when the access policy was created.</p>
|
|
258
290
|
*/
|
|
259
291
|
createdDate?: number;
|
|
260
292
|
/**
|
|
293
|
+
* @public
|
|
261
294
|
* <p>The date and time when the collection was last modified.</p>
|
|
262
295
|
*/
|
|
263
296
|
lastModifiedDate?: number;
|
|
@@ -267,10 +300,12 @@ export interface AccessPolicySummary {
|
|
|
267
300
|
*/
|
|
268
301
|
export interface ListAccessPoliciesResponse {
|
|
269
302
|
/**
|
|
303
|
+
* @public
|
|
270
304
|
* <p>Details about the requested access policies.</p>
|
|
271
305
|
*/
|
|
272
306
|
accessPolicySummaries?: AccessPolicySummary[];
|
|
273
307
|
/**
|
|
308
|
+
* @public
|
|
274
309
|
* <p>When <code>nextToken</code> is returned, there are more results available. The value
|
|
275
310
|
* of <code>nextToken</code> is a unique pagination token for each page. Make the call
|
|
276
311
|
* again using the returned token to retrieve the next page.</p>
|
|
@@ -282,27 +317,33 @@ export interface ListAccessPoliciesResponse {
|
|
|
282
317
|
*/
|
|
283
318
|
export interface UpdateAccessPolicyRequest {
|
|
284
319
|
/**
|
|
320
|
+
* @public
|
|
285
321
|
* <p>The type of policy.</p>
|
|
286
322
|
*/
|
|
287
323
|
type: AccessPolicyType | string | undefined;
|
|
288
324
|
/**
|
|
325
|
+
* @public
|
|
289
326
|
* <p>The name of the policy.</p>
|
|
290
327
|
*/
|
|
291
328
|
name: string | undefined;
|
|
292
329
|
/**
|
|
330
|
+
* @public
|
|
293
331
|
* <p>The version of the policy being updated.</p>
|
|
294
332
|
*/
|
|
295
333
|
policyVersion: string | undefined;
|
|
296
334
|
/**
|
|
335
|
+
* @public
|
|
297
336
|
* <p>A description of the policy. Typically used to store information about the permissions
|
|
298
337
|
* defined in the policy.</p>
|
|
299
338
|
*/
|
|
300
339
|
description?: string;
|
|
301
340
|
/**
|
|
341
|
+
* @public
|
|
302
342
|
* <p>The JSON policy document to use as the content for the policy.</p>
|
|
303
343
|
*/
|
|
304
344
|
policy?: string;
|
|
305
345
|
/**
|
|
346
|
+
* @public
|
|
306
347
|
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
307
348
|
*/
|
|
308
349
|
clientToken?: string;
|
|
@@ -312,6 +353,7 @@ export interface UpdateAccessPolicyRequest {
|
|
|
312
353
|
*/
|
|
313
354
|
export interface UpdateAccessPolicyResponse {
|
|
314
355
|
/**
|
|
356
|
+
* @public
|
|
315
357
|
* <p>Details about the updated access policy.</p>
|
|
316
358
|
*/
|
|
317
359
|
accessPolicyDetail?: AccessPolicyDetail;
|
|
@@ -322,6 +364,7 @@ export interface UpdateAccessPolicyResponse {
|
|
|
322
364
|
*/
|
|
323
365
|
export interface AccessPolicyStats {
|
|
324
366
|
/**
|
|
367
|
+
* @public
|
|
325
368
|
* <p>The number of data access policies in the current account.</p>
|
|
326
369
|
*/
|
|
327
370
|
DataPolicyCount?: number;
|
|
@@ -335,10 +378,12 @@ export interface AccessPolicyStats {
|
|
|
335
378
|
*/
|
|
336
379
|
export interface CapacityLimits {
|
|
337
380
|
/**
|
|
381
|
+
* @public
|
|
338
382
|
* <p>The maximum indexing capacity for collections.</p>
|
|
339
383
|
*/
|
|
340
384
|
maxIndexingCapacityInOCU?: number;
|
|
341
385
|
/**
|
|
386
|
+
* @public
|
|
342
387
|
* <p>The maximum search capacity for collections.</p>
|
|
343
388
|
*/
|
|
344
389
|
maxSearchCapacityInOCU?: number;
|
|
@@ -349,6 +394,7 @@ export interface CapacityLimits {
|
|
|
349
394
|
*/
|
|
350
395
|
export interface AccountSettingsDetail {
|
|
351
396
|
/**
|
|
397
|
+
* @public
|
|
352
398
|
* <p>The maximum capacity limits for all OpenSearch Serverless collections, in OpenSearch Compute Units
|
|
353
399
|
* (OCUs). These limits are used to scale your collections based on the current workload.
|
|
354
400
|
* For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-scaling.html">Managing
|
|
@@ -361,11 +407,13 @@ export interface AccountSettingsDetail {
|
|
|
361
407
|
*/
|
|
362
408
|
export interface BatchGetCollectionRequest {
|
|
363
409
|
/**
|
|
410
|
+
* @public
|
|
364
411
|
* <p>A list of collection IDs. You can't provide names and IDs in the same request. The ID
|
|
365
412
|
* is part of the collection endpoint. You can also retrieve it using the <a href="https://docs.aws.amazon.com/opensearch-service/latest/ServerlessAPIReference/API_ListCollections.html">ListCollections</a> API.</p>
|
|
366
413
|
*/
|
|
367
414
|
ids?: string[];
|
|
368
415
|
/**
|
|
416
|
+
* @public
|
|
369
417
|
* <p>A list of collection names. You can't provide names and IDs in the same request.</p>
|
|
370
418
|
*/
|
|
371
419
|
names?: string[];
|
|
@@ -425,47 +473,58 @@ export type CollectionType = (typeof CollectionType)[keyof typeof CollectionType
|
|
|
425
473
|
*/
|
|
426
474
|
export interface CollectionDetail {
|
|
427
475
|
/**
|
|
476
|
+
* @public
|
|
428
477
|
* <p>A unique identifier for the collection.</p>
|
|
429
478
|
*/
|
|
430
479
|
id?: string;
|
|
431
480
|
/**
|
|
481
|
+
* @public
|
|
432
482
|
* <p>The name of the collection.</p>
|
|
433
483
|
*/
|
|
434
484
|
name?: string;
|
|
435
485
|
/**
|
|
486
|
+
* @public
|
|
436
487
|
* <p>The current status of the collection.</p>
|
|
437
488
|
*/
|
|
438
489
|
status?: CollectionStatus | string;
|
|
439
490
|
/**
|
|
491
|
+
* @public
|
|
440
492
|
* <p>The type of collection.</p>
|
|
441
493
|
*/
|
|
442
494
|
type?: CollectionType | string;
|
|
443
495
|
/**
|
|
496
|
+
* @public
|
|
444
497
|
* <p>A description of the collection.</p>
|
|
445
498
|
*/
|
|
446
499
|
description?: string;
|
|
447
500
|
/**
|
|
501
|
+
* @public
|
|
448
502
|
* <p>The Amazon Resource Name (ARN) of the collection.</p>
|
|
449
503
|
*/
|
|
450
504
|
arn?: string;
|
|
451
505
|
/**
|
|
506
|
+
* @public
|
|
452
507
|
* <p>The ARN of the Amazon Web Services KMS key used to encrypt the collection.</p>
|
|
453
508
|
*/
|
|
454
509
|
kmsKeyArn?: string;
|
|
455
510
|
/**
|
|
511
|
+
* @public
|
|
456
512
|
* <p>The Epoch time when the collection was created.</p>
|
|
457
513
|
*/
|
|
458
514
|
createdDate?: number;
|
|
459
515
|
/**
|
|
516
|
+
* @public
|
|
460
517
|
* <p>The date and time when the collection was last modified.</p>
|
|
461
518
|
*/
|
|
462
519
|
lastModifiedDate?: number;
|
|
463
520
|
/**
|
|
521
|
+
* @public
|
|
464
522
|
* <p>Collection-specific endpoint used to submit index, search, and data upload requests to
|
|
465
523
|
* an OpenSearch Serverless collection.</p>
|
|
466
524
|
*/
|
|
467
525
|
collectionEndpoint?: string;
|
|
468
526
|
/**
|
|
527
|
+
* @public
|
|
469
528
|
* <p>Collection-specific endpoint used to access OpenSearch Dashboards.</p>
|
|
470
529
|
*/
|
|
471
530
|
dashboardEndpoint?: string;
|
|
@@ -476,22 +535,26 @@ export interface CollectionDetail {
|
|
|
476
535
|
*/
|
|
477
536
|
export interface CollectionErrorDetail {
|
|
478
537
|
/**
|
|
538
|
+
* @public
|
|
479
539
|
* <p>If the request contains collection IDs, the response includes the IDs provided in the
|
|
480
540
|
* request.</p>
|
|
481
541
|
*/
|
|
482
542
|
id?: string;
|
|
483
543
|
/**
|
|
544
|
+
* @public
|
|
484
545
|
* <p>If the request contains collection names, the response includes the names provided in
|
|
485
546
|
* the request.</p>
|
|
486
547
|
*/
|
|
487
548
|
name?: string;
|
|
488
549
|
/**
|
|
550
|
+
* @public
|
|
489
551
|
* <p>A description of the error. For example, <code>The specified Collection is not
|
|
490
552
|
* found.</code>
|
|
491
553
|
* </p>
|
|
492
554
|
*/
|
|
493
555
|
errorMessage?: string;
|
|
494
556
|
/**
|
|
557
|
+
* @public
|
|
495
558
|
* <p>The error code for the request. For example, <code>NOT_FOUND</code>.</p>
|
|
496
559
|
*/
|
|
497
560
|
errorCode?: string;
|
|
@@ -501,10 +564,12 @@ export interface CollectionErrorDetail {
|
|
|
501
564
|
*/
|
|
502
565
|
export interface BatchGetCollectionResponse {
|
|
503
566
|
/**
|
|
567
|
+
* @public
|
|
504
568
|
* <p>Details about each collection.</p>
|
|
505
569
|
*/
|
|
506
570
|
collectionDetails?: CollectionDetail[];
|
|
507
571
|
/**
|
|
572
|
+
* @public
|
|
508
573
|
* <p>Error information for the request.</p>
|
|
509
574
|
*/
|
|
510
575
|
collectionErrorDetails?: CollectionErrorDetail[];
|
|
@@ -514,6 +579,7 @@ export interface BatchGetCollectionResponse {
|
|
|
514
579
|
*/
|
|
515
580
|
export interface BatchGetVpcEndpointRequest {
|
|
516
581
|
/**
|
|
582
|
+
* @public
|
|
517
583
|
* <p>A list of VPC endpoint identifiers.</p>
|
|
518
584
|
*/
|
|
519
585
|
ids: string[] | undefined;
|
|
@@ -550,31 +616,38 @@ export type VpcEndpointStatus = (typeof VpcEndpointStatus)[keyof typeof VpcEndpo
|
|
|
550
616
|
*/
|
|
551
617
|
export interface VpcEndpointDetail {
|
|
552
618
|
/**
|
|
619
|
+
* @public
|
|
553
620
|
* <p>The unique identifier of the endpoint.</p>
|
|
554
621
|
*/
|
|
555
622
|
id?: string;
|
|
556
623
|
/**
|
|
624
|
+
* @public
|
|
557
625
|
* <p>The name of the endpoint.</p>
|
|
558
626
|
*/
|
|
559
627
|
name?: string;
|
|
560
628
|
/**
|
|
629
|
+
* @public
|
|
561
630
|
* <p>The ID of the VPC from which you access OpenSearch Serverless.</p>
|
|
562
631
|
*/
|
|
563
632
|
vpcId?: string;
|
|
564
633
|
/**
|
|
634
|
+
* @public
|
|
565
635
|
* <p>The ID of the subnets from which you access OpenSearch Serverless.</p>
|
|
566
636
|
*/
|
|
567
637
|
subnetIds?: string[];
|
|
568
638
|
/**
|
|
639
|
+
* @public
|
|
569
640
|
* <p>The unique identifiers of the security groups that define the ports, protocols, and
|
|
570
641
|
* sources for inbound traffic that you are authorizing into your endpoint.</p>
|
|
571
642
|
*/
|
|
572
643
|
securityGroupIds?: string[];
|
|
573
644
|
/**
|
|
645
|
+
* @public
|
|
574
646
|
* <p>The current status of the endpoint.</p>
|
|
575
647
|
*/
|
|
576
648
|
status?: VpcEndpointStatus | string;
|
|
577
649
|
/**
|
|
650
|
+
* @public
|
|
578
651
|
* <p>The date the endpoint was created.</p>
|
|
579
652
|
*/
|
|
580
653
|
createdDate?: number;
|
|
@@ -585,14 +658,17 @@ export interface VpcEndpointDetail {
|
|
|
585
658
|
*/
|
|
586
659
|
export interface VpcEndpointErrorDetail {
|
|
587
660
|
/**
|
|
661
|
+
* @public
|
|
588
662
|
* <p>The unique identifier of the VPC endpoint.</p>
|
|
589
663
|
*/
|
|
590
664
|
id?: string;
|
|
591
665
|
/**
|
|
666
|
+
* @public
|
|
592
667
|
* <p>An error message describing the reason for the failure.</p>
|
|
593
668
|
*/
|
|
594
669
|
errorMessage?: string;
|
|
595
670
|
/**
|
|
671
|
+
* @public
|
|
596
672
|
* <p>The error code for the failed request.</p>
|
|
597
673
|
*/
|
|
598
674
|
errorCode?: string;
|
|
@@ -602,10 +678,12 @@ export interface VpcEndpointErrorDetail {
|
|
|
602
678
|
*/
|
|
603
679
|
export interface BatchGetVpcEndpointResponse {
|
|
604
680
|
/**
|
|
681
|
+
* @public
|
|
605
682
|
* <p>Details about the specified VPC endpoint.</p>
|
|
606
683
|
*/
|
|
607
684
|
vpcEndpointDetails?: VpcEndpointDetail[];
|
|
608
685
|
/**
|
|
686
|
+
* @public
|
|
609
687
|
* <p>Error information for a failed request.</p>
|
|
610
688
|
*/
|
|
611
689
|
vpcEndpointErrorDetails?: VpcEndpointErrorDetail[];
|
|
@@ -616,10 +694,12 @@ export interface BatchGetVpcEndpointResponse {
|
|
|
616
694
|
*/
|
|
617
695
|
export interface Tag {
|
|
618
696
|
/**
|
|
697
|
+
* @public
|
|
619
698
|
* <p>The key to use in the tag.</p>
|
|
620
699
|
*/
|
|
621
700
|
key: string | undefined;
|
|
622
701
|
/**
|
|
702
|
+
* @public
|
|
623
703
|
* <p>The value of the tag.</p>
|
|
624
704
|
*/
|
|
625
705
|
value: string | undefined;
|
|
@@ -629,22 +709,27 @@ export interface Tag {
|
|
|
629
709
|
*/
|
|
630
710
|
export interface CreateCollectionRequest {
|
|
631
711
|
/**
|
|
712
|
+
* @public
|
|
632
713
|
* <p>Name of the collection.</p>
|
|
633
714
|
*/
|
|
634
715
|
name: string | undefined;
|
|
635
716
|
/**
|
|
717
|
+
* @public
|
|
636
718
|
* <p>The type of collection.</p>
|
|
637
719
|
*/
|
|
638
720
|
type?: CollectionType | string;
|
|
639
721
|
/**
|
|
722
|
+
* @public
|
|
640
723
|
* <p>Description of the collection.</p>
|
|
641
724
|
*/
|
|
642
725
|
description?: string;
|
|
643
726
|
/**
|
|
727
|
+
* @public
|
|
644
728
|
* <p>An arbitrary set of tags (key–value pairs) to associate with the OpenSearch Serverless collection.</p>
|
|
645
729
|
*/
|
|
646
730
|
tags?: Tag[];
|
|
647
731
|
/**
|
|
732
|
+
* @public
|
|
648
733
|
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
649
734
|
*/
|
|
650
735
|
clientToken?: string;
|
|
@@ -655,38 +740,47 @@ export interface CreateCollectionRequest {
|
|
|
655
740
|
*/
|
|
656
741
|
export interface CreateCollectionDetail {
|
|
657
742
|
/**
|
|
743
|
+
* @public
|
|
658
744
|
* <p>The unique identifier of the collection.</p>
|
|
659
745
|
*/
|
|
660
746
|
id?: string;
|
|
661
747
|
/**
|
|
748
|
+
* @public
|
|
662
749
|
* <p>The name of the collection.</p>
|
|
663
750
|
*/
|
|
664
751
|
name?: string;
|
|
665
752
|
/**
|
|
753
|
+
* @public
|
|
666
754
|
* <p>The current status of the collection.</p>
|
|
667
755
|
*/
|
|
668
756
|
status?: CollectionStatus | string;
|
|
669
757
|
/**
|
|
758
|
+
* @public
|
|
670
759
|
* <p>The type of collection.</p>
|
|
671
760
|
*/
|
|
672
761
|
type?: CollectionType | string;
|
|
673
762
|
/**
|
|
763
|
+
* @public
|
|
674
764
|
* <p>A description of the collection.</p>
|
|
675
765
|
*/
|
|
676
766
|
description?: string;
|
|
677
767
|
/**
|
|
768
|
+
* @public
|
|
678
769
|
* <p>The Amazon Resource Name (ARN) of the collection.</p>
|
|
679
770
|
*/
|
|
680
771
|
arn?: string;
|
|
681
772
|
/**
|
|
773
|
+
* @public
|
|
682
774
|
* <p>The Amazon Resource Name (ARN) of the KMS key with which to encrypt the collection.</p>
|
|
683
775
|
*/
|
|
684
776
|
kmsKeyArn?: string;
|
|
685
777
|
/**
|
|
778
|
+
* @public
|
|
686
779
|
* <p>The Epoch time when the collection was created.</p>
|
|
687
780
|
*/
|
|
688
781
|
createdDate?: number;
|
|
689
782
|
/**
|
|
783
|
+
* @public
|
|
690
784
|
* <p>The date and time when the collection was last modified.</p>
|
|
691
785
|
*/
|
|
692
786
|
lastModifiedDate?: number;
|
|
@@ -696,6 +790,7 @@ export interface CreateCollectionDetail {
|
|
|
696
790
|
*/
|
|
697
791
|
export interface CreateCollectionResponse {
|
|
698
792
|
/**
|
|
793
|
+
* @public
|
|
699
794
|
* <p>Details about the collection.</p>
|
|
700
795
|
*/
|
|
701
796
|
createCollectionDetail?: CreateCollectionDetail;
|
|
@@ -717,11 +812,13 @@ export declare class OcuLimitExceededException extends __BaseException {
|
|
|
717
812
|
*/
|
|
718
813
|
export interface DeleteCollectionRequest {
|
|
719
814
|
/**
|
|
815
|
+
* @public
|
|
720
816
|
* <p>The unique identifier of the collection. For example, <code>1iu5usc406kd</code>. The
|
|
721
817
|
* ID is part of the collection endpoint. You can also retrieve it using the <a href="https://docs.aws.amazon.com/opensearch-service/latest/ServerlessAPIReference/API_ListCollections.html">ListCollections</a> API.</p>
|
|
722
818
|
*/
|
|
723
819
|
id: string | undefined;
|
|
724
820
|
/**
|
|
821
|
+
* @public
|
|
725
822
|
* <p>A unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
726
823
|
*/
|
|
727
824
|
clientToken?: string;
|
|
@@ -732,14 +829,17 @@ export interface DeleteCollectionRequest {
|
|
|
732
829
|
*/
|
|
733
830
|
export interface DeleteCollectionDetail {
|
|
734
831
|
/**
|
|
832
|
+
* @public
|
|
735
833
|
* <p>The unique identifier of the collection.</p>
|
|
736
834
|
*/
|
|
737
835
|
id?: string;
|
|
738
836
|
/**
|
|
837
|
+
* @public
|
|
739
838
|
* <p>The name of the collection.</p>
|
|
740
839
|
*/
|
|
741
840
|
name?: string;
|
|
742
841
|
/**
|
|
842
|
+
* @public
|
|
743
843
|
* <p>The current status of the collection.</p>
|
|
744
844
|
*/
|
|
745
845
|
status?: CollectionStatus | string;
|
|
@@ -749,6 +849,7 @@ export interface DeleteCollectionDetail {
|
|
|
749
849
|
*/
|
|
750
850
|
export interface DeleteCollectionResponse {
|
|
751
851
|
/**
|
|
852
|
+
* @public
|
|
752
853
|
* <p>Details of the deleted collection.</p>
|
|
753
854
|
*/
|
|
754
855
|
deleteCollectionDetail?: DeleteCollectionDetail;
|
|
@@ -760,10 +861,12 @@ export interface DeleteCollectionResponse {
|
|
|
760
861
|
*/
|
|
761
862
|
export interface CollectionFilters {
|
|
762
863
|
/**
|
|
864
|
+
* @public
|
|
763
865
|
* <p>The name of the collection.</p>
|
|
764
866
|
*/
|
|
765
867
|
name?: string;
|
|
766
868
|
/**
|
|
869
|
+
* @public
|
|
767
870
|
* <p>The current status of the collection.</p>
|
|
768
871
|
*/
|
|
769
872
|
status?: CollectionStatus | string;
|
|
@@ -773,16 +876,19 @@ export interface CollectionFilters {
|
|
|
773
876
|
*/
|
|
774
877
|
export interface ListCollectionsRequest {
|
|
775
878
|
/**
|
|
879
|
+
* @public
|
|
776
880
|
* <p>List of filter names and values that you can use for requests.</p>
|
|
777
881
|
*/
|
|
778
882
|
collectionFilters?: CollectionFilters;
|
|
779
883
|
/**
|
|
884
|
+
* @public
|
|
780
885
|
* <p>If your initial <code>ListCollections</code> operation returns a <code>nextToken</code>,
|
|
781
886
|
* you can include the returned <code>nextToken</code> in subsequent <code>ListCollections</code> operations,
|
|
782
887
|
* which returns results in the next page.</p>
|
|
783
888
|
*/
|
|
784
889
|
nextToken?: string;
|
|
785
890
|
/**
|
|
891
|
+
* @public
|
|
786
892
|
* <p>The maximum number of results to return. Default is 20. You can use
|
|
787
893
|
* <code>nextToken</code> to get the next page of results.</p>
|
|
788
894
|
*/
|
|
@@ -794,18 +900,22 @@ export interface ListCollectionsRequest {
|
|
|
794
900
|
*/
|
|
795
901
|
export interface CollectionSummary {
|
|
796
902
|
/**
|
|
903
|
+
* @public
|
|
797
904
|
* <p>The unique identifier of the collection.</p>
|
|
798
905
|
*/
|
|
799
906
|
id?: string;
|
|
800
907
|
/**
|
|
908
|
+
* @public
|
|
801
909
|
* <p>The name of the collection.</p>
|
|
802
910
|
*/
|
|
803
911
|
name?: string;
|
|
804
912
|
/**
|
|
913
|
+
* @public
|
|
805
914
|
* <p>The current status of the collection.</p>
|
|
806
915
|
*/
|
|
807
916
|
status?: CollectionStatus | string;
|
|
808
917
|
/**
|
|
918
|
+
* @public
|
|
809
919
|
* <p>The Amazon Resource Name (ARN) of the collection.</p>
|
|
810
920
|
*/
|
|
811
921
|
arn?: string;
|
|
@@ -815,10 +925,12 @@ export interface CollectionSummary {
|
|
|
815
925
|
*/
|
|
816
926
|
export interface ListCollectionsResponse {
|
|
817
927
|
/**
|
|
928
|
+
* @public
|
|
818
929
|
* <p>Details about each collection.</p>
|
|
819
930
|
*/
|
|
820
931
|
collectionSummaries?: CollectionSummary[];
|
|
821
932
|
/**
|
|
933
|
+
* @public
|
|
822
934
|
* <p>When <code>nextToken</code> is returned, there are more results available.
|
|
823
935
|
* The value of <code>nextToken</code> is a unique pagination token for each page.
|
|
824
936
|
* Make the call again using the returned token to retrieve the next page.</p>
|
|
@@ -830,14 +942,17 @@ export interface ListCollectionsResponse {
|
|
|
830
942
|
*/
|
|
831
943
|
export interface UpdateCollectionRequest {
|
|
832
944
|
/**
|
|
945
|
+
* @public
|
|
833
946
|
* <p>The unique identifier of the collection.</p>
|
|
834
947
|
*/
|
|
835
948
|
id: string | undefined;
|
|
836
949
|
/**
|
|
950
|
+
* @public
|
|
837
951
|
* <p>A description of the collection.</p>
|
|
838
952
|
*/
|
|
839
953
|
description?: string;
|
|
840
954
|
/**
|
|
955
|
+
* @public
|
|
841
956
|
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
842
957
|
*/
|
|
843
958
|
clientToken?: string;
|
|
@@ -848,34 +963,42 @@ export interface UpdateCollectionRequest {
|
|
|
848
963
|
*/
|
|
849
964
|
export interface UpdateCollectionDetail {
|
|
850
965
|
/**
|
|
966
|
+
* @public
|
|
851
967
|
* <p>The unique identifier of the collection.</p>
|
|
852
968
|
*/
|
|
853
969
|
id?: string;
|
|
854
970
|
/**
|
|
971
|
+
* @public
|
|
855
972
|
* <p>The name of the collection.</p>
|
|
856
973
|
*/
|
|
857
974
|
name?: string;
|
|
858
975
|
/**
|
|
976
|
+
* @public
|
|
859
977
|
* <p>The current status of the collection.</p>
|
|
860
978
|
*/
|
|
861
979
|
status?: CollectionStatus | string;
|
|
862
980
|
/**
|
|
981
|
+
* @public
|
|
863
982
|
* <p>The collection type.</p>
|
|
864
983
|
*/
|
|
865
984
|
type?: CollectionType | string;
|
|
866
985
|
/**
|
|
986
|
+
* @public
|
|
867
987
|
* <p>The description of the collection.</p>
|
|
868
988
|
*/
|
|
869
989
|
description?: string;
|
|
870
990
|
/**
|
|
991
|
+
* @public
|
|
871
992
|
* <p>The Amazon Resource Name (ARN) of the collection.</p>
|
|
872
993
|
*/
|
|
873
994
|
arn?: string;
|
|
874
995
|
/**
|
|
996
|
+
* @public
|
|
875
997
|
* <p>The date and time when the collection was created.</p>
|
|
876
998
|
*/
|
|
877
999
|
createdDate?: number;
|
|
878
1000
|
/**
|
|
1001
|
+
* @public
|
|
879
1002
|
* <p>The date and time when the collection was last modified.</p>
|
|
880
1003
|
*/
|
|
881
1004
|
lastModifiedDate?: number;
|
|
@@ -885,6 +1008,7 @@ export interface UpdateCollectionDetail {
|
|
|
885
1008
|
*/
|
|
886
1009
|
export interface UpdateCollectionResponse {
|
|
887
1010
|
/**
|
|
1011
|
+
* @public
|
|
888
1012
|
* <p>Details about the updated collection.</p>
|
|
889
1013
|
*/
|
|
890
1014
|
updateCollectionDetail?: UpdateCollectionDetail;
|
|
@@ -896,18 +1020,22 @@ export interface UpdateCollectionResponse {
|
|
|
896
1020
|
*/
|
|
897
1021
|
export interface SamlConfigOptions {
|
|
898
1022
|
/**
|
|
1023
|
+
* @public
|
|
899
1024
|
* <p>The XML IdP metadata file generated from your identity provider.</p>
|
|
900
1025
|
*/
|
|
901
1026
|
metadata: string | undefined;
|
|
902
1027
|
/**
|
|
1028
|
+
* @public
|
|
903
1029
|
* <p>A user attribute for this SAML integration.</p>
|
|
904
1030
|
*/
|
|
905
1031
|
userAttribute?: string;
|
|
906
1032
|
/**
|
|
1033
|
+
* @public
|
|
907
1034
|
* <p>The group attribute for this SAML integration.</p>
|
|
908
1035
|
*/
|
|
909
1036
|
groupAttribute?: string;
|
|
910
1037
|
/**
|
|
1038
|
+
* @public
|
|
911
1039
|
* <p>The session timeout, in minutes. Default is 60 minutes (12 hours).</p>
|
|
912
1040
|
*/
|
|
913
1041
|
sessionTimeout?: number;
|
|
@@ -931,23 +1059,28 @@ export type SecurityConfigType = (typeof SecurityConfigType)[keyof typeof Securi
|
|
|
931
1059
|
*/
|
|
932
1060
|
export interface CreateSecurityConfigRequest {
|
|
933
1061
|
/**
|
|
1062
|
+
* @public
|
|
934
1063
|
* <p>The type of security configuration.</p>
|
|
935
1064
|
*/
|
|
936
1065
|
type: SecurityConfigType | string | undefined;
|
|
937
1066
|
/**
|
|
1067
|
+
* @public
|
|
938
1068
|
* <p>The name of the security configuration.</p>
|
|
939
1069
|
*/
|
|
940
1070
|
name: string | undefined;
|
|
941
1071
|
/**
|
|
1072
|
+
* @public
|
|
942
1073
|
* <p>A description of the security configuration.</p>
|
|
943
1074
|
*/
|
|
944
1075
|
description?: string;
|
|
945
1076
|
/**
|
|
1077
|
+
* @public
|
|
946
1078
|
* <p>Describes SAML options in in the form of a key-value map. This field is required if
|
|
947
1079
|
* you specify <code>saml</code> for the <code>type</code> parameter.</p>
|
|
948
1080
|
*/
|
|
949
1081
|
samlOptions?: SamlConfigOptions;
|
|
950
1082
|
/**
|
|
1083
|
+
* @public
|
|
951
1084
|
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
952
1085
|
*/
|
|
953
1086
|
clientToken?: string;
|
|
@@ -958,30 +1091,37 @@ export interface CreateSecurityConfigRequest {
|
|
|
958
1091
|
*/
|
|
959
1092
|
export interface SecurityConfigDetail {
|
|
960
1093
|
/**
|
|
1094
|
+
* @public
|
|
961
1095
|
* <p>The unique identifier of the security configuration.</p>
|
|
962
1096
|
*/
|
|
963
1097
|
id?: string;
|
|
964
1098
|
/**
|
|
1099
|
+
* @public
|
|
965
1100
|
* <p>The type of security configuration.</p>
|
|
966
1101
|
*/
|
|
967
1102
|
type?: SecurityConfigType | string;
|
|
968
1103
|
/**
|
|
1104
|
+
* @public
|
|
969
1105
|
* <p>The version of the security configuration.</p>
|
|
970
1106
|
*/
|
|
971
1107
|
configVersion?: string;
|
|
972
1108
|
/**
|
|
1109
|
+
* @public
|
|
973
1110
|
* <p>The description of the security configuration.</p>
|
|
974
1111
|
*/
|
|
975
1112
|
description?: string;
|
|
976
1113
|
/**
|
|
1114
|
+
* @public
|
|
977
1115
|
* <p>SAML options for the security configuration in the form of a key-value map.</p>
|
|
978
1116
|
*/
|
|
979
1117
|
samlOptions?: SamlConfigOptions;
|
|
980
1118
|
/**
|
|
1119
|
+
* @public
|
|
981
1120
|
* <p>The date the configuration was created.</p>
|
|
982
1121
|
*/
|
|
983
1122
|
createdDate?: number;
|
|
984
1123
|
/**
|
|
1124
|
+
* @public
|
|
985
1125
|
* <p>The timestamp of when the configuration was last modified.</p>
|
|
986
1126
|
*/
|
|
987
1127
|
lastModifiedDate?: number;
|
|
@@ -991,6 +1131,7 @@ export interface SecurityConfigDetail {
|
|
|
991
1131
|
*/
|
|
992
1132
|
export interface CreateSecurityConfigResponse {
|
|
993
1133
|
/**
|
|
1134
|
+
* @public
|
|
994
1135
|
* <p>Details about the created security configuration. </p>
|
|
995
1136
|
*/
|
|
996
1137
|
securityConfigDetail?: SecurityConfigDetail;
|
|
@@ -1018,23 +1159,28 @@ export type SecurityPolicyType = (typeof SecurityPolicyType)[keyof typeof Securi
|
|
|
1018
1159
|
*/
|
|
1019
1160
|
export interface CreateSecurityPolicyRequest {
|
|
1020
1161
|
/**
|
|
1162
|
+
* @public
|
|
1021
1163
|
* <p>The type of security policy.</p>
|
|
1022
1164
|
*/
|
|
1023
1165
|
type: SecurityPolicyType | string | undefined;
|
|
1024
1166
|
/**
|
|
1167
|
+
* @public
|
|
1025
1168
|
* <p>The name of the policy.</p>
|
|
1026
1169
|
*/
|
|
1027
1170
|
name: string | undefined;
|
|
1028
1171
|
/**
|
|
1172
|
+
* @public
|
|
1029
1173
|
* <p>A description of the policy. Typically used to store information about the permissions
|
|
1030
1174
|
* defined in the policy.</p>
|
|
1031
1175
|
*/
|
|
1032
1176
|
description?: string;
|
|
1033
1177
|
/**
|
|
1178
|
+
* @public
|
|
1034
1179
|
* <p>The JSON policy document to use as the content for the new policy.</p>
|
|
1035
1180
|
*/
|
|
1036
1181
|
policy: string | undefined;
|
|
1037
1182
|
/**
|
|
1183
|
+
* @public
|
|
1038
1184
|
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
1039
1185
|
*/
|
|
1040
1186
|
clientToken?: string;
|
|
@@ -1045,30 +1191,37 @@ export interface CreateSecurityPolicyRequest {
|
|
|
1045
1191
|
*/
|
|
1046
1192
|
export interface SecurityPolicyDetail {
|
|
1047
1193
|
/**
|
|
1194
|
+
* @public
|
|
1048
1195
|
* <p>The type of security policy.</p>
|
|
1049
1196
|
*/
|
|
1050
1197
|
type?: SecurityPolicyType | string;
|
|
1051
1198
|
/**
|
|
1199
|
+
* @public
|
|
1052
1200
|
* <p>The name of the policy.</p>
|
|
1053
1201
|
*/
|
|
1054
1202
|
name?: string;
|
|
1055
1203
|
/**
|
|
1204
|
+
* @public
|
|
1056
1205
|
* <p>The version of the policy.</p>
|
|
1057
1206
|
*/
|
|
1058
1207
|
policyVersion?: string;
|
|
1059
1208
|
/**
|
|
1209
|
+
* @public
|
|
1060
1210
|
* <p>The description of the security policy.</p>
|
|
1061
1211
|
*/
|
|
1062
1212
|
description?: string;
|
|
1063
1213
|
/**
|
|
1214
|
+
* @public
|
|
1064
1215
|
* <p>The JSON policy document without any whitespaces.</p>
|
|
1065
1216
|
*/
|
|
1066
1217
|
policy?: __DocumentType;
|
|
1067
1218
|
/**
|
|
1219
|
+
* @public
|
|
1068
1220
|
* <p>The date the policy was created.</p>
|
|
1069
1221
|
*/
|
|
1070
1222
|
createdDate?: number;
|
|
1071
1223
|
/**
|
|
1224
|
+
* @public
|
|
1072
1225
|
* <p>The timestamp of when the policy was last modified.</p>
|
|
1073
1226
|
*/
|
|
1074
1227
|
lastModifiedDate?: number;
|
|
@@ -1078,6 +1231,7 @@ export interface SecurityPolicyDetail {
|
|
|
1078
1231
|
*/
|
|
1079
1232
|
export interface CreateSecurityPolicyResponse {
|
|
1080
1233
|
/**
|
|
1234
|
+
* @public
|
|
1081
1235
|
* <p>Details about the created security policy.</p>
|
|
1082
1236
|
*/
|
|
1083
1237
|
securityPolicyDetail?: SecurityPolicyDetail;
|
|
@@ -1087,23 +1241,28 @@ export interface CreateSecurityPolicyResponse {
|
|
|
1087
1241
|
*/
|
|
1088
1242
|
export interface CreateVpcEndpointRequest {
|
|
1089
1243
|
/**
|
|
1244
|
+
* @public
|
|
1090
1245
|
* <p>The name of the interface endpoint.</p>
|
|
1091
1246
|
*/
|
|
1092
1247
|
name: string | undefined;
|
|
1093
1248
|
/**
|
|
1249
|
+
* @public
|
|
1094
1250
|
* <p>The ID of the VPC from which you'll access OpenSearch Serverless.</p>
|
|
1095
1251
|
*/
|
|
1096
1252
|
vpcId: string | undefined;
|
|
1097
1253
|
/**
|
|
1254
|
+
* @public
|
|
1098
1255
|
* <p>The ID of one or more subnets from which you'll access OpenSearch Serverless.</p>
|
|
1099
1256
|
*/
|
|
1100
1257
|
subnetIds: string[] | undefined;
|
|
1101
1258
|
/**
|
|
1259
|
+
* @public
|
|
1102
1260
|
* <p>The unique identifiers of the security groups that define the ports, protocols, and
|
|
1103
1261
|
* sources for inbound traffic that you are authorizing into your endpoint.</p>
|
|
1104
1262
|
*/
|
|
1105
1263
|
securityGroupIds?: string[];
|
|
1106
1264
|
/**
|
|
1265
|
+
* @public
|
|
1107
1266
|
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
1108
1267
|
*/
|
|
1109
1268
|
clientToken?: string;
|
|
@@ -1115,14 +1274,17 @@ export interface CreateVpcEndpointRequest {
|
|
|
1115
1274
|
*/
|
|
1116
1275
|
export interface CreateVpcEndpointDetail {
|
|
1117
1276
|
/**
|
|
1277
|
+
* @public
|
|
1118
1278
|
* <p>The unique identifier of the endpoint.</p>
|
|
1119
1279
|
*/
|
|
1120
1280
|
id?: string;
|
|
1121
1281
|
/**
|
|
1282
|
+
* @public
|
|
1122
1283
|
* <p>The name of the endpoint.</p>
|
|
1123
1284
|
*/
|
|
1124
1285
|
name?: string;
|
|
1125
1286
|
/**
|
|
1287
|
+
* @public
|
|
1126
1288
|
* <p>The current status in the endpoint creation process.</p>
|
|
1127
1289
|
*/
|
|
1128
1290
|
status?: VpcEndpointStatus | string;
|
|
@@ -1132,6 +1294,7 @@ export interface CreateVpcEndpointDetail {
|
|
|
1132
1294
|
*/
|
|
1133
1295
|
export interface CreateVpcEndpointResponse {
|
|
1134
1296
|
/**
|
|
1297
|
+
* @public
|
|
1135
1298
|
* <p>Details about the created interface VPC endpoint.</p>
|
|
1136
1299
|
*/
|
|
1137
1300
|
createVpcEndpointDetail?: CreateVpcEndpointDetail;
|
|
@@ -1141,12 +1304,14 @@ export interface CreateVpcEndpointResponse {
|
|
|
1141
1304
|
*/
|
|
1142
1305
|
export interface DeleteSecurityConfigRequest {
|
|
1143
1306
|
/**
|
|
1307
|
+
* @public
|
|
1144
1308
|
* <p>The security configuration identifier. For SAML the ID will be
|
|
1145
1309
|
* <code>saml/<accountId>/<idpProviderName></code>. For example,
|
|
1146
1310
|
* <code>saml/123456789123/OKTADev</code>.</p>
|
|
1147
1311
|
*/
|
|
1148
1312
|
id: string | undefined;
|
|
1149
1313
|
/**
|
|
1314
|
+
* @public
|
|
1150
1315
|
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
1151
1316
|
*/
|
|
1152
1317
|
clientToken?: string;
|
|
@@ -1161,14 +1326,17 @@ export interface DeleteSecurityConfigResponse {
|
|
|
1161
1326
|
*/
|
|
1162
1327
|
export interface DeleteSecurityPolicyRequest {
|
|
1163
1328
|
/**
|
|
1329
|
+
* @public
|
|
1164
1330
|
* <p>The type of policy.</p>
|
|
1165
1331
|
*/
|
|
1166
1332
|
type: SecurityPolicyType | string | undefined;
|
|
1167
1333
|
/**
|
|
1334
|
+
* @public
|
|
1168
1335
|
* <p>The name of the policy to delete.</p>
|
|
1169
1336
|
*/
|
|
1170
1337
|
name: string | undefined;
|
|
1171
1338
|
/**
|
|
1339
|
+
* @public
|
|
1172
1340
|
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
1173
1341
|
*/
|
|
1174
1342
|
clientToken?: string;
|
|
@@ -1183,10 +1351,12 @@ export interface DeleteSecurityPolicyResponse {
|
|
|
1183
1351
|
*/
|
|
1184
1352
|
export interface DeleteVpcEndpointRequest {
|
|
1185
1353
|
/**
|
|
1354
|
+
* @public
|
|
1186
1355
|
* <p>The VPC endpoint identifier.</p>
|
|
1187
1356
|
*/
|
|
1188
1357
|
id: string | undefined;
|
|
1189
1358
|
/**
|
|
1359
|
+
* @public
|
|
1190
1360
|
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
1191
1361
|
*/
|
|
1192
1362
|
clientToken?: string;
|
|
@@ -1197,14 +1367,17 @@ export interface DeleteVpcEndpointRequest {
|
|
|
1197
1367
|
*/
|
|
1198
1368
|
export interface DeleteVpcEndpointDetail {
|
|
1199
1369
|
/**
|
|
1370
|
+
* @public
|
|
1200
1371
|
* <p>The unique identifier of the endpoint.</p>
|
|
1201
1372
|
*/
|
|
1202
1373
|
id?: string;
|
|
1203
1374
|
/**
|
|
1375
|
+
* @public
|
|
1204
1376
|
* <p>The name of the endpoint.</p>
|
|
1205
1377
|
*/
|
|
1206
1378
|
name?: string;
|
|
1207
1379
|
/**
|
|
1380
|
+
* @public
|
|
1208
1381
|
* <p>The current status of the endpoint deletion process.</p>
|
|
1209
1382
|
*/
|
|
1210
1383
|
status?: VpcEndpointStatus | string;
|
|
@@ -1214,6 +1387,7 @@ export interface DeleteVpcEndpointDetail {
|
|
|
1214
1387
|
*/
|
|
1215
1388
|
export interface DeleteVpcEndpointResponse {
|
|
1216
1389
|
/**
|
|
1390
|
+
* @public
|
|
1217
1391
|
* <p>Details about the deleted endpoint.</p>
|
|
1218
1392
|
*/
|
|
1219
1393
|
deleteVpcEndpointDetail?: DeleteVpcEndpointDetail;
|
|
@@ -1228,6 +1402,7 @@ export interface GetAccountSettingsRequest {
|
|
|
1228
1402
|
*/
|
|
1229
1403
|
export interface GetAccountSettingsResponse {
|
|
1230
1404
|
/**
|
|
1405
|
+
* @public
|
|
1231
1406
|
* <p>OpenSearch Serverless-related details for the current account.</p>
|
|
1232
1407
|
*/
|
|
1233
1408
|
accountSettingsDetail?: AccountSettingsDetail;
|
|
@@ -1243,6 +1418,7 @@ export interface GetPoliciesStatsRequest {
|
|
|
1243
1418
|
*/
|
|
1244
1419
|
export interface SecurityConfigStats {
|
|
1245
1420
|
/**
|
|
1421
|
+
* @public
|
|
1246
1422
|
* <p>The number of security configurations in the current account.</p>
|
|
1247
1423
|
*/
|
|
1248
1424
|
SamlConfigCount?: number;
|
|
@@ -1253,10 +1429,12 @@ export interface SecurityConfigStats {
|
|
|
1253
1429
|
*/
|
|
1254
1430
|
export interface SecurityPolicyStats {
|
|
1255
1431
|
/**
|
|
1432
|
+
* @public
|
|
1256
1433
|
* <p>The number of encryption policies in the current account.</p>
|
|
1257
1434
|
*/
|
|
1258
1435
|
EncryptionPolicyCount?: number;
|
|
1259
1436
|
/**
|
|
1437
|
+
* @public
|
|
1260
1438
|
* <p>The number of network policies in the current account.</p>
|
|
1261
1439
|
*/
|
|
1262
1440
|
NetworkPolicyCount?: number;
|
|
@@ -1266,18 +1444,22 @@ export interface SecurityPolicyStats {
|
|
|
1266
1444
|
*/
|
|
1267
1445
|
export interface GetPoliciesStatsResponse {
|
|
1268
1446
|
/**
|
|
1447
|
+
* @public
|
|
1269
1448
|
* <p>Information about the data access policies in your account.</p>
|
|
1270
1449
|
*/
|
|
1271
1450
|
AccessPolicyStats?: AccessPolicyStats;
|
|
1272
1451
|
/**
|
|
1452
|
+
* @public
|
|
1273
1453
|
* <p>Information about the security policies in your account.</p>
|
|
1274
1454
|
*/
|
|
1275
1455
|
SecurityPolicyStats?: SecurityPolicyStats;
|
|
1276
1456
|
/**
|
|
1457
|
+
* @public
|
|
1277
1458
|
* <p>Information about the security configurations in your account.</p>
|
|
1278
1459
|
*/
|
|
1279
1460
|
SecurityConfigStats?: SecurityConfigStats;
|
|
1280
1461
|
/**
|
|
1462
|
+
* @public
|
|
1281
1463
|
* <p>The total number of OpenSearch Serverless security policies and configurations in your
|
|
1282
1464
|
* account.</p>
|
|
1283
1465
|
*/
|
|
@@ -1288,6 +1470,7 @@ export interface GetPoliciesStatsResponse {
|
|
|
1288
1470
|
*/
|
|
1289
1471
|
export interface GetSecurityConfigRequest {
|
|
1290
1472
|
/**
|
|
1473
|
+
* @public
|
|
1291
1474
|
* <p>The unique identifier of the security configuration.</p>
|
|
1292
1475
|
*/
|
|
1293
1476
|
id: string | undefined;
|
|
@@ -1297,6 +1480,7 @@ export interface GetSecurityConfigRequest {
|
|
|
1297
1480
|
*/
|
|
1298
1481
|
export interface GetSecurityConfigResponse {
|
|
1299
1482
|
/**
|
|
1483
|
+
* @public
|
|
1300
1484
|
* <p>Details of the requested security configuration.</p>
|
|
1301
1485
|
*/
|
|
1302
1486
|
securityConfigDetail?: SecurityConfigDetail;
|
|
@@ -1306,10 +1490,12 @@ export interface GetSecurityConfigResponse {
|
|
|
1306
1490
|
*/
|
|
1307
1491
|
export interface GetSecurityPolicyRequest {
|
|
1308
1492
|
/**
|
|
1493
|
+
* @public
|
|
1309
1494
|
* <p>The type of security policy.</p>
|
|
1310
1495
|
*/
|
|
1311
1496
|
type: SecurityPolicyType | string | undefined;
|
|
1312
1497
|
/**
|
|
1498
|
+
* @public
|
|
1313
1499
|
* <p>The name of the security policy.</p>
|
|
1314
1500
|
*/
|
|
1315
1501
|
name: string | undefined;
|
|
@@ -1319,6 +1505,7 @@ export interface GetSecurityPolicyRequest {
|
|
|
1319
1505
|
*/
|
|
1320
1506
|
export interface GetSecurityPolicyResponse {
|
|
1321
1507
|
/**
|
|
1508
|
+
* @public
|
|
1322
1509
|
* <p>Details about the requested security policy.</p>
|
|
1323
1510
|
*/
|
|
1324
1511
|
securityPolicyDetail?: SecurityPolicyDetail;
|
|
@@ -1328,10 +1515,12 @@ export interface GetSecurityPolicyResponse {
|
|
|
1328
1515
|
*/
|
|
1329
1516
|
export interface ListSecurityConfigsRequest {
|
|
1330
1517
|
/**
|
|
1518
|
+
* @public
|
|
1331
1519
|
* <p>The type of security configuration.</p>
|
|
1332
1520
|
*/
|
|
1333
1521
|
type: SecurityConfigType | string | undefined;
|
|
1334
1522
|
/**
|
|
1523
|
+
* @public
|
|
1335
1524
|
* <p>If your initial <code>ListSecurityConfigs</code> operation returns a
|
|
1336
1525
|
* <code>nextToken</code>, you can include the returned <code>nextToken</code> in
|
|
1337
1526
|
* subsequent <code>ListSecurityConfigs</code> operations, which returns results in the
|
|
@@ -1339,6 +1528,7 @@ export interface ListSecurityConfigsRequest {
|
|
|
1339
1528
|
*/
|
|
1340
1529
|
nextToken?: string;
|
|
1341
1530
|
/**
|
|
1531
|
+
* @public
|
|
1342
1532
|
* <p>An optional parameter that specifies the maximum number of results to return. You can
|
|
1343
1533
|
* use <code>nextToken</code> to get the next page of results. The default is 20.</p>
|
|
1344
1534
|
*/
|
|
@@ -1350,26 +1540,32 @@ export interface ListSecurityConfigsRequest {
|
|
|
1350
1540
|
*/
|
|
1351
1541
|
export interface SecurityConfigSummary {
|
|
1352
1542
|
/**
|
|
1543
|
+
* @public
|
|
1353
1544
|
* <p>The unique identifier of the security configuration.</p>
|
|
1354
1545
|
*/
|
|
1355
1546
|
id?: string;
|
|
1356
1547
|
/**
|
|
1548
|
+
* @public
|
|
1357
1549
|
* <p>The type of security configuration.</p>
|
|
1358
1550
|
*/
|
|
1359
1551
|
type?: SecurityConfigType | string;
|
|
1360
1552
|
/**
|
|
1553
|
+
* @public
|
|
1361
1554
|
* <p>The version of the security configuration.</p>
|
|
1362
1555
|
*/
|
|
1363
1556
|
configVersion?: string;
|
|
1364
1557
|
/**
|
|
1558
|
+
* @public
|
|
1365
1559
|
* <p>The description of the security configuration.</p>
|
|
1366
1560
|
*/
|
|
1367
1561
|
description?: string;
|
|
1368
1562
|
/**
|
|
1563
|
+
* @public
|
|
1369
1564
|
* <p>The Epoch time when the security configuration was created.</p>
|
|
1370
1565
|
*/
|
|
1371
1566
|
createdDate?: number;
|
|
1372
1567
|
/**
|
|
1568
|
+
* @public
|
|
1373
1569
|
* <p>The timestamp of when the configuration was last modified.</p>
|
|
1374
1570
|
*/
|
|
1375
1571
|
lastModifiedDate?: number;
|
|
@@ -1379,10 +1575,12 @@ export interface SecurityConfigSummary {
|
|
|
1379
1575
|
*/
|
|
1380
1576
|
export interface ListSecurityConfigsResponse {
|
|
1381
1577
|
/**
|
|
1578
|
+
* @public
|
|
1382
1579
|
* <p>Details about the security configurations in your account.</p>
|
|
1383
1580
|
*/
|
|
1384
1581
|
securityConfigSummaries?: SecurityConfigSummary[];
|
|
1385
1582
|
/**
|
|
1583
|
+
* @public
|
|
1386
1584
|
* <p>When <code>nextToken</code> is returned, there are more results available. The value
|
|
1387
1585
|
* of <code>nextToken</code> is a unique pagination token for each page. Make the call
|
|
1388
1586
|
* again using the returned token to retrieve the next page.</p>
|
|
@@ -1394,14 +1592,17 @@ export interface ListSecurityConfigsResponse {
|
|
|
1394
1592
|
*/
|
|
1395
1593
|
export interface ListSecurityPoliciesRequest {
|
|
1396
1594
|
/**
|
|
1595
|
+
* @public
|
|
1397
1596
|
* <p>The type of policy.</p>
|
|
1398
1597
|
*/
|
|
1399
1598
|
type: SecurityPolicyType | string | undefined;
|
|
1400
1599
|
/**
|
|
1600
|
+
* @public
|
|
1401
1601
|
* <p>Resource filters (can be collection or indexes) that policies can apply to. </p>
|
|
1402
1602
|
*/
|
|
1403
1603
|
resource?: string[];
|
|
1404
1604
|
/**
|
|
1605
|
+
* @public
|
|
1405
1606
|
* <p>If your initial <code>ListSecurityPolicies</code> operation returns a
|
|
1406
1607
|
* <code>nextToken</code>, you can include the returned <code>nextToken</code> in
|
|
1407
1608
|
* subsequent <code>ListSecurityPolicies</code> operations, which returns results in the
|
|
@@ -1409,6 +1610,7 @@ export interface ListSecurityPoliciesRequest {
|
|
|
1409
1610
|
*/
|
|
1410
1611
|
nextToken?: string;
|
|
1411
1612
|
/**
|
|
1613
|
+
* @public
|
|
1412
1614
|
* <p>An optional parameter that specifies the maximum number of results to return. You can
|
|
1413
1615
|
* use <code>nextToken</code> to get the next page of results. The default is 20.</p>
|
|
1414
1616
|
*/
|
|
@@ -1420,26 +1622,32 @@ export interface ListSecurityPoliciesRequest {
|
|
|
1420
1622
|
*/
|
|
1421
1623
|
export interface SecurityPolicySummary {
|
|
1422
1624
|
/**
|
|
1625
|
+
* @public
|
|
1423
1626
|
* <p>The type of security policy.</p>
|
|
1424
1627
|
*/
|
|
1425
1628
|
type?: SecurityPolicyType | string;
|
|
1426
1629
|
/**
|
|
1630
|
+
* @public
|
|
1427
1631
|
* <p>The name of the policy.</p>
|
|
1428
1632
|
*/
|
|
1429
1633
|
name?: string;
|
|
1430
1634
|
/**
|
|
1635
|
+
* @public
|
|
1431
1636
|
* <p>The version of the policy.</p>
|
|
1432
1637
|
*/
|
|
1433
1638
|
policyVersion?: string;
|
|
1434
1639
|
/**
|
|
1640
|
+
* @public
|
|
1435
1641
|
* <p>The description of the security policy.</p>
|
|
1436
1642
|
*/
|
|
1437
1643
|
description?: string;
|
|
1438
1644
|
/**
|
|
1645
|
+
* @public
|
|
1439
1646
|
* <p>The date the policy was created.</p>
|
|
1440
1647
|
*/
|
|
1441
1648
|
createdDate?: number;
|
|
1442
1649
|
/**
|
|
1650
|
+
* @public
|
|
1443
1651
|
* <p>The timestamp of when the policy was last modified.</p>
|
|
1444
1652
|
*/
|
|
1445
1653
|
lastModifiedDate?: number;
|
|
@@ -1449,10 +1657,12 @@ export interface SecurityPolicySummary {
|
|
|
1449
1657
|
*/
|
|
1450
1658
|
export interface ListSecurityPoliciesResponse {
|
|
1451
1659
|
/**
|
|
1660
|
+
* @public
|
|
1452
1661
|
* <p>Details about the security policies in your account.</p>
|
|
1453
1662
|
*/
|
|
1454
1663
|
securityPolicySummaries?: SecurityPolicySummary[];
|
|
1455
1664
|
/**
|
|
1665
|
+
* @public
|
|
1456
1666
|
* <p>When <code>nextToken</code> is returned, there are more results available. The value
|
|
1457
1667
|
* of <code>nextToken</code> is a unique pagination token for each page. Make the call
|
|
1458
1668
|
* again using the returned token to retrieve the next page.</p>
|
|
@@ -1464,6 +1674,7 @@ export interface ListSecurityPoliciesResponse {
|
|
|
1464
1674
|
*/
|
|
1465
1675
|
export interface ListTagsForResourceRequest {
|
|
1466
1676
|
/**
|
|
1677
|
+
* @public
|
|
1467
1678
|
* <p>The Amazon Resource Name (ARN) of the resource. The resource must be active (not in
|
|
1468
1679
|
* the <code>DELETING</code> state), and must be owned by the account ID included in the
|
|
1469
1680
|
* request.</p>
|
|
@@ -1475,6 +1686,7 @@ export interface ListTagsForResourceRequest {
|
|
|
1475
1686
|
*/
|
|
1476
1687
|
export interface ListTagsForResourceResponse {
|
|
1477
1688
|
/**
|
|
1689
|
+
* @public
|
|
1478
1690
|
* <p>The tags associated with the resource.</p>
|
|
1479
1691
|
*/
|
|
1480
1692
|
tags?: Tag[];
|
|
@@ -1485,6 +1697,7 @@ export interface ListTagsForResourceResponse {
|
|
|
1485
1697
|
*/
|
|
1486
1698
|
export interface VpcEndpointFilters {
|
|
1487
1699
|
/**
|
|
1700
|
+
* @public
|
|
1488
1701
|
* <p>The current status of the endpoint.</p>
|
|
1489
1702
|
*/
|
|
1490
1703
|
status?: VpcEndpointStatus | string;
|
|
@@ -1494,12 +1707,14 @@ export interface VpcEndpointFilters {
|
|
|
1494
1707
|
*/
|
|
1495
1708
|
export interface ListVpcEndpointsRequest {
|
|
1496
1709
|
/**
|
|
1710
|
+
* @public
|
|
1497
1711
|
* <p>Filter the results according to the current status of the VPC endpoint. Possible
|
|
1498
1712
|
* statuses are <code>CREATING</code>, <code>DELETING</code>, <code>UPDATING</code>,
|
|
1499
1713
|
* <code>ACTIVE</code>, and <code>FAILED</code>.</p>
|
|
1500
1714
|
*/
|
|
1501
1715
|
vpcEndpointFilters?: VpcEndpointFilters;
|
|
1502
1716
|
/**
|
|
1717
|
+
* @public
|
|
1503
1718
|
* <p>If your initial <code>ListVpcEndpoints</code> operation returns a
|
|
1504
1719
|
* <code>nextToken</code>, you can include the returned <code>nextToken</code> in
|
|
1505
1720
|
* subsequent <code>ListVpcEndpoints</code> operations, which returns results in the next
|
|
@@ -1507,6 +1722,7 @@ export interface ListVpcEndpointsRequest {
|
|
|
1507
1722
|
*/
|
|
1508
1723
|
nextToken?: string;
|
|
1509
1724
|
/**
|
|
1725
|
+
* @public
|
|
1510
1726
|
* <p>An optional parameter that specifies the maximum number of results to return. You can
|
|
1511
1727
|
* use <code>nextToken</code> to get the next page of results. The default is 20.</p>
|
|
1512
1728
|
*/
|
|
@@ -1518,14 +1734,17 @@ export interface ListVpcEndpointsRequest {
|
|
|
1518
1734
|
*/
|
|
1519
1735
|
export interface VpcEndpointSummary {
|
|
1520
1736
|
/**
|
|
1737
|
+
* @public
|
|
1521
1738
|
* <p>The unique identifier of the endpoint.</p>
|
|
1522
1739
|
*/
|
|
1523
1740
|
id?: string;
|
|
1524
1741
|
/**
|
|
1742
|
+
* @public
|
|
1525
1743
|
* <p>The name of the endpoint.</p>
|
|
1526
1744
|
*/
|
|
1527
1745
|
name?: string;
|
|
1528
1746
|
/**
|
|
1747
|
+
* @public
|
|
1529
1748
|
* <p>The current status of the endpoint.</p>
|
|
1530
1749
|
*/
|
|
1531
1750
|
status?: VpcEndpointStatus | string;
|
|
@@ -1535,10 +1754,12 @@ export interface VpcEndpointSummary {
|
|
|
1535
1754
|
*/
|
|
1536
1755
|
export interface ListVpcEndpointsResponse {
|
|
1537
1756
|
/**
|
|
1757
|
+
* @public
|
|
1538
1758
|
* <p>Details about each VPC endpoint, including the name and current status.</p>
|
|
1539
1759
|
*/
|
|
1540
1760
|
vpcEndpointSummaries?: VpcEndpointSummary[];
|
|
1541
1761
|
/**
|
|
1762
|
+
* @public
|
|
1542
1763
|
* <p>When <code>nextToken</code> is returned, there are more results available. The value
|
|
1543
1764
|
* of <code>nextToken</code> is a unique pagination token for each page. Make the call
|
|
1544
1765
|
* again using the returned token to retrieve the next page.</p>
|
|
@@ -1550,26 +1771,31 @@ export interface ListVpcEndpointsResponse {
|
|
|
1550
1771
|
*/
|
|
1551
1772
|
export interface UpdateSecurityConfigRequest {
|
|
1552
1773
|
/**
|
|
1774
|
+
* @public
|
|
1553
1775
|
* <p>The security configuration identifier. For SAML the ID will be
|
|
1554
1776
|
* <code>saml/<accountId>/<idpProviderName></code>. For example,
|
|
1555
1777
|
* <code>saml/123456789123/OKTADev</code>.</p>
|
|
1556
1778
|
*/
|
|
1557
1779
|
id: string | undefined;
|
|
1558
1780
|
/**
|
|
1781
|
+
* @public
|
|
1559
1782
|
* <p>The version of the security configuration to be updated. You can find the most recent
|
|
1560
1783
|
* version of a security configuration using the <code>GetSecurityPolicy</code>
|
|
1561
1784
|
* command.</p>
|
|
1562
1785
|
*/
|
|
1563
1786
|
configVersion: string | undefined;
|
|
1564
1787
|
/**
|
|
1788
|
+
* @public
|
|
1565
1789
|
* <p>A description of the security configuration.</p>
|
|
1566
1790
|
*/
|
|
1567
1791
|
description?: string;
|
|
1568
1792
|
/**
|
|
1793
|
+
* @public
|
|
1569
1794
|
* <p>SAML options in in the form of a key-value map.</p>
|
|
1570
1795
|
*/
|
|
1571
1796
|
samlOptions?: SamlConfigOptions;
|
|
1572
1797
|
/**
|
|
1798
|
+
* @public
|
|
1573
1799
|
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
1574
1800
|
*/
|
|
1575
1801
|
clientToken?: string;
|
|
@@ -1579,6 +1805,7 @@ export interface UpdateSecurityConfigRequest {
|
|
|
1579
1805
|
*/
|
|
1580
1806
|
export interface UpdateSecurityConfigResponse {
|
|
1581
1807
|
/**
|
|
1808
|
+
* @public
|
|
1582
1809
|
* <p>Details about the updated security configuration. </p>
|
|
1583
1810
|
*/
|
|
1584
1811
|
securityConfigDetail?: SecurityConfigDetail;
|
|
@@ -1588,27 +1815,33 @@ export interface UpdateSecurityConfigResponse {
|
|
|
1588
1815
|
*/
|
|
1589
1816
|
export interface UpdateSecurityPolicyRequest {
|
|
1590
1817
|
/**
|
|
1818
|
+
* @public
|
|
1591
1819
|
* <p>The type of access policy.</p>
|
|
1592
1820
|
*/
|
|
1593
1821
|
type: SecurityPolicyType | string | undefined;
|
|
1594
1822
|
/**
|
|
1823
|
+
* @public
|
|
1595
1824
|
* <p>The name of the policy.</p>
|
|
1596
1825
|
*/
|
|
1597
1826
|
name: string | undefined;
|
|
1598
1827
|
/**
|
|
1828
|
+
* @public
|
|
1599
1829
|
* <p>The version of the policy being updated.</p>
|
|
1600
1830
|
*/
|
|
1601
1831
|
policyVersion: string | undefined;
|
|
1602
1832
|
/**
|
|
1833
|
+
* @public
|
|
1603
1834
|
* <p>A description of the policy. Typically used to store information about the permissions
|
|
1604
1835
|
* defined in the policy.</p>
|
|
1605
1836
|
*/
|
|
1606
1837
|
description?: string;
|
|
1607
1838
|
/**
|
|
1839
|
+
* @public
|
|
1608
1840
|
* <p>The JSON policy document to use as the content for the new policy.</p>
|
|
1609
1841
|
*/
|
|
1610
1842
|
policy?: string;
|
|
1611
1843
|
/**
|
|
1844
|
+
* @public
|
|
1612
1845
|
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
1613
1846
|
*/
|
|
1614
1847
|
clientToken?: string;
|
|
@@ -1618,6 +1851,7 @@ export interface UpdateSecurityPolicyRequest {
|
|
|
1618
1851
|
*/
|
|
1619
1852
|
export interface UpdateSecurityPolicyResponse {
|
|
1620
1853
|
/**
|
|
1854
|
+
* @public
|
|
1621
1855
|
* <p>Details about the updated security policy.</p>
|
|
1622
1856
|
*/
|
|
1623
1857
|
securityPolicyDetail?: SecurityPolicyDetail;
|
|
@@ -1627,12 +1861,14 @@ export interface UpdateSecurityPolicyResponse {
|
|
|
1627
1861
|
*/
|
|
1628
1862
|
export interface TagResourceRequest {
|
|
1629
1863
|
/**
|
|
1864
|
+
* @public
|
|
1630
1865
|
* <p>The Amazon Resource Name (ARN) of the resource. The resource must be active (not in
|
|
1631
1866
|
* the <code>DELETING</code> state), and must be owned by the account ID included in the
|
|
1632
1867
|
* request.</p>
|
|
1633
1868
|
*/
|
|
1634
1869
|
resourceArn: string | undefined;
|
|
1635
1870
|
/**
|
|
1871
|
+
* @public
|
|
1636
1872
|
* <p>A list of tags (key-value pairs) to add to the resource. All tag keys in the request
|
|
1637
1873
|
* must be unique.</p>
|
|
1638
1874
|
*/
|
|
@@ -1648,12 +1884,14 @@ export interface TagResourceResponse {
|
|
|
1648
1884
|
*/
|
|
1649
1885
|
export interface UntagResourceRequest {
|
|
1650
1886
|
/**
|
|
1887
|
+
* @public
|
|
1651
1888
|
* <p>The Amazon Resource Name (ARN) of the resource to remove tags from. The resource must
|
|
1652
1889
|
* be active (not in the <code>DELETING</code> state), and must be owned by the account ID
|
|
1653
1890
|
* included in the request.</p>
|
|
1654
1891
|
*/
|
|
1655
1892
|
resourceArn: string | undefined;
|
|
1656
1893
|
/**
|
|
1894
|
+
* @public
|
|
1657
1895
|
* <p>The tag or set of tags to remove from the resource. All tag keys in the request must
|
|
1658
1896
|
* be unique.</p>
|
|
1659
1897
|
*/
|
|
@@ -1669,6 +1907,7 @@ export interface UntagResourceResponse {
|
|
|
1669
1907
|
*/
|
|
1670
1908
|
export interface UpdateAccountSettingsRequest {
|
|
1671
1909
|
/**
|
|
1910
|
+
* @public
|
|
1672
1911
|
* <p>The maximum capacity limits for all OpenSearch Serverless collections, in OpenSearch Compute Units
|
|
1673
1912
|
* (OCUs). These limits are used to scale your collections based on the current workload.
|
|
1674
1913
|
* For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-scaling.html">Managing
|
|
@@ -1681,6 +1920,7 @@ export interface UpdateAccountSettingsRequest {
|
|
|
1681
1920
|
*/
|
|
1682
1921
|
export interface UpdateAccountSettingsResponse {
|
|
1683
1922
|
/**
|
|
1923
|
+
* @public
|
|
1684
1924
|
* <p>OpenSearch Serverless-related settings for the current Amazon Web Services account. </p>
|
|
1685
1925
|
*/
|
|
1686
1926
|
accountSettingsDetail?: AccountSettingsDetail;
|
|
@@ -1690,28 +1930,34 @@ export interface UpdateAccountSettingsResponse {
|
|
|
1690
1930
|
*/
|
|
1691
1931
|
export interface UpdateVpcEndpointRequest {
|
|
1692
1932
|
/**
|
|
1933
|
+
* @public
|
|
1693
1934
|
* <p>The unique identifier of the interface endpoint to update.</p>
|
|
1694
1935
|
*/
|
|
1695
1936
|
id: string | undefined;
|
|
1696
1937
|
/**
|
|
1938
|
+
* @public
|
|
1697
1939
|
* <p>The ID of one or more subnets to add to the endpoint.</p>
|
|
1698
1940
|
*/
|
|
1699
1941
|
addSubnetIds?: string[];
|
|
1700
1942
|
/**
|
|
1943
|
+
* @public
|
|
1701
1944
|
* <p>The unique identifiers of the subnets to remove from the endpoint.</p>
|
|
1702
1945
|
*/
|
|
1703
1946
|
removeSubnetIds?: string[];
|
|
1704
1947
|
/**
|
|
1948
|
+
* @public
|
|
1705
1949
|
* <p>The unique identifiers of the security groups to add to the endpoint. Security groups
|
|
1706
1950
|
* define the ports, protocols, and sources for inbound traffic that you are authorizing
|
|
1707
1951
|
* into your endpoint.</p>
|
|
1708
1952
|
*/
|
|
1709
1953
|
addSecurityGroupIds?: string[];
|
|
1710
1954
|
/**
|
|
1955
|
+
* @public
|
|
1711
1956
|
* <p>The unique identifiers of the security groups to remove from the endpoint.</p>
|
|
1712
1957
|
*/
|
|
1713
1958
|
removeSecurityGroupIds?: string[];
|
|
1714
1959
|
/**
|
|
1960
|
+
* @public
|
|
1715
1961
|
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
1716
1962
|
*/
|
|
1717
1963
|
clientToken?: string;
|
|
@@ -1722,27 +1968,33 @@ export interface UpdateVpcEndpointRequest {
|
|
|
1722
1968
|
*/
|
|
1723
1969
|
export interface UpdateVpcEndpointDetail {
|
|
1724
1970
|
/**
|
|
1971
|
+
* @public
|
|
1725
1972
|
* <p>The unique identifier of the endpoint.</p>
|
|
1726
1973
|
*/
|
|
1727
1974
|
id?: string;
|
|
1728
1975
|
/**
|
|
1976
|
+
* @public
|
|
1729
1977
|
* <p>The name of the endpoint.</p>
|
|
1730
1978
|
*/
|
|
1731
1979
|
name?: string;
|
|
1732
1980
|
/**
|
|
1981
|
+
* @public
|
|
1733
1982
|
* <p>The current status of the endpoint update process.</p>
|
|
1734
1983
|
*/
|
|
1735
1984
|
status?: VpcEndpointStatus | string;
|
|
1736
1985
|
/**
|
|
1986
|
+
* @public
|
|
1737
1987
|
* <p>The ID of the subnets from which you access OpenSearch Serverless.</p>
|
|
1738
1988
|
*/
|
|
1739
1989
|
subnetIds?: string[];
|
|
1740
1990
|
/**
|
|
1991
|
+
* @public
|
|
1741
1992
|
* <p>The unique identifiers of the security groups that define the ports, protocols, and
|
|
1742
1993
|
* sources for inbound traffic that you are authorizing into your endpoint.</p>
|
|
1743
1994
|
*/
|
|
1744
1995
|
securityGroupIds?: string[];
|
|
1745
1996
|
/**
|
|
1997
|
+
* @public
|
|
1746
1998
|
* <p>The timestamp of when the endpoint was last modified.</p>
|
|
1747
1999
|
*/
|
|
1748
2000
|
lastModifiedDate?: number;
|
|
@@ -1752,6 +2004,7 @@ export interface UpdateVpcEndpointDetail {
|
|
|
1752
2004
|
*/
|
|
1753
2005
|
export interface UpdateVpcEndpointResponse {
|
|
1754
2006
|
/**
|
|
2007
|
+
* @public
|
|
1755
2008
|
* <p>Details about the updated VPC endpoint.</p>
|
|
1756
2009
|
*/
|
|
1757
2010
|
UpdateVpcEndpointDetail?: UpdateVpcEndpointDetail;
|