aws-sdk-migrationhubrefactorspaces 1.21.0 → 1.22.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-migrationhubrefactorspaces/client.rb +1 -1
- data/lib/aws-sdk-migrationhubrefactorspaces/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-migrationhubrefactorspaces.rb +1 -1
- data/sig/client.rbs +512 -0
- data/sig/errors.rbs +51 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +654 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,654 @@
|
|
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::MigrationHubRefactorSpaces
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class ApiGatewayProxyConfig
|
17
|
+
attr_accessor api_gateway_id: ::String
|
18
|
+
attr_accessor endpoint_type: ("REGIONAL" | "PRIVATE")
|
19
|
+
attr_accessor nlb_arn: ::String
|
20
|
+
attr_accessor nlb_name: ::String
|
21
|
+
attr_accessor proxy_url: ::String
|
22
|
+
attr_accessor stage_name: ::String
|
23
|
+
attr_accessor vpc_link_id: ::String
|
24
|
+
SENSITIVE: []
|
25
|
+
end
|
26
|
+
|
27
|
+
class ApiGatewayProxyInput
|
28
|
+
attr_accessor endpoint_type: ("REGIONAL" | "PRIVATE")
|
29
|
+
attr_accessor stage_name: ::String
|
30
|
+
SENSITIVE: []
|
31
|
+
end
|
32
|
+
|
33
|
+
class ApiGatewayProxySummary
|
34
|
+
attr_accessor api_gateway_id: ::String
|
35
|
+
attr_accessor endpoint_type: ("REGIONAL" | "PRIVATE")
|
36
|
+
attr_accessor nlb_arn: ::String
|
37
|
+
attr_accessor nlb_name: ::String
|
38
|
+
attr_accessor proxy_url: ::String
|
39
|
+
attr_accessor stage_name: ::String
|
40
|
+
attr_accessor vpc_link_id: ::String
|
41
|
+
SENSITIVE: []
|
42
|
+
end
|
43
|
+
|
44
|
+
class ApplicationSummary
|
45
|
+
attr_accessor api_gateway_proxy: Types::ApiGatewayProxySummary
|
46
|
+
attr_accessor application_id: ::String
|
47
|
+
attr_accessor arn: ::String
|
48
|
+
attr_accessor created_by_account_id: ::String
|
49
|
+
attr_accessor created_time: ::Time
|
50
|
+
attr_accessor environment_id: ::String
|
51
|
+
attr_accessor error: Types::ErrorResponse
|
52
|
+
attr_accessor last_updated_time: ::Time
|
53
|
+
attr_accessor name: ::String
|
54
|
+
attr_accessor owner_account_id: ::String
|
55
|
+
attr_accessor proxy_type: ("API_GATEWAY")
|
56
|
+
attr_accessor state: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "UPDATING")
|
57
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
58
|
+
attr_accessor vpc_id: ::String
|
59
|
+
SENSITIVE: [:tags]
|
60
|
+
end
|
61
|
+
|
62
|
+
class ConflictException
|
63
|
+
attr_accessor message: ::String
|
64
|
+
attr_accessor resource_id: ::String
|
65
|
+
attr_accessor resource_type: ::String
|
66
|
+
SENSITIVE: []
|
67
|
+
end
|
68
|
+
|
69
|
+
class CreateApplicationRequest
|
70
|
+
attr_accessor api_gateway_proxy: Types::ApiGatewayProxyInput
|
71
|
+
attr_accessor client_token: ::String
|
72
|
+
attr_accessor environment_identifier: ::String
|
73
|
+
attr_accessor name: ::String
|
74
|
+
attr_accessor proxy_type: ("API_GATEWAY")
|
75
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
76
|
+
attr_accessor vpc_id: ::String
|
77
|
+
SENSITIVE: [:tags]
|
78
|
+
end
|
79
|
+
|
80
|
+
class CreateApplicationResponse
|
81
|
+
attr_accessor api_gateway_proxy: Types::ApiGatewayProxyInput
|
82
|
+
attr_accessor application_id: ::String
|
83
|
+
attr_accessor arn: ::String
|
84
|
+
attr_accessor created_by_account_id: ::String
|
85
|
+
attr_accessor created_time: ::Time
|
86
|
+
attr_accessor environment_id: ::String
|
87
|
+
attr_accessor last_updated_time: ::Time
|
88
|
+
attr_accessor name: ::String
|
89
|
+
attr_accessor owner_account_id: ::String
|
90
|
+
attr_accessor proxy_type: ("API_GATEWAY")
|
91
|
+
attr_accessor state: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "UPDATING")
|
92
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
93
|
+
attr_accessor vpc_id: ::String
|
94
|
+
SENSITIVE: [:tags]
|
95
|
+
end
|
96
|
+
|
97
|
+
class CreateEnvironmentRequest
|
98
|
+
attr_accessor client_token: ::String
|
99
|
+
attr_accessor description: ::String
|
100
|
+
attr_accessor name: ::String
|
101
|
+
attr_accessor network_fabric_type: ("TRANSIT_GATEWAY" | "NONE")
|
102
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
103
|
+
SENSITIVE: [:tags]
|
104
|
+
end
|
105
|
+
|
106
|
+
class CreateEnvironmentResponse
|
107
|
+
attr_accessor arn: ::String
|
108
|
+
attr_accessor created_time: ::Time
|
109
|
+
attr_accessor description: ::String
|
110
|
+
attr_accessor environment_id: ::String
|
111
|
+
attr_accessor last_updated_time: ::Time
|
112
|
+
attr_accessor name: ::String
|
113
|
+
attr_accessor network_fabric_type: ("TRANSIT_GATEWAY" | "NONE")
|
114
|
+
attr_accessor owner_account_id: ::String
|
115
|
+
attr_accessor state: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED")
|
116
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
117
|
+
SENSITIVE: [:tags]
|
118
|
+
end
|
119
|
+
|
120
|
+
class CreateRouteRequest
|
121
|
+
attr_accessor application_identifier: ::String
|
122
|
+
attr_accessor client_token: ::String
|
123
|
+
attr_accessor default_route: Types::DefaultRouteInput
|
124
|
+
attr_accessor environment_identifier: ::String
|
125
|
+
attr_accessor route_type: ("DEFAULT" | "URI_PATH")
|
126
|
+
attr_accessor service_identifier: ::String
|
127
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
128
|
+
attr_accessor uri_path_route: Types::UriPathRouteInput
|
129
|
+
SENSITIVE: [:tags]
|
130
|
+
end
|
131
|
+
|
132
|
+
class CreateRouteResponse
|
133
|
+
attr_accessor application_id: ::String
|
134
|
+
attr_accessor arn: ::String
|
135
|
+
attr_accessor created_by_account_id: ::String
|
136
|
+
attr_accessor created_time: ::Time
|
137
|
+
attr_accessor last_updated_time: ::Time
|
138
|
+
attr_accessor owner_account_id: ::String
|
139
|
+
attr_accessor route_id: ::String
|
140
|
+
attr_accessor route_type: ("DEFAULT" | "URI_PATH")
|
141
|
+
attr_accessor service_id: ::String
|
142
|
+
attr_accessor state: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "UPDATING" | "INACTIVE")
|
143
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
144
|
+
attr_accessor uri_path_route: Types::UriPathRouteInput
|
145
|
+
SENSITIVE: [:tags]
|
146
|
+
end
|
147
|
+
|
148
|
+
class CreateServiceRequest
|
149
|
+
attr_accessor application_identifier: ::String
|
150
|
+
attr_accessor client_token: ::String
|
151
|
+
attr_accessor description: ::String
|
152
|
+
attr_accessor endpoint_type: ("LAMBDA" | "URL")
|
153
|
+
attr_accessor environment_identifier: ::String
|
154
|
+
attr_accessor lambda_endpoint: Types::LambdaEndpointInput
|
155
|
+
attr_accessor name: ::String
|
156
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
157
|
+
attr_accessor url_endpoint: Types::UrlEndpointInput
|
158
|
+
attr_accessor vpc_id: ::String
|
159
|
+
SENSITIVE: [:tags]
|
160
|
+
end
|
161
|
+
|
162
|
+
class CreateServiceResponse
|
163
|
+
attr_accessor application_id: ::String
|
164
|
+
attr_accessor arn: ::String
|
165
|
+
attr_accessor created_by_account_id: ::String
|
166
|
+
attr_accessor created_time: ::Time
|
167
|
+
attr_accessor description: ::String
|
168
|
+
attr_accessor endpoint_type: ("LAMBDA" | "URL")
|
169
|
+
attr_accessor environment_id: ::String
|
170
|
+
attr_accessor lambda_endpoint: Types::LambdaEndpointInput
|
171
|
+
attr_accessor last_updated_time: ::Time
|
172
|
+
attr_accessor name: ::String
|
173
|
+
attr_accessor owner_account_id: ::String
|
174
|
+
attr_accessor service_id: ::String
|
175
|
+
attr_accessor state: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED")
|
176
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
177
|
+
attr_accessor url_endpoint: Types::UrlEndpointInput
|
178
|
+
attr_accessor vpc_id: ::String
|
179
|
+
SENSITIVE: [:tags]
|
180
|
+
end
|
181
|
+
|
182
|
+
class DefaultRouteInput
|
183
|
+
attr_accessor activation_state: ("ACTIVE" | "INACTIVE")
|
184
|
+
SENSITIVE: []
|
185
|
+
end
|
186
|
+
|
187
|
+
class DeleteApplicationRequest
|
188
|
+
attr_accessor application_identifier: ::String
|
189
|
+
attr_accessor environment_identifier: ::String
|
190
|
+
SENSITIVE: []
|
191
|
+
end
|
192
|
+
|
193
|
+
class DeleteApplicationResponse
|
194
|
+
attr_accessor application_id: ::String
|
195
|
+
attr_accessor arn: ::String
|
196
|
+
attr_accessor environment_id: ::String
|
197
|
+
attr_accessor last_updated_time: ::Time
|
198
|
+
attr_accessor name: ::String
|
199
|
+
attr_accessor state: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "UPDATING")
|
200
|
+
SENSITIVE: []
|
201
|
+
end
|
202
|
+
|
203
|
+
class DeleteEnvironmentRequest
|
204
|
+
attr_accessor environment_identifier: ::String
|
205
|
+
SENSITIVE: []
|
206
|
+
end
|
207
|
+
|
208
|
+
class DeleteEnvironmentResponse
|
209
|
+
attr_accessor arn: ::String
|
210
|
+
attr_accessor environment_id: ::String
|
211
|
+
attr_accessor last_updated_time: ::Time
|
212
|
+
attr_accessor name: ::String
|
213
|
+
attr_accessor state: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED")
|
214
|
+
SENSITIVE: []
|
215
|
+
end
|
216
|
+
|
217
|
+
class DeleteResourcePolicyRequest
|
218
|
+
attr_accessor identifier: ::String
|
219
|
+
SENSITIVE: []
|
220
|
+
end
|
221
|
+
|
222
|
+
class DeleteResourcePolicyResponse < Aws::EmptyStructure
|
223
|
+
end
|
224
|
+
|
225
|
+
class DeleteRouteRequest
|
226
|
+
attr_accessor application_identifier: ::String
|
227
|
+
attr_accessor environment_identifier: ::String
|
228
|
+
attr_accessor route_identifier: ::String
|
229
|
+
SENSITIVE: []
|
230
|
+
end
|
231
|
+
|
232
|
+
class DeleteRouteResponse
|
233
|
+
attr_accessor application_id: ::String
|
234
|
+
attr_accessor arn: ::String
|
235
|
+
attr_accessor last_updated_time: ::Time
|
236
|
+
attr_accessor route_id: ::String
|
237
|
+
attr_accessor service_id: ::String
|
238
|
+
attr_accessor state: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "UPDATING" | "INACTIVE")
|
239
|
+
SENSITIVE: []
|
240
|
+
end
|
241
|
+
|
242
|
+
class DeleteServiceRequest
|
243
|
+
attr_accessor application_identifier: ::String
|
244
|
+
attr_accessor environment_identifier: ::String
|
245
|
+
attr_accessor service_identifier: ::String
|
246
|
+
SENSITIVE: []
|
247
|
+
end
|
248
|
+
|
249
|
+
class DeleteServiceResponse
|
250
|
+
attr_accessor application_id: ::String
|
251
|
+
attr_accessor arn: ::String
|
252
|
+
attr_accessor environment_id: ::String
|
253
|
+
attr_accessor last_updated_time: ::Time
|
254
|
+
attr_accessor name: ::String
|
255
|
+
attr_accessor service_id: ::String
|
256
|
+
attr_accessor state: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED")
|
257
|
+
SENSITIVE: []
|
258
|
+
end
|
259
|
+
|
260
|
+
class EnvironmentSummary
|
261
|
+
attr_accessor arn: ::String
|
262
|
+
attr_accessor created_time: ::Time
|
263
|
+
attr_accessor description: ::String
|
264
|
+
attr_accessor environment_id: ::String
|
265
|
+
attr_accessor error: Types::ErrorResponse
|
266
|
+
attr_accessor last_updated_time: ::Time
|
267
|
+
attr_accessor name: ::String
|
268
|
+
attr_accessor network_fabric_type: ("TRANSIT_GATEWAY" | "NONE")
|
269
|
+
attr_accessor owner_account_id: ::String
|
270
|
+
attr_accessor state: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED")
|
271
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
272
|
+
attr_accessor transit_gateway_id: ::String
|
273
|
+
SENSITIVE: [:tags]
|
274
|
+
end
|
275
|
+
|
276
|
+
class EnvironmentVpc
|
277
|
+
attr_accessor account_id: ::String
|
278
|
+
attr_accessor cidr_blocks: ::Array[::String]
|
279
|
+
attr_accessor created_time: ::Time
|
280
|
+
attr_accessor environment_id: ::String
|
281
|
+
attr_accessor last_updated_time: ::Time
|
282
|
+
attr_accessor vpc_id: ::String
|
283
|
+
attr_accessor vpc_name: ::String
|
284
|
+
SENSITIVE: []
|
285
|
+
end
|
286
|
+
|
287
|
+
class ErrorResponse
|
288
|
+
attr_accessor account_id: ::String
|
289
|
+
attr_accessor additional_details: ::Hash[::String, ::String]
|
290
|
+
attr_accessor code: ("INVALID_RESOURCE_STATE" | "RESOURCE_LIMIT_EXCEEDED" | "RESOURCE_CREATION_FAILURE" | "RESOURCE_UPDATE_FAILURE" | "SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE" | "RESOURCE_DELETION_FAILURE" | "RESOURCE_RETRIEVAL_FAILURE" | "RESOURCE_IN_USE" | "RESOURCE_NOT_FOUND" | "STATE_TRANSITION_FAILURE" | "REQUEST_LIMIT_EXCEEDED" | "NOT_AUTHORIZED")
|
291
|
+
attr_accessor message: ::String
|
292
|
+
attr_accessor resource_identifier: ::String
|
293
|
+
attr_accessor resource_type: ("ENVIRONMENT" | "APPLICATION" | "ROUTE" | "SERVICE" | "TRANSIT_GATEWAY" | "TRANSIT_GATEWAY_ATTACHMENT" | "API_GATEWAY" | "NLB" | "TARGET_GROUP" | "LOAD_BALANCER_LISTENER" | "VPC_LINK" | "LAMBDA" | "VPC" | "SUBNET" | "ROUTE_TABLE" | "SECURITY_GROUP" | "VPC_ENDPOINT_SERVICE_CONFIGURATION" | "RESOURCE_SHARE" | "IAM_ROLE")
|
294
|
+
SENSITIVE: []
|
295
|
+
end
|
296
|
+
|
297
|
+
class GetApplicationRequest
|
298
|
+
attr_accessor application_identifier: ::String
|
299
|
+
attr_accessor environment_identifier: ::String
|
300
|
+
SENSITIVE: []
|
301
|
+
end
|
302
|
+
|
303
|
+
class GetApplicationResponse
|
304
|
+
attr_accessor api_gateway_proxy: Types::ApiGatewayProxyConfig
|
305
|
+
attr_accessor application_id: ::String
|
306
|
+
attr_accessor arn: ::String
|
307
|
+
attr_accessor created_by_account_id: ::String
|
308
|
+
attr_accessor created_time: ::Time
|
309
|
+
attr_accessor environment_id: ::String
|
310
|
+
attr_accessor error: Types::ErrorResponse
|
311
|
+
attr_accessor last_updated_time: ::Time
|
312
|
+
attr_accessor name: ::String
|
313
|
+
attr_accessor owner_account_id: ::String
|
314
|
+
attr_accessor proxy_type: ("API_GATEWAY")
|
315
|
+
attr_accessor state: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "UPDATING")
|
316
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
317
|
+
attr_accessor vpc_id: ::String
|
318
|
+
SENSITIVE: [:tags]
|
319
|
+
end
|
320
|
+
|
321
|
+
class GetEnvironmentRequest
|
322
|
+
attr_accessor environment_identifier: ::String
|
323
|
+
SENSITIVE: []
|
324
|
+
end
|
325
|
+
|
326
|
+
class GetEnvironmentResponse
|
327
|
+
attr_accessor arn: ::String
|
328
|
+
attr_accessor created_time: ::Time
|
329
|
+
attr_accessor description: ::String
|
330
|
+
attr_accessor environment_id: ::String
|
331
|
+
attr_accessor error: Types::ErrorResponse
|
332
|
+
attr_accessor last_updated_time: ::Time
|
333
|
+
attr_accessor name: ::String
|
334
|
+
attr_accessor network_fabric_type: ("TRANSIT_GATEWAY" | "NONE")
|
335
|
+
attr_accessor owner_account_id: ::String
|
336
|
+
attr_accessor state: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED")
|
337
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
338
|
+
attr_accessor transit_gateway_id: ::String
|
339
|
+
SENSITIVE: [:tags]
|
340
|
+
end
|
341
|
+
|
342
|
+
class GetResourcePolicyRequest
|
343
|
+
attr_accessor identifier: ::String
|
344
|
+
SENSITIVE: []
|
345
|
+
end
|
346
|
+
|
347
|
+
class GetResourcePolicyResponse
|
348
|
+
attr_accessor policy: ::String
|
349
|
+
SENSITIVE: []
|
350
|
+
end
|
351
|
+
|
352
|
+
class GetRouteRequest
|
353
|
+
attr_accessor application_identifier: ::String
|
354
|
+
attr_accessor environment_identifier: ::String
|
355
|
+
attr_accessor route_identifier: ::String
|
356
|
+
SENSITIVE: []
|
357
|
+
end
|
358
|
+
|
359
|
+
class GetRouteResponse
|
360
|
+
attr_accessor append_source_path: bool
|
361
|
+
attr_accessor application_id: ::String
|
362
|
+
attr_accessor arn: ::String
|
363
|
+
attr_accessor created_by_account_id: ::String
|
364
|
+
attr_accessor created_time: ::Time
|
365
|
+
attr_accessor environment_id: ::String
|
366
|
+
attr_accessor error: Types::ErrorResponse
|
367
|
+
attr_accessor include_child_paths: bool
|
368
|
+
attr_accessor last_updated_time: ::Time
|
369
|
+
attr_accessor methods: ::Array[("DELETE" | "GET" | "HEAD" | "OPTIONS" | "PATCH" | "POST" | "PUT")]
|
370
|
+
attr_accessor owner_account_id: ::String
|
371
|
+
attr_accessor path_resource_to_id: ::Hash[::String, ::String]
|
372
|
+
attr_accessor route_id: ::String
|
373
|
+
attr_accessor route_type: ("DEFAULT" | "URI_PATH")
|
374
|
+
attr_accessor service_id: ::String
|
375
|
+
attr_accessor source_path: ::String
|
376
|
+
attr_accessor state: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "UPDATING" | "INACTIVE")
|
377
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
378
|
+
SENSITIVE: [:tags]
|
379
|
+
end
|
380
|
+
|
381
|
+
class GetServiceRequest
|
382
|
+
attr_accessor application_identifier: ::String
|
383
|
+
attr_accessor environment_identifier: ::String
|
384
|
+
attr_accessor service_identifier: ::String
|
385
|
+
SENSITIVE: []
|
386
|
+
end
|
387
|
+
|
388
|
+
class GetServiceResponse
|
389
|
+
attr_accessor application_id: ::String
|
390
|
+
attr_accessor arn: ::String
|
391
|
+
attr_accessor created_by_account_id: ::String
|
392
|
+
attr_accessor created_time: ::Time
|
393
|
+
attr_accessor description: ::String
|
394
|
+
attr_accessor endpoint_type: ("LAMBDA" | "URL")
|
395
|
+
attr_accessor environment_id: ::String
|
396
|
+
attr_accessor error: Types::ErrorResponse
|
397
|
+
attr_accessor lambda_endpoint: Types::LambdaEndpointConfig
|
398
|
+
attr_accessor last_updated_time: ::Time
|
399
|
+
attr_accessor name: ::String
|
400
|
+
attr_accessor owner_account_id: ::String
|
401
|
+
attr_accessor service_id: ::String
|
402
|
+
attr_accessor state: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED")
|
403
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
404
|
+
attr_accessor url_endpoint: Types::UrlEndpointConfig
|
405
|
+
attr_accessor vpc_id: ::String
|
406
|
+
SENSITIVE: [:tags]
|
407
|
+
end
|
408
|
+
|
409
|
+
class InternalServerException
|
410
|
+
attr_accessor message: ::String
|
411
|
+
SENSITIVE: []
|
412
|
+
end
|
413
|
+
|
414
|
+
class InvalidResourcePolicyException
|
415
|
+
attr_accessor message: ::String
|
416
|
+
SENSITIVE: []
|
417
|
+
end
|
418
|
+
|
419
|
+
class LambdaEndpointConfig
|
420
|
+
attr_accessor arn: ::String
|
421
|
+
SENSITIVE: []
|
422
|
+
end
|
423
|
+
|
424
|
+
class LambdaEndpointInput
|
425
|
+
attr_accessor arn: ::String
|
426
|
+
SENSITIVE: []
|
427
|
+
end
|
428
|
+
|
429
|
+
class LambdaEndpointSummary
|
430
|
+
attr_accessor arn: ::String
|
431
|
+
SENSITIVE: []
|
432
|
+
end
|
433
|
+
|
434
|
+
class ListApplicationsRequest
|
435
|
+
attr_accessor environment_identifier: ::String
|
436
|
+
attr_accessor max_results: ::Integer
|
437
|
+
attr_accessor next_token: ::String
|
438
|
+
SENSITIVE: []
|
439
|
+
end
|
440
|
+
|
441
|
+
class ListApplicationsResponse
|
442
|
+
attr_accessor application_summary_list: ::Array[Types::ApplicationSummary]
|
443
|
+
attr_accessor next_token: ::String
|
444
|
+
SENSITIVE: []
|
445
|
+
end
|
446
|
+
|
447
|
+
class ListEnvironmentVpcsRequest
|
448
|
+
attr_accessor environment_identifier: ::String
|
449
|
+
attr_accessor max_results: ::Integer
|
450
|
+
attr_accessor next_token: ::String
|
451
|
+
SENSITIVE: []
|
452
|
+
end
|
453
|
+
|
454
|
+
class ListEnvironmentVpcsResponse
|
455
|
+
attr_accessor environment_vpc_list: ::Array[Types::EnvironmentVpc]
|
456
|
+
attr_accessor next_token: ::String
|
457
|
+
SENSITIVE: []
|
458
|
+
end
|
459
|
+
|
460
|
+
class ListEnvironmentsRequest
|
461
|
+
attr_accessor max_results: ::Integer
|
462
|
+
attr_accessor next_token: ::String
|
463
|
+
SENSITIVE: []
|
464
|
+
end
|
465
|
+
|
466
|
+
class ListEnvironmentsResponse
|
467
|
+
attr_accessor environment_summary_list: ::Array[Types::EnvironmentSummary]
|
468
|
+
attr_accessor next_token: ::String
|
469
|
+
SENSITIVE: []
|
470
|
+
end
|
471
|
+
|
472
|
+
class ListRoutesRequest
|
473
|
+
attr_accessor application_identifier: ::String
|
474
|
+
attr_accessor environment_identifier: ::String
|
475
|
+
attr_accessor max_results: ::Integer
|
476
|
+
attr_accessor next_token: ::String
|
477
|
+
SENSITIVE: []
|
478
|
+
end
|
479
|
+
|
480
|
+
class ListRoutesResponse
|
481
|
+
attr_accessor next_token: ::String
|
482
|
+
attr_accessor route_summary_list: ::Array[Types::RouteSummary]
|
483
|
+
SENSITIVE: []
|
484
|
+
end
|
485
|
+
|
486
|
+
class ListServicesRequest
|
487
|
+
attr_accessor application_identifier: ::String
|
488
|
+
attr_accessor environment_identifier: ::String
|
489
|
+
attr_accessor max_results: ::Integer
|
490
|
+
attr_accessor next_token: ::String
|
491
|
+
SENSITIVE: []
|
492
|
+
end
|
493
|
+
|
494
|
+
class ListServicesResponse
|
495
|
+
attr_accessor next_token: ::String
|
496
|
+
attr_accessor service_summary_list: ::Array[Types::ServiceSummary]
|
497
|
+
SENSITIVE: []
|
498
|
+
end
|
499
|
+
|
500
|
+
class ListTagsForResourceRequest
|
501
|
+
attr_accessor resource_arn: ::String
|
502
|
+
SENSITIVE: []
|
503
|
+
end
|
504
|
+
|
505
|
+
class ListTagsForResourceResponse
|
506
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
507
|
+
SENSITIVE: [:tags]
|
508
|
+
end
|
509
|
+
|
510
|
+
class PutResourcePolicyRequest
|
511
|
+
attr_accessor policy: ::String
|
512
|
+
attr_accessor resource_arn: ::String
|
513
|
+
SENSITIVE: []
|
514
|
+
end
|
515
|
+
|
516
|
+
class PutResourcePolicyResponse < Aws::EmptyStructure
|
517
|
+
end
|
518
|
+
|
519
|
+
class ResourceNotFoundException
|
520
|
+
attr_accessor message: ::String
|
521
|
+
attr_accessor resource_id: ::String
|
522
|
+
attr_accessor resource_type: ::String
|
523
|
+
SENSITIVE: []
|
524
|
+
end
|
525
|
+
|
526
|
+
class RouteSummary
|
527
|
+
attr_accessor append_source_path: bool
|
528
|
+
attr_accessor application_id: ::String
|
529
|
+
attr_accessor arn: ::String
|
530
|
+
attr_accessor created_by_account_id: ::String
|
531
|
+
attr_accessor created_time: ::Time
|
532
|
+
attr_accessor environment_id: ::String
|
533
|
+
attr_accessor error: Types::ErrorResponse
|
534
|
+
attr_accessor include_child_paths: bool
|
535
|
+
attr_accessor last_updated_time: ::Time
|
536
|
+
attr_accessor methods: ::Array[("DELETE" | "GET" | "HEAD" | "OPTIONS" | "PATCH" | "POST" | "PUT")]
|
537
|
+
attr_accessor owner_account_id: ::String
|
538
|
+
attr_accessor path_resource_to_id: ::Hash[::String, ::String]
|
539
|
+
attr_accessor route_id: ::String
|
540
|
+
attr_accessor route_type: ("DEFAULT" | "URI_PATH")
|
541
|
+
attr_accessor service_id: ::String
|
542
|
+
attr_accessor source_path: ::String
|
543
|
+
attr_accessor state: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "UPDATING" | "INACTIVE")
|
544
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
545
|
+
SENSITIVE: [:tags]
|
546
|
+
end
|
547
|
+
|
548
|
+
class ServiceQuotaExceededException
|
549
|
+
attr_accessor message: ::String
|
550
|
+
attr_accessor quota_code: ::String
|
551
|
+
attr_accessor resource_id: ::String
|
552
|
+
attr_accessor resource_type: ::String
|
553
|
+
attr_accessor service_code: ::String
|
554
|
+
SENSITIVE: []
|
555
|
+
end
|
556
|
+
|
557
|
+
class ServiceSummary
|
558
|
+
attr_accessor application_id: ::String
|
559
|
+
attr_accessor arn: ::String
|
560
|
+
attr_accessor created_by_account_id: ::String
|
561
|
+
attr_accessor created_time: ::Time
|
562
|
+
attr_accessor description: ::String
|
563
|
+
attr_accessor endpoint_type: ("LAMBDA" | "URL")
|
564
|
+
attr_accessor environment_id: ::String
|
565
|
+
attr_accessor error: Types::ErrorResponse
|
566
|
+
attr_accessor lambda_endpoint: Types::LambdaEndpointSummary
|
567
|
+
attr_accessor last_updated_time: ::Time
|
568
|
+
attr_accessor name: ::String
|
569
|
+
attr_accessor owner_account_id: ::String
|
570
|
+
attr_accessor service_id: ::String
|
571
|
+
attr_accessor state: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED")
|
572
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
573
|
+
attr_accessor url_endpoint: Types::UrlEndpointSummary
|
574
|
+
attr_accessor vpc_id: ::String
|
575
|
+
SENSITIVE: [:tags]
|
576
|
+
end
|
577
|
+
|
578
|
+
class TagResourceRequest
|
579
|
+
attr_accessor resource_arn: ::String
|
580
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
581
|
+
SENSITIVE: [:tags]
|
582
|
+
end
|
583
|
+
|
584
|
+
class TagResourceResponse < Aws::EmptyStructure
|
585
|
+
end
|
586
|
+
|
587
|
+
class ThrottlingException
|
588
|
+
attr_accessor message: ::String
|
589
|
+
attr_accessor quota_code: ::String
|
590
|
+
attr_accessor retry_after_seconds: ::Integer
|
591
|
+
attr_accessor service_code: ::String
|
592
|
+
SENSITIVE: []
|
593
|
+
end
|
594
|
+
|
595
|
+
class UntagResourceRequest
|
596
|
+
attr_accessor resource_arn: ::String
|
597
|
+
attr_accessor tag_keys: ::Array[::String]
|
598
|
+
SENSITIVE: [:tag_keys]
|
599
|
+
end
|
600
|
+
|
601
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
602
|
+
end
|
603
|
+
|
604
|
+
class UpdateRouteRequest
|
605
|
+
attr_accessor activation_state: ("ACTIVE" | "INACTIVE")
|
606
|
+
attr_accessor application_identifier: ::String
|
607
|
+
attr_accessor environment_identifier: ::String
|
608
|
+
attr_accessor route_identifier: ::String
|
609
|
+
SENSITIVE: []
|
610
|
+
end
|
611
|
+
|
612
|
+
class UpdateRouteResponse
|
613
|
+
attr_accessor application_id: ::String
|
614
|
+
attr_accessor arn: ::String
|
615
|
+
attr_accessor last_updated_time: ::Time
|
616
|
+
attr_accessor route_id: ::String
|
617
|
+
attr_accessor service_id: ::String
|
618
|
+
attr_accessor state: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "UPDATING" | "INACTIVE")
|
619
|
+
SENSITIVE: []
|
620
|
+
end
|
621
|
+
|
622
|
+
class UriPathRouteInput
|
623
|
+
attr_accessor activation_state: ("ACTIVE" | "INACTIVE")
|
624
|
+
attr_accessor append_source_path: bool
|
625
|
+
attr_accessor include_child_paths: bool
|
626
|
+
attr_accessor methods: ::Array[("DELETE" | "GET" | "HEAD" | "OPTIONS" | "PATCH" | "POST" | "PUT")]
|
627
|
+
attr_accessor source_path: ::String
|
628
|
+
SENSITIVE: []
|
629
|
+
end
|
630
|
+
|
631
|
+
class UrlEndpointConfig
|
632
|
+
attr_accessor health_url: ::String
|
633
|
+
attr_accessor url: ::String
|
634
|
+
SENSITIVE: []
|
635
|
+
end
|
636
|
+
|
637
|
+
class UrlEndpointInput
|
638
|
+
attr_accessor health_url: ::String
|
639
|
+
attr_accessor url: ::String
|
640
|
+
SENSITIVE: []
|
641
|
+
end
|
642
|
+
|
643
|
+
class UrlEndpointSummary
|
644
|
+
attr_accessor health_url: ::String
|
645
|
+
attr_accessor url: ::String
|
646
|
+
SENSITIVE: []
|
647
|
+
end
|
648
|
+
|
649
|
+
class ValidationException
|
650
|
+
attr_accessor message: ::String
|
651
|
+
SENSITIVE: []
|
652
|
+
end
|
653
|
+
end
|
654
|
+
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 MigrationHubRefactorSpaces
|
10
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|