aws-sdk-opensearchserverless 1.13.0 → 1.14.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f0007f1ef2acd7af5b75416a88005076f9469ebae036ecbd8f2702dcd9edc3a6
|
4
|
+
data.tar.gz: 9bc89ff09a5a807438dcfc19f0af52388ae67826acf0db0a1f88249451924abb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5f00043636d84726f70cb568a2f91b4b9e27e64bebd83bacadb84490f6a32270651810d66b65a3296bf0625ac3f396d9396a4960b16ac0792ae77bcb01ef7b21
|
7
|
+
data.tar.gz: d8106ae17768c02fbab4802c4282a4b6611ee1d33c48a7beac79f9965c5b2e2e2834a92047284525471e402ed22b8067b4c32a91c38d97e66b26c70098658d0c
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.14.0 (2023-11-29)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Amazon OpenSearch Serverless collections support an additional attribute called standby-replicas. This allows to specify whether a collection should have redundancy enabled.
|
8
|
+
|
4
9
|
1.13.0 (2023-11-28)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.14.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.
|
2324
|
+
context[:gem_version] = '1.14.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
|
@@ -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 = []
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-opensearchserverless
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.14.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-11-
|
11
|
+
date: 2023-11-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|