aws-sdk-opensearchserverless 1.13.0 → 1.15.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e25b43e69be09b42e70cc4a7e083d70783da14e9fa26cb4ae627845de4b28a2d
4
- data.tar.gz: 19b3a81d77397f17749155c6a96bb7a8289963223c73f8f060fc123af6a094f7
3
+ metadata.gz: f4e1d2208826de1aa10f9e1b9b3c6e0522d3b8ead6461b74c81d8e49e5987a60
4
+ data.tar.gz: 5d7bf1fcc6fefcbcbf94a4572e9c3ce747556afd76a4a2441f4327a1950e31ce
5
5
  SHA512:
6
- metadata.gz: 5abe3f852ff2bc2f817f8e90feb07faa7dac1ae18bf0c3c0981e7f3a120f2d5eca30a3025219f207a08b29334f37c604f17ca1c4a780db5cc324981efcd18691
7
- data.tar.gz: bd96600eb14ed12392e4d6dd07a074a0cb1ce71a914351fb43fd68e02e73bac18703fc2dda5d3ba19b9ee1070f309df1c5d2344c3d7292237471508834891cc9
6
+ metadata.gz: 6388acd477adfc481034e2c95a1d1447fa6274d751eff6f51f0046ada9e35865d8be460c0c1b11a31dc186af7b57933eb099d0fcabb9c5b38cc9017614312983
7
+ data.tar.gz: e07c53c2d2702fcb51559369a9d80a69d74803ddf22d0cf444968010b9f11258c29705970e93d894e90f1df0653ffd9d8cffc9fcef1a2f929774bef12768150b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.15.0 (2024-01-26)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.14.0 (2023-11-29)
10
+ ------------------
11
+
12
+ * Feature - Amazon OpenSearch Serverless collections support an additional attribute called standby-replicas. This allows to specify whether a collection should have redundancy enabled.
13
+
4
14
  1.13.0 (2023-11-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.13.0
1
+ 1.15.0
@@ -444,6 +444,7 @@ module Aws::OpenSearchServerless
444
444
  # resp.collection_details[0].kms_key_arn #=> String
445
445
  # resp.collection_details[0].last_modified_date #=> Integer
446
446
  # resp.collection_details[0].name #=> String
447
+ # resp.collection_details[0].standby_replicas #=> String, one of "ENABLED", "DISABLED"
447
448
  # resp.collection_details[0].status #=> String, one of "CREATING", "DELETING", "ACTIVE", "FAILED"
448
449
  # resp.collection_details[0].type #=> String, one of "SEARCH", "TIMESERIES", "VECTORSEARCH"
449
450
  # resp.collection_error_details #=> Array
@@ -694,6 +695,9 @@ module Aws::OpenSearchServerless
694
695
  # @option params [required, String] :name
695
696
  # Name of the collection.
696
697
  #
698
+ # @option params [String] :standby_replicas
699
+ # Indicates whether standby replicas should be used for a collection.
700
+ #
697
701
  # @option params [Array<Types::Tag>] :tags
698
702
  # An arbitrary set of tags (key–value pairs) to associate with the
699
703
  # OpenSearch Serverless collection.
@@ -711,6 +715,7 @@ module Aws::OpenSearchServerless
711
715
  # client_token: "ClientToken",
712
716
  # description: "CreateCollectionRequestDescriptionString",
713
717
  # name: "CollectionName", # required
718
+ # standby_replicas: "ENABLED", # accepts ENABLED, DISABLED
714
719
  # tags: [
715
720
  # {
716
721
  # key: "TagKey", # required
@@ -729,6 +734,7 @@ module Aws::OpenSearchServerless
729
734
  # resp.create_collection_detail.kms_key_arn #=> String
730
735
  # resp.create_collection_detail.last_modified_date #=> Integer
731
736
  # resp.create_collection_detail.name #=> String
737
+ # resp.create_collection_detail.standby_replicas #=> String, one of "ENABLED", "DISABLED"
732
738
  # resp.create_collection_detail.status #=> String, one of "CREATING", "DELETING", "ACTIVE", "FAILED"
733
739
  # resp.create_collection_detail.type #=> String, one of "SEARCH", "TIMESERIES", "VECTORSEARCH"
734
740
  #
@@ -2315,7 +2321,7 @@ module Aws::OpenSearchServerless
2315
2321
  params: params,
2316
2322
  config: config)
2317
2323
  context[:gem_name] = 'aws-sdk-opensearchserverless'
2318
- context[:gem_version] = '1.13.0'
2324
+ context[:gem_version] = '1.15.0'
2319
2325
  Seahorse::Client::Request.new(handlers, context)
2320
2326
  end
2321
2327
 
@@ -156,6 +156,7 @@ module Aws::OpenSearchServerless
156
156
  SecurityPolicySummary = Shapes::StructureShape.new(name: 'SecurityPolicySummary')
157
157
  SecurityPolicyType = Shapes::StringShape.new(name: 'SecurityPolicyType')
158
158
  ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
159
+ StandbyReplicas = Shapes::StringShape.new(name: 'StandbyReplicas')
159
160
  String = Shapes::StringShape.new(name: 'String')
160
161
  SubnetId = Shapes::StringShape.new(name: 'SubnetId')
161
162
  SubnetIds = Shapes::ListShape.new(name: 'SubnetIds')
@@ -269,6 +270,7 @@ module Aws::OpenSearchServerless
269
270
  CollectionDetail.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: String, location_name: "kmsKeyArn"))
270
271
  CollectionDetail.add_member(:last_modified_date, Shapes::ShapeRef.new(shape: Long, location_name: "lastModifiedDate"))
271
272
  CollectionDetail.add_member(:name, Shapes::ShapeRef.new(shape: CollectionName, location_name: "name"))
273
+ CollectionDetail.add_member(:standby_replicas, Shapes::ShapeRef.new(shape: StandbyReplicas, location_name: "standbyReplicas"))
272
274
  CollectionDetail.add_member(:status, Shapes::ShapeRef.new(shape: CollectionStatus, location_name: "status"))
273
275
  CollectionDetail.add_member(:type, Shapes::ShapeRef.new(shape: CollectionType, location_name: "type"))
274
276
  CollectionDetail.struct_class = Types::CollectionDetail
@@ -319,6 +321,7 @@ module Aws::OpenSearchServerless
319
321
  CreateCollectionDetail.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: String, location_name: "kmsKeyArn"))
320
322
  CreateCollectionDetail.add_member(:last_modified_date, Shapes::ShapeRef.new(shape: Long, location_name: "lastModifiedDate"))
321
323
  CreateCollectionDetail.add_member(:name, Shapes::ShapeRef.new(shape: CollectionName, location_name: "name"))
324
+ CreateCollectionDetail.add_member(:standby_replicas, Shapes::ShapeRef.new(shape: StandbyReplicas, location_name: "standbyReplicas"))
322
325
  CreateCollectionDetail.add_member(:status, Shapes::ShapeRef.new(shape: CollectionStatus, location_name: "status"))
323
326
  CreateCollectionDetail.add_member(:type, Shapes::ShapeRef.new(shape: CollectionType, location_name: "type"))
324
327
  CreateCollectionDetail.struct_class = Types::CreateCollectionDetail
@@ -326,6 +329,7 @@ module Aws::OpenSearchServerless
326
329
  CreateCollectionRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
327
330
  CreateCollectionRequest.add_member(:description, Shapes::ShapeRef.new(shape: CreateCollectionRequestDescriptionString, location_name: "description"))
328
331
  CreateCollectionRequest.add_member(:name, Shapes::ShapeRef.new(shape: CollectionName, required: true, location_name: "name"))
332
+ CreateCollectionRequest.add_member(:standby_replicas, Shapes::ShapeRef.new(shape: StandbyReplicas, location_name: "standbyReplicas"))
329
333
  CreateCollectionRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
330
334
  CreateCollectionRequest.add_member(:type, Shapes::ShapeRef.new(shape: CollectionType, location_name: "type"))
331
335
  CreateCollectionRequest.struct_class = Types::CreateCollectionRequest
@@ -14,6 +14,7 @@ module Aws::OpenSearchServerless
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::OpenSearchServerless::EndpointProvider',
17
+ rbs_type: 'untyped',
17
18
  docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
19
  'object that responds to `#resolve_endpoint(parameters)` '\
19
20
  'where `parameters` is a Struct similar to '\
@@ -328,6 +328,10 @@ module Aws::OpenSearchServerless
328
328
  # The name of the collection.
329
329
  # @return [String]
330
330
  #
331
+ # @!attribute [rw] standby_replicas
332
+ # Details about an OpenSearch Serverless collection.
333
+ # @return [String]
334
+ #
331
335
  # @!attribute [rw] status
332
336
  # The current status of the collection.
333
337
  # @return [String]
@@ -348,6 +352,7 @@ module Aws::OpenSearchServerless
348
352
  :kms_key_arn,
349
353
  :last_modified_date,
350
354
  :name,
355
+ :standby_replicas,
351
356
  :status,
352
357
  :type)
353
358
  SENSITIVE = []
@@ -530,6 +535,10 @@ module Aws::OpenSearchServerless
530
535
  # The name of the collection.
531
536
  # @return [String]
532
537
  #
538
+ # @!attribute [rw] standby_replicas
539
+ # Creates details about an OpenSearch Serverless collection.
540
+ # @return [String]
541
+ #
533
542
  # @!attribute [rw] status
534
543
  # The current status of the collection.
535
544
  # @return [String]
@@ -548,6 +557,7 @@ module Aws::OpenSearchServerless
548
557
  :kms_key_arn,
549
558
  :last_modified_date,
550
559
  :name,
560
+ :standby_replicas,
551
561
  :status,
552
562
  :type)
553
563
  SENSITIVE = []
@@ -570,6 +580,10 @@ module Aws::OpenSearchServerless
570
580
  # Name of the collection.
571
581
  # @return [String]
572
582
  #
583
+ # @!attribute [rw] standby_replicas
584
+ # Indicates whether standby replicas should be used for a collection.
585
+ # @return [String]
586
+ #
573
587
  # @!attribute [rw] tags
574
588
  # An arbitrary set of tags (key–value pairs) to associate with the
575
589
  # OpenSearch Serverless collection.
@@ -585,6 +599,7 @@ module Aws::OpenSearchServerless
585
599
  :client_token,
586
600
  :description,
587
601
  :name,
602
+ :standby_replicas,
588
603
  :tags,
589
604
  :type)
590
605
  SENSITIVE = []
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-opensearchserverless/customizations'
52
52
  # @!group service
53
53
  module Aws::OpenSearchServerless
54
54
 
55
- GEM_VERSION = '1.13.0'
55
+ GEM_VERSION = '1.15.0'
56
56
 
57
57
  end