aws-sdk-ssm 1.175.0 → 1.182.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 +35 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssm/client.rb +245 -44
- data/lib/aws-sdk-ssm/client_api.rb +14 -0
- data/lib/aws-sdk-ssm/endpoints.rb +140 -560
- data/lib/aws-sdk-ssm/plugins/endpoints.rb +18 -6
- data/lib/aws-sdk-ssm/types.rb +188 -102
- data/lib/aws-sdk-ssm.rb +16 -12
- data/sig/client.rbs +59 -6
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +8 -0
- metadata +4 -4
data/lib/aws-sdk-ssm.rb
CHANGED
@@ -11,17 +11,7 @@
|
|
11
11
|
require 'aws-sdk-core'
|
12
12
|
require 'aws-sigv4'
|
13
13
|
|
14
|
-
|
15
|
-
require_relative 'aws-sdk-ssm/client_api'
|
16
|
-
require_relative 'aws-sdk-ssm/plugins/endpoints.rb'
|
17
|
-
require_relative 'aws-sdk-ssm/client'
|
18
|
-
require_relative 'aws-sdk-ssm/errors'
|
19
|
-
require_relative 'aws-sdk-ssm/waiters'
|
20
|
-
require_relative 'aws-sdk-ssm/resource'
|
21
|
-
require_relative 'aws-sdk-ssm/endpoint_parameters'
|
22
|
-
require_relative 'aws-sdk-ssm/endpoint_provider'
|
23
|
-
require_relative 'aws-sdk-ssm/endpoints'
|
24
|
-
require_relative 'aws-sdk-ssm/customizations'
|
14
|
+
Aws::Plugins::GlobalConfiguration.add_identifier(:ssm)
|
25
15
|
|
26
16
|
# This module provides support for Amazon Simple Systems Manager (SSM). This module is available in the
|
27
17
|
# `aws-sdk-ssm` gem.
|
@@ -52,7 +42,21 @@ require_relative 'aws-sdk-ssm/customizations'
|
|
52
42
|
#
|
53
43
|
# @!group service
|
54
44
|
module Aws::SSM
|
45
|
+
autoload :Types, 'aws-sdk-ssm/types'
|
46
|
+
autoload :ClientApi, 'aws-sdk-ssm/client_api'
|
47
|
+
module Plugins
|
48
|
+
autoload :Endpoints, 'aws-sdk-ssm/plugins/endpoints.rb'
|
49
|
+
end
|
50
|
+
autoload :Client, 'aws-sdk-ssm/client'
|
51
|
+
autoload :Errors, 'aws-sdk-ssm/errors'
|
52
|
+
autoload :Waiters, 'aws-sdk-ssm/waiters'
|
53
|
+
autoload :Resource, 'aws-sdk-ssm/resource'
|
54
|
+
autoload :EndpointParameters, 'aws-sdk-ssm/endpoint_parameters'
|
55
|
+
autoload :EndpointProvider, 'aws-sdk-ssm/endpoint_provider'
|
56
|
+
autoload :Endpoints, 'aws-sdk-ssm/endpoints'
|
55
57
|
|
56
|
-
GEM_VERSION = '1.
|
58
|
+
GEM_VERSION = '1.182.0'
|
57
59
|
|
58
60
|
end
|
61
|
+
|
62
|
+
require_relative 'aws-sdk-ssm/customizations'
|
data/sig/client.rbs
CHANGED
@@ -15,6 +15,7 @@ module Aws
|
|
15
15
|
?credentials: untyped,
|
16
16
|
?region: String,
|
17
17
|
?access_key_id: String,
|
18
|
+
?account_id: String,
|
18
19
|
?active_endpoint_cache: bool,
|
19
20
|
?adaptive_retry_wait_to_fill: bool,
|
20
21
|
?client_side_monitoring: bool,
|
@@ -51,6 +52,7 @@ module Aws
|
|
51
52
|
?sigv4a_signing_region_set: Array[String],
|
52
53
|
?simple_json: bool,
|
53
54
|
?stub_responses: untyped,
|
55
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
54
56
|
?token_provider: untyped,
|
55
57
|
?use_dualstack_endpoint: bool,
|
56
58
|
?use_fips_endpoint: bool,
|
@@ -196,7 +198,17 @@ module Aws
|
|
196
198
|
name: ::String
|
197
199
|
},
|
198
200
|
]
|
199
|
-
}
|
201
|
+
}?,
|
202
|
+
include_child_organization_units: bool?,
|
203
|
+
exclude_accounts: Array[::String]?,
|
204
|
+
targets: Array[
|
205
|
+
{
|
206
|
+
key: ::String?,
|
207
|
+
values: Array[::String]?
|
208
|
+
},
|
209
|
+
]?,
|
210
|
+
targets_max_concurrency: ::String?,
|
211
|
+
targets_max_errors: ::String?
|
200
212
|
},
|
201
213
|
],
|
202
214
|
?schedule_offset: ::Integer,
|
@@ -270,7 +282,17 @@ module Aws
|
|
270
282
|
name: ::String
|
271
283
|
},
|
272
284
|
]
|
273
|
-
}
|
285
|
+
}?,
|
286
|
+
include_child_organization_units: bool?,
|
287
|
+
exclude_accounts: Array[::String]?,
|
288
|
+
targets: Array[
|
289
|
+
{
|
290
|
+
key: ::String?,
|
291
|
+
values: Array[::String]?
|
292
|
+
},
|
293
|
+
]?,
|
294
|
+
targets_max_concurrency: ::String?,
|
295
|
+
targets_max_errors: ::String?
|
274
296
|
},
|
275
297
|
]?,
|
276
298
|
schedule_offset: ::Integer?,
|
@@ -2461,7 +2483,17 @@ module Aws
|
|
2461
2483
|
name: ::String
|
2462
2484
|
},
|
2463
2485
|
]
|
2464
|
-
}
|
2486
|
+
}?,
|
2487
|
+
include_child_organization_units: bool?,
|
2488
|
+
exclude_accounts: Array[::String]?,
|
2489
|
+
targets: Array[
|
2490
|
+
{
|
2491
|
+
key: ::String?,
|
2492
|
+
values: Array[::String]?
|
2493
|
+
},
|
2494
|
+
]?,
|
2495
|
+
targets_max_concurrency: ::String?,
|
2496
|
+
targets_max_errors: ::String?
|
2465
2497
|
},
|
2466
2498
|
],
|
2467
2499
|
?tags: Array[
|
@@ -2477,7 +2509,8 @@ module Aws
|
|
2477
2509
|
name: ::String
|
2478
2510
|
},
|
2479
2511
|
]
|
2480
|
-
}
|
2512
|
+
},
|
2513
|
+
?target_locations_url: ::String
|
2481
2514
|
) -> _StartAutomationExecutionResponseSuccess
|
2482
2515
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartAutomationExecutionResponseSuccess
|
2483
2516
|
|
@@ -2525,7 +2558,17 @@ module Aws
|
|
2525
2558
|
name: ::String
|
2526
2559
|
},
|
2527
2560
|
]
|
2528
|
-
}
|
2561
|
+
}?,
|
2562
|
+
include_child_organization_units: bool?,
|
2563
|
+
exclude_accounts: Array[::String]?,
|
2564
|
+
targets: Array[
|
2565
|
+
{
|
2566
|
+
key: ::String?,
|
2567
|
+
values: Array[::String]?
|
2568
|
+
},
|
2569
|
+
]?,
|
2570
|
+
targets_max_concurrency: ::String?,
|
2571
|
+
targets_max_errors: ::String?
|
2529
2572
|
},
|
2530
2573
|
]?
|
2531
2574
|
},
|
@@ -2636,7 +2679,17 @@ module Aws
|
|
2636
2679
|
name: ::String
|
2637
2680
|
},
|
2638
2681
|
]
|
2639
|
-
}
|
2682
|
+
}?,
|
2683
|
+
include_child_organization_units: bool?,
|
2684
|
+
exclude_accounts: Array[::String]?,
|
2685
|
+
targets: Array[
|
2686
|
+
{
|
2687
|
+
key: ::String?,
|
2688
|
+
values: Array[::String]?
|
2689
|
+
},
|
2690
|
+
]?,
|
2691
|
+
targets_max_concurrency: ::String?,
|
2692
|
+
targets_max_errors: ::String?
|
2640
2693
|
},
|
2641
2694
|
],
|
2642
2695
|
?schedule_offset: ::Integer,
|
data/sig/resource.rbs
CHANGED
@@ -15,6 +15,7 @@ module Aws
|
|
15
15
|
?credentials: untyped,
|
16
16
|
?region: String,
|
17
17
|
?access_key_id: String,
|
18
|
+
?account_id: String,
|
18
19
|
?active_endpoint_cache: bool,
|
19
20
|
?adaptive_retry_wait_to_fill: bool,
|
20
21
|
?client_side_monitoring: bool,
|
@@ -51,6 +52,7 @@ module Aws
|
|
51
52
|
?sigv4a_signing_region_set: Array[String],
|
52
53
|
?simple_json: bool,
|
53
54
|
?stub_responses: untyped,
|
55
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
54
56
|
?token_provider: untyped,
|
55
57
|
?use_dualstack_endpoint: bool,
|
56
58
|
?use_fips_endpoint: bool,
|
data/sig/types.rbs
CHANGED
@@ -296,6 +296,7 @@ module Aws::SSM
|
|
296
296
|
attr_accessor progress_counters: Types::ProgressCounters
|
297
297
|
attr_accessor alarm_configuration: Types::AlarmConfiguration
|
298
298
|
attr_accessor triggered_alarms: ::Array[Types::AlarmStateInformation]
|
299
|
+
attr_accessor target_locations_url: ::String
|
299
300
|
attr_accessor automation_subtype: ("ChangeRequest")
|
300
301
|
attr_accessor scheduled_time: ::Time
|
301
302
|
attr_accessor runbooks: ::Array[Types::Runbook]
|
@@ -342,6 +343,7 @@ module Aws::SSM
|
|
342
343
|
attr_accessor automation_type: ("CrossAccount" | "Local")
|
343
344
|
attr_accessor alarm_configuration: Types::AlarmConfiguration
|
344
345
|
attr_accessor triggered_alarms: ::Array[Types::AlarmStateInformation]
|
346
|
+
attr_accessor target_locations_url: ::String
|
345
347
|
attr_accessor automation_subtype: ("ChangeRequest")
|
346
348
|
attr_accessor scheduled_time: ::Time
|
347
349
|
attr_accessor runbooks: ::Array[Types::Runbook]
|
@@ -3841,6 +3843,7 @@ module Aws::SSM
|
|
3841
3843
|
attr_accessor target_locations: ::Array[Types::TargetLocation]
|
3842
3844
|
attr_accessor tags: ::Array[Types::Tag]
|
3843
3845
|
attr_accessor alarm_configuration: Types::AlarmConfiguration
|
3846
|
+
attr_accessor target_locations_url: ::String
|
3844
3847
|
SENSITIVE: []
|
3845
3848
|
end
|
3846
3849
|
|
@@ -3959,6 +3962,11 @@ module Aws::SSM
|
|
3959
3962
|
attr_accessor target_location_max_errors: ::String
|
3960
3963
|
attr_accessor execution_role_name: ::String
|
3961
3964
|
attr_accessor target_location_alarm_configuration: Types::AlarmConfiguration
|
3965
|
+
attr_accessor include_child_organization_units: bool
|
3966
|
+
attr_accessor exclude_accounts: ::Array[::String]
|
3967
|
+
attr_accessor targets: ::Array[Types::Target]
|
3968
|
+
attr_accessor targets_max_concurrency: ::String
|
3969
|
+
attr_accessor targets_max_errors: ::String
|
3962
3970
|
SENSITIVE: []
|
3963
3971
|
end
|
3964
3972
|
|
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.182.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: 2024-
|
11
|
+
date: 2024-09-24 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.207.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.207.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|