aws-sdk-opensearchserverless 1.14.0 → 1.15.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-opensearchserverless/client.rb +1 -1
- data/lib/aws-sdk-opensearchserverless/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-opensearchserverless.rb +1 -1
- data/sig/client.rbs +572 -0
- data/sig/errors.rbs +38 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +786 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,786 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::OpenSearchServerless
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessPolicyDetail
|
12
|
+
attr_accessor created_date: ::Integer
|
13
|
+
attr_accessor description: ::String
|
14
|
+
attr_accessor last_modified_date: ::Integer
|
15
|
+
attr_accessor name: ::String
|
16
|
+
attr_accessor policy: untyped
|
17
|
+
attr_accessor policy_version: ::String
|
18
|
+
attr_accessor type: ("data")
|
19
|
+
SENSITIVE: []
|
20
|
+
end
|
21
|
+
|
22
|
+
class AccessPolicyStats
|
23
|
+
attr_accessor data_policy_count: ::Integer
|
24
|
+
SENSITIVE: []
|
25
|
+
end
|
26
|
+
|
27
|
+
class AccessPolicySummary
|
28
|
+
attr_accessor created_date: ::Integer
|
29
|
+
attr_accessor description: ::String
|
30
|
+
attr_accessor last_modified_date: ::Integer
|
31
|
+
attr_accessor name: ::String
|
32
|
+
attr_accessor policy_version: ::String
|
33
|
+
attr_accessor type: ("data")
|
34
|
+
SENSITIVE: []
|
35
|
+
end
|
36
|
+
|
37
|
+
class AccountSettingsDetail
|
38
|
+
attr_accessor capacity_limits: Types::CapacityLimits
|
39
|
+
SENSITIVE: []
|
40
|
+
end
|
41
|
+
|
42
|
+
class BatchGetCollectionRequest
|
43
|
+
attr_accessor ids: ::Array[::String]
|
44
|
+
attr_accessor names: ::Array[::String]
|
45
|
+
SENSITIVE: []
|
46
|
+
end
|
47
|
+
|
48
|
+
class BatchGetCollectionResponse
|
49
|
+
attr_accessor collection_details: ::Array[Types::CollectionDetail]
|
50
|
+
attr_accessor collection_error_details: ::Array[Types::CollectionErrorDetail]
|
51
|
+
SENSITIVE: []
|
52
|
+
end
|
53
|
+
|
54
|
+
class BatchGetEffectiveLifecyclePolicyRequest
|
55
|
+
attr_accessor resource_identifiers: ::Array[Types::LifecyclePolicyResourceIdentifier]
|
56
|
+
SENSITIVE: []
|
57
|
+
end
|
58
|
+
|
59
|
+
class BatchGetEffectiveLifecyclePolicyResponse
|
60
|
+
attr_accessor effective_lifecycle_policy_details: ::Array[Types::EffectiveLifecyclePolicyDetail]
|
61
|
+
attr_accessor effective_lifecycle_policy_error_details: ::Array[Types::EffectiveLifecyclePolicyErrorDetail]
|
62
|
+
SENSITIVE: []
|
63
|
+
end
|
64
|
+
|
65
|
+
class BatchGetLifecyclePolicyRequest
|
66
|
+
attr_accessor identifiers: ::Array[Types::LifecyclePolicyIdentifier]
|
67
|
+
SENSITIVE: []
|
68
|
+
end
|
69
|
+
|
70
|
+
class BatchGetLifecyclePolicyResponse
|
71
|
+
attr_accessor lifecycle_policy_details: ::Array[Types::LifecyclePolicyDetail]
|
72
|
+
attr_accessor lifecycle_policy_error_details: ::Array[Types::LifecyclePolicyErrorDetail]
|
73
|
+
SENSITIVE: []
|
74
|
+
end
|
75
|
+
|
76
|
+
class BatchGetVpcEndpointRequest
|
77
|
+
attr_accessor ids: ::Array[::String]
|
78
|
+
SENSITIVE: []
|
79
|
+
end
|
80
|
+
|
81
|
+
class BatchGetVpcEndpointResponse
|
82
|
+
attr_accessor vpc_endpoint_details: ::Array[Types::VpcEndpointDetail]
|
83
|
+
attr_accessor vpc_endpoint_error_details: ::Array[Types::VpcEndpointErrorDetail]
|
84
|
+
SENSITIVE: []
|
85
|
+
end
|
86
|
+
|
87
|
+
class CapacityLimits
|
88
|
+
attr_accessor max_indexing_capacity_in_ocu: ::Integer
|
89
|
+
attr_accessor max_search_capacity_in_ocu: ::Integer
|
90
|
+
SENSITIVE: []
|
91
|
+
end
|
92
|
+
|
93
|
+
class CollectionDetail
|
94
|
+
attr_accessor arn: ::String
|
95
|
+
attr_accessor collection_endpoint: ::String
|
96
|
+
attr_accessor created_date: ::Integer
|
97
|
+
attr_accessor dashboard_endpoint: ::String
|
98
|
+
attr_accessor description: ::String
|
99
|
+
attr_accessor id: ::String
|
100
|
+
attr_accessor kms_key_arn: ::String
|
101
|
+
attr_accessor last_modified_date: ::Integer
|
102
|
+
attr_accessor name: ::String
|
103
|
+
attr_accessor standby_replicas: ("ENABLED" | "DISABLED")
|
104
|
+
attr_accessor status: ("CREATING" | "DELETING" | "ACTIVE" | "FAILED")
|
105
|
+
attr_accessor type: ("SEARCH" | "TIMESERIES" | "VECTORSEARCH")
|
106
|
+
SENSITIVE: []
|
107
|
+
end
|
108
|
+
|
109
|
+
class CollectionErrorDetail
|
110
|
+
attr_accessor error_code: ::String
|
111
|
+
attr_accessor error_message: ::String
|
112
|
+
attr_accessor id: ::String
|
113
|
+
attr_accessor name: ::String
|
114
|
+
SENSITIVE: []
|
115
|
+
end
|
116
|
+
|
117
|
+
class CollectionFilters
|
118
|
+
attr_accessor name: ::String
|
119
|
+
attr_accessor status: ("CREATING" | "DELETING" | "ACTIVE" | "FAILED")
|
120
|
+
SENSITIVE: []
|
121
|
+
end
|
122
|
+
|
123
|
+
class CollectionSummary
|
124
|
+
attr_accessor arn: ::String
|
125
|
+
attr_accessor id: ::String
|
126
|
+
attr_accessor name: ::String
|
127
|
+
attr_accessor status: ("CREATING" | "DELETING" | "ACTIVE" | "FAILED")
|
128
|
+
SENSITIVE: []
|
129
|
+
end
|
130
|
+
|
131
|
+
class ConflictException
|
132
|
+
attr_accessor message: ::String
|
133
|
+
SENSITIVE: []
|
134
|
+
end
|
135
|
+
|
136
|
+
class CreateAccessPolicyRequest
|
137
|
+
attr_accessor client_token: ::String
|
138
|
+
attr_accessor description: ::String
|
139
|
+
attr_accessor name: ::String
|
140
|
+
attr_accessor policy: ::String
|
141
|
+
attr_accessor type: ("data")
|
142
|
+
SENSITIVE: []
|
143
|
+
end
|
144
|
+
|
145
|
+
class CreateAccessPolicyResponse
|
146
|
+
attr_accessor access_policy_detail: Types::AccessPolicyDetail
|
147
|
+
SENSITIVE: []
|
148
|
+
end
|
149
|
+
|
150
|
+
class CreateCollectionDetail
|
151
|
+
attr_accessor arn: ::String
|
152
|
+
attr_accessor created_date: ::Integer
|
153
|
+
attr_accessor description: ::String
|
154
|
+
attr_accessor id: ::String
|
155
|
+
attr_accessor kms_key_arn: ::String
|
156
|
+
attr_accessor last_modified_date: ::Integer
|
157
|
+
attr_accessor name: ::String
|
158
|
+
attr_accessor standby_replicas: ("ENABLED" | "DISABLED")
|
159
|
+
attr_accessor status: ("CREATING" | "DELETING" | "ACTIVE" | "FAILED")
|
160
|
+
attr_accessor type: ("SEARCH" | "TIMESERIES" | "VECTORSEARCH")
|
161
|
+
SENSITIVE: []
|
162
|
+
end
|
163
|
+
|
164
|
+
class CreateCollectionRequest
|
165
|
+
attr_accessor client_token: ::String
|
166
|
+
attr_accessor description: ::String
|
167
|
+
attr_accessor name: ::String
|
168
|
+
attr_accessor standby_replicas: ("ENABLED" | "DISABLED")
|
169
|
+
attr_accessor tags: ::Array[Types::Tag]
|
170
|
+
attr_accessor type: ("SEARCH" | "TIMESERIES" | "VECTORSEARCH")
|
171
|
+
SENSITIVE: []
|
172
|
+
end
|
173
|
+
|
174
|
+
class CreateCollectionResponse
|
175
|
+
attr_accessor create_collection_detail: Types::CreateCollectionDetail
|
176
|
+
SENSITIVE: []
|
177
|
+
end
|
178
|
+
|
179
|
+
class CreateLifecyclePolicyRequest
|
180
|
+
attr_accessor client_token: ::String
|
181
|
+
attr_accessor description: ::String
|
182
|
+
attr_accessor name: ::String
|
183
|
+
attr_accessor policy: ::String
|
184
|
+
attr_accessor type: ("retention")
|
185
|
+
SENSITIVE: []
|
186
|
+
end
|
187
|
+
|
188
|
+
class CreateLifecyclePolicyResponse
|
189
|
+
attr_accessor lifecycle_policy_detail: Types::LifecyclePolicyDetail
|
190
|
+
SENSITIVE: []
|
191
|
+
end
|
192
|
+
|
193
|
+
class CreateSecurityConfigRequest
|
194
|
+
attr_accessor client_token: ::String
|
195
|
+
attr_accessor description: ::String
|
196
|
+
attr_accessor name: ::String
|
197
|
+
attr_accessor saml_options: Types::SamlConfigOptions
|
198
|
+
attr_accessor type: ("saml")
|
199
|
+
SENSITIVE: []
|
200
|
+
end
|
201
|
+
|
202
|
+
class CreateSecurityConfigResponse
|
203
|
+
attr_accessor security_config_detail: Types::SecurityConfigDetail
|
204
|
+
SENSITIVE: []
|
205
|
+
end
|
206
|
+
|
207
|
+
class CreateSecurityPolicyRequest
|
208
|
+
attr_accessor client_token: ::String
|
209
|
+
attr_accessor description: ::String
|
210
|
+
attr_accessor name: ::String
|
211
|
+
attr_accessor policy: ::String
|
212
|
+
attr_accessor type: ("encryption" | "network")
|
213
|
+
SENSITIVE: []
|
214
|
+
end
|
215
|
+
|
216
|
+
class CreateSecurityPolicyResponse
|
217
|
+
attr_accessor security_policy_detail: Types::SecurityPolicyDetail
|
218
|
+
SENSITIVE: []
|
219
|
+
end
|
220
|
+
|
221
|
+
class CreateVpcEndpointDetail
|
222
|
+
attr_accessor id: ::String
|
223
|
+
attr_accessor name: ::String
|
224
|
+
attr_accessor status: ("PENDING" | "DELETING" | "ACTIVE" | "FAILED")
|
225
|
+
SENSITIVE: []
|
226
|
+
end
|
227
|
+
|
228
|
+
class CreateVpcEndpointRequest
|
229
|
+
attr_accessor client_token: ::String
|
230
|
+
attr_accessor name: ::String
|
231
|
+
attr_accessor security_group_ids: ::Array[::String]
|
232
|
+
attr_accessor subnet_ids: ::Array[::String]
|
233
|
+
attr_accessor vpc_id: ::String
|
234
|
+
SENSITIVE: []
|
235
|
+
end
|
236
|
+
|
237
|
+
class CreateVpcEndpointResponse
|
238
|
+
attr_accessor create_vpc_endpoint_detail: Types::CreateVpcEndpointDetail
|
239
|
+
SENSITIVE: []
|
240
|
+
end
|
241
|
+
|
242
|
+
class DeleteAccessPolicyRequest
|
243
|
+
attr_accessor client_token: ::String
|
244
|
+
attr_accessor name: ::String
|
245
|
+
attr_accessor type: ("data")
|
246
|
+
SENSITIVE: []
|
247
|
+
end
|
248
|
+
|
249
|
+
class DeleteAccessPolicyResponse < Aws::EmptyStructure
|
250
|
+
end
|
251
|
+
|
252
|
+
class DeleteCollectionDetail
|
253
|
+
attr_accessor id: ::String
|
254
|
+
attr_accessor name: ::String
|
255
|
+
attr_accessor status: ("CREATING" | "DELETING" | "ACTIVE" | "FAILED")
|
256
|
+
SENSITIVE: []
|
257
|
+
end
|
258
|
+
|
259
|
+
class DeleteCollectionRequest
|
260
|
+
attr_accessor client_token: ::String
|
261
|
+
attr_accessor id: ::String
|
262
|
+
SENSITIVE: []
|
263
|
+
end
|
264
|
+
|
265
|
+
class DeleteCollectionResponse
|
266
|
+
attr_accessor delete_collection_detail: Types::DeleteCollectionDetail
|
267
|
+
SENSITIVE: []
|
268
|
+
end
|
269
|
+
|
270
|
+
class DeleteLifecyclePolicyRequest
|
271
|
+
attr_accessor client_token: ::String
|
272
|
+
attr_accessor name: ::String
|
273
|
+
attr_accessor type: ("retention")
|
274
|
+
SENSITIVE: []
|
275
|
+
end
|
276
|
+
|
277
|
+
class DeleteLifecyclePolicyResponse < Aws::EmptyStructure
|
278
|
+
end
|
279
|
+
|
280
|
+
class DeleteSecurityConfigRequest
|
281
|
+
attr_accessor client_token: ::String
|
282
|
+
attr_accessor id: ::String
|
283
|
+
SENSITIVE: []
|
284
|
+
end
|
285
|
+
|
286
|
+
class DeleteSecurityConfigResponse < Aws::EmptyStructure
|
287
|
+
end
|
288
|
+
|
289
|
+
class DeleteSecurityPolicyRequest
|
290
|
+
attr_accessor client_token: ::String
|
291
|
+
attr_accessor name: ::String
|
292
|
+
attr_accessor type: ("encryption" | "network")
|
293
|
+
SENSITIVE: []
|
294
|
+
end
|
295
|
+
|
296
|
+
class DeleteSecurityPolicyResponse < Aws::EmptyStructure
|
297
|
+
end
|
298
|
+
|
299
|
+
class DeleteVpcEndpointDetail
|
300
|
+
attr_accessor id: ::String
|
301
|
+
attr_accessor name: ::String
|
302
|
+
attr_accessor status: ("PENDING" | "DELETING" | "ACTIVE" | "FAILED")
|
303
|
+
SENSITIVE: []
|
304
|
+
end
|
305
|
+
|
306
|
+
class DeleteVpcEndpointRequest
|
307
|
+
attr_accessor client_token: ::String
|
308
|
+
attr_accessor id: ::String
|
309
|
+
SENSITIVE: []
|
310
|
+
end
|
311
|
+
|
312
|
+
class DeleteVpcEndpointResponse
|
313
|
+
attr_accessor delete_vpc_endpoint_detail: Types::DeleteVpcEndpointDetail
|
314
|
+
SENSITIVE: []
|
315
|
+
end
|
316
|
+
|
317
|
+
class EffectiveLifecyclePolicyDetail
|
318
|
+
attr_accessor no_min_retention_period: bool
|
319
|
+
attr_accessor policy_name: ::String
|
320
|
+
attr_accessor resource: ::String
|
321
|
+
attr_accessor resource_type: ("index")
|
322
|
+
attr_accessor retention_period: ::String
|
323
|
+
attr_accessor type: ("retention")
|
324
|
+
SENSITIVE: []
|
325
|
+
end
|
326
|
+
|
327
|
+
class EffectiveLifecyclePolicyErrorDetail
|
328
|
+
attr_accessor error_code: ::String
|
329
|
+
attr_accessor error_message: ::String
|
330
|
+
attr_accessor resource: ::String
|
331
|
+
attr_accessor type: ("retention")
|
332
|
+
SENSITIVE: []
|
333
|
+
end
|
334
|
+
|
335
|
+
class GetAccessPolicyRequest
|
336
|
+
attr_accessor name: ::String
|
337
|
+
attr_accessor type: ("data")
|
338
|
+
SENSITIVE: []
|
339
|
+
end
|
340
|
+
|
341
|
+
class GetAccessPolicyResponse
|
342
|
+
attr_accessor access_policy_detail: Types::AccessPolicyDetail
|
343
|
+
SENSITIVE: []
|
344
|
+
end
|
345
|
+
|
346
|
+
class GetAccountSettingsRequest < Aws::EmptyStructure
|
347
|
+
end
|
348
|
+
|
349
|
+
class GetAccountSettingsResponse
|
350
|
+
attr_accessor account_settings_detail: Types::AccountSettingsDetail
|
351
|
+
SENSITIVE: []
|
352
|
+
end
|
353
|
+
|
354
|
+
class GetPoliciesStatsRequest < Aws::EmptyStructure
|
355
|
+
end
|
356
|
+
|
357
|
+
class GetPoliciesStatsResponse
|
358
|
+
attr_accessor access_policy_stats: Types::AccessPolicyStats
|
359
|
+
attr_accessor lifecycle_policy_stats: Types::LifecyclePolicyStats
|
360
|
+
attr_accessor security_config_stats: Types::SecurityConfigStats
|
361
|
+
attr_accessor security_policy_stats: Types::SecurityPolicyStats
|
362
|
+
attr_accessor total_policy_count: ::Integer
|
363
|
+
SENSITIVE: []
|
364
|
+
end
|
365
|
+
|
366
|
+
class GetSecurityConfigRequest
|
367
|
+
attr_accessor id: ::String
|
368
|
+
SENSITIVE: []
|
369
|
+
end
|
370
|
+
|
371
|
+
class GetSecurityConfigResponse
|
372
|
+
attr_accessor security_config_detail: Types::SecurityConfigDetail
|
373
|
+
SENSITIVE: []
|
374
|
+
end
|
375
|
+
|
376
|
+
class GetSecurityPolicyRequest
|
377
|
+
attr_accessor name: ::String
|
378
|
+
attr_accessor type: ("encryption" | "network")
|
379
|
+
SENSITIVE: []
|
380
|
+
end
|
381
|
+
|
382
|
+
class GetSecurityPolicyResponse
|
383
|
+
attr_accessor security_policy_detail: Types::SecurityPolicyDetail
|
384
|
+
SENSITIVE: []
|
385
|
+
end
|
386
|
+
|
387
|
+
class InternalServerException
|
388
|
+
attr_accessor message: ::String
|
389
|
+
SENSITIVE: []
|
390
|
+
end
|
391
|
+
|
392
|
+
class LifecyclePolicyDetail
|
393
|
+
attr_accessor created_date: ::Integer
|
394
|
+
attr_accessor description: ::String
|
395
|
+
attr_accessor last_modified_date: ::Integer
|
396
|
+
attr_accessor name: ::String
|
397
|
+
attr_accessor policy: untyped
|
398
|
+
attr_accessor policy_version: ::String
|
399
|
+
attr_accessor type: ("retention")
|
400
|
+
SENSITIVE: []
|
401
|
+
end
|
402
|
+
|
403
|
+
class LifecyclePolicyErrorDetail
|
404
|
+
attr_accessor error_code: ::String
|
405
|
+
attr_accessor error_message: ::String
|
406
|
+
attr_accessor name: ::String
|
407
|
+
attr_accessor type: ("retention")
|
408
|
+
SENSITIVE: []
|
409
|
+
end
|
410
|
+
|
411
|
+
class LifecyclePolicyIdentifier
|
412
|
+
attr_accessor name: ::String
|
413
|
+
attr_accessor type: ("retention")
|
414
|
+
SENSITIVE: []
|
415
|
+
end
|
416
|
+
|
417
|
+
class LifecyclePolicyResourceIdentifier
|
418
|
+
attr_accessor resource: ::String
|
419
|
+
attr_accessor type: ("retention")
|
420
|
+
SENSITIVE: []
|
421
|
+
end
|
422
|
+
|
423
|
+
class LifecyclePolicyStats
|
424
|
+
attr_accessor retention_policy_count: ::Integer
|
425
|
+
SENSITIVE: []
|
426
|
+
end
|
427
|
+
|
428
|
+
class LifecyclePolicySummary
|
429
|
+
attr_accessor created_date: ::Integer
|
430
|
+
attr_accessor description: ::String
|
431
|
+
attr_accessor last_modified_date: ::Integer
|
432
|
+
attr_accessor name: ::String
|
433
|
+
attr_accessor policy_version: ::String
|
434
|
+
attr_accessor type: ("retention")
|
435
|
+
SENSITIVE: []
|
436
|
+
end
|
437
|
+
|
438
|
+
class ListAccessPoliciesRequest
|
439
|
+
attr_accessor max_results: ::Integer
|
440
|
+
attr_accessor next_token: ::String
|
441
|
+
attr_accessor resource: ::Array[::String]
|
442
|
+
attr_accessor type: ("data")
|
443
|
+
SENSITIVE: []
|
444
|
+
end
|
445
|
+
|
446
|
+
class ListAccessPoliciesResponse
|
447
|
+
attr_accessor access_policy_summaries: ::Array[Types::AccessPolicySummary]
|
448
|
+
attr_accessor next_token: ::String
|
449
|
+
SENSITIVE: []
|
450
|
+
end
|
451
|
+
|
452
|
+
class ListCollectionsRequest
|
453
|
+
attr_accessor collection_filters: Types::CollectionFilters
|
454
|
+
attr_accessor max_results: ::Integer
|
455
|
+
attr_accessor next_token: ::String
|
456
|
+
SENSITIVE: []
|
457
|
+
end
|
458
|
+
|
459
|
+
class ListCollectionsResponse
|
460
|
+
attr_accessor collection_summaries: ::Array[Types::CollectionSummary]
|
461
|
+
attr_accessor next_token: ::String
|
462
|
+
SENSITIVE: []
|
463
|
+
end
|
464
|
+
|
465
|
+
class ListLifecyclePoliciesRequest
|
466
|
+
attr_accessor max_results: ::Integer
|
467
|
+
attr_accessor next_token: ::String
|
468
|
+
attr_accessor resources: ::Array[::String]
|
469
|
+
attr_accessor type: ("retention")
|
470
|
+
SENSITIVE: []
|
471
|
+
end
|
472
|
+
|
473
|
+
class ListLifecyclePoliciesResponse
|
474
|
+
attr_accessor lifecycle_policy_summaries: ::Array[Types::LifecyclePolicySummary]
|
475
|
+
attr_accessor next_token: ::String
|
476
|
+
SENSITIVE: []
|
477
|
+
end
|
478
|
+
|
479
|
+
class ListSecurityConfigsRequest
|
480
|
+
attr_accessor max_results: ::Integer
|
481
|
+
attr_accessor next_token: ::String
|
482
|
+
attr_accessor type: ("saml")
|
483
|
+
SENSITIVE: []
|
484
|
+
end
|
485
|
+
|
486
|
+
class ListSecurityConfigsResponse
|
487
|
+
attr_accessor next_token: ::String
|
488
|
+
attr_accessor security_config_summaries: ::Array[Types::SecurityConfigSummary]
|
489
|
+
SENSITIVE: []
|
490
|
+
end
|
491
|
+
|
492
|
+
class ListSecurityPoliciesRequest
|
493
|
+
attr_accessor max_results: ::Integer
|
494
|
+
attr_accessor next_token: ::String
|
495
|
+
attr_accessor resource: ::Array[::String]
|
496
|
+
attr_accessor type: ("encryption" | "network")
|
497
|
+
SENSITIVE: []
|
498
|
+
end
|
499
|
+
|
500
|
+
class ListSecurityPoliciesResponse
|
501
|
+
attr_accessor next_token: ::String
|
502
|
+
attr_accessor security_policy_summaries: ::Array[Types::SecurityPolicySummary]
|
503
|
+
SENSITIVE: []
|
504
|
+
end
|
505
|
+
|
506
|
+
class ListTagsForResourceRequest
|
507
|
+
attr_accessor resource_arn: ::String
|
508
|
+
SENSITIVE: []
|
509
|
+
end
|
510
|
+
|
511
|
+
class ListTagsForResourceResponse
|
512
|
+
attr_accessor tags: ::Array[Types::Tag]
|
513
|
+
SENSITIVE: []
|
514
|
+
end
|
515
|
+
|
516
|
+
class ListVpcEndpointsRequest
|
517
|
+
attr_accessor max_results: ::Integer
|
518
|
+
attr_accessor next_token: ::String
|
519
|
+
attr_accessor vpc_endpoint_filters: Types::VpcEndpointFilters
|
520
|
+
SENSITIVE: []
|
521
|
+
end
|
522
|
+
|
523
|
+
class ListVpcEndpointsResponse
|
524
|
+
attr_accessor next_token: ::String
|
525
|
+
attr_accessor vpc_endpoint_summaries: ::Array[Types::VpcEndpointSummary]
|
526
|
+
SENSITIVE: []
|
527
|
+
end
|
528
|
+
|
529
|
+
class OcuLimitExceededException
|
530
|
+
attr_accessor message: ::String
|
531
|
+
SENSITIVE: []
|
532
|
+
end
|
533
|
+
|
534
|
+
class ResourceNotFoundException
|
535
|
+
attr_accessor message: ::String
|
536
|
+
SENSITIVE: []
|
537
|
+
end
|
538
|
+
|
539
|
+
class SamlConfigOptions
|
540
|
+
attr_accessor group_attribute: ::String
|
541
|
+
attr_accessor metadata: ::String
|
542
|
+
attr_accessor session_timeout: ::Integer
|
543
|
+
attr_accessor user_attribute: ::String
|
544
|
+
SENSITIVE: []
|
545
|
+
end
|
546
|
+
|
547
|
+
class SecurityConfigDetail
|
548
|
+
attr_accessor config_version: ::String
|
549
|
+
attr_accessor created_date: ::Integer
|
550
|
+
attr_accessor description: ::String
|
551
|
+
attr_accessor id: ::String
|
552
|
+
attr_accessor last_modified_date: ::Integer
|
553
|
+
attr_accessor saml_options: Types::SamlConfigOptions
|
554
|
+
attr_accessor type: ("saml")
|
555
|
+
SENSITIVE: []
|
556
|
+
end
|
557
|
+
|
558
|
+
class SecurityConfigStats
|
559
|
+
attr_accessor saml_config_count: ::Integer
|
560
|
+
SENSITIVE: []
|
561
|
+
end
|
562
|
+
|
563
|
+
class SecurityConfigSummary
|
564
|
+
attr_accessor config_version: ::String
|
565
|
+
attr_accessor created_date: ::Integer
|
566
|
+
attr_accessor description: ::String
|
567
|
+
attr_accessor id: ::String
|
568
|
+
attr_accessor last_modified_date: ::Integer
|
569
|
+
attr_accessor type: ("saml")
|
570
|
+
SENSITIVE: []
|
571
|
+
end
|
572
|
+
|
573
|
+
class SecurityPolicyDetail
|
574
|
+
attr_accessor created_date: ::Integer
|
575
|
+
attr_accessor description: ::String
|
576
|
+
attr_accessor last_modified_date: ::Integer
|
577
|
+
attr_accessor name: ::String
|
578
|
+
attr_accessor policy: untyped
|
579
|
+
attr_accessor policy_version: ::String
|
580
|
+
attr_accessor type: ("encryption" | "network")
|
581
|
+
SENSITIVE: []
|
582
|
+
end
|
583
|
+
|
584
|
+
class SecurityPolicyStats
|
585
|
+
attr_accessor encryption_policy_count: ::Integer
|
586
|
+
attr_accessor network_policy_count: ::Integer
|
587
|
+
SENSITIVE: []
|
588
|
+
end
|
589
|
+
|
590
|
+
class SecurityPolicySummary
|
591
|
+
attr_accessor created_date: ::Integer
|
592
|
+
attr_accessor description: ::String
|
593
|
+
attr_accessor last_modified_date: ::Integer
|
594
|
+
attr_accessor name: ::String
|
595
|
+
attr_accessor policy_version: ::String
|
596
|
+
attr_accessor type: ("encryption" | "network")
|
597
|
+
SENSITIVE: []
|
598
|
+
end
|
599
|
+
|
600
|
+
class ServiceQuotaExceededException
|
601
|
+
attr_accessor message: ::String
|
602
|
+
attr_accessor quota_code: ::String
|
603
|
+
attr_accessor resource_id: ::String
|
604
|
+
attr_accessor resource_type: ::String
|
605
|
+
attr_accessor service_code: ::String
|
606
|
+
SENSITIVE: []
|
607
|
+
end
|
608
|
+
|
609
|
+
class Tag
|
610
|
+
attr_accessor key: ::String
|
611
|
+
attr_accessor value: ::String
|
612
|
+
SENSITIVE: []
|
613
|
+
end
|
614
|
+
|
615
|
+
class TagResourceRequest
|
616
|
+
attr_accessor resource_arn: ::String
|
617
|
+
attr_accessor tags: ::Array[Types::Tag]
|
618
|
+
SENSITIVE: []
|
619
|
+
end
|
620
|
+
|
621
|
+
class TagResourceResponse < Aws::EmptyStructure
|
622
|
+
end
|
623
|
+
|
624
|
+
class UntagResourceRequest
|
625
|
+
attr_accessor resource_arn: ::String
|
626
|
+
attr_accessor tag_keys: ::Array[::String]
|
627
|
+
SENSITIVE: []
|
628
|
+
end
|
629
|
+
|
630
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
631
|
+
end
|
632
|
+
|
633
|
+
class UpdateAccessPolicyRequest
|
634
|
+
attr_accessor client_token: ::String
|
635
|
+
attr_accessor description: ::String
|
636
|
+
attr_accessor name: ::String
|
637
|
+
attr_accessor policy: ::String
|
638
|
+
attr_accessor policy_version: ::String
|
639
|
+
attr_accessor type: ("data")
|
640
|
+
SENSITIVE: []
|
641
|
+
end
|
642
|
+
|
643
|
+
class UpdateAccessPolicyResponse
|
644
|
+
attr_accessor access_policy_detail: Types::AccessPolicyDetail
|
645
|
+
SENSITIVE: []
|
646
|
+
end
|
647
|
+
|
648
|
+
class UpdateAccountSettingsRequest
|
649
|
+
attr_accessor capacity_limits: Types::CapacityLimits
|
650
|
+
SENSITIVE: []
|
651
|
+
end
|
652
|
+
|
653
|
+
class UpdateAccountSettingsResponse
|
654
|
+
attr_accessor account_settings_detail: Types::AccountSettingsDetail
|
655
|
+
SENSITIVE: []
|
656
|
+
end
|
657
|
+
|
658
|
+
class UpdateCollectionDetail
|
659
|
+
attr_accessor arn: ::String
|
660
|
+
attr_accessor created_date: ::Integer
|
661
|
+
attr_accessor description: ::String
|
662
|
+
attr_accessor id: ::String
|
663
|
+
attr_accessor last_modified_date: ::Integer
|
664
|
+
attr_accessor name: ::String
|
665
|
+
attr_accessor status: ("CREATING" | "DELETING" | "ACTIVE" | "FAILED")
|
666
|
+
attr_accessor type: ("SEARCH" | "TIMESERIES" | "VECTORSEARCH")
|
667
|
+
SENSITIVE: []
|
668
|
+
end
|
669
|
+
|
670
|
+
class UpdateCollectionRequest
|
671
|
+
attr_accessor client_token: ::String
|
672
|
+
attr_accessor description: ::String
|
673
|
+
attr_accessor id: ::String
|
674
|
+
SENSITIVE: []
|
675
|
+
end
|
676
|
+
|
677
|
+
class UpdateCollectionResponse
|
678
|
+
attr_accessor update_collection_detail: Types::UpdateCollectionDetail
|
679
|
+
SENSITIVE: []
|
680
|
+
end
|
681
|
+
|
682
|
+
class UpdateLifecyclePolicyRequest
|
683
|
+
attr_accessor client_token: ::String
|
684
|
+
attr_accessor description: ::String
|
685
|
+
attr_accessor name: ::String
|
686
|
+
attr_accessor policy: ::String
|
687
|
+
attr_accessor policy_version: ::String
|
688
|
+
attr_accessor type: ("retention")
|
689
|
+
SENSITIVE: []
|
690
|
+
end
|
691
|
+
|
692
|
+
class UpdateLifecyclePolicyResponse
|
693
|
+
attr_accessor lifecycle_policy_detail: Types::LifecyclePolicyDetail
|
694
|
+
SENSITIVE: []
|
695
|
+
end
|
696
|
+
|
697
|
+
class UpdateSecurityConfigRequest
|
698
|
+
attr_accessor client_token: ::String
|
699
|
+
attr_accessor config_version: ::String
|
700
|
+
attr_accessor description: ::String
|
701
|
+
attr_accessor id: ::String
|
702
|
+
attr_accessor saml_options: Types::SamlConfigOptions
|
703
|
+
SENSITIVE: []
|
704
|
+
end
|
705
|
+
|
706
|
+
class UpdateSecurityConfigResponse
|
707
|
+
attr_accessor security_config_detail: Types::SecurityConfigDetail
|
708
|
+
SENSITIVE: []
|
709
|
+
end
|
710
|
+
|
711
|
+
class UpdateSecurityPolicyRequest
|
712
|
+
attr_accessor client_token: ::String
|
713
|
+
attr_accessor description: ::String
|
714
|
+
attr_accessor name: ::String
|
715
|
+
attr_accessor policy: ::String
|
716
|
+
attr_accessor policy_version: ::String
|
717
|
+
attr_accessor type: ("encryption" | "network")
|
718
|
+
SENSITIVE: []
|
719
|
+
end
|
720
|
+
|
721
|
+
class UpdateSecurityPolicyResponse
|
722
|
+
attr_accessor security_policy_detail: Types::SecurityPolicyDetail
|
723
|
+
SENSITIVE: []
|
724
|
+
end
|
725
|
+
|
726
|
+
class UpdateVpcEndpointDetail
|
727
|
+
attr_accessor id: ::String
|
728
|
+
attr_accessor last_modified_date: ::Integer
|
729
|
+
attr_accessor name: ::String
|
730
|
+
attr_accessor security_group_ids: ::Array[::String]
|
731
|
+
attr_accessor status: ("PENDING" | "DELETING" | "ACTIVE" | "FAILED")
|
732
|
+
attr_accessor subnet_ids: ::Array[::String]
|
733
|
+
SENSITIVE: []
|
734
|
+
end
|
735
|
+
|
736
|
+
class UpdateVpcEndpointRequest
|
737
|
+
attr_accessor add_security_group_ids: ::Array[::String]
|
738
|
+
attr_accessor add_subnet_ids: ::Array[::String]
|
739
|
+
attr_accessor client_token: ::String
|
740
|
+
attr_accessor id: ::String
|
741
|
+
attr_accessor remove_security_group_ids: ::Array[::String]
|
742
|
+
attr_accessor remove_subnet_ids: ::Array[::String]
|
743
|
+
SENSITIVE: []
|
744
|
+
end
|
745
|
+
|
746
|
+
class UpdateVpcEndpointResponse
|
747
|
+
attr_accessor update_vpc_endpoint_detail: Types::UpdateVpcEndpointDetail
|
748
|
+
SENSITIVE: []
|
749
|
+
end
|
750
|
+
|
751
|
+
class ValidationException
|
752
|
+
attr_accessor message: ::String
|
753
|
+
SENSITIVE: []
|
754
|
+
end
|
755
|
+
|
756
|
+
class VpcEndpointDetail
|
757
|
+
attr_accessor created_date: ::Integer
|
758
|
+
attr_accessor id: ::String
|
759
|
+
attr_accessor name: ::String
|
760
|
+
attr_accessor security_group_ids: ::Array[::String]
|
761
|
+
attr_accessor status: ("PENDING" | "DELETING" | "ACTIVE" | "FAILED")
|
762
|
+
attr_accessor subnet_ids: ::Array[::String]
|
763
|
+
attr_accessor vpc_id: ::String
|
764
|
+
SENSITIVE: []
|
765
|
+
end
|
766
|
+
|
767
|
+
class VpcEndpointErrorDetail
|
768
|
+
attr_accessor error_code: ::String
|
769
|
+
attr_accessor error_message: ::String
|
770
|
+
attr_accessor id: ::String
|
771
|
+
SENSITIVE: []
|
772
|
+
end
|
773
|
+
|
774
|
+
class VpcEndpointFilters
|
775
|
+
attr_accessor status: ("PENDING" | "DELETING" | "ACTIVE" | "FAILED")
|
776
|
+
SENSITIVE: []
|
777
|
+
end
|
778
|
+
|
779
|
+
class VpcEndpointSummary
|
780
|
+
attr_accessor id: ::String
|
781
|
+
attr_accessor name: ::String
|
782
|
+
attr_accessor status: ("PENDING" | "DELETING" | "ACTIVE" | "FAILED")
|
783
|
+
SENSITIVE: []
|
784
|
+
end
|
785
|
+
end
|
786
|
+
end
|