aws-sdk-opensearchserverless 1.52.0 → 1.54.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.
@@ -130,6 +130,42 @@ module Aws::OpenSearchServerless
130
130
  include Aws::Structure
131
131
  end
132
132
 
133
+ # @!attribute [rw] ids
134
+ # A list of collection group IDs. You can't provide names and IDs in
135
+ # the same request.
136
+ # @return [Array<String>]
137
+ #
138
+ # @!attribute [rw] names
139
+ # A list of collection group names. You can't provide names and IDs
140
+ # in the same request.
141
+ # @return [Array<String>]
142
+ #
143
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearchserverless-2021-11-01/BatchGetCollectionGroupRequest AWS API Documentation
144
+ #
145
+ class BatchGetCollectionGroupRequest < Struct.new(
146
+ :ids,
147
+ :names)
148
+ SENSITIVE = []
149
+ include Aws::Structure
150
+ end
151
+
152
+ # @!attribute [rw] collection_group_details
153
+ # Details about each collection group.
154
+ # @return [Array<Types::CollectionGroupDetail>]
155
+ #
156
+ # @!attribute [rw] collection_group_error_details
157
+ # Error information for the request.
158
+ # @return [Array<Types::CollectionGroupErrorDetail>]
159
+ #
160
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearchserverless-2021-11-01/BatchGetCollectionGroupResponse AWS API Documentation
161
+ #
162
+ class BatchGetCollectionGroupResponse < Struct.new(
163
+ :collection_group_details,
164
+ :collection_group_error_details)
165
+ SENSITIVE = []
166
+ include Aws::Structure
167
+ end
168
+
133
169
  # @!attribute [rw] ids
134
170
  # A list of collection IDs. You can't provide names and IDs in the
135
171
  # same request. The ID is part of the collection endpoint. You can
@@ -361,6 +397,10 @@ module Aws::OpenSearchServerless
361
397
  # A message associated with the failure code.
362
398
  # @return [String]
363
399
  #
400
+ # @!attribute [rw] collection_group_name
401
+ # The name of the collection group that contains this collection.
402
+ # @return [String]
403
+ #
364
404
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearchserverless-2021-11-01/CollectionDetail AWS API Documentation
365
405
  #
366
406
  class CollectionDetail < Struct.new(
@@ -379,7 +419,8 @@ module Aws::OpenSearchServerless
379
419
  :dashboard_endpoint,
380
420
  :fips_endpoints,
381
421
  :failure_code,
382
- :failure_message)
422
+ :failure_message,
423
+ :collection_group_name)
383
424
  SENSITIVE = []
384
425
  include Aws::Structure
385
426
  end
@@ -427,11 +468,176 @@ module Aws::OpenSearchServerless
427
468
  # The current status of the collection.
428
469
  # @return [String]
429
470
  #
471
+ # @!attribute [rw] collection_group_name
472
+ # The name of the collection group to filter by.
473
+ # @return [String]
474
+ #
430
475
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearchserverless-2021-11-01/CollectionFilters AWS API Documentation
431
476
  #
432
477
  class CollectionFilters < Struct.new(
433
478
  :name,
434
- :status)
479
+ :status,
480
+ :collection_group_name)
481
+ SENSITIVE = []
482
+ include Aws::Structure
483
+ end
484
+
485
+ # Capacity limits for a collection group. These limits define the
486
+ # minimum and maximum OpenSearch Compute Units (OCUs) for indexing and
487
+ # search operations that can be used by collections in the group.
488
+ #
489
+ # @!attribute [rw] max_indexing_capacity_in_ocu
490
+ # The maximum indexing capacity for collections in the group.
491
+ # @return [Float]
492
+ #
493
+ # @!attribute [rw] max_search_capacity_in_ocu
494
+ # The maximum search capacity for collections in the group.
495
+ # @return [Float]
496
+ #
497
+ # @!attribute [rw] min_indexing_capacity_in_ocu
498
+ # The minimum indexing capacity for collections in the group.
499
+ # @return [Float]
500
+ #
501
+ # @!attribute [rw] min_search_capacity_in_ocu
502
+ # The minimum search capacity for collections in the group.
503
+ # @return [Float]
504
+ #
505
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearchserverless-2021-11-01/CollectionGroupCapacityLimits AWS API Documentation
506
+ #
507
+ class CollectionGroupCapacityLimits < Struct.new(
508
+ :max_indexing_capacity_in_ocu,
509
+ :max_search_capacity_in_ocu,
510
+ :min_indexing_capacity_in_ocu,
511
+ :min_search_capacity_in_ocu)
512
+ SENSITIVE = []
513
+ include Aws::Structure
514
+ end
515
+
516
+ # Details about a collection group.
517
+ #
518
+ # @!attribute [rw] id
519
+ # The unique identifier of the collection group.
520
+ # @return [String]
521
+ #
522
+ # @!attribute [rw] arn
523
+ # The Amazon Resource Name (ARN) of the collection group.
524
+ # @return [String]
525
+ #
526
+ # @!attribute [rw] name
527
+ # The name of the collection group.
528
+ # @return [String]
529
+ #
530
+ # @!attribute [rw] standby_replicas
531
+ # Indicates whether standby replicas are used for the collection
532
+ # group.
533
+ # @return [String]
534
+ #
535
+ # @!attribute [rw] description
536
+ # The description of the collection group.
537
+ # @return [String]
538
+ #
539
+ # @!attribute [rw] tags
540
+ # A map of key-value pairs associated with the collection group.
541
+ # @return [Array<Types::Tag>]
542
+ #
543
+ # @!attribute [rw] created_date
544
+ # The Epoch time when the collection group was created.
545
+ # @return [Integer]
546
+ #
547
+ # @!attribute [rw] capacity_limits
548
+ # The capacity limits for the collection group, in OpenSearch Compute
549
+ # Units (OCUs).
550
+ # @return [Types::CollectionGroupCapacityLimits]
551
+ #
552
+ # @!attribute [rw] number_of_collections
553
+ # The number of collections associated with the collection group.
554
+ # @return [Integer]
555
+ #
556
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearchserverless-2021-11-01/CollectionGroupDetail AWS API Documentation
557
+ #
558
+ class CollectionGroupDetail < Struct.new(
559
+ :id,
560
+ :arn,
561
+ :name,
562
+ :standby_replicas,
563
+ :description,
564
+ :tags,
565
+ :created_date,
566
+ :capacity_limits,
567
+ :number_of_collections)
568
+ SENSITIVE = []
569
+ include Aws::Structure
570
+ end
571
+
572
+ # Error details for a collection group operation.
573
+ #
574
+ # @!attribute [rw] id
575
+ # If the request contains collection group IDs, the response includes
576
+ # the IDs provided in the request.
577
+ # @return [String]
578
+ #
579
+ # @!attribute [rw] name
580
+ # If the request contains collection group names, the response
581
+ # includes the names provided in the request.
582
+ # @return [String]
583
+ #
584
+ # @!attribute [rw] error_message
585
+ # A description of the error. For example, `The specified Collection
586
+ # Group is not found.`
587
+ # @return [String]
588
+ #
589
+ # @!attribute [rw] error_code
590
+ # The error code for the request. For example, `NOT_FOUND`.
591
+ # @return [String]
592
+ #
593
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearchserverless-2021-11-01/CollectionGroupErrorDetail AWS API Documentation
594
+ #
595
+ class CollectionGroupErrorDetail < Struct.new(
596
+ :id,
597
+ :name,
598
+ :error_message,
599
+ :error_code)
600
+ SENSITIVE = []
601
+ include Aws::Structure
602
+ end
603
+
604
+ # Summary information about a collection group.
605
+ #
606
+ # @!attribute [rw] id
607
+ # The unique identifier of the collection group.
608
+ # @return [String]
609
+ #
610
+ # @!attribute [rw] arn
611
+ # The Amazon Resource Name (ARN) of the collection group.
612
+ # @return [String]
613
+ #
614
+ # @!attribute [rw] name
615
+ # The name of the collection group.
616
+ # @return [String]
617
+ #
618
+ # @!attribute [rw] number_of_collections
619
+ # The number of collections within the collection group.
620
+ # @return [Integer]
621
+ #
622
+ # @!attribute [rw] created_date
623
+ # The Epoch time when the collection group was created.
624
+ # @return [Integer]
625
+ #
626
+ # @!attribute [rw] capacity_limits
627
+ # Capacity limits for a collection group. These limits define the
628
+ # minimum and maximum OpenSearch Compute Units (OCUs) for indexing and
629
+ # search operations that can be used by collections in the group.
630
+ # @return [Types::CollectionGroupCapacityLimits]
631
+ #
632
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearchserverless-2021-11-01/CollectionGroupSummary AWS API Documentation
633
+ #
634
+ class CollectionGroupSummary < Struct.new(
635
+ :id,
636
+ :arn,
637
+ :name,
638
+ :number_of_collections,
639
+ :created_date,
640
+ :capacity_limits)
435
641
  SENSITIVE = []
436
642
  include Aws::Structure
437
643
  end
@@ -454,20 +660,30 @@ module Aws::OpenSearchServerless
454
660
  # The Amazon Resource Name (ARN) of the collection.
455
661
  # @return [String]
456
662
  #
663
+ # @!attribute [rw] kms_key_arn
664
+ # The ARN of the Amazon Web Services Key Management Service key used
665
+ # to encrypt the collection.
666
+ # @return [String]
667
+ #
668
+ # @!attribute [rw] collection_group_name
669
+ # The name of the collection group that contains this collection.
670
+ # @return [String]
671
+ #
457
672
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearchserverless-2021-11-01/CollectionSummary AWS API Documentation
458
673
  #
459
674
  class CollectionSummary < Struct.new(
460
675
  :id,
461
676
  :name,
462
677
  :status,
463
- :arn)
678
+ :arn,
679
+ :kms_key_arn,
680
+ :collection_group_name)
464
681
  SENSITIVE = []
465
682
  include Aws::Structure
466
683
  end
467
684
 
468
685
  # When creating a resource, thrown when a resource with the same name
469
- # already exists or is being created. When deleting a resource, thrown
470
- # when the resource is not in the ACTIVE or FAILED state.
686
+ # already exists or is being created.
471
687
  #
472
688
  # @!attribute [rw] message
473
689
  # @return [String]
@@ -577,6 +793,10 @@ module Aws::OpenSearchServerless
577
793
  # The date and time when the collection was last modified.
578
794
  # @return [Integer]
579
795
  #
796
+ # @!attribute [rw] collection_group_name
797
+ # The name of the collection group that contains this collection.
798
+ # @return [String]
799
+ #
580
800
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearchserverless-2021-11-01/CreateCollectionDetail AWS API Documentation
581
801
  #
582
802
  class CreateCollectionDetail < Struct.new(
@@ -590,7 +810,116 @@ module Aws::OpenSearchServerless
590
810
  :standby_replicas,
591
811
  :vector_options,
592
812
  :created_date,
593
- :last_modified_date)
813
+ :last_modified_date,
814
+ :collection_group_name)
815
+ SENSITIVE = []
816
+ include Aws::Structure
817
+ end
818
+
819
+ # Details about the created collection group.
820
+ #
821
+ # @!attribute [rw] id
822
+ # The unique identifier of the collection group.
823
+ # @return [String]
824
+ #
825
+ # @!attribute [rw] arn
826
+ # The Amazon Resource Name (ARN) of the collection group.
827
+ # @return [String]
828
+ #
829
+ # @!attribute [rw] name
830
+ # The name of the collection group.
831
+ # @return [String]
832
+ #
833
+ # @!attribute [rw] standby_replicas
834
+ # Indicates whether standby replicas are used for the collection
835
+ # group.
836
+ # @return [String]
837
+ #
838
+ # @!attribute [rw] description
839
+ # The description of the collection group.
840
+ # @return [String]
841
+ #
842
+ # @!attribute [rw] tags
843
+ # A map of key-value pairs associated with the collection group.
844
+ # @return [Array<Types::Tag>]
845
+ #
846
+ # @!attribute [rw] created_date
847
+ # The Epoch time when the collection group was created.
848
+ # @return [Integer]
849
+ #
850
+ # @!attribute [rw] capacity_limits
851
+ # The capacity limits for the collection group, in OpenSearch Compute
852
+ # Units (OCUs).
853
+ # @return [Types::CollectionGroupCapacityLimits]
854
+ #
855
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearchserverless-2021-11-01/CreateCollectionGroupDetail AWS API Documentation
856
+ #
857
+ class CreateCollectionGroupDetail < Struct.new(
858
+ :id,
859
+ :arn,
860
+ :name,
861
+ :standby_replicas,
862
+ :description,
863
+ :tags,
864
+ :created_date,
865
+ :capacity_limits)
866
+ SENSITIVE = []
867
+ include Aws::Structure
868
+ end
869
+
870
+ # @!attribute [rw] name
871
+ # The name of the collection group.
872
+ # @return [String]
873
+ #
874
+ # @!attribute [rw] standby_replicas
875
+ # Indicates whether standby replicas should be used for a collection
876
+ # group.
877
+ # @return [String]
878
+ #
879
+ # @!attribute [rw] description
880
+ # A description of the collection group.
881
+ # @return [String]
882
+ #
883
+ # @!attribute [rw] tags
884
+ # An arbitrary set of tags (key–value pairs) to associate with the
885
+ # OpenSearch Serverless collection group.
886
+ # @return [Array<Types::Tag>]
887
+ #
888
+ # @!attribute [rw] capacity_limits
889
+ # The capacity limits for the collection group, in OpenSearch Compute
890
+ # Units (OCUs). These limits control the maximum and minimum capacity
891
+ # for collections within the group.
892
+ # @return [Types::CollectionGroupCapacityLimits]
893
+ #
894
+ # @!attribute [rw] client_token
895
+ # Unique, case-sensitive identifier to ensure idempotency of the
896
+ # request.
897
+ #
898
+ # **A suitable default value is auto-generated.** You should normally
899
+ # not need to pass this option.
900
+ # @return [String]
901
+ #
902
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearchserverless-2021-11-01/CreateCollectionGroupRequest AWS API Documentation
903
+ #
904
+ class CreateCollectionGroupRequest < Struct.new(
905
+ :name,
906
+ :standby_replicas,
907
+ :description,
908
+ :tags,
909
+ :capacity_limits,
910
+ :client_token)
911
+ SENSITIVE = []
912
+ include Aws::Structure
913
+ end
914
+
915
+ # @!attribute [rw] create_collection_group_detail
916
+ # Details about the created collection group.
917
+ # @return [Types::CreateCollectionGroupDetail]
918
+ #
919
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearchserverless-2021-11-01/CreateCollectionGroupResponse AWS API Documentation
920
+ #
921
+ class CreateCollectionGroupResponse < Struct.new(
922
+ :create_collection_group_detail)
594
923
  SENSITIVE = []
595
924
  include Aws::Structure
596
925
  end
@@ -621,6 +950,14 @@ module Aws::OpenSearchServerless
621
950
  # collection.
622
951
  # @return [Types::VectorOptions]
623
952
  #
953
+ # @!attribute [rw] collection_group_name
954
+ # The name of the collection group to associate with the collection.
955
+ # @return [String]
956
+ #
957
+ # @!attribute [rw] encryption_config
958
+ # Encryption settings for the collection.
959
+ # @return [Types::EncryptionConfig]
960
+ #
624
961
  # @!attribute [rw] client_token
625
962
  # Unique, case-sensitive identifier to ensure idempotency of the
626
963
  # request.
@@ -638,6 +975,8 @@ module Aws::OpenSearchServerless
638
975
  :tags,
639
976
  :standby_replicas,
640
977
  :vector_options,
978
+ :collection_group_name,
979
+ :encryption_config,
641
980
  :client_token)
642
981
  SENSITIVE = []
643
982
  include Aws::Structure
@@ -774,14 +1113,14 @@ module Aws::OpenSearchServerless
774
1113
  # @return [String]
775
1114
  #
776
1115
  # @!attribute [rw] saml_options
777
- # Describes SAML options in in the form of a key-value map. This field
778
- # is required if you specify `SAML` for the `type` parameter.
1116
+ # Describes SAML options in the form of a key-value map. This field is
1117
+ # required if you specify `SAML` for the `type` parameter.
779
1118
  # @return [Types::SamlConfigOptions]
780
1119
  #
781
1120
  # @!attribute [rw] iam_identity_center_options
782
1121
  # Describes IAM Identity Center options in the form of a key-value
783
- # map. This field is required if you specify iamidentitycenter for the
784
- # type parameter.
1122
+ # map. This field is required if you specify `iamidentitycenter` for
1123
+ # the `type` parameter.
785
1124
  # @return [Types::CreateIamIdentityCenterConfigOptions]
786
1125
  #
787
1126
  # @!attribute [rw] iam_federation_options
@@ -1008,6 +1347,31 @@ module Aws::OpenSearchServerless
1008
1347
  include Aws::Structure
1009
1348
  end
1010
1349
 
1350
+ # @!attribute [rw] id
1351
+ # The unique identifier of the collection group to delete.
1352
+ # @return [String]
1353
+ #
1354
+ # @!attribute [rw] client_token
1355
+ # Unique, case-sensitive identifier to ensure idempotency of the
1356
+ # request.
1357
+ #
1358
+ # **A suitable default value is auto-generated.** You should normally
1359
+ # not need to pass this option.
1360
+ # @return [String]
1361
+ #
1362
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearchserverless-2021-11-01/DeleteCollectionGroupRequest AWS API Documentation
1363
+ #
1364
+ class DeleteCollectionGroupRequest < Struct.new(
1365
+ :id,
1366
+ :client_token)
1367
+ SENSITIVE = []
1368
+ include Aws::Structure
1369
+ end
1370
+
1371
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearchserverless-2021-11-01/DeleteCollectionGroupResponse AWS API Documentation
1372
+ #
1373
+ class DeleteCollectionGroupResponse < Aws::EmptyStructure; end
1374
+
1011
1375
  # @!attribute [rw] id
1012
1376
  # The unique identifier of the collection. For example,
1013
1377
  # `1iu5usc406kd`. The ID is part of the collection endpoint. You can
@@ -1287,6 +1651,27 @@ module Aws::OpenSearchServerless
1287
1651
  include Aws::Structure
1288
1652
  end
1289
1653
 
1654
+ # Encryption settings for a collection.
1655
+ #
1656
+ # @!attribute [rw] a_ws_owned_key
1657
+ # Indicates whether to use an Amazon Web Services-owned key for
1658
+ # encryption.
1659
+ # @return [Boolean]
1660
+ #
1661
+ # @!attribute [rw] kms_key_arn
1662
+ # The ARN of the Amazon Web Services Key Management Service key used
1663
+ # to encrypt the collection.
1664
+ # @return [String]
1665
+ #
1666
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearchserverless-2021-11-01/EncryptionConfig AWS API Documentation
1667
+ #
1668
+ class EncryptionConfig < Struct.new(
1669
+ :a_ws_owned_key,
1670
+ :kms_key_arn)
1671
+ SENSITIVE = []
1672
+ include Aws::Structure
1673
+ end
1674
+
1290
1675
  # FIPS-compliant endpoint URLs for an OpenSearch Serverless collection.
1291
1676
  # These endpoints ensure all data transmission uses FIPS 140-3 validated
1292
1677
  # cryptographic implementations, meeting federal security requirements
@@ -1788,6 +2173,47 @@ module Aws::OpenSearchServerless
1788
2173
  include Aws::Structure
1789
2174
  end
1790
2175
 
2176
+ # @!attribute [rw] next_token
2177
+ # If your initial `ListCollectionGroups` operation returns a
2178
+ # `nextToken`, you can include the returned `nextToken` in subsequent
2179
+ # `ListCollectionGroups` operations, which returns results in the next
2180
+ # page.
2181
+ # @return [String]
2182
+ #
2183
+ # @!attribute [rw] max_results
2184
+ # The maximum number of results to return. Default is 20. You can use
2185
+ # `nextToken` to get the next page of results.
2186
+ # @return [Integer]
2187
+ #
2188
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearchserverless-2021-11-01/ListCollectionGroupsRequest AWS API Documentation
2189
+ #
2190
+ class ListCollectionGroupsRequest < Struct.new(
2191
+ :next_token,
2192
+ :max_results)
2193
+ SENSITIVE = []
2194
+ include Aws::Structure
2195
+ end
2196
+
2197
+ # @!attribute [rw] collection_group_summaries
2198
+ # Details about each collection group.
2199
+ # @return [Array<Types::CollectionGroupSummary>]
2200
+ #
2201
+ # @!attribute [rw] next_token
2202
+ # When `nextToken` is returned, there are more results available. The
2203
+ # value of `nextToken` is a unique pagination token for each page.
2204
+ # Make the call again using the returned token to retrieve the next
2205
+ # page.
2206
+ # @return [String]
2207
+ #
2208
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearchserverless-2021-11-01/ListCollectionGroupsResponse AWS API Documentation
2209
+ #
2210
+ class ListCollectionGroupsResponse < Struct.new(
2211
+ :collection_group_summaries,
2212
+ :next_token)
2213
+ SENSITIVE = []
2214
+ include Aws::Structure
2215
+ end
2216
+
1791
2217
  # @!attribute [rw] collection_filters
1792
2218
  # A list of filter names and values that you can use for requests.
1793
2219
  # @return [Types::CollectionFilters]
@@ -2579,6 +3005,95 @@ module Aws::OpenSearchServerless
2579
3005
  include Aws::Structure
2580
3006
  end
2581
3007
 
3008
+ # Details about the updated collection group.
3009
+ #
3010
+ # @!attribute [rw] id
3011
+ # The unique identifier of the collection group.
3012
+ # @return [String]
3013
+ #
3014
+ # @!attribute [rw] arn
3015
+ # The Amazon Resource Name (ARN) of the collection group.
3016
+ # @return [String]
3017
+ #
3018
+ # @!attribute [rw] name
3019
+ # The name of the collection group.
3020
+ # @return [String]
3021
+ #
3022
+ # @!attribute [rw] description
3023
+ # The description of the collection group.
3024
+ # @return [String]
3025
+ #
3026
+ # @!attribute [rw] capacity_limits
3027
+ # The capacity limits for the collection group, in OpenSearch Compute
3028
+ # Units (OCUs).
3029
+ # @return [Types::CollectionGroupCapacityLimits]
3030
+ #
3031
+ # @!attribute [rw] created_date
3032
+ # The Epoch time when the collection group was created.
3033
+ # @return [Integer]
3034
+ #
3035
+ # @!attribute [rw] last_modified_date
3036
+ # The date and time when the collection group was last modified.
3037
+ # @return [Integer]
3038
+ #
3039
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearchserverless-2021-11-01/UpdateCollectionGroupDetail AWS API Documentation
3040
+ #
3041
+ class UpdateCollectionGroupDetail < Struct.new(
3042
+ :id,
3043
+ :arn,
3044
+ :name,
3045
+ :description,
3046
+ :capacity_limits,
3047
+ :created_date,
3048
+ :last_modified_date)
3049
+ SENSITIVE = []
3050
+ include Aws::Structure
3051
+ end
3052
+
3053
+ # @!attribute [rw] id
3054
+ # The unique identifier of the collection group to update.
3055
+ # @return [String]
3056
+ #
3057
+ # @!attribute [rw] description
3058
+ # A new description for the collection group.
3059
+ # @return [String]
3060
+ #
3061
+ # @!attribute [rw] capacity_limits
3062
+ # Updated capacity limits for the collection group, in OpenSearch
3063
+ # Compute Units (OCUs).
3064
+ # @return [Types::CollectionGroupCapacityLimits]
3065
+ #
3066
+ # @!attribute [rw] client_token
3067
+ # Unique, case-sensitive identifier to ensure idempotency of the
3068
+ # request.
3069
+ #
3070
+ # **A suitable default value is auto-generated.** You should normally
3071
+ # not need to pass this option.
3072
+ # @return [String]
3073
+ #
3074
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearchserverless-2021-11-01/UpdateCollectionGroupRequest AWS API Documentation
3075
+ #
3076
+ class UpdateCollectionGroupRequest < Struct.new(
3077
+ :id,
3078
+ :description,
3079
+ :capacity_limits,
3080
+ :client_token)
3081
+ SENSITIVE = []
3082
+ include Aws::Structure
3083
+ end
3084
+
3085
+ # @!attribute [rw] update_collection_group_detail
3086
+ # Details about the updated collection group.
3087
+ # @return [Types::UpdateCollectionGroupDetail]
3088
+ #
3089
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearchserverless-2021-11-01/UpdateCollectionGroupResponse AWS API Documentation
3090
+ #
3091
+ class UpdateCollectionGroupResponse < Struct.new(
3092
+ :update_collection_group_detail)
3093
+ SENSITIVE = []
3094
+ include Aws::Structure
3095
+ end
3096
+
2582
3097
  # @!attribute [rw] id
2583
3098
  # The unique identifier of the collection.
2584
3099
  # @return [String]
@@ -55,7 +55,7 @@ module Aws::OpenSearchServerless
55
55
  autoload :EndpointProvider, 'aws-sdk-opensearchserverless/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-opensearchserverless/endpoints'
57
57
 
58
- GEM_VERSION = '1.52.0'
58
+ GEM_VERSION = '1.54.0'
59
59
 
60
60
  end
61
61