aws-sdk-appregistry 1.7.0 → 1.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9a04f6de17c469715f88a601b4aa412003fcf65cb30f3db74ddc1b452f355567
4
- data.tar.gz: fccb6de535c3071454e443c3cd53083f25e64c556af1d30e11f68acfeb36e5b3
3
+ metadata.gz: 26ac98f2fdce8e5a07026ff1fcb86dce9c05b4bf19c533f07750682251557191
4
+ data.tar.gz: b0ebfc1ef181b3905165769edff91582624a89d2fdc8272624552570d7834526
5
5
  SHA512:
6
- metadata.gz: aa718248d4f53b748314cfd0b3e769bb9069c303d8cb2a00106c34de9723943719a6e1c5b83d87d43da8e4029c79355ae18221e9800ff55f8052912699fa0446
7
- data.tar.gz: fbc3672fc3a0173af9d274d3660d624f07317be68a2ee43ad278bd8bfabe50ffd48051d8a8b69aa96146c26d742384dc03bb8adb048c362755690db6c041cf98
6
+ metadata.gz: fd11aa289e9f6fdbc6972dc2a20e079c9a8ccb09fcdd696aa9502052d14c4e517bf1b6f183182c73a2997e062de908dc6a3077f4410f3af4288f9c34ddbc1270
7
+ data.tar.gz: 28a5b64ee5df8c0a32d5d41cd127b1761c3b40ca93352b1db193900510cda5b6fffa99cb0b6a92897f439bf6b50ba7cb66fc7d1b8cd606502f11145442f6cf05
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.8.0 (2021-09-01)
5
+ ------------------
6
+
7
+ * Feature - Introduction of GetAssociatedResource API and GetApplication response extension for Resource Groups support.
8
+
4
9
  1.7.0 (2021-07-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.7.0
1
+ 1.8.0
@@ -698,6 +698,7 @@ module Aws::AppRegistry
698
698
  # * {Types::GetApplicationResponse#last_update_time #last_update_time} => Time
699
699
  # * {Types::GetApplicationResponse#associated_resource_count #associated_resource_count} => Integer
700
700
  # * {Types::GetApplicationResponse#tags #tags} => Hash<String,String>
701
+ # * {Types::GetApplicationResponse#integrations #integrations} => Types::Integrations
701
702
  #
702
703
  # @example Request syntax with placeholder values
703
704
  #
@@ -716,6 +717,9 @@ module Aws::AppRegistry
716
717
  # resp.associated_resource_count #=> Integer
717
718
  # resp.tags #=> Hash
718
719
  # resp.tags["TagKey"] #=> String
720
+ # resp.integrations.resource_group.state #=> String, one of "CREATING", "CREATE_COMPLETE", "CREATE_FAILED", "UPDATING", "UPDATE_COMPLETE", "UPDATE_FAILED"
721
+ # resp.integrations.resource_group.arn #=> String
722
+ # resp.integrations.resource_group.error_message #=> String
719
723
  #
720
724
  # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/GetApplication AWS API Documentation
721
725
  #
@@ -726,6 +730,47 @@ module Aws::AppRegistry
726
730
  req.send_request(options)
727
731
  end
728
732
 
733
+ # Gets the resource associated with the application.
734
+ #
735
+ # @option params [required, String] :application
736
+ # The name or ID of the application.
737
+ #
738
+ # @option params [required, String] :resource_type
739
+ # The type of resource associated with the application.
740
+ #
741
+ # @option params [required, String] :resource
742
+ # The name or ID of the resource associated with the application.
743
+ #
744
+ # @return [Types::GetAssociatedResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
745
+ #
746
+ # * {Types::GetAssociatedResourceResponse#resource #resource} => Types::Resource
747
+ #
748
+ # @example Request syntax with placeholder values
749
+ #
750
+ # resp = client.get_associated_resource({
751
+ # application: "ApplicationSpecifier", # required
752
+ # resource_type: "CFN_STACK", # required, accepts CFN_STACK
753
+ # resource: "ResourceSpecifier", # required
754
+ # })
755
+ #
756
+ # @example Response structure
757
+ #
758
+ # resp.resource.name #=> String
759
+ # resp.resource.arn #=> String
760
+ # resp.resource.association_time #=> Time
761
+ # resp.resource.integrations.resource_group.state #=> String, one of "CREATING", "CREATE_COMPLETE", "CREATE_FAILED", "UPDATING", "UPDATE_COMPLETE", "UPDATE_FAILED"
762
+ # resp.resource.integrations.resource_group.arn #=> String
763
+ # resp.resource.integrations.resource_group.error_message #=> String
764
+ #
765
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/GetAssociatedResource AWS API Documentation
766
+ #
767
+ # @overload get_associated_resource(params = {})
768
+ # @param [Hash] params ({})
769
+ def get_associated_resource(params = {}, options = {})
770
+ req = build_request(:get_associated_resource, params)
771
+ req.send_request(options)
772
+ end
773
+
729
774
  # Retrieves an attribute group, either by its name or its ID. The
730
775
  # attribute group can be specified either by its unique ID or by its
731
776
  # name.
@@ -983,19 +1028,20 @@ module Aws::AppRegistry
983
1028
  req.send_request(options)
984
1029
  end
985
1030
 
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.
1031
+ # Syncs the resource with current AppRegistry records.
1032
+ #
1033
+ # Specifically, the resource’s AppRegistry system tags sync with its
1034
+ # associated application. We remove the resource's AppRegistry system
1035
+ # tags if it does not associate with the application. The caller must
1036
+ # have permissions to read and update the resource.
991
1037
  #
992
1038
  # @option params [required, String] :resource_type
993
1039
  # The type of resource of which the application will be associated.
994
1040
  #
995
1041
  # @option params [required, String] :resource
996
1042
  # 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.
1043
+ # include an Amazon EC2 instance, an Amazon Web Services CloudFormation
1044
+ # stack, or an Amazon S3 bucket.
999
1045
  #
1000
1046
  # @return [Types::SyncResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1001
1047
  #
@@ -1195,7 +1241,7 @@ module Aws::AppRegistry
1195
1241
  params: params,
1196
1242
  config: config)
1197
1243
  context[:gem_name] = 'aws-sdk-appregistry'
1198
- context[:gem_version] = '1.7.0'
1244
+ context[:gem_version] = '1.8.0'
1199
1245
  Seahorse::Client::Request.new(handlers, context)
1200
1246
  end
1201
1247
 
@@ -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.7.0'
51
+ GEM_VERSION = '1.8.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.7.0
4
+ version: 1.8.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-30 00:00:00.000000000 Z
11
+ date: 2021-09-01 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.119.0
22
+ version: 3.120.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.119.0
32
+ version: 3.120.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
  - - ">="