aws-sdk-dsql 1.20.0 → 1.21.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: '009d5035fac905a7b3f3bab0e6f85ed3b778d9272854c50bb7d9e6cb269f0dd7'
4
- data.tar.gz: 6f27858381746c7edfca260a59e55935fb38f59a01d1349468695d4def0716ae
3
+ metadata.gz: 977daf260ee4d98db921ddbcf3dc03231d2940adb73bcb83e59b4c8773173346
4
+ data.tar.gz: 01a410e7e083fbdb617d8c7ff43006fa57fd23d1627242c54ccc4940173ad54f
5
5
  SHA512:
6
- metadata.gz: 53260015439e23900fa49c14e951d6263e2bb3fa1bf4a695dc20820886f30b4b159228bf8bda115f11e0c7a5e624f68cf921876f366b374180034e9caed3bf9e
7
- data.tar.gz: bee8a9d76171acf96e71749d6a31609a5182d9c92ea3fb806e8917fe6c35526a833c0c99d8b7fbc82f49028f3e2490dbaa7e154114fbd2a826a71d8e77cb5922
6
+ metadata.gz: 24b08f10abb1181019114493552d7bea4c64da4ed713129d5e534974a7463ad85c30b351fcc49eaff01c75d769973af031057907ce37d2a367f0a270d2282fe1
7
+ data.tar.gz: 10e9b443be02902662ea5f507cf5b776ba0583fcba2c02d8e722f48866343372fd90122eb212398bcb1b31b73ad81d1929a8d71a34634f0c7de915752666d92a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.21.0 (2025-11-20)
5
+ ------------------
6
+
7
+ * Feature - Added clusterVpcEndpoint field to GetVpcEndpointServiceName API response, returning the VPC connection endpoint for the cluster
8
+
4
9
  1.20.0 (2025-11-10)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.20.0
1
+ 1.21.0
@@ -838,6 +838,7 @@ module Aws::DSQL
838
838
  # @return [Types::GetVpcEndpointServiceNameOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
839
839
  #
840
840
  # * {Types::GetVpcEndpointServiceNameOutput#service_name #service_name} => String
841
+ # * {Types::GetVpcEndpointServiceNameOutput#cluster_vpc_endpoint #cluster_vpc_endpoint} => String
841
842
  #
842
843
  #
843
844
  # @example Example: Get VPC Endpoint Service Name
@@ -855,6 +856,7 @@ module Aws::DSQL
855
856
  # @example Response structure
856
857
  #
857
858
  # resp.service_name #=> String
859
+ # resp.cluster_vpc_endpoint #=> String
858
860
  #
859
861
  # @see http://docs.aws.amazon.com/goto/WebAPI/dsql-2018-05-10/GetVpcEndpointServiceName AWS API Documentation
860
862
  #
@@ -1245,7 +1247,7 @@ module Aws::DSQL
1245
1247
  tracer: tracer
1246
1248
  )
1247
1249
  context[:gem_name] = 'aws-sdk-dsql'
1248
- context[:gem_version] = '1.20.0'
1250
+ context[:gem_version] = '1.21.0'
1249
1251
  Seahorse::Client::Request.new(handlers, context)
1250
1252
  end
1251
1253
 
@@ -25,6 +25,7 @@ module Aws::DSQL
25
25
  ClusterList = Shapes::ListShape.new(name: 'ClusterList')
26
26
  ClusterStatus = Shapes::StringShape.new(name: 'ClusterStatus')
27
27
  ClusterSummary = Shapes::StructureShape.new(name: 'ClusterSummary')
28
+ ClusterVpcEndpoint = Shapes::StringShape.new(name: 'ClusterVpcEndpoint')
28
29
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
29
30
  CreateClusterInput = Shapes::StructureShape.new(name: 'CreateClusterInput')
30
31
  CreateClusterOutput = Shapes::StructureShape.new(name: 'CreateClusterOutput')
@@ -160,6 +161,7 @@ module Aws::DSQL
160
161
  GetVpcEndpointServiceNameInput.struct_class = Types::GetVpcEndpointServiceNameInput
161
162
 
162
163
  GetVpcEndpointServiceNameOutput.add_member(:service_name, Shapes::ShapeRef.new(shape: ServiceName, required: true, location_name: "serviceName"))
164
+ GetVpcEndpointServiceNameOutput.add_member(:cluster_vpc_endpoint, Shapes::ShapeRef.new(shape: ClusterVpcEndpoint, location_name: "clusterVpcEndpoint"))
163
165
  GetVpcEndpointServiceNameOutput.struct_class = Types::GetVpcEndpointServiceNameOutput
164
166
 
165
167
  InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
@@ -413,10 +413,15 @@ module Aws::DSQL
413
413
  # The VPC endpoint service name.
414
414
  # @return [String]
415
415
  #
416
+ # @!attribute [rw] cluster_vpc_endpoint
417
+ # The VPC connection endpoint for the cluster.
418
+ # @return [String]
419
+ #
416
420
  # @see http://docs.aws.amazon.com/goto/WebAPI/dsql-2018-05-10/GetVpcEndpointServiceNameOutput AWS API Documentation
417
421
  #
418
422
  class GetVpcEndpointServiceNameOutput < Struct.new(
419
- :service_name)
423
+ :service_name,
424
+ :cluster_vpc_endpoint)
420
425
  SENSITIVE = []
421
426
  include Aws::Structure
422
427
  end
data/lib/aws-sdk-dsql.rb CHANGED
@@ -55,7 +55,7 @@ module Aws::DSQL
55
55
  autoload :EndpointProvider, 'aws-sdk-dsql/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-dsql/endpoints'
57
57
 
58
- GEM_VERSION = '1.20.0'
58
+ GEM_VERSION = '1.21.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -162,6 +162,7 @@ module Aws
162
162
  interface _GetVpcEndpointServiceNameResponseSuccess
163
163
  include ::Seahorse::Client::_ResponseSuccess[Types::GetVpcEndpointServiceNameOutput]
164
164
  def service_name: () -> ::String
165
+ def cluster_vpc_endpoint: () -> ::String
165
166
  end
166
167
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DSQL/Client.html#get_vpc_endpoint_service_name-instance_method
167
168
  def get_vpc_endpoint_service_name: (
data/sig/types.rbs CHANGED
@@ -118,6 +118,7 @@ module Aws::DSQL
118
118
 
119
119
  class GetVpcEndpointServiceNameOutput
120
120
  attr_accessor service_name: ::String
121
+ attr_accessor cluster_vpc_endpoint: ::String
121
122
  SENSITIVE: []
122
123
  end
123
124
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-dsql
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.20.0
4
+ version: 1.21.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services