aws-sdk-proton 1.3.0 → 1.4.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-proton.rb +1 -1
- data/lib/aws-sdk-proton/client.rb +1 -1
- data/lib/aws-sdk-proton/client_api.rb +4 -1
- data/lib/aws-sdk-proton/types.rb +7 -10
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 617d46e5b620d95ede0388f0e74a60adb622260a44432870221b81ff2b32e80e
|
4
|
+
data.tar.gz: 94ca48109475f3c6953e48b83ae95e4266c828f1af7ee48f1ceb538b4dfbc577
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ff8a6f15fff1931ae5743bc46916311a42edc627d332f3ff6657d4c1905acacd8fed2925c319dcb19d4b3df724bf520a1343f1df24117fbcb260ee59d12d1fbd
|
7
|
+
data.tar.gz: 11afca972c6897661683026d1004fa04aafdf32db9531ab778852a229eb7a07345f2a27f2130fafd3f5d8e6d653b48068ce9ba7516a8dffd05088ad94b8a5b09
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.4.0
|
data/lib/aws-sdk-proton.rb
CHANGED
@@ -3416,7 +3416,7 @@ module Aws::Proton
|
|
3416
3416
|
params: params,
|
3417
3417
|
config: config)
|
3418
3418
|
context[:gem_name] = 'aws-sdk-proton'
|
3419
|
-
context[:gem_version] = '1.
|
3419
|
+
context[:gem_version] = '1.4.0'
|
3420
3420
|
Seahorse::Client::Request.new(handlers, context)
|
3421
3421
|
end
|
3422
3422
|
|
@@ -167,7 +167,7 @@ module Aws::Proton
|
|
167
167
|
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
168
168
|
TemplateSchema = Shapes::StringShape.new(name: 'TemplateSchema')
|
169
169
|
TemplateVersionPart = Shapes::StringShape.new(name: 'TemplateVersionPart')
|
170
|
-
TemplateVersionSourceInput = Shapes::
|
170
|
+
TemplateVersionSourceInput = Shapes::UnionShape.new(name: 'TemplateVersionSourceInput')
|
171
171
|
TemplateVersionStatus = Shapes::StringShape.new(name: 'TemplateVersionStatus')
|
172
172
|
ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
|
173
173
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
@@ -784,6 +784,9 @@ module Aws::Proton
|
|
784
784
|
TagResourceOutput.struct_class = Types::TagResourceOutput
|
785
785
|
|
786
786
|
TemplateVersionSourceInput.add_member(:s3, Shapes::ShapeRef.new(shape: S3ObjectSource, location_name: "s3"))
|
787
|
+
TemplateVersionSourceInput.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
788
|
+
TemplateVersionSourceInput.add_member_subclass(:s3, Types::TemplateVersionSourceInput::S3)
|
789
|
+
TemplateVersionSourceInput.add_member_subclass(:unknown, Types::TemplateVersionSourceInput::Unknown)
|
787
790
|
TemplateVersionSourceInput.struct_class = Types::TemplateVersionSourceInput
|
788
791
|
|
789
792
|
ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, required: true, location_name: "message"))
|
data/lib/aws-sdk-proton/types.rb
CHANGED
@@ -3224,15 +3224,7 @@ module Aws::Proton
|
|
3224
3224
|
|
3225
3225
|
# Template version source data.
|
3226
3226
|
#
|
3227
|
-
# @note
|
3228
|
-
# data as a hash:
|
3229
|
-
#
|
3230
|
-
# {
|
3231
|
-
# s3: {
|
3232
|
-
# bucket: "S3Bucket", # required
|
3233
|
-
# key: "S3Key", # required
|
3234
|
-
# },
|
3235
|
-
# }
|
3227
|
+
# @note TemplateVersionSourceInput is a union - when making an API calls you must set exactly one of the members.
|
3236
3228
|
#
|
3237
3229
|
# @!attribute [rw] s3
|
3238
3230
|
# An S3 source object that includes the template bundle S3 path and
|
@@ -3242,9 +3234,14 @@ module Aws::Proton
|
|
3242
3234
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/TemplateVersionSourceInput AWS API Documentation
|
3243
3235
|
#
|
3244
3236
|
class TemplateVersionSourceInput < Struct.new(
|
3245
|
-
:s3
|
3237
|
+
:s3,
|
3238
|
+
:unknown)
|
3246
3239
|
SENSITIVE = []
|
3247
3240
|
include Aws::Structure
|
3241
|
+
include Aws::Structure::Union
|
3242
|
+
|
3243
|
+
class S3 < TemplateVersionSourceInput; end
|
3244
|
+
class Unknown < TemplateVersionSourceInput; end
|
3248
3245
|
end
|
3249
3246
|
|
3250
3247
|
# The request was denied due to request throttling.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-proton
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.4.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: 2021-07-
|
11
|
+
date: 2021-07-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.118.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.118.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|