aws-sdk-ssm 1.7.0 → 1.8.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: 42a86c186aa086ad4e5a2a6d048f6a023507606c
4
- data.tar.gz: 060d9550ea0bf5f5168e1b10b431008faa3ebbf4
3
+ metadata.gz: 93dd49fa220114afda6518d50c9de2f5ee2913e8
4
+ data.tar.gz: e45a7b0abf0b5204428e67f0e6d63d86f63099fa
5
5
  SHA512:
6
- metadata.gz: 3ba5870481364dc15372e316a9da7a52aba019490f7cd9f48d42941fec94876e13778e4c0234d28398ff65443aad24a59bb9ac65ec6a7019f9dca6caa11a7d16
7
- data.tar.gz: e65fc3d25109a22575558b0cf6079fa900cdeeecba44024cbae84592303d52e0b910a1939aa005ec2782d380a3619adf590cd3fcb71fe21af4f7ad394d167855
6
+ metadata.gz: ad713274c22bdba8215cc4665fcc53d6cce4c6bd24e89ffd8bba435328e559b805359ac5ffb477bf570b34bf119c8b3fed2162a02c8c876d483654093372f428
7
+ data.tar.gz: eee8eec1c017a95eeeafa4ca3820cf6a13d273e4db9ac76a1110e095da211733257d74394234f91c66cacb5f9ff1b3cd1055910d2e9b2e588c87fb39285464d6
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.7.0'
45
+ GEM_VERSION = '1.8.0'
46
46
 
47
47
  end
@@ -4457,6 +4457,7 @@ module Aws::SSM
4457
4457
  # resp.resource_data_sync_items[0].last_successful_sync_time #=> Time
4458
4458
  # resp.resource_data_sync_items[0].last_status #=> String, one of "Successful", "Failed", "InProgress"
4459
4459
  # resp.resource_data_sync_items[0].sync_created_time #=> Time
4460
+ # resp.resource_data_sync_items[0].last_sync_status_message #=> String
4460
4461
  # resp.next_token #=> String
4461
4462
  #
4462
4463
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListResourceDataSync AWS API Documentation
@@ -5189,7 +5190,7 @@ module Aws::SSM
5189
5190
  # the command fails one more time beyond the value of MaxErrors, the
5190
5191
  # systems stops sending the command to additional targets. You can
5191
5192
  # specify a number like 10 or a percentage like 10%. The default value
5192
- # is 50. For more information about how to use MaxErrors, see [Using
5193
+ # is 0. For more information about how to use MaxErrors, see [Using
5193
5194
  # Error Controls][1].
5194
5195
  #
5195
5196
  #
@@ -6256,7 +6257,7 @@ module Aws::SSM
6256
6257
  params: params,
6257
6258
  config: config)
6258
6259
  context[:gem_name] = 'aws-sdk-ssm'
6259
- context[:gem_version] = '1.7.0'
6260
+ context[:gem_version] = '1.8.0'
6260
6261
  Seahorse::Client::Request.new(handlers, context)
6261
6262
  end
6262
6263
 
@@ -429,6 +429,7 @@ module Aws::SSM
429
429
  ItemContentMismatchException = Shapes::StructureShape.new(name: 'ItemContentMismatchException')
430
430
  ItemSizeLimitExceededException = Shapes::StructureShape.new(name: 'ItemSizeLimitExceededException')
431
431
  KeyList = Shapes::ListShape.new(name: 'KeyList')
432
+ LastResourceDataSyncMessage = Shapes::StringShape.new(name: 'LastResourceDataSyncMessage')
432
433
  LastResourceDataSyncStatus = Shapes::StringShape.new(name: 'LastResourceDataSyncStatus')
433
434
  LastResourceDataSyncTime = Shapes::TimestampShape.new(name: 'LastResourceDataSyncTime')
434
435
  LastSuccessfulResourceDataSyncTime = Shapes::TimestampShape.new(name: 'LastSuccessfulResourceDataSyncTime')
@@ -2427,6 +2428,7 @@ module Aws::SSM
2427
2428
  ResourceDataSyncItem.add_member(:last_successful_sync_time, Shapes::ShapeRef.new(shape: LastSuccessfulResourceDataSyncTime, location_name: "LastSuccessfulSyncTime"))
2428
2429
  ResourceDataSyncItem.add_member(:last_status, Shapes::ShapeRef.new(shape: LastResourceDataSyncStatus, location_name: "LastStatus"))
2429
2430
  ResourceDataSyncItem.add_member(:sync_created_time, Shapes::ShapeRef.new(shape: ResourceDataSyncCreatedTime, location_name: "SyncCreatedTime"))
2431
+ ResourceDataSyncItem.add_member(:last_sync_status_message, Shapes::ShapeRef.new(shape: LastResourceDataSyncMessage, location_name: "LastSyncStatusMessage"))
2430
2432
  ResourceDataSyncItem.struct_class = Types::ResourceDataSyncItem
2431
2433
 
2432
2434
  ResourceDataSyncItemList.member = Shapes::ShapeRef.new(shape: ResourceDataSyncItem)
@@ -847,9 +847,8 @@ module Aws::SSM
847
847
  # The maximum number of errors allowed before the system stops sending
848
848
  # the command to additional targets. You can specify a number of
849
849
  # errors, such as 10, or a percentage or errors, such as 10%. The
850
- # default value is 50. For more information about how to use
851
- # MaxErrors, see [Executing a Command Using Systems Manager Run
852
- # Command][1].
850
+ # default value is 0. For more information about how to use MaxErrors,
851
+ # see [Executing a Command Using Systems Manager Run Command][1].
853
852
  #
854
853
  #
855
854
  #
@@ -5798,7 +5797,10 @@ module Aws::SSM
5798
5797
  #
5799
5798
  # @!attribute [rw] is_latest_version
5800
5799
  # Indicates whether latest version of the SSM Agent is running on your
5801
- # instance.
5800
+ # instance. Some older versions of Windows Server use the EC2Config
5801
+ # service to process SSM requests. For this reason, this field does
5802
+ # not indicate whether or not the latest version is installed on
5803
+ # Windows managed instances.
5802
5804
  # @return [Boolean]
5803
5805
  #
5804
5806
  # @!attribute [rw] platform_type
@@ -9374,6 +9376,10 @@ module Aws::SSM
9374
9376
  # The date and time the configuration was created (UTC).
9375
9377
  # @return [Time]
9376
9378
  #
9379
+ # @!attribute [rw] last_sync_status_message
9380
+ # The status message details reported by the last sync.
9381
+ # @return [String]
9382
+ #
9377
9383
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ResourceDataSyncItem AWS API Documentation
9378
9384
  #
9379
9385
  class ResourceDataSyncItem < Struct.new(
@@ -9382,7 +9388,8 @@ module Aws::SSM
9382
9388
  :last_sync_time,
9383
9389
  :last_successful_sync_time,
9384
9390
  :last_status,
9385
- :sync_created_time)
9391
+ :sync_created_time,
9392
+ :last_sync_status_message)
9386
9393
  include Aws::Structure
9387
9394
  end
9388
9395
 
@@ -9671,7 +9678,7 @@ module Aws::SSM
9671
9678
  # When the command fails one more time beyond the value of MaxErrors,
9672
9679
  # the systems stops sending the command to additional targets. You can
9673
9680
  # specify a number like 10 or a percentage like 10%. The default value
9674
- # is 50. For more information about how to use MaxErrors, see [Using
9681
+ # is 0. For more information about how to use MaxErrors, see [Using
9675
9682
  # Error Controls][1].
9676
9683
  #
9677
9684
  #
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.7.0
4
+ version: 1.8.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: 2018-02-06 00:00:00.000000000 Z
11
+ date: 2018-03-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core