aws-sdk-route53profiles 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.
data/sig/types.rbs ADDED
@@ -0,0 +1,301 @@
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::Route53Profiles
9
+ module Types
10
+
11
+ class AccessDeniedException
12
+ attr_accessor message: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class AssociateProfileRequest
17
+ attr_accessor name: ::String
18
+ attr_accessor profile_id: ::String
19
+ attr_accessor resource_id: ::String
20
+ attr_accessor tags: ::Array[Types::Tag]
21
+ SENSITIVE: []
22
+ end
23
+
24
+ class AssociateProfileResponse
25
+ attr_accessor profile_association: Types::ProfileAssociation
26
+ SENSITIVE: []
27
+ end
28
+
29
+ class AssociateResourceToProfileRequest
30
+ attr_accessor name: ::String
31
+ attr_accessor profile_id: ::String
32
+ attr_accessor resource_arn: ::String
33
+ attr_accessor resource_properties: ::String
34
+ SENSITIVE: []
35
+ end
36
+
37
+ class AssociateResourceToProfileResponse
38
+ attr_accessor profile_resource_association: Types::ProfileResourceAssociation
39
+ SENSITIVE: []
40
+ end
41
+
42
+ class ConflictException
43
+ attr_accessor message: ::String
44
+ SENSITIVE: []
45
+ end
46
+
47
+ class CreateProfileRequest
48
+ attr_accessor client_token: ::String
49
+ attr_accessor name: ::String
50
+ attr_accessor tags: ::Array[Types::Tag]
51
+ SENSITIVE: []
52
+ end
53
+
54
+ class CreateProfileResponse
55
+ attr_accessor profile: Types::Profile
56
+ SENSITIVE: []
57
+ end
58
+
59
+ class DeleteProfileRequest
60
+ attr_accessor profile_id: ::String
61
+ SENSITIVE: []
62
+ end
63
+
64
+ class DeleteProfileResponse
65
+ attr_accessor profile: Types::Profile
66
+ SENSITIVE: []
67
+ end
68
+
69
+ class DisassociateProfileRequest
70
+ attr_accessor profile_id: ::String
71
+ attr_accessor resource_id: ::String
72
+ SENSITIVE: []
73
+ end
74
+
75
+ class DisassociateProfileResponse
76
+ attr_accessor profile_association: Types::ProfileAssociation
77
+ SENSITIVE: []
78
+ end
79
+
80
+ class DisassociateResourceFromProfileRequest
81
+ attr_accessor profile_id: ::String
82
+ attr_accessor resource_arn: ::String
83
+ SENSITIVE: []
84
+ end
85
+
86
+ class DisassociateResourceFromProfileResponse
87
+ attr_accessor profile_resource_association: Types::ProfileResourceAssociation
88
+ SENSITIVE: []
89
+ end
90
+
91
+ class GetProfileAssociationRequest
92
+ attr_accessor profile_association_id: ::String
93
+ SENSITIVE: []
94
+ end
95
+
96
+ class GetProfileAssociationResponse
97
+ attr_accessor profile_association: Types::ProfileAssociation
98
+ SENSITIVE: []
99
+ end
100
+
101
+ class GetProfileRequest
102
+ attr_accessor profile_id: ::String
103
+ SENSITIVE: []
104
+ end
105
+
106
+ class GetProfileResourceAssociationRequest
107
+ attr_accessor profile_resource_association_id: ::String
108
+ SENSITIVE: []
109
+ end
110
+
111
+ class GetProfileResourceAssociationResponse
112
+ attr_accessor profile_resource_association: Types::ProfileResourceAssociation
113
+ SENSITIVE: []
114
+ end
115
+
116
+ class GetProfileResponse
117
+ attr_accessor profile: Types::Profile
118
+ SENSITIVE: []
119
+ end
120
+
121
+ class InternalServiceErrorException
122
+ attr_accessor message: ::String
123
+ SENSITIVE: []
124
+ end
125
+
126
+ class InvalidNextTokenException
127
+ attr_accessor message: ::String
128
+ SENSITIVE: []
129
+ end
130
+
131
+ class InvalidParameterException
132
+ attr_accessor field_name: ::String
133
+ attr_accessor message: ::String
134
+ SENSITIVE: []
135
+ end
136
+
137
+ class LimitExceededException
138
+ attr_accessor message: ::String
139
+ attr_accessor resource_type: ::String
140
+ SENSITIVE: []
141
+ end
142
+
143
+ class ListProfileAssociationsRequest
144
+ attr_accessor max_results: ::Integer
145
+ attr_accessor next_token: ::String
146
+ attr_accessor profile_id: ::String
147
+ attr_accessor resource_id: ::String
148
+ SENSITIVE: []
149
+ end
150
+
151
+ class ListProfileAssociationsResponse
152
+ attr_accessor next_token: ::String
153
+ attr_accessor profile_associations: ::Array[Types::ProfileAssociation]
154
+ SENSITIVE: []
155
+ end
156
+
157
+ class ListProfileResourceAssociationsRequest
158
+ attr_accessor max_results: ::Integer
159
+ attr_accessor next_token: ::String
160
+ attr_accessor profile_id: ::String
161
+ attr_accessor resource_type: ::String
162
+ SENSITIVE: []
163
+ end
164
+
165
+ class ListProfileResourceAssociationsResponse
166
+ attr_accessor next_token: ::String
167
+ attr_accessor profile_resource_associations: ::Array[Types::ProfileResourceAssociation]
168
+ SENSITIVE: []
169
+ end
170
+
171
+ class ListProfilesRequest
172
+ attr_accessor max_results: ::Integer
173
+ attr_accessor next_token: ::String
174
+ SENSITIVE: []
175
+ end
176
+
177
+ class ListProfilesResponse
178
+ attr_accessor next_token: ::String
179
+ attr_accessor profile_summaries: ::Array[Types::ProfileSummary]
180
+ SENSITIVE: []
181
+ end
182
+
183
+ class ListTagsForResourceRequest
184
+ attr_accessor resource_arn: ::String
185
+ SENSITIVE: []
186
+ end
187
+
188
+ class ListTagsForResourceResponse
189
+ attr_accessor tags: ::Hash[::String, ::String]
190
+ SENSITIVE: []
191
+ end
192
+
193
+ class Profile
194
+ attr_accessor arn: ::String
195
+ attr_accessor client_token: ::String
196
+ attr_accessor creation_time: ::Time
197
+ attr_accessor id: ::String
198
+ attr_accessor modification_time: ::Time
199
+ attr_accessor name: ::String
200
+ attr_accessor owner_id: ::String
201
+ attr_accessor share_status: ("NOT_SHARED" | "SHARED_WITH_ME" | "SHARED_BY_ME")
202
+ attr_accessor status: ("COMPLETE" | "DELETING" | "UPDATING" | "CREATING" | "DELETED" | "FAILED")
203
+ attr_accessor status_message: ::String
204
+ SENSITIVE: []
205
+ end
206
+
207
+ class ProfileAssociation
208
+ attr_accessor creation_time: ::Time
209
+ attr_accessor id: ::String
210
+ attr_accessor modification_time: ::Time
211
+ attr_accessor name: ::String
212
+ attr_accessor owner_id: ::String
213
+ attr_accessor profile_id: ::String
214
+ attr_accessor resource_id: ::String
215
+ attr_accessor status: ("COMPLETE" | "DELETING" | "UPDATING" | "CREATING" | "DELETED" | "FAILED")
216
+ attr_accessor status_message: ::String
217
+ SENSITIVE: []
218
+ end
219
+
220
+ class ProfileResourceAssociation
221
+ attr_accessor creation_time: ::Time
222
+ attr_accessor id: ::String
223
+ attr_accessor modification_time: ::Time
224
+ attr_accessor name: ::String
225
+ attr_accessor owner_id: ::String
226
+ attr_accessor profile_id: ::String
227
+ attr_accessor resource_arn: ::String
228
+ attr_accessor resource_properties: ::String
229
+ attr_accessor resource_type: ::String
230
+ attr_accessor status: ("COMPLETE" | "DELETING" | "UPDATING" | "CREATING" | "DELETED" | "FAILED")
231
+ attr_accessor status_message: ::String
232
+ SENSITIVE: []
233
+ end
234
+
235
+ class ProfileSummary
236
+ attr_accessor arn: ::String
237
+ attr_accessor id: ::String
238
+ attr_accessor name: ::String
239
+ attr_accessor share_status: ("NOT_SHARED" | "SHARED_WITH_ME" | "SHARED_BY_ME")
240
+ SENSITIVE: []
241
+ end
242
+
243
+ class ResourceExistsException
244
+ attr_accessor message: ::String
245
+ attr_accessor resource_type: ::String
246
+ SENSITIVE: []
247
+ end
248
+
249
+ class ResourceNotFoundException
250
+ attr_accessor message: ::String
251
+ attr_accessor resource_type: ::String
252
+ SENSITIVE: []
253
+ end
254
+
255
+ class Tag
256
+ attr_accessor key: ::String
257
+ attr_accessor value: ::String
258
+ SENSITIVE: []
259
+ end
260
+
261
+ class TagResourceRequest
262
+ attr_accessor resource_arn: ::String
263
+ attr_accessor tags: ::Hash[::String, ::String]
264
+ SENSITIVE: []
265
+ end
266
+
267
+ class TagResourceResponse < Aws::EmptyStructure
268
+ end
269
+
270
+ class ThrottlingException
271
+ attr_accessor message: ::String
272
+ SENSITIVE: []
273
+ end
274
+
275
+ class UntagResourceRequest
276
+ attr_accessor resource_arn: ::String
277
+ attr_accessor tag_keys: ::Array[::String]
278
+ SENSITIVE: []
279
+ end
280
+
281
+ class UntagResourceResponse < Aws::EmptyStructure
282
+ end
283
+
284
+ class UpdateProfileResourceAssociationRequest
285
+ attr_accessor name: ::String
286
+ attr_accessor profile_resource_association_id: ::String
287
+ attr_accessor resource_properties: ::String
288
+ SENSITIVE: []
289
+ end
290
+
291
+ class UpdateProfileResourceAssociationResponse
292
+ attr_accessor profile_resource_association: Types::ProfileResourceAssociation
293
+ SENSITIVE: []
294
+ end
295
+
296
+ class ValidationException
297
+ attr_accessor message: ::String
298
+ SENSITIVE: []
299
+ end
300
+ end
301
+ 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 Route53Profiles
10
+ module Waiters
11
+ end
12
+ end
13
+ end
metadata ADDED
@@ -0,0 +1,99 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: aws-sdk-route53profiles
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-04-22 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.191.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.191.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.1'
40
+ type: :runtime
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '1.1'
47
+ description: Official AWS Ruby gem for Route 53 Profiles. 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-route53profiles.rb
59
+ - lib/aws-sdk-route53profiles/client.rb
60
+ - lib/aws-sdk-route53profiles/client_api.rb
61
+ - lib/aws-sdk-route53profiles/customizations.rb
62
+ - lib/aws-sdk-route53profiles/endpoint_parameters.rb
63
+ - lib/aws-sdk-route53profiles/endpoint_provider.rb
64
+ - lib/aws-sdk-route53profiles/endpoints.rb
65
+ - lib/aws-sdk-route53profiles/errors.rb
66
+ - lib/aws-sdk-route53profiles/plugins/endpoints.rb
67
+ - lib/aws-sdk-route53profiles/resource.rb
68
+ - lib/aws-sdk-route53profiles/types.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-route53profiles
79
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-route53profiles/CHANGELOG.md
80
+ post_install_message:
81
+ rdoc_options: []
82
+ require_paths:
83
+ - lib
84
+ required_ruby_version: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: '2.5'
89
+ required_rubygems_version: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - ">="
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ requirements: []
95
+ rubygems_version: 3.4.10
96
+ signing_key:
97
+ specification_version: 4
98
+ summary: AWS SDK for Ruby - Route 53 Profiles
99
+ test_files: []