aws-sdk-ssm 1.142.0 → 1.144.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssm/client.rb +102 -3
- data/lib/aws-sdk-ssm/client_api.rb +2 -0
- data/lib/aws-sdk-ssm/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-ssm/endpoint_provider.rb +116 -0
- data/lib/aws-sdk-ssm/endpoints.rb +1905 -0
- data/lib/aws-sdk-ssm/plugins/endpoints.rb +338 -0
- data/lib/aws-sdk-ssm/types.rb +77 -2
- data/lib/aws-sdk-ssm.rb +5 -1
- metadata +8 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3e1f222b054c2cb6f9c4014c39882f20197f02cf5bfd6007619ea81da447f576
|
4
|
+
data.tar.gz: f3068a350d6f4b15cc245c68cc33d62c8704060238116b5be87a361da7485712
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b139f19fbd3e23eb3672f177ec51002c725d1f2478aa0c2ea9f21d1b84890bef441e381d00c3a6842fc9b5f059d5f0e32eeaf71142d8b8b88d2d26103003ef48
|
7
|
+
data.tar.gz: 943cd6e1c12b5dec846024f333db23c0b1e1043c6da40ae599e7875ad87216bea14495b4a0ab5ea6055afb4a1ab720a77b8239865e0210c25a0403d5ac252eda
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.144.0 (2022-11-07)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release includes support for applying a CloudWatch alarm to multi account multi region Systems Manager Automation
|
8
|
+
|
9
|
+
1.143.0 (2022-10-25)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.142.0 (2022-10-13)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.144.0
|
data/lib/aws-sdk-ssm/client.rb
CHANGED
@@ -30,7 +30,7 @@ require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
30
30
|
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
31
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
32
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
33
|
-
require 'aws-sdk-core/plugins/
|
33
|
+
require 'aws-sdk-core/plugins/sign.rb'
|
34
34
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
35
35
|
|
36
36
|
Aws::Plugins::GlobalConfiguration.add_identifier(:ssm)
|
@@ -79,8 +79,9 @@ module Aws::SSM
|
|
79
79
|
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
80
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
81
|
add_plugin(Aws::Plugins::RecursionDetection)
|
82
|
-
add_plugin(Aws::Plugins::
|
82
|
+
add_plugin(Aws::Plugins::Sign)
|
83
83
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
84
|
+
add_plugin(Aws::SSM::Plugins::Endpoints)
|
84
85
|
|
85
86
|
# @overload initialize(options)
|
86
87
|
# @param [Hash] options
|
@@ -297,6 +298,19 @@ module Aws::SSM
|
|
297
298
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
298
299
|
# requests are made, and retries are disabled.
|
299
300
|
#
|
301
|
+
# @option options [Aws::TokenProvider] :token_provider
|
302
|
+
# A Bearer Token Provider. This can be an instance of any one of the
|
303
|
+
# following classes:
|
304
|
+
#
|
305
|
+
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
306
|
+
# tokens.
|
307
|
+
#
|
308
|
+
# * `Aws::SSOTokenProvider` - Used for loading tokens from AWS SSO using an
|
309
|
+
# access token generated from `aws login`.
|
310
|
+
#
|
311
|
+
# When `:token_provider` is not configured directly, the `Aws::TokenProviderChain`
|
312
|
+
# will be used to search for tokens configured for your profile in shared configuration files.
|
313
|
+
#
|
300
314
|
# @option options [Boolean] :use_dualstack_endpoint
|
301
315
|
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
302
316
|
# will be used if available.
|
@@ -310,6 +324,9 @@ module Aws::SSM
|
|
310
324
|
# When `true`, request parameters are validated before
|
311
325
|
# sending the request.
|
312
326
|
#
|
327
|
+
# @option options [Aws::SSM::EndpointProvider] :endpoint_provider
|
328
|
+
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::SSM::EndpointParameters`
|
329
|
+
#
|
313
330
|
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
314
331
|
# requests through. Formatted like 'http://proxy.com:123'.
|
315
332
|
#
|
@@ -951,6 +968,14 @@ module Aws::SSM
|
|
951
968
|
# target_location_max_concurrency: "MaxConcurrency",
|
952
969
|
# target_location_max_errors: "MaxErrors",
|
953
970
|
# execution_role_name: "ExecutionRoleName",
|
971
|
+
# target_location_alarm_configuration: {
|
972
|
+
# ignore_poll_alarm_failure: false,
|
973
|
+
# alarms: [ # required
|
974
|
+
# {
|
975
|
+
# name: "AlarmName", # required
|
976
|
+
# },
|
977
|
+
# ],
|
978
|
+
# },
|
954
979
|
# },
|
955
980
|
# ],
|
956
981
|
# schedule_offset: 1,
|
@@ -1022,6 +1047,9 @@ module Aws::SSM
|
|
1022
1047
|
# resp.association_description.target_locations[0].target_location_max_concurrency #=> String
|
1023
1048
|
# resp.association_description.target_locations[0].target_location_max_errors #=> String
|
1024
1049
|
# resp.association_description.target_locations[0].execution_role_name #=> String
|
1050
|
+
# resp.association_description.target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
1051
|
+
# resp.association_description.target_locations[0].target_location_alarm_configuration.alarms #=> Array
|
1052
|
+
# resp.association_description.target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
|
1025
1053
|
# resp.association_description.schedule_offset #=> Integer
|
1026
1054
|
# resp.association_description.target_maps #=> Array
|
1027
1055
|
# resp.association_description.target_maps[0] #=> Hash
|
@@ -1103,6 +1131,14 @@ module Aws::SSM
|
|
1103
1131
|
# target_location_max_concurrency: "MaxConcurrency",
|
1104
1132
|
# target_location_max_errors: "MaxErrors",
|
1105
1133
|
# execution_role_name: "ExecutionRoleName",
|
1134
|
+
# target_location_alarm_configuration: {
|
1135
|
+
# ignore_poll_alarm_failure: false,
|
1136
|
+
# alarms: [ # required
|
1137
|
+
# {
|
1138
|
+
# name: "AlarmName", # required
|
1139
|
+
# },
|
1140
|
+
# ],
|
1141
|
+
# },
|
1106
1142
|
# },
|
1107
1143
|
# ],
|
1108
1144
|
# schedule_offset: 1,
|
@@ -1171,6 +1207,9 @@ module Aws::SSM
|
|
1171
1207
|
# resp.successful[0].target_locations[0].target_location_max_concurrency #=> String
|
1172
1208
|
# resp.successful[0].target_locations[0].target_location_max_errors #=> String
|
1173
1209
|
# resp.successful[0].target_locations[0].execution_role_name #=> String
|
1210
|
+
# resp.successful[0].target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
1211
|
+
# resp.successful[0].target_locations[0].target_location_alarm_configuration.alarms #=> Array
|
1212
|
+
# resp.successful[0].target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
|
1174
1213
|
# resp.successful[0].schedule_offset #=> Integer
|
1175
1214
|
# resp.successful[0].target_maps #=> Array
|
1176
1215
|
# resp.successful[0].target_maps[0] #=> Hash
|
@@ -1214,6 +1253,9 @@ module Aws::SSM
|
|
1214
1253
|
# resp.failed[0].entry.target_locations[0].target_location_max_concurrency #=> String
|
1215
1254
|
# resp.failed[0].entry.target_locations[0].target_location_max_errors #=> String
|
1216
1255
|
# resp.failed[0].entry.target_locations[0].execution_role_name #=> String
|
1256
|
+
# resp.failed[0].entry.target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
1257
|
+
# resp.failed[0].entry.target_locations[0].target_location_alarm_configuration.alarms #=> Array
|
1258
|
+
# resp.failed[0].entry.target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
|
1217
1259
|
# resp.failed[0].entry.schedule_offset #=> Integer
|
1218
1260
|
# resp.failed[0].entry.target_maps #=> Array
|
1219
1261
|
# resp.failed[0].entry.target_maps[0] #=> Hash
|
@@ -2713,6 +2755,9 @@ module Aws::SSM
|
|
2713
2755
|
# resp.association_description.target_locations[0].target_location_max_concurrency #=> String
|
2714
2756
|
# resp.association_description.target_locations[0].target_location_max_errors #=> String
|
2715
2757
|
# resp.association_description.target_locations[0].execution_role_name #=> String
|
2758
|
+
# resp.association_description.target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
2759
|
+
# resp.association_description.target_locations[0].target_location_alarm_configuration.alarms #=> Array
|
2760
|
+
# resp.association_description.target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
|
2716
2761
|
# resp.association_description.schedule_offset #=> Integer
|
2717
2762
|
# resp.association_description.target_maps #=> Array
|
2718
2763
|
# resp.association_description.target_maps[0] #=> Hash
|
@@ -2987,6 +3032,9 @@ module Aws::SSM
|
|
2987
3032
|
# resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].target_location_max_concurrency #=> String
|
2988
3033
|
# resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].target_location_max_errors #=> String
|
2989
3034
|
# resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].execution_role_name #=> String
|
3035
|
+
# resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
3036
|
+
# resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].target_location_alarm_configuration.alarms #=> Array
|
3037
|
+
# resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
|
2990
3038
|
# resp.automation_execution_metadata_list[0].ops_item_id #=> String
|
2991
3039
|
# resp.automation_execution_metadata_list[0].association_id #=> String
|
2992
3040
|
# resp.automation_execution_metadata_list[0].change_request_name #=> String
|
@@ -3091,6 +3139,12 @@ module Aws::SSM
|
|
3091
3139
|
# resp.step_executions[0].target_location.target_location_max_concurrency #=> String
|
3092
3140
|
# resp.step_executions[0].target_location.target_location_max_errors #=> String
|
3093
3141
|
# resp.step_executions[0].target_location.execution_role_name #=> String
|
3142
|
+
# resp.step_executions[0].target_location.target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
3143
|
+
# resp.step_executions[0].target_location.target_location_alarm_configuration.alarms #=> Array
|
3144
|
+
# resp.step_executions[0].target_location.target_location_alarm_configuration.alarms[0].name #=> String
|
3145
|
+
# resp.step_executions[0].triggered_alarms #=> Array
|
3146
|
+
# resp.step_executions[0].triggered_alarms[0].name #=> String
|
3147
|
+
# resp.step_executions[0].triggered_alarms[0].state #=> String, one of "UNKNOWN", "ALARM"
|
3094
3148
|
# resp.next_token #=> String
|
3095
3149
|
#
|
3096
3150
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAutomationStepExecutions AWS API Documentation
|
@@ -5190,6 +5244,12 @@ module Aws::SSM
|
|
5190
5244
|
# resp.automation_execution.step_executions[0].target_location.target_location_max_concurrency #=> String
|
5191
5245
|
# resp.automation_execution.step_executions[0].target_location.target_location_max_errors #=> String
|
5192
5246
|
# resp.automation_execution.step_executions[0].target_location.execution_role_name #=> String
|
5247
|
+
# resp.automation_execution.step_executions[0].target_location.target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
5248
|
+
# resp.automation_execution.step_executions[0].target_location.target_location_alarm_configuration.alarms #=> Array
|
5249
|
+
# resp.automation_execution.step_executions[0].target_location.target_location_alarm_configuration.alarms[0].name #=> String
|
5250
|
+
# resp.automation_execution.step_executions[0].triggered_alarms #=> Array
|
5251
|
+
# resp.automation_execution.step_executions[0].triggered_alarms[0].name #=> String
|
5252
|
+
# resp.automation_execution.step_executions[0].triggered_alarms[0].state #=> String, one of "UNKNOWN", "ALARM"
|
5193
5253
|
# resp.automation_execution.step_executions_truncated #=> Boolean
|
5194
5254
|
# resp.automation_execution.parameters #=> Hash
|
5195
5255
|
# resp.automation_execution.parameters["AutomationParameterKey"] #=> Array
|
@@ -5226,6 +5286,9 @@ module Aws::SSM
|
|
5226
5286
|
# resp.automation_execution.target_locations[0].target_location_max_concurrency #=> String
|
5227
5287
|
# resp.automation_execution.target_locations[0].target_location_max_errors #=> String
|
5228
5288
|
# resp.automation_execution.target_locations[0].execution_role_name #=> String
|
5289
|
+
# resp.automation_execution.target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
5290
|
+
# resp.automation_execution.target_locations[0].target_location_alarm_configuration.alarms #=> Array
|
5291
|
+
# resp.automation_execution.target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
|
5229
5292
|
# resp.automation_execution.progress_counters.total_steps #=> Integer
|
5230
5293
|
# resp.automation_execution.progress_counters.success_steps #=> Integer
|
5231
5294
|
# resp.automation_execution.progress_counters.failed_steps #=> Integer
|
@@ -5264,6 +5327,9 @@ module Aws::SSM
|
|
5264
5327
|
# resp.automation_execution.runbooks[0].target_locations[0].target_location_max_concurrency #=> String
|
5265
5328
|
# resp.automation_execution.runbooks[0].target_locations[0].target_location_max_errors #=> String
|
5266
5329
|
# resp.automation_execution.runbooks[0].target_locations[0].execution_role_name #=> String
|
5330
|
+
# resp.automation_execution.runbooks[0].target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
5331
|
+
# resp.automation_execution.runbooks[0].target_locations[0].target_location_alarm_configuration.alarms #=> Array
|
5332
|
+
# resp.automation_execution.runbooks[0].target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
|
5267
5333
|
# resp.automation_execution.ops_item_id #=> String
|
5268
5334
|
# resp.automation_execution.association_id #=> String
|
5269
5335
|
# resp.automation_execution.change_request_name #=> String
|
@@ -6972,6 +7038,9 @@ module Aws::SSM
|
|
6972
7038
|
# resp.association_versions[0].target_locations[0].target_location_max_concurrency #=> String
|
6973
7039
|
# resp.association_versions[0].target_locations[0].target_location_max_errors #=> String
|
6974
7040
|
# resp.association_versions[0].target_locations[0].execution_role_name #=> String
|
7041
|
+
# resp.association_versions[0].target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
7042
|
+
# resp.association_versions[0].target_locations[0].target_location_alarm_configuration.alarms #=> Array
|
7043
|
+
# resp.association_versions[0].target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
|
6975
7044
|
# resp.association_versions[0].schedule_offset #=> Integer
|
6976
7045
|
# resp.association_versions[0].target_maps #=> Array
|
6977
7046
|
# resp.association_versions[0].target_maps[0] #=> Hash
|
@@ -9657,6 +9726,14 @@ module Aws::SSM
|
|
9657
9726
|
# target_location_max_concurrency: "MaxConcurrency",
|
9658
9727
|
# target_location_max_errors: "MaxErrors",
|
9659
9728
|
# execution_role_name: "ExecutionRoleName",
|
9729
|
+
# target_location_alarm_configuration: {
|
9730
|
+
# ignore_poll_alarm_failure: false,
|
9731
|
+
# alarms: [ # required
|
9732
|
+
# {
|
9733
|
+
# name: "AlarmName", # required
|
9734
|
+
# },
|
9735
|
+
# ],
|
9736
|
+
# },
|
9660
9737
|
# },
|
9661
9738
|
# ],
|
9662
9739
|
# tags: [
|
@@ -9814,6 +9891,14 @@ module Aws::SSM
|
|
9814
9891
|
# target_location_max_concurrency: "MaxConcurrency",
|
9815
9892
|
# target_location_max_errors: "MaxErrors",
|
9816
9893
|
# execution_role_name: "ExecutionRoleName",
|
9894
|
+
# target_location_alarm_configuration: {
|
9895
|
+
# ignore_poll_alarm_failure: false,
|
9896
|
+
# alarms: [ # required
|
9897
|
+
# {
|
9898
|
+
# name: "AlarmName", # required
|
9899
|
+
# },
|
9900
|
+
# ],
|
9901
|
+
# },
|
9817
9902
|
# },
|
9818
9903
|
# ],
|
9819
9904
|
# },
|
@@ -10267,6 +10352,14 @@ module Aws::SSM
|
|
10267
10352
|
# target_location_max_concurrency: "MaxConcurrency",
|
10268
10353
|
# target_location_max_errors: "MaxErrors",
|
10269
10354
|
# execution_role_name: "ExecutionRoleName",
|
10355
|
+
# target_location_alarm_configuration: {
|
10356
|
+
# ignore_poll_alarm_failure: false,
|
10357
|
+
# alarms: [ # required
|
10358
|
+
# {
|
10359
|
+
# name: "AlarmName", # required
|
10360
|
+
# },
|
10361
|
+
# ],
|
10362
|
+
# },
|
10270
10363
|
# },
|
10271
10364
|
# ],
|
10272
10365
|
# schedule_offset: 1,
|
@@ -10332,6 +10425,9 @@ module Aws::SSM
|
|
10332
10425
|
# resp.association_description.target_locations[0].target_location_max_concurrency #=> String
|
10333
10426
|
# resp.association_description.target_locations[0].target_location_max_errors #=> String
|
10334
10427
|
# resp.association_description.target_locations[0].execution_role_name #=> String
|
10428
|
+
# resp.association_description.target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
10429
|
+
# resp.association_description.target_locations[0].target_location_alarm_configuration.alarms #=> Array
|
10430
|
+
# resp.association_description.target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
|
10335
10431
|
# resp.association_description.schedule_offset #=> Integer
|
10336
10432
|
# resp.association_description.target_maps #=> Array
|
10337
10433
|
# resp.association_description.target_maps[0] #=> Hash
|
@@ -10434,6 +10530,9 @@ module Aws::SSM
|
|
10434
10530
|
# resp.association_description.target_locations[0].target_location_max_concurrency #=> String
|
10435
10531
|
# resp.association_description.target_locations[0].target_location_max_errors #=> String
|
10436
10532
|
# resp.association_description.target_locations[0].execution_role_name #=> String
|
10533
|
+
# resp.association_description.target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
10534
|
+
# resp.association_description.target_locations[0].target_location_alarm_configuration.alarms #=> Array
|
10535
|
+
# resp.association_description.target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
|
10437
10536
|
# resp.association_description.schedule_offset #=> Integer
|
10438
10537
|
# resp.association_description.target_maps #=> Array
|
10439
10538
|
# resp.association_description.target_maps[0] #=> Hash
|
@@ -11827,7 +11926,7 @@ module Aws::SSM
|
|
11827
11926
|
params: params,
|
11828
11927
|
config: config)
|
11829
11928
|
context[:gem_name] = 'aws-sdk-ssm'
|
11830
|
-
context[:gem_version] = '1.
|
11929
|
+
context[:gem_version] = '1.144.0'
|
11831
11930
|
Seahorse::Client::Request.new(handlers, context)
|
11832
11931
|
end
|
11833
11932
|
|
@@ -4295,6 +4295,7 @@ module Aws::SSM
|
|
4295
4295
|
StepExecution.add_member(:valid_next_steps, Shapes::ShapeRef.new(shape: ValidNextStepList, location_name: "ValidNextSteps"))
|
4296
4296
|
StepExecution.add_member(:targets, Shapes::ShapeRef.new(shape: Targets, location_name: "Targets", metadata: {"box"=>true}))
|
4297
4297
|
StepExecution.add_member(:target_location, Shapes::ShapeRef.new(shape: TargetLocation, location_name: "TargetLocation", metadata: {"box"=>true}))
|
4298
|
+
StepExecution.add_member(:triggered_alarms, Shapes::ShapeRef.new(shape: AlarmStateInformationList, location_name: "TriggeredAlarms"))
|
4298
4299
|
StepExecution.struct_class = Types::StepExecution
|
4299
4300
|
|
4300
4301
|
StepExecutionFilter.add_member(:key, Shapes::ShapeRef.new(shape: StepExecutionFilterKey, required: true, location_name: "Key"))
|
@@ -4336,6 +4337,7 @@ module Aws::SSM
|
|
4336
4337
|
TargetLocation.add_member(:target_location_max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "TargetLocationMaxConcurrency", metadata: {"box"=>true}))
|
4337
4338
|
TargetLocation.add_member(:target_location_max_errors, Shapes::ShapeRef.new(shape: MaxErrors, location_name: "TargetLocationMaxErrors", metadata: {"box"=>true}))
|
4338
4339
|
TargetLocation.add_member(:execution_role_name, Shapes::ShapeRef.new(shape: ExecutionRoleName, location_name: "ExecutionRoleName", metadata: {"box"=>true}))
|
4340
|
+
TargetLocation.add_member(:target_location_alarm_configuration, Shapes::ShapeRef.new(shape: AlarmConfiguration, location_name: "TargetLocationAlarmConfiguration", metadata: {"box"=>true}))
|
4339
4341
|
TargetLocation.struct_class = Types::TargetLocation
|
4340
4342
|
|
4341
4343
|
TargetLocations.member = Shapes::ShapeRef.new(shape: TargetLocation)
|
@@ -0,0 +1,66 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
4
|
+
#
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
|
+
#
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
9
|
+
|
10
|
+
module Aws::SSM
|
11
|
+
# Endpoint parameters used to influence endpoints per request.
|
12
|
+
#
|
13
|
+
# @!attribute region
|
14
|
+
# The AWS region used to dispatch the request.
|
15
|
+
#
|
16
|
+
# @return [String]
|
17
|
+
#
|
18
|
+
# @!attribute use_dual_stack
|
19
|
+
# When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
|
20
|
+
#
|
21
|
+
# @return [Boolean]
|
22
|
+
#
|
23
|
+
# @!attribute use_fips
|
24
|
+
# When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
|
25
|
+
#
|
26
|
+
# @return [Boolean]
|
27
|
+
#
|
28
|
+
# @!attribute endpoint
|
29
|
+
# Override the endpoint used to send this request
|
30
|
+
#
|
31
|
+
# @return [String]
|
32
|
+
#
|
33
|
+
EndpointParameters = Struct.new(
|
34
|
+
:region,
|
35
|
+
:use_dual_stack,
|
36
|
+
:use_fips,
|
37
|
+
:endpoint,
|
38
|
+
) do
|
39
|
+
include Aws::Structure
|
40
|
+
|
41
|
+
# @api private
|
42
|
+
class << self
|
43
|
+
PARAM_MAP = {
|
44
|
+
'Region' => :region,
|
45
|
+
'UseDualStack' => :use_dual_stack,
|
46
|
+
'UseFIPS' => :use_fips,
|
47
|
+
'Endpoint' => :endpoint,
|
48
|
+
}.freeze
|
49
|
+
end
|
50
|
+
|
51
|
+
def initialize(options = {})
|
52
|
+
self[:region] = options[:region]
|
53
|
+
self[:use_dual_stack] = options[:use_dual_stack]
|
54
|
+
self[:use_dual_stack] = false if self[:use_dual_stack].nil?
|
55
|
+
if self[:use_dual_stack].nil?
|
56
|
+
raise ArgumentError, "Missing required EndpointParameter: :use_dual_stack"
|
57
|
+
end
|
58
|
+
self[:use_fips] = options[:use_fips]
|
59
|
+
self[:use_fips] = false if self[:use_fips].nil?
|
60
|
+
if self[:use_fips].nil?
|
61
|
+
raise ArgumentError, "Missing required EndpointParameter: :use_fips"
|
62
|
+
end
|
63
|
+
self[:endpoint] = options[:endpoint]
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
@@ -0,0 +1,116 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
4
|
+
#
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
|
+
#
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
9
|
+
|
10
|
+
module Aws::SSM
|
11
|
+
class EndpointProvider
|
12
|
+
def initialize(rule_set = nil)
|
13
|
+
@@rule_set ||= begin
|
14
|
+
endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
|
15
|
+
Aws::Endpoints::RuleSet.new(
|
16
|
+
version: endpoint_rules['version'],
|
17
|
+
service_id: endpoint_rules['serviceId'],
|
18
|
+
parameters: endpoint_rules['parameters'],
|
19
|
+
rules: endpoint_rules['rules']
|
20
|
+
)
|
21
|
+
end
|
22
|
+
@provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
|
23
|
+
end
|
24
|
+
|
25
|
+
def resolve_endpoint(parameters)
|
26
|
+
@provider.resolve_endpoint(parameters)
|
27
|
+
end
|
28
|
+
|
29
|
+
# @api private
|
30
|
+
RULES = <<-JSON
|
31
|
+
eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
|
32
|
+
bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
|
33
|
+
dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
|
34
|
+
cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
|
35
|
+
dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
|
36
|
+
ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
|
37
|
+
ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
|
38
|
+
ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
|
39
|
+
aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
|
40
|
+
OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
|
41
|
+
UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
|
42
|
+
dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
|
43
|
+
UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
|
44
|
+
dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
|
45
|
+
ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
|
46
|
+
IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
|
47
|
+
aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
|
48
|
+
bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
|
49
|
+
ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
|
50
|
+
Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
|
51
|
+
cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
|
52
|
+
InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
|
53
|
+
aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
|
54
|
+
cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
|
55
|
+
InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
|
56
|
+
W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
|
57
|
+
UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
|
58
|
+
SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
|
59
|
+
eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
|
60
|
+
InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
|
61
|
+
LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
|
62
|
+
ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
|
63
|
+
b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
|
64
|
+
fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
|
65
|
+
RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
|
66
|
+
ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
|
67
|
+
ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
|
68
|
+
ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
|
69
|
+
dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
70
|
+
dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
|
71
|
+
Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
|
72
|
+
In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
|
73
|
+
YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
|
74
|
+
YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
|
75
|
+
cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
|
76
|
+
dCI6eyJ1cmwiOiJodHRwczovL3NzbS1maXBzLntSZWdpb259LntQYXJ0aXRp
|
77
|
+
b25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9
|
78
|
+
LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRp
|
79
|
+
b25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sgYXJlIGVuYWJs
|
80
|
+
ZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IG9uZSBv
|
81
|
+
ciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZu
|
82
|
+
IjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0
|
83
|
+
cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
|
84
|
+
eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0
|
85
|
+
QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBw
|
86
|
+
b3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
87
|
+
dGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25z
|
88
|
+
IjpbeyJmbiI6InN0cmluZ0VxdWFscyIsImFyZ3YiOlsiYXdzLXVzLWdvdiIs
|
89
|
+
eyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1
|
90
|
+
bHQifSwibmFtZSJdfV19XSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9z
|
91
|
+
c20ue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJv
|
92
|
+
cGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In0s
|
93
|
+
eyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9z
|
94
|
+
c20tZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0i
|
95
|
+
LCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9p
|
96
|
+
bnQifV19XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGlzIGVu
|
97
|
+
YWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgRklQ
|
98
|
+
UyIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJv
|
99
|
+
b2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0
|
100
|
+
cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
|
101
|
+
eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0
|
102
|
+
QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBw
|
103
|
+
b3J0c0R1YWxTdGFjayJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
|
104
|
+
Y29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vc3Nt
|
105
|
+
LntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4
|
106
|
+
fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRw
|
107
|
+
b2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sg
|
108
|
+
aXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9y
|
109
|
+
dCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6
|
110
|
+
W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vc3NtLntSZWdpb259LntQ
|
111
|
+
YXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJo
|
112
|
+
ZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfQ==
|
113
|
+
|
114
|
+
JSON
|
115
|
+
end
|
116
|
+
end
|