aws-sdk-ssm 1.59.0 → 1.60.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: 93c1c2cee1e958493ce66602a97fafccc348f2a8
4
- data.tar.gz: 5c0e291253658da1d2dfa7a0aff6d7fa5cddcefd
3
+ metadata.gz: 7a73401a809043c02c3d94c2047fc301f799bcdd
4
+ data.tar.gz: bb838c9ee77dabf1b67fbec069ab91011d37b2b7
5
5
  SHA512:
6
- metadata.gz: 535387cce28395f3fa319aa82497ae7e54dbe02c96c2c55f665e3e4c295ae39708dfec312b9b1985cbc506818ae71b3fad3d37073cd8fe7f7bdbe707170e0520
7
- data.tar.gz: 4ab939fd4560489befbd6ae13a140405941da707c207ce90040bff71cb7739ce7ce5a0ff15be0fc890b61f4bbe2f7c3249f34520bb66104e7bb990d5587023f7
6
+ metadata.gz: 689caf7b0d128e1f676d5566ecb8af28759a19786d7f38870de8cc79da111bebce90fb56695008191ec33f833e56666bc8bd35e8591ea5e9d1b07d77dc53f028
7
+ data.tar.gz: 39fea5a274a8972def1db1b8ccd35e6f671ee20d8c7dc28b467378ea82eb0e40e7b6f022219dea5d97d1cc26dad0a3e12a3b7e42f169e3caf84e735fa9ea3f18
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.59.0'
45
+ GEM_VERSION = '1.60.0'
46
46
 
47
47
  end
@@ -889,8 +889,9 @@ module Aws::SSM
889
889
  # content: "DocumentContent", # required
890
890
  # attachments: [
891
891
  # {
892
- # key: "SourceUrl", # accepts SourceUrl
892
+ # key: "SourceUrl", # accepts SourceUrl, S3FileUrl
893
893
  # values: ["AttachmentsSourceValue"],
894
+ # name: "AttachmentIdentifier",
894
895
  # },
895
896
  # ],
896
897
  # name: "DocumentName", # required
@@ -5588,7 +5589,8 @@ module Aws::SSM
5588
5589
  #
5589
5590
  # @option params [Array<Types::CommandFilter>] :filters
5590
5591
  # (Optional) One or more filters. Use a filter to return a more specific
5591
- # list of results.
5592
+ # list of results. Note that the `DocumentName` filter is not supported
5593
+ # for ListCommandInvocations.
5592
5594
  #
5593
5595
  # @option params [Boolean] :details
5594
5596
  # (Optional) If set this returns the response of the command executions
@@ -6397,8 +6399,7 @@ module Aws::SSM
6397
6399
  # inventory item, if it does exist.
6398
6400
  #
6399
6401
  # @option params [required, String] :instance_id
6400
- # One or more instance IDs where you want to add or update inventory
6401
- # items.
6402
+ # An instance ID where you want to add or update inventory items.
6402
6403
  #
6403
6404
  # @option params [required, Array<Types::InventoryItem>] :items
6404
6405
  # The inventory items that you want to add or update on instances.
@@ -7994,8 +7995,9 @@ module Aws::SSM
7994
7995
  # content: "DocumentContent", # required
7995
7996
  # attachments: [
7996
7997
  # {
7997
- # key: "SourceUrl", # accepts SourceUrl
7998
+ # key: "SourceUrl", # accepts SourceUrl, S3FileUrl
7998
7999
  # values: ["AttachmentsSourceValue"],
8000
+ # name: "AttachmentIdentifier",
7999
8001
  # },
8000
8002
  # ],
8001
8003
  # name: "DocumentName", # required
@@ -8943,7 +8945,7 @@ module Aws::SSM
8943
8945
  params: params,
8944
8946
  config: config)
8945
8947
  context[:gem_name] = 'aws-sdk-ssm'
8946
- context[:gem_version] = '1.59.0'
8948
+ context[:gem_version] = '1.60.0'
8947
8949
  Seahorse::Client::Request.new(handlers, context)
8948
8950
  end
8949
8951
 
@@ -72,6 +72,7 @@ module Aws::SSM
72
72
  AttachmentContentList = Shapes::ListShape.new(name: 'AttachmentContentList')
73
73
  AttachmentHash = Shapes::StringShape.new(name: 'AttachmentHash')
74
74
  AttachmentHashType = Shapes::StringShape.new(name: 'AttachmentHashType')
75
+ AttachmentIdentifier = Shapes::StringShape.new(name: 'AttachmentIdentifier')
75
76
  AttachmentInformation = Shapes::StructureShape.new(name: 'AttachmentInformation')
76
77
  AttachmentInformationList = Shapes::ListShape.new(name: 'AttachmentInformationList')
77
78
  AttachmentName = Shapes::StringShape.new(name: 'AttachmentName')
@@ -1163,6 +1164,7 @@ module Aws::SSM
1163
1164
 
1164
1165
  AttachmentsSource.add_member(:key, Shapes::ShapeRef.new(shape: AttachmentsSourceKey, location_name: "Key"))
1165
1166
  AttachmentsSource.add_member(:values, Shapes::ShapeRef.new(shape: AttachmentsSourceValues, location_name: "Values"))
1167
+ AttachmentsSource.add_member(:name, Shapes::ShapeRef.new(shape: AttachmentIdentifier, location_name: "Name"))
1166
1168
  AttachmentsSource.struct_class = Types::AttachmentsSource
1167
1169
 
1168
1170
  AttachmentsSourceList.member = Shapes::ShapeRef.new(shape: AttachmentsSource)
@@ -789,32 +789,40 @@ module Aws::SSM
789
789
  include Aws::Structure
790
790
  end
791
791
 
792
- # A key and value pair that identifies the location of an attachment to
793
- # a document.
792
+ # Identifying information about a document attachment, including the
793
+ # file name and a key-value pair that identifies the location of an
794
+ # attachment to a document.
794
795
  #
795
796
  # @note When making an API call, you may pass AttachmentsSource
796
797
  # data as a hash:
797
798
  #
798
799
  # {
799
- # key: "SourceUrl", # accepts SourceUrl
800
+ # key: "SourceUrl", # accepts SourceUrl, S3FileUrl
800
801
  # values: ["AttachmentsSourceValue"],
802
+ # name: "AttachmentIdentifier",
801
803
  # }
802
804
  #
803
805
  # @!attribute [rw] key
804
- # The key of a key and value pair that identifies the location of an
806
+ # The key of a key-value pair that identifies the location of an
805
807
  # attachment to a document.
806
808
  # @return [String]
807
809
  #
808
810
  # @!attribute [rw] values
809
- # The URL of the location of a document attachment, such as the URL of
810
- # an Amazon S3 bucket.
811
+ # The value of a key-value pair that identifies the location of an
812
+ # attachment to a document. The format is the URL of the location of a
813
+ # document attachment, such as the URL of an Amazon S3 bucket.
811
814
  # @return [Array<String>]
812
815
  #
816
+ # @!attribute [rw] name
817
+ # The name of the document attachment file.
818
+ # @return [String]
819
+ #
813
820
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AttachmentsSource AWS API Documentation
814
821
  #
815
822
  class AttachmentsSource < Struct.new(
816
823
  :key,
817
- :values)
824
+ :values,
825
+ :name)
818
826
  include Aws::Structure
819
827
  end
820
828
 
@@ -2591,8 +2599,9 @@ module Aws::SSM
2591
2599
  # content: "DocumentContent", # required
2592
2600
  # attachments: [
2593
2601
  # {
2594
- # key: "SourceUrl", # accepts SourceUrl
2602
+ # key: "SourceUrl", # accepts SourceUrl, S3FileUrl
2595
2603
  # values: ["AttachmentsSourceValue"],
2604
+ # name: "AttachmentIdentifier",
2596
2605
  # },
2597
2606
  # ],
2598
2607
  # name: "DocumentName", # required
@@ -9713,7 +9722,8 @@ module Aws::SSM
9713
9722
  #
9714
9723
  # @!attribute [rw] filters
9715
9724
  # (Optional) One or more filters. Use a filter to return a more
9716
- # specific list of results.
9725
+ # specific list of results. Note that the `DocumentName` filter is not
9726
+ # supported for ListCommandInvocations.
9717
9727
  # @return [Array<Types::CommandFilter>]
9718
9728
  #
9719
9729
  # @!attribute [rw] details
@@ -12724,8 +12734,7 @@ module Aws::SSM
12724
12734
  # }
12725
12735
  #
12726
12736
  # @!attribute [rw] instance_id
12727
- # One or more instance IDs where you want to add or update inventory
12728
- # items.
12737
+ # An instance ID where you want to add or update inventory items.
12729
12738
  # @return [String]
12730
12739
  #
12731
12740
  # @!attribute [rw] items
@@ -14948,10 +14957,22 @@ module Aws::SSM
14948
14957
  # * (Maintenance window targets only)
14949
14958
  # `Key=resource-groups:Name,Values=ProductionResourceGroup`
14950
14959
  #
14960
+ # This example demonstrates how to target all resources in the
14961
+ # resource group **ProductionResourceGroup** in your maintenance
14962
+ # window.
14963
+ #
14951
14964
  # * (Maintenance window targets only)
14952
14965
  # `Key=resource-groups:ResourceTypeFilters,Values=AWS::EC2::INSTANCE,AWS::EC2::VPC
14953
14966
  # `
14954
14967
  #
14968
+ # This example demonstrates how to target only Amazon EC2 instances
14969
+ # and VPCs in your maintenance window.
14970
+ #
14971
+ # * (State Manager association targets only) `Key=InstanceIds,Values=* `
14972
+ #
14973
+ # This example demonstrates how to target all managed instances in the
14974
+ # AWS Region where the association was created.
14975
+ #
14955
14976
  # For information about how to send commands that target instances using
14956
14977
  # `Key,Value` parameters, see [Using Targets and Rate Controls to Send
14957
14978
  # Commands to a Fleet][1] in the *AWS Systems Manager User Guide*.
@@ -15473,8 +15494,9 @@ module Aws::SSM
15473
15494
  # content: "DocumentContent", # required
15474
15495
  # attachments: [
15475
15496
  # {
15476
- # key: "SourceUrl", # accepts SourceUrl
15497
+ # key: "SourceUrl", # accepts SourceUrl, S3FileUrl
15477
15498
  # values: ["AttachmentsSourceValue"],
15499
+ # name: "AttachmentIdentifier",
15478
15500
  # },
15479
15501
  # ],
15480
15502
  # name: "DocumentName", # required
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.59.0
4
+ version: 1.60.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-07 00:00:00.000000000 Z
11
+ date: 2019-11-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core