aws-sdk-supportauthz 1.0.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 +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-supportauthz/client.rb +1029 -0
- data/lib/aws-sdk-supportauthz/client_api.rb +491 -0
- data/lib/aws-sdk-supportauthz/customizations.rb +0 -0
- data/lib/aws-sdk-supportauthz/endpoint_parameters.rb +59 -0
- data/lib/aws-sdk-supportauthz/endpoint_provider.rb +32 -0
- data/lib/aws-sdk-supportauthz/endpoints.rb +20 -0
- data/lib/aws-sdk-supportauthz/errors.rb +217 -0
- data/lib/aws-sdk-supportauthz/plugins/endpoints.rb +77 -0
- data/lib/aws-sdk-supportauthz/resource.rb +26 -0
- data/lib/aws-sdk-supportauthz/types.rb +925 -0
- data/lib/aws-sdk-supportauthz/waiters.rb +15 -0
- data/lib/aws-sdk-supportauthz.rb +62 -0
- data/sig/client.rbs +252 -0
- data/sig/errors.rbs +48 -0
- data/sig/resource.rbs +85 -0
- data/sig/types.rbs +302 -0
- data/sig/waiters.rbs +13 -0
- metadata +97 -0
data/sig/types.rbs
ADDED
|
@@ -0,0 +1,302 @@
|
|
|
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::SupportAuthZ
|
|
9
|
+
module Types
|
|
10
|
+
|
|
11
|
+
class AccessDeniedException
|
|
12
|
+
attr_accessor message: ::String
|
|
13
|
+
SENSITIVE: []
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
class ActionSet
|
|
17
|
+
attr_accessor all_actions: Types::Unit
|
|
18
|
+
attr_accessor actions: ::Array[::String]
|
|
19
|
+
attr_accessor unknown: untyped
|
|
20
|
+
SENSITIVE: []
|
|
21
|
+
|
|
22
|
+
class AllActions < ActionSet
|
|
23
|
+
end
|
|
24
|
+
class Actions < ActionSet
|
|
25
|
+
end
|
|
26
|
+
class Unknown < ActionSet
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
class ActionSummary
|
|
31
|
+
attr_accessor action: ::String
|
|
32
|
+
attr_accessor service: ::String
|
|
33
|
+
attr_accessor description: ::String
|
|
34
|
+
SENSITIVE: []
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
class Condition
|
|
38
|
+
attr_accessor allow_after: ::Time
|
|
39
|
+
attr_accessor allow_before: ::Time
|
|
40
|
+
attr_accessor unknown: untyped
|
|
41
|
+
SENSITIVE: []
|
|
42
|
+
|
|
43
|
+
class AllowAfter < Condition
|
|
44
|
+
end
|
|
45
|
+
class AllowBefore < Condition
|
|
46
|
+
end
|
|
47
|
+
class Unknown < Condition
|
|
48
|
+
end
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
class ConflictException
|
|
52
|
+
attr_accessor message: ::String
|
|
53
|
+
attr_accessor resource_id: ::String
|
|
54
|
+
attr_accessor resource_type: ::String
|
|
55
|
+
SENSITIVE: []
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
class CreateSupportPermitInput
|
|
59
|
+
attr_accessor permit: Types::Permit
|
|
60
|
+
attr_accessor name: ::String
|
|
61
|
+
attr_accessor description: ::String
|
|
62
|
+
attr_accessor signing_key_info: Types::SigningKeyInfo
|
|
63
|
+
attr_accessor support_case_display_id: ::String
|
|
64
|
+
attr_accessor client_token: ::String
|
|
65
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
66
|
+
SENSITIVE: []
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
class CreateSupportPermitOutput
|
|
70
|
+
attr_accessor name: ::String
|
|
71
|
+
attr_accessor arn: ::String
|
|
72
|
+
attr_accessor description: ::String
|
|
73
|
+
attr_accessor permit: Types::Permit
|
|
74
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE" | "DELETING")
|
|
75
|
+
attr_accessor signing_key_info: Types::SigningKeyInfo
|
|
76
|
+
attr_accessor created_at: ::Time
|
|
77
|
+
attr_accessor support_case_display_id: ::String
|
|
78
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
79
|
+
SENSITIVE: []
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
class DeleteSupportPermitInput
|
|
83
|
+
attr_accessor support_permit_identifier: ::String
|
|
84
|
+
SENSITIVE: []
|
|
85
|
+
end
|
|
86
|
+
|
|
87
|
+
class DeleteSupportPermitOutput
|
|
88
|
+
attr_accessor name: ::String
|
|
89
|
+
attr_accessor arn: ::String
|
|
90
|
+
attr_accessor description: ::String
|
|
91
|
+
attr_accessor permit: Types::Permit
|
|
92
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE" | "DELETING")
|
|
93
|
+
attr_accessor signing_key_info: Types::SigningKeyInfo
|
|
94
|
+
attr_accessor created_at: ::Time
|
|
95
|
+
attr_accessor support_case_display_id: ::String
|
|
96
|
+
SENSITIVE: []
|
|
97
|
+
end
|
|
98
|
+
|
|
99
|
+
class GetActionInput
|
|
100
|
+
attr_accessor action: ::String
|
|
101
|
+
SENSITIVE: []
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
class GetActionOutput
|
|
105
|
+
attr_accessor action: ::String
|
|
106
|
+
attr_accessor service: ::String
|
|
107
|
+
attr_accessor description: ::String
|
|
108
|
+
SENSITIVE: []
|
|
109
|
+
end
|
|
110
|
+
|
|
111
|
+
class GetSupportPermitInput
|
|
112
|
+
attr_accessor support_permit_identifier: ::String
|
|
113
|
+
SENSITIVE: []
|
|
114
|
+
end
|
|
115
|
+
|
|
116
|
+
class GetSupportPermitOutput
|
|
117
|
+
attr_accessor name: ::String
|
|
118
|
+
attr_accessor arn: ::String
|
|
119
|
+
attr_accessor description: ::String
|
|
120
|
+
attr_accessor permit: Types::Permit
|
|
121
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE" | "DELETING")
|
|
122
|
+
attr_accessor signing_key_info: Types::SigningKeyInfo
|
|
123
|
+
attr_accessor created_at: ::Time
|
|
124
|
+
attr_accessor support_case_display_id: ::String
|
|
125
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
126
|
+
SENSITIVE: []
|
|
127
|
+
end
|
|
128
|
+
|
|
129
|
+
class InternalServerException
|
|
130
|
+
attr_accessor message: ::String
|
|
131
|
+
attr_accessor retry_after_seconds: ::Integer
|
|
132
|
+
SENSITIVE: []
|
|
133
|
+
end
|
|
134
|
+
|
|
135
|
+
class ListActionsInput
|
|
136
|
+
attr_accessor next_token: ::String
|
|
137
|
+
attr_accessor max_results: ::Integer
|
|
138
|
+
attr_accessor service: ::String
|
|
139
|
+
SENSITIVE: []
|
|
140
|
+
end
|
|
141
|
+
|
|
142
|
+
class ListActionsOutput
|
|
143
|
+
attr_accessor action_summaries: ::Array[Types::ActionSummary]
|
|
144
|
+
attr_accessor next_token: ::String
|
|
145
|
+
SENSITIVE: []
|
|
146
|
+
end
|
|
147
|
+
|
|
148
|
+
class ListSupportPermitRequestsInput
|
|
149
|
+
attr_accessor next_token: ::String
|
|
150
|
+
attr_accessor max_results: ::Integer
|
|
151
|
+
attr_accessor support_case_display_id: ::String
|
|
152
|
+
SENSITIVE: []
|
|
153
|
+
end
|
|
154
|
+
|
|
155
|
+
class ListSupportPermitRequestsOutput
|
|
156
|
+
attr_accessor support_permit_requests: ::Array[Types::SupportPermitRequest]
|
|
157
|
+
attr_accessor next_token: ::String
|
|
158
|
+
SENSITIVE: []
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
class ListSupportPermitsInput
|
|
162
|
+
attr_accessor next_token: ::String
|
|
163
|
+
attr_accessor max_results: ::Integer
|
|
164
|
+
attr_accessor support_permit_statuses: ::Array[("ACTIVE" | "INACTIVE" | "DELETING")]
|
|
165
|
+
SENSITIVE: []
|
|
166
|
+
end
|
|
167
|
+
|
|
168
|
+
class ListSupportPermitsOutput
|
|
169
|
+
attr_accessor support_permits: ::Array[Types::SupportPermitSummary]
|
|
170
|
+
attr_accessor next_token: ::String
|
|
171
|
+
SENSITIVE: []
|
|
172
|
+
end
|
|
173
|
+
|
|
174
|
+
class ListTagsForResourceInput
|
|
175
|
+
attr_accessor resource_arn: ::String
|
|
176
|
+
SENSITIVE: []
|
|
177
|
+
end
|
|
178
|
+
|
|
179
|
+
class ListTagsForResourceOutput
|
|
180
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
181
|
+
SENSITIVE: []
|
|
182
|
+
end
|
|
183
|
+
|
|
184
|
+
class Permit
|
|
185
|
+
attr_accessor actions: Types::ActionSet
|
|
186
|
+
attr_accessor resources: Types::ResourceSet
|
|
187
|
+
attr_accessor conditions: ::Array[Types::Condition]
|
|
188
|
+
SENSITIVE: []
|
|
189
|
+
end
|
|
190
|
+
|
|
191
|
+
class RejectSupportPermitRequestInput
|
|
192
|
+
attr_accessor request_arn: ::String
|
|
193
|
+
SENSITIVE: []
|
|
194
|
+
end
|
|
195
|
+
|
|
196
|
+
class RejectSupportPermitRequestOutput
|
|
197
|
+
attr_accessor request_arn: ::String
|
|
198
|
+
SENSITIVE: []
|
|
199
|
+
end
|
|
200
|
+
|
|
201
|
+
class ResourceNotFoundException
|
|
202
|
+
attr_accessor message: ::String
|
|
203
|
+
attr_accessor resource_id: ::String
|
|
204
|
+
attr_accessor resource_type: ::String
|
|
205
|
+
SENSITIVE: []
|
|
206
|
+
end
|
|
207
|
+
|
|
208
|
+
class ResourceSet
|
|
209
|
+
attr_accessor all_resources_in_region: Types::Unit
|
|
210
|
+
attr_accessor resources: ::Array[::String]
|
|
211
|
+
attr_accessor unknown: untyped
|
|
212
|
+
SENSITIVE: []
|
|
213
|
+
|
|
214
|
+
class AllResourcesInRegion < ResourceSet
|
|
215
|
+
end
|
|
216
|
+
class Resources < ResourceSet
|
|
217
|
+
end
|
|
218
|
+
class Unknown < ResourceSet
|
|
219
|
+
end
|
|
220
|
+
end
|
|
221
|
+
|
|
222
|
+
class ServiceQuotaExceededException
|
|
223
|
+
attr_accessor message: ::String
|
|
224
|
+
attr_accessor resource_id: ::String
|
|
225
|
+
attr_accessor resource_type: ::String
|
|
226
|
+
attr_accessor service_code: ::String
|
|
227
|
+
attr_accessor quota_code: ::String
|
|
228
|
+
SENSITIVE: []
|
|
229
|
+
end
|
|
230
|
+
|
|
231
|
+
class SigningKeyInfo
|
|
232
|
+
attr_accessor kms_key: ::String
|
|
233
|
+
attr_accessor unknown: untyped
|
|
234
|
+
SENSITIVE: []
|
|
235
|
+
|
|
236
|
+
class KmsKey < SigningKeyInfo
|
|
237
|
+
end
|
|
238
|
+
class Unknown < SigningKeyInfo
|
|
239
|
+
end
|
|
240
|
+
end
|
|
241
|
+
|
|
242
|
+
class SupportPermitRequest
|
|
243
|
+
attr_accessor request_arn: ::String
|
|
244
|
+
attr_accessor permit: Types::Permit
|
|
245
|
+
attr_accessor support_case_display_id: ::String
|
|
246
|
+
attr_accessor status: ("PENDING" | "ACCEPTED" | "REJECTED" | "CANCELLED")
|
|
247
|
+
attr_accessor created_at: ::Time
|
|
248
|
+
attr_accessor updated_at: ::Time
|
|
249
|
+
SENSITIVE: []
|
|
250
|
+
end
|
|
251
|
+
|
|
252
|
+
class SupportPermitSummary
|
|
253
|
+
attr_accessor name: ::String
|
|
254
|
+
attr_accessor arn: ::String
|
|
255
|
+
attr_accessor permit: Types::Permit
|
|
256
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE" | "DELETING")
|
|
257
|
+
attr_accessor signing_key_info: Types::SigningKeyInfo
|
|
258
|
+
attr_accessor created_at: ::Time
|
|
259
|
+
attr_accessor support_case_display_id: ::String
|
|
260
|
+
SENSITIVE: []
|
|
261
|
+
end
|
|
262
|
+
|
|
263
|
+
class TagResourceInput
|
|
264
|
+
attr_accessor resource_arn: ::String
|
|
265
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
266
|
+
SENSITIVE: []
|
|
267
|
+
end
|
|
268
|
+
|
|
269
|
+
class TagResourceOutput < Aws::EmptyStructure
|
|
270
|
+
end
|
|
271
|
+
|
|
272
|
+
class ThrottlingException
|
|
273
|
+
attr_accessor message: ::String
|
|
274
|
+
attr_accessor retry_after_seconds: ::Integer
|
|
275
|
+
SENSITIVE: []
|
|
276
|
+
end
|
|
277
|
+
|
|
278
|
+
class Unit < Aws::EmptyStructure
|
|
279
|
+
end
|
|
280
|
+
|
|
281
|
+
class UntagResourceInput
|
|
282
|
+
attr_accessor resource_arn: ::String
|
|
283
|
+
attr_accessor tag_keys: ::Array[::String]
|
|
284
|
+
SENSITIVE: []
|
|
285
|
+
end
|
|
286
|
+
|
|
287
|
+
class UntagResourceOutput < Aws::EmptyStructure
|
|
288
|
+
end
|
|
289
|
+
|
|
290
|
+
class ValidationException
|
|
291
|
+
attr_accessor message: ::String
|
|
292
|
+
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
|
293
|
+
SENSITIVE: []
|
|
294
|
+
end
|
|
295
|
+
|
|
296
|
+
class ValidationExceptionField
|
|
297
|
+
attr_accessor path: ::String
|
|
298
|
+
attr_accessor message: ::String
|
|
299
|
+
SENSITIVE: []
|
|
300
|
+
end
|
|
301
|
+
end
|
|
302
|
+
end
|
data/sig/waiters.rbs
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
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 SupportAuthZ
|
|
10
|
+
module Waiters
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: aws-sdk-supportauthz
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Amazon Web Services
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: aws-sdk-core
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - "~>"
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '3'
|
|
19
|
+
- - ">="
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: 3.248.0
|
|
22
|
+
type: :runtime
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
requirements:
|
|
26
|
+
- - "~>"
|
|
27
|
+
- !ruby/object:Gem::Version
|
|
28
|
+
version: '3'
|
|
29
|
+
- - ">="
|
|
30
|
+
- !ruby/object:Gem::Version
|
|
31
|
+
version: 3.248.0
|
|
32
|
+
- !ruby/object:Gem::Dependency
|
|
33
|
+
name: aws-sigv4
|
|
34
|
+
requirement: !ruby/object:Gem::Requirement
|
|
35
|
+
requirements:
|
|
36
|
+
- - "~>"
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: '1.5'
|
|
39
|
+
type: :runtime
|
|
40
|
+
prerelease: false
|
|
41
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
42
|
+
requirements:
|
|
43
|
+
- - "~>"
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: '1.5'
|
|
46
|
+
description: Official AWS Ruby gem for SupportAuthZ. This gem is part of the AWS SDK
|
|
47
|
+
for Ruby.
|
|
48
|
+
email:
|
|
49
|
+
- aws-dr-rubygems@amazon.com
|
|
50
|
+
executables: []
|
|
51
|
+
extensions: []
|
|
52
|
+
extra_rdoc_files: []
|
|
53
|
+
files:
|
|
54
|
+
- CHANGELOG.md
|
|
55
|
+
- LICENSE.txt
|
|
56
|
+
- VERSION
|
|
57
|
+
- lib/aws-sdk-supportauthz.rb
|
|
58
|
+
- lib/aws-sdk-supportauthz/client.rb
|
|
59
|
+
- lib/aws-sdk-supportauthz/client_api.rb
|
|
60
|
+
- lib/aws-sdk-supportauthz/customizations.rb
|
|
61
|
+
- lib/aws-sdk-supportauthz/endpoint_parameters.rb
|
|
62
|
+
- lib/aws-sdk-supportauthz/endpoint_provider.rb
|
|
63
|
+
- lib/aws-sdk-supportauthz/endpoints.rb
|
|
64
|
+
- lib/aws-sdk-supportauthz/errors.rb
|
|
65
|
+
- lib/aws-sdk-supportauthz/plugins/endpoints.rb
|
|
66
|
+
- lib/aws-sdk-supportauthz/resource.rb
|
|
67
|
+
- lib/aws-sdk-supportauthz/types.rb
|
|
68
|
+
- lib/aws-sdk-supportauthz/waiters.rb
|
|
69
|
+
- sig/client.rbs
|
|
70
|
+
- sig/errors.rbs
|
|
71
|
+
- sig/resource.rbs
|
|
72
|
+
- sig/types.rbs
|
|
73
|
+
- sig/waiters.rbs
|
|
74
|
+
homepage: https://github.com/aws/aws-sdk-ruby
|
|
75
|
+
licenses:
|
|
76
|
+
- Apache-2.0
|
|
77
|
+
metadata:
|
|
78
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-supportauthz
|
|
79
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-supportauthz/CHANGELOG.md
|
|
80
|
+
rdoc_options: []
|
|
81
|
+
require_paths:
|
|
82
|
+
- lib
|
|
83
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
84
|
+
requirements:
|
|
85
|
+
- - ">="
|
|
86
|
+
- !ruby/object:Gem::Version
|
|
87
|
+
version: '2.7'
|
|
88
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
89
|
+
requirements:
|
|
90
|
+
- - ">="
|
|
91
|
+
- !ruby/object:Gem::Version
|
|
92
|
+
version: '0'
|
|
93
|
+
requirements: []
|
|
94
|
+
rubygems_version: 3.6.7
|
|
95
|
+
specification_version: 4
|
|
96
|
+
summary: AWS SDK for Ruby - SupportAuthZ
|
|
97
|
+
test_files: []
|