aws-sdk-dsql 1.19.0 → 1.20.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dsql/client.rb +5 -1
- data/lib/aws-sdk-dsql/client_api.rb +3 -0
- data/lib/aws-sdk-dsql/types.rb +12 -2
- data/lib/aws-sdk-dsql.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/types.rbs +2 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '009d5035fac905a7b3f3bab0e6f85ed3b778d9272854c50bb7d9e6cb269f0dd7'
|
|
4
|
+
data.tar.gz: 6f27858381746c7edfca260a59e55935fb38f59a01d1349468695d4def0716ae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 53260015439e23900fa49c14e951d6263e2bb3fa1bf4a695dc20820886f30b4b159228bf8bda115f11e0c7a5e624f68cf921876f366b374180034e9caed3bf9e
|
|
7
|
+
data.tar.gz: bee8a9d76171acf96e71749d6a31609a5182d9c92ea3fb806e8917fe6c35526a833c0c99d8b7fbc82f49028f3e2490dbaa7e154114fbd2a826a71d8e77cb5922
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.20.0
|
data/lib/aws-sdk-dsql/client.rb
CHANGED
|
@@ -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):
|
|
@@ -1241,7 +1245,7 @@ module Aws::DSQL
|
|
|
1241
1245
|
tracer: tracer
|
|
1242
1246
|
)
|
|
1243
1247
|
context[:gem_name] = 'aws-sdk-dsql'
|
|
1244
|
-
context[:gem_version] = '1.
|
|
1248
|
+
context[:gem_version] = '1.20.0'
|
|
1245
1249
|
Seahorse::Client::Request.new(handlers, context)
|
|
1246
1250
|
end
|
|
1247
1251
|
|
|
@@ -36,6 +36,7 @@ module Aws::DSQL
|
|
|
36
36
|
EncryptionDetails = Shapes::StructureShape.new(name: 'EncryptionDetails')
|
|
37
37
|
EncryptionStatus = Shapes::StringShape.new(name: 'EncryptionStatus')
|
|
38
38
|
EncryptionType = Shapes::StringShape.new(name: 'EncryptionType')
|
|
39
|
+
Endpoint = Shapes::StringShape.new(name: 'Endpoint')
|
|
39
40
|
GetClusterInput = Shapes::StructureShape.new(name: 'GetClusterInput')
|
|
40
41
|
GetClusterOutput = Shapes::StructureShape.new(name: 'GetClusterOutput')
|
|
41
42
|
GetClusterPolicyInput = Shapes::StructureShape.new(name: 'GetClusterPolicyInput')
|
|
@@ -108,6 +109,7 @@ module Aws::DSQL
|
|
|
108
109
|
CreateClusterOutput.add_member(:multi_region_properties, Shapes::ShapeRef.new(shape: MultiRegionProperties, location_name: "multiRegionProperties"))
|
|
109
110
|
CreateClusterOutput.add_member(:encryption_details, Shapes::ShapeRef.new(shape: EncryptionDetails, location_name: "encryptionDetails"))
|
|
110
111
|
CreateClusterOutput.add_member(:deletion_protection_enabled, Shapes::ShapeRef.new(shape: DeletionProtectionEnabled, required: true, location_name: "deletionProtectionEnabled"))
|
|
112
|
+
CreateClusterOutput.add_member(:endpoint, Shapes::ShapeRef.new(shape: Endpoint, location_name: "endpoint"))
|
|
111
113
|
CreateClusterOutput.struct_class = Types::CreateClusterOutput
|
|
112
114
|
|
|
113
115
|
DeleteClusterInput.add_member(:identifier, Shapes::ShapeRef.new(shape: ClusterId, required: true, location: "uri", location_name: "identifier"))
|
|
@@ -144,6 +146,7 @@ module Aws::DSQL
|
|
|
144
146
|
GetClusterOutput.add_member(:multi_region_properties, Shapes::ShapeRef.new(shape: MultiRegionProperties, location_name: "multiRegionProperties"))
|
|
145
147
|
GetClusterOutput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
146
148
|
GetClusterOutput.add_member(:encryption_details, Shapes::ShapeRef.new(shape: EncryptionDetails, location_name: "encryptionDetails"))
|
|
149
|
+
GetClusterOutput.add_member(:endpoint, Shapes::ShapeRef.new(shape: Endpoint, location_name: "endpoint"))
|
|
147
150
|
GetClusterOutput.struct_class = Types::GetClusterOutput
|
|
148
151
|
|
|
149
152
|
GetClusterPolicyInput.add_member(:identifier, Shapes::ShapeRef.new(shape: ClusterId, required: true, location: "uri", location_name: "identifier"))
|
data/lib/aws-sdk-dsql/types.rb
CHANGED
|
@@ -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
|
data/lib/aws-sdk-dsql.rb
CHANGED
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: (
|
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
|
|