aws-sdk-appregistry 1.6.0 → 1.10.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: 01af3a80099fbe0efb6a282beb2d99283cd24721102f7bc573e7f3883b911026
4
- data.tar.gz: dbe9569df6028ed24c91c3a7b0581d14ca19d790d88dd385883c0f2fe6d3d83c
3
+ metadata.gz: 92041300aa7c15ff04ffc209adf5fc1ecbea83839912dba2a0ad45b79f150f4a
4
+ data.tar.gz: 3fe45a04a3203a76975edcb83cbdd430a995cede9302f0cd41057100c0c9f081
5
5
  SHA512:
6
- metadata.gz: aae05aa753a4946074d4c8cf60f289a83f1d7d92a44da29681bc65ff30609679bb0d7127dfd3c69075551b8b4c7fbefbbf648799454f3836f691287e375880ea
7
- data.tar.gz: cd9a3243fceadb24cd20ee0ecd33fc6be36ac62e9c4f36ef10c32281e4da79e982e42027b5119a5fc269b062aeab17c05879ac9a283080223ff692894228cd96
6
+ metadata.gz: 85130eee524a1fbeb65edb98d3c043ae19b18fb15cf6727ffaf6831cb1650455149ffe8bd483e99b8a45a042805d7735f554da10afa9c61cfce21d8386828950
7
+ data.tar.gz: c0fda63ed6d3c6478d955587ddd0495dde198d2659e11ca71e30be3d79715c1015e44c75aa43242a51a7b6a5f80972896eef9da9efeec6d4aacb9526c2761df9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.10.0 (2021-11-04)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.9.0 (2021-10-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.8.0 (2021-09-01)
15
+ ------------------
16
+
17
+ * Feature - Introduction of GetAssociatedResource API and GetApplication response extension for Resource Groups support.
18
+
19
+ 1.7.0 (2021-07-30)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.6.0 (2021-07-28)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.0
1
+ 1.10.0
@@ -275,6 +275,15 @@ module Aws::AppRegistry
275
275
  # ** Please note ** When response stubbing is enabled, no HTTP
276
276
  # requests are made, and retries are disabled.
277
277
  #
278
+ # @option options [Boolean] :use_dualstack_endpoint
279
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
280
+ # will be used if available.
281
+ #
282
+ # @option options [Boolean] :use_fips_endpoint
283
+ # When set to `true`, fips compatible endpoints will be used if available.
284
+ # When a `fips` region is used, the region is normalized and this config
285
+ # is set to `true`.
286
+ #
278
287
  # @option options [Boolean] :validate_params (true)
279
288
  # When `true`, request parameters are validated before
280
289
  # sending the request.
@@ -698,6 +707,7 @@ module Aws::AppRegistry
698
707
  # * {Types::GetApplicationResponse#last_update_time #last_update_time} => Time
699
708
  # * {Types::GetApplicationResponse#associated_resource_count #associated_resource_count} => Integer
700
709
  # * {Types::GetApplicationResponse#tags #tags} => Hash<String,String>
710
+ # * {Types::GetApplicationResponse#integrations #integrations} => Types::Integrations
701
711
  #
702
712
  # @example Request syntax with placeholder values
703
713
  #
@@ -716,6 +726,9 @@ module Aws::AppRegistry
716
726
  # resp.associated_resource_count #=> Integer
717
727
  # resp.tags #=> Hash
718
728
  # resp.tags["TagKey"] #=> String
729
+ # resp.integrations.resource_group.state #=> String, one of "CREATING", "CREATE_COMPLETE", "CREATE_FAILED", "UPDATING", "UPDATE_COMPLETE", "UPDATE_FAILED"
730
+ # resp.integrations.resource_group.arn #=> String
731
+ # resp.integrations.resource_group.error_message #=> String
719
732
  #
720
733
  # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/GetApplication AWS API Documentation
721
734
  #
@@ -726,6 +739,47 @@ module Aws::AppRegistry
726
739
  req.send_request(options)
727
740
  end
728
741
 
742
+ # Gets the resource associated with the application.
743
+ #
744
+ # @option params [required, String] :application
745
+ # The name or ID of the application.
746
+ #
747
+ # @option params [required, String] :resource_type
748
+ # The type of resource associated with the application.
749
+ #
750
+ # @option params [required, String] :resource
751
+ # The name or ID of the resource associated with the application.
752
+ #
753
+ # @return [Types::GetAssociatedResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
754
+ #
755
+ # * {Types::GetAssociatedResourceResponse#resource #resource} => Types::Resource
756
+ #
757
+ # @example Request syntax with placeholder values
758
+ #
759
+ # resp = client.get_associated_resource({
760
+ # application: "ApplicationSpecifier", # required
761
+ # resource_type: "CFN_STACK", # required, accepts CFN_STACK
762
+ # resource: "ResourceSpecifier", # required
763
+ # })
764
+ #
765
+ # @example Response structure
766
+ #
767
+ # resp.resource.name #=> String
768
+ # resp.resource.arn #=> String
769
+ # resp.resource.association_time #=> Time
770
+ # resp.resource.integrations.resource_group.state #=> String, one of "CREATING", "CREATE_COMPLETE", "CREATE_FAILED", "UPDATING", "UPDATE_COMPLETE", "UPDATE_FAILED"
771
+ # resp.resource.integrations.resource_group.arn #=> String
772
+ # resp.resource.integrations.resource_group.error_message #=> String
773
+ #
774
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/GetAssociatedResource AWS API Documentation
775
+ #
776
+ # @overload get_associated_resource(params = {})
777
+ # @param [Hash] params ({})
778
+ def get_associated_resource(params = {}, options = {})
779
+ req = build_request(:get_associated_resource, params)
780
+ req.send_request(options)
781
+ end
782
+
729
783
  # Retrieves an attribute group, either by its name or its ID. The
730
784
  # attribute group can be specified either by its unique ID or by its
731
785
  # name.
@@ -983,19 +1037,20 @@ module Aws::AppRegistry
983
1037
  req.send_request(options)
984
1038
  end
985
1039
 
986
- # Syncs the resource with what is currently recorded in App registry.
987
- # Specifically, the resource’s App registry system tags are synced with
988
- # its associated application. The resource is removed if it is not
989
- # associated with the application. The caller must have permissions to
990
- # read and update the resource.
1040
+ # Syncs the resource with current AppRegistry records.
1041
+ #
1042
+ # Specifically, the resource’s AppRegistry system tags sync with its
1043
+ # associated application. We remove the resource's AppRegistry system
1044
+ # tags if it does not associate with the application. The caller must
1045
+ # have permissions to read and update the resource.
991
1046
  #
992
1047
  # @option params [required, String] :resource_type
993
1048
  # The type of resource of which the application will be associated.
994
1049
  #
995
1050
  # @option params [required, String] :resource
996
1051
  # An entity you can work with and specify with a name or ID. Examples
997
- # include an Amazon EC2 instance, an AWS CloudFormation stack, or an
998
- # Amazon S3 bucket.
1052
+ # include an Amazon EC2 instance, an Amazon Web Services CloudFormation
1053
+ # stack, or an Amazon S3 bucket.
999
1054
  #
1000
1055
  # @return [Types::SyncResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1001
1056
  #
@@ -1195,7 +1250,7 @@ module Aws::AppRegistry
1195
1250
  params: params,
1196
1251
  config: config)
1197
1252
  context[:gem_name] = 'aws-sdk-appregistry'
1198
- context[:gem_version] = '1.6.0'
1253
+ context[:gem_version] = '1.10.0'
1199
1254
  Seahorse::Client::Request.new(handlers, context)
1200
1255
  end
1201
1256
 
@@ -50,8 +50,11 @@ module Aws::AppRegistry
50
50
  DisassociateResourceResponse = Shapes::StructureShape.new(name: 'DisassociateResourceResponse')
51
51
  GetApplicationRequest = Shapes::StructureShape.new(name: 'GetApplicationRequest')
52
52
  GetApplicationResponse = Shapes::StructureShape.new(name: 'GetApplicationResponse')
53
+ GetAssociatedResourceRequest = Shapes::StructureShape.new(name: 'GetAssociatedResourceRequest')
54
+ GetAssociatedResourceResponse = Shapes::StructureShape.new(name: 'GetAssociatedResourceResponse')
53
55
  GetAttributeGroupRequest = Shapes::StructureShape.new(name: 'GetAttributeGroupRequest')
54
56
  GetAttributeGroupResponse = Shapes::StructureShape.new(name: 'GetAttributeGroupResponse')
57
+ Integrations = Shapes::StructureShape.new(name: 'Integrations')
55
58
  InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
56
59
  ListApplicationsRequest = Shapes::StructureShape.new(name: 'ListApplicationsRequest')
57
60
  ListApplicationsResponse = Shapes::StructureShape.new(name: 'ListApplicationsResponse')
@@ -66,7 +69,11 @@ module Aws::AppRegistry
66
69
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
67
70
  Name = Shapes::StringShape.new(name: 'Name')
68
71
  NextToken = Shapes::StringShape.new(name: 'NextToken')
72
+ Resource = Shapes::StructureShape.new(name: 'Resource')
73
+ ResourceGroup = Shapes::StructureShape.new(name: 'ResourceGroup')
74
+ ResourceGroupState = Shapes::StringShape.new(name: 'ResourceGroupState')
69
75
  ResourceInfo = Shapes::StructureShape.new(name: 'ResourceInfo')
76
+ ResourceIntegrations = Shapes::StructureShape.new(name: 'ResourceIntegrations')
70
77
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
71
78
  ResourceSpecifier = Shapes::StringShape.new(name: 'ResourceSpecifier')
72
79
  ResourceType = Shapes::StringShape.new(name: 'ResourceType')
@@ -211,8 +218,17 @@ module Aws::AppRegistry
211
218
  GetApplicationResponse.add_member(:last_update_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastUpdateTime"))
212
219
  GetApplicationResponse.add_member(:associated_resource_count, Shapes::ShapeRef.new(shape: AssociationCount, location_name: "associatedResourceCount"))
213
220
  GetApplicationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
221
+ GetApplicationResponse.add_member(:integrations, Shapes::ShapeRef.new(shape: Integrations, location_name: "integrations"))
214
222
  GetApplicationResponse.struct_class = Types::GetApplicationResponse
215
223
 
224
+ GetAssociatedResourceRequest.add_member(:application, Shapes::ShapeRef.new(shape: ApplicationSpecifier, required: true, location: "uri", location_name: "application"))
225
+ GetAssociatedResourceRequest.add_member(:resource_type, Shapes::ShapeRef.new(shape: ResourceType, required: true, location: "uri", location_name: "resourceType"))
226
+ GetAssociatedResourceRequest.add_member(:resource, Shapes::ShapeRef.new(shape: ResourceSpecifier, required: true, location: "uri", location_name: "resource"))
227
+ GetAssociatedResourceRequest.struct_class = Types::GetAssociatedResourceRequest
228
+
229
+ GetAssociatedResourceResponse.add_member(:resource, Shapes::ShapeRef.new(shape: Resource, location_name: "resource"))
230
+ GetAssociatedResourceResponse.struct_class = Types::GetAssociatedResourceResponse
231
+
216
232
  GetAttributeGroupRequest.add_member(:attribute_group, Shapes::ShapeRef.new(shape: AttributeGroupSpecifier, required: true, location: "uri", location_name: "attributeGroup"))
217
233
  GetAttributeGroupRequest.struct_class = Types::GetAttributeGroupRequest
218
234
 
@@ -226,6 +242,9 @@ module Aws::AppRegistry
226
242
  GetAttributeGroupResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
227
243
  GetAttributeGroupResponse.struct_class = Types::GetAttributeGroupResponse
228
244
 
245
+ Integrations.add_member(:resource_group, Shapes::ShapeRef.new(shape: ResourceGroup, location_name: "resourceGroup"))
246
+ Integrations.struct_class = Types::Integrations
247
+
229
248
  InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
230
249
  InternalServerException.struct_class = Types::InternalServerException
231
250
 
@@ -269,10 +288,24 @@ module Aws::AppRegistry
269
288
  ListTagsForResourceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
270
289
  ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
271
290
 
291
+ Resource.add_member(:name, Shapes::ShapeRef.new(shape: ResourceSpecifier, location_name: "name"))
292
+ Resource.add_member(:arn, Shapes::ShapeRef.new(shape: StackArn, location_name: "arn"))
293
+ Resource.add_member(:association_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "associationTime"))
294
+ Resource.add_member(:integrations, Shapes::ShapeRef.new(shape: ResourceIntegrations, location_name: "integrations"))
295
+ Resource.struct_class = Types::Resource
296
+
297
+ ResourceGroup.add_member(:state, Shapes::ShapeRef.new(shape: ResourceGroupState, location_name: "state"))
298
+ ResourceGroup.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
299
+ ResourceGroup.add_member(:error_message, Shapes::ShapeRef.new(shape: String, location_name: "errorMessage"))
300
+ ResourceGroup.struct_class = Types::ResourceGroup
301
+
272
302
  ResourceInfo.add_member(:name, Shapes::ShapeRef.new(shape: ResourceSpecifier, location_name: "name"))
273
303
  ResourceInfo.add_member(:arn, Shapes::ShapeRef.new(shape: StackArn, location_name: "arn"))
274
304
  ResourceInfo.struct_class = Types::ResourceInfo
275
305
 
306
+ ResourceIntegrations.add_member(:resource_group, Shapes::ShapeRef.new(shape: ResourceGroup, location_name: "resourceGroup"))
307
+ ResourceIntegrations.struct_class = Types::ResourceIntegrations
308
+
276
309
  ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
277
310
  ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
278
311
 
@@ -447,6 +480,17 @@ module Aws::AppRegistry
447
480
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
448
481
  end)
449
482
 
483
+ api.add_operation(:get_associated_resource, Seahorse::Model::Operation.new.tap do |o|
484
+ o.name = "GetAssociatedResource"
485
+ o.http_method = "GET"
486
+ o.http_request_uri = "/applications/{application}/resources/{resourceType}/{resource}"
487
+ o.input = Shapes::ShapeRef.new(shape: GetAssociatedResourceRequest)
488
+ o.output = Shapes::ShapeRef.new(shape: GetAssociatedResourceResponse)
489
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
490
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
491
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
492
+ end)
493
+
450
494
  api.add_operation(:get_attribute_group, Seahorse::Model::Operation.new.tap do |o|
451
495
  o.name = "GetAttributeGroup"
452
496
  o.http_method = "GET"
@@ -10,8 +10,9 @@
10
10
  module Aws::AppRegistry
11
11
  module Types
12
12
 
13
- # Represents a Service Catalog AppRegistry application that is the
14
- # top-level node in a hierarchy of related cloud resource abstractions.
13
+ # Represents a Amazon Web Services Service Catalog AppRegistry
14
+ # application that is the top-level node in a hierarchy of related cloud
15
+ # resource abstractions.
15
16
  #
16
17
  # @!attribute [rw] id
17
18
  # The identifier of the application.
@@ -59,7 +60,8 @@ module Aws::AppRegistry
59
60
  include Aws::Structure
60
61
  end
61
62
 
62
- # Summary of a Service Catalog AppRegistry application.
63
+ # Summary of a Amazon Web Services Service Catalog AppRegistry
64
+ # application.
63
65
  #
64
66
  # @!attribute [rw] id
65
67
  # The identifier of the application.
@@ -197,8 +199,9 @@ module Aws::AppRegistry
197
199
  include Aws::Structure
198
200
  end
199
201
 
200
- # Represents a Service Catalog AppRegistry attribute group that is rich
201
- # metadata which describes an application and its components.
202
+ # Represents a Amazon Web Services Service Catalog AppRegistry attribute
203
+ # group that is rich metadata which describes an application and its
204
+ # components.
202
205
  #
203
206
  # @!attribute [rw] id
204
207
  # The globally unique attribute group identifier of the attribute
@@ -247,7 +250,8 @@ module Aws::AppRegistry
247
250
  include Aws::Structure
248
251
  end
249
252
 
250
- # Summary of a Service Catalog AppRegistry attribute group.
253
+ # Summary of a Amazon Web Services Service Catalog AppRegistry attribute
254
+ # group.
251
255
  #
252
256
  # @!attribute [rw] id
253
257
  # The globally unique attribute group identifier of the attribute
@@ -642,6 +646,11 @@ module Aws::AppRegistry
642
646
  # Key-value pairs associated with the application.
643
647
  # @return [Hash<String,String>]
644
648
  #
649
+ # @!attribute [rw] integrations
650
+ # The information about the integration of the application with other
651
+ # services, such as Resource Groups.
652
+ # @return [Types::Integrations]
653
+ #
645
654
  # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/GetApplicationResponse AWS API Documentation
646
655
  #
647
656
  class GetApplicationResponse < Struct.new(
@@ -652,7 +661,51 @@ module Aws::AppRegistry
652
661
  :creation_time,
653
662
  :last_update_time,
654
663
  :associated_resource_count,
655
- :tags)
664
+ :tags,
665
+ :integrations)
666
+ SENSITIVE = []
667
+ include Aws::Structure
668
+ end
669
+
670
+ # @note When making an API call, you may pass GetAssociatedResourceRequest
671
+ # data as a hash:
672
+ #
673
+ # {
674
+ # application: "ApplicationSpecifier", # required
675
+ # resource_type: "CFN_STACK", # required, accepts CFN_STACK
676
+ # resource: "ResourceSpecifier", # required
677
+ # }
678
+ #
679
+ # @!attribute [rw] application
680
+ # The name or ID of the application.
681
+ # @return [String]
682
+ #
683
+ # @!attribute [rw] resource_type
684
+ # The type of resource associated with the application.
685
+ # @return [String]
686
+ #
687
+ # @!attribute [rw] resource
688
+ # The name or ID of the resource associated with the application.
689
+ # @return [String]
690
+ #
691
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/GetAssociatedResourceRequest AWS API Documentation
692
+ #
693
+ class GetAssociatedResourceRequest < Struct.new(
694
+ :application,
695
+ :resource_type,
696
+ :resource)
697
+ SENSITIVE = []
698
+ include Aws::Structure
699
+ end
700
+
701
+ # @!attribute [rw] resource
702
+ # The resource associated with the application.
703
+ # @return [Types::Resource]
704
+ #
705
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/GetAssociatedResourceResponse AWS API Documentation
706
+ #
707
+ class GetAssociatedResourceResponse < Struct.new(
708
+ :resource)
656
709
  SENSITIVE = []
657
710
  include Aws::Structure
658
711
  end
@@ -730,6 +783,20 @@ module Aws::AppRegistry
730
783
  include Aws::Structure
731
784
  end
732
785
 
786
+ # The information about the service integration.
787
+ #
788
+ # @!attribute [rw] resource_group
789
+ # The information about the resource group integration.
790
+ # @return [Types::ResourceGroup]
791
+ #
792
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/Integrations AWS API Documentation
793
+ #
794
+ class Integrations < Struct.new(
795
+ :resource_group)
796
+ SENSITIVE = []
797
+ include Aws::Structure
798
+ end
799
+
733
800
  # The service is experiencing internal problems.
734
801
  #
735
802
  # @!attribute [rw] message
@@ -970,7 +1037,74 @@ module Aws::AppRegistry
970
1037
  include Aws::Structure
971
1038
  end
972
1039
 
973
- # Information about the resource.
1040
+ # The information about the resource.
1041
+ #
1042
+ # @!attribute [rw] name
1043
+ # The name of the resource.
1044
+ # @return [String]
1045
+ #
1046
+ # @!attribute [rw] arn
1047
+ # The Amazon resource name (ARN) of the resource.
1048
+ # @return [String]
1049
+ #
1050
+ # @!attribute [rw] association_time
1051
+ # The time the resource was associated with the application.
1052
+ # @return [Time]
1053
+ #
1054
+ # @!attribute [rw] integrations
1055
+ # The service integration information about the resource.
1056
+ # @return [Types::ResourceIntegrations]
1057
+ #
1058
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/Resource AWS API Documentation
1059
+ #
1060
+ class Resource < Struct.new(
1061
+ :name,
1062
+ :arn,
1063
+ :association_time,
1064
+ :integrations)
1065
+ SENSITIVE = []
1066
+ include Aws::Structure
1067
+ end
1068
+
1069
+ # The information about the resource group integration.
1070
+ #
1071
+ # @!attribute [rw] state
1072
+ # The state of the propagation process for the resource group. The
1073
+ # states includes:
1074
+ #
1075
+ # `CREATING `if the resource group is in the process of being created.
1076
+ #
1077
+ # `CREATE_COMPLETE` if the resource group was created successfully.
1078
+ #
1079
+ # `CREATE_FAILED` if the resource group failed to be created.
1080
+ #
1081
+ # `UPDATING` if the resource group is in the process of being updated.
1082
+ #
1083
+ # `UPDATE_COMPLETE` if the resource group updated successfully.
1084
+ #
1085
+ # `UPDATE_FAILED` if the resource group could not update successfully.
1086
+ # @return [String]
1087
+ #
1088
+ # @!attribute [rw] arn
1089
+ # The Amazon resource name (ARN) of the resource group.
1090
+ # @return [String]
1091
+ #
1092
+ # @!attribute [rw] error_message
1093
+ # The error message that generates when the propagation process for
1094
+ # the resource group fails.
1095
+ # @return [String]
1096
+ #
1097
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ResourceGroup AWS API Documentation
1098
+ #
1099
+ class ResourceGroup < Struct.new(
1100
+ :state,
1101
+ :arn,
1102
+ :error_message)
1103
+ SENSITIVE = []
1104
+ include Aws::Structure
1105
+ end
1106
+
1107
+ # The information about the resource.
974
1108
  #
975
1109
  # @!attribute [rw] name
976
1110
  # The name of the resource.
@@ -990,6 +1124,20 @@ module Aws::AppRegistry
990
1124
  include Aws::Structure
991
1125
  end
992
1126
 
1127
+ # The service integration information about the resource.
1128
+ #
1129
+ # @!attribute [rw] resource_group
1130
+ # The information about the integration of Resource Groups.
1131
+ # @return [Types::ResourceGroup]
1132
+ #
1133
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ResourceIntegrations AWS API Documentation
1134
+ #
1135
+ class ResourceIntegrations < Struct.new(
1136
+ :resource_group)
1137
+ SENSITIVE = []
1138
+ include Aws::Structure
1139
+ end
1140
+
993
1141
  # The specified resource does not exist.
994
1142
  #
995
1143
  # @!attribute [rw] message
@@ -1030,8 +1178,8 @@ module Aws::AppRegistry
1030
1178
  #
1031
1179
  # @!attribute [rw] resource
1032
1180
  # 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.
1181
+ # include an Amazon EC2 instance, an Amazon Web Services
1182
+ # CloudFormation stack, or an Amazon S3 bucket.
1035
1183
  # @return [String]
1036
1184
  #
1037
1185
  # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/SyncResourceRequest AWS API Documentation
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-appregistry/customizations'
48
48
  # @!group service
49
49
  module Aws::AppRegistry
50
50
 
51
- GEM_VERSION = '1.6.0'
51
+ GEM_VERSION = '1.10.0'
52
52
 
53
53
  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.6.0
4
+ version: 1.10.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: 2021-07-28 00:00:00.000000000 Z
11
+ date: 2021-11-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.118.0
22
+ version: 3.122.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.118.0
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -76,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
76
76
  requirements:
77
77
  - - ">="
78
78
  - !ruby/object:Gem::Version
79
- version: '0'
79
+ version: '2.3'
80
80
  required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  requirements:
82
82
  - - ">="