aws-sdk-appregistry 1.0.0 → 1.5.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 +33 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-appregistry.rb +2 -2
- data/lib/aws-sdk-appregistry/client.rb +184 -43
- data/lib/aws-sdk-appregistry/client_api.rb +85 -2
- data/lib/aws-sdk-appregistry/errors.rb +1 -1
- data/lib/aws-sdk-appregistry/resource.rb +1 -1
- data/lib/aws-sdk-appregistry/types.rb +225 -86
- metadata +8 -5
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -61,6 +61,8 @@ module Aws::AppRegistry
|
|
61
61
|
ListAssociatedResourcesResponse = Shapes::StructureShape.new(name: 'ListAssociatedResourcesResponse')
|
62
62
|
ListAttributeGroupsRequest = Shapes::StructureShape.new(name: 'ListAttributeGroupsRequest')
|
63
63
|
ListAttributeGroupsResponse = Shapes::StructureShape.new(name: 'ListAttributeGroupsResponse')
|
64
|
+
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
65
|
+
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
64
66
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
65
67
|
Name = Shapes::StringShape.new(name: 'Name')
|
66
68
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
@@ -72,10 +74,18 @@ module Aws::AppRegistry
|
|
72
74
|
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
73
75
|
StackArn = Shapes::StringShape.new(name: 'StackArn')
|
74
76
|
String = Shapes::StringShape.new(name: 'String')
|
77
|
+
SyncAction = Shapes::StringShape.new(name: 'SyncAction')
|
78
|
+
SyncResourceRequest = Shapes::StructureShape.new(name: 'SyncResourceRequest')
|
79
|
+
SyncResourceResponse = Shapes::StructureShape.new(name: 'SyncResourceResponse')
|
75
80
|
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
81
|
+
TagKeys = Shapes::ListShape.new(name: 'TagKeys')
|
82
|
+
TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
|
83
|
+
TagResourceResponse = Shapes::StructureShape.new(name: 'TagResourceResponse')
|
76
84
|
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
77
85
|
Tags = Shapes::MapShape.new(name: 'Tags')
|
78
86
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp', timestampFormat: "iso8601")
|
87
|
+
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
88
|
+
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
79
89
|
UpdateApplicationRequest = Shapes::StructureShape.new(name: 'UpdateApplicationRequest')
|
80
90
|
UpdateApplicationResponse = Shapes::StructureShape.new(name: 'UpdateApplicationResponse')
|
81
91
|
UpdateAttributeGroupRequest = Shapes::StructureShape.new(name: 'UpdateAttributeGroupRequest')
|
@@ -253,6 +263,12 @@ module Aws::AppRegistry
|
|
253
263
|
ListAttributeGroupsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
254
264
|
ListAttributeGroupsResponse.struct_class = Types::ListAttributeGroupsResponse
|
255
265
|
|
266
|
+
ListTagsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location: "uri", location_name: "resourceArn"))
|
267
|
+
ListTagsForResourceRequest.struct_class = Types::ListTagsForResourceRequest
|
268
|
+
|
269
|
+
ListTagsForResourceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
270
|
+
ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
|
271
|
+
|
256
272
|
ResourceInfo.add_member(:name, Shapes::ShapeRef.new(shape: ResourceSpecifier, location_name: "name"))
|
257
273
|
ResourceInfo.add_member(:arn, Shapes::ShapeRef.new(shape: StackArn, location_name: "arn"))
|
258
274
|
ResourceInfo.struct_class = Types::ResourceInfo
|
@@ -265,9 +281,32 @@ module Aws::AppRegistry
|
|
265
281
|
ServiceQuotaExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
266
282
|
ServiceQuotaExceededException.struct_class = Types::ServiceQuotaExceededException
|
267
283
|
|
284
|
+
SyncResourceRequest.add_member(:resource_type, Shapes::ShapeRef.new(shape: ResourceType, required: true, location: "uri", location_name: "resourceType"))
|
285
|
+
SyncResourceRequest.add_member(:resource, Shapes::ShapeRef.new(shape: ResourceSpecifier, required: true, location: "uri", location_name: "resource"))
|
286
|
+
SyncResourceRequest.struct_class = Types::SyncResourceRequest
|
287
|
+
|
288
|
+
SyncResourceResponse.add_member(:application_arn, Shapes::ShapeRef.new(shape: ApplicationArn, location_name: "applicationArn"))
|
289
|
+
SyncResourceResponse.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "resourceArn"))
|
290
|
+
SyncResourceResponse.add_member(:action_taken, Shapes::ShapeRef.new(shape: SyncAction, location_name: "actionTaken"))
|
291
|
+
SyncResourceResponse.struct_class = Types::SyncResourceResponse
|
292
|
+
|
293
|
+
TagKeys.member = Shapes::ShapeRef.new(shape: TagKey)
|
294
|
+
|
295
|
+
TagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location: "uri", location_name: "resourceArn"))
|
296
|
+
TagResourceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, required: true, location_name: "tags"))
|
297
|
+
TagResourceRequest.struct_class = Types::TagResourceRequest
|
298
|
+
|
299
|
+
TagResourceResponse.struct_class = Types::TagResourceResponse
|
300
|
+
|
268
301
|
Tags.key = Shapes::ShapeRef.new(shape: TagKey)
|
269
302
|
Tags.value = Shapes::ShapeRef.new(shape: TagValue)
|
270
303
|
|
304
|
+
UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location: "uri", location_name: "resourceArn"))
|
305
|
+
UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeys, required: true, location: "querystring", location_name: "tagKeys"))
|
306
|
+
UntagResourceRequest.struct_class = Types::UntagResourceRequest
|
307
|
+
|
308
|
+
UntagResourceResponse.struct_class = Types::UntagResourceResponse
|
309
|
+
|
271
310
|
UpdateApplicationRequest.add_member(:application, Shapes::ShapeRef.new(shape: ApplicationSpecifier, required: true, location: "uri", location_name: "application"))
|
272
311
|
UpdateApplicationRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "name"))
|
273
312
|
UpdateApplicationRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
@@ -304,7 +343,7 @@ module Aws::AppRegistry
|
|
304
343
|
"serviceId" => "Service Catalog AppRegistry",
|
305
344
|
"signatureVersion" => "v4",
|
306
345
|
"signingName" => "servicecatalog",
|
307
|
-
"uid" => "AWS242AppRegistry",
|
346
|
+
"uid" => "AWS242AppRegistry-2020-06-24",
|
308
347
|
}
|
309
348
|
|
310
349
|
api.add_operation(:associate_attribute_group, Seahorse::Model::Operation.new.tap do |o|
|
@@ -485,6 +524,50 @@ module Aws::AppRegistry
|
|
485
524
|
)
|
486
525
|
end)
|
487
526
|
|
527
|
+
api.add_operation(:list_tags_for_resource, Seahorse::Model::Operation.new.tap do |o|
|
528
|
+
o.name = "ListTagsForResource"
|
529
|
+
o.http_method = "GET"
|
530
|
+
o.http_request_uri = "/tags/{resourceArn}"
|
531
|
+
o.input = Shapes::ShapeRef.new(shape: ListTagsForResourceRequest)
|
532
|
+
o.output = Shapes::ShapeRef.new(shape: ListTagsForResourceResponse)
|
533
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
534
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
535
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
536
|
+
end)
|
537
|
+
|
538
|
+
api.add_operation(:sync_resource, Seahorse::Model::Operation.new.tap do |o|
|
539
|
+
o.name = "SyncResource"
|
540
|
+
o.http_method = "POST"
|
541
|
+
o.http_request_uri = "/sync/{resourceType}/{resource}"
|
542
|
+
o.input = Shapes::ShapeRef.new(shape: SyncResourceRequest)
|
543
|
+
o.output = Shapes::ShapeRef.new(shape: SyncResourceResponse)
|
544
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
545
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
546
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
547
|
+
end)
|
548
|
+
|
549
|
+
api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
|
550
|
+
o.name = "TagResource"
|
551
|
+
o.http_method = "POST"
|
552
|
+
o.http_request_uri = "/tags/{resourceArn}"
|
553
|
+
o.input = Shapes::ShapeRef.new(shape: TagResourceRequest)
|
554
|
+
o.output = Shapes::ShapeRef.new(shape: TagResourceResponse)
|
555
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
556
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
557
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
558
|
+
end)
|
559
|
+
|
560
|
+
api.add_operation(:untag_resource, Seahorse::Model::Operation.new.tap do |o|
|
561
|
+
o.name = "UntagResource"
|
562
|
+
o.http_method = "DELETE"
|
563
|
+
o.http_request_uri = "/tags/{resourceArn}"
|
564
|
+
o.input = Shapes::ShapeRef.new(shape: UntagResourceRequest)
|
565
|
+
o.output = Shapes::ShapeRef.new(shape: UntagResourceResponse)
|
566
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
567
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
568
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
569
|
+
end)
|
570
|
+
|
488
571
|
api.add_operation(:update_application, Seahorse::Model::Operation.new.tap do |o|
|
489
572
|
o.name = "UpdateApplication"
|
490
573
|
o.http_method = "PATCH"
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -45,7 +45,7 @@ module Aws::AppRegistry
|
|
45
45
|
# Key-value pairs you can use to associate with the application.
|
46
46
|
# @return [Hash<String,String>]
|
47
47
|
#
|
48
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/Application AWS API Documentation
|
48
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/Application AWS API Documentation
|
49
49
|
#
|
50
50
|
class Application < Struct.new(
|
51
51
|
:id,
|
@@ -89,7 +89,7 @@ module Aws::AppRegistry
|
|
89
89
|
# was last updated.
|
90
90
|
# @return [Time]
|
91
91
|
#
|
92
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ApplicationSummary AWS API Documentation
|
92
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ApplicationSummary AWS API Documentation
|
93
93
|
#
|
94
94
|
class ApplicationSummary < Struct.new(
|
95
95
|
:id,
|
@@ -119,7 +119,7 @@ module Aws::AppRegistry
|
|
119
119
|
# describe the application.
|
120
120
|
# @return [String]
|
121
121
|
#
|
122
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/AssociateAttributeGroupRequest AWS API Documentation
|
122
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/AssociateAttributeGroupRequest AWS API Documentation
|
123
123
|
#
|
124
124
|
class AssociateAttributeGroupRequest < Struct.new(
|
125
125
|
:application,
|
@@ -138,7 +138,7 @@ module Aws::AppRegistry
|
|
138
138
|
# the application's new attributes.
|
139
139
|
# @return [String]
|
140
140
|
#
|
141
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/AssociateAttributeGroupResponse AWS API Documentation
|
141
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/AssociateAttributeGroupResponse AWS API Documentation
|
142
142
|
#
|
143
143
|
class AssociateAttributeGroupResponse < Struct.new(
|
144
144
|
:application_arn,
|
@@ -161,6 +161,7 @@ module Aws::AppRegistry
|
|
161
161
|
# @return [String]
|
162
162
|
#
|
163
163
|
# @!attribute [rw] resource_type
|
164
|
+
# The type of resource of which the application will be associated.
|
164
165
|
# @return [String]
|
165
166
|
#
|
166
167
|
# @!attribute [rw] resource
|
@@ -168,7 +169,7 @@ module Aws::AppRegistry
|
|
168
169
|
# associated.
|
169
170
|
# @return [String]
|
170
171
|
#
|
171
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/AssociateResourceRequest AWS API Documentation
|
172
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/AssociateResourceRequest AWS API Documentation
|
172
173
|
#
|
173
174
|
class AssociateResourceRequest < Struct.new(
|
174
175
|
:application,
|
@@ -187,7 +188,7 @@ module Aws::AppRegistry
|
|
187
188
|
# The Amazon resource name (ARN) that specifies the resource.
|
188
189
|
# @return [String]
|
189
190
|
#
|
190
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/AssociateResourceResponse AWS API Documentation
|
191
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/AssociateResourceResponse AWS API Documentation
|
191
192
|
#
|
192
193
|
class AssociateResourceResponse < Struct.new(
|
193
194
|
:application_arn,
|
@@ -205,8 +206,8 @@ module Aws::AppRegistry
|
|
205
206
|
# @return [String]
|
206
207
|
#
|
207
208
|
# @!attribute [rw] arn
|
208
|
-
# The Amazon resource name (ARN) that specifies the
|
209
|
-
# services.
|
209
|
+
# The Amazon resource name (ARN) that specifies the attribute group
|
210
|
+
# across services.
|
210
211
|
# @return [String]
|
211
212
|
#
|
212
213
|
# @!attribute [rw] name
|
@@ -232,7 +233,7 @@ module Aws::AppRegistry
|
|
232
233
|
# Key-value pairs you can use to associate with the attribute group.
|
233
234
|
# @return [Hash<String,String>]
|
234
235
|
#
|
235
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/AttributeGroup AWS API Documentation
|
236
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/AttributeGroup AWS API Documentation
|
236
237
|
#
|
237
238
|
class AttributeGroup < Struct.new(
|
238
239
|
:id,
|
@@ -254,8 +255,8 @@ module Aws::AppRegistry
|
|
254
255
|
# @return [String]
|
255
256
|
#
|
256
257
|
# @!attribute [rw] arn
|
257
|
-
# The Amazon resource name (ARN) that specifies the
|
258
|
-
# services.
|
258
|
+
# The Amazon resource name (ARN) that specifies the attribute group
|
259
|
+
# across services.
|
259
260
|
# @return [String]
|
260
261
|
#
|
261
262
|
# @!attribute [rw] name
|
@@ -277,7 +278,7 @@ module Aws::AppRegistry
|
|
277
278
|
# newly created attribute group.
|
278
279
|
# @return [Time]
|
279
280
|
#
|
280
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/AttributeGroupSummary AWS API Documentation
|
281
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/AttributeGroupSummary AWS API Documentation
|
281
282
|
#
|
282
283
|
class AttributeGroupSummary < Struct.new(
|
283
284
|
:id,
|
@@ -296,7 +297,7 @@ module Aws::AppRegistry
|
|
296
297
|
# @!attribute [rw] message
|
297
298
|
# @return [String]
|
298
299
|
#
|
299
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ConflictException AWS API Documentation
|
300
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ConflictException AWS API Documentation
|
300
301
|
#
|
301
302
|
class ConflictException < Struct.new(
|
302
303
|
:message)
|
@@ -330,15 +331,18 @@ module Aws::AppRegistry
|
|
330
331
|
# @return [Hash<String,String>]
|
331
332
|
#
|
332
333
|
# @!attribute [rw] client_token
|
333
|
-
# A unique identifier that you provide to ensure idempotency. If
|
334
|
-
#
|
335
|
-
#
|
334
|
+
# A unique identifier that you provide to ensure idempotency. If you
|
335
|
+
# retry a request that completed successfully using the same client
|
336
|
+
# token and the same parameters, the retry succeeds without performing
|
337
|
+
# any further actions. If you retry a successful request using the
|
338
|
+
# same client token, but one or more of the parameters are different,
|
339
|
+
# the retry fails.
|
336
340
|
#
|
337
341
|
# **A suitable default value is auto-generated.** You should normally
|
338
342
|
# not need to pass this option.
|
339
343
|
# @return [String]
|
340
344
|
#
|
341
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/CreateApplicationRequest AWS API Documentation
|
345
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/CreateApplicationRequest AWS API Documentation
|
342
346
|
#
|
343
347
|
class CreateApplicationRequest < Struct.new(
|
344
348
|
:name,
|
@@ -350,10 +354,10 @@ module Aws::AppRegistry
|
|
350
354
|
end
|
351
355
|
|
352
356
|
# @!attribute [rw] application
|
353
|
-
#
|
357
|
+
# Information about the application.
|
354
358
|
# @return [Types::Application]
|
355
359
|
#
|
356
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/CreateApplicationResponse AWS API Documentation
|
360
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/CreateApplicationResponse AWS API Documentation
|
357
361
|
#
|
358
362
|
class CreateApplicationResponse < Struct.new(
|
359
363
|
:application)
|
@@ -393,15 +397,18 @@ module Aws::AppRegistry
|
|
393
397
|
# @return [Hash<String,String>]
|
394
398
|
#
|
395
399
|
# @!attribute [rw] client_token
|
396
|
-
# A unique identifier that you provide to ensure idempotency. If
|
397
|
-
#
|
398
|
-
#
|
400
|
+
# A unique identifier that you provide to ensure idempotency. If you
|
401
|
+
# retry a request that completed successfully using the same client
|
402
|
+
# token and the same parameters, the retry succeeds without performing
|
403
|
+
# any further actions. If you retry a successful request using the
|
404
|
+
# same client token, but one or more of the parameters are different,
|
405
|
+
# the retry fails.
|
399
406
|
#
|
400
407
|
# **A suitable default value is auto-generated.** You should normally
|
401
408
|
# not need to pass this option.
|
402
409
|
# @return [String]
|
403
410
|
#
|
404
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/CreateAttributeGroupRequest AWS API Documentation
|
411
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/CreateAttributeGroupRequest AWS API Documentation
|
405
412
|
#
|
406
413
|
class CreateAttributeGroupRequest < Struct.new(
|
407
414
|
:name,
|
@@ -414,11 +421,10 @@ module Aws::AppRegistry
|
|
414
421
|
end
|
415
422
|
|
416
423
|
# @!attribute [rw] attribute_group
|
417
|
-
#
|
418
|
-
# describe the application.
|
424
|
+
# Information about the attribute group.
|
419
425
|
# @return [Types::AttributeGroup]
|
420
426
|
#
|
421
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/CreateAttributeGroupResponse AWS API Documentation
|
427
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/CreateAttributeGroupResponse AWS API Documentation
|
422
428
|
#
|
423
429
|
class CreateAttributeGroupResponse < Struct.new(
|
424
430
|
:attribute_group)
|
@@ -437,7 +443,7 @@ module Aws::AppRegistry
|
|
437
443
|
# The name or ID of the application.
|
438
444
|
# @return [String]
|
439
445
|
#
|
440
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/DeleteApplicationRequest AWS API Documentation
|
446
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/DeleteApplicationRequest AWS API Documentation
|
441
447
|
#
|
442
448
|
class DeleteApplicationRequest < Struct.new(
|
443
449
|
:application)
|
@@ -446,10 +452,10 @@ module Aws::AppRegistry
|
|
446
452
|
end
|
447
453
|
|
448
454
|
# @!attribute [rw] application
|
449
|
-
#
|
455
|
+
# Information about the deleted application.
|
450
456
|
# @return [Types::ApplicationSummary]
|
451
457
|
#
|
452
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/DeleteApplicationResponse AWS API Documentation
|
458
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/DeleteApplicationResponse AWS API Documentation
|
453
459
|
#
|
454
460
|
class DeleteApplicationResponse < Struct.new(
|
455
461
|
:application)
|
@@ -469,7 +475,7 @@ module Aws::AppRegistry
|
|
469
475
|
# describe the application.
|
470
476
|
# @return [String]
|
471
477
|
#
|
472
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/DeleteAttributeGroupRequest AWS API Documentation
|
478
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/DeleteAttributeGroupRequest AWS API Documentation
|
473
479
|
#
|
474
480
|
class DeleteAttributeGroupRequest < Struct.new(
|
475
481
|
:attribute_group)
|
@@ -478,11 +484,10 @@ module Aws::AppRegistry
|
|
478
484
|
end
|
479
485
|
|
480
486
|
# @!attribute [rw] attribute_group
|
481
|
-
#
|
482
|
-
# describe the application.
|
487
|
+
# Information about the deleted attribute group.
|
483
488
|
# @return [Types::AttributeGroupSummary]
|
484
489
|
#
|
485
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/DeleteAttributeGroupResponse AWS API Documentation
|
490
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/DeleteAttributeGroupResponse AWS API Documentation
|
486
491
|
#
|
487
492
|
class DeleteAttributeGroupResponse < Struct.new(
|
488
493
|
:attribute_group)
|
@@ -507,7 +512,7 @@ module Aws::AppRegistry
|
|
507
512
|
# describe the application.
|
508
513
|
# @return [String]
|
509
514
|
#
|
510
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/DisassociateAttributeGroupRequest AWS API Documentation
|
515
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/DisassociateAttributeGroupRequest AWS API Documentation
|
511
516
|
#
|
512
517
|
class DisassociateAttributeGroupRequest < Struct.new(
|
513
518
|
:application,
|
@@ -517,16 +522,14 @@ module Aws::AppRegistry
|
|
517
522
|
end
|
518
523
|
|
519
524
|
# @!attribute [rw] application_arn
|
520
|
-
# The Amazon resource name (ARN)
|
521
|
-
# with attributes.
|
525
|
+
# The Amazon resource name (ARN) that specifies the application.
|
522
526
|
# @return [String]
|
523
527
|
#
|
524
528
|
# @!attribute [rw] attribute_group_arn
|
525
|
-
# The Amazon resource name (ARN)
|
526
|
-
# the application's new attributes.
|
529
|
+
# The Amazon resource name (ARN) that specifies the attribute group.
|
527
530
|
# @return [String]
|
528
531
|
#
|
529
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/DisassociateAttributeGroupResponse AWS API Documentation
|
532
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/DisassociateAttributeGroupResponse AWS API Documentation
|
530
533
|
#
|
531
534
|
class DisassociateAttributeGroupResponse < Struct.new(
|
532
535
|
:application_arn,
|
@@ -549,15 +552,14 @@ module Aws::AppRegistry
|
|
549
552
|
# @return [String]
|
550
553
|
#
|
551
554
|
# @!attribute [rw] resource_type
|
552
|
-
# The type of the resource that
|
555
|
+
# The type of the resource that is being disassociated.
|
553
556
|
# @return [String]
|
554
557
|
#
|
555
558
|
# @!attribute [rw] resource
|
556
|
-
# The name or ID of the resource
|
557
|
-
# associated.
|
559
|
+
# The name or ID of the resource.
|
558
560
|
# @return [String]
|
559
561
|
#
|
560
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/DisassociateResourceRequest AWS API Documentation
|
562
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/DisassociateResourceRequest AWS API Documentation
|
561
563
|
#
|
562
564
|
class DisassociateResourceRequest < Struct.new(
|
563
565
|
:application,
|
@@ -568,15 +570,14 @@ module Aws::AppRegistry
|
|
568
570
|
end
|
569
571
|
|
570
572
|
# @!attribute [rw] application_arn
|
571
|
-
# The Amazon resource name (ARN)
|
572
|
-
# with attributes.
|
573
|
+
# The Amazon resource name (ARN) that specifies the application.
|
573
574
|
# @return [String]
|
574
575
|
#
|
575
576
|
# @!attribute [rw] resource_arn
|
576
577
|
# The Amazon resource name (ARN) that specifies the resource.
|
577
578
|
# @return [String]
|
578
579
|
#
|
579
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/DisassociateResourceResponse AWS API Documentation
|
580
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/DisassociateResourceResponse AWS API Documentation
|
580
581
|
#
|
581
582
|
class DisassociateResourceResponse < Struct.new(
|
582
583
|
:application_arn,
|
@@ -596,7 +597,7 @@ module Aws::AppRegistry
|
|
596
597
|
# The name or ID of the application.
|
597
598
|
# @return [String]
|
598
599
|
#
|
599
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/GetApplicationRequest AWS API Documentation
|
600
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/GetApplicationRequest AWS API Documentation
|
600
601
|
#
|
601
602
|
class GetApplicationRequest < Struct.new(
|
602
603
|
:application)
|
@@ -638,10 +639,10 @@ module Aws::AppRegistry
|
|
638
639
|
# @return [Integer]
|
639
640
|
#
|
640
641
|
# @!attribute [rw] tags
|
641
|
-
# Key-value pairs
|
642
|
+
# Key-value pairs associated with the application.
|
642
643
|
# @return [Hash<String,String>]
|
643
644
|
#
|
644
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/GetApplicationResponse AWS API Documentation
|
645
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/GetApplicationResponse AWS API Documentation
|
645
646
|
#
|
646
647
|
class GetApplicationResponse < Struct.new(
|
647
648
|
:id,
|
@@ -668,7 +669,7 @@ module Aws::AppRegistry
|
|
668
669
|
# describe the application.
|
669
670
|
# @return [String]
|
670
671
|
#
|
671
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/GetAttributeGroupRequest AWS API Documentation
|
672
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/GetAttributeGroupRequest AWS API Documentation
|
672
673
|
#
|
673
674
|
class GetAttributeGroupRequest < Struct.new(
|
674
675
|
:attribute_group)
|
@@ -677,12 +678,12 @@ module Aws::AppRegistry
|
|
677
678
|
end
|
678
679
|
|
679
680
|
# @!attribute [rw] id
|
680
|
-
# The identifier of the
|
681
|
+
# The identifier of the attribute group.
|
681
682
|
# @return [String]
|
682
683
|
#
|
683
684
|
# @!attribute [rw] arn
|
684
|
-
# The Amazon resource name (ARN) that specifies the
|
685
|
-
# services.
|
685
|
+
# The Amazon resource name (ARN) that specifies the attribute group
|
686
|
+
# across services.
|
686
687
|
# @return [String]
|
687
688
|
#
|
688
689
|
# @!attribute [rw] name
|
@@ -711,10 +712,10 @@ module Aws::AppRegistry
|
|
711
712
|
# @return [Time]
|
712
713
|
#
|
713
714
|
# @!attribute [rw] tags
|
714
|
-
# Key-value pairs
|
715
|
+
# Key-value pairs associated with the attribute group.
|
715
716
|
# @return [Hash<String,String>]
|
716
717
|
#
|
717
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/GetAttributeGroupResponse AWS API Documentation
|
718
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/GetAttributeGroupResponse AWS API Documentation
|
718
719
|
#
|
719
720
|
class GetAttributeGroupResponse < Struct.new(
|
720
721
|
:id,
|
@@ -734,7 +735,7 @@ module Aws::AppRegistry
|
|
734
735
|
# @!attribute [rw] message
|
735
736
|
# @return [String]
|
736
737
|
#
|
737
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/InternalServerException AWS API Documentation
|
738
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/InternalServerException AWS API Documentation
|
738
739
|
#
|
739
740
|
class InternalServerException < Struct.new(
|
740
741
|
:message)
|
@@ -761,7 +762,7 @@ module Aws::AppRegistry
|
|
761
762
|
# optional.
|
762
763
|
# @return [Integer]
|
763
764
|
#
|
764
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ListApplicationsRequest AWS API Documentation
|
765
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListApplicationsRequest AWS API Documentation
|
765
766
|
#
|
766
767
|
class ListApplicationsRequest < Struct.new(
|
767
768
|
:next_token,
|
@@ -771,7 +772,7 @@ module Aws::AppRegistry
|
|
771
772
|
end
|
772
773
|
|
773
774
|
# @!attribute [rw] applications
|
774
|
-
#
|
775
|
+
# This list of applications.
|
775
776
|
# @return [Array<Types::ApplicationSummary>]
|
776
777
|
#
|
777
778
|
# @!attribute [rw] next_token
|
@@ -779,7 +780,7 @@ module Aws::AppRegistry
|
|
779
780
|
# API call.
|
780
781
|
# @return [String]
|
781
782
|
#
|
782
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ListApplicationsResponse AWS API Documentation
|
783
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListApplicationsResponse AWS API Documentation
|
783
784
|
#
|
784
785
|
class ListApplicationsResponse < Struct.new(
|
785
786
|
:applications,
|
@@ -812,7 +813,7 @@ module Aws::AppRegistry
|
|
812
813
|
# optional.
|
813
814
|
# @return [Integer]
|
814
815
|
#
|
815
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ListAssociatedAttributeGroupsRequest AWS API Documentation
|
816
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListAssociatedAttributeGroupsRequest AWS API Documentation
|
816
817
|
#
|
817
818
|
class ListAssociatedAttributeGroupsRequest < Struct.new(
|
818
819
|
:application,
|
@@ -831,7 +832,7 @@ module Aws::AppRegistry
|
|
831
832
|
# API call.
|
832
833
|
# @return [String]
|
833
834
|
#
|
834
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ListAssociatedAttributeGroupsResponse AWS API Documentation
|
835
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListAssociatedAttributeGroupsResponse AWS API Documentation
|
835
836
|
#
|
836
837
|
class ListAssociatedAttributeGroupsResponse < Struct.new(
|
837
838
|
:attribute_groups,
|
@@ -864,7 +865,7 @@ module Aws::AppRegistry
|
|
864
865
|
# optional.
|
865
866
|
# @return [Integer]
|
866
867
|
#
|
867
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ListAssociatedResourcesRequest AWS API Documentation
|
868
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListAssociatedResourcesRequest AWS API Documentation
|
868
869
|
#
|
869
870
|
class ListAssociatedResourcesRequest < Struct.new(
|
870
871
|
:application,
|
@@ -875,8 +876,7 @@ module Aws::AppRegistry
|
|
875
876
|
end
|
876
877
|
|
877
878
|
# @!attribute [rw] resources
|
878
|
-
#
|
879
|
-
# associated.
|
879
|
+
# Information about the resources.
|
880
880
|
# @return [Array<Types::ResourceInfo>]
|
881
881
|
#
|
882
882
|
# @!attribute [rw] next_token
|
@@ -884,7 +884,7 @@ module Aws::AppRegistry
|
|
884
884
|
# API call.
|
885
885
|
# @return [String]
|
886
886
|
#
|
887
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ListAssociatedResourcesResponse AWS API Documentation
|
887
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListAssociatedResourcesResponse AWS API Documentation
|
888
888
|
#
|
889
889
|
class ListAssociatedResourcesResponse < Struct.new(
|
890
890
|
:resources,
|
@@ -912,7 +912,7 @@ module Aws::AppRegistry
|
|
912
912
|
# optional.
|
913
913
|
# @return [Integer]
|
914
914
|
#
|
915
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ListAttributeGroupsRequest AWS API Documentation
|
915
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListAttributeGroupsRequest AWS API Documentation
|
916
916
|
#
|
917
917
|
class ListAttributeGroupsRequest < Struct.new(
|
918
918
|
:next_token,
|
@@ -922,7 +922,7 @@ module Aws::AppRegistry
|
|
922
922
|
end
|
923
923
|
|
924
924
|
# @!attribute [rw] attribute_groups
|
925
|
-
#
|
925
|
+
# This list of attribute groups.
|
926
926
|
# @return [Array<Types::AttributeGroupSummary>]
|
927
927
|
#
|
928
928
|
# @!attribute [rw] next_token
|
@@ -930,7 +930,7 @@ module Aws::AppRegistry
|
|
930
930
|
# API call.
|
931
931
|
# @return [String]
|
932
932
|
#
|
933
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ListAttributeGroupsResponse AWS API Documentation
|
933
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListAttributeGroupsResponse AWS API Documentation
|
934
934
|
#
|
935
935
|
class ListAttributeGroupsResponse < Struct.new(
|
936
936
|
:attribute_groups,
|
@@ -939,6 +939,37 @@ module Aws::AppRegistry
|
|
939
939
|
include Aws::Structure
|
940
940
|
end
|
941
941
|
|
942
|
+
# @note When making an API call, you may pass ListTagsForResourceRequest
|
943
|
+
# data as a hash:
|
944
|
+
#
|
945
|
+
# {
|
946
|
+
# resource_arn: "Arn", # required
|
947
|
+
# }
|
948
|
+
#
|
949
|
+
# @!attribute [rw] resource_arn
|
950
|
+
# The Amazon resource name (ARN) that specifies the resource.
|
951
|
+
# @return [String]
|
952
|
+
#
|
953
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListTagsForResourceRequest AWS API Documentation
|
954
|
+
#
|
955
|
+
class ListTagsForResourceRequest < Struct.new(
|
956
|
+
:resource_arn)
|
957
|
+
SENSITIVE = []
|
958
|
+
include Aws::Structure
|
959
|
+
end
|
960
|
+
|
961
|
+
# @!attribute [rw] tags
|
962
|
+
# The tags on the resource.
|
963
|
+
# @return [Hash<String,String>]
|
964
|
+
#
|
965
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListTagsForResourceResponse AWS API Documentation
|
966
|
+
#
|
967
|
+
class ListTagsForResourceResponse < Struct.new(
|
968
|
+
:tags)
|
969
|
+
SENSITIVE = []
|
970
|
+
include Aws::Structure
|
971
|
+
end
|
972
|
+
|
942
973
|
# Information about the resource.
|
943
974
|
#
|
944
975
|
# @!attribute [rw] name
|
@@ -946,11 +977,11 @@ module Aws::AppRegistry
|
|
946
977
|
# @return [String]
|
947
978
|
#
|
948
979
|
# @!attribute [rw] arn
|
949
|
-
# The Amazon resource name (ARN) that specifies the
|
980
|
+
# The Amazon resource name (ARN) that specifies the resource across
|
950
981
|
# services.
|
951
982
|
# @return [String]
|
952
983
|
#
|
953
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ResourceInfo AWS API Documentation
|
984
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ResourceInfo AWS API Documentation
|
954
985
|
#
|
955
986
|
class ResourceInfo < Struct.new(
|
956
987
|
:name,
|
@@ -964,7 +995,7 @@ module Aws::AppRegistry
|
|
964
995
|
# @!attribute [rw] message
|
965
996
|
# @return [String]
|
966
997
|
#
|
967
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ResourceNotFoundException AWS API Documentation
|
998
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ResourceNotFoundException AWS API Documentation
|
968
999
|
#
|
969
1000
|
class ResourceNotFoundException < Struct.new(
|
970
1001
|
:message)
|
@@ -977,7 +1008,7 @@ module Aws::AppRegistry
|
|
977
1008
|
# @!attribute [rw] message
|
978
1009
|
# @return [String]
|
979
1010
|
#
|
980
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ServiceQuotaExceededException AWS API Documentation
|
1011
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ServiceQuotaExceededException AWS API Documentation
|
981
1012
|
#
|
982
1013
|
class ServiceQuotaExceededException < Struct.new(
|
983
1014
|
:message)
|
@@ -985,6 +1016,116 @@ module Aws::AppRegistry
|
|
985
1016
|
include Aws::Structure
|
986
1017
|
end
|
987
1018
|
|
1019
|
+
# @note When making an API call, you may pass SyncResourceRequest
|
1020
|
+
# data as a hash:
|
1021
|
+
#
|
1022
|
+
# {
|
1023
|
+
# resource_type: "CFN_STACK", # required, accepts CFN_STACK
|
1024
|
+
# resource: "ResourceSpecifier", # required
|
1025
|
+
# }
|
1026
|
+
#
|
1027
|
+
# @!attribute [rw] resource_type
|
1028
|
+
# The type of resource of which the application will be associated.
|
1029
|
+
# @return [String]
|
1030
|
+
#
|
1031
|
+
# @!attribute [rw] resource
|
1032
|
+
# An entity you can work with and specify with a name or ID. Examples
|
1033
|
+
# include an Amazon EC2 instance, an AWS CloudFormation stack, or an
|
1034
|
+
# Amazon S3 bucket.
|
1035
|
+
# @return [String]
|
1036
|
+
#
|
1037
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/SyncResourceRequest AWS API Documentation
|
1038
|
+
#
|
1039
|
+
class SyncResourceRequest < Struct.new(
|
1040
|
+
:resource_type,
|
1041
|
+
:resource)
|
1042
|
+
SENSITIVE = []
|
1043
|
+
include Aws::Structure
|
1044
|
+
end
|
1045
|
+
|
1046
|
+
# @!attribute [rw] application_arn
|
1047
|
+
# The Amazon resource name (ARN) that specifies the application.
|
1048
|
+
# @return [String]
|
1049
|
+
#
|
1050
|
+
# @!attribute [rw] resource_arn
|
1051
|
+
# The Amazon resource name (ARN) that specifies the resource.
|
1052
|
+
# @return [String]
|
1053
|
+
#
|
1054
|
+
# @!attribute [rw] action_taken
|
1055
|
+
# The results of the output if an application is associated with an
|
1056
|
+
# ARN value, which could be `syncStarted` or None.
|
1057
|
+
# @return [String]
|
1058
|
+
#
|
1059
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/SyncResourceResponse AWS API Documentation
|
1060
|
+
#
|
1061
|
+
class SyncResourceResponse < Struct.new(
|
1062
|
+
:application_arn,
|
1063
|
+
:resource_arn,
|
1064
|
+
:action_taken)
|
1065
|
+
SENSITIVE = []
|
1066
|
+
include Aws::Structure
|
1067
|
+
end
|
1068
|
+
|
1069
|
+
# @note When making an API call, you may pass TagResourceRequest
|
1070
|
+
# data as a hash:
|
1071
|
+
#
|
1072
|
+
# {
|
1073
|
+
# resource_arn: "Arn", # required
|
1074
|
+
# tags: { # required
|
1075
|
+
# "TagKey" => "TagValue",
|
1076
|
+
# },
|
1077
|
+
# }
|
1078
|
+
#
|
1079
|
+
# @!attribute [rw] resource_arn
|
1080
|
+
# The Amazon resource name (ARN) that specifies the resource.
|
1081
|
+
# @return [String]
|
1082
|
+
#
|
1083
|
+
# @!attribute [rw] tags
|
1084
|
+
# The new or modified tags for the resource.
|
1085
|
+
# @return [Hash<String,String>]
|
1086
|
+
#
|
1087
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/TagResourceRequest AWS API Documentation
|
1088
|
+
#
|
1089
|
+
class TagResourceRequest < Struct.new(
|
1090
|
+
:resource_arn,
|
1091
|
+
:tags)
|
1092
|
+
SENSITIVE = []
|
1093
|
+
include Aws::Structure
|
1094
|
+
end
|
1095
|
+
|
1096
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/TagResourceResponse AWS API Documentation
|
1097
|
+
#
|
1098
|
+
class TagResourceResponse < Aws::EmptyStructure; end
|
1099
|
+
|
1100
|
+
# @note When making an API call, you may pass UntagResourceRequest
|
1101
|
+
# data as a hash:
|
1102
|
+
#
|
1103
|
+
# {
|
1104
|
+
# resource_arn: "Arn", # required
|
1105
|
+
# tag_keys: ["TagKey"], # required
|
1106
|
+
# }
|
1107
|
+
#
|
1108
|
+
# @!attribute [rw] resource_arn
|
1109
|
+
# The Amazon resource name (ARN) that specifies the resource.
|
1110
|
+
# @return [String]
|
1111
|
+
#
|
1112
|
+
# @!attribute [rw] tag_keys
|
1113
|
+
# A list of the tag keys to remove from the specified resource.
|
1114
|
+
# @return [Array<String>]
|
1115
|
+
#
|
1116
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/UntagResourceRequest AWS API Documentation
|
1117
|
+
#
|
1118
|
+
class UntagResourceRequest < Struct.new(
|
1119
|
+
:resource_arn,
|
1120
|
+
:tag_keys)
|
1121
|
+
SENSITIVE = []
|
1122
|
+
include Aws::Structure
|
1123
|
+
end
|
1124
|
+
|
1125
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/UntagResourceResponse AWS API Documentation
|
1126
|
+
#
|
1127
|
+
class UntagResourceResponse < Aws::EmptyStructure; end
|
1128
|
+
|
988
1129
|
# @note When making an API call, you may pass UpdateApplicationRequest
|
989
1130
|
# data as a hash:
|
990
1131
|
#
|
@@ -995,20 +1136,19 @@ module Aws::AppRegistry
|
|
995
1136
|
# }
|
996
1137
|
#
|
997
1138
|
# @!attribute [rw] application
|
998
|
-
# The name or ID of the application
|
999
|
-
# region in which you are updating the attribute group.
|
1139
|
+
# The name or ID of the application that will be updated.
|
1000
1140
|
# @return [String]
|
1001
1141
|
#
|
1002
1142
|
# @!attribute [rw] name
|
1003
|
-
# The
|
1004
|
-
# in which you are
|
1143
|
+
# The new name of the application. The name must be unique in the
|
1144
|
+
# region in which you are updating the application.
|
1005
1145
|
# @return [String]
|
1006
1146
|
#
|
1007
1147
|
# @!attribute [rw] description
|
1008
|
-
# The description of the application.
|
1148
|
+
# The new description of the application.
|
1009
1149
|
# @return [String]
|
1010
1150
|
#
|
1011
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/UpdateApplicationRequest AWS API Documentation
|
1151
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/UpdateApplicationRequest AWS API Documentation
|
1012
1152
|
#
|
1013
1153
|
class UpdateApplicationRequest < Struct.new(
|
1014
1154
|
:application,
|
@@ -1019,10 +1159,10 @@ module Aws::AppRegistry
|
|
1019
1159
|
end
|
1020
1160
|
|
1021
1161
|
# @!attribute [rw] application
|
1022
|
-
# The
|
1162
|
+
# The updated information of the application.
|
1023
1163
|
# @return [Types::Application]
|
1024
1164
|
#
|
1025
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/UpdateApplicationResponse AWS API Documentation
|
1165
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/UpdateApplicationResponse AWS API Documentation
|
1026
1166
|
#
|
1027
1167
|
class UpdateApplicationResponse < Struct.new(
|
1028
1168
|
:application)
|
@@ -1060,7 +1200,7 @@ module Aws::AppRegistry
|
|
1060
1200
|
# components.
|
1061
1201
|
# @return [String]
|
1062
1202
|
#
|
1063
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/UpdateAttributeGroupRequest AWS API Documentation
|
1203
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/UpdateAttributeGroupRequest AWS API Documentation
|
1064
1204
|
#
|
1065
1205
|
class UpdateAttributeGroupRequest < Struct.new(
|
1066
1206
|
:attribute_group,
|
@@ -1072,11 +1212,10 @@ module Aws::AppRegistry
|
|
1072
1212
|
end
|
1073
1213
|
|
1074
1214
|
# @!attribute [rw] attribute_group
|
1075
|
-
# The
|
1076
|
-
# describe the application.
|
1215
|
+
# The updated information of the attribute group.
|
1077
1216
|
# @return [Types::AttributeGroup]
|
1078
1217
|
#
|
1079
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/UpdateAttributeGroupResponse AWS API Documentation
|
1218
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/UpdateAttributeGroupResponse AWS API Documentation
|
1080
1219
|
#
|
1081
1220
|
class UpdateAttributeGroupResponse < Struct.new(
|
1082
1221
|
:attribute_group)
|
@@ -1089,7 +1228,7 @@ module Aws::AppRegistry
|
|
1089
1228
|
# @!attribute [rw] message
|
1090
1229
|
# @return [String]
|
1091
1230
|
#
|
1092
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ValidationException AWS API Documentation
|
1231
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ValidationException AWS API Documentation
|
1093
1232
|
#
|
1094
1233
|
class ValidationException < Struct.new(
|
1095
1234
|
:message)
|