aws-sdk-servicecatalog 1.19.0 → 1.20.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: d0246109e73d641a6618c1c3bbb1091be58351ab
|
4
|
+
data.tar.gz: 66e08a2bef06343167c10201f0d9f079967026e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 93cdc970bdc1b9607fca2dddf0e0b51a09f4702d4a7990584c96bbfc2b567dac788c2f3a8e5fd530065bc8450e3e6843ca9771a65448ef90f5d2f19ce62d88b3
|
7
|
+
data.tar.gz: e112889dbba8a1452b813eeb9020b1bfe694c01e5ecab3ebdd3a0c608b32b6bf4ba66a459fd4cb19e6d7e4af5c156a14197270f6285a61bd8476932ddc8b73b2
|
@@ -209,6 +209,49 @@ module Aws::ServiceCatalog
|
|
209
209
|
# When `true`, request parameters are validated before
|
210
210
|
# sending the request.
|
211
211
|
#
|
212
|
+
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
213
|
+
# requests through. Formatted like 'http://proxy.com:123'.
|
214
|
+
#
|
215
|
+
# @option options [Float] :http_open_timeout (15) The number of
|
216
|
+
# seconds to wait when opening a HTTP session before rasing a
|
217
|
+
# `Timeout::Error`.
|
218
|
+
#
|
219
|
+
# @option options [Integer] :http_read_timeout (60) The default
|
220
|
+
# number of seconds to wait for response data. This value can
|
221
|
+
# safely be set
|
222
|
+
# per-request on the session yeidled by {#session_for}.
|
223
|
+
#
|
224
|
+
# @option options [Float] :http_idle_timeout (5) The number of
|
225
|
+
# seconds a connection is allowed to sit idble before it is
|
226
|
+
# considered stale. Stale connections are closed and removed
|
227
|
+
# from the pool before making a request.
|
228
|
+
#
|
229
|
+
# @option options [Float] :http_continue_timeout (1) The number of
|
230
|
+
# seconds to wait for a 100-continue response before sending the
|
231
|
+
# request body. This option has no effect unless the request has
|
232
|
+
# "Expect" header set to "100-continue". Defaults to `nil` which
|
233
|
+
# disables this behaviour. This value can safely be set per
|
234
|
+
# request on the session yeidled by {#session_for}.
|
235
|
+
#
|
236
|
+
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
237
|
+
# HTTP debug output will be sent to the `:logger`.
|
238
|
+
#
|
239
|
+
# @option options [Boolean] :ssl_verify_peer (true) When `true`,
|
240
|
+
# SSL peer certificates are verified when establishing a
|
241
|
+
# connection.
|
242
|
+
#
|
243
|
+
# @option options [String] :ssl_ca_bundle Full path to the SSL
|
244
|
+
# certificate authority bundle file that should be used when
|
245
|
+
# verifying peer certificates. If you do not pass
|
246
|
+
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
247
|
+
# will be used if available.
|
248
|
+
#
|
249
|
+
# @option options [String] :ssl_ca_directory Full path of the
|
250
|
+
# directory that contains the unbundled SSL certificate
|
251
|
+
# authority files for verifying peer certificates. If you do
|
252
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
253
|
+
# system default will be used if available.
|
254
|
+
#
|
212
255
|
def initialize(*args)
|
213
256
|
super
|
214
257
|
end
|
@@ -630,6 +673,15 @@ module Aws::ServiceCatalog
|
|
630
673
|
# `\{"NotificationArns" :
|
631
674
|
# ["arn:aws:sns:us-east-1:123456789012:Topic"]\}`
|
632
675
|
#
|
676
|
+
# RESOUCE\_UPDATE
|
677
|
+
#
|
678
|
+
# : Specify the `TagUpdatesOnProvisionedProduct` property as follows:
|
679
|
+
#
|
680
|
+
# `\{"Version":"2.0","Properties":\{"TagUpdateOnProvisionedProduct":"String"\}\}`
|
681
|
+
#
|
682
|
+
# The `TagUpdatesOnProvisionedProduct` property accepts a string value
|
683
|
+
# of `ALLOWED` or `NOT_ALLOWED`.
|
684
|
+
#
|
633
685
|
# STACKSET
|
634
686
|
#
|
635
687
|
# : Specify the `Parameters` property as follows:
|
@@ -662,6 +714,8 @@ module Aws::ServiceCatalog
|
|
662
714
|
#
|
663
715
|
# * `NOTIFICATION`
|
664
716
|
#
|
717
|
+
# * `RESOURCE_UPDATE`
|
718
|
+
#
|
665
719
|
# * `STACKSET`
|
666
720
|
#
|
667
721
|
# * `TEMPLATE`
|
@@ -4412,6 +4466,11 @@ module Aws::ServiceCatalog
|
|
4412
4466
|
# An object that contains information about the provisioning preferences
|
4413
4467
|
# for a stack set.
|
4414
4468
|
#
|
4469
|
+
# @option params [Array<Types::Tag>] :tags
|
4470
|
+
# One or more tags. Requires the product to have `RESOURCE_UPDATE`
|
4471
|
+
# constraint with `TagUpdatesOnProvisionedProduct` set to `ALLOWED` to
|
4472
|
+
# allow tag updates.
|
4473
|
+
#
|
4415
4474
|
# @option params [required, String] :update_token
|
4416
4475
|
# The idempotency token that uniquely identifies the provisioning update
|
4417
4476
|
# request.
|
@@ -4448,6 +4507,12 @@ module Aws::ServiceCatalog
|
|
4448
4507
|
# stack_set_max_concurrency_percentage: 1,
|
4449
4508
|
# stack_set_operation_type: "CREATE", # accepts CREATE, UPDATE, DELETE
|
4450
4509
|
# },
|
4510
|
+
# tags: [
|
4511
|
+
# {
|
4512
|
+
# key: "TagKey", # required
|
4513
|
+
# value: "TagValue", # required
|
4514
|
+
# },
|
4515
|
+
# ],
|
4451
4516
|
# update_token: "IdempotencyToken", # required
|
4452
4517
|
# })
|
4453
4518
|
#
|
@@ -4657,7 +4722,7 @@ module Aws::ServiceCatalog
|
|
4657
4722
|
params: params,
|
4658
4723
|
config: config)
|
4659
4724
|
context[:gem_name] = 'aws-sdk-servicecatalog'
|
4660
|
-
context[:gem_version] = '1.
|
4725
|
+
context[:gem_version] = '1.20.0'
|
4661
4726
|
Seahorse::Client::Request.new(handlers, context)
|
4662
4727
|
end
|
4663
4728
|
|
@@ -1508,6 +1508,7 @@ module Aws::ServiceCatalog
|
|
1508
1508
|
UpdateProvisionedProductInput.add_member(:path_id, Shapes::ShapeRef.new(shape: Id, location_name: "PathId"))
|
1509
1509
|
UpdateProvisionedProductInput.add_member(:provisioning_parameters, Shapes::ShapeRef.new(shape: UpdateProvisioningParameters, location_name: "ProvisioningParameters"))
|
1510
1510
|
UpdateProvisionedProductInput.add_member(:provisioning_preferences, Shapes::ShapeRef.new(shape: UpdateProvisioningPreferences, location_name: "ProvisioningPreferences"))
|
1511
|
+
UpdateProvisionedProductInput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
1511
1512
|
UpdateProvisionedProductInput.add_member(:update_token, Shapes::ShapeRef.new(shape: IdempotencyToken, required: true, location_name: "UpdateToken", metadata: {"idempotencyToken"=>true}))
|
1512
1513
|
UpdateProvisionedProductInput.struct_class = Types::UpdateProvisionedProductInput
|
1513
1514
|
|
@@ -574,6 +574,15 @@ module Aws::ServiceCatalog
|
|
574
574
|
# `\{"NotificationArns" :
|
575
575
|
# ["arn:aws:sns:us-east-1:123456789012:Topic"]\}`
|
576
576
|
#
|
577
|
+
# RESOUCE\_UPDATE
|
578
|
+
#
|
579
|
+
# : Specify the `TagUpdatesOnProvisionedProduct` property as follows:
|
580
|
+
#
|
581
|
+
# `\{"Version":"2.0","Properties":\{"TagUpdateOnProvisionedProduct":"String"\}\}`
|
582
|
+
#
|
583
|
+
# The `TagUpdatesOnProvisionedProduct` property accepts a string
|
584
|
+
# value of `ALLOWED` or `NOT_ALLOWED`.
|
585
|
+
#
|
577
586
|
# STACKSET
|
578
587
|
#
|
579
588
|
# : Specify the `Parameters` property as follows:
|
@@ -607,6 +616,8 @@ module Aws::ServiceCatalog
|
|
607
616
|
#
|
608
617
|
# * `NOTIFICATION`
|
609
618
|
#
|
619
|
+
# * `RESOURCE_UPDATE`
|
620
|
+
#
|
610
621
|
# * `STACKSET`
|
611
622
|
#
|
612
623
|
# * `TEMPLATE`
|
@@ -6005,6 +6016,12 @@ module Aws::ServiceCatalog
|
|
6005
6016
|
# stack_set_max_concurrency_percentage: 1,
|
6006
6017
|
# stack_set_operation_type: "CREATE", # accepts CREATE, UPDATE, DELETE
|
6007
6018
|
# },
|
6019
|
+
# tags: [
|
6020
|
+
# {
|
6021
|
+
# key: "TagKey", # required
|
6022
|
+
# value: "TagValue", # required
|
6023
|
+
# },
|
6024
|
+
# ],
|
6008
6025
|
# update_token: "IdempotencyToken", # required
|
6009
6026
|
# }
|
6010
6027
|
#
|
@@ -6050,6 +6067,12 @@ module Aws::ServiceCatalog
|
|
6050
6067
|
# preferences for a stack set.
|
6051
6068
|
# @return [Types::UpdateProvisioningPreferences]
|
6052
6069
|
#
|
6070
|
+
# @!attribute [rw] tags
|
6071
|
+
# One or more tags. Requires the product to have `RESOURCE_UPDATE`
|
6072
|
+
# constraint with `TagUpdatesOnProvisionedProduct` set to `ALLOWED` to
|
6073
|
+
# allow tag updates.
|
6074
|
+
# @return [Array<Types::Tag>]
|
6075
|
+
#
|
6053
6076
|
# @!attribute [rw] update_token
|
6054
6077
|
# The idempotency token that uniquely identifies the provisioning
|
6055
6078
|
# update request.
|
@@ -6069,6 +6092,7 @@ module Aws::ServiceCatalog
|
|
6069
6092
|
:path_id,
|
6070
6093
|
:provisioning_parameters,
|
6071
6094
|
:provisioning_preferences,
|
6095
|
+
:tags,
|
6072
6096
|
:update_token)
|
6073
6097
|
include Aws::Structure
|
6074
6098
|
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.
|
4
|
+
version: 1.20.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-03-
|
11
|
+
date: 2019-03-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|