aws-sdk-cloudformation 1.85.0 → 1.86.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: d7ef709b88d97f67fa191c3ddea5b0932c0336acab565ba0785c63def1385118
4
- data.tar.gz: d1f39747f3114bd433bec61ca59c6bfa290fa0579a2c99fa55148df1d616fffe
3
+ metadata.gz: fc1affd9d0322fe1db2ebb9201f92db2c174e732cd783413a36e956aba18934c
4
+ data.tar.gz: 9e76029ca985ad7d14db33e6cf7d97c5fff28f4032bc2afcc15e59db7af1c6f6
5
5
  SHA512:
6
- metadata.gz: 7cf92d808886a23f89ac88d39a64326a68eb5832abae16332e3c54fefbf3b4b6ff6c53856a973d44f60d25c70700b244220b1c45b29606f57b759173ee7c2c35
7
- data.tar.gz: 9cf05e22c1385ab66e94c5dec97083c705f72e4698ffdcdbbb09f72cc25e1ba32b5891d247f1b70917c213a9826fb99210726e9f367e789aa53ac053b203fa83
6
+ metadata.gz: bfae4f80fc5a36406775a57dae8e50eba93a56f535aed2d9fdc6b40680ba0234191e015aad46b3e264463b8073ebf0852cabfc9fad303a675bea5d35a6571de2
7
+ data.tar.gz: 7710e318aa61158a51403aad6dde4c62e3a7f0b546f3a86716a2bb7df57cca42231a2a8deadde80626efc05c9772b43d44e51dad3eeb8d190014a92c7155ca9d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.86.0 (2023-07-19)
5
+ ------------------
6
+
7
+ * Feature - SDK and documentation updates for GetTemplateSummary API (unrecognized resources)
8
+
4
9
  1.85.0 (2023-07-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.85.0
1
+ 1.86.0
@@ -4061,6 +4061,9 @@ module Aws::CloudFormation
4061
4061
  #
4062
4062
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
4063
4063
  #
4064
+ # @option params [Types::TemplateSummaryConfig] :template_summary_config
4065
+ # Specifies options for the `GetTemplateSummary` API action.
4066
+ #
4064
4067
  # @return [Types::GetTemplateSummaryOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4065
4068
  #
4066
4069
  # * {Types::GetTemplateSummaryOutput#parameters #parameters} => Array<Types::ParameterDeclaration>
@@ -4072,6 +4075,7 @@ module Aws::CloudFormation
4072
4075
  # * {Types::GetTemplateSummaryOutput#metadata #metadata} => String
4073
4076
  # * {Types::GetTemplateSummaryOutput#declared_transforms #declared_transforms} => Array<String>
4074
4077
  # * {Types::GetTemplateSummaryOutput#resource_identifier_summaries #resource_identifier_summaries} => Array<Types::ResourceIdentifierSummary>
4078
+ # * {Types::GetTemplateSummaryOutput#warnings #warnings} => Types::Warnings
4075
4079
  #
4076
4080
  # @example Request syntax with placeholder values
4077
4081
  #
@@ -4081,6 +4085,9 @@ module Aws::CloudFormation
4081
4085
  # stack_name: "StackNameOrId",
4082
4086
  # stack_set_name: "StackSetNameOrId",
4083
4087
  # call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
4088
+ # template_summary_config: {
4089
+ # treat_unrecognized_resource_types_as_warnings: false,
4090
+ # },
4084
4091
  # })
4085
4092
  #
4086
4093
  # @example Response structure
@@ -4109,6 +4116,8 @@ module Aws::CloudFormation
4109
4116
  # resp.resource_identifier_summaries[0].logical_resource_ids[0] #=> String
4110
4117
  # resp.resource_identifier_summaries[0].resource_identifiers #=> Array
4111
4118
  # resp.resource_identifier_summaries[0].resource_identifiers[0] #=> String
4119
+ # resp.warnings.unrecognized_resource_types #=> Array
4120
+ # resp.warnings.unrecognized_resource_types[0] #=> String
4112
4121
  #
4113
4122
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/GetTemplateSummary AWS API Documentation
4114
4123
  #
@@ -6996,7 +7005,7 @@ module Aws::CloudFormation
6996
7005
  params: params,
6997
7006
  config: config)
6998
7007
  context[:gem_name] = 'aws-sdk-cloudformation'
6999
- context[:gem_version] = '1.85.0'
7008
+ context[:gem_version] = '1.86.0'
7000
7009
  Seahorse::Client::Request.new(handlers, context)
7001
7010
  end
7002
7011
 
@@ -434,6 +434,7 @@ module Aws::CloudFormation
434
434
  TemplateParameter = Shapes::StructureShape.new(name: 'TemplateParameter')
435
435
  TemplateParameters = Shapes::ListShape.new(name: 'TemplateParameters')
436
436
  TemplateStage = Shapes::StringShape.new(name: 'TemplateStage')
437
+ TemplateSummaryConfig = Shapes::StructureShape.new(name: 'TemplateSummaryConfig')
437
438
  TemplateURL = Shapes::StringShape.new(name: 'TemplateURL')
438
439
  TestTypeInput = Shapes::StructureShape.new(name: 'TestTypeInput')
439
440
  TestTypeOutput = Shapes::StructureShape.new(name: 'TestTypeOutput')
@@ -445,6 +446,7 @@ module Aws::CloudFormation
445
446
  TotalStackInstancesCount = Shapes::IntegerShape.new(name: 'TotalStackInstancesCount')
446
447
  TransformName = Shapes::StringShape.new(name: 'TransformName')
447
448
  TransformsList = Shapes::ListShape.new(name: 'TransformsList')
449
+ TreatUnrecognizedResourceTypesAsWarnings = Shapes::BooleanShape.new(name: 'TreatUnrecognizedResourceTypesAsWarnings')
448
450
  Type = Shapes::StringShape.new(name: 'Type')
449
451
  TypeArn = Shapes::StringShape.new(name: 'TypeArn')
450
452
  TypeConfiguration = Shapes::StringShape.new(name: 'TypeConfiguration')
@@ -486,6 +488,7 @@ module Aws::CloudFormation
486
488
  Version = Shapes::StringShape.new(name: 'Version')
487
489
  VersionBump = Shapes::StringShape.new(name: 'VersionBump')
488
490
  Visibility = Shapes::StringShape.new(name: 'Visibility')
491
+ Warnings = Shapes::StructureShape.new(name: 'Warnings')
489
492
 
490
493
  AccountGateResult.add_member(:status, Shapes::ShapeRef.new(shape: AccountGateStatus, location_name: "Status"))
491
494
  AccountGateResult.add_member(:status_reason, Shapes::ShapeRef.new(shape: AccountGateStatusReason, location_name: "StatusReason"))
@@ -992,6 +995,7 @@ module Aws::CloudFormation
992
995
  GetTemplateSummaryInput.add_member(:stack_name, Shapes::ShapeRef.new(shape: StackNameOrId, location_name: "StackName"))
993
996
  GetTemplateSummaryInput.add_member(:stack_set_name, Shapes::ShapeRef.new(shape: StackSetNameOrId, location_name: "StackSetName"))
994
997
  GetTemplateSummaryInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
998
+ GetTemplateSummaryInput.add_member(:template_summary_config, Shapes::ShapeRef.new(shape: TemplateSummaryConfig, location_name: "TemplateSummaryConfig"))
995
999
  GetTemplateSummaryInput.struct_class = Types::GetTemplateSummaryInput
996
1000
 
997
1001
  GetTemplateSummaryOutput.add_member(:parameters, Shapes::ShapeRef.new(shape: ParameterDeclarations, location_name: "Parameters"))
@@ -1003,6 +1007,7 @@ module Aws::CloudFormation
1003
1007
  GetTemplateSummaryOutput.add_member(:metadata, Shapes::ShapeRef.new(shape: Metadata, location_name: "Metadata"))
1004
1008
  GetTemplateSummaryOutput.add_member(:declared_transforms, Shapes::ShapeRef.new(shape: TransformsList, location_name: "DeclaredTransforms"))
1005
1009
  GetTemplateSummaryOutput.add_member(:resource_identifier_summaries, Shapes::ShapeRef.new(shape: ResourceIdentifierSummaries, location_name: "ResourceIdentifierSummaries"))
1010
+ GetTemplateSummaryOutput.add_member(:warnings, Shapes::ShapeRef.new(shape: Warnings, location_name: "Warnings"))
1006
1011
  GetTemplateSummaryOutput.struct_class = Types::GetTemplateSummaryOutput
1007
1012
 
1008
1013
  ImportStacksToStackSetInput.add_member(:stack_set_name, Shapes::ShapeRef.new(shape: StackSetNameOrId, required: true, location_name: "StackSetName"))
@@ -1678,6 +1683,9 @@ module Aws::CloudFormation
1678
1683
 
1679
1684
  TemplateParameters.member = Shapes::ShapeRef.new(shape: TemplateParameter)
1680
1685
 
1686
+ TemplateSummaryConfig.add_member(:treat_unrecognized_resource_types_as_warnings, Shapes::ShapeRef.new(shape: TreatUnrecognizedResourceTypesAsWarnings, location_name: "TreatUnrecognizedResourceTypesAsWarnings"))
1687
+ TemplateSummaryConfig.struct_class = Types::TemplateSummaryConfig
1688
+
1681
1689
  TestTypeInput.add_member(:arn, Shapes::ShapeRef.new(shape: TypeArn, location_name: "Arn"))
1682
1690
  TestTypeInput.add_member(:type, Shapes::ShapeRef.new(shape: ThirdPartyType, location_name: "Type"))
1683
1691
  TestTypeInput.add_member(:type_name, Shapes::ShapeRef.new(shape: TypeName, location_name: "TypeName"))
@@ -1829,6 +1837,9 @@ module Aws::CloudFormation
1829
1837
  ValidateTemplateOutput.add_member(:declared_transforms, Shapes::ShapeRef.new(shape: TransformsList, location_name: "DeclaredTransforms"))
1830
1838
  ValidateTemplateOutput.struct_class = Types::ValidateTemplateOutput
1831
1839
 
1840
+ Warnings.add_member(:unrecognized_resource_types, Shapes::ShapeRef.new(shape: ResourceTypes, location_name: "UnrecognizedResourceTypes"))
1841
+ Warnings.struct_class = Types::Warnings
1842
+
1832
1843
 
1833
1844
  # @api private
1834
1845
  API = Seahorse::Model::Api.new.tap do |api|
@@ -3972,6 +3972,10 @@ module Aws::CloudFormation
3972
3972
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
3973
3973
  # @return [String]
3974
3974
  #
3975
+ # @!attribute [rw] template_summary_config
3976
+ # Specifies options for the `GetTemplateSummary` API action.
3977
+ # @return [Types::TemplateSummaryConfig]
3978
+ #
3975
3979
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/GetTemplateSummaryInput AWS API Documentation
3976
3980
  #
3977
3981
  class GetTemplateSummaryInput < Struct.new(
@@ -3979,7 +3983,8 @@ module Aws::CloudFormation
3979
3983
  :template_url,
3980
3984
  :stack_name,
3981
3985
  :stack_set_name,
3982
- :call_as)
3986
+ :call_as,
3987
+ :template_summary_config)
3983
3988
  SENSITIVE = []
3984
3989
  include Aws::Structure
3985
3990
  end
@@ -4044,6 +4049,10 @@ module Aws::CloudFormation
4044
4049
  # `AWS::S3::Bucket` resource.
4045
4050
  # @return [Array<Types::ResourceIdentifierSummary>]
4046
4051
  #
4052
+ # @!attribute [rw] warnings
4053
+ # An object containing any warnings returned.
4054
+ # @return [Types::Warnings]
4055
+ #
4047
4056
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/GetTemplateSummaryOutput AWS API Documentation
4048
4057
  #
4049
4058
  class GetTemplateSummaryOutput < Struct.new(
@@ -4055,7 +4064,8 @@ module Aws::CloudFormation
4055
4064
  :version,
4056
4065
  :metadata,
4057
4066
  :declared_transforms,
4058
- :resource_identifier_summaries)
4067
+ :resource_identifier_summaries,
4068
+ :warnings)
4059
4069
  SENSITIVE = []
4060
4070
  include Aws::Structure
4061
4071
  end
@@ -8465,6 +8475,22 @@ module Aws::CloudFormation
8465
8475
  include Aws::Structure
8466
8476
  end
8467
8477
 
8478
+ # Options for the `GetTemplateSummary` API action.
8479
+ #
8480
+ # @!attribute [rw] treat_unrecognized_resource_types_as_warnings
8481
+ # If set to `True`, any unrecognized resource types generate warnings
8482
+ # and not an error. Any unrecognized resource types are returned in
8483
+ # the `Warnings` output parameter.
8484
+ # @return [Boolean]
8485
+ #
8486
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/TemplateSummaryConfig AWS API Documentation
8487
+ #
8488
+ class TemplateSummaryConfig < Struct.new(
8489
+ :treat_unrecognized_resource_types_as_warnings)
8490
+ SENSITIVE = []
8491
+ include Aws::Structure
8492
+ end
8493
+
8468
8494
  # @!attribute [rw] arn
8469
8495
  # The Amazon Resource Name (ARN) of the extension.
8470
8496
  #
@@ -9909,5 +9935,22 @@ module Aws::CloudFormation
9909
9935
  include Aws::Structure
9910
9936
  end
9911
9937
 
9938
+ # Contains any warnings returned by the `GetTemplateSummary` API action.
9939
+ #
9940
+ # @!attribute [rw] unrecognized_resource_types
9941
+ # A list of all of the unrecognized resource types. This is only
9942
+ # returned if the `TemplateSummaryConfig` parameter has the
9943
+ # `TreatUnrecognizedResourceTypesAsWarning` configuration set to
9944
+ # `True`.
9945
+ # @return [Array<String>]
9946
+ #
9947
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/Warnings AWS API Documentation
9948
+ #
9949
+ class Warnings < Struct.new(
9950
+ :unrecognized_resource_types)
9951
+ SENSITIVE = []
9952
+ include Aws::Structure
9953
+ end
9954
+
9912
9955
  end
9913
9956
  end
@@ -57,6 +57,6 @@ require_relative 'aws-sdk-cloudformation/customizations'
57
57
  # @!group service
58
58
  module Aws::CloudFormation
59
59
 
60
- GEM_VERSION = '1.85.0'
60
+ GEM_VERSION = '1.86.0'
61
61
 
62
62
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudformation
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.85.0
4
+ version: 1.86.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: 2023-07-11 00:00:00.000000000 Z
11
+ date: 2023-07-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core