aws-sdk-ssm 1.68.0 → 1.69.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
  SHA1:
3
- metadata.gz: 763f39a37d2bd33448cff774a761a67b6e4b56b2
4
- data.tar.gz: c5357d5fe787909ba4516e037668678eb286bbbc
3
+ metadata.gz: 9d9b8394f8abc2235207c85364e3a8e259b9076b
4
+ data.tar.gz: 321e5fa469edda85fd221fba565fd6ec01025850
5
5
  SHA512:
6
- metadata.gz: 29ee25c0452c7a4ec464a7aa09c742df5739fc760d9299ab20c622bb43038952625826a4348ef848557abc821d7a59c76a790e76a177918d41a6eca2a71c2410
7
- data.tar.gz: 66416e34ee1734d3115d228d33cc7d38089d6fd0348202bc4d2a24b70a80da83693947223dbbef52da40dc36cdc04e14f5ec8c5418ab596d946e2ccb7ef274c9
6
+ metadata.gz: 1cf01a1e65f79785811ba0ded8d0f68d0d9e5decb84d5bcf6ddc067ae46e2e8be0154d89f63933d59134ff78f5859eac1c41953443c89de63be749ee8ada9117
7
+ data.tar.gz: 406e4ccca1e11efb11c8b0402039453dbe1571c29eaa3abe7cba82d0284b354fc08488b1355fa54c2f7237fa6455552c68e359c2166dd7a470873bbbc44bfe6a
data/lib/aws-sdk-ssm.rb CHANGED
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-ssm/customizations'
42
42
  # @service
43
43
  module Aws::SSM
44
44
 
45
- GEM_VERSION = '1.68.0'
45
+ GEM_VERSION = '1.69.0'
46
46
 
47
47
  end
@@ -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.68.0'
9240
+ context[:gem_version] = '1.69.0'
9241
9241
  Seahorse::Client::Request.new(handlers, context)
9242
9242
  end
9243
9243
 
@@ -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 is the URL of the location of a
832
- # document attachment, such as the URL of an Amazon S3 bucket.
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.68.0
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-19 00:00:00.000000000 Z
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