aws-sdk-ssm 1.68.0 → 1.69.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/lib/aws-sdk-ssm.rb +1 -1
- data/lib/aws-sdk-ssm/client.rb +3 -3
- data/lib/aws-sdk-ssm/types.rb +30 -5
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9d9b8394f8abc2235207c85364e3a8e259b9076b
|
|
4
|
+
data.tar.gz: 321e5fa469edda85fd221fba565fd6ec01025850
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1cf01a1e65f79785811ba0ded8d0f68d0d9e5decb84d5bcf6ddc067ae46e2e8be0154d89f63933d59134ff78f5859eac1c41953443c89de63be749ee8ada9117
|
|
7
|
+
data.tar.gz: 406e4ccca1e11efb11c8b0402039453dbe1571c29eaa3abe7cba82d0284b354fc08488b1355fa54c2f7237fa6455552c68e359c2166dd7a470873bbbc44bfe6a
|
data/lib/aws-sdk-ssm.rb
CHANGED
data/lib/aws-sdk-ssm/client.rb
CHANGED
|
@@ -902,7 +902,7 @@ module Aws::SSM
|
|
|
902
902
|
# ],
|
|
903
903
|
# attachments: [
|
|
904
904
|
# {
|
|
905
|
-
# key: "SourceUrl", # accepts SourceUrl, S3FileUrl
|
|
905
|
+
# key: "SourceUrl", # accepts SourceUrl, S3FileUrl, AttachmentReference
|
|
906
906
|
# values: ["AttachmentsSourceValue"],
|
|
907
907
|
# name: "AttachmentIdentifier",
|
|
908
908
|
# },
|
|
@@ -8217,7 +8217,7 @@ module Aws::SSM
|
|
|
8217
8217
|
# content: "DocumentContent", # required
|
|
8218
8218
|
# attachments: [
|
|
8219
8219
|
# {
|
|
8220
|
-
# key: "SourceUrl", # accepts SourceUrl, S3FileUrl
|
|
8220
|
+
# key: "SourceUrl", # accepts SourceUrl, S3FileUrl, AttachmentReference
|
|
8221
8221
|
# values: ["AttachmentsSourceValue"],
|
|
8222
8222
|
# name: "AttachmentIdentifier",
|
|
8223
8223
|
# },
|
|
@@ -9237,7 +9237,7 @@ module Aws::SSM
|
|
|
9237
9237
|
params: params,
|
|
9238
9238
|
config: config)
|
|
9239
9239
|
context[:gem_name] = 'aws-sdk-ssm'
|
|
9240
|
-
context[:gem_version] = '1.
|
|
9240
|
+
context[:gem_version] = '1.69.0'
|
|
9241
9241
|
Seahorse::Client::Request.new(handlers, context)
|
|
9242
9242
|
end
|
|
9243
9243
|
|
data/lib/aws-sdk-ssm/types.rb
CHANGED
|
@@ -816,7 +816,7 @@ module Aws::SSM
|
|
|
816
816
|
# data as a hash:
|
|
817
817
|
#
|
|
818
818
|
# {
|
|
819
|
-
# key: "SourceUrl", # accepts SourceUrl, S3FileUrl
|
|
819
|
+
# key: "SourceUrl", # accepts SourceUrl, S3FileUrl, AttachmentReference
|
|
820
820
|
# values: ["AttachmentsSourceValue"],
|
|
821
821
|
# name: "AttachmentIdentifier",
|
|
822
822
|
# }
|
|
@@ -828,8 +828,33 @@ module Aws::SSM
|
|
|
828
828
|
#
|
|
829
829
|
# @!attribute [rw] values
|
|
830
830
|
# The value of a key-value pair that identifies the location of an
|
|
831
|
-
# attachment to a document. The format
|
|
832
|
-
#
|
|
831
|
+
# attachment to a document. The format for **Value** depends on the
|
|
832
|
+
# type of key you specify.
|
|
833
|
+
#
|
|
834
|
+
# * For the key *SourceUrl*, the value is an S3 bucket location. For
|
|
835
|
+
# example:
|
|
836
|
+
#
|
|
837
|
+
# `"Values": [ "s3://my-bucket/my-folder" ]`
|
|
838
|
+
#
|
|
839
|
+
# * For the key *S3FileUrl*, the value is a file in an S3 bucket. For
|
|
840
|
+
# example:
|
|
841
|
+
#
|
|
842
|
+
# `"Values": [ "s3://my-bucket/my-folder/my-file.py" ]`
|
|
843
|
+
#
|
|
844
|
+
# * For the key *AttachmentReference*, the value is constructed from
|
|
845
|
+
# the name of another SSM document in your account, a version number
|
|
846
|
+
# of that document, and a file attached to that document version
|
|
847
|
+
# that you want to reuse. For example:
|
|
848
|
+
#
|
|
849
|
+
# `"Values": [ "MyOtherDocument/3/my-other-file.py" ]`
|
|
850
|
+
#
|
|
851
|
+
# However, if the SSM document is shared with you from another
|
|
852
|
+
# account, the full SSM document ARN must be specified instead of
|
|
853
|
+
# the document name only. For example:
|
|
854
|
+
#
|
|
855
|
+
# `"Values": [
|
|
856
|
+
# "arn:aws:ssm:us-east-2:111122223333:document/OtherAccountDocument/3/their-file.py"
|
|
857
|
+
# ]`
|
|
833
858
|
# @return [Array<String>]
|
|
834
859
|
#
|
|
835
860
|
# @!attribute [rw] name
|
|
@@ -2626,7 +2651,7 @@ module Aws::SSM
|
|
|
2626
2651
|
# ],
|
|
2627
2652
|
# attachments: [
|
|
2628
2653
|
# {
|
|
2629
|
-
# key: "SourceUrl", # accepts SourceUrl, S3FileUrl
|
|
2654
|
+
# key: "SourceUrl", # accepts SourceUrl, S3FileUrl, AttachmentReference
|
|
2630
2655
|
# values: ["AttachmentsSourceValue"],
|
|
2631
2656
|
# name: "AttachmentIdentifier",
|
|
2632
2657
|
# },
|
|
@@ -16121,7 +16146,7 @@ module Aws::SSM
|
|
|
16121
16146
|
# content: "DocumentContent", # required
|
|
16122
16147
|
# attachments: [
|
|
16123
16148
|
# {
|
|
16124
|
-
# key: "SourceUrl", # accepts SourceUrl, S3FileUrl
|
|
16149
|
+
# key: "SourceUrl", # accepts SourceUrl, S3FileUrl, AttachmentReference
|
|
16125
16150
|
# values: ["AttachmentsSourceValue"],
|
|
16126
16151
|
# name: "AttachmentIdentifier",
|
|
16127
16152
|
# },
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-ssm
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.69.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-12-
|
|
11
|
+
date: 2019-12-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|