aws-sdk-servicecatalog 1.39.0 → 1.40.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: b67147f46ab0f14a4d89422bf6ba666eda2531299b8504be04021b1d90047e3f
4
- data.tar.gz: fb8b82d9cf4aa6128e3cff59fea9772104222fdf91e0addf93b48f037d87c908
3
+ metadata.gz: ccf693e027d8c55e01e76333bc7f60cb1d2f39dbfd7766c57451dfc93489afd6
4
+ data.tar.gz: 6eee43c26ecd85a3ee33fc2779bbd04fcb6014f14617819082d0f7273d727f9d
5
5
  SHA512:
6
- metadata.gz: 5da7d92f0a8f51614c4921e798c4c662fd08df61716095f86c2689b0b72851ea04d01b68eb66409fd5a3f1549bd6faf2ae2376f222dc4168fb61794597d16a35
7
- data.tar.gz: e3ce5919e01d0140494903566ba23aba4d2aaa2206c443fff1b4511ed9c9784fa07ef2ea1def56cf3a0cdd56d228ec8781b9565fd0bdef3f180dfcf4e0a933d3
6
+ metadata.gz: f5c68cfb07c968b301ae90a2571dea31231c97bd2541f6c653fe7222d580345c6e508d046bc0d8417341042fdb8f35e2d14755fc7bb9deee499b0a7808966adb
7
+ data.tar.gz: 9c1b873d2d5d2cf00bbc7c1a0e9ed473d77d1cb5790e5717fa3edf6548894f5be41f4f6da875a19c59c890e6a425c4e26889c044bf5c43e75b08e42da517fb0b
@@ -45,6 +45,6 @@ require_relative 'aws-sdk-servicecatalog/customizations'
45
45
  # @service
46
46
  module Aws::ServiceCatalog
47
47
 
48
- GEM_VERSION = '1.39.0'
48
+ GEM_VERSION = '1.40.0'
49
49
 
50
50
  end
@@ -1331,8 +1331,11 @@ module Aws::ServiceCatalog
1331
1331
  #
1332
1332
  # Name
1333
1333
  #
1334
- # : The name of the AWS Systems Manager Document. For example,
1335
- # `AWS-RestartEC2Instance`.
1334
+ # : The name of the AWS Systems Manager document (SSM document). For
1335
+ # example, `AWS-RestartEC2Instance`.
1336
+ #
1337
+ # If you are using a shared SSM document, you must provide the ARN
1338
+ # instead of the name.
1336
1339
  #
1337
1340
  # Version
1338
1341
  #
@@ -1935,20 +1938,25 @@ module Aws::ServiceCatalog
1935
1938
  #
1936
1939
  # * `zh` - Chinese
1937
1940
  #
1938
- # @option params [required, String] :id
1941
+ # @option params [String] :id
1939
1942
  # The product identifier.
1940
1943
  #
1944
+ # @option params [String] :name
1945
+ # The product name.
1946
+ #
1941
1947
  # @return [Types::DescribeProductOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1942
1948
  #
1943
1949
  # * {Types::DescribeProductOutput#product_view_summary #product_view_summary} => Types::ProductViewSummary
1944
1950
  # * {Types::DescribeProductOutput#provisioning_artifacts #provisioning_artifacts} => Array<Types::ProvisioningArtifact>
1945
1951
  # * {Types::DescribeProductOutput#budgets #budgets} => Array<Types::BudgetDetail>
1952
+ # * {Types::DescribeProductOutput#launch_paths #launch_paths} => Array<Types::LaunchPath>
1946
1953
  #
1947
1954
  # @example Request syntax with placeholder values
1948
1955
  #
1949
1956
  # resp = client.describe_product({
1950
1957
  # accept_language: "AcceptLanguage",
1951
- # id: "Id", # required
1958
+ # id: "Id",
1959
+ # name: "ProductViewName",
1952
1960
  # })
1953
1961
  #
1954
1962
  # @example Response structure
@@ -1972,6 +1980,9 @@ module Aws::ServiceCatalog
1972
1980
  # resp.provisioning_artifacts[0].guidance #=> String, one of "DEFAULT", "DEPRECATED"
1973
1981
  # resp.budgets #=> Array
1974
1982
  # resp.budgets[0].budget_name #=> String
1983
+ # resp.launch_paths #=> Array
1984
+ # resp.launch_paths[0].id #=> String
1985
+ # resp.launch_paths[0].name #=> String
1975
1986
  #
1976
1987
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProduct AWS API Documentation
1977
1988
  #
@@ -1994,9 +2005,12 @@ module Aws::ServiceCatalog
1994
2005
  #
1995
2006
  # * `zh` - Chinese
1996
2007
  #
1997
- # @option params [required, String] :id
2008
+ # @option params [String] :id
1998
2009
  # The product identifier.
1999
2010
  #
2011
+ # @option params [String] :name
2012
+ # The product name.
2013
+ #
2000
2014
  # @return [Types::DescribeProductAsAdminOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2001
2015
  #
2002
2016
  # * {Types::DescribeProductAsAdminOutput#product_view_detail #product_view_detail} => Types::ProductViewDetail
@@ -2009,7 +2023,8 @@ module Aws::ServiceCatalog
2009
2023
  #
2010
2024
  # resp = client.describe_product_as_admin({
2011
2025
  # accept_language: "AcceptLanguage",
2012
- # id: "Id", # required
2026
+ # id: "Id",
2027
+ # name: "ProductViewName",
2013
2028
  # })
2014
2029
  #
2015
2030
  # @example Response structure
@@ -2257,12 +2272,18 @@ module Aws::ServiceCatalog
2257
2272
  #
2258
2273
  # * `zh` - Chinese
2259
2274
  #
2260
- # @option params [required, String] :provisioning_artifact_id
2275
+ # @option params [String] :provisioning_artifact_id
2261
2276
  # The identifier of the provisioning artifact.
2262
2277
  #
2263
- # @option params [required, String] :product_id
2278
+ # @option params [String] :product_id
2264
2279
  # The product identifier.
2265
2280
  #
2281
+ # @option params [String] :provisioning_artifact_name
2282
+ # The provisioning artifact name.
2283
+ #
2284
+ # @option params [String] :product_name
2285
+ # The product name.
2286
+ #
2266
2287
  # @option params [Boolean] :verbose
2267
2288
  # Indicates whether a verbose level of detail is enabled.
2268
2289
  #
@@ -2276,8 +2297,10 @@ module Aws::ServiceCatalog
2276
2297
  #
2277
2298
  # resp = client.describe_provisioning_artifact({
2278
2299
  # accept_language: "AcceptLanguage",
2279
- # provisioning_artifact_id: "Id", # required
2280
- # product_id: "Id", # required
2300
+ # provisioning_artifact_id: "Id",
2301
+ # product_id: "Id",
2302
+ # provisioning_artifact_name: "ProvisioningArtifactName",
2303
+ # product_name: "ProductViewName",
2281
2304
  # verbose: false,
2282
2305
  # })
2283
2306
  #
@@ -5025,9 +5048,9 @@ module Aws::ServiceCatalog
5025
5048
  # @option params [required, Hash<String,String>] :provisioned_product_properties
5026
5049
  # A map that contains the provisioned product properties to be updated.
5027
5050
  #
5028
- # The `OWNER` key only accepts user ARNs. The owner is the user that is
5029
- # allowed to see, update, terminate, and execute service actions in the
5030
- # provisioned product.
5051
+ # The `OWNER` key accepts user ARNs and role ARNs. The owner is the user
5052
+ # that is allowed to see, update, terminate, and execute service actions
5053
+ # in the provisioned product.
5031
5054
  #
5032
5055
  # The administrator can change the owner of a provisioned product to
5033
5056
  # another IAM user within the same account. Both end user owners and
@@ -5282,7 +5305,7 @@ module Aws::ServiceCatalog
5282
5305
  params: params,
5283
5306
  config: config)
5284
5307
  context[:gem_name] = 'aws-sdk-servicecatalog'
5285
- context[:gem_version] = '1.39.0'
5308
+ context[:gem_version] = '1.40.0'
5286
5309
  Seahorse::Client::Request.new(handlers, context)
5287
5310
  end
5288
5311
 
@@ -169,8 +169,10 @@ module Aws::ServiceCatalog
169
169
  InvalidParametersException = Shapes::StructureShape.new(name: 'InvalidParametersException')
170
170
  InvalidStateException = Shapes::StructureShape.new(name: 'InvalidStateException')
171
171
  LastRequestId = Shapes::StringShape.new(name: 'LastRequestId')
172
+ LaunchPath = Shapes::StructureShape.new(name: 'LaunchPath')
172
173
  LaunchPathSummaries = Shapes::ListShape.new(name: 'LaunchPathSummaries')
173
174
  LaunchPathSummary = Shapes::StructureShape.new(name: 'LaunchPathSummary')
175
+ LaunchPaths = Shapes::ListShape.new(name: 'LaunchPaths')
174
176
  LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
175
177
  ListAcceptedPortfolioSharesInput = Shapes::StructureShape.new(name: 'ListAcceptedPortfolioSharesInput')
176
178
  ListAcceptedPortfolioSharesOutput = Shapes::StructureShape.new(name: 'ListAcceptedPortfolioSharesOutput')
@@ -746,7 +748,8 @@ module Aws::ServiceCatalog
746
748
  DescribePortfolioShareStatusOutput.struct_class = Types::DescribePortfolioShareStatusOutput
747
749
 
748
750
  DescribeProductAsAdminInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
749
- DescribeProductAsAdminInput.add_member(:id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "Id"))
751
+ DescribeProductAsAdminInput.add_member(:id, Shapes::ShapeRef.new(shape: Id, location_name: "Id"))
752
+ DescribeProductAsAdminInput.add_member(:name, Shapes::ShapeRef.new(shape: ProductViewName, location_name: "Name"))
750
753
  DescribeProductAsAdminInput.struct_class = Types::DescribeProductAsAdminInput
751
754
 
752
755
  DescribeProductAsAdminOutput.add_member(:product_view_detail, Shapes::ShapeRef.new(shape: ProductViewDetail, location_name: "ProductViewDetail"))
@@ -757,12 +760,14 @@ module Aws::ServiceCatalog
757
760
  DescribeProductAsAdminOutput.struct_class = Types::DescribeProductAsAdminOutput
758
761
 
759
762
  DescribeProductInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
760
- DescribeProductInput.add_member(:id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "Id"))
763
+ DescribeProductInput.add_member(:id, Shapes::ShapeRef.new(shape: Id, location_name: "Id"))
764
+ DescribeProductInput.add_member(:name, Shapes::ShapeRef.new(shape: ProductViewName, location_name: "Name"))
761
765
  DescribeProductInput.struct_class = Types::DescribeProductInput
762
766
 
763
767
  DescribeProductOutput.add_member(:product_view_summary, Shapes::ShapeRef.new(shape: ProductViewSummary, location_name: "ProductViewSummary"))
764
768
  DescribeProductOutput.add_member(:provisioning_artifacts, Shapes::ShapeRef.new(shape: ProvisioningArtifacts, location_name: "ProvisioningArtifacts"))
765
769
  DescribeProductOutput.add_member(:budgets, Shapes::ShapeRef.new(shape: Budgets, location_name: "Budgets"))
770
+ DescribeProductOutput.add_member(:launch_paths, Shapes::ShapeRef.new(shape: LaunchPaths, location_name: "LaunchPaths"))
766
771
  DescribeProductOutput.struct_class = Types::DescribeProductOutput
767
772
 
768
773
  DescribeProductViewInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
@@ -793,8 +798,10 @@ module Aws::ServiceCatalog
793
798
  DescribeProvisionedProductPlanOutput.struct_class = Types::DescribeProvisionedProductPlanOutput
794
799
 
795
800
  DescribeProvisioningArtifactInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
796
- DescribeProvisioningArtifactInput.add_member(:provisioning_artifact_id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "ProvisioningArtifactId"))
797
- DescribeProvisioningArtifactInput.add_member(:product_id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "ProductId"))
801
+ DescribeProvisioningArtifactInput.add_member(:provisioning_artifact_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProvisioningArtifactId"))
802
+ DescribeProvisioningArtifactInput.add_member(:product_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProductId"))
803
+ DescribeProvisioningArtifactInput.add_member(:provisioning_artifact_name, Shapes::ShapeRef.new(shape: ProvisioningArtifactName, location_name: "ProvisioningArtifactName"))
804
+ DescribeProvisioningArtifactInput.add_member(:product_name, Shapes::ShapeRef.new(shape: ProductViewName, location_name: "ProductName"))
798
805
  DescribeProvisioningArtifactInput.add_member(:verbose, Shapes::ShapeRef.new(shape: Verbose, location_name: "Verbose"))
799
806
  DescribeProvisioningArtifactInput.struct_class = Types::DescribeProvisioningArtifactInput
800
807
 
@@ -940,6 +947,10 @@ module Aws::ServiceCatalog
940
947
 
941
948
  InvalidStateException.struct_class = Types::InvalidStateException
942
949
 
950
+ LaunchPath.add_member(:id, Shapes::ShapeRef.new(shape: Id, location_name: "Id"))
951
+ LaunchPath.add_member(:name, Shapes::ShapeRef.new(shape: PortfolioName, location_name: "Name"))
952
+ LaunchPath.struct_class = Types::LaunchPath
953
+
943
954
  LaunchPathSummaries.member = Shapes::ShapeRef.new(shape: LaunchPathSummary)
944
955
 
945
956
  LaunchPathSummary.add_member(:id, Shapes::ShapeRef.new(shape: Id, location_name: "Id"))
@@ -948,6 +959,8 @@ module Aws::ServiceCatalog
948
959
  LaunchPathSummary.add_member(:name, Shapes::ShapeRef.new(shape: PortfolioName, location_name: "Name"))
949
960
  LaunchPathSummary.struct_class = Types::LaunchPathSummary
950
961
 
962
+ LaunchPaths.member = Shapes::ShapeRef.new(shape: LaunchPath)
963
+
951
964
  LimitExceededException.struct_class = Types::LimitExceededException
952
965
 
953
966
  ListAcceptedPortfolioSharesInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
@@ -2055,6 +2068,7 @@ module Aws::ServiceCatalog
2055
2068
  o.input = Shapes::ShapeRef.new(shape: DescribeProductAsAdminInput)
2056
2069
  o.output = Shapes::ShapeRef.new(shape: DescribeProductAsAdminOutput)
2057
2070
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2071
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParametersException)
2058
2072
  end)
2059
2073
 
2060
2074
  api.add_operation(:describe_product_view, Seahorse::Model::Operation.new.tap do |o|
@@ -2093,6 +2107,7 @@ module Aws::ServiceCatalog
2093
2107
  o.input = Shapes::ShapeRef.new(shape: DescribeProvisioningArtifactInput)
2094
2108
  o.output = Shapes::ShapeRef.new(shape: DescribeProvisioningArtifactOutput)
2095
2109
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2110
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParametersException)
2096
2111
  end)
2097
2112
 
2098
2113
  api.add_operation(:describe_provisioning_parameters, Seahorse::Model::Operation.new.tap do |o|
@@ -1260,8 +1260,11 @@ module Aws::ServiceCatalog
1260
1260
  #
1261
1261
  # Name
1262
1262
  #
1263
- # : The name of the AWS Systems Manager Document. For example,
1264
- # `AWS-RestartEC2Instance`.
1263
+ # : The name of the AWS Systems Manager document (SSM document). For
1264
+ # example, `AWS-RestartEC2Instance`.
1265
+ #
1266
+ # If you are using a shared SSM document, you must provide the ARN
1267
+ # instead of the name.
1265
1268
  #
1266
1269
  # Version
1267
1270
  #
@@ -1880,7 +1883,8 @@ module Aws::ServiceCatalog
1880
1883
  #
1881
1884
  # {
1882
1885
  # accept_language: "AcceptLanguage",
1883
- # id: "Id", # required
1886
+ # id: "Id",
1887
+ # name: "ProductViewName",
1884
1888
  # }
1885
1889
  #
1886
1890
  # @!attribute [rw] accept_language
@@ -1897,11 +1901,16 @@ module Aws::ServiceCatalog
1897
1901
  # The product identifier.
1898
1902
  # @return [String]
1899
1903
  #
1904
+ # @!attribute [rw] name
1905
+ # The product name.
1906
+ # @return [String]
1907
+ #
1900
1908
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProductAsAdminInput AWS API Documentation
1901
1909
  #
1902
1910
  class DescribeProductAsAdminInput < Struct.new(
1903
1911
  :accept_language,
1904
- :id)
1912
+ :id,
1913
+ :name)
1905
1914
  include Aws::Structure
1906
1915
  end
1907
1916
 
@@ -1942,7 +1951,8 @@ module Aws::ServiceCatalog
1942
1951
  #
1943
1952
  # {
1944
1953
  # accept_language: "AcceptLanguage",
1945
- # id: "Id", # required
1954
+ # id: "Id",
1955
+ # name: "ProductViewName",
1946
1956
  # }
1947
1957
  #
1948
1958
  # @!attribute [rw] accept_language
@@ -1959,11 +1969,16 @@ module Aws::ServiceCatalog
1959
1969
  # The product identifier.
1960
1970
  # @return [String]
1961
1971
  #
1972
+ # @!attribute [rw] name
1973
+ # The product name.
1974
+ # @return [String]
1975
+ #
1962
1976
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProductInput AWS API Documentation
1963
1977
  #
1964
1978
  class DescribeProductInput < Struct.new(
1965
1979
  :accept_language,
1966
- :id)
1980
+ :id,
1981
+ :name)
1967
1982
  include Aws::Structure
1968
1983
  end
1969
1984
 
@@ -1980,12 +1995,17 @@ module Aws::ServiceCatalog
1980
1995
  # Information about the associated budgets.
1981
1996
  # @return [Array<Types::BudgetDetail>]
1982
1997
  #
1998
+ # @!attribute [rw] launch_paths
1999
+ # Information about the associated launch paths.
2000
+ # @return [Array<Types::LaunchPath>]
2001
+ #
1983
2002
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProductOutput AWS API Documentation
1984
2003
  #
1985
2004
  class DescribeProductOutput < Struct.new(
1986
2005
  :product_view_summary,
1987
2006
  :provisioning_artifacts,
1988
- :budgets)
2007
+ :budgets,
2008
+ :launch_paths)
1989
2009
  include Aws::Structure
1990
2010
  end
1991
2011
 
@@ -2153,8 +2173,10 @@ module Aws::ServiceCatalog
2153
2173
  #
2154
2174
  # {
2155
2175
  # accept_language: "AcceptLanguage",
2156
- # provisioning_artifact_id: "Id", # required
2157
- # product_id: "Id", # required
2176
+ # provisioning_artifact_id: "Id",
2177
+ # product_id: "Id",
2178
+ # provisioning_artifact_name: "ProvisioningArtifactName",
2179
+ # product_name: "ProductViewName",
2158
2180
  # verbose: false,
2159
2181
  # }
2160
2182
  #
@@ -2176,6 +2198,14 @@ module Aws::ServiceCatalog
2176
2198
  # The product identifier.
2177
2199
  # @return [String]
2178
2200
  #
2201
+ # @!attribute [rw] provisioning_artifact_name
2202
+ # The provisioning artifact name.
2203
+ # @return [String]
2204
+ #
2205
+ # @!attribute [rw] product_name
2206
+ # The product name.
2207
+ # @return [String]
2208
+ #
2179
2209
  # @!attribute [rw] verbose
2180
2210
  # Indicates whether a verbose level of detail is enabled.
2181
2211
  # @return [Boolean]
@@ -2186,6 +2216,8 @@ module Aws::ServiceCatalog
2186
2216
  :accept_language,
2187
2217
  :provisioning_artifact_id,
2188
2218
  :product_id,
2219
+ :provisioning_artifact_name,
2220
+ :product_name,
2189
2221
  :verbose)
2190
2222
  include Aws::Structure
2191
2223
  end
@@ -2900,6 +2932,24 @@ module Aws::ServiceCatalog
2900
2932
  #
2901
2933
  class InvalidStateException < Aws::EmptyStructure; end
2902
2934
 
2935
+ # A launch path object.
2936
+ #
2937
+ # @!attribute [rw] id
2938
+ # The identifier of the launch path.
2939
+ # @return [String]
2940
+ #
2941
+ # @!attribute [rw] name
2942
+ # The name of the launch path.
2943
+ # @return [String]
2944
+ #
2945
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/LaunchPath AWS API Documentation
2946
+ #
2947
+ class LaunchPath < Struct.new(
2948
+ :id,
2949
+ :name)
2950
+ include Aws::Structure
2951
+ end
2952
+
2903
2953
  # Summary information about a product path for a user.
2904
2954
  #
2905
2955
  # @!attribute [rw] id
@@ -6690,9 +6740,9 @@ module Aws::ServiceCatalog
6690
6740
  # A map that contains the provisioned product properties to be
6691
6741
  # updated.
6692
6742
  #
6693
- # The `OWNER` key only accepts user ARNs. The owner is the user that
6694
- # is allowed to see, update, terminate, and execute service actions in
6695
- # the provisioned product.
6743
+ # The `OWNER` key accepts user ARNs and role ARNs. The owner is the
6744
+ # user that is allowed to see, update, terminate, and execute service
6745
+ # actions in the provisioned product.
6696
6746
  #
6697
6747
  # The administrator can change the owner of a provisioned product to
6698
6748
  # another IAM user within the same account. Both end user owners and
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.39.0
4
+ version: 1.40.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: 2020-05-28 00:00:00.000000000 Z
11
+ date: 2020-06-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core