aws-sdk-opensearchserverless 1.21.0 → 1.22.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: 76c6cfdc3360ac117d2878057ea1320d5f1455133f70714a9b8da6de916105f3
4
- data.tar.gz: 9ec83989569f6d23440ebf6a25b789e782986452ca42fe4257f3857622bd6bdc
3
+ metadata.gz: 539b15ed26e4d685beffafd2408b624ebc703d220e394665359d2afe23a3a16d
4
+ data.tar.gz: f7eb96341c725352e7d36a6bb110b29579997a0c6858c12670c4b0f477a81eff
5
5
  SHA512:
6
- metadata.gz: dd87571b13d77e94d34327c601cbab613334289ad1df78864ed6bb0b139b1b6b5b8484610547ee7e8db4dad253dea59b1d0556e370fca8d1708c30b51b5b0456
7
- data.tar.gz: 26d40421bf08b1d213957bf44c5ebe9aa786741e982fe9cf986dcdf275fc3567505f35874f4134165624cfba62447281b8275d2bebacf0a0b687ab55d9331e9d
6
+ metadata.gz: e80f363941bc4b8d3bec6a49a9d32ae9339427f02721d48ff9cc02f2bc37be22bb3bb3278613ff74fafd60035cf903e204d5866dcf4c0ed0ea67619e8c4e777b
7
+ data.tar.gz: de9b0e7a2782dac9370cab452d1fdf2af6b4ab3017cb2e3b4acea916cdf2fd7c9cc1c8769c3b4d066a94bae9c5edd38d3eb16f29839b788abf6d6706e3d849c6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.22.0 (2024-08-20)
5
+ ------------------
6
+
7
+ * Feature - Added FailureCode and FailureMessage to BatchGetCollectionResponse for BatchGetVPCEResponse for non-Active Collection and VPCE.
8
+
4
9
  1.21.0 (2024-07-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.21.0
1
+ 1.22.0
@@ -474,6 +474,8 @@ module Aws::OpenSearchServerless
474
474
  # resp.collection_details[0].created_date #=> Integer
475
475
  # resp.collection_details[0].dashboard_endpoint #=> String
476
476
  # resp.collection_details[0].description #=> String
477
+ # resp.collection_details[0].failure_code #=> String
478
+ # resp.collection_details[0].failure_message #=> String
477
479
  # resp.collection_details[0].id #=> String
478
480
  # resp.collection_details[0].kms_key_arn #=> String
479
481
  # resp.collection_details[0].last_modified_date #=> Integer
@@ -624,6 +626,8 @@ module Aws::OpenSearchServerless
624
626
  #
625
627
  # resp.vpc_endpoint_details #=> Array
626
628
  # resp.vpc_endpoint_details[0].created_date #=> Integer
629
+ # resp.vpc_endpoint_details[0].failure_code #=> String
630
+ # resp.vpc_endpoint_details[0].failure_message #=> String
627
631
  # resp.vpc_endpoint_details[0].id #=> String
628
632
  # resp.vpc_endpoint_details[0].name #=> String
629
633
  # resp.vpc_endpoint_details[0].security_group_ids #=> Array
@@ -2355,7 +2359,7 @@ module Aws::OpenSearchServerless
2355
2359
  params: params,
2356
2360
  config: config)
2357
2361
  context[:gem_name] = 'aws-sdk-opensearchserverless'
2358
- context[:gem_version] = '1.21.0'
2362
+ context[:gem_version] = '1.22.0'
2359
2363
  Seahorse::Client::Request.new(handlers, context)
2360
2364
  end
2361
2365
 
@@ -266,6 +266,8 @@ module Aws::OpenSearchServerless
266
266
  CollectionDetail.add_member(:created_date, Shapes::ShapeRef.new(shape: Long, location_name: "createdDate"))
267
267
  CollectionDetail.add_member(:dashboard_endpoint, Shapes::ShapeRef.new(shape: String, location_name: "dashboardEndpoint"))
268
268
  CollectionDetail.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
269
+ CollectionDetail.add_member(:failure_code, Shapes::ShapeRef.new(shape: String, location_name: "failureCode"))
270
+ CollectionDetail.add_member(:failure_message, Shapes::ShapeRef.new(shape: String, location_name: "failureMessage"))
269
271
  CollectionDetail.add_member(:id, Shapes::ShapeRef.new(shape: CollectionId, location_name: "id"))
270
272
  CollectionDetail.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: String, location_name: "kmsKeyArn"))
271
273
  CollectionDetail.add_member(:last_modified_date, Shapes::ShapeRef.new(shape: Long, location_name: "lastModifiedDate"))
@@ -779,6 +781,8 @@ module Aws::OpenSearchServerless
779
781
  ValidationException.struct_class = Types::ValidationException
780
782
 
781
783
  VpcEndpointDetail.add_member(:created_date, Shapes::ShapeRef.new(shape: Long, location_name: "createdDate"))
784
+ VpcEndpointDetail.add_member(:failure_code, Shapes::ShapeRef.new(shape: String, location_name: "failureCode"))
785
+ VpcEndpointDetail.add_member(:failure_message, Shapes::ShapeRef.new(shape: String, location_name: "failureMessage"))
782
786
  VpcEndpointDetail.add_member(:id, Shapes::ShapeRef.new(shape: VpcEndpointId, location_name: "id"))
783
787
  VpcEndpointDetail.add_member(:name, Shapes::ShapeRef.new(shape: VpcEndpointName, location_name: "name"))
784
788
  VpcEndpointDetail.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIds, location_name: "securityGroupIds"))
@@ -816,9 +820,11 @@ module Aws::OpenSearchServerless
816
820
 
817
821
  api.metadata = {
818
822
  "apiVersion" => "2021-11-01",
823
+ "auth" => ["aws.auth#sigv4"],
819
824
  "endpointPrefix" => "aoss",
820
825
  "jsonVersion" => "1.0",
821
826
  "protocol" => "json",
827
+ "protocols" => ["json"],
822
828
  "serviceFullName" => "OpenSearch Service Serverless",
823
829
  "serviceId" => "OpenSearchServerless",
824
830
  "signatureVersion" => "v4",
@@ -311,6 +311,14 @@ module Aws::OpenSearchServerless
311
311
  # A description of the collection.
312
312
  # @return [String]
313
313
  #
314
+ # @!attribute [rw] failure_code
315
+ # A failure code associated with the request.
316
+ # @return [String]
317
+ #
318
+ # @!attribute [rw] failure_message
319
+ # A message associated with the failure code.
320
+ # @return [String]
321
+ #
314
322
  # @!attribute [rw] id
315
323
  # A unique identifier for the collection.
316
324
  # @return [String]
@@ -348,6 +356,8 @@ module Aws::OpenSearchServerless
348
356
  :created_date,
349
357
  :dashboard_endpoint,
350
358
  :description,
359
+ :failure_code,
360
+ :failure_message,
351
361
  :id,
352
362
  :kms_key_arn,
353
363
  :last_modified_date,
@@ -2616,6 +2626,14 @@ module Aws::OpenSearchServerless
2616
2626
  # The date the endpoint was created.
2617
2627
  # @return [Integer]
2618
2628
  #
2629
+ # @!attribute [rw] failure_code
2630
+ # A failure code associated with the request.
2631
+ # @return [String]
2632
+ #
2633
+ # @!attribute [rw] failure_message
2634
+ # A message associated with the failure code.
2635
+ # @return [String]
2636
+ #
2619
2637
  # @!attribute [rw] id
2620
2638
  # The unique identifier of the endpoint.
2621
2639
  # @return [String]
@@ -2646,6 +2664,8 @@ module Aws::OpenSearchServerless
2646
2664
  #
2647
2665
  class VpcEndpointDetail < Struct.new(
2648
2666
  :created_date,
2667
+ :failure_code,
2668
+ :failure_message,
2649
2669
  :id,
2650
2670
  :name,
2651
2671
  :security_group_ids,
@@ -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.21.0'
55
+ GEM_VERSION = '1.22.0'
56
56
 
57
57
  end
data/sig/types.rbs CHANGED
@@ -96,6 +96,8 @@ module Aws::OpenSearchServerless
96
96
  attr_accessor created_date: ::Integer
97
97
  attr_accessor dashboard_endpoint: ::String
98
98
  attr_accessor description: ::String
99
+ attr_accessor failure_code: ::String
100
+ attr_accessor failure_message: ::String
99
101
  attr_accessor id: ::String
100
102
  attr_accessor kms_key_arn: ::String
101
103
  attr_accessor last_modified_date: ::Integer
@@ -755,6 +757,8 @@ module Aws::OpenSearchServerless
755
757
 
756
758
  class VpcEndpointDetail
757
759
  attr_accessor created_date: ::Integer
760
+ attr_accessor failure_code: ::String
761
+ attr_accessor failure_message: ::String
758
762
  attr_accessor id: ::String
759
763
  attr_accessor name: ::String
760
764
  attr_accessor security_group_ids: ::Array[::String]
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.21.0
4
+ version: 1.22.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: 2024-07-02 00:00:00.000000000 Z
11
+ date: 2024-08-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -36,14 +36,14 @@ dependencies:
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '1.1'
39
+ version: '1.5'
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '1.1'
46
+ version: '1.5'
47
47
  description: Official AWS Ruby gem for OpenSearch Service Serverless. This gem is
48
48
  part of the AWS SDK for Ruby.
49
49
  email: