aws-sdk-appregistry 1.17.0 → 1.18.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: 0d8c568923b27fa94eddb12e0d79532abaa9938ff8da9c77f99d9abc98a2ce79
4
- data.tar.gz: e190f5cc52665bd80284e8c913644249bb5749da6172477f2c07465f778299e6
3
+ metadata.gz: 0db9b3624c82a1d857e5c757434f80b7441617c438abb6a7ea0810f6b43f8b84
4
+ data.tar.gz: 0f32fafbc7fae62f836ea416f898e0edbdf3671546c60a4f5fc12d929172fb1f
5
5
  SHA512:
6
- metadata.gz: ba333a38ac30f02f8677e14b76e28cf5c469ace157358a86672c6590e0d03c62aef89d5728ee3e030eed7e27dc6929778e43e7f0f31a4638f26e94bb52298ca7
7
- data.tar.gz: 82325fc7a510eea8a84523e474763163fe2e1bc26c44ebce94595ebdd811fe2005bb66a9d333e8e542c4dc4919a4799ef959f909479ade3057fccd1627d44475
6
+ metadata.gz: 8051d494c0962cd643e5a7c1ab2afd36cb23883819cba52ef9200c0845bcdf3fcd983064305bf5c2e1cd18b696bfdb662149b5b971f7d19a9cc85bf868828709
7
+ data.tar.gz: 243c26a94db10087e5703adb519cb53b04bae48f8502e33d942806ef2e97df93b5c958fcf471e9ccef99db1d499d885b8b7834385d5f325e54b99692efb3599c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.18.0 (2022-11-17)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for tagged resource associations, which allows you to associate a group of resources with a defined resource tag key and value to the application.
8
+
4
9
  1.17.0 (2022-10-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.17.0
1
+ 1.18.0
@@ -428,7 +428,7 @@ module Aws::AppRegistry
428
428
  #
429
429
  # resp = client.associate_resource({
430
430
  # application: "ApplicationSpecifier", # required
431
- # resource_type: "CFN_STACK", # required, accepts CFN_STACK
431
+ # resource_type: "CFN_STACK", # required, accepts CFN_STACK, RESOURCE_TAG_VALUE
432
432
  # resource: "ResourceSpecifier", # required
433
433
  # })
434
434
  #
@@ -700,7 +700,7 @@ module Aws::AppRegistry
700
700
  #
701
701
  # resp = client.disassociate_resource({
702
702
  # application: "ApplicationSpecifier", # required
703
- # resource_type: "CFN_STACK", # required, accepts CFN_STACK
703
+ # resource_type: "CFN_STACK", # required, accepts CFN_STACK, RESOURCE_TAG_VALUE
704
704
  # resource: "ResourceSpecifier", # required
705
705
  # })
706
706
  #
@@ -790,7 +790,7 @@ module Aws::AppRegistry
790
790
  #
791
791
  # resp = client.get_associated_resource({
792
792
  # application: "ApplicationSpecifier", # required
793
- # resource_type: "CFN_STACK", # required, accepts CFN_STACK
793
+ # resource_type: "CFN_STACK", # required, accepts CFN_STACK, RESOURCE_TAG_VALUE
794
794
  # resource: "ResourceSpecifier", # required
795
795
  # })
796
796
  #
@@ -858,6 +858,25 @@ module Aws::AppRegistry
858
858
  req.send_request(options)
859
859
  end
860
860
 
861
+ # Retrieves a `TagKey` configuration from an account.
862
+ #
863
+ # @return [Types::GetConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
864
+ #
865
+ # * {Types::GetConfigurationResponse#configuration #configuration} => Types::AppRegistryConfiguration
866
+ #
867
+ # @example Response structure
868
+ #
869
+ # resp.configuration.tag_query_configuration.tag_key #=> String
870
+ #
871
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/GetConfiguration AWS API Documentation
872
+ #
873
+ # @overload get_configuration(params = {})
874
+ # @param [Hash] params ({})
875
+ def get_configuration(params = {}, options = {})
876
+ req = build_request(:get_configuration, params)
877
+ req.send_request(options)
878
+ end
879
+
861
880
  # Retrieves a list of all of your applications. Results are paginated.
862
881
  #
863
882
  # @option params [String] :next_token
@@ -948,8 +967,15 @@ module Aws::AppRegistry
948
967
  req.send_request(options)
949
968
  end
950
969
 
951
- # Lists all resources that are associated with specified application.
952
- # Results are paginated.
970
+ # Lists all of the resources that are associated with the specified
971
+ # application. Results are paginated.
972
+ #
973
+ # <note markdown="1"> If you share an application, and a consumer account associates a tag
974
+ # query to the application, all of the users who can access the
975
+ # application can also view the tag values in all accounts that are
976
+ # associated with it using this API.
977
+ #
978
+ # </note>
953
979
  #
954
980
  # @option params [required, String] :application
955
981
  # The name or ID of the application.
@@ -983,6 +1009,8 @@ module Aws::AppRegistry
983
1009
  # resp.resources #=> Array
984
1010
  # resp.resources[0].name #=> String
985
1011
  # resp.resources[0].arn #=> String
1012
+ # resp.resources[0].resource_type #=> String, one of "CFN_STACK", "RESOURCE_TAG_VALUE"
1013
+ # resp.resources[0].resource_details.tag_value #=> String
986
1014
  # resp.next_token #=> String
987
1015
  #
988
1016
  # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListAssociatedResources AWS API Documentation
@@ -1116,6 +1144,32 @@ module Aws::AppRegistry
1116
1144
  req.send_request(options)
1117
1145
  end
1118
1146
 
1147
+ # Associates a `TagKey` configuration to an account.
1148
+ #
1149
+ # @option params [required, Types::AppRegistryConfiguration] :configuration
1150
+ # Associates a `TagKey` configuration to an account.
1151
+ #
1152
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1153
+ #
1154
+ # @example Request syntax with placeholder values
1155
+ #
1156
+ # resp = client.put_configuration({
1157
+ # configuration: { # required
1158
+ # tag_query_configuration: {
1159
+ # tag_key: "TagKeyConfig",
1160
+ # },
1161
+ # },
1162
+ # })
1163
+ #
1164
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/PutConfiguration AWS API Documentation
1165
+ #
1166
+ # @overload put_configuration(params = {})
1167
+ # @param [Hash] params ({})
1168
+ def put_configuration(params = {}, options = {})
1169
+ req = build_request(:put_configuration, params)
1170
+ req.send_request(options)
1171
+ end
1172
+
1119
1173
  # Syncs the resource with current AppRegistry records.
1120
1174
  #
1121
1175
  # Specifically, the resource’s AppRegistry system tags sync with its
@@ -1140,7 +1194,7 @@ module Aws::AppRegistry
1140
1194
  # @example Request syntax with placeholder values
1141
1195
  #
1142
1196
  # resp = client.sync_resource({
1143
- # resource_type: "CFN_STACK", # required, accepts CFN_STACK
1197
+ # resource_type: "CFN_STACK", # required, accepts CFN_STACK, RESOURCE_TAG_VALUE
1144
1198
  # resource: "ResourceSpecifier", # required
1145
1199
  # })
1146
1200
  #
@@ -1332,7 +1386,7 @@ module Aws::AppRegistry
1332
1386
  params: params,
1333
1387
  config: config)
1334
1388
  context[:gem_name] = 'aws-sdk-appregistry'
1335
- context[:gem_version] = '1.17.0'
1389
+ context[:gem_version] = '1.18.0'
1336
1390
  Seahorse::Client::Request.new(handlers, context)
1337
1391
  end
1338
1392
 
@@ -13,6 +13,7 @@ module Aws::AppRegistry
13
13
 
14
14
  include Seahorse::Model
15
15
 
16
+ AppRegistryConfiguration = Shapes::StructureShape.new(name: 'AppRegistryConfiguration')
16
17
  Application = Shapes::StructureShape.new(name: 'Application')
17
18
  ApplicationArn = Shapes::StringShape.new(name: 'ApplicationArn')
18
19
  ApplicationId = Shapes::StringShape.new(name: 'ApplicationId')
@@ -56,6 +57,7 @@ module Aws::AppRegistry
56
57
  GetAssociatedResourceResponse = Shapes::StructureShape.new(name: 'GetAssociatedResourceResponse')
57
58
  GetAttributeGroupRequest = Shapes::StructureShape.new(name: 'GetAttributeGroupRequest')
58
59
  GetAttributeGroupResponse = Shapes::StructureShape.new(name: 'GetAttributeGroupResponse')
60
+ GetConfigurationResponse = Shapes::StructureShape.new(name: 'GetConfigurationResponse')
59
61
  Integrations = Shapes::StructureShape.new(name: 'Integrations')
60
62
  InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
61
63
  ListApplicationsRequest = Shapes::StructureShape.new(name: 'ListApplicationsRequest')
@@ -73,7 +75,9 @@ module Aws::AppRegistry
73
75
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
74
76
  Name = Shapes::StringShape.new(name: 'Name')
75
77
  NextToken = Shapes::StringShape.new(name: 'NextToken')
78
+ PutConfigurationRequest = Shapes::StructureShape.new(name: 'PutConfigurationRequest')
76
79
  Resource = Shapes::StructureShape.new(name: 'Resource')
80
+ ResourceDetails = Shapes::StructureShape.new(name: 'ResourceDetails')
77
81
  ResourceGroup = Shapes::StructureShape.new(name: 'ResourceGroup')
78
82
  ResourceGroupState = Shapes::StringShape.new(name: 'ResourceGroupState')
79
83
  ResourceInfo = Shapes::StructureShape.new(name: 'ResourceInfo')
@@ -89,7 +93,9 @@ module Aws::AppRegistry
89
93
  SyncResourceRequest = Shapes::StructureShape.new(name: 'SyncResourceRequest')
90
94
  SyncResourceResponse = Shapes::StructureShape.new(name: 'SyncResourceResponse')
91
95
  TagKey = Shapes::StringShape.new(name: 'TagKey')
96
+ TagKeyConfig = Shapes::StringShape.new(name: 'TagKeyConfig')
92
97
  TagKeys = Shapes::ListShape.new(name: 'TagKeys')
98
+ TagQueryConfiguration = Shapes::StructureShape.new(name: 'TagQueryConfiguration')
93
99
  TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
94
100
  TagResourceResponse = Shapes::StructureShape.new(name: 'TagResourceResponse')
95
101
  TagValue = Shapes::StringShape.new(name: 'TagValue')
@@ -103,6 +109,9 @@ module Aws::AppRegistry
103
109
  UpdateAttributeGroupResponse = Shapes::StructureShape.new(name: 'UpdateAttributeGroupResponse')
104
110
  ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
105
111
 
112
+ AppRegistryConfiguration.add_member(:tag_query_configuration, Shapes::ShapeRef.new(shape: TagQueryConfiguration, location_name: "tagQueryConfiguration"))
113
+ AppRegistryConfiguration.struct_class = Types::AppRegistryConfiguration
114
+
106
115
  Application.add_member(:id, Shapes::ShapeRef.new(shape: ApplicationId, location_name: "id"))
107
116
  Application.add_member(:arn, Shapes::ShapeRef.new(shape: ApplicationArn, location_name: "arn"))
108
117
  Application.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "name"))
@@ -150,7 +159,7 @@ module Aws::AppRegistry
150
159
 
151
160
  AttributeGroupDetails.add_member(:id, Shapes::ShapeRef.new(shape: AttributeGroupId, location_name: "id"))
152
161
  AttributeGroupDetails.add_member(:arn, Shapes::ShapeRef.new(shape: AttributeGroupArn, location_name: "arn"))
153
- AttributeGroupDetails.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "name"))
162
+ 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."}))
154
163
  AttributeGroupDetails.struct_class = Types::AttributeGroupDetails
155
164
 
156
165
  AttributeGroupDetailsList.member = Shapes::ShapeRef.new(shape: AttributeGroupDetails)
@@ -253,6 +262,9 @@ module Aws::AppRegistry
253
262
  GetAttributeGroupResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
254
263
  GetAttributeGroupResponse.struct_class = Types::GetAttributeGroupResponse
255
264
 
265
+ GetConfigurationResponse.add_member(:configuration, Shapes::ShapeRef.new(shape: AppRegistryConfiguration, location_name: "configuration"))
266
+ GetConfigurationResponse.struct_class = Types::GetConfigurationResponse
267
+
256
268
  Integrations.add_member(:resource_group, Shapes::ShapeRef.new(shape: ResourceGroup, location_name: "resourceGroup"))
257
269
  Integrations.struct_class = Types::Integrations
258
270
 
@@ -308,19 +320,27 @@ module Aws::AppRegistry
308
320
  ListTagsForResourceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
309
321
  ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
310
322
 
323
+ PutConfigurationRequest.add_member(:configuration, Shapes::ShapeRef.new(shape: AppRegistryConfiguration, required: true, location_name: "configuration"))
324
+ PutConfigurationRequest.struct_class = Types::PutConfigurationRequest
325
+
311
326
  Resource.add_member(:name, Shapes::ShapeRef.new(shape: ResourceSpecifier, location_name: "name"))
312
327
  Resource.add_member(:arn, Shapes::ShapeRef.new(shape: StackArn, location_name: "arn"))
313
328
  Resource.add_member(:association_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "associationTime"))
314
329
  Resource.add_member(:integrations, Shapes::ShapeRef.new(shape: ResourceIntegrations, location_name: "integrations"))
315
330
  Resource.struct_class = Types::Resource
316
331
 
332
+ ResourceDetails.add_member(:tag_value, Shapes::ShapeRef.new(shape: TagValue, location_name: "tagValue"))
333
+ ResourceDetails.struct_class = Types::ResourceDetails
334
+
317
335
  ResourceGroup.add_member(:state, Shapes::ShapeRef.new(shape: ResourceGroupState, location_name: "state"))
318
336
  ResourceGroup.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
319
337
  ResourceGroup.add_member(:error_message, Shapes::ShapeRef.new(shape: String, location_name: "errorMessage"))
320
338
  ResourceGroup.struct_class = Types::ResourceGroup
321
339
 
322
340
  ResourceInfo.add_member(:name, Shapes::ShapeRef.new(shape: ResourceSpecifier, location_name: "name"))
323
- ResourceInfo.add_member(:arn, Shapes::ShapeRef.new(shape: StackArn, location_name: "arn"))
341
+ ResourceInfo.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
342
+ ResourceInfo.add_member(:resource_type, Shapes::ShapeRef.new(shape: ResourceType, location_name: "resourceType"))
343
+ ResourceInfo.add_member(:resource_details, Shapes::ShapeRef.new(shape: ResourceDetails, location_name: "resourceDetails"))
324
344
  ResourceInfo.struct_class = Types::ResourceInfo
325
345
 
326
346
  ResourceIntegrations.add_member(:resource_group, Shapes::ShapeRef.new(shape: ResourceGroup, location_name: "resourceGroup"))
@@ -345,6 +365,9 @@ module Aws::AppRegistry
345
365
 
346
366
  TagKeys.member = Shapes::ShapeRef.new(shape: TagKey)
347
367
 
368
+ TagQueryConfiguration.add_member(:tag_key, Shapes::ShapeRef.new(shape: TagKeyConfig, location_name: "tagKey"))
369
+ TagQueryConfiguration.struct_class = Types::TagQueryConfiguration
370
+
348
371
  TagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location: "uri", location_name: "resourceArn"))
349
372
  TagResourceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, required: true, location_name: "tags"))
350
373
  TagResourceRequest.struct_class = Types::TagResourceRequest
@@ -528,6 +551,15 @@ module Aws::AppRegistry
528
551
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
529
552
  end)
530
553
 
554
+ api.add_operation(:get_configuration, Seahorse::Model::Operation.new.tap do |o|
555
+ o.name = "GetConfiguration"
556
+ o.http_method = "GET"
557
+ o.http_request_uri = "/configuration"
558
+ o.input = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
559
+ o.output = Shapes::ShapeRef.new(shape: GetConfigurationResponse)
560
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
561
+ end)
562
+
531
563
  api.add_operation(:list_applications, Seahorse::Model::Operation.new.tap do |o|
532
564
  o.name = "ListApplications"
533
565
  o.http_method = "GET"
@@ -622,6 +654,17 @@ module Aws::AppRegistry
622
654
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
623
655
  end)
624
656
 
657
+ api.add_operation(:put_configuration, Seahorse::Model::Operation.new.tap do |o|
658
+ o.name = "PutConfiguration"
659
+ o.http_method = "PUT"
660
+ o.http_request_uri = "/configuration"
661
+ o.input = Shapes::ShapeRef.new(shape: PutConfigurationRequest)
662
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
663
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
664
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
665
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
666
+ end)
667
+
625
668
  api.add_operation(:sync_resource, Seahorse::Model::Operation.new.tap do |o|
626
669
  o.name = "SyncResource"
627
670
  o.http_method = "POST"
@@ -663,8 +706,8 @@ module Aws::AppRegistry
663
706
  o.output = Shapes::ShapeRef.new(shape: UpdateApplicationResponse)
664
707
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
665
708
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
666
- o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
667
709
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
710
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
668
711
  end)
669
712
 
670
713
  api.add_operation(:update_attribute_group, Seahorse::Model::Operation.new.tap do |o|
@@ -165,6 +165,20 @@ module Aws::AppRegistry
165
165
  end
166
166
  end
167
167
 
168
+ class GetConfiguration
169
+ def self.build(context)
170
+ unless context.config.regional_endpoint
171
+ endpoint = context.config.endpoint.to_s
172
+ end
173
+ Aws::AppRegistry::EndpointParameters.new(
174
+ region: context.config.region,
175
+ use_dual_stack: context.config.use_dualstack_endpoint,
176
+ use_fips: context.config.use_fips_endpoint,
177
+ endpoint: endpoint,
178
+ )
179
+ end
180
+ end
181
+
168
182
  class ListApplications
169
183
  def self.build(context)
170
184
  unless context.config.regional_endpoint
@@ -249,6 +263,20 @@ module Aws::AppRegistry
249
263
  end
250
264
  end
251
265
 
266
+ class PutConfiguration
267
+ def self.build(context)
268
+ unless context.config.regional_endpoint
269
+ endpoint = context.config.endpoint.to_s
270
+ end
271
+ Aws::AppRegistry::EndpointParameters.new(
272
+ region: context.config.region,
273
+ use_dual_stack: context.config.use_dualstack_endpoint,
274
+ use_fips: context.config.use_fips_endpoint,
275
+ endpoint: endpoint,
276
+ )
277
+ end
278
+ end
279
+
252
280
  class SyncResource
253
281
  def self.build(context)
254
282
  unless context.config.regional_endpoint
@@ -78,6 +78,8 @@ module Aws::AppRegistry
78
78
  Aws::AppRegistry::Endpoints::GetAssociatedResource.build(context)
79
79
  when :get_attribute_group
80
80
  Aws::AppRegistry::Endpoints::GetAttributeGroup.build(context)
81
+ when :get_configuration
82
+ Aws::AppRegistry::Endpoints::GetConfiguration.build(context)
81
83
  when :list_applications
82
84
  Aws::AppRegistry::Endpoints::ListApplications.build(context)
83
85
  when :list_associated_attribute_groups
@@ -90,6 +92,8 @@ module Aws::AppRegistry
90
92
  Aws::AppRegistry::Endpoints::ListAttributeGroupsForApplication.build(context)
91
93
  when :list_tags_for_resource
92
94
  Aws::AppRegistry::Endpoints::ListTagsForResource.build(context)
95
+ when :put_configuration
96
+ Aws::AppRegistry::Endpoints::PutConfiguration.build(context)
93
97
  when :sync_resource
94
98
  Aws::AppRegistry::Endpoints::SyncResource.build(context)
95
99
  when :tag_resource
@@ -10,6 +10,29 @@
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
+ # }
23
+ #
24
+ # @!attribute [rw] tag_query_configuration
25
+ # Includes the definition of a `tagQuery`.
26
+ # @return [Types::TagQueryConfiguration]
27
+ #
28
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/AppRegistryConfiguration AWS API Documentation
29
+ #
30
+ class AppRegistryConfiguration < Struct.new(
31
+ :tag_query_configuration)
32
+ SENSITIVE = []
33
+ include Aws::Structure
34
+ end
35
+
13
36
  # Represents a Amazon Web Services Service Catalog AppRegistry
14
37
  # application that is the top-level node in a hierarchy of related cloud
15
38
  # resource abstractions.
@@ -154,7 +177,7 @@ module Aws::AppRegistry
154
177
  #
155
178
  # {
156
179
  # application: "ApplicationSpecifier", # required
157
- # resource_type: "CFN_STACK", # required, accepts CFN_STACK
180
+ # resource_type: "CFN_STACK", # required, accepts CFN_STACK, RESOURCE_TAG_VALUE
158
181
  # resource: "ResourceSpecifier", # required
159
182
  # }
160
183
  #
@@ -261,6 +284,9 @@ module Aws::AppRegistry
261
284
  # @return [String]
262
285
  #
263
286
  # @!attribute [rw] name
287
+ # This field is no longer supported. We recommend you don't use the
288
+ # field when using `ListAttributeGroupsForApplication`.
289
+ #
264
290
  # The name of the attribute group.
265
291
  # @return [String]
266
292
  #
@@ -571,7 +597,7 @@ module Aws::AppRegistry
571
597
  #
572
598
  # {
573
599
  # application: "ApplicationSpecifier", # required
574
- # resource_type: "CFN_STACK", # required, accepts CFN_STACK
600
+ # resource_type: "CFN_STACK", # required, accepts CFN_STACK, RESOURCE_TAG_VALUE
575
601
  # resource: "ResourceSpecifier", # required
576
602
  # }
577
603
  #
@@ -696,7 +722,7 @@ module Aws::AppRegistry
696
722
  #
697
723
  # {
698
724
  # application: "ApplicationSpecifier", # required
699
- # resource_type: "CFN_STACK", # required, accepts CFN_STACK
725
+ # resource_type: "CFN_STACK", # required, accepts CFN_STACK, RESOURCE_TAG_VALUE
700
726
  # resource: "ResourceSpecifier", # required
701
727
  # }
702
728
  #
@@ -807,6 +833,18 @@ module Aws::AppRegistry
807
833
  include Aws::Structure
808
834
  end
809
835
 
836
+ # @!attribute [rw] configuration
837
+ # Retrieves `TagKey` configuration from an account.
838
+ # @return [Types::AppRegistryConfiguration]
839
+ #
840
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/GetConfigurationResponse AWS API Documentation
841
+ #
842
+ class GetConfigurationResponse < Struct.new(
843
+ :configuration)
844
+ SENSITIVE = []
845
+ include Aws::Structure
846
+ end
847
+
810
848
  # The information about the service integration.
811
849
  #
812
850
  # @!attribute [rw] resource_group
@@ -1019,7 +1057,7 @@ module Aws::AppRegistry
1019
1057
  end
1020
1058
 
1021
1059
  # @!attribute [rw] attribute_groups_details
1022
- # The details related to a specific AttributeGroup.
1060
+ # The details related to a specific attribute group.
1023
1061
  # @return [Array<Types::AttributeGroupDetails>]
1024
1062
  #
1025
1063
  # @!attribute [rw] next_token
@@ -1113,6 +1151,29 @@ module Aws::AppRegistry
1113
1151
  include Aws::Structure
1114
1152
  end
1115
1153
 
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
+ # @!attribute [rw] configuration
1166
+ # Associates a `TagKey` configuration to an account.
1167
+ # @return [Types::AppRegistryConfiguration]
1168
+ #
1169
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/PutConfigurationRequest AWS API Documentation
1170
+ #
1171
+ class PutConfigurationRequest < Struct.new(
1172
+ :configuration)
1173
+ SENSITIVE = []
1174
+ include Aws::Structure
1175
+ end
1176
+
1116
1177
  # The information about the resource.
1117
1178
  #
1118
1179
  # @!attribute [rw] name
@@ -1142,6 +1203,20 @@ module Aws::AppRegistry
1142
1203
  include Aws::Structure
1143
1204
  end
1144
1205
 
1206
+ # The details related to the resource.
1207
+ #
1208
+ # @!attribute [rw] tag_value
1209
+ # The value of the tag.
1210
+ # @return [String]
1211
+ #
1212
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ResourceDetails AWS API Documentation
1213
+ #
1214
+ class ResourceDetails < Struct.new(
1215
+ :tag_value)
1216
+ SENSITIVE = []
1217
+ include Aws::Structure
1218
+ end
1219
+
1145
1220
  # The information about the resource group integration.
1146
1221
  #
1147
1222
  # @!attribute [rw] state
@@ -1191,11 +1266,22 @@ module Aws::AppRegistry
1191
1266
  # services.
1192
1267
  # @return [String]
1193
1268
  #
1269
+ # @!attribute [rw] resource_type
1270
+ # Provides information about the Service Catalog App Registry resource
1271
+ # type.
1272
+ # @return [String]
1273
+ #
1274
+ # @!attribute [rw] resource_details
1275
+ # The details related to the resource.
1276
+ # @return [Types::ResourceDetails]
1277
+ #
1194
1278
  # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ResourceInfo AWS API Documentation
1195
1279
  #
1196
1280
  class ResourceInfo < Struct.new(
1197
1281
  :name,
1198
- :arn)
1282
+ :arn,
1283
+ :resource_type,
1284
+ :resource_details)
1199
1285
  SENSITIVE = []
1200
1286
  include Aws::Structure
1201
1287
  end
@@ -1244,7 +1330,7 @@ module Aws::AppRegistry
1244
1330
  # data as a hash:
1245
1331
  #
1246
1332
  # {
1247
- # resource_type: "CFN_STACK", # required, accepts CFN_STACK
1333
+ # resource_type: "CFN_STACK", # required, accepts CFN_STACK, RESOURCE_TAG_VALUE
1248
1334
  # resource: "ResourceSpecifier", # required
1249
1335
  # }
1250
1336
  #
@@ -1290,6 +1376,29 @@ module Aws::AppRegistry
1290
1376
  include Aws::Structure
1291
1377
  end
1292
1378
 
1379
+ # The definition of `tagQuery`. Specifies which resources are associated
1380
+ # with an application.
1381
+ #
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
+ # @!attribute [rw] tag_key
1390
+ # Condition in the IAM policy that associates resources to an
1391
+ # application.
1392
+ # @return [String]
1393
+ #
1394
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/TagQueryConfiguration AWS API Documentation
1395
+ #
1396
+ class TagQueryConfiguration < Struct.new(
1397
+ :tag_key)
1398
+ SENSITIVE = []
1399
+ include Aws::Structure
1400
+ end
1401
+
1293
1402
  # @note When making an API call, you may pass TagResourceRequest
1294
1403
  # data as a hash:
1295
1404
  #
@@ -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.17.0'
55
+ GEM_VERSION = '1.18.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.17.0
4
+ version: 1.18.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-10-25 00:00:00.000000000 Z
11
+ date: 2022-11-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core