aws-sdk-dsql 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +9 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-dsql/client.rb +1143 -0
- data/lib/aws-sdk-dsql/client_api.rb +377 -0
- data/lib/aws-sdk-dsql/customizations/auth_token_generator.rb +70 -0
- data/lib/aws-sdk-dsql/customizations.rb +3 -0
- data/lib/aws-sdk-dsql/endpoint_parameters.rb +59 -0
- data/lib/aws-sdk-dsql/endpoint_provider.rb +35 -0
- data/lib/aws-sdk-dsql/endpoints.rb +20 -0
- data/lib/aws-sdk-dsql/errors.rb +232 -0
- data/lib/aws-sdk-dsql/plugins/endpoints.rb +77 -0
- data/lib/aws-sdk-dsql/resource.rb +26 -0
- data/lib/aws-sdk-dsql/types.rb +682 -0
- data/lib/aws-sdk-dsql/waiters.rb +150 -0
- data/lib/aws-sdk-dsql.rb +62 -0
- data/sig/client.rbs +214 -0
- data/sig/errors.rbs +51 -0
- data/sig/resource.rbs +82 -0
- data/sig/types.rbs +196 -0
- data/sig/waiters.rbs +33 -0
- metadata +101 -0
data/sig/types.rbs
ADDED
@@ -0,0 +1,196 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::DSQL
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class ClusterSummary
|
17
|
+
attr_accessor identifier: ::String
|
18
|
+
attr_accessor arn: ::String
|
19
|
+
SENSITIVE: []
|
20
|
+
end
|
21
|
+
|
22
|
+
class ConflictException
|
23
|
+
attr_accessor message: ::String
|
24
|
+
attr_accessor resource_id: ::String
|
25
|
+
attr_accessor resource_type: ::String
|
26
|
+
SENSITIVE: []
|
27
|
+
end
|
28
|
+
|
29
|
+
class CreateClusterInput
|
30
|
+
attr_accessor deletion_protection_enabled: bool
|
31
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
32
|
+
attr_accessor client_token: ::String
|
33
|
+
SENSITIVE: []
|
34
|
+
end
|
35
|
+
|
36
|
+
class CreateClusterOutput
|
37
|
+
attr_accessor identifier: ::String
|
38
|
+
attr_accessor arn: ::String
|
39
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "FAILED")
|
40
|
+
attr_accessor creation_time: ::Time
|
41
|
+
attr_accessor deletion_protection_enabled: bool
|
42
|
+
SENSITIVE: []
|
43
|
+
end
|
44
|
+
|
45
|
+
class CreateMultiRegionClustersInput
|
46
|
+
attr_accessor linked_region_list: ::Array[::String]
|
47
|
+
attr_accessor cluster_properties: ::Hash[::String, Types::LinkedClusterProperties]
|
48
|
+
attr_accessor witness_region: ::String
|
49
|
+
attr_accessor client_token: ::String
|
50
|
+
SENSITIVE: []
|
51
|
+
end
|
52
|
+
|
53
|
+
class CreateMultiRegionClustersOutput
|
54
|
+
attr_accessor linked_cluster_arns: ::Array[::String]
|
55
|
+
SENSITIVE: []
|
56
|
+
end
|
57
|
+
|
58
|
+
class DeleteClusterInput
|
59
|
+
attr_accessor identifier: ::String
|
60
|
+
attr_accessor client_token: ::String
|
61
|
+
SENSITIVE: []
|
62
|
+
end
|
63
|
+
|
64
|
+
class DeleteClusterOutput
|
65
|
+
attr_accessor identifier: ::String
|
66
|
+
attr_accessor arn: ::String
|
67
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "FAILED")
|
68
|
+
attr_accessor creation_time: ::Time
|
69
|
+
attr_accessor deletion_protection_enabled: bool
|
70
|
+
SENSITIVE: []
|
71
|
+
end
|
72
|
+
|
73
|
+
class DeleteMultiRegionClustersInput
|
74
|
+
attr_accessor linked_cluster_arns: ::Array[::String]
|
75
|
+
attr_accessor client_token: ::String
|
76
|
+
SENSITIVE: []
|
77
|
+
end
|
78
|
+
|
79
|
+
class GetClusterInput
|
80
|
+
attr_accessor identifier: ::String
|
81
|
+
SENSITIVE: []
|
82
|
+
end
|
83
|
+
|
84
|
+
class GetClusterOutput
|
85
|
+
attr_accessor identifier: ::String
|
86
|
+
attr_accessor arn: ::String
|
87
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "FAILED")
|
88
|
+
attr_accessor creation_time: ::Time
|
89
|
+
attr_accessor deletion_protection_enabled: bool
|
90
|
+
attr_accessor witness_region: ::String
|
91
|
+
attr_accessor linked_cluster_arns: ::Array[::String]
|
92
|
+
SENSITIVE: []
|
93
|
+
end
|
94
|
+
|
95
|
+
class InternalServerException
|
96
|
+
attr_accessor message: ::String
|
97
|
+
attr_accessor retry_after_seconds: ::Integer
|
98
|
+
SENSITIVE: []
|
99
|
+
end
|
100
|
+
|
101
|
+
class LinkedClusterProperties
|
102
|
+
attr_accessor deletion_protection_enabled: bool
|
103
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
104
|
+
SENSITIVE: []
|
105
|
+
end
|
106
|
+
|
107
|
+
class ListClustersInput
|
108
|
+
attr_accessor max_results: ::Integer
|
109
|
+
attr_accessor next_token: ::String
|
110
|
+
SENSITIVE: []
|
111
|
+
end
|
112
|
+
|
113
|
+
class ListClustersOutput
|
114
|
+
attr_accessor next_token: ::String
|
115
|
+
attr_accessor clusters: ::Array[Types::ClusterSummary]
|
116
|
+
SENSITIVE: []
|
117
|
+
end
|
118
|
+
|
119
|
+
class ListTagsForResourceInput
|
120
|
+
attr_accessor resource_arn: ::String
|
121
|
+
SENSITIVE: []
|
122
|
+
end
|
123
|
+
|
124
|
+
class ListTagsForResourceOutput
|
125
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
126
|
+
SENSITIVE: []
|
127
|
+
end
|
128
|
+
|
129
|
+
class ResourceNotFoundException
|
130
|
+
attr_accessor message: ::String
|
131
|
+
attr_accessor resource_id: ::String
|
132
|
+
attr_accessor resource_type: ::String
|
133
|
+
SENSITIVE: []
|
134
|
+
end
|
135
|
+
|
136
|
+
class ServiceQuotaExceededException
|
137
|
+
attr_accessor message: ::String
|
138
|
+
attr_accessor resource_id: ::String
|
139
|
+
attr_accessor resource_type: ::String
|
140
|
+
attr_accessor service_code: ::String
|
141
|
+
attr_accessor quota_code: ::String
|
142
|
+
SENSITIVE: []
|
143
|
+
end
|
144
|
+
|
145
|
+
class TagResourceInput
|
146
|
+
attr_accessor resource_arn: ::String
|
147
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
148
|
+
SENSITIVE: []
|
149
|
+
end
|
150
|
+
|
151
|
+
class ThrottlingException
|
152
|
+
attr_accessor message: ::String
|
153
|
+
attr_accessor service_code: ::String
|
154
|
+
attr_accessor quota_code: ::String
|
155
|
+
attr_accessor retry_after_seconds: ::Integer
|
156
|
+
SENSITIVE: []
|
157
|
+
end
|
158
|
+
|
159
|
+
class UntagResourceInput
|
160
|
+
attr_accessor resource_arn: ::String
|
161
|
+
attr_accessor tag_keys: ::Array[::String]
|
162
|
+
SENSITIVE: []
|
163
|
+
end
|
164
|
+
|
165
|
+
class UpdateClusterInput
|
166
|
+
attr_accessor identifier: ::String
|
167
|
+
attr_accessor deletion_protection_enabled: bool
|
168
|
+
attr_accessor client_token: ::String
|
169
|
+
SENSITIVE: []
|
170
|
+
end
|
171
|
+
|
172
|
+
class UpdateClusterOutput
|
173
|
+
attr_accessor identifier: ::String
|
174
|
+
attr_accessor arn: ::String
|
175
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "FAILED")
|
176
|
+
attr_accessor creation_time: ::Time
|
177
|
+
attr_accessor deletion_protection_enabled: bool
|
178
|
+
attr_accessor witness_region: ::String
|
179
|
+
attr_accessor linked_cluster_arns: ::Array[::String]
|
180
|
+
SENSITIVE: []
|
181
|
+
end
|
182
|
+
|
183
|
+
class ValidationException
|
184
|
+
attr_accessor message: ::String
|
185
|
+
attr_accessor reason: ("unknownOperation" | "cannotParse" | "fieldValidationFailed" | "deletionProtectionEnabled" | "other")
|
186
|
+
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
187
|
+
SENSITIVE: []
|
188
|
+
end
|
189
|
+
|
190
|
+
class ValidationExceptionField
|
191
|
+
attr_accessor name: ::String
|
192
|
+
attr_accessor message: ::String
|
193
|
+
SENSITIVE: []
|
194
|
+
end
|
195
|
+
end
|
196
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module DSQL
|
10
|
+
module Waiters
|
11
|
+
|
12
|
+
class ClusterActive
|
13
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
14
|
+
| (?Hash[Symbol, untyped]) -> void
|
15
|
+
|
16
|
+
def wait: (
|
17
|
+
identifier: ::String
|
18
|
+
) -> Client::_GetClusterResponseSuccess
|
19
|
+
| (Hash[Symbol, untyped]) -> Client::_GetClusterResponseSuccess
|
20
|
+
end
|
21
|
+
|
22
|
+
class ClusterNotExists
|
23
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
24
|
+
| (?Hash[Symbol, untyped]) -> void
|
25
|
+
|
26
|
+
def wait: (
|
27
|
+
identifier: ::String
|
28
|
+
) -> Client::_GetClusterResponseSuccess
|
29
|
+
| (Hash[Symbol, untyped]) -> Client::_GetClusterResponseSuccess
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
metadata
ADDED
@@ -0,0 +1,101 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: aws-sdk-dsql
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Amazon Web Services
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-12-03 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: aws-sdk-core
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3'
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 3.210.0
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '3'
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 3.210.0
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: aws-sigv4
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '1.5'
|
40
|
+
type: :runtime
|
41
|
+
prerelease: false
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - "~>"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '1.5'
|
47
|
+
description: Official AWS Ruby gem for Amazon Aurora DSQL. This gem is part of the
|
48
|
+
AWS SDK for Ruby.
|
49
|
+
email:
|
50
|
+
- aws-dr-rubygems@amazon.com
|
51
|
+
executables: []
|
52
|
+
extensions: []
|
53
|
+
extra_rdoc_files: []
|
54
|
+
files:
|
55
|
+
- CHANGELOG.md
|
56
|
+
- LICENSE.txt
|
57
|
+
- VERSION
|
58
|
+
- lib/aws-sdk-dsql.rb
|
59
|
+
- lib/aws-sdk-dsql/client.rb
|
60
|
+
- lib/aws-sdk-dsql/client_api.rb
|
61
|
+
- lib/aws-sdk-dsql/customizations.rb
|
62
|
+
- lib/aws-sdk-dsql/customizations/auth_token_generator.rb
|
63
|
+
- lib/aws-sdk-dsql/endpoint_parameters.rb
|
64
|
+
- lib/aws-sdk-dsql/endpoint_provider.rb
|
65
|
+
- lib/aws-sdk-dsql/endpoints.rb
|
66
|
+
- lib/aws-sdk-dsql/errors.rb
|
67
|
+
- lib/aws-sdk-dsql/plugins/endpoints.rb
|
68
|
+
- lib/aws-sdk-dsql/resource.rb
|
69
|
+
- lib/aws-sdk-dsql/types.rb
|
70
|
+
- lib/aws-sdk-dsql/waiters.rb
|
71
|
+
- sig/client.rbs
|
72
|
+
- sig/errors.rbs
|
73
|
+
- sig/resource.rbs
|
74
|
+
- sig/types.rbs
|
75
|
+
- sig/waiters.rbs
|
76
|
+
homepage: https://github.com/aws/aws-sdk-ruby
|
77
|
+
licenses:
|
78
|
+
- Apache-2.0
|
79
|
+
metadata:
|
80
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-dsql
|
81
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-dsql/CHANGELOG.md
|
82
|
+
post_install_message:
|
83
|
+
rdoc_options: []
|
84
|
+
require_paths:
|
85
|
+
- lib
|
86
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - ">="
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '2.5'
|
91
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - ">="
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '0'
|
96
|
+
requirements: []
|
97
|
+
rubygems_version: 3.4.10
|
98
|
+
signing_key:
|
99
|
+
specification_version: 4
|
100
|
+
summary: AWS SDK for Ruby - Amazon Aurora DSQL
|
101
|
+
test_files: []
|