aws-sdk-dsql 1.19.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: b43a18ddd965c0115d47423af4725fe39013bdce36e61c7e68aadfeda43e97fa
4
- data.tar.gz: 4028c45b0890bca46a13fbdd9d69581f3f6a6c7cfc6cecdea79aeaa58b5ec182
3
+ metadata.gz: 977daf260ee4d98db921ddbcf3dc03231d2940adb73bcb83e59b4c8773173346
4
+ data.tar.gz: 01a410e7e083fbdb617d8c7ff43006fa57fd23d1627242c54ccc4940173ad54f
5
5
  SHA512:
6
- metadata.gz: d4afc185ce0e30bba948cf808560695527e7dff8a2bc838466a63e445cb6ffb85c988f60ed884795d214885b5669a08619729ef639f9242569416e436b922fa3
7
- data.tar.gz: 0edac42137fe63323b6861c952d38eb44ffc850cd126cdebefc9241f46733714c108b49743c96bf2a52a59c9752288dd4f18c2c8579359d240aea33efe240f03
6
+ metadata.gz: 24b08f10abb1181019114493552d7bea4c64da4ed713129d5e534974a7463ad85c30b351fcc49eaff01c75d769973af031057907ce37d2a367f0a270d2282fe1
7
+ data.tar.gz: 10e9b443be02902662ea5f507cf5b776ba0583fcba2c02d8e722f48866343372fd90122eb212398bcb1b31b73ad81d1929a8d71a34634f0c7de915752666d92a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.20.0 (2025-11-10)
10
+ ------------------
11
+
12
+ * Feature - Cluster endpoint added to CreateCluster and GetCluster API responses
13
+
4
14
  1.19.0 (2025-10-23)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.19.0
1
+ 1.21.0
@@ -584,6 +584,7 @@ module Aws::DSQL
584
584
  # * {Types::CreateClusterOutput#multi_region_properties #multi_region_properties} => Types::MultiRegionProperties
585
585
  # * {Types::CreateClusterOutput#encryption_details #encryption_details} => Types::EncryptionDetails
586
586
  # * {Types::CreateClusterOutput#deletion_protection_enabled #deletion_protection_enabled} => Boolean
587
+ # * {Types::CreateClusterOutput#endpoint #endpoint} => String
587
588
  #
588
589
  #
589
590
  # @example Example: Create Cluster
@@ -625,6 +626,7 @@ module Aws::DSQL
625
626
  # resp.encryption_details.kms_key_arn #=> String
626
627
  # resp.encryption_details.encryption_status #=> String, one of "ENABLED", "UPDATING", "KMS_KEY_INACCESSIBLE", "ENABLING"
627
628
  # resp.deletion_protection_enabled #=> Boolean
629
+ # resp.endpoint #=> String
628
630
  #
629
631
  # @see http://docs.aws.amazon.com/goto/WebAPI/dsql-2018-05-10/CreateCluster AWS API Documentation
630
632
  #
@@ -749,6 +751,7 @@ module Aws::DSQL
749
751
  # * {Types::GetClusterOutput#multi_region_properties #multi_region_properties} => Types::MultiRegionProperties
750
752
  # * {Types::GetClusterOutput#tags #tags} => Hash<String,String>
751
753
  # * {Types::GetClusterOutput#encryption_details #encryption_details} => Types::EncryptionDetails
754
+ # * {Types::GetClusterOutput#endpoint #endpoint} => String
752
755
  #
753
756
  #
754
757
  # @example Example: Get Cluster
@@ -778,6 +781,7 @@ module Aws::DSQL
778
781
  # resp.encryption_details.encryption_type #=> String, one of "AWS_OWNED_KMS_KEY", "CUSTOMER_MANAGED_KMS_KEY"
779
782
  # resp.encryption_details.kms_key_arn #=> String
780
783
  # resp.encryption_details.encryption_status #=> String, one of "ENABLED", "UPDATING", "KMS_KEY_INACCESSIBLE", "ENABLING"
784
+ # resp.endpoint #=> String
781
785
  #
782
786
  #
783
787
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -834,6 +838,7 @@ module Aws::DSQL
834
838
  # @return [Types::GetVpcEndpointServiceNameOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
835
839
  #
836
840
  # * {Types::GetVpcEndpointServiceNameOutput#service_name #service_name} => String
841
+ # * {Types::GetVpcEndpointServiceNameOutput#cluster_vpc_endpoint #cluster_vpc_endpoint} => String
837
842
  #
838
843
  #
839
844
  # @example Example: Get VPC Endpoint Service Name
@@ -851,6 +856,7 @@ module Aws::DSQL
851
856
  # @example Response structure
852
857
  #
853
858
  # resp.service_name #=> String
859
+ # resp.cluster_vpc_endpoint #=> String
854
860
  #
855
861
  # @see http://docs.aws.amazon.com/goto/WebAPI/dsql-2018-05-10/GetVpcEndpointServiceName AWS API Documentation
856
862
  #
@@ -1241,7 +1247,7 @@ module Aws::DSQL
1241
1247
  tracer: tracer
1242
1248
  )
1243
1249
  context[:gem_name] = 'aws-sdk-dsql'
1244
- context[:gem_version] = '1.19.0'
1250
+ context[:gem_version] = '1.21.0'
1245
1251
  Seahorse::Client::Request.new(handlers, context)
1246
1252
  end
1247
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')
@@ -36,6 +37,7 @@ module Aws::DSQL
36
37
  EncryptionDetails = Shapes::StructureShape.new(name: 'EncryptionDetails')
37
38
  EncryptionStatus = Shapes::StringShape.new(name: 'EncryptionStatus')
38
39
  EncryptionType = Shapes::StringShape.new(name: 'EncryptionType')
40
+ Endpoint = Shapes::StringShape.new(name: 'Endpoint')
39
41
  GetClusterInput = Shapes::StructureShape.new(name: 'GetClusterInput')
40
42
  GetClusterOutput = Shapes::StructureShape.new(name: 'GetClusterOutput')
41
43
  GetClusterPolicyInput = Shapes::StructureShape.new(name: 'GetClusterPolicyInput')
@@ -108,6 +110,7 @@ module Aws::DSQL
108
110
  CreateClusterOutput.add_member(:multi_region_properties, Shapes::ShapeRef.new(shape: MultiRegionProperties, location_name: "multiRegionProperties"))
109
111
  CreateClusterOutput.add_member(:encryption_details, Shapes::ShapeRef.new(shape: EncryptionDetails, location_name: "encryptionDetails"))
110
112
  CreateClusterOutput.add_member(:deletion_protection_enabled, Shapes::ShapeRef.new(shape: DeletionProtectionEnabled, required: true, location_name: "deletionProtectionEnabled"))
113
+ CreateClusterOutput.add_member(:endpoint, Shapes::ShapeRef.new(shape: Endpoint, location_name: "endpoint"))
111
114
  CreateClusterOutput.struct_class = Types::CreateClusterOutput
112
115
 
113
116
  DeleteClusterInput.add_member(:identifier, Shapes::ShapeRef.new(shape: ClusterId, required: true, location: "uri", location_name: "identifier"))
@@ -144,6 +147,7 @@ module Aws::DSQL
144
147
  GetClusterOutput.add_member(:multi_region_properties, Shapes::ShapeRef.new(shape: MultiRegionProperties, location_name: "multiRegionProperties"))
145
148
  GetClusterOutput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
146
149
  GetClusterOutput.add_member(:encryption_details, Shapes::ShapeRef.new(shape: EncryptionDetails, location_name: "encryptionDetails"))
150
+ GetClusterOutput.add_member(:endpoint, Shapes::ShapeRef.new(shape: Endpoint, location_name: "endpoint"))
147
151
  GetClusterOutput.struct_class = Types::GetClusterOutput
148
152
 
149
153
  GetClusterPolicyInput.add_member(:identifier, Shapes::ShapeRef.new(shape: ClusterId, required: true, location: "uri", location_name: "identifier"))
@@ -157,6 +161,7 @@ module Aws::DSQL
157
161
  GetVpcEndpointServiceNameInput.struct_class = Types::GetVpcEndpointServiceNameInput
158
162
 
159
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"))
160
165
  GetVpcEndpointServiceNameOutput.struct_class = Types::GetVpcEndpointServiceNameOutput
161
166
 
162
167
  InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
@@ -159,6 +159,10 @@ module Aws::DSQL
159
159
  # Whether deletion protection is enabled on this cluster.
160
160
  # @return [Boolean]
161
161
  #
162
+ # @!attribute [rw] endpoint
163
+ # The connection endpoint for the created cluster.
164
+ # @return [String]
165
+ #
162
166
  # @see http://docs.aws.amazon.com/goto/WebAPI/dsql-2018-05-10/CreateClusterOutput AWS API Documentation
163
167
  #
164
168
  class CreateClusterOutput < Struct.new(
@@ -168,7 +172,8 @@ module Aws::DSQL
168
172
  :creation_time,
169
173
  :multi_region_properties,
170
174
  :encryption_details,
171
- :deletion_protection_enabled)
175
+ :deletion_protection_enabled,
176
+ :endpoint)
172
177
  SENSITIVE = []
173
178
  include Aws::Structure
174
179
  end
@@ -341,6 +346,10 @@ module Aws::DSQL
341
346
  # The current encryption configuration details for the cluster.
342
347
  # @return [Types::EncryptionDetails]
343
348
  #
349
+ # @!attribute [rw] endpoint
350
+ # The connection endpoint for the cluster.
351
+ # @return [String]
352
+ #
344
353
  # @see http://docs.aws.amazon.com/goto/WebAPI/dsql-2018-05-10/GetClusterOutput AWS API Documentation
345
354
  #
346
355
  class GetClusterOutput < Struct.new(
@@ -351,7 +360,8 @@ module Aws::DSQL
351
360
  :deletion_protection_enabled,
352
361
  :multi_region_properties,
353
362
  :tags,
354
- :encryption_details)
363
+ :encryption_details,
364
+ :endpoint)
355
365
  SENSITIVE = []
356
366
  include Aws::Structure
357
367
  end
@@ -403,10 +413,15 @@ module Aws::DSQL
403
413
  # The VPC endpoint service name.
404
414
  # @return [String]
405
415
  #
416
+ # @!attribute [rw] cluster_vpc_endpoint
417
+ # The VPC connection endpoint for the cluster.
418
+ # @return [String]
419
+ #
406
420
  # @see http://docs.aws.amazon.com/goto/WebAPI/dsql-2018-05-10/GetVpcEndpointServiceNameOutput AWS API Documentation
407
421
  #
408
422
  class GetVpcEndpointServiceNameOutput < Struct.new(
409
- :service_name)
423
+ :service_name,
424
+ :cluster_vpc_endpoint)
410
425
  SENSITIVE = []
411
426
  include Aws::Structure
412
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.19.0'
58
+ GEM_VERSION = '1.21.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -87,6 +87,7 @@ module Aws
87
87
  def multi_region_properties: () -> Types::MultiRegionProperties
88
88
  def encryption_details: () -> Types::EncryptionDetails
89
89
  def deletion_protection_enabled: () -> bool
90
+ def endpoint: () -> ::String
90
91
  end
91
92
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DSQL/Client.html#create_cluster-instance_method
92
93
  def create_cluster: (
@@ -139,6 +140,7 @@ module Aws
139
140
  def multi_region_properties: () -> Types::MultiRegionProperties
140
141
  def tags: () -> ::Hash[::String, ::String]
141
142
  def encryption_details: () -> Types::EncryptionDetails
143
+ def endpoint: () -> ::String
142
144
  end
143
145
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DSQL/Client.html#get_cluster-instance_method
144
146
  def get_cluster: (
@@ -160,6 +162,7 @@ module Aws
160
162
  interface _GetVpcEndpointServiceNameResponseSuccess
161
163
  include ::Seahorse::Client::_ResponseSuccess[Types::GetVpcEndpointServiceNameOutput]
162
164
  def service_name: () -> ::String
165
+ def cluster_vpc_endpoint: () -> ::String
163
166
  end
164
167
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DSQL/Client.html#get_vpc_endpoint_service_name-instance_method
165
168
  def get_vpc_endpoint_service_name: (
data/sig/types.rbs CHANGED
@@ -45,6 +45,7 @@ module Aws::DSQL
45
45
  attr_accessor multi_region_properties: Types::MultiRegionProperties
46
46
  attr_accessor encryption_details: Types::EncryptionDetails
47
47
  attr_accessor deletion_protection_enabled: bool
48
+ attr_accessor endpoint: ::String
48
49
  SENSITIVE: []
49
50
  end
50
51
 
@@ -95,6 +96,7 @@ module Aws::DSQL
95
96
  attr_accessor multi_region_properties: Types::MultiRegionProperties
96
97
  attr_accessor tags: ::Hash[::String, ::String]
97
98
  attr_accessor encryption_details: Types::EncryptionDetails
99
+ attr_accessor endpoint: ::String
98
100
  SENSITIVE: []
99
101
  end
100
102
 
@@ -116,6 +118,7 @@ module Aws::DSQL
116
118
 
117
119
  class GetVpcEndpointServiceNameOutput
118
120
  attr_accessor service_name: ::String
121
+ attr_accessor cluster_vpc_endpoint: ::String
119
122
  SENSITIVE: []
120
123
  end
121
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.19.0
4
+ version: 1.21.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services