aws-sdk-servicecatalog 1.21.0 → 1.22.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
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 960c9f0916941b700ec5e2a149e180b4ba2c2c9d
|
|
4
|
+
data.tar.gz: 97413752dd1bcbb7484fe19e803e9c95791a6006
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 760ca46570930555d5bbc2db671e7e15674ad55d9163aef6eeb7e9593edf90a993aac1e60fb841c3b31bb44a419ee2c601f570dabd5ee2d96d8499f792cf13c8
|
|
7
|
+
data.tar.gz: a6047b18e8fa5034097c5525dbf66dbf5815afc18ec8e21623e552ede4ff6ea6e69be078d5a5ae1faaabac8bc408ef9b3baf330270980e81b225d25a6c6c1cbc
|
|
@@ -4334,6 +4334,62 @@ module Aws::ServiceCatalog
|
|
|
4334
4334
|
# @option params [String] :description
|
|
4335
4335
|
# The updated description of the constraint.
|
|
4336
4336
|
#
|
|
4337
|
+
# @option params [String] :parameters
|
|
4338
|
+
# The constraint parameters, in JSON format. The syntax depends on the
|
|
4339
|
+
# constraint type as follows:
|
|
4340
|
+
#
|
|
4341
|
+
# LAUNCH
|
|
4342
|
+
#
|
|
4343
|
+
# : Specify the `RoleArn` property as follows:
|
|
4344
|
+
#
|
|
4345
|
+
# `\{"RoleArn" : "arn:aws:iam::123456789012:role/LaunchRole"\}`
|
|
4346
|
+
#
|
|
4347
|
+
# You cannot have both a `LAUNCH` and a `STACKSET` constraint.
|
|
4348
|
+
#
|
|
4349
|
+
# You also cannot have more than one `LAUNCH` constraint on a product
|
|
4350
|
+
# and portfolio.
|
|
4351
|
+
#
|
|
4352
|
+
# NOTIFICATION
|
|
4353
|
+
#
|
|
4354
|
+
# : Specify the `NotificationArns` property as follows:
|
|
4355
|
+
#
|
|
4356
|
+
# `\{"NotificationArns" :
|
|
4357
|
+
# ["arn:aws:sns:us-east-1:123456789012:Topic"]\}`
|
|
4358
|
+
#
|
|
4359
|
+
# RESOURCE\_UPDATE
|
|
4360
|
+
#
|
|
4361
|
+
# : Specify the `TagUpdatesOnProvisionedProduct` property as follows:
|
|
4362
|
+
#
|
|
4363
|
+
# `\{"Version":"2.0","Properties":\{"TagUpdateOnProvisionedProduct":"String"\}\}`
|
|
4364
|
+
#
|
|
4365
|
+
# The `TagUpdatesOnProvisionedProduct` property accepts a string value
|
|
4366
|
+
# of `ALLOWED` or `NOT_ALLOWED`.
|
|
4367
|
+
#
|
|
4368
|
+
# STACKSET
|
|
4369
|
+
#
|
|
4370
|
+
# : Specify the `Parameters` property as follows:
|
|
4371
|
+
#
|
|
4372
|
+
# `\{"Version": "String", "Properties": \{"AccountList": [ "String" ],
|
|
4373
|
+
# "RegionList": [ "String" ], "AdminRole": "String", "ExecutionRole":
|
|
4374
|
+
# "String"\}\}`
|
|
4375
|
+
#
|
|
4376
|
+
# You cannot have both a `LAUNCH` and a `STACKSET` constraint.
|
|
4377
|
+
#
|
|
4378
|
+
# You also cannot have more than one `STACKSET` constraint on a
|
|
4379
|
+
# product and portfolio.
|
|
4380
|
+
#
|
|
4381
|
+
# Products with a `STACKSET` constraint will launch an AWS
|
|
4382
|
+
# CloudFormation stack set.
|
|
4383
|
+
#
|
|
4384
|
+
# TEMPLATE
|
|
4385
|
+
#
|
|
4386
|
+
# : Specify the `Rules` property. For more information, see [Template
|
|
4387
|
+
# Constraint Rules][1].
|
|
4388
|
+
#
|
|
4389
|
+
#
|
|
4390
|
+
#
|
|
4391
|
+
# [1]: http://docs.aws.amazon.com/servicecatalog/latest/adminguide/reference-template_constraint_rules.html
|
|
4392
|
+
#
|
|
4337
4393
|
# @return [Types::UpdateConstraintOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4338
4394
|
#
|
|
4339
4395
|
# * {Types::UpdateConstraintOutput#constraint_detail #constraint_detail} => Types::ConstraintDetail
|
|
@@ -4346,6 +4402,7 @@ module Aws::ServiceCatalog
|
|
|
4346
4402
|
# accept_language: "AcceptLanguage",
|
|
4347
4403
|
# id: "Id", # required
|
|
4348
4404
|
# description: "ConstraintDescription",
|
|
4405
|
+
# parameters: "ConstraintParameters",
|
|
4349
4406
|
# })
|
|
4350
4407
|
#
|
|
4351
4408
|
# @example Response structure
|
|
@@ -4836,7 +4893,7 @@ module Aws::ServiceCatalog
|
|
|
4836
4893
|
params: params,
|
|
4837
4894
|
config: config)
|
|
4838
4895
|
context[:gem_name] = 'aws-sdk-servicecatalog'
|
|
4839
|
-
context[:gem_version] = '1.
|
|
4896
|
+
context[:gem_version] = '1.22.0'
|
|
4840
4897
|
Seahorse::Client::Request.new(handlers, context)
|
|
4841
4898
|
end
|
|
4842
4899
|
|
|
@@ -1503,6 +1503,7 @@ module Aws::ServiceCatalog
|
|
|
1503
1503
|
UpdateConstraintInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
|
|
1504
1504
|
UpdateConstraintInput.add_member(:id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "Id"))
|
|
1505
1505
|
UpdateConstraintInput.add_member(:description, Shapes::ShapeRef.new(shape: ConstraintDescription, location_name: "Description"))
|
|
1506
|
+
UpdateConstraintInput.add_member(:parameters, Shapes::ShapeRef.new(shape: ConstraintParameters, location_name: "Parameters"))
|
|
1506
1507
|
UpdateConstraintInput.struct_class = Types::UpdateConstraintInput
|
|
1507
1508
|
|
|
1508
1509
|
UpdateConstraintOutput.add_member(:constraint_detail, Shapes::ShapeRef.new(shape: ConstraintDetail, location_name: "ConstraintDetail"))
|
|
@@ -5908,6 +5908,7 @@ module Aws::ServiceCatalog
|
|
|
5908
5908
|
# accept_language: "AcceptLanguage",
|
|
5909
5909
|
# id: "Id", # required
|
|
5910
5910
|
# description: "ConstraintDescription",
|
|
5911
|
+
# parameters: "ConstraintParameters",
|
|
5911
5912
|
# }
|
|
5912
5913
|
#
|
|
5913
5914
|
# @!attribute [rw] accept_language
|
|
@@ -5928,12 +5929,70 @@ module Aws::ServiceCatalog
|
|
|
5928
5929
|
# The updated description of the constraint.
|
|
5929
5930
|
# @return [String]
|
|
5930
5931
|
#
|
|
5932
|
+
# @!attribute [rw] parameters
|
|
5933
|
+
# The constraint parameters, in JSON format. The syntax depends on the
|
|
5934
|
+
# constraint type as follows:
|
|
5935
|
+
#
|
|
5936
|
+
# LAUNCH
|
|
5937
|
+
#
|
|
5938
|
+
# : Specify the `RoleArn` property as follows:
|
|
5939
|
+
#
|
|
5940
|
+
# `\{"RoleArn" : "arn:aws:iam::123456789012:role/LaunchRole"\}`
|
|
5941
|
+
#
|
|
5942
|
+
# You cannot have both a `LAUNCH` and a `STACKSET` constraint.
|
|
5943
|
+
#
|
|
5944
|
+
# You also cannot have more than one `LAUNCH` constraint on a
|
|
5945
|
+
# product and portfolio.
|
|
5946
|
+
#
|
|
5947
|
+
# NOTIFICATION
|
|
5948
|
+
#
|
|
5949
|
+
# : Specify the `NotificationArns` property as follows:
|
|
5950
|
+
#
|
|
5951
|
+
# `\{"NotificationArns" :
|
|
5952
|
+
# ["arn:aws:sns:us-east-1:123456789012:Topic"]\}`
|
|
5953
|
+
#
|
|
5954
|
+
# RESOURCE\_UPDATE
|
|
5955
|
+
#
|
|
5956
|
+
# : Specify the `TagUpdatesOnProvisionedProduct` property as follows:
|
|
5957
|
+
#
|
|
5958
|
+
# `\{"Version":"2.0","Properties":\{"TagUpdateOnProvisionedProduct":"String"\}\}`
|
|
5959
|
+
#
|
|
5960
|
+
# The `TagUpdatesOnProvisionedProduct` property accepts a string
|
|
5961
|
+
# value of `ALLOWED` or `NOT_ALLOWED`.
|
|
5962
|
+
#
|
|
5963
|
+
# STACKSET
|
|
5964
|
+
#
|
|
5965
|
+
# : Specify the `Parameters` property as follows:
|
|
5966
|
+
#
|
|
5967
|
+
# `\{"Version": "String", "Properties": \{"AccountList": [ "String"
|
|
5968
|
+
# ], "RegionList": [ "String" ], "AdminRole": "String",
|
|
5969
|
+
# "ExecutionRole": "String"\}\}`
|
|
5970
|
+
#
|
|
5971
|
+
# You cannot have both a `LAUNCH` and a `STACKSET` constraint.
|
|
5972
|
+
#
|
|
5973
|
+
# You also cannot have more than one `STACKSET` constraint on a
|
|
5974
|
+
# product and portfolio.
|
|
5975
|
+
#
|
|
5976
|
+
# Products with a `STACKSET` constraint will launch an AWS
|
|
5977
|
+
# CloudFormation stack set.
|
|
5978
|
+
#
|
|
5979
|
+
# TEMPLATE
|
|
5980
|
+
#
|
|
5981
|
+
# : Specify the `Rules` property. For more information, see [Template
|
|
5982
|
+
# Constraint Rules][1].
|
|
5983
|
+
#
|
|
5984
|
+
#
|
|
5985
|
+
#
|
|
5986
|
+
# [1]: http://docs.aws.amazon.com/servicecatalog/latest/adminguide/reference-template_constraint_rules.html
|
|
5987
|
+
# @return [String]
|
|
5988
|
+
#
|
|
5931
5989
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/UpdateConstraintInput AWS API Documentation
|
|
5932
5990
|
#
|
|
5933
5991
|
class UpdateConstraintInput < Struct.new(
|
|
5934
5992
|
:accept_language,
|
|
5935
5993
|
:id,
|
|
5936
|
-
:description
|
|
5994
|
+
:description,
|
|
5995
|
+
:parameters)
|
|
5937
5996
|
include Aws::Structure
|
|
5938
5997
|
end
|
|
5939
5998
|
|
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.
|
|
4
|
+
version: 1.22.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: 2019-
|
|
11
|
+
date: 2019-05-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|