aws-sdk-appregistry 1.18.0 → 1.20.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0db9b3624c82a1d857e5c757434f80b7441617c438abb6a7ea0810f6b43f8b84
4
- data.tar.gz: 0f32fafbc7fae62f836ea416f898e0edbdf3671546c60a4f5fc12d929172fb1f
3
+ metadata.gz: ff477b138edfd83c8a6f4f2fd13aaaa04dcc1f365d58b3e38b4faf3564f81185
4
+ data.tar.gz: 6f92fa4707bd434756d0b86ece8c8771c631bae52100688637ca18c01d5cb569
5
5
  SHA512:
6
- metadata.gz: 8051d494c0962cd643e5a7c1ab2afd36cb23883819cba52ef9200c0845bcdf3fcd983064305bf5c2e1cd18b696bfdb662149b5b971f7d19a9cc85bf868828709
7
- data.tar.gz: 243c26a94db10087e5703adb519cb53b04bae48f8502e33d942806ef2e97df93b5c958fcf471e9ccef99db1d499d885b8b7834385d5f325e54b99692efb3599c
6
+ metadata.gz: fe93d7631fbde97b3f0f0b563bc1875b933fed236a0d7f46c1b8fe877f4aba8a879d01d3a2a5a318817ca65c0d425c8fdc5bc22e067b8d28e02febef894bca0a
7
+ data.tar.gz: 2ea252330bd8d2f3be2fa5ea2cbf6ba38ba2433c25898636192ef758d901c89045a2ee2870a80ec53dd6c83e5f0ed863d490142e84bbe7a34caf20726532175a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,18 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.20.0 (2023-03-27)
5
+ ------------------
6
+
7
+ * Feature - In this release, we started supporting ARN in applicationSpecifier and attributeGroupSpecifier. GetAttributeGroup, ListAttributeGroups and ListAttributeGroupsForApplication APIs will now have CreatedBy field in the response.
8
+
9
+ 1.19.0 (2023-01-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
15
+
4
16
  1.18.0 (2022-11-17)
5
17
  ------------------
6
18
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.18.0
1
+ 1.20.0
@@ -374,11 +374,11 @@ module Aws::AppRegistry
374
374
  # are machine-readable, such as third-party integrations.
375
375
  #
376
376
  # @option params [required, String] :application
377
- # The name or ID of the application.
377
+ # The name, ID, or ARN of the application.
378
378
  #
379
379
  # @option params [required, String] :attribute_group
380
- # The name or ID of the attribute group that holds the attributes to
381
- # describe the application.
380
+ # The name, ID, or ARN of the attribute group that holds the attributes
381
+ # to describe the application.
382
382
  #
383
383
  # @return [Types::AssociateAttributeGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
384
384
  #
@@ -406,11 +406,12 @@ module Aws::AppRegistry
406
406
  req.send_request(options)
407
407
  end
408
408
 
409
- # Associates a resource with an application. Both the resource and the
410
- # application can be specified either by ID or name.
409
+ # Associates a resource with an application. The resource can be
410
+ # specified by its ARN or name. The application can be specified by ARN,
411
+ # ID, or name.
411
412
  #
412
413
  # @option params [required, String] :application
413
- # The name or ID of the application.
414
+ # The name, ID, or ARN of the application.
414
415
  #
415
416
  # @option params [required, String] :resource_type
416
417
  # The type of resource of which the application will be associated.
@@ -571,12 +572,12 @@ module Aws::AppRegistry
571
572
  req.send_request(options)
572
573
  end
573
574
 
574
- # Deletes an application that is specified either by its application ID
575
- # or name. All associated attribute groups and resources must be
575
+ # Deletes an application that is specified either by its application ID,
576
+ # name, or ARN. All associated attribute groups and resources must be
576
577
  # disassociated from it before deleting an application.
577
578
  #
578
579
  # @option params [required, String] :application
579
- # The name or ID of the application.
580
+ # The name, ID, or ARN of the application.
580
581
  #
581
582
  # @return [Types::DeleteApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
582
583
  #
@@ -606,12 +607,12 @@ module Aws::AppRegistry
606
607
  req.send_request(options)
607
608
  end
608
609
 
609
- # Deletes an attribute group, specified either by its attribute group ID
610
- # or name.
610
+ # Deletes an attribute group, specified either by its attribute group
611
+ # ID, name, or ARN.
611
612
  #
612
613
  # @option params [required, String] :attribute_group
613
- # The name or ID of the attribute group that holds the attributes to
614
- # describe the application.
614
+ # The name, ID, or ARN of the attribute group that holds the attributes
615
+ # to describe the application.
615
616
  #
616
617
  # @return [Types::DeleteAttributeGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
617
618
  #
@@ -631,6 +632,7 @@ module Aws::AppRegistry
631
632
  # resp.attribute_group.description #=> String
632
633
  # resp.attribute_group.creation_time #=> Time
633
634
  # resp.attribute_group.last_update_time #=> Time
635
+ # resp.attribute_group.created_by #=> String
634
636
  #
635
637
  # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/DeleteAttributeGroup AWS API Documentation
636
638
  #
@@ -647,11 +649,11 @@ module Aws::AppRegistry
647
649
  # `AssociateAttributeGroup`.
648
650
  #
649
651
  # @option params [required, String] :application
650
- # The name or ID of the application.
652
+ # The name, ID, or ARN of the application.
651
653
  #
652
654
  # @option params [required, String] :attribute_group
653
- # The name or ID of the attribute group that holds the attributes to
654
- # describe the application.
655
+ # The name, ID, or ARN of the attribute group that holds the attributes
656
+ # to describe the application.
655
657
  #
656
658
  # @return [Types::DisassociateAttributeGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
657
659
  #
@@ -719,15 +721,14 @@ module Aws::AppRegistry
719
721
  end
720
722
 
721
723
  # Retrieves metadata information about one of your applications. The
722
- # application can be specified either by its unique ID or by its name
723
- # (which is unique within one account in one region at a given point in
724
- # time). Specify by ID in automated workflows if you want to make sure
725
- # that the exact same application is returned or a
726
- # `ResourceNotFoundException` is thrown, avoiding the ABA addressing
727
- # problem.
724
+ # application can be specified by its ARN, ID, or name (which is unique
725
+ # within one account in one region at a given point in time). Specify by
726
+ # ARN or ID in automated workflows if you want to make sure that the
727
+ # exact same application is returned or a `ResourceNotFoundException` is
728
+ # thrown, avoiding the ABA addressing problem.
728
729
  #
729
730
  # @option params [required, String] :application
730
- # The name or ID of the application.
731
+ # The name, ID, or ARN of the application.
731
732
  #
732
733
  # @return [Types::GetApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
733
734
  #
@@ -774,7 +775,7 @@ module Aws::AppRegistry
774
775
  # Gets the resource associated with the application.
775
776
  #
776
777
  # @option params [required, String] :application
777
- # The name or ID of the application.
778
+ # The name, ID, or ARN of the application.
778
779
  #
779
780
  # @option params [required, String] :resource_type
780
781
  # The type of resource associated with the application.
@@ -812,13 +813,12 @@ module Aws::AppRegistry
812
813
  req.send_request(options)
813
814
  end
814
815
 
815
- # Retrieves an attribute group, either by its name or its ID. The
816
- # attribute group can be specified either by its unique ID or by its
817
- # name.
816
+ # Retrieves an attribute group by its ARN, ID, or name. The attribute
817
+ # group can be specified by its ARN, ID, or name.
818
818
  #
819
819
  # @option params [required, String] :attribute_group
820
- # The name or ID of the attribute group that holds the attributes to
821
- # describe the application.
820
+ # The name, ID, or ARN of the attribute group that holds the attributes
821
+ # to describe the application.
822
822
  #
823
823
  # @return [Types::GetAttributeGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
824
824
  #
@@ -830,6 +830,7 @@ module Aws::AppRegistry
830
830
  # * {Types::GetAttributeGroupResponse#creation_time #creation_time} => Time
831
831
  # * {Types::GetAttributeGroupResponse#last_update_time #last_update_time} => Time
832
832
  # * {Types::GetAttributeGroupResponse#tags #tags} => Hash<String,String>
833
+ # * {Types::GetAttributeGroupResponse#created_by #created_by} => String
833
834
  #
834
835
  # @example Request syntax with placeholder values
835
836
  #
@@ -848,6 +849,7 @@ module Aws::AppRegistry
848
849
  # resp.last_update_time #=> Time
849
850
  # resp.tags #=> Hash
850
851
  # resp.tags["TagKey"] #=> String
852
+ # resp.created_by #=> String
851
853
  #
852
854
  # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/GetAttributeGroup AWS API Documentation
853
855
  #
@@ -978,7 +980,7 @@ module Aws::AppRegistry
978
980
  # </note>
979
981
  #
980
982
  # @option params [required, String] :application
981
- # The name or ID of the application.
983
+ # The name, ID, or ARN of the application.
982
984
  #
983
985
  # @option params [String] :next_token
984
986
  # The token to use to get the next page of results after a previous API
@@ -1057,6 +1059,7 @@ module Aws::AppRegistry
1057
1059
  # resp.attribute_groups[0].description #=> String
1058
1060
  # resp.attribute_groups[0].creation_time #=> Time
1059
1061
  # resp.attribute_groups[0].last_update_time #=> Time
1062
+ # resp.attribute_groups[0].created_by #=> String
1060
1063
  # resp.next_token #=> String
1061
1064
  #
1062
1065
  # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListAttributeGroups AWS API Documentation
@@ -1104,6 +1107,7 @@ module Aws::AppRegistry
1104
1107
  # resp.attribute_groups_details[0].id #=> String
1105
1108
  # resp.attribute_groups_details[0].arn #=> String
1106
1109
  # resp.attribute_groups_details[0].name #=> String
1110
+ # resp.attribute_groups_details[0].created_by #=> String
1107
1111
  # resp.next_token #=> String
1108
1112
  #
1109
1113
  # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListAttributeGroupsForApplication AWS API Documentation
@@ -1278,7 +1282,7 @@ module Aws::AppRegistry
1278
1282
  # Updates an existing application with new attributes.
1279
1283
  #
1280
1284
  # @option params [required, String] :application
1281
- # The name or ID of the application that will be updated.
1285
+ # The name, ID, or ARN of the application that will be updated.
1282
1286
  #
1283
1287
  # @option params [String] :name
1284
1288
  # Deprecated: The new name of the application. The name must be unique
@@ -1323,8 +1327,8 @@ module Aws::AppRegistry
1323
1327
  # Updates an existing attribute group with new details.
1324
1328
  #
1325
1329
  # @option params [required, String] :attribute_group
1326
- # The name or ID of the attribute group that holds the attributes to
1327
- # describe the application.
1330
+ # The name, ID, or ARN of the attribute group that holds the attributes
1331
+ # to describe the application.
1328
1332
  #
1329
1333
  # @option params [String] :name
1330
1334
  # Deprecated: The new name of the attribute group. The name must be
@@ -1386,7 +1390,7 @@ module Aws::AppRegistry
1386
1390
  params: params,
1387
1391
  config: config)
1388
1392
  context[:gem_name] = 'aws-sdk-appregistry'
1389
- context[:gem_version] = '1.18.0'
1393
+ context[:gem_version] = '1.20.0'
1390
1394
  Seahorse::Client::Request.new(handlers, context)
1391
1395
  end
1392
1396
 
@@ -42,6 +42,7 @@ module Aws::AppRegistry
42
42
  CreateApplicationResponse = Shapes::StructureShape.new(name: 'CreateApplicationResponse')
43
43
  CreateAttributeGroupRequest = Shapes::StructureShape.new(name: 'CreateAttributeGroupRequest')
44
44
  CreateAttributeGroupResponse = Shapes::StructureShape.new(name: 'CreateAttributeGroupResponse')
45
+ CreatedBy = Shapes::StringShape.new(name: 'CreatedBy')
45
46
  DeleteApplicationRequest = Shapes::StructureShape.new(name: 'DeleteApplicationRequest')
46
47
  DeleteApplicationResponse = Shapes::StructureShape.new(name: 'DeleteApplicationResponse')
47
48
  DeleteAttributeGroupRequest = Shapes::StructureShape.new(name: 'DeleteAttributeGroupRequest')
@@ -100,6 +101,7 @@ module Aws::AppRegistry
100
101
  TagResourceResponse = Shapes::StructureShape.new(name: 'TagResourceResponse')
101
102
  TagValue = Shapes::StringShape.new(name: 'TagValue')
102
103
  Tags = Shapes::MapShape.new(name: 'Tags')
104
+ ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
103
105
  Timestamp = Shapes::TimestampShape.new(name: 'Timestamp', timestampFormat: "iso8601")
104
106
  UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
105
107
  UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
@@ -160,6 +162,7 @@ module Aws::AppRegistry
160
162
  AttributeGroupDetails.add_member(:id, Shapes::ShapeRef.new(shape: AttributeGroupId, location_name: "id"))
161
163
  AttributeGroupDetails.add_member(:arn, Shapes::ShapeRef.new(shape: AttributeGroupArn, location_name: "arn"))
162
164
  AttributeGroupDetails.add_member(:name, Shapes::ShapeRef.new(shape: Name, deprecated: true, location_name: "name", metadata: {"deprecatedMessage"=>"This field is deprecated. We recommend not using the field when using ListAttributeGroupsForApplication."}))
165
+ AttributeGroupDetails.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, location_name: "createdBy"))
163
166
  AttributeGroupDetails.struct_class = Types::AttributeGroupDetails
164
167
 
165
168
  AttributeGroupDetailsList.member = Shapes::ShapeRef.new(shape: AttributeGroupDetails)
@@ -174,6 +177,7 @@ module Aws::AppRegistry
174
177
  AttributeGroupSummary.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
175
178
  AttributeGroupSummary.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "creationTime"))
176
179
  AttributeGroupSummary.add_member(:last_update_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastUpdateTime"))
180
+ AttributeGroupSummary.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, location_name: "createdBy"))
177
181
  AttributeGroupSummary.struct_class = Types::AttributeGroupSummary
178
182
 
179
183
  ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
@@ -260,6 +264,7 @@ module Aws::AppRegistry
260
264
  GetAttributeGroupResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "creationTime"))
261
265
  GetAttributeGroupResponse.add_member(:last_update_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastUpdateTime"))
262
266
  GetAttributeGroupResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
267
+ GetAttributeGroupResponse.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, location_name: "createdBy"))
263
268
  GetAttributeGroupResponse.struct_class = Types::GetAttributeGroupResponse
264
269
 
265
270
  GetConfigurationResponse.add_member(:configuration, Shapes::ShapeRef.new(shape: AppRegistryConfiguration, location_name: "configuration"))
@@ -377,6 +382,10 @@ module Aws::AppRegistry
377
382
  Tags.key = Shapes::ShapeRef.new(shape: TagKey)
378
383
  Tags.value = Shapes::ShapeRef.new(shape: TagValue)
379
384
 
385
+ ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
386
+ ThrottlingException.add_member(:service_code, Shapes::ShapeRef.new(shape: String, location_name: "serviceCode"))
387
+ ThrottlingException.struct_class = Types::ThrottlingException
388
+
380
389
  UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location: "uri", location_name: "resourceArn"))
381
390
  UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeys, required: true, location: "querystring", location_name: "tagKeys"))
382
391
  UntagResourceRequest.struct_class = Types::UntagResourceRequest
@@ -446,6 +455,7 @@ module Aws::AppRegistry
446
455
  o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
447
456
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
448
457
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
458
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
449
459
  end)
450
460
 
451
461
  api.add_operation(:create_application, Seahorse::Model::Operation.new.tap do |o|
@@ -458,6 +468,7 @@ module Aws::AppRegistry
458
468
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
459
469
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
460
470
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
471
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
461
472
  end)
462
473
 
463
474
  api.add_operation(:create_attribute_group, Seahorse::Model::Operation.new.tap do |o|
@@ -514,6 +525,7 @@ module Aws::AppRegistry
514
525
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
515
526
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
516
527
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
528
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
517
529
  end)
518
530
 
519
531
  api.add_operation(:get_application, Seahorse::Model::Operation.new.tap do |o|
@@ -674,6 +686,8 @@ module Aws::AppRegistry
674
686
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
675
687
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
676
688
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
689
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
690
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
677
691
  end)
678
692
 
679
693
  api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
@@ -708,6 +722,7 @@ module Aws::AppRegistry
708
722
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
709
723
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
710
724
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
725
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
711
726
  end)
712
727
 
713
728
  api.add_operation(:update_attribute_group, Seahorse::Model::Operation.new.tap do |o|
@@ -9,111 +9,49 @@
9
9
 
10
10
  module Aws::AppRegistry
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if Aws::Endpoints::Matchers.set?(endpoint)
18
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
19
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
20
+ end
21
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
22
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
23
+ end
24
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
21
25
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
26
+ if Aws::Endpoints::Matchers.set?(region)
27
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
28
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
29
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
30
+ return Aws::Endpoints::Endpoint.new(url: "https://servicecatalog-appregistry-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
31
+ end
32
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
+ end
34
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
36
+ if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
37
+ return Aws::Endpoints::Endpoint.new(url: "https://servicecatalog-appregistry.#{region}.amazonaws.com", headers: {}, properties: {})
38
+ end
39
+ return Aws::Endpoints::Endpoint.new(url: "https://servicecatalog-appregistry-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
40
+ end
41
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
42
+ end
43
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
44
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
45
+ return Aws::Endpoints::Endpoint.new(url: "https://servicecatalog-appregistry.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
46
+ end
47
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
48
+ end
49
+ return Aws::Endpoints::Endpoint.new(url: "https://servicecatalog-appregistry.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
50
+ end
51
+ end
52
+ raise ArgumentError, "Invalid Configuration: Missing Region"
53
+ raise ArgumentError, 'No endpoint could be resolved'
24
54
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
55
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL3NlcnZpY2VjYXRhbG9nLWFwcHJlZ2lzdHJ5
77
- LWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNT
78
- dWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6
79
- ImVuZHBvaW50In1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMg
80
- YW5kIER1YWxTdGFjayBhcmUgZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9u
81
- IGRvZXMgbm90IHN1cHBvcnQgb25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3Ii
82
- fV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJn
83
- diI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwi
84
- cnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIs
85
- ImFyZ3YiOlt0cnVlLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoi
86
- UGFydGl0aW9uUmVzdWx0In0sInN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6
87
- InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVl
88
- IiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoic3RyaW5nRXF1YWxz
89
- IiwiYXJndiI6WyJhd3MtdXMtZ292Iix7ImZuIjoiZ2V0QXR0ciIsImFyZ3Yi
90
- Olt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJuYW1lIl19XX1dLCJlbmRw
91
- b2ludCI6eyJ1cmwiOiJodHRwczovL3NlcnZpY2VjYXRhbG9nLWFwcHJlZ2lz
92
- dHJ5LntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInBy
93
- b3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9
94
- LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8v
95
- c2VydmljZWNhdGFsb2ctYXBwcmVnaXN0cnktZmlwcy57UmVnaW9ufS57UGFy
96
- dGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVh
97
- ZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25z
98
- IjpbXSwiZXJyb3IiOiJGSVBTIGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0
99
- aW9uIGRvZXMgbm90IHN1cHBvcnQgRklQUyIsInR5cGUiOiJlcnJvciJ9XX0s
100
- eyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2Ijpb
101
- eyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIs
102
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
103
- LCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6
104
- IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwi
105
- dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBv
106
- aW50Ijp7InVybCI6Imh0dHBzOi8vc2VydmljZWNhdGFsb2ctYXBwcmVnaXN0
107
- cnkue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZm
108
- aXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVu
109
- ZHBvaW50In1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkR1YWxTdGFj
110
- ayBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBw
111
- b3J0IER1YWxTdGFjayIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25z
112
- IjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9zZXJ2aWNlY2F0YWxv
113
- Zy1hcHByZWdpc3RyeS57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1
114
- ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoi
115
- ZW5kcG9pbnQifV19XX0=
116
-
117
- JSON
118
56
  end
119
57
  end
@@ -31,6 +31,7 @@ module Aws::AppRegistry
31
31
  # * {InternalServerException}
32
32
  # * {ResourceNotFoundException}
33
33
  # * {ServiceQuotaExceededException}
34
+ # * {ThrottlingException}
34
35
  # * {ValidationException}
35
36
  #
36
37
  # Additionally, error classes are dynamically generated for service errors based on the error code
@@ -99,6 +100,26 @@ module Aws::AppRegistry
99
100
  end
100
101
  end
101
102
 
103
+ class ThrottlingException < ServiceError
104
+
105
+ # @param [Seahorse::Client::RequestContext] context
106
+ # @param [String] message
107
+ # @param [Aws::AppRegistry::Types::ThrottlingException] data
108
+ def initialize(context, message, data = Aws::EmptyStructure.new)
109
+ super(context, message, data)
110
+ end
111
+
112
+ # @return [String]
113
+ def message
114
+ @message || @data[:message]
115
+ end
116
+
117
+ # @return [String]
118
+ def service_code
119
+ @data[:service_code]
120
+ end
121
+ end
122
+
102
123
  class ValidationException < ServiceError
103
124
 
104
125
  # @param [Seahorse::Client::RequestContext] context
@@ -10,16 +10,7 @@
10
10
  module Aws::AppRegistry
11
11
  module Types
12
12
 
13
- # Includes all of the Service Catalog AppRegistry settings.
14
- #
15
- # @note When making an API call, you may pass AppRegistryConfiguration
16
- # data as a hash:
17
- #
18
- # {
19
- # tag_query_configuration: {
20
- # tag_key: "TagKeyConfig",
21
- # },
22
- # }
13
+ # Includes all of the AppRegistry settings.
23
14
  #
24
15
  # @!attribute [rw] tag_query_configuration
25
16
  # Includes the definition of a `tagQuery`.
@@ -127,21 +118,13 @@ module Aws::AppRegistry
127
118
  include Aws::Structure
128
119
  end
129
120
 
130
- # @note When making an API call, you may pass AssociateAttributeGroupRequest
131
- # data as a hash:
132
- #
133
- # {
134
- # application: "ApplicationSpecifier", # required
135
- # attribute_group: "AttributeGroupSpecifier", # required
136
- # }
137
- #
138
121
  # @!attribute [rw] application
139
- # The name or ID of the application.
122
+ # The name, ID, or ARN of the application.
140
123
  # @return [String]
141
124
  #
142
125
  # @!attribute [rw] attribute_group
143
- # The name or ID of the attribute group that holds the attributes to
144
- # describe the application.
126
+ # The name, ID, or ARN of the attribute group that holds the
127
+ # attributes to describe the application.
145
128
  # @return [String]
146
129
  #
147
130
  # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/AssociateAttributeGroupRequest AWS API Documentation
@@ -172,17 +155,8 @@ module Aws::AppRegistry
172
155
  include Aws::Structure
173
156
  end
174
157
 
175
- # @note When making an API call, you may pass AssociateResourceRequest
176
- # data as a hash:
177
- #
178
- # {
179
- # application: "ApplicationSpecifier", # required
180
- # resource_type: "CFN_STACK", # required, accepts CFN_STACK, RESOURCE_TAG_VALUE
181
- # resource: "ResourceSpecifier", # required
182
- # }
183
- #
184
158
  # @!attribute [rw] application
185
- # The name or ID of the application.
159
+ # The name, ID, or ARN of the application.
186
160
  # @return [String]
187
161
  #
188
162
  # @!attribute [rw] resource_type
@@ -290,12 +264,17 @@ module Aws::AppRegistry
290
264
  # The name of the attribute group.
291
265
  # @return [String]
292
266
  #
267
+ # @!attribute [rw] created_by
268
+ # The service principal that created the attribute group.
269
+ # @return [String]
270
+ #
293
271
  # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/AttributeGroupDetails AWS API Documentation
294
272
  #
295
273
  class AttributeGroupDetails < Struct.new(
296
274
  :id,
297
275
  :arn,
298
- :name)
276
+ :name,
277
+ :created_by)
299
278
  SENSITIVE = []
300
279
  include Aws::Structure
301
280
  end
@@ -332,6 +311,10 @@ module Aws::AppRegistry
332
311
  # newly created attribute group.
333
312
  # @return [Time]
334
313
  #
314
+ # @!attribute [rw] created_by
315
+ # The service principal that created the attribute group.
316
+ # @return [String]
317
+ #
335
318
  # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/AttributeGroupSummary AWS API Documentation
336
319
  #
337
320
  class AttributeGroupSummary < Struct.new(
@@ -340,7 +323,8 @@ module Aws::AppRegistry
340
323
  :name,
341
324
  :description,
342
325
  :creation_time,
343
- :last_update_time)
326
+ :last_update_time,
327
+ :created_by)
344
328
  SENSITIVE = []
345
329
  include Aws::Structure
346
330
  end
@@ -359,18 +343,6 @@ module Aws::AppRegistry
359
343
  include Aws::Structure
360
344
  end
361
345
 
362
- # @note When making an API call, you may pass CreateApplicationRequest
363
- # data as a hash:
364
- #
365
- # {
366
- # name: "Name", # required
367
- # description: "Description",
368
- # tags: {
369
- # "TagKey" => "TagValue",
370
- # },
371
- # client_token: "ClientToken", # required
372
- # }
373
- #
374
346
  # @!attribute [rw] name
375
347
  # The name of the application. The name must be unique in the region
376
348
  # in which you are creating the application.
@@ -419,19 +391,6 @@ module Aws::AppRegistry
419
391
  include Aws::Structure
420
392
  end
421
393
 
422
- # @note When making an API call, you may pass CreateAttributeGroupRequest
423
- # data as a hash:
424
- #
425
- # {
426
- # name: "Name", # required
427
- # description: "Description",
428
- # attributes: "Attributes", # required
429
- # tags: {
430
- # "TagKey" => "TagValue",
431
- # },
432
- # client_token: "ClientToken", # required
433
- # }
434
- #
435
394
  # @!attribute [rw] name
436
395
  # The name of the attribute group.
437
396
  # @return [String]
@@ -486,15 +445,8 @@ module Aws::AppRegistry
486
445
  include Aws::Structure
487
446
  end
488
447
 
489
- # @note When making an API call, you may pass DeleteApplicationRequest
490
- # data as a hash:
491
- #
492
- # {
493
- # application: "ApplicationSpecifier", # required
494
- # }
495
- #
496
448
  # @!attribute [rw] application
497
- # The name or ID of the application.
449
+ # The name, ID, or ARN of the application.
498
450
  # @return [String]
499
451
  #
500
452
  # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/DeleteApplicationRequest AWS API Documentation
@@ -517,16 +469,9 @@ module Aws::AppRegistry
517
469
  include Aws::Structure
518
470
  end
519
471
 
520
- # @note When making an API call, you may pass DeleteAttributeGroupRequest
521
- # data as a hash:
522
- #
523
- # {
524
- # attribute_group: "AttributeGroupSpecifier", # required
525
- # }
526
- #
527
472
  # @!attribute [rw] attribute_group
528
- # The name or ID of the attribute group that holds the attributes to
529
- # describe the application.
473
+ # The name, ID, or ARN of the attribute group that holds the
474
+ # attributes to describe the application.
530
475
  # @return [String]
531
476
  #
532
477
  # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/DeleteAttributeGroupRequest AWS API Documentation
@@ -549,21 +494,13 @@ module Aws::AppRegistry
549
494
  include Aws::Structure
550
495
  end
551
496
 
552
- # @note When making an API call, you may pass DisassociateAttributeGroupRequest
553
- # data as a hash:
554
- #
555
- # {
556
- # application: "ApplicationSpecifier", # required
557
- # attribute_group: "AttributeGroupSpecifier", # required
558
- # }
559
- #
560
497
  # @!attribute [rw] application
561
- # The name or ID of the application.
498
+ # The name, ID, or ARN of the application.
562
499
  # @return [String]
563
500
  #
564
501
  # @!attribute [rw] attribute_group
565
- # The name or ID of the attribute group that holds the attributes to
566
- # describe the application.
502
+ # The name, ID, or ARN of the attribute group that holds the
503
+ # attributes to describe the application.
567
504
  # @return [String]
568
505
  #
569
506
  # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/DisassociateAttributeGroupRequest AWS API Documentation
@@ -592,15 +529,6 @@ module Aws::AppRegistry
592
529
  include Aws::Structure
593
530
  end
594
531
 
595
- # @note When making an API call, you may pass DisassociateResourceRequest
596
- # data as a hash:
597
- #
598
- # {
599
- # application: "ApplicationSpecifier", # required
600
- # resource_type: "CFN_STACK", # required, accepts CFN_STACK, RESOURCE_TAG_VALUE
601
- # resource: "ResourceSpecifier", # required
602
- # }
603
- #
604
532
  # @!attribute [rw] application
605
533
  # The name or ID of the application.
606
534
  # @return [String]
@@ -640,15 +568,8 @@ module Aws::AppRegistry
640
568
  include Aws::Structure
641
569
  end
642
570
 
643
- # @note When making an API call, you may pass GetApplicationRequest
644
- # data as a hash:
645
- #
646
- # {
647
- # application: "ApplicationSpecifier", # required
648
- # }
649
- #
650
571
  # @!attribute [rw] application
651
- # The name or ID of the application.
572
+ # The name, ID, or ARN of the application.
652
573
  # @return [String]
653
574
  #
654
575
  # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/GetApplicationRequest AWS API Documentation
@@ -717,17 +638,8 @@ module Aws::AppRegistry
717
638
  include Aws::Structure
718
639
  end
719
640
 
720
- # @note When making an API call, you may pass GetAssociatedResourceRequest
721
- # data as a hash:
722
- #
723
- # {
724
- # application: "ApplicationSpecifier", # required
725
- # resource_type: "CFN_STACK", # required, accepts CFN_STACK, RESOURCE_TAG_VALUE
726
- # resource: "ResourceSpecifier", # required
727
- # }
728
- #
729
641
  # @!attribute [rw] application
730
- # The name or ID of the application.
642
+ # The name, ID, or ARN of the application.
731
643
  # @return [String]
732
644
  #
733
645
  # @!attribute [rw] resource_type
@@ -760,16 +672,9 @@ module Aws::AppRegistry
760
672
  include Aws::Structure
761
673
  end
762
674
 
763
- # @note When making an API call, you may pass GetAttributeGroupRequest
764
- # data as a hash:
765
- #
766
- # {
767
- # attribute_group: "AttributeGroupSpecifier", # required
768
- # }
769
- #
770
675
  # @!attribute [rw] attribute_group
771
- # The name or ID of the attribute group that holds the attributes to
772
- # describe the application.
676
+ # The name, ID, or ARN of the attribute group that holds the
677
+ # attributes to describe the application.
773
678
  # @return [String]
774
679
  #
775
680
  # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/GetAttributeGroupRequest AWS API Documentation
@@ -818,6 +723,10 @@ module Aws::AppRegistry
818
723
  # Key-value pairs associated with the attribute group.
819
724
  # @return [Hash<String,String>]
820
725
  #
726
+ # @!attribute [rw] created_by
727
+ # The service principal that created the attribute group.
728
+ # @return [String]
729
+ #
821
730
  # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/GetAttributeGroupResponse AWS API Documentation
822
731
  #
823
732
  class GetAttributeGroupResponse < Struct.new(
@@ -828,7 +737,8 @@ module Aws::AppRegistry
828
737
  :attributes,
829
738
  :creation_time,
830
739
  :last_update_time,
831
- :tags)
740
+ :tags,
741
+ :created_by)
832
742
  SENSITIVE = []
833
743
  include Aws::Structure
834
744
  end
@@ -872,14 +782,6 @@ module Aws::AppRegistry
872
782
  include Aws::Structure
873
783
  end
874
784
 
875
- # @note When making an API call, you may pass ListApplicationsRequest
876
- # data as a hash:
877
- #
878
- # {
879
- # next_token: "NextToken",
880
- # max_results: 1,
881
- # }
882
- #
883
785
  # @!attribute [rw] next_token
884
786
  # The token to use to get the next page of results after a previous
885
787
  # API call.
@@ -918,15 +820,6 @@ module Aws::AppRegistry
918
820
  include Aws::Structure
919
821
  end
920
822
 
921
- # @note When making an API call, you may pass ListAssociatedAttributeGroupsRequest
922
- # data as a hash:
923
- #
924
- # {
925
- # application: "ApplicationSpecifier", # required
926
- # next_token: "NextToken",
927
- # max_results: 1,
928
- # }
929
- #
930
823
  # @!attribute [rw] application
931
824
  # The name or ID of the application.
932
825
  # @return [String]
@@ -970,17 +863,8 @@ module Aws::AppRegistry
970
863
  include Aws::Structure
971
864
  end
972
865
 
973
- # @note When making an API call, you may pass ListAssociatedResourcesRequest
974
- # data as a hash:
975
- #
976
- # {
977
- # application: "ApplicationSpecifier", # required
978
- # next_token: "NextToken",
979
- # max_results: 1,
980
- # }
981
- #
982
866
  # @!attribute [rw] application
983
- # The name or ID of the application.
867
+ # The name, ID, or ARN of the application.
984
868
  # @return [String]
985
869
  #
986
870
  # @!attribute [rw] next_token
@@ -1022,15 +906,6 @@ module Aws::AppRegistry
1022
906
  include Aws::Structure
1023
907
  end
1024
908
 
1025
- # @note When making an API call, you may pass ListAttributeGroupsForApplicationRequest
1026
- # data as a hash:
1027
- #
1028
- # {
1029
- # application: "ApplicationSpecifier", # required
1030
- # next_token: "NextToken",
1031
- # max_results: 1,
1032
- # }
1033
- #
1034
909
  # @!attribute [rw] application
1035
910
  # The name or ID of the application.
1036
911
  # @return [String]
@@ -1074,14 +949,6 @@ module Aws::AppRegistry
1074
949
  include Aws::Structure
1075
950
  end
1076
951
 
1077
- # @note When making an API call, you may pass ListAttributeGroupsRequest
1078
- # data as a hash:
1079
- #
1080
- # {
1081
- # next_token: "NextToken",
1082
- # max_results: 1,
1083
- # }
1084
- #
1085
952
  # @!attribute [rw] next_token
1086
953
  # The token to use to get the next page of results after a previous
1087
954
  # API call.
@@ -1120,13 +987,6 @@ module Aws::AppRegistry
1120
987
  include Aws::Structure
1121
988
  end
1122
989
 
1123
- # @note When making an API call, you may pass ListTagsForResourceRequest
1124
- # data as a hash:
1125
- #
1126
- # {
1127
- # resource_arn: "Arn", # required
1128
- # }
1129
- #
1130
990
  # @!attribute [rw] resource_arn
1131
991
  # The Amazon resource name (ARN) that specifies the resource.
1132
992
  # @return [String]
@@ -1151,17 +1011,6 @@ module Aws::AppRegistry
1151
1011
  include Aws::Structure
1152
1012
  end
1153
1013
 
1154
- # @note When making an API call, you may pass PutConfigurationRequest
1155
- # data as a hash:
1156
- #
1157
- # {
1158
- # configuration: { # required
1159
- # tag_query_configuration: {
1160
- # tag_key: "TagKeyConfig",
1161
- # },
1162
- # },
1163
- # }
1164
- #
1165
1014
  # @!attribute [rw] configuration
1166
1015
  # Associates a `TagKey` configuration to an account.
1167
1016
  # @return [Types::AppRegistryConfiguration]
@@ -1326,14 +1175,6 @@ module Aws::AppRegistry
1326
1175
  include Aws::Structure
1327
1176
  end
1328
1177
 
1329
- # @note When making an API call, you may pass SyncResourceRequest
1330
- # data as a hash:
1331
- #
1332
- # {
1333
- # resource_type: "CFN_STACK", # required, accepts CFN_STACK, RESOURCE_TAG_VALUE
1334
- # resource: "ResourceSpecifier", # required
1335
- # }
1336
- #
1337
1178
  # @!attribute [rw] resource_type
1338
1179
  # The type of resource of which the application will be associated.
1339
1180
  # @return [String]
@@ -1379,13 +1220,6 @@ module Aws::AppRegistry
1379
1220
  # The definition of `tagQuery`. Specifies which resources are associated
1380
1221
  # with an application.
1381
1222
  #
1382
- # @note When making an API call, you may pass TagQueryConfiguration
1383
- # data as a hash:
1384
- #
1385
- # {
1386
- # tag_key: "TagKeyConfig",
1387
- # }
1388
- #
1389
1223
  # @!attribute [rw] tag_key
1390
1224
  # Condition in the IAM policy that associates resources to an
1391
1225
  # application.
@@ -1399,16 +1233,6 @@ module Aws::AppRegistry
1399
1233
  include Aws::Structure
1400
1234
  end
1401
1235
 
1402
- # @note When making an API call, you may pass TagResourceRequest
1403
- # data as a hash:
1404
- #
1405
- # {
1406
- # resource_arn: "Arn", # required
1407
- # tags: { # required
1408
- # "TagKey" => "TagValue",
1409
- # },
1410
- # }
1411
- #
1412
1236
  # @!attribute [rw] resource_arn
1413
1237
  # The Amazon resource name (ARN) that specifies the resource.
1414
1238
  # @return [String]
@@ -1430,14 +1254,25 @@ module Aws::AppRegistry
1430
1254
  #
1431
1255
  class TagResourceResponse < Aws::EmptyStructure; end
1432
1256
 
1433
- # @note When making an API call, you may pass UntagResourceRequest
1434
- # data as a hash:
1257
+ # The maximum number of API requests has been exceeded.
1258
+ #
1259
+ # @!attribute [rw] message
1260
+ # A message associated with the Throttling exception.
1261
+ # @return [String]
1262
+ #
1263
+ # @!attribute [rw] service_code
1264
+ # The originating service code.
1265
+ # @return [String]
1435
1266
  #
1436
- # {
1437
- # resource_arn: "Arn", # required
1438
- # tag_keys: ["TagKey"], # required
1439
- # }
1267
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ThrottlingException AWS API Documentation
1440
1268
  #
1269
+ class ThrottlingException < Struct.new(
1270
+ :message,
1271
+ :service_code)
1272
+ SENSITIVE = []
1273
+ include Aws::Structure
1274
+ end
1275
+
1441
1276
  # @!attribute [rw] resource_arn
1442
1277
  # The Amazon resource name (ARN) that specifies the resource.
1443
1278
  # @return [String]
@@ -1459,17 +1294,8 @@ module Aws::AppRegistry
1459
1294
  #
1460
1295
  class UntagResourceResponse < Aws::EmptyStructure; end
1461
1296
 
1462
- # @note When making an API call, you may pass UpdateApplicationRequest
1463
- # data as a hash:
1464
- #
1465
- # {
1466
- # application: "ApplicationSpecifier", # required
1467
- # name: "Name",
1468
- # description: "Description",
1469
- # }
1470
- #
1471
1297
  # @!attribute [rw] application
1472
- # The name or ID of the application that will be updated.
1298
+ # The name, ID, or ARN of the application that will be updated.
1473
1299
  # @return [String]
1474
1300
  #
1475
1301
  # @!attribute [rw] name
@@ -1504,19 +1330,9 @@ module Aws::AppRegistry
1504
1330
  include Aws::Structure
1505
1331
  end
1506
1332
 
1507
- # @note When making an API call, you may pass UpdateAttributeGroupRequest
1508
- # data as a hash:
1509
- #
1510
- # {
1511
- # attribute_group: "AttributeGroupSpecifier", # required
1512
- # name: "Name",
1513
- # description: "Description",
1514
- # attributes: "Attributes",
1515
- # }
1516
- #
1517
1333
  # @!attribute [rw] attribute_group
1518
- # The name or ID of the attribute group that holds the attributes to
1519
- # describe the application.
1334
+ # The name, ID, or ARN of the attribute group that holds the
1335
+ # attributes to describe the application.
1520
1336
  # @return [String]
1521
1337
  #
1522
1338
  # @!attribute [rw] name
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-appregistry/customizations'
52
52
  # @!group service
53
53
  module Aws::AppRegistry
54
54
 
55
- GEM_VERSION = '1.18.0'
55
+ GEM_VERSION = '1.20.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appregistry
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.18.0
4
+ version: 1.20.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-17 00:00:00.000000000 Z
11
+ date: 2023-03-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core