aws-sdk-servicecatalog 1.69.0 → 1.70.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: a81977b082116919261761d2ecd71b3078a811bb309a12b173ff6a024adb35f5
4
- data.tar.gz: e93742c872aa09baf5212e23b99e28d387400407169072aafc681d3860f96b6a
3
+ metadata.gz: bfa8e78685e711086dfee10855e082731c34b5e17b03bbf8e0c28b6436ade01c
4
+ data.tar.gz: 6322bc4a0745da42736add0c4a957806ae9db7fa3167d94bd5b270aad17e18fe
5
5
  SHA512:
6
- metadata.gz: 1efa2cf751eb7b0fb93c1cb10aebcee3f929a79697d3df13442459245c3e2d71bc2ded50639d545fa98a97618f3cbe7eb89da0b787eb791b10a115d6a8400055
7
- data.tar.gz: 119a446a4a405e2a9b7dedde60294812d4f8768d2dbf5d1f10fec2c4cca2cafc4e376db43e399918c5040ddd1505af771c57dea6002240f990af861e209e65b3
6
+ metadata.gz: b68b38024d7554d59de97f4fef93c20a1cc195f1d2a544c9afc09c3442029505803a98acf2831a757b1520d720beeac5235a0b2a8443a14a9d0468f4e1e4a2e0
7
+ data.tar.gz: 648701aed10891aa77ce3c9791e3e5c97ef181e0c784e40b84210542233d007918a9a05d4cd9ef981ce58f035a6269426dec209cb0bedacf487bd1c8d3173544
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.70.0 (2022-04-04)
5
+ ------------------
6
+
7
+ * Feature - This release adds ProvisioningArtifictOutputKeys to DescribeProvisioningParameters to reference the outputs of a Provisioned Product and deprecates ProvisioningArtifactOutputs.
8
+
4
9
  1.69.0 (2022-02-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.69.0
1
+ 1.70.0
@@ -2574,6 +2574,7 @@ module Aws::ServiceCatalog
2574
2574
  # * {Types::DescribeProvisioningParametersOutput#tag_options #tag_options} => Array<Types::TagOptionSummary>
2575
2575
  # * {Types::DescribeProvisioningParametersOutput#provisioning_artifact_preferences #provisioning_artifact_preferences} => Types::ProvisioningArtifactPreferences
2576
2576
  # * {Types::DescribeProvisioningParametersOutput#provisioning_artifact_outputs #provisioning_artifact_outputs} => Array<Types::ProvisioningArtifactOutput>
2577
+ # * {Types::DescribeProvisioningParametersOutput#provisioning_artifact_output_keys #provisioning_artifact_output_keys} => Array<Types::ProvisioningArtifactOutput>
2577
2578
  #
2578
2579
  # @example Request syntax with placeholder values
2579
2580
  #
@@ -2620,6 +2621,9 @@ module Aws::ServiceCatalog
2620
2621
  # resp.provisioning_artifact_outputs #=> Array
2621
2622
  # resp.provisioning_artifact_outputs[0].key #=> String
2622
2623
  # resp.provisioning_artifact_outputs[0].description #=> String
2624
+ # resp.provisioning_artifact_output_keys #=> Array
2625
+ # resp.provisioning_artifact_output_keys[0].key #=> String
2626
+ # resp.provisioning_artifact_output_keys[0].description #=> String
2623
2627
  #
2624
2628
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisioningParameters AWS API Documentation
2625
2629
  #
@@ -5852,7 +5856,7 @@ module Aws::ServiceCatalog
5852
5856
  params: params,
5853
5857
  config: config)
5854
5858
  context[:gem_name] = 'aws-sdk-servicecatalog'
5855
- context[:gem_version] = '1.69.0'
5859
+ context[:gem_version] = '1.70.0'
5856
5860
  Seahorse::Client::Request.new(handlers, context)
5857
5861
  end
5858
5862
 
@@ -861,7 +861,8 @@ module Aws::ServiceCatalog
861
861
  DescribeProvisioningParametersOutput.add_member(:usage_instructions, Shapes::ShapeRef.new(shape: UsageInstructions, location_name: "UsageInstructions"))
862
862
  DescribeProvisioningParametersOutput.add_member(:tag_options, Shapes::ShapeRef.new(shape: TagOptionSummaries, location_name: "TagOptions"))
863
863
  DescribeProvisioningParametersOutput.add_member(:provisioning_artifact_preferences, Shapes::ShapeRef.new(shape: ProvisioningArtifactPreferences, location_name: "ProvisioningArtifactPreferences"))
864
- DescribeProvisioningParametersOutput.add_member(:provisioning_artifact_outputs, Shapes::ShapeRef.new(shape: ProvisioningArtifactOutputs, location_name: "ProvisioningArtifactOutputs"))
864
+ DescribeProvisioningParametersOutput.add_member(:provisioning_artifact_outputs, Shapes::ShapeRef.new(shape: ProvisioningArtifactOutputs, deprecated: true, location_name: "ProvisioningArtifactOutputs", metadata: {"deprecatedMessage"=>"This property is deprecated and returns the Id and Description of the Provisioning Artifact. Use ProvisioningArtifactOutputKeys instead to get the Keys and Descriptions of the outputs."}))
865
+ DescribeProvisioningParametersOutput.add_member(:provisioning_artifact_output_keys, Shapes::ShapeRef.new(shape: ProvisioningArtifactOutputs, location_name: "ProvisioningArtifactOutputKeys"))
865
866
  DescribeProvisioningParametersOutput.struct_class = Types::DescribeProvisioningParametersOutput
866
867
 
867
868
  DescribeRecordInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
@@ -2529,6 +2529,12 @@ module Aws::ServiceCatalog
2529
2529
  # The output of the provisioning artifact.
2530
2530
  # @return [Array<Types::ProvisioningArtifactOutput>]
2531
2531
  #
2532
+ # @!attribute [rw] provisioning_artifact_output_keys
2533
+ # A list of the keys and descriptions of the outputs. These outputs
2534
+ # can be referenced from a provisioned product launched from this
2535
+ # provisioning artifact.
2536
+ # @return [Array<Types::ProvisioningArtifactOutput>]
2537
+ #
2532
2538
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisioningParametersOutput AWS API Documentation
2533
2539
  #
2534
2540
  class DescribeProvisioningParametersOutput < Struct.new(
@@ -2537,7 +2543,8 @@ module Aws::ServiceCatalog
2537
2543
  :usage_instructions,
2538
2544
  :tag_options,
2539
2545
  :provisioning_artifact_preferences,
2540
- :provisioning_artifact_outputs)
2546
+ :provisioning_artifact_outputs,
2547
+ :provisioning_artifact_output_keys)
2541
2548
  SENSITIVE = []
2542
2549
  include Aws::Structure
2543
2550
  end
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-servicecatalog/customizations'
48
48
  # @!group service
49
49
  module Aws::ServiceCatalog
50
50
 
51
- GEM_VERSION = '1.69.0'
51
+ GEM_VERSION = '1.70.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-servicecatalog
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.69.0
4
+ version: 1.70.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-02-24 00:00:00.000000000 Z
11
+ date: 2022-04-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core