aws-sdk-ssm 1.173.0 → 1.196.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 +115 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssm/client.rb +1064 -190
- data/lib/aws-sdk-ssm/client_api.rb +497 -151
- data/lib/aws-sdk-ssm/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-ssm/endpoint_provider.rb +14 -18
- data/lib/aws-sdk-ssm/endpoints.rb +2 -1958
- data/lib/aws-sdk-ssm/errors.rb +115 -0
- data/lib/aws-sdk-ssm/plugins/endpoints.rb +19 -292
- data/lib/aws-sdk-ssm/types.rb +1398 -265
- data/lib/aws-sdk-ssm.rb +16 -12
- data/sig/client.rbs +222 -12
- data/sig/errors.rbs +22 -0
- data/sig/resource.rbs +4 -0
- data/sig/types.rbs +247 -12
- metadata +6 -9
data/lib/aws-sdk-ssm/errors.rb
CHANGED
@@ -27,6 +27,7 @@ module Aws::SSM
|
|
27
27
|
# See {Seahorse::Client::RequestContext} for more information.
|
28
28
|
#
|
29
29
|
# ## Error Classes
|
30
|
+
# * {AccessDeniedException}
|
30
31
|
# * {AlreadyExistsException}
|
31
32
|
# * {AssociatedInstances}
|
32
33
|
# * {AssociationAlreadyExists}
|
@@ -145,11 +146,13 @@ module Aws::SSM
|
|
145
146
|
# * {ResourcePolicyInvalidParameterException}
|
146
147
|
# * {ResourcePolicyLimitExceededException}
|
147
148
|
# * {ResourcePolicyNotFoundException}
|
149
|
+
# * {ServiceQuotaExceededException}
|
148
150
|
# * {ServiceSettingNotFound}
|
149
151
|
# * {StatusUnchanged}
|
150
152
|
# * {SubTypeCountLimitExceededException}
|
151
153
|
# * {TargetInUseException}
|
152
154
|
# * {TargetNotConnected}
|
155
|
+
# * {ThrottlingException}
|
153
156
|
# * {TooManyTagsError}
|
154
157
|
# * {TooManyUpdates}
|
155
158
|
# * {TotalSizeLimitExceededException}
|
@@ -158,8 +161,10 @@ module Aws::SSM
|
|
158
161
|
# * {UnsupportedInventoryItemContextException}
|
159
162
|
# * {UnsupportedInventorySchemaVersionException}
|
160
163
|
# * {UnsupportedOperatingSystem}
|
164
|
+
# * {UnsupportedOperationException}
|
161
165
|
# * {UnsupportedParameterType}
|
162
166
|
# * {UnsupportedPlatformType}
|
167
|
+
# * {ValidationException}
|
163
168
|
#
|
164
169
|
# Additionally, error classes are dynamically generated for service errors based on the error code
|
165
170
|
# if they are not defined above.
|
@@ -167,6 +172,21 @@ module Aws::SSM
|
|
167
172
|
|
168
173
|
extend Aws::Errors::DynamicErrors
|
169
174
|
|
175
|
+
class AccessDeniedException < ServiceError
|
176
|
+
|
177
|
+
# @param [Seahorse::Client::RequestContext] context
|
178
|
+
# @param [String] message
|
179
|
+
# @param [Aws::SSM::Types::AccessDeniedException] data
|
180
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
181
|
+
super(context, message, data)
|
182
|
+
end
|
183
|
+
|
184
|
+
# @return [String]
|
185
|
+
def message
|
186
|
+
@message || @data[:message]
|
187
|
+
end
|
188
|
+
end
|
189
|
+
|
170
190
|
class AlreadyExistsException < ServiceError
|
171
191
|
|
172
192
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -1952,6 +1972,41 @@ module Aws::SSM
|
|
1952
1972
|
end
|
1953
1973
|
end
|
1954
1974
|
|
1975
|
+
class ServiceQuotaExceededException < ServiceError
|
1976
|
+
|
1977
|
+
# @param [Seahorse::Client::RequestContext] context
|
1978
|
+
# @param [String] message
|
1979
|
+
# @param [Aws::SSM::Types::ServiceQuotaExceededException] data
|
1980
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1981
|
+
super(context, message, data)
|
1982
|
+
end
|
1983
|
+
|
1984
|
+
# @return [String]
|
1985
|
+
def message
|
1986
|
+
@message || @data[:message]
|
1987
|
+
end
|
1988
|
+
|
1989
|
+
# @return [String]
|
1990
|
+
def resource_id
|
1991
|
+
@data[:resource_id]
|
1992
|
+
end
|
1993
|
+
|
1994
|
+
# @return [String]
|
1995
|
+
def resource_type
|
1996
|
+
@data[:resource_type]
|
1997
|
+
end
|
1998
|
+
|
1999
|
+
# @return [String]
|
2000
|
+
def quota_code
|
2001
|
+
@data[:quota_code]
|
2002
|
+
end
|
2003
|
+
|
2004
|
+
# @return [String]
|
2005
|
+
def service_code
|
2006
|
+
@data[:service_code]
|
2007
|
+
end
|
2008
|
+
end
|
2009
|
+
|
1955
2010
|
class ServiceSettingNotFound < ServiceError
|
1956
2011
|
|
1957
2012
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -2022,6 +2077,31 @@ module Aws::SSM
|
|
2022
2077
|
end
|
2023
2078
|
end
|
2024
2079
|
|
2080
|
+
class ThrottlingException < ServiceError
|
2081
|
+
|
2082
|
+
# @param [Seahorse::Client::RequestContext] context
|
2083
|
+
# @param [String] message
|
2084
|
+
# @param [Aws::SSM::Types::ThrottlingException] data
|
2085
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
2086
|
+
super(context, message, data)
|
2087
|
+
end
|
2088
|
+
|
2089
|
+
# @return [String]
|
2090
|
+
def message
|
2091
|
+
@message || @data[:message]
|
2092
|
+
end
|
2093
|
+
|
2094
|
+
# @return [String]
|
2095
|
+
def quota_code
|
2096
|
+
@data[:quota_code]
|
2097
|
+
end
|
2098
|
+
|
2099
|
+
# @return [String]
|
2100
|
+
def service_code
|
2101
|
+
@data[:service_code]
|
2102
|
+
end
|
2103
|
+
end
|
2104
|
+
|
2025
2105
|
class TooManyTagsError < ServiceError
|
2026
2106
|
|
2027
2107
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -2142,6 +2222,21 @@ module Aws::SSM
|
|
2142
2222
|
end
|
2143
2223
|
end
|
2144
2224
|
|
2225
|
+
class UnsupportedOperationException < ServiceError
|
2226
|
+
|
2227
|
+
# @param [Seahorse::Client::RequestContext] context
|
2228
|
+
# @param [String] message
|
2229
|
+
# @param [Aws::SSM::Types::UnsupportedOperationException] data
|
2230
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
2231
|
+
super(context, message, data)
|
2232
|
+
end
|
2233
|
+
|
2234
|
+
# @return [String]
|
2235
|
+
def message
|
2236
|
+
@message || @data[:message]
|
2237
|
+
end
|
2238
|
+
end
|
2239
|
+
|
2145
2240
|
class UnsupportedParameterType < ServiceError
|
2146
2241
|
|
2147
2242
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -2172,5 +2267,25 @@ module Aws::SSM
|
|
2172
2267
|
end
|
2173
2268
|
end
|
2174
2269
|
|
2270
|
+
class ValidationException < ServiceError
|
2271
|
+
|
2272
|
+
# @param [Seahorse::Client::RequestContext] context
|
2273
|
+
# @param [String] message
|
2274
|
+
# @param [Aws::SSM::Types::ValidationException] data
|
2275
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
2276
|
+
super(context, message, data)
|
2277
|
+
end
|
2278
|
+
|
2279
|
+
# @return [String]
|
2280
|
+
def message
|
2281
|
+
@message || @data[:message]
|
2282
|
+
end
|
2283
|
+
|
2284
|
+
# @return [String]
|
2285
|
+
def reason_code
|
2286
|
+
@data[:reason_code]
|
2287
|
+
end
|
2288
|
+
end
|
2289
|
+
|
2175
2290
|
end
|
2176
2291
|
end
|
@@ -15,11 +15,11 @@ module Aws::SSM
|
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::SSM::EndpointProvider',
|
17
17
|
rbs_type: 'untyped',
|
18
|
-
docstring:
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
18
|
+
docstring: <<~DOCS) do |_cfg|
|
19
|
+
The endpoint provider used to resolve endpoints. Any object that responds to
|
20
|
+
`#resolve_endpoint(parameters)` where `parameters` is a Struct similar to
|
21
|
+
`Aws::SSM::EndpointParameters`.
|
22
|
+
DOCS
|
23
23
|
Aws::SSM::EndpointProvider.new
|
24
24
|
end
|
25
25
|
|
@@ -27,7 +27,7 @@ module Aws::SSM
|
|
27
27
|
class Handler < Seahorse::Client::Handler
|
28
28
|
def call(context)
|
29
29
|
unless context[:discovered_endpoint]
|
30
|
-
params = parameters_for_operation(context)
|
30
|
+
params = Aws::SSM::Endpoints.parameters_for_operation(context)
|
31
31
|
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
32
|
|
33
33
|
context.http_request.endpoint = endpoint.url
|
@@ -40,11 +40,23 @@ module Aws::SSM
|
|
40
40
|
context[:auth_scheme] =
|
41
41
|
Aws::Endpoints.resolve_auth_scheme(context, endpoint)
|
42
42
|
|
43
|
-
@handler.call(context)
|
43
|
+
with_metrics(context) { @handler.call(context) }
|
44
44
|
end
|
45
45
|
|
46
46
|
private
|
47
47
|
|
48
|
+
def with_metrics(context, &block)
|
49
|
+
metrics = []
|
50
|
+
metrics << 'ENDPOINT_OVERRIDE' unless context.config.regional_endpoint
|
51
|
+
if context[:auth_scheme] && context[:auth_scheme]['name'] == 'sigv4a'
|
52
|
+
metrics << 'SIGV4A_SIGNING'
|
53
|
+
end
|
54
|
+
if context.config.credentials&.credentials&.account_id
|
55
|
+
metrics << 'RESOLVED_ACCOUNT_ID'
|
56
|
+
end
|
57
|
+
Aws::Plugins::UserAgent.metric(*metrics, &block)
|
58
|
+
end
|
59
|
+
|
48
60
|
def apply_endpoint_headers(context, headers)
|
49
61
|
headers.each do |key, values|
|
50
62
|
value = values
|
@@ -55,291 +67,6 @@ module Aws::SSM
|
|
55
67
|
context.http_request.headers[key] = value
|
56
68
|
end
|
57
69
|
end
|
58
|
-
|
59
|
-
def parameters_for_operation(context)
|
60
|
-
case context.operation_name
|
61
|
-
when :add_tags_to_resource
|
62
|
-
Aws::SSM::Endpoints::AddTagsToResource.build(context)
|
63
|
-
when :associate_ops_item_related_item
|
64
|
-
Aws::SSM::Endpoints::AssociateOpsItemRelatedItem.build(context)
|
65
|
-
when :cancel_command
|
66
|
-
Aws::SSM::Endpoints::CancelCommand.build(context)
|
67
|
-
when :cancel_maintenance_window_execution
|
68
|
-
Aws::SSM::Endpoints::CancelMaintenanceWindowExecution.build(context)
|
69
|
-
when :create_activation
|
70
|
-
Aws::SSM::Endpoints::CreateActivation.build(context)
|
71
|
-
when :create_association
|
72
|
-
Aws::SSM::Endpoints::CreateAssociation.build(context)
|
73
|
-
when :create_association_batch
|
74
|
-
Aws::SSM::Endpoints::CreateAssociationBatch.build(context)
|
75
|
-
when :create_document
|
76
|
-
Aws::SSM::Endpoints::CreateDocument.build(context)
|
77
|
-
when :create_maintenance_window
|
78
|
-
Aws::SSM::Endpoints::CreateMaintenanceWindow.build(context)
|
79
|
-
when :create_ops_item
|
80
|
-
Aws::SSM::Endpoints::CreateOpsItem.build(context)
|
81
|
-
when :create_ops_metadata
|
82
|
-
Aws::SSM::Endpoints::CreateOpsMetadata.build(context)
|
83
|
-
when :create_patch_baseline
|
84
|
-
Aws::SSM::Endpoints::CreatePatchBaseline.build(context)
|
85
|
-
when :create_resource_data_sync
|
86
|
-
Aws::SSM::Endpoints::CreateResourceDataSync.build(context)
|
87
|
-
when :delete_activation
|
88
|
-
Aws::SSM::Endpoints::DeleteActivation.build(context)
|
89
|
-
when :delete_association
|
90
|
-
Aws::SSM::Endpoints::DeleteAssociation.build(context)
|
91
|
-
when :delete_document
|
92
|
-
Aws::SSM::Endpoints::DeleteDocument.build(context)
|
93
|
-
when :delete_inventory
|
94
|
-
Aws::SSM::Endpoints::DeleteInventory.build(context)
|
95
|
-
when :delete_maintenance_window
|
96
|
-
Aws::SSM::Endpoints::DeleteMaintenanceWindow.build(context)
|
97
|
-
when :delete_ops_item
|
98
|
-
Aws::SSM::Endpoints::DeleteOpsItem.build(context)
|
99
|
-
when :delete_ops_metadata
|
100
|
-
Aws::SSM::Endpoints::DeleteOpsMetadata.build(context)
|
101
|
-
when :delete_parameter
|
102
|
-
Aws::SSM::Endpoints::DeleteParameter.build(context)
|
103
|
-
when :delete_parameters
|
104
|
-
Aws::SSM::Endpoints::DeleteParameters.build(context)
|
105
|
-
when :delete_patch_baseline
|
106
|
-
Aws::SSM::Endpoints::DeletePatchBaseline.build(context)
|
107
|
-
when :delete_resource_data_sync
|
108
|
-
Aws::SSM::Endpoints::DeleteResourceDataSync.build(context)
|
109
|
-
when :delete_resource_policy
|
110
|
-
Aws::SSM::Endpoints::DeleteResourcePolicy.build(context)
|
111
|
-
when :deregister_managed_instance
|
112
|
-
Aws::SSM::Endpoints::DeregisterManagedInstance.build(context)
|
113
|
-
when :deregister_patch_baseline_for_patch_group
|
114
|
-
Aws::SSM::Endpoints::DeregisterPatchBaselineForPatchGroup.build(context)
|
115
|
-
when :deregister_target_from_maintenance_window
|
116
|
-
Aws::SSM::Endpoints::DeregisterTargetFromMaintenanceWindow.build(context)
|
117
|
-
when :deregister_task_from_maintenance_window
|
118
|
-
Aws::SSM::Endpoints::DeregisterTaskFromMaintenanceWindow.build(context)
|
119
|
-
when :describe_activations
|
120
|
-
Aws::SSM::Endpoints::DescribeActivations.build(context)
|
121
|
-
when :describe_association
|
122
|
-
Aws::SSM::Endpoints::DescribeAssociation.build(context)
|
123
|
-
when :describe_association_execution_targets
|
124
|
-
Aws::SSM::Endpoints::DescribeAssociationExecutionTargets.build(context)
|
125
|
-
when :describe_association_executions
|
126
|
-
Aws::SSM::Endpoints::DescribeAssociationExecutions.build(context)
|
127
|
-
when :describe_automation_executions
|
128
|
-
Aws::SSM::Endpoints::DescribeAutomationExecutions.build(context)
|
129
|
-
when :describe_automation_step_executions
|
130
|
-
Aws::SSM::Endpoints::DescribeAutomationStepExecutions.build(context)
|
131
|
-
when :describe_available_patches
|
132
|
-
Aws::SSM::Endpoints::DescribeAvailablePatches.build(context)
|
133
|
-
when :describe_document
|
134
|
-
Aws::SSM::Endpoints::DescribeDocument.build(context)
|
135
|
-
when :describe_document_permission
|
136
|
-
Aws::SSM::Endpoints::DescribeDocumentPermission.build(context)
|
137
|
-
when :describe_effective_instance_associations
|
138
|
-
Aws::SSM::Endpoints::DescribeEffectiveInstanceAssociations.build(context)
|
139
|
-
when :describe_effective_patches_for_patch_baseline
|
140
|
-
Aws::SSM::Endpoints::DescribeEffectivePatchesForPatchBaseline.build(context)
|
141
|
-
when :describe_instance_associations_status
|
142
|
-
Aws::SSM::Endpoints::DescribeInstanceAssociationsStatus.build(context)
|
143
|
-
when :describe_instance_information
|
144
|
-
Aws::SSM::Endpoints::DescribeInstanceInformation.build(context)
|
145
|
-
when :describe_instance_patch_states
|
146
|
-
Aws::SSM::Endpoints::DescribeInstancePatchStates.build(context)
|
147
|
-
when :describe_instance_patch_states_for_patch_group
|
148
|
-
Aws::SSM::Endpoints::DescribeInstancePatchStatesForPatchGroup.build(context)
|
149
|
-
when :describe_instance_patches
|
150
|
-
Aws::SSM::Endpoints::DescribeInstancePatches.build(context)
|
151
|
-
when :describe_instance_properties
|
152
|
-
Aws::SSM::Endpoints::DescribeInstanceProperties.build(context)
|
153
|
-
when :describe_inventory_deletions
|
154
|
-
Aws::SSM::Endpoints::DescribeInventoryDeletions.build(context)
|
155
|
-
when :describe_maintenance_window_execution_task_invocations
|
156
|
-
Aws::SSM::Endpoints::DescribeMaintenanceWindowExecutionTaskInvocations.build(context)
|
157
|
-
when :describe_maintenance_window_execution_tasks
|
158
|
-
Aws::SSM::Endpoints::DescribeMaintenanceWindowExecutionTasks.build(context)
|
159
|
-
when :describe_maintenance_window_executions
|
160
|
-
Aws::SSM::Endpoints::DescribeMaintenanceWindowExecutions.build(context)
|
161
|
-
when :describe_maintenance_window_schedule
|
162
|
-
Aws::SSM::Endpoints::DescribeMaintenanceWindowSchedule.build(context)
|
163
|
-
when :describe_maintenance_window_targets
|
164
|
-
Aws::SSM::Endpoints::DescribeMaintenanceWindowTargets.build(context)
|
165
|
-
when :describe_maintenance_window_tasks
|
166
|
-
Aws::SSM::Endpoints::DescribeMaintenanceWindowTasks.build(context)
|
167
|
-
when :describe_maintenance_windows
|
168
|
-
Aws::SSM::Endpoints::DescribeMaintenanceWindows.build(context)
|
169
|
-
when :describe_maintenance_windows_for_target
|
170
|
-
Aws::SSM::Endpoints::DescribeMaintenanceWindowsForTarget.build(context)
|
171
|
-
when :describe_ops_items
|
172
|
-
Aws::SSM::Endpoints::DescribeOpsItems.build(context)
|
173
|
-
when :describe_parameters
|
174
|
-
Aws::SSM::Endpoints::DescribeParameters.build(context)
|
175
|
-
when :describe_patch_baselines
|
176
|
-
Aws::SSM::Endpoints::DescribePatchBaselines.build(context)
|
177
|
-
when :describe_patch_group_state
|
178
|
-
Aws::SSM::Endpoints::DescribePatchGroupState.build(context)
|
179
|
-
when :describe_patch_groups
|
180
|
-
Aws::SSM::Endpoints::DescribePatchGroups.build(context)
|
181
|
-
when :describe_patch_properties
|
182
|
-
Aws::SSM::Endpoints::DescribePatchProperties.build(context)
|
183
|
-
when :describe_sessions
|
184
|
-
Aws::SSM::Endpoints::DescribeSessions.build(context)
|
185
|
-
when :disassociate_ops_item_related_item
|
186
|
-
Aws::SSM::Endpoints::DisassociateOpsItemRelatedItem.build(context)
|
187
|
-
when :get_automation_execution
|
188
|
-
Aws::SSM::Endpoints::GetAutomationExecution.build(context)
|
189
|
-
when :get_calendar_state
|
190
|
-
Aws::SSM::Endpoints::GetCalendarState.build(context)
|
191
|
-
when :get_command_invocation
|
192
|
-
Aws::SSM::Endpoints::GetCommandInvocation.build(context)
|
193
|
-
when :get_connection_status
|
194
|
-
Aws::SSM::Endpoints::GetConnectionStatus.build(context)
|
195
|
-
when :get_default_patch_baseline
|
196
|
-
Aws::SSM::Endpoints::GetDefaultPatchBaseline.build(context)
|
197
|
-
when :get_deployable_patch_snapshot_for_instance
|
198
|
-
Aws::SSM::Endpoints::GetDeployablePatchSnapshotForInstance.build(context)
|
199
|
-
when :get_document
|
200
|
-
Aws::SSM::Endpoints::GetDocument.build(context)
|
201
|
-
when :get_inventory
|
202
|
-
Aws::SSM::Endpoints::GetInventory.build(context)
|
203
|
-
when :get_inventory_schema
|
204
|
-
Aws::SSM::Endpoints::GetInventorySchema.build(context)
|
205
|
-
when :get_maintenance_window
|
206
|
-
Aws::SSM::Endpoints::GetMaintenanceWindow.build(context)
|
207
|
-
when :get_maintenance_window_execution
|
208
|
-
Aws::SSM::Endpoints::GetMaintenanceWindowExecution.build(context)
|
209
|
-
when :get_maintenance_window_execution_task
|
210
|
-
Aws::SSM::Endpoints::GetMaintenanceWindowExecutionTask.build(context)
|
211
|
-
when :get_maintenance_window_execution_task_invocation
|
212
|
-
Aws::SSM::Endpoints::GetMaintenanceWindowExecutionTaskInvocation.build(context)
|
213
|
-
when :get_maintenance_window_task
|
214
|
-
Aws::SSM::Endpoints::GetMaintenanceWindowTask.build(context)
|
215
|
-
when :get_ops_item
|
216
|
-
Aws::SSM::Endpoints::GetOpsItem.build(context)
|
217
|
-
when :get_ops_metadata
|
218
|
-
Aws::SSM::Endpoints::GetOpsMetadata.build(context)
|
219
|
-
when :get_ops_summary
|
220
|
-
Aws::SSM::Endpoints::GetOpsSummary.build(context)
|
221
|
-
when :get_parameter
|
222
|
-
Aws::SSM::Endpoints::GetParameter.build(context)
|
223
|
-
when :get_parameter_history
|
224
|
-
Aws::SSM::Endpoints::GetParameterHistory.build(context)
|
225
|
-
when :get_parameters
|
226
|
-
Aws::SSM::Endpoints::GetParameters.build(context)
|
227
|
-
when :get_parameters_by_path
|
228
|
-
Aws::SSM::Endpoints::GetParametersByPath.build(context)
|
229
|
-
when :get_patch_baseline
|
230
|
-
Aws::SSM::Endpoints::GetPatchBaseline.build(context)
|
231
|
-
when :get_patch_baseline_for_patch_group
|
232
|
-
Aws::SSM::Endpoints::GetPatchBaselineForPatchGroup.build(context)
|
233
|
-
when :get_resource_policies
|
234
|
-
Aws::SSM::Endpoints::GetResourcePolicies.build(context)
|
235
|
-
when :get_service_setting
|
236
|
-
Aws::SSM::Endpoints::GetServiceSetting.build(context)
|
237
|
-
when :label_parameter_version
|
238
|
-
Aws::SSM::Endpoints::LabelParameterVersion.build(context)
|
239
|
-
when :list_association_versions
|
240
|
-
Aws::SSM::Endpoints::ListAssociationVersions.build(context)
|
241
|
-
when :list_associations
|
242
|
-
Aws::SSM::Endpoints::ListAssociations.build(context)
|
243
|
-
when :list_command_invocations
|
244
|
-
Aws::SSM::Endpoints::ListCommandInvocations.build(context)
|
245
|
-
when :list_commands
|
246
|
-
Aws::SSM::Endpoints::ListCommands.build(context)
|
247
|
-
when :list_compliance_items
|
248
|
-
Aws::SSM::Endpoints::ListComplianceItems.build(context)
|
249
|
-
when :list_compliance_summaries
|
250
|
-
Aws::SSM::Endpoints::ListComplianceSummaries.build(context)
|
251
|
-
when :list_document_metadata_history
|
252
|
-
Aws::SSM::Endpoints::ListDocumentMetadataHistory.build(context)
|
253
|
-
when :list_document_versions
|
254
|
-
Aws::SSM::Endpoints::ListDocumentVersions.build(context)
|
255
|
-
when :list_documents
|
256
|
-
Aws::SSM::Endpoints::ListDocuments.build(context)
|
257
|
-
when :list_inventory_entries
|
258
|
-
Aws::SSM::Endpoints::ListInventoryEntries.build(context)
|
259
|
-
when :list_ops_item_events
|
260
|
-
Aws::SSM::Endpoints::ListOpsItemEvents.build(context)
|
261
|
-
when :list_ops_item_related_items
|
262
|
-
Aws::SSM::Endpoints::ListOpsItemRelatedItems.build(context)
|
263
|
-
when :list_ops_metadata
|
264
|
-
Aws::SSM::Endpoints::ListOpsMetadata.build(context)
|
265
|
-
when :list_resource_compliance_summaries
|
266
|
-
Aws::SSM::Endpoints::ListResourceComplianceSummaries.build(context)
|
267
|
-
when :list_resource_data_sync
|
268
|
-
Aws::SSM::Endpoints::ListResourceDataSync.build(context)
|
269
|
-
when :list_tags_for_resource
|
270
|
-
Aws::SSM::Endpoints::ListTagsForResource.build(context)
|
271
|
-
when :modify_document_permission
|
272
|
-
Aws::SSM::Endpoints::ModifyDocumentPermission.build(context)
|
273
|
-
when :put_compliance_items
|
274
|
-
Aws::SSM::Endpoints::PutComplianceItems.build(context)
|
275
|
-
when :put_inventory
|
276
|
-
Aws::SSM::Endpoints::PutInventory.build(context)
|
277
|
-
when :put_parameter
|
278
|
-
Aws::SSM::Endpoints::PutParameter.build(context)
|
279
|
-
when :put_resource_policy
|
280
|
-
Aws::SSM::Endpoints::PutResourcePolicy.build(context)
|
281
|
-
when :register_default_patch_baseline
|
282
|
-
Aws::SSM::Endpoints::RegisterDefaultPatchBaseline.build(context)
|
283
|
-
when :register_patch_baseline_for_patch_group
|
284
|
-
Aws::SSM::Endpoints::RegisterPatchBaselineForPatchGroup.build(context)
|
285
|
-
when :register_target_with_maintenance_window
|
286
|
-
Aws::SSM::Endpoints::RegisterTargetWithMaintenanceWindow.build(context)
|
287
|
-
when :register_task_with_maintenance_window
|
288
|
-
Aws::SSM::Endpoints::RegisterTaskWithMaintenanceWindow.build(context)
|
289
|
-
when :remove_tags_from_resource
|
290
|
-
Aws::SSM::Endpoints::RemoveTagsFromResource.build(context)
|
291
|
-
when :reset_service_setting
|
292
|
-
Aws::SSM::Endpoints::ResetServiceSetting.build(context)
|
293
|
-
when :resume_session
|
294
|
-
Aws::SSM::Endpoints::ResumeSession.build(context)
|
295
|
-
when :send_automation_signal
|
296
|
-
Aws::SSM::Endpoints::SendAutomationSignal.build(context)
|
297
|
-
when :send_command
|
298
|
-
Aws::SSM::Endpoints::SendCommand.build(context)
|
299
|
-
when :start_associations_once
|
300
|
-
Aws::SSM::Endpoints::StartAssociationsOnce.build(context)
|
301
|
-
when :start_automation_execution
|
302
|
-
Aws::SSM::Endpoints::StartAutomationExecution.build(context)
|
303
|
-
when :start_change_request_execution
|
304
|
-
Aws::SSM::Endpoints::StartChangeRequestExecution.build(context)
|
305
|
-
when :start_session
|
306
|
-
Aws::SSM::Endpoints::StartSession.build(context)
|
307
|
-
when :stop_automation_execution
|
308
|
-
Aws::SSM::Endpoints::StopAutomationExecution.build(context)
|
309
|
-
when :terminate_session
|
310
|
-
Aws::SSM::Endpoints::TerminateSession.build(context)
|
311
|
-
when :unlabel_parameter_version
|
312
|
-
Aws::SSM::Endpoints::UnlabelParameterVersion.build(context)
|
313
|
-
when :update_association
|
314
|
-
Aws::SSM::Endpoints::UpdateAssociation.build(context)
|
315
|
-
when :update_association_status
|
316
|
-
Aws::SSM::Endpoints::UpdateAssociationStatus.build(context)
|
317
|
-
when :update_document
|
318
|
-
Aws::SSM::Endpoints::UpdateDocument.build(context)
|
319
|
-
when :update_document_default_version
|
320
|
-
Aws::SSM::Endpoints::UpdateDocumentDefaultVersion.build(context)
|
321
|
-
when :update_document_metadata
|
322
|
-
Aws::SSM::Endpoints::UpdateDocumentMetadata.build(context)
|
323
|
-
when :update_maintenance_window
|
324
|
-
Aws::SSM::Endpoints::UpdateMaintenanceWindow.build(context)
|
325
|
-
when :update_maintenance_window_target
|
326
|
-
Aws::SSM::Endpoints::UpdateMaintenanceWindowTarget.build(context)
|
327
|
-
when :update_maintenance_window_task
|
328
|
-
Aws::SSM::Endpoints::UpdateMaintenanceWindowTask.build(context)
|
329
|
-
when :update_managed_instance_role
|
330
|
-
Aws::SSM::Endpoints::UpdateManagedInstanceRole.build(context)
|
331
|
-
when :update_ops_item
|
332
|
-
Aws::SSM::Endpoints::UpdateOpsItem.build(context)
|
333
|
-
when :update_ops_metadata
|
334
|
-
Aws::SSM::Endpoints::UpdateOpsMetadata.build(context)
|
335
|
-
when :update_patch_baseline
|
336
|
-
Aws::SSM::Endpoints::UpdatePatchBaseline.build(context)
|
337
|
-
when :update_resource_data_sync
|
338
|
-
Aws::SSM::Endpoints::UpdateResourceDataSync.build(context)
|
339
|
-
when :update_service_setting
|
340
|
-
Aws::SSM::Endpoints::UpdateServiceSetting.build(context)
|
341
|
-
end
|
342
|
-
end
|
343
70
|
end
|
344
71
|
|
345
72
|
def add_handlers(handlers, _config)
|