aws-sdk-resiliencehub 1.11.0 → 1.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-resiliencehub/client.rb +146 -91
- data/lib/aws-sdk-resiliencehub/client_api.rb +4 -1
- data/lib/aws-sdk-resiliencehub/types.rb +277 -171
- data/lib/aws-sdk-resiliencehub.rb +1 -1
- metadata +2 -2
@@ -204,6 +204,7 @@ module Aws::ResilienceHub
|
|
204
204
|
ResourceMappingType = Shapes::StringShape.new(name: 'ResourceMappingType')
|
205
205
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
206
206
|
ResourceResolutionStatusType = Shapes::StringShape.new(name: 'ResourceResolutionStatusType')
|
207
|
+
ResourceSourceType = Shapes::StringShape.new(name: 'ResourceSourceType')
|
207
208
|
ResourceType = Shapes::StringShape.new(name: 'ResourceType')
|
208
209
|
RetryAfterSeconds = Shapes::IntegerShape.new(name: 'RetryAfterSeconds')
|
209
210
|
S3Location = Shapes::StructureShape.new(name: 'S3Location')
|
@@ -451,7 +452,7 @@ module Aws::ResilienceHub
|
|
451
452
|
CreateAppVersionResourceRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
452
453
|
CreateAppVersionResourceRequest.add_member(:logical_resource_id, Shapes::ShapeRef.new(shape: LogicalResourceId, required: true, location_name: "logicalResourceId"))
|
453
454
|
CreateAppVersionResourceRequest.add_member(:physical_resource_id, Shapes::ShapeRef.new(shape: String2048, required: true, location_name: "physicalResourceId"))
|
454
|
-
CreateAppVersionResourceRequest.add_member(:resource_name, Shapes::ShapeRef.new(shape: EntityName,
|
455
|
+
CreateAppVersionResourceRequest.add_member(:resource_name, Shapes::ShapeRef.new(shape: EntityName, location_name: "resourceName"))
|
455
456
|
CreateAppVersionResourceRequest.add_member(:resource_type, Shapes::ShapeRef.new(shape: String255, required: true, location_name: "resourceType"))
|
456
457
|
CreateAppVersionResourceRequest.struct_class = Types::CreateAppVersionResourceRequest
|
457
458
|
|
@@ -868,9 +869,11 @@ module Aws::ResilienceHub
|
|
868
869
|
PhysicalResource.add_member(:app_components, Shapes::ShapeRef.new(shape: AppComponentList, location_name: "appComponents"))
|
869
870
|
PhysicalResource.add_member(:excluded, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "excluded"))
|
870
871
|
PhysicalResource.add_member(:logical_resource_id, Shapes::ShapeRef.new(shape: LogicalResourceId, required: true, location_name: "logicalResourceId"))
|
872
|
+
PhysicalResource.add_member(:parent_resource_name, Shapes::ShapeRef.new(shape: EntityName, location_name: "parentResourceName"))
|
871
873
|
PhysicalResource.add_member(:physical_resource_id, Shapes::ShapeRef.new(shape: PhysicalResourceId, required: true, location_name: "physicalResourceId"))
|
872
874
|
PhysicalResource.add_member(:resource_name, Shapes::ShapeRef.new(shape: EntityName, location_name: "resourceName"))
|
873
875
|
PhysicalResource.add_member(:resource_type, Shapes::ShapeRef.new(shape: String255, required: true, location_name: "resourceType"))
|
876
|
+
PhysicalResource.add_member(:source_type, Shapes::ShapeRef.new(shape: ResourceSourceType, location_name: "sourceType"))
|
874
877
|
PhysicalResource.struct_class = Types::PhysicalResource
|
875
878
|
|
876
879
|
PhysicalResourceId.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: CustomerId, location_name: "awsAccountId"))
|