aws-sdk-iam 1.93.0 → 1.94.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/client.rbs ADDED
@@ -0,0 +1,1826 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module IAM
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> instance
72
+ | (?Hash[Symbol, untyped]) -> instance
73
+
74
+
75
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#add_client_id_to_open_id_connect_provider-instance_method
76
+ def add_client_id_to_open_id_connect_provider: (
77
+ open_id_connect_provider_arn: ::String,
78
+ client_id: ::String
79
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
80
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
81
+
82
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#add_role_to_instance_profile-instance_method
83
+ def add_role_to_instance_profile: (
84
+ instance_profile_name: ::String,
85
+ role_name: ::String
86
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
87
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
88
+
89
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#add_user_to_group-instance_method
90
+ def add_user_to_group: (
91
+ group_name: ::String,
92
+ user_name: ::String
93
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
94
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
95
+
96
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#attach_group_policy-instance_method
97
+ def attach_group_policy: (
98
+ group_name: ::String,
99
+ policy_arn: ::String
100
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
101
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
102
+
103
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#attach_role_policy-instance_method
104
+ def attach_role_policy: (
105
+ role_name: ::String,
106
+ policy_arn: ::String
107
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
108
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
109
+
110
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#attach_user_policy-instance_method
111
+ def attach_user_policy: (
112
+ user_name: ::String,
113
+ policy_arn: ::String
114
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
115
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
116
+
117
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#change_password-instance_method
118
+ def change_password: (
119
+ old_password: ::String,
120
+ new_password: ::String
121
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
122
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
123
+
124
+ interface _CreateAccessKeyResponseSuccess
125
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateAccessKeyResponse]
126
+ def access_key: () -> Types::AccessKey
127
+ end
128
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#create_access_key-instance_method
129
+ def create_access_key: (
130
+ ?user_name: ::String
131
+ ) -> _CreateAccessKeyResponseSuccess
132
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAccessKeyResponseSuccess
133
+
134
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#create_account_alias-instance_method
135
+ def create_account_alias: (
136
+ account_alias: ::String
137
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
138
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
139
+
140
+ interface _CreateGroupResponseSuccess
141
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateGroupResponse]
142
+ def group: () -> Types::Group
143
+ end
144
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#create_group-instance_method
145
+ def create_group: (
146
+ ?path: ::String,
147
+ group_name: ::String
148
+ ) -> _CreateGroupResponseSuccess
149
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGroupResponseSuccess
150
+
151
+ interface _CreateInstanceProfileResponseSuccess
152
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateInstanceProfileResponse]
153
+ def instance_profile: () -> Types::InstanceProfile
154
+ end
155
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#create_instance_profile-instance_method
156
+ def create_instance_profile: (
157
+ instance_profile_name: ::String,
158
+ ?path: ::String,
159
+ ?tags: Array[
160
+ {
161
+ key: ::String,
162
+ value: ::String
163
+ },
164
+ ]
165
+ ) -> _CreateInstanceProfileResponseSuccess
166
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateInstanceProfileResponseSuccess
167
+
168
+ interface _CreateLoginProfileResponseSuccess
169
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateLoginProfileResponse]
170
+ def login_profile: () -> Types::LoginProfile
171
+ end
172
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#create_login_profile-instance_method
173
+ def create_login_profile: (
174
+ user_name: ::String,
175
+ password: ::String,
176
+ ?password_reset_required: bool
177
+ ) -> _CreateLoginProfileResponseSuccess
178
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLoginProfileResponseSuccess
179
+
180
+ interface _CreateOpenIDConnectProviderResponseSuccess
181
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateOpenIDConnectProviderResponse]
182
+ def open_id_connect_provider_arn: () -> ::String
183
+ def tags: () -> ::Array[Types::Tag]
184
+ end
185
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#create_open_id_connect_provider-instance_method
186
+ def create_open_id_connect_provider: (
187
+ url: ::String,
188
+ ?client_id_list: Array[::String],
189
+ thumbprint_list: Array[::String],
190
+ ?tags: Array[
191
+ {
192
+ key: ::String,
193
+ value: ::String
194
+ },
195
+ ]
196
+ ) -> _CreateOpenIDConnectProviderResponseSuccess
197
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateOpenIDConnectProviderResponseSuccess
198
+
199
+ interface _CreatePolicyResponseSuccess
200
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreatePolicyResponse]
201
+ def policy: () -> Types::Policy
202
+ end
203
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#create_policy-instance_method
204
+ def create_policy: (
205
+ policy_name: ::String,
206
+ ?path: ::String,
207
+ policy_document: ::String,
208
+ ?description: ::String,
209
+ ?tags: Array[
210
+ {
211
+ key: ::String,
212
+ value: ::String
213
+ },
214
+ ]
215
+ ) -> _CreatePolicyResponseSuccess
216
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePolicyResponseSuccess
217
+
218
+ interface _CreatePolicyVersionResponseSuccess
219
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreatePolicyVersionResponse]
220
+ def policy_version: () -> Types::PolicyVersion
221
+ end
222
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#create_policy_version-instance_method
223
+ def create_policy_version: (
224
+ policy_arn: ::String,
225
+ policy_document: ::String,
226
+ ?set_as_default: bool
227
+ ) -> _CreatePolicyVersionResponseSuccess
228
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePolicyVersionResponseSuccess
229
+
230
+ interface _CreateRoleResponseSuccess
231
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateRoleResponse]
232
+ def role: () -> Types::Role
233
+ end
234
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#create_role-instance_method
235
+ def create_role: (
236
+ ?path: ::String,
237
+ role_name: ::String,
238
+ assume_role_policy_document: ::String,
239
+ ?description: ::String,
240
+ ?max_session_duration: ::Integer,
241
+ ?permissions_boundary: ::String,
242
+ ?tags: Array[
243
+ {
244
+ key: ::String,
245
+ value: ::String
246
+ },
247
+ ]
248
+ ) -> _CreateRoleResponseSuccess
249
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRoleResponseSuccess
250
+
251
+ interface _CreateSAMLProviderResponseSuccess
252
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSAMLProviderResponse]
253
+ def saml_provider_arn: () -> ::String
254
+ def tags: () -> ::Array[Types::Tag]
255
+ end
256
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#create_saml_provider-instance_method
257
+ def create_saml_provider: (
258
+ saml_metadata_document: ::String,
259
+ name: ::String,
260
+ ?tags: Array[
261
+ {
262
+ key: ::String,
263
+ value: ::String
264
+ },
265
+ ]
266
+ ) -> _CreateSAMLProviderResponseSuccess
267
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSAMLProviderResponseSuccess
268
+
269
+ interface _CreateServiceLinkedRoleResponseSuccess
270
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateServiceLinkedRoleResponse]
271
+ def role: () -> Types::Role
272
+ end
273
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#create_service_linked_role-instance_method
274
+ def create_service_linked_role: (
275
+ aws_service_name: ::String,
276
+ ?description: ::String,
277
+ ?custom_suffix: ::String
278
+ ) -> _CreateServiceLinkedRoleResponseSuccess
279
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateServiceLinkedRoleResponseSuccess
280
+
281
+ interface _CreateServiceSpecificCredentialResponseSuccess
282
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateServiceSpecificCredentialResponse]
283
+ def service_specific_credential: () -> Types::ServiceSpecificCredential
284
+ end
285
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#create_service_specific_credential-instance_method
286
+ def create_service_specific_credential: (
287
+ user_name: ::String,
288
+ service_name: ::String
289
+ ) -> _CreateServiceSpecificCredentialResponseSuccess
290
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateServiceSpecificCredentialResponseSuccess
291
+
292
+ interface _CreateUserResponseSuccess
293
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateUserResponse]
294
+ def user: () -> Types::User
295
+ end
296
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#create_user-instance_method
297
+ def create_user: (
298
+ ?path: ::String,
299
+ user_name: ::String,
300
+ ?permissions_boundary: ::String,
301
+ ?tags: Array[
302
+ {
303
+ key: ::String,
304
+ value: ::String
305
+ },
306
+ ]
307
+ ) -> _CreateUserResponseSuccess
308
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateUserResponseSuccess
309
+
310
+ interface _CreateVirtualMFADeviceResponseSuccess
311
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateVirtualMFADeviceResponse]
312
+ def virtual_mfa_device: () -> Types::VirtualMFADevice
313
+ end
314
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#create_virtual_mfa_device-instance_method
315
+ def create_virtual_mfa_device: (
316
+ ?path: ::String,
317
+ virtual_mfa_device_name: ::String,
318
+ ?tags: Array[
319
+ {
320
+ key: ::String,
321
+ value: ::String
322
+ },
323
+ ]
324
+ ) -> _CreateVirtualMFADeviceResponseSuccess
325
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVirtualMFADeviceResponseSuccess
326
+
327
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#deactivate_mfa_device-instance_method
328
+ def deactivate_mfa_device: (
329
+ user_name: ::String,
330
+ serial_number: ::String
331
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
332
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
333
+
334
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#delete_access_key-instance_method
335
+ def delete_access_key: (
336
+ ?user_name: ::String,
337
+ access_key_id: ::String
338
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
339
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
340
+
341
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#delete_account_alias-instance_method
342
+ def delete_account_alias: (
343
+ account_alias: ::String
344
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
345
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
346
+
347
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#delete_account_password_policy-instance_method
348
+ def delete_account_password_policy: () -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
349
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
350
+
351
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#delete_group-instance_method
352
+ def delete_group: (
353
+ group_name: ::String
354
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
355
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
356
+
357
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#delete_group_policy-instance_method
358
+ def delete_group_policy: (
359
+ group_name: ::String,
360
+ policy_name: ::String
361
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
362
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
363
+
364
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#delete_instance_profile-instance_method
365
+ def delete_instance_profile: (
366
+ instance_profile_name: ::String
367
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
368
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
369
+
370
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#delete_login_profile-instance_method
371
+ def delete_login_profile: (
372
+ user_name: ::String
373
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
374
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
375
+
376
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#delete_open_id_connect_provider-instance_method
377
+ def delete_open_id_connect_provider: (
378
+ open_id_connect_provider_arn: ::String
379
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
380
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
381
+
382
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#delete_policy-instance_method
383
+ def delete_policy: (
384
+ policy_arn: ::String
385
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
386
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
387
+
388
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#delete_policy_version-instance_method
389
+ def delete_policy_version: (
390
+ policy_arn: ::String,
391
+ version_id: ::String
392
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
393
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
394
+
395
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#delete_role-instance_method
396
+ def delete_role: (
397
+ role_name: ::String
398
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
399
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
400
+
401
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#delete_role_permissions_boundary-instance_method
402
+ def delete_role_permissions_boundary: (
403
+ role_name: ::String
404
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
405
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
406
+
407
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#delete_role_policy-instance_method
408
+ def delete_role_policy: (
409
+ role_name: ::String,
410
+ policy_name: ::String
411
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
412
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
413
+
414
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#delete_saml_provider-instance_method
415
+ def delete_saml_provider: (
416
+ saml_provider_arn: ::String
417
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
418
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
419
+
420
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#delete_ssh_public_key-instance_method
421
+ def delete_ssh_public_key: (
422
+ user_name: ::String,
423
+ ssh_public_key_id: ::String
424
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
425
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
426
+
427
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#delete_server_certificate-instance_method
428
+ def delete_server_certificate: (
429
+ server_certificate_name: ::String
430
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
431
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
432
+
433
+ interface _DeleteServiceLinkedRoleResponseSuccess
434
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteServiceLinkedRoleResponse]
435
+ def deletion_task_id: () -> ::String
436
+ end
437
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#delete_service_linked_role-instance_method
438
+ def delete_service_linked_role: (
439
+ role_name: ::String
440
+ ) -> _DeleteServiceLinkedRoleResponseSuccess
441
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteServiceLinkedRoleResponseSuccess
442
+
443
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#delete_service_specific_credential-instance_method
444
+ def delete_service_specific_credential: (
445
+ ?user_name: ::String,
446
+ service_specific_credential_id: ::String
447
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
448
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
449
+
450
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#delete_signing_certificate-instance_method
451
+ def delete_signing_certificate: (
452
+ ?user_name: ::String,
453
+ certificate_id: ::String
454
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
455
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
456
+
457
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#delete_user-instance_method
458
+ def delete_user: (
459
+ user_name: ::String
460
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
461
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
462
+
463
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#delete_user_permissions_boundary-instance_method
464
+ def delete_user_permissions_boundary: (
465
+ user_name: ::String
466
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
467
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
468
+
469
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#delete_user_policy-instance_method
470
+ def delete_user_policy: (
471
+ user_name: ::String,
472
+ policy_name: ::String
473
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
474
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
475
+
476
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#delete_virtual_mfa_device-instance_method
477
+ def delete_virtual_mfa_device: (
478
+ serial_number: ::String
479
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
480
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
481
+
482
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#detach_group_policy-instance_method
483
+ def detach_group_policy: (
484
+ group_name: ::String,
485
+ policy_arn: ::String
486
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
487
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
488
+
489
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#detach_role_policy-instance_method
490
+ def detach_role_policy: (
491
+ role_name: ::String,
492
+ policy_arn: ::String
493
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
494
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
495
+
496
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#detach_user_policy-instance_method
497
+ def detach_user_policy: (
498
+ user_name: ::String,
499
+ policy_arn: ::String
500
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
501
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
502
+
503
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#enable_mfa_device-instance_method
504
+ def enable_mfa_device: (
505
+ user_name: ::String,
506
+ serial_number: ::String,
507
+ authentication_code_1: ::String,
508
+ authentication_code_2: ::String
509
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
510
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
511
+
512
+ interface _GenerateCredentialReportResponseSuccess
513
+ include ::Seahorse::Client::_ResponseSuccess[Types::GenerateCredentialReportResponse]
514
+ def state: () -> ("STARTED" | "INPROGRESS" | "COMPLETE")
515
+ def description: () -> ::String
516
+ end
517
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#generate_credential_report-instance_method
518
+ def generate_credential_report: () -> _GenerateCredentialReportResponseSuccess
519
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GenerateCredentialReportResponseSuccess
520
+
521
+ interface _GenerateOrganizationsAccessReportResponseSuccess
522
+ include ::Seahorse::Client::_ResponseSuccess[Types::GenerateOrganizationsAccessReportResponse]
523
+ def job_id: () -> ::String
524
+ end
525
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#generate_organizations_access_report-instance_method
526
+ def generate_organizations_access_report: (
527
+ entity_path: ::String,
528
+ ?organizations_policy_id: ::String
529
+ ) -> _GenerateOrganizationsAccessReportResponseSuccess
530
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GenerateOrganizationsAccessReportResponseSuccess
531
+
532
+ interface _GenerateServiceLastAccessedDetailsResponseSuccess
533
+ include ::Seahorse::Client::_ResponseSuccess[Types::GenerateServiceLastAccessedDetailsResponse]
534
+ def job_id: () -> ::String
535
+ end
536
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#generate_service_last_accessed_details-instance_method
537
+ def generate_service_last_accessed_details: (
538
+ arn: ::String,
539
+ ?granularity: ("SERVICE_LEVEL" | "ACTION_LEVEL")
540
+ ) -> _GenerateServiceLastAccessedDetailsResponseSuccess
541
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GenerateServiceLastAccessedDetailsResponseSuccess
542
+
543
+ interface _GetAccessKeyLastUsedResponseSuccess
544
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAccessKeyLastUsedResponse]
545
+ def user_name: () -> ::String
546
+ def access_key_last_used: () -> Types::AccessKeyLastUsed
547
+ end
548
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#get_access_key_last_used-instance_method
549
+ def get_access_key_last_used: (
550
+ access_key_id: ::String
551
+ ) -> _GetAccessKeyLastUsedResponseSuccess
552
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAccessKeyLastUsedResponseSuccess
553
+
554
+ interface _GetAccountAuthorizationDetailsResponseSuccess
555
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAccountAuthorizationDetailsResponse]
556
+ def user_detail_list: () -> ::Array[Types::UserDetail]
557
+ def group_detail_list: () -> ::Array[Types::GroupDetail]
558
+ def role_detail_list: () -> ::Array[Types::RoleDetail]
559
+ def policies: () -> ::Array[Types::ManagedPolicyDetail]
560
+ def is_truncated: () -> bool
561
+ def marker: () -> ::String
562
+ end
563
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#get_account_authorization_details-instance_method
564
+ def get_account_authorization_details: (
565
+ ?filter: Array[("User" | "Role" | "Group" | "LocalManagedPolicy" | "AWSManagedPolicy")],
566
+ ?max_items: ::Integer,
567
+ ?marker: ::String
568
+ ) -> _GetAccountAuthorizationDetailsResponseSuccess
569
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAccountAuthorizationDetailsResponseSuccess
570
+
571
+ interface _GetAccountPasswordPolicyResponseSuccess
572
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAccountPasswordPolicyResponse]
573
+ def password_policy: () -> Types::PasswordPolicy
574
+ end
575
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#get_account_password_policy-instance_method
576
+ def get_account_password_policy: () -> _GetAccountPasswordPolicyResponseSuccess
577
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAccountPasswordPolicyResponseSuccess
578
+
579
+ interface _GetAccountSummaryResponseSuccess
580
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAccountSummaryResponse]
581
+ def summary_map: () -> ::Hash[("Users" | "UsersQuota" | "Groups" | "GroupsQuota" | "ServerCertificates" | "ServerCertificatesQuota" | "UserPolicySizeQuota" | "GroupPolicySizeQuota" | "GroupsPerUserQuota" | "SigningCertificatesPerUserQuota" | "AccessKeysPerUserQuota" | "MFADevices" | "MFADevicesInUse" | "AccountMFAEnabled" | "AccountAccessKeysPresent" | "AccountSigningCertificatesPresent" | "AttachedPoliciesPerGroupQuota" | "AttachedPoliciesPerRoleQuota" | "AttachedPoliciesPerUserQuota" | "Policies" | "PoliciesQuota" | "PolicySizeQuota" | "PolicyVersionsInUse" | "PolicyVersionsInUseQuota" | "VersionsPerPolicyQuota" | "GlobalEndpointTokenVersion"), ::Integer]
582
+ end
583
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#get_account_summary-instance_method
584
+ def get_account_summary: () -> _GetAccountSummaryResponseSuccess
585
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAccountSummaryResponseSuccess
586
+
587
+ interface _GetContextKeysForCustomPolicyResponseSuccess
588
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetContextKeysForPolicyResponse]
589
+ def context_key_names: () -> ::Array[::String]
590
+ end
591
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#get_context_keys_for_custom_policy-instance_method
592
+ def get_context_keys_for_custom_policy: (
593
+ policy_input_list: Array[::String]
594
+ ) -> _GetContextKeysForCustomPolicyResponseSuccess
595
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetContextKeysForCustomPolicyResponseSuccess
596
+
597
+ interface _GetContextKeysForPrincipalPolicyResponseSuccess
598
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetContextKeysForPolicyResponse]
599
+ def context_key_names: () -> ::Array[::String]
600
+ end
601
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#get_context_keys_for_principal_policy-instance_method
602
+ def get_context_keys_for_principal_policy: (
603
+ policy_source_arn: ::String,
604
+ ?policy_input_list: Array[::String]
605
+ ) -> _GetContextKeysForPrincipalPolicyResponseSuccess
606
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetContextKeysForPrincipalPolicyResponseSuccess
607
+
608
+ interface _GetCredentialReportResponseSuccess
609
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetCredentialReportResponse]
610
+ def content: () -> ::String
611
+ def report_format: () -> ("text/csv")
612
+ def generated_time: () -> ::Time
613
+ end
614
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#get_credential_report-instance_method
615
+ def get_credential_report: () -> _GetCredentialReportResponseSuccess
616
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCredentialReportResponseSuccess
617
+
618
+ interface _GetGroupResponseSuccess
619
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetGroupResponse]
620
+ def group: () -> Types::Group
621
+ def users: () -> ::Array[Types::User]
622
+ def is_truncated: () -> bool
623
+ def marker: () -> ::String
624
+ end
625
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#get_group-instance_method
626
+ def get_group: (
627
+ group_name: ::String,
628
+ ?marker: ::String,
629
+ ?max_items: ::Integer
630
+ ) -> _GetGroupResponseSuccess
631
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGroupResponseSuccess
632
+
633
+ interface _GetGroupPolicyResponseSuccess
634
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetGroupPolicyResponse]
635
+ def group_name: () -> ::String
636
+ def policy_name: () -> ::String
637
+ def policy_document: () -> ::String
638
+ end
639
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#get_group_policy-instance_method
640
+ def get_group_policy: (
641
+ group_name: ::String,
642
+ policy_name: ::String
643
+ ) -> _GetGroupPolicyResponseSuccess
644
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGroupPolicyResponseSuccess
645
+
646
+ interface _GetInstanceProfileResponseSuccess
647
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetInstanceProfileResponse]
648
+ def instance_profile: () -> Types::InstanceProfile
649
+ end
650
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#get_instance_profile-instance_method
651
+ def get_instance_profile: (
652
+ instance_profile_name: ::String
653
+ ) -> _GetInstanceProfileResponseSuccess
654
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetInstanceProfileResponseSuccess
655
+
656
+ interface _GetLoginProfileResponseSuccess
657
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetLoginProfileResponse]
658
+ def login_profile: () -> Types::LoginProfile
659
+ end
660
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#get_login_profile-instance_method
661
+ def get_login_profile: (
662
+ user_name: ::String
663
+ ) -> _GetLoginProfileResponseSuccess
664
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLoginProfileResponseSuccess
665
+
666
+ interface _GetMFADeviceResponseSuccess
667
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetMFADeviceResponse]
668
+ def user_name: () -> ::String
669
+ def serial_number: () -> ::String
670
+ def enable_date: () -> ::Time
671
+ def certifications: () -> ::Hash[::String, ::String]
672
+ end
673
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#get_mfa_device-instance_method
674
+ def get_mfa_device: (
675
+ serial_number: ::String,
676
+ ?user_name: ::String
677
+ ) -> _GetMFADeviceResponseSuccess
678
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMFADeviceResponseSuccess
679
+
680
+ interface _GetOpenIDConnectProviderResponseSuccess
681
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetOpenIDConnectProviderResponse]
682
+ def url: () -> ::String
683
+ def client_id_list: () -> ::Array[::String]
684
+ def thumbprint_list: () -> ::Array[::String]
685
+ def create_date: () -> ::Time
686
+ def tags: () -> ::Array[Types::Tag]
687
+ end
688
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#get_open_id_connect_provider-instance_method
689
+ def get_open_id_connect_provider: (
690
+ open_id_connect_provider_arn: ::String
691
+ ) -> _GetOpenIDConnectProviderResponseSuccess
692
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetOpenIDConnectProviderResponseSuccess
693
+
694
+ interface _GetOrganizationsAccessReportResponseSuccess
695
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetOrganizationsAccessReportResponse]
696
+ def job_status: () -> ("IN_PROGRESS" | "COMPLETED" | "FAILED")
697
+ def job_creation_date: () -> ::Time
698
+ def job_completion_date: () -> ::Time
699
+ def number_of_services_accessible: () -> ::Integer
700
+ def number_of_services_not_accessed: () -> ::Integer
701
+ def access_details: () -> ::Array[Types::AccessDetail]
702
+ def is_truncated: () -> bool
703
+ def marker: () -> ::String
704
+ def error_details: () -> Types::ErrorDetails
705
+ end
706
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#get_organizations_access_report-instance_method
707
+ def get_organizations_access_report: (
708
+ job_id: ::String,
709
+ ?max_items: ::Integer,
710
+ ?marker: ::String,
711
+ ?sort_key: ("SERVICE_NAMESPACE_ASCENDING" | "SERVICE_NAMESPACE_DESCENDING" | "LAST_AUTHENTICATED_TIME_ASCENDING" | "LAST_AUTHENTICATED_TIME_DESCENDING")
712
+ ) -> _GetOrganizationsAccessReportResponseSuccess
713
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetOrganizationsAccessReportResponseSuccess
714
+
715
+ interface _GetPolicyResponseSuccess
716
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetPolicyResponse]
717
+ def policy: () -> Types::Policy
718
+ end
719
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#get_policy-instance_method
720
+ def get_policy: (
721
+ policy_arn: ::String
722
+ ) -> _GetPolicyResponseSuccess
723
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPolicyResponseSuccess
724
+
725
+ interface _GetPolicyVersionResponseSuccess
726
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetPolicyVersionResponse]
727
+ def policy_version: () -> Types::PolicyVersion
728
+ end
729
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#get_policy_version-instance_method
730
+ def get_policy_version: (
731
+ policy_arn: ::String,
732
+ version_id: ::String
733
+ ) -> _GetPolicyVersionResponseSuccess
734
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPolicyVersionResponseSuccess
735
+
736
+ interface _GetRoleResponseSuccess
737
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRoleResponse]
738
+ def role: () -> Types::Role
739
+ end
740
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#get_role-instance_method
741
+ def get_role: (
742
+ role_name: ::String
743
+ ) -> _GetRoleResponseSuccess
744
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRoleResponseSuccess
745
+
746
+ interface _GetRolePolicyResponseSuccess
747
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRolePolicyResponse]
748
+ def role_name: () -> ::String
749
+ def policy_name: () -> ::String
750
+ def policy_document: () -> ::String
751
+ end
752
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#get_role_policy-instance_method
753
+ def get_role_policy: (
754
+ role_name: ::String,
755
+ policy_name: ::String
756
+ ) -> _GetRolePolicyResponseSuccess
757
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRolePolicyResponseSuccess
758
+
759
+ interface _GetSAMLProviderResponseSuccess
760
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSAMLProviderResponse]
761
+ def saml_metadata_document: () -> ::String
762
+ def create_date: () -> ::Time
763
+ def valid_until: () -> ::Time
764
+ def tags: () -> ::Array[Types::Tag]
765
+ end
766
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#get_saml_provider-instance_method
767
+ def get_saml_provider: (
768
+ saml_provider_arn: ::String
769
+ ) -> _GetSAMLProviderResponseSuccess
770
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSAMLProviderResponseSuccess
771
+
772
+ interface _GetSSHPublicKeyResponseSuccess
773
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSSHPublicKeyResponse]
774
+ def ssh_public_key: () -> Types::SSHPublicKey
775
+ end
776
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#get_ssh_public_key-instance_method
777
+ def get_ssh_public_key: (
778
+ user_name: ::String,
779
+ ssh_public_key_id: ::String,
780
+ encoding: ("SSH" | "PEM")
781
+ ) -> _GetSSHPublicKeyResponseSuccess
782
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSSHPublicKeyResponseSuccess
783
+
784
+ interface _GetServerCertificateResponseSuccess
785
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetServerCertificateResponse]
786
+ def server_certificate: () -> Types::ServerCertificate
787
+ end
788
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#get_server_certificate-instance_method
789
+ def get_server_certificate: (
790
+ server_certificate_name: ::String
791
+ ) -> _GetServerCertificateResponseSuccess
792
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetServerCertificateResponseSuccess
793
+
794
+ interface _GetServiceLastAccessedDetailsResponseSuccess
795
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetServiceLastAccessedDetailsResponse]
796
+ def job_status: () -> ("IN_PROGRESS" | "COMPLETED" | "FAILED")
797
+ def job_type: () -> ("SERVICE_LEVEL" | "ACTION_LEVEL")
798
+ def job_creation_date: () -> ::Time
799
+ def services_last_accessed: () -> ::Array[Types::ServiceLastAccessed]
800
+ def job_completion_date: () -> ::Time
801
+ def is_truncated: () -> bool
802
+ def marker: () -> ::String
803
+ end
804
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#get_service_last_accessed_details-instance_method
805
+ def get_service_last_accessed_details: (
806
+ job_id: ::String,
807
+ ?max_items: ::Integer,
808
+ ?marker: ::String
809
+ ) -> _GetServiceLastAccessedDetailsResponseSuccess
810
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetServiceLastAccessedDetailsResponseSuccess
811
+
812
+ interface _GetServiceLastAccessedDetailsWithEntitiesResponseSuccess
813
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetServiceLastAccessedDetailsWithEntitiesResponse]
814
+ def job_status: () -> ("IN_PROGRESS" | "COMPLETED" | "FAILED")
815
+ def job_creation_date: () -> ::Time
816
+ def job_completion_date: () -> ::Time
817
+ def entity_details_list: () -> ::Array[Types::EntityDetails]
818
+ def is_truncated: () -> bool
819
+ def marker: () -> ::String
820
+ end
821
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#get_service_last_accessed_details_with_entities-instance_method
822
+ def get_service_last_accessed_details_with_entities: (
823
+ job_id: ::String,
824
+ service_namespace: ::String,
825
+ ?max_items: ::Integer,
826
+ ?marker: ::String
827
+ ) -> _GetServiceLastAccessedDetailsWithEntitiesResponseSuccess
828
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetServiceLastAccessedDetailsWithEntitiesResponseSuccess
829
+
830
+ interface _GetServiceLinkedRoleDeletionStatusResponseSuccess
831
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetServiceLinkedRoleDeletionStatusResponse]
832
+ def status: () -> ("SUCCEEDED" | "IN_PROGRESS" | "FAILED" | "NOT_STARTED")
833
+ def reason: () -> Types::DeletionTaskFailureReasonType
834
+ end
835
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#get_service_linked_role_deletion_status-instance_method
836
+ def get_service_linked_role_deletion_status: (
837
+ deletion_task_id: ::String
838
+ ) -> _GetServiceLinkedRoleDeletionStatusResponseSuccess
839
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetServiceLinkedRoleDeletionStatusResponseSuccess
840
+
841
+ interface _GetUserResponseSuccess
842
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetUserResponse]
843
+ def user: () -> Types::User
844
+ end
845
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#get_user-instance_method
846
+ def get_user: (
847
+ ?user_name: ::String
848
+ ) -> _GetUserResponseSuccess
849
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetUserResponseSuccess
850
+
851
+ interface _GetUserPolicyResponseSuccess
852
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetUserPolicyResponse]
853
+ def user_name: () -> ::String
854
+ def policy_name: () -> ::String
855
+ def policy_document: () -> ::String
856
+ end
857
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#get_user_policy-instance_method
858
+ def get_user_policy: (
859
+ user_name: ::String,
860
+ policy_name: ::String
861
+ ) -> _GetUserPolicyResponseSuccess
862
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetUserPolicyResponseSuccess
863
+
864
+ interface _ListAccessKeysResponseSuccess
865
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAccessKeysResponse]
866
+ def access_key_metadata: () -> ::Array[Types::AccessKeyMetadata]
867
+ def is_truncated: () -> bool
868
+ def marker: () -> ::String
869
+ end
870
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_access_keys-instance_method
871
+ def list_access_keys: (
872
+ ?user_name: ::String,
873
+ ?marker: ::String,
874
+ ?max_items: ::Integer
875
+ ) -> _ListAccessKeysResponseSuccess
876
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAccessKeysResponseSuccess
877
+
878
+ interface _ListAccountAliasesResponseSuccess
879
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAccountAliasesResponse]
880
+ def account_aliases: () -> ::Array[::String]
881
+ def is_truncated: () -> bool
882
+ def marker: () -> ::String
883
+ end
884
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_account_aliases-instance_method
885
+ def list_account_aliases: (
886
+ ?marker: ::String,
887
+ ?max_items: ::Integer
888
+ ) -> _ListAccountAliasesResponseSuccess
889
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAccountAliasesResponseSuccess
890
+
891
+ interface _ListAttachedGroupPoliciesResponseSuccess
892
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAttachedGroupPoliciesResponse]
893
+ def attached_policies: () -> ::Array[Types::AttachedPolicy]
894
+ def is_truncated: () -> bool
895
+ def marker: () -> ::String
896
+ end
897
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_attached_group_policies-instance_method
898
+ def list_attached_group_policies: (
899
+ group_name: ::String,
900
+ ?path_prefix: ::String,
901
+ ?marker: ::String,
902
+ ?max_items: ::Integer
903
+ ) -> _ListAttachedGroupPoliciesResponseSuccess
904
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAttachedGroupPoliciesResponseSuccess
905
+
906
+ interface _ListAttachedRolePoliciesResponseSuccess
907
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAttachedRolePoliciesResponse]
908
+ def attached_policies: () -> ::Array[Types::AttachedPolicy]
909
+ def is_truncated: () -> bool
910
+ def marker: () -> ::String
911
+ end
912
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_attached_role_policies-instance_method
913
+ def list_attached_role_policies: (
914
+ role_name: ::String,
915
+ ?path_prefix: ::String,
916
+ ?marker: ::String,
917
+ ?max_items: ::Integer
918
+ ) -> _ListAttachedRolePoliciesResponseSuccess
919
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAttachedRolePoliciesResponseSuccess
920
+
921
+ interface _ListAttachedUserPoliciesResponseSuccess
922
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAttachedUserPoliciesResponse]
923
+ def attached_policies: () -> ::Array[Types::AttachedPolicy]
924
+ def is_truncated: () -> bool
925
+ def marker: () -> ::String
926
+ end
927
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_attached_user_policies-instance_method
928
+ def list_attached_user_policies: (
929
+ user_name: ::String,
930
+ ?path_prefix: ::String,
931
+ ?marker: ::String,
932
+ ?max_items: ::Integer
933
+ ) -> _ListAttachedUserPoliciesResponseSuccess
934
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAttachedUserPoliciesResponseSuccess
935
+
936
+ interface _ListEntitiesForPolicyResponseSuccess
937
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListEntitiesForPolicyResponse]
938
+ def policy_groups: () -> ::Array[Types::PolicyGroup]
939
+ def policy_users: () -> ::Array[Types::PolicyUser]
940
+ def policy_roles: () -> ::Array[Types::PolicyRole]
941
+ def is_truncated: () -> bool
942
+ def marker: () -> ::String
943
+ end
944
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_entities_for_policy-instance_method
945
+ def list_entities_for_policy: (
946
+ policy_arn: ::String,
947
+ ?entity_filter: ("User" | "Role" | "Group" | "LocalManagedPolicy" | "AWSManagedPolicy"),
948
+ ?path_prefix: ::String,
949
+ ?policy_usage_filter: ("PermissionsPolicy" | "PermissionsBoundary"),
950
+ ?marker: ::String,
951
+ ?max_items: ::Integer
952
+ ) -> _ListEntitiesForPolicyResponseSuccess
953
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEntitiesForPolicyResponseSuccess
954
+
955
+ interface _ListGroupPoliciesResponseSuccess
956
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListGroupPoliciesResponse]
957
+ def policy_names: () -> ::Array[::String]
958
+ def is_truncated: () -> bool
959
+ def marker: () -> ::String
960
+ end
961
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_group_policies-instance_method
962
+ def list_group_policies: (
963
+ group_name: ::String,
964
+ ?marker: ::String,
965
+ ?max_items: ::Integer
966
+ ) -> _ListGroupPoliciesResponseSuccess
967
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListGroupPoliciesResponseSuccess
968
+
969
+ interface _ListGroupsResponseSuccess
970
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListGroupsResponse]
971
+ def groups: () -> ::Array[Types::Group]
972
+ def is_truncated: () -> bool
973
+ def marker: () -> ::String
974
+ end
975
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_groups-instance_method
976
+ def list_groups: (
977
+ ?path_prefix: ::String,
978
+ ?marker: ::String,
979
+ ?max_items: ::Integer
980
+ ) -> _ListGroupsResponseSuccess
981
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListGroupsResponseSuccess
982
+
983
+ interface _ListGroupsForUserResponseSuccess
984
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListGroupsForUserResponse]
985
+ def groups: () -> ::Array[Types::Group]
986
+ def is_truncated: () -> bool
987
+ def marker: () -> ::String
988
+ end
989
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_groups_for_user-instance_method
990
+ def list_groups_for_user: (
991
+ user_name: ::String,
992
+ ?marker: ::String,
993
+ ?max_items: ::Integer
994
+ ) -> _ListGroupsForUserResponseSuccess
995
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListGroupsForUserResponseSuccess
996
+
997
+ interface _ListInstanceProfileTagsResponseSuccess
998
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListInstanceProfileTagsResponse]
999
+ def tags: () -> ::Array[Types::Tag]
1000
+ def is_truncated: () -> bool
1001
+ def marker: () -> ::String
1002
+ end
1003
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_instance_profile_tags-instance_method
1004
+ def list_instance_profile_tags: (
1005
+ instance_profile_name: ::String,
1006
+ ?marker: ::String,
1007
+ ?max_items: ::Integer
1008
+ ) -> _ListInstanceProfileTagsResponseSuccess
1009
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListInstanceProfileTagsResponseSuccess
1010
+
1011
+ interface _ListInstanceProfilesResponseSuccess
1012
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListInstanceProfilesResponse]
1013
+ def instance_profiles: () -> ::Array[Types::InstanceProfile]
1014
+ def is_truncated: () -> bool
1015
+ def marker: () -> ::String
1016
+ end
1017
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_instance_profiles-instance_method
1018
+ def list_instance_profiles: (
1019
+ ?path_prefix: ::String,
1020
+ ?marker: ::String,
1021
+ ?max_items: ::Integer
1022
+ ) -> _ListInstanceProfilesResponseSuccess
1023
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListInstanceProfilesResponseSuccess
1024
+
1025
+ interface _ListInstanceProfilesForRoleResponseSuccess
1026
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListInstanceProfilesForRoleResponse]
1027
+ def instance_profiles: () -> ::Array[Types::InstanceProfile]
1028
+ def is_truncated: () -> bool
1029
+ def marker: () -> ::String
1030
+ end
1031
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_instance_profiles_for_role-instance_method
1032
+ def list_instance_profiles_for_role: (
1033
+ role_name: ::String,
1034
+ ?marker: ::String,
1035
+ ?max_items: ::Integer
1036
+ ) -> _ListInstanceProfilesForRoleResponseSuccess
1037
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListInstanceProfilesForRoleResponseSuccess
1038
+
1039
+ interface _ListMFADeviceTagsResponseSuccess
1040
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListMFADeviceTagsResponse]
1041
+ def tags: () -> ::Array[Types::Tag]
1042
+ def is_truncated: () -> bool
1043
+ def marker: () -> ::String
1044
+ end
1045
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_mfa_device_tags-instance_method
1046
+ def list_mfa_device_tags: (
1047
+ serial_number: ::String,
1048
+ ?marker: ::String,
1049
+ ?max_items: ::Integer
1050
+ ) -> _ListMFADeviceTagsResponseSuccess
1051
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListMFADeviceTagsResponseSuccess
1052
+
1053
+ interface _ListMFADevicesResponseSuccess
1054
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListMFADevicesResponse]
1055
+ def mfa_devices: () -> ::Array[Types::MFADevice]
1056
+ def is_truncated: () -> bool
1057
+ def marker: () -> ::String
1058
+ end
1059
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_mfa_devices-instance_method
1060
+ def list_mfa_devices: (
1061
+ ?user_name: ::String,
1062
+ ?marker: ::String,
1063
+ ?max_items: ::Integer
1064
+ ) -> _ListMFADevicesResponseSuccess
1065
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListMFADevicesResponseSuccess
1066
+
1067
+ interface _ListOpenIDConnectProviderTagsResponseSuccess
1068
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListOpenIDConnectProviderTagsResponse]
1069
+ def tags: () -> ::Array[Types::Tag]
1070
+ def is_truncated: () -> bool
1071
+ def marker: () -> ::String
1072
+ end
1073
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_open_id_connect_provider_tags-instance_method
1074
+ def list_open_id_connect_provider_tags: (
1075
+ open_id_connect_provider_arn: ::String,
1076
+ ?marker: ::String,
1077
+ ?max_items: ::Integer
1078
+ ) -> _ListOpenIDConnectProviderTagsResponseSuccess
1079
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListOpenIDConnectProviderTagsResponseSuccess
1080
+
1081
+ interface _ListOpenIDConnectProvidersResponseSuccess
1082
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListOpenIDConnectProvidersResponse]
1083
+ def open_id_connect_provider_list: () -> ::Array[Types::OpenIDConnectProviderListEntry]
1084
+ end
1085
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_open_id_connect_providers-instance_method
1086
+ def list_open_id_connect_providers: (
1087
+ ) -> _ListOpenIDConnectProvidersResponseSuccess
1088
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListOpenIDConnectProvidersResponseSuccess
1089
+
1090
+ interface _ListPoliciesResponseSuccess
1091
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPoliciesResponse]
1092
+ def policies: () -> ::Array[Types::Policy]
1093
+ def is_truncated: () -> bool
1094
+ def marker: () -> ::String
1095
+ end
1096
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_policies-instance_method
1097
+ def list_policies: (
1098
+ ?scope: ("All" | "AWS" | "Local"),
1099
+ ?only_attached: bool,
1100
+ ?path_prefix: ::String,
1101
+ ?policy_usage_filter: ("PermissionsPolicy" | "PermissionsBoundary"),
1102
+ ?marker: ::String,
1103
+ ?max_items: ::Integer
1104
+ ) -> _ListPoliciesResponseSuccess
1105
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPoliciesResponseSuccess
1106
+
1107
+ interface _ListPoliciesGrantingServiceAccessResponseSuccess
1108
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPoliciesGrantingServiceAccessResponse]
1109
+ def policies_granting_service_access: () -> ::Array[Types::ListPoliciesGrantingServiceAccessEntry]
1110
+ def is_truncated: () -> bool
1111
+ def marker: () -> ::String
1112
+ end
1113
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_policies_granting_service_access-instance_method
1114
+ def list_policies_granting_service_access: (
1115
+ ?marker: ::String,
1116
+ arn: ::String,
1117
+ service_namespaces: Array[::String]
1118
+ ) -> _ListPoliciesGrantingServiceAccessResponseSuccess
1119
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPoliciesGrantingServiceAccessResponseSuccess
1120
+
1121
+ interface _ListPolicyTagsResponseSuccess
1122
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPolicyTagsResponse]
1123
+ def tags: () -> ::Array[Types::Tag]
1124
+ def is_truncated: () -> bool
1125
+ def marker: () -> ::String
1126
+ end
1127
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_policy_tags-instance_method
1128
+ def list_policy_tags: (
1129
+ policy_arn: ::String,
1130
+ ?marker: ::String,
1131
+ ?max_items: ::Integer
1132
+ ) -> _ListPolicyTagsResponseSuccess
1133
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPolicyTagsResponseSuccess
1134
+
1135
+ interface _ListPolicyVersionsResponseSuccess
1136
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPolicyVersionsResponse]
1137
+ def versions: () -> ::Array[Types::PolicyVersion]
1138
+ def is_truncated: () -> bool
1139
+ def marker: () -> ::String
1140
+ end
1141
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_policy_versions-instance_method
1142
+ def list_policy_versions: (
1143
+ policy_arn: ::String,
1144
+ ?marker: ::String,
1145
+ ?max_items: ::Integer
1146
+ ) -> _ListPolicyVersionsResponseSuccess
1147
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPolicyVersionsResponseSuccess
1148
+
1149
+ interface _ListRolePoliciesResponseSuccess
1150
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRolePoliciesResponse]
1151
+ def policy_names: () -> ::Array[::String]
1152
+ def is_truncated: () -> bool
1153
+ def marker: () -> ::String
1154
+ end
1155
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_role_policies-instance_method
1156
+ def list_role_policies: (
1157
+ role_name: ::String,
1158
+ ?marker: ::String,
1159
+ ?max_items: ::Integer
1160
+ ) -> _ListRolePoliciesResponseSuccess
1161
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRolePoliciesResponseSuccess
1162
+
1163
+ interface _ListRoleTagsResponseSuccess
1164
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRoleTagsResponse]
1165
+ def tags: () -> ::Array[Types::Tag]
1166
+ def is_truncated: () -> bool
1167
+ def marker: () -> ::String
1168
+ end
1169
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_role_tags-instance_method
1170
+ def list_role_tags: (
1171
+ role_name: ::String,
1172
+ ?marker: ::String,
1173
+ ?max_items: ::Integer
1174
+ ) -> _ListRoleTagsResponseSuccess
1175
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRoleTagsResponseSuccess
1176
+
1177
+ interface _ListRolesResponseSuccess
1178
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRolesResponse]
1179
+ def roles: () -> ::Array[Types::Role]
1180
+ def is_truncated: () -> bool
1181
+ def marker: () -> ::String
1182
+ end
1183
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_roles-instance_method
1184
+ def list_roles: (
1185
+ ?path_prefix: ::String,
1186
+ ?marker: ::String,
1187
+ ?max_items: ::Integer
1188
+ ) -> _ListRolesResponseSuccess
1189
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRolesResponseSuccess
1190
+
1191
+ interface _ListSAMLProviderTagsResponseSuccess
1192
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSAMLProviderTagsResponse]
1193
+ def tags: () -> ::Array[Types::Tag]
1194
+ def is_truncated: () -> bool
1195
+ def marker: () -> ::String
1196
+ end
1197
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_saml_provider_tags-instance_method
1198
+ def list_saml_provider_tags: (
1199
+ saml_provider_arn: ::String,
1200
+ ?marker: ::String,
1201
+ ?max_items: ::Integer
1202
+ ) -> _ListSAMLProviderTagsResponseSuccess
1203
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSAMLProviderTagsResponseSuccess
1204
+
1205
+ interface _ListSAMLProvidersResponseSuccess
1206
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSAMLProvidersResponse]
1207
+ def saml_provider_list: () -> ::Array[Types::SAMLProviderListEntry]
1208
+ end
1209
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_saml_providers-instance_method
1210
+ def list_saml_providers: (
1211
+ ) -> _ListSAMLProvidersResponseSuccess
1212
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSAMLProvidersResponseSuccess
1213
+
1214
+ interface _ListSSHPublicKeysResponseSuccess
1215
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSSHPublicKeysResponse]
1216
+ def ssh_public_keys: () -> ::Array[Types::SSHPublicKeyMetadata]
1217
+ def is_truncated: () -> bool
1218
+ def marker: () -> ::String
1219
+ end
1220
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_ssh_public_keys-instance_method
1221
+ def list_ssh_public_keys: (
1222
+ ?user_name: ::String,
1223
+ ?marker: ::String,
1224
+ ?max_items: ::Integer
1225
+ ) -> _ListSSHPublicKeysResponseSuccess
1226
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSSHPublicKeysResponseSuccess
1227
+
1228
+ interface _ListServerCertificateTagsResponseSuccess
1229
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListServerCertificateTagsResponse]
1230
+ def tags: () -> ::Array[Types::Tag]
1231
+ def is_truncated: () -> bool
1232
+ def marker: () -> ::String
1233
+ end
1234
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_server_certificate_tags-instance_method
1235
+ def list_server_certificate_tags: (
1236
+ server_certificate_name: ::String,
1237
+ ?marker: ::String,
1238
+ ?max_items: ::Integer
1239
+ ) -> _ListServerCertificateTagsResponseSuccess
1240
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListServerCertificateTagsResponseSuccess
1241
+
1242
+ interface _ListServerCertificatesResponseSuccess
1243
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListServerCertificatesResponse]
1244
+ def server_certificate_metadata_list: () -> ::Array[Types::ServerCertificateMetadata]
1245
+ def is_truncated: () -> bool
1246
+ def marker: () -> ::String
1247
+ end
1248
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_server_certificates-instance_method
1249
+ def list_server_certificates: (
1250
+ ?path_prefix: ::String,
1251
+ ?marker: ::String,
1252
+ ?max_items: ::Integer
1253
+ ) -> _ListServerCertificatesResponseSuccess
1254
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListServerCertificatesResponseSuccess
1255
+
1256
+ interface _ListServiceSpecificCredentialsResponseSuccess
1257
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListServiceSpecificCredentialsResponse]
1258
+ def service_specific_credentials: () -> ::Array[Types::ServiceSpecificCredentialMetadata]
1259
+ end
1260
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_service_specific_credentials-instance_method
1261
+ def list_service_specific_credentials: (
1262
+ ?user_name: ::String,
1263
+ ?service_name: ::String
1264
+ ) -> _ListServiceSpecificCredentialsResponseSuccess
1265
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListServiceSpecificCredentialsResponseSuccess
1266
+
1267
+ interface _ListSigningCertificatesResponseSuccess
1268
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSigningCertificatesResponse]
1269
+ def certificates: () -> ::Array[Types::SigningCertificate]
1270
+ def is_truncated: () -> bool
1271
+ def marker: () -> ::String
1272
+ end
1273
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_signing_certificates-instance_method
1274
+ def list_signing_certificates: (
1275
+ ?user_name: ::String,
1276
+ ?marker: ::String,
1277
+ ?max_items: ::Integer
1278
+ ) -> _ListSigningCertificatesResponseSuccess
1279
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSigningCertificatesResponseSuccess
1280
+
1281
+ interface _ListUserPoliciesResponseSuccess
1282
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListUserPoliciesResponse]
1283
+ def policy_names: () -> ::Array[::String]
1284
+ def is_truncated: () -> bool
1285
+ def marker: () -> ::String
1286
+ end
1287
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_user_policies-instance_method
1288
+ def list_user_policies: (
1289
+ user_name: ::String,
1290
+ ?marker: ::String,
1291
+ ?max_items: ::Integer
1292
+ ) -> _ListUserPoliciesResponseSuccess
1293
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListUserPoliciesResponseSuccess
1294
+
1295
+ interface _ListUserTagsResponseSuccess
1296
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListUserTagsResponse]
1297
+ def tags: () -> ::Array[Types::Tag]
1298
+ def is_truncated: () -> bool
1299
+ def marker: () -> ::String
1300
+ end
1301
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_user_tags-instance_method
1302
+ def list_user_tags: (
1303
+ user_name: ::String,
1304
+ ?marker: ::String,
1305
+ ?max_items: ::Integer
1306
+ ) -> _ListUserTagsResponseSuccess
1307
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListUserTagsResponseSuccess
1308
+
1309
+ interface _ListUsersResponseSuccess
1310
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListUsersResponse]
1311
+ def users: () -> ::Array[Types::User]
1312
+ def is_truncated: () -> bool
1313
+ def marker: () -> ::String
1314
+ end
1315
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_users-instance_method
1316
+ def list_users: (
1317
+ ?path_prefix: ::String,
1318
+ ?marker: ::String,
1319
+ ?max_items: ::Integer
1320
+ ) -> _ListUsersResponseSuccess
1321
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListUsersResponseSuccess
1322
+
1323
+ interface _ListVirtualMFADevicesResponseSuccess
1324
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListVirtualMFADevicesResponse]
1325
+ def virtual_mfa_devices: () -> ::Array[Types::VirtualMFADevice]
1326
+ def is_truncated: () -> bool
1327
+ def marker: () -> ::String
1328
+ end
1329
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#list_virtual_mfa_devices-instance_method
1330
+ def list_virtual_mfa_devices: (
1331
+ ?assignment_status: ("Assigned" | "Unassigned" | "Any"),
1332
+ ?marker: ::String,
1333
+ ?max_items: ::Integer
1334
+ ) -> _ListVirtualMFADevicesResponseSuccess
1335
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVirtualMFADevicesResponseSuccess
1336
+
1337
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#put_group_policy-instance_method
1338
+ def put_group_policy: (
1339
+ group_name: ::String,
1340
+ policy_name: ::String,
1341
+ policy_document: ::String
1342
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1343
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1344
+
1345
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#put_role_permissions_boundary-instance_method
1346
+ def put_role_permissions_boundary: (
1347
+ role_name: ::String,
1348
+ permissions_boundary: ::String
1349
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1350
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1351
+
1352
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#put_role_policy-instance_method
1353
+ def put_role_policy: (
1354
+ role_name: ::String,
1355
+ policy_name: ::String,
1356
+ policy_document: ::String
1357
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1358
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1359
+
1360
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#put_user_permissions_boundary-instance_method
1361
+ def put_user_permissions_boundary: (
1362
+ user_name: ::String,
1363
+ permissions_boundary: ::String
1364
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1365
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1366
+
1367
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#put_user_policy-instance_method
1368
+ def put_user_policy: (
1369
+ user_name: ::String,
1370
+ policy_name: ::String,
1371
+ policy_document: ::String
1372
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1373
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1374
+
1375
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#remove_client_id_from_open_id_connect_provider-instance_method
1376
+ def remove_client_id_from_open_id_connect_provider: (
1377
+ open_id_connect_provider_arn: ::String,
1378
+ client_id: ::String
1379
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1380
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1381
+
1382
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#remove_role_from_instance_profile-instance_method
1383
+ def remove_role_from_instance_profile: (
1384
+ instance_profile_name: ::String,
1385
+ role_name: ::String
1386
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1387
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1388
+
1389
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#remove_user_from_group-instance_method
1390
+ def remove_user_from_group: (
1391
+ group_name: ::String,
1392
+ user_name: ::String
1393
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1394
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1395
+
1396
+ interface _ResetServiceSpecificCredentialResponseSuccess
1397
+ include ::Seahorse::Client::_ResponseSuccess[Types::ResetServiceSpecificCredentialResponse]
1398
+ def service_specific_credential: () -> Types::ServiceSpecificCredential
1399
+ end
1400
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#reset_service_specific_credential-instance_method
1401
+ def reset_service_specific_credential: (
1402
+ ?user_name: ::String,
1403
+ service_specific_credential_id: ::String
1404
+ ) -> _ResetServiceSpecificCredentialResponseSuccess
1405
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ResetServiceSpecificCredentialResponseSuccess
1406
+
1407
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#resync_mfa_device-instance_method
1408
+ def resync_mfa_device: (
1409
+ user_name: ::String,
1410
+ serial_number: ::String,
1411
+ authentication_code_1: ::String,
1412
+ authentication_code_2: ::String
1413
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1414
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1415
+
1416
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#set_default_policy_version-instance_method
1417
+ def set_default_policy_version: (
1418
+ policy_arn: ::String,
1419
+ version_id: ::String
1420
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1421
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1422
+
1423
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#set_security_token_service_preferences-instance_method
1424
+ def set_security_token_service_preferences: (
1425
+ global_endpoint_token_version: ("v1Token" | "v2Token")
1426
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1427
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1428
+
1429
+ interface _SimulateCustomPolicyResponseSuccess
1430
+ include ::Seahorse::Client::_ResponseSuccess[Types::SimulatePolicyResponse]
1431
+ def evaluation_results: () -> ::Array[Types::EvaluationResult]
1432
+ def is_truncated: () -> bool
1433
+ def marker: () -> ::String
1434
+ end
1435
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#simulate_custom_policy-instance_method
1436
+ def simulate_custom_policy: (
1437
+ policy_input_list: Array[::String],
1438
+ ?permissions_boundary_policy_input_list: Array[::String],
1439
+ action_names: Array[::String],
1440
+ ?resource_arns: Array[::String],
1441
+ ?resource_policy: ::String,
1442
+ ?resource_owner: ::String,
1443
+ ?caller_arn: ::String,
1444
+ ?context_entries: Array[
1445
+ {
1446
+ context_key_name: ::String?,
1447
+ context_key_values: Array[::String]?,
1448
+ context_key_type: ("string" | "stringList" | "numeric" | "numericList" | "boolean" | "booleanList" | "ip" | "ipList" | "binary" | "binaryList" | "date" | "dateList")?
1449
+ },
1450
+ ],
1451
+ ?resource_handling_option: ::String,
1452
+ ?max_items: ::Integer,
1453
+ ?marker: ::String
1454
+ ) -> _SimulateCustomPolicyResponseSuccess
1455
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SimulateCustomPolicyResponseSuccess
1456
+
1457
+ interface _SimulatePrincipalPolicyResponseSuccess
1458
+ include ::Seahorse::Client::_ResponseSuccess[Types::SimulatePolicyResponse]
1459
+ def evaluation_results: () -> ::Array[Types::EvaluationResult]
1460
+ def is_truncated: () -> bool
1461
+ def marker: () -> ::String
1462
+ end
1463
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#simulate_principal_policy-instance_method
1464
+ def simulate_principal_policy: (
1465
+ policy_source_arn: ::String,
1466
+ ?policy_input_list: Array[::String],
1467
+ ?permissions_boundary_policy_input_list: Array[::String],
1468
+ action_names: Array[::String],
1469
+ ?resource_arns: Array[::String],
1470
+ ?resource_policy: ::String,
1471
+ ?resource_owner: ::String,
1472
+ ?caller_arn: ::String,
1473
+ ?context_entries: Array[
1474
+ {
1475
+ context_key_name: ::String?,
1476
+ context_key_values: Array[::String]?,
1477
+ context_key_type: ("string" | "stringList" | "numeric" | "numericList" | "boolean" | "booleanList" | "ip" | "ipList" | "binary" | "binaryList" | "date" | "dateList")?
1478
+ },
1479
+ ],
1480
+ ?resource_handling_option: ::String,
1481
+ ?max_items: ::Integer,
1482
+ ?marker: ::String
1483
+ ) -> _SimulatePrincipalPolicyResponseSuccess
1484
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SimulatePrincipalPolicyResponseSuccess
1485
+
1486
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#tag_instance_profile-instance_method
1487
+ def tag_instance_profile: (
1488
+ instance_profile_name: ::String,
1489
+ tags: Array[
1490
+ {
1491
+ key: ::String,
1492
+ value: ::String
1493
+ },
1494
+ ]
1495
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1496
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1497
+
1498
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#tag_mfa_device-instance_method
1499
+ def tag_mfa_device: (
1500
+ serial_number: ::String,
1501
+ tags: Array[
1502
+ {
1503
+ key: ::String,
1504
+ value: ::String
1505
+ },
1506
+ ]
1507
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1508
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1509
+
1510
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#tag_open_id_connect_provider-instance_method
1511
+ def tag_open_id_connect_provider: (
1512
+ open_id_connect_provider_arn: ::String,
1513
+ tags: Array[
1514
+ {
1515
+ key: ::String,
1516
+ value: ::String
1517
+ },
1518
+ ]
1519
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1520
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1521
+
1522
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#tag_policy-instance_method
1523
+ def tag_policy: (
1524
+ policy_arn: ::String,
1525
+ tags: Array[
1526
+ {
1527
+ key: ::String,
1528
+ value: ::String
1529
+ },
1530
+ ]
1531
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1532
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1533
+
1534
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#tag_role-instance_method
1535
+ def tag_role: (
1536
+ role_name: ::String,
1537
+ tags: Array[
1538
+ {
1539
+ key: ::String,
1540
+ value: ::String
1541
+ },
1542
+ ]
1543
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1544
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1545
+
1546
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#tag_saml_provider-instance_method
1547
+ def tag_saml_provider: (
1548
+ saml_provider_arn: ::String,
1549
+ tags: Array[
1550
+ {
1551
+ key: ::String,
1552
+ value: ::String
1553
+ },
1554
+ ]
1555
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1556
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1557
+
1558
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#tag_server_certificate-instance_method
1559
+ def tag_server_certificate: (
1560
+ server_certificate_name: ::String,
1561
+ tags: Array[
1562
+ {
1563
+ key: ::String,
1564
+ value: ::String
1565
+ },
1566
+ ]
1567
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1568
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1569
+
1570
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#tag_user-instance_method
1571
+ def tag_user: (
1572
+ user_name: ::String,
1573
+ tags: Array[
1574
+ {
1575
+ key: ::String,
1576
+ value: ::String
1577
+ },
1578
+ ]
1579
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1580
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1581
+
1582
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#untag_instance_profile-instance_method
1583
+ def untag_instance_profile: (
1584
+ instance_profile_name: ::String,
1585
+ tag_keys: Array[::String]
1586
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1587
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1588
+
1589
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#untag_mfa_device-instance_method
1590
+ def untag_mfa_device: (
1591
+ serial_number: ::String,
1592
+ tag_keys: Array[::String]
1593
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1594
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1595
+
1596
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#untag_open_id_connect_provider-instance_method
1597
+ def untag_open_id_connect_provider: (
1598
+ open_id_connect_provider_arn: ::String,
1599
+ tag_keys: Array[::String]
1600
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1601
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1602
+
1603
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#untag_policy-instance_method
1604
+ def untag_policy: (
1605
+ policy_arn: ::String,
1606
+ tag_keys: Array[::String]
1607
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1608
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1609
+
1610
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#untag_role-instance_method
1611
+ def untag_role: (
1612
+ role_name: ::String,
1613
+ tag_keys: Array[::String]
1614
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1615
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1616
+
1617
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#untag_saml_provider-instance_method
1618
+ def untag_saml_provider: (
1619
+ saml_provider_arn: ::String,
1620
+ tag_keys: Array[::String]
1621
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1622
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1623
+
1624
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#untag_server_certificate-instance_method
1625
+ def untag_server_certificate: (
1626
+ server_certificate_name: ::String,
1627
+ tag_keys: Array[::String]
1628
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1629
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1630
+
1631
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#untag_user-instance_method
1632
+ def untag_user: (
1633
+ user_name: ::String,
1634
+ tag_keys: Array[::String]
1635
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1636
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1637
+
1638
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#update_access_key-instance_method
1639
+ def update_access_key: (
1640
+ ?user_name: ::String,
1641
+ access_key_id: ::String,
1642
+ status: ("Active" | "Inactive")
1643
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1644
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1645
+
1646
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#update_account_password_policy-instance_method
1647
+ def update_account_password_policy: (
1648
+ ?minimum_password_length: ::Integer,
1649
+ ?require_symbols: bool,
1650
+ ?require_numbers: bool,
1651
+ ?require_uppercase_characters: bool,
1652
+ ?require_lowercase_characters: bool,
1653
+ ?allow_users_to_change_password: bool,
1654
+ ?max_password_age: ::Integer,
1655
+ ?password_reuse_prevention: ::Integer,
1656
+ ?hard_expiry: bool
1657
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1658
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1659
+
1660
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#update_assume_role_policy-instance_method
1661
+ def update_assume_role_policy: (
1662
+ role_name: ::String,
1663
+ policy_document: ::String
1664
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1665
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1666
+
1667
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#update_group-instance_method
1668
+ def update_group: (
1669
+ group_name: ::String,
1670
+ ?new_path: ::String,
1671
+ ?new_group_name: ::String
1672
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1673
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1674
+
1675
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#update_login_profile-instance_method
1676
+ def update_login_profile: (
1677
+ user_name: ::String,
1678
+ ?password: ::String,
1679
+ ?password_reset_required: bool
1680
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1681
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1682
+
1683
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#update_open_id_connect_provider_thumbprint-instance_method
1684
+ def update_open_id_connect_provider_thumbprint: (
1685
+ open_id_connect_provider_arn: ::String,
1686
+ thumbprint_list: Array[::String]
1687
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1688
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1689
+
1690
+ interface _UpdateRoleResponseSuccess
1691
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRoleResponse]
1692
+ end
1693
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#update_role-instance_method
1694
+ def update_role: (
1695
+ role_name: ::String,
1696
+ ?description: ::String,
1697
+ ?max_session_duration: ::Integer
1698
+ ) -> _UpdateRoleResponseSuccess
1699
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRoleResponseSuccess
1700
+
1701
+ interface _UpdateRoleDescriptionResponseSuccess
1702
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRoleDescriptionResponse]
1703
+ def role: () -> Types::Role
1704
+ end
1705
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#update_role_description-instance_method
1706
+ def update_role_description: (
1707
+ role_name: ::String,
1708
+ description: ::String
1709
+ ) -> _UpdateRoleDescriptionResponseSuccess
1710
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRoleDescriptionResponseSuccess
1711
+
1712
+ interface _UpdateSAMLProviderResponseSuccess
1713
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSAMLProviderResponse]
1714
+ def saml_provider_arn: () -> ::String
1715
+ end
1716
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#update_saml_provider-instance_method
1717
+ def update_saml_provider: (
1718
+ saml_metadata_document: ::String,
1719
+ saml_provider_arn: ::String
1720
+ ) -> _UpdateSAMLProviderResponseSuccess
1721
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSAMLProviderResponseSuccess
1722
+
1723
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#update_ssh_public_key-instance_method
1724
+ def update_ssh_public_key: (
1725
+ user_name: ::String,
1726
+ ssh_public_key_id: ::String,
1727
+ status: ("Active" | "Inactive")
1728
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1729
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1730
+
1731
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#update_server_certificate-instance_method
1732
+ def update_server_certificate: (
1733
+ server_certificate_name: ::String,
1734
+ ?new_path: ::String,
1735
+ ?new_server_certificate_name: ::String
1736
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1737
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1738
+
1739
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#update_service_specific_credential-instance_method
1740
+ def update_service_specific_credential: (
1741
+ ?user_name: ::String,
1742
+ service_specific_credential_id: ::String,
1743
+ status: ("Active" | "Inactive")
1744
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1745
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1746
+
1747
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#update_signing_certificate-instance_method
1748
+ def update_signing_certificate: (
1749
+ ?user_name: ::String,
1750
+ certificate_id: ::String,
1751
+ status: ("Active" | "Inactive")
1752
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1753
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1754
+
1755
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#update_user-instance_method
1756
+ def update_user: (
1757
+ user_name: ::String,
1758
+ ?new_path: ::String,
1759
+ ?new_user_name: ::String
1760
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1761
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1762
+
1763
+ interface _UploadSSHPublicKeyResponseSuccess
1764
+ include ::Seahorse::Client::_ResponseSuccess[Types::UploadSSHPublicKeyResponse]
1765
+ def ssh_public_key: () -> Types::SSHPublicKey
1766
+ end
1767
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#upload_ssh_public_key-instance_method
1768
+ def upload_ssh_public_key: (
1769
+ user_name: ::String,
1770
+ ssh_public_key_body: ::String
1771
+ ) -> _UploadSSHPublicKeyResponseSuccess
1772
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UploadSSHPublicKeyResponseSuccess
1773
+
1774
+ interface _UploadServerCertificateResponseSuccess
1775
+ include ::Seahorse::Client::_ResponseSuccess[Types::UploadServerCertificateResponse]
1776
+ def server_certificate_metadata: () -> Types::ServerCertificateMetadata
1777
+ def tags: () -> ::Array[Types::Tag]
1778
+ end
1779
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#upload_server_certificate-instance_method
1780
+ def upload_server_certificate: (
1781
+ ?path: ::String,
1782
+ server_certificate_name: ::String,
1783
+ certificate_body: ::String,
1784
+ private_key: ::String,
1785
+ ?certificate_chain: ::String,
1786
+ ?tags: Array[
1787
+ {
1788
+ key: ::String,
1789
+ value: ::String
1790
+ },
1791
+ ]
1792
+ ) -> _UploadServerCertificateResponseSuccess
1793
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UploadServerCertificateResponseSuccess
1794
+
1795
+ interface _UploadSigningCertificateResponseSuccess
1796
+ include ::Seahorse::Client::_ResponseSuccess[Types::UploadSigningCertificateResponse]
1797
+ def certificate: () -> Types::SigningCertificate
1798
+ end
1799
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#upload_signing_certificate-instance_method
1800
+ def upload_signing_certificate: (
1801
+ ?user_name: ::String,
1802
+ certificate_body: ::String
1803
+ ) -> _UploadSigningCertificateResponseSuccess
1804
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UploadSigningCertificateResponseSuccess
1805
+
1806
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#wait_until-instance_method
1807
+ def wait_until: (:instance_profile_exists waiter_name,
1808
+ instance_profile_name: ::String
1809
+ ) -> Client::_GetInstanceProfileResponseSuccess
1810
+ | (:instance_profile_exists waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetInstanceProfileResponseSuccess
1811
+ | (:policy_exists waiter_name,
1812
+ policy_arn: ::String
1813
+ ) -> Client::_GetPolicyResponseSuccess
1814
+ | (:policy_exists waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetPolicyResponseSuccess
1815
+ | (:role_exists waiter_name,
1816
+ role_name: ::String
1817
+ ) -> Client::_GetRoleResponseSuccess
1818
+ | (:role_exists waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetRoleResponseSuccess
1819
+ | (:user_exists waiter_name,
1820
+ ?user_name: ::String
1821
+ ) -> Client::_GetUserResponseSuccess
1822
+ | (:user_exists waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetUserResponseSuccess
1823
+ end
1824
+ end
1825
+ end
1826
+