mypy-boto3-sso-admin 1.28.37__py3-none-any.whl → 1.29.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mypy_boto3_sso_admin/__init__.py +1 -0
- mypy_boto3_sso_admin/__init__.pyi +1 -0
- mypy_boto3_sso_admin/__main__.py +4 -3
- mypy_boto3_sso_admin/client.py +83 -63
- mypy_boto3_sso_admin/client.pyi +134 -63
- mypy_boto3_sso_admin/literals.py +9 -1
- mypy_boto3_sso_admin/literals.pyi +9 -1
- mypy_boto3_sso_admin/paginator.py +3 -2
- mypy_boto3_sso_admin/paginator.pyi +3 -2
- mypy_boto3_sso_admin/type_defs.py +54 -139
- mypy_boto3_sso_admin/type_defs.pyi +54 -139
- mypy_boto3_sso_admin/version.py +2 -1
- {mypy_boto3_sso_admin-1.28.37.dist-info → mypy_boto3_sso_admin-1.29.0.dist-info}/METADATA +16 -16
- mypy_boto3_sso_admin-1.29.0.dist-info/RECORD +18 -0
- {mypy_boto3_sso_admin-1.28.37.dist-info → mypy_boto3_sso_admin-1.29.0.dist-info}/WHEEL +1 -1
- mypy_boto3_sso_admin-1.28.37.dist-info/RECORD +0 -18
- {mypy_boto3_sso_admin-1.28.37.dist-info → mypy_boto3_sso_admin-1.29.0.dist-info}/LICENSE +0 -0
- {mypy_boto3_sso_admin-1.28.37.dist-info → mypy_boto3_sso_admin-1.29.0.dist-info}/top_level.txt +0 -0
mypy_boto3_sso_admin/client.pyi
CHANGED
|
@@ -13,6 +13,7 @@ Usage::
|
|
|
13
13
|
client: SSOAdminClient = session.client("sso-admin")
|
|
14
14
|
```
|
|
15
15
|
"""
|
|
16
|
+
|
|
16
17
|
import sys
|
|
17
18
|
from typing import Any, Dict, Mapping, Sequence, Type, overload
|
|
18
19
|
|
|
@@ -69,7 +70,7 @@ else:
|
|
|
69
70
|
|
|
70
71
|
__all__ = ("SSOAdminClient",)
|
|
71
72
|
|
|
72
|
-
class BotocoreClientError(
|
|
73
|
+
class BotocoreClientError(Exception):
|
|
73
74
|
MSG_TEMPLATE: str
|
|
74
75
|
|
|
75
76
|
def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
|
|
@@ -102,12 +103,13 @@ class SSOAdminClient(BaseClient):
|
|
|
102
103
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.exceptions)
|
|
103
104
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#exceptions)
|
|
104
105
|
"""
|
|
106
|
+
|
|
105
107
|
def attach_customer_managed_policy_reference_to_permission_set(
|
|
106
108
|
self,
|
|
107
109
|
*,
|
|
110
|
+
CustomerManagedPolicyReference: CustomerManagedPolicyReferenceTypeDef,
|
|
108
111
|
InstanceArn: str,
|
|
109
|
-
PermissionSetArn: str
|
|
110
|
-
CustomerManagedPolicyReference: CustomerManagedPolicyReferenceTypeDef
|
|
112
|
+
PermissionSetArn: str
|
|
111
113
|
) -> Dict[str, Any]:
|
|
112
114
|
"""
|
|
113
115
|
Attaches the specified customer managed policy to the specified PermissionSet.
|
|
@@ -115,15 +117,17 @@ class SSOAdminClient(BaseClient):
|
|
|
115
117
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.attach_customer_managed_policy_reference_to_permission_set)
|
|
116
118
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#attach_customer_managed_policy_reference_to_permission_set)
|
|
117
119
|
"""
|
|
120
|
+
|
|
118
121
|
def attach_managed_policy_to_permission_set(
|
|
119
|
-
self, *, InstanceArn: str,
|
|
122
|
+
self, *, InstanceArn: str, ManagedPolicyArn: str, PermissionSetArn: str
|
|
120
123
|
) -> Dict[str, Any]:
|
|
121
124
|
"""
|
|
122
|
-
Attaches an
|
|
125
|
+
Attaches an Amazon Web Services managed policy ARN to a permission set.
|
|
123
126
|
|
|
124
127
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.attach_managed_policy_to_permission_set)
|
|
125
128
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#attach_managed_policy_to_permission_set)
|
|
126
129
|
"""
|
|
130
|
+
|
|
127
131
|
def can_paginate(self, operation_name: str) -> bool:
|
|
128
132
|
"""
|
|
129
133
|
Check if an operation can be paginated.
|
|
@@ -131,6 +135,7 @@ class SSOAdminClient(BaseClient):
|
|
|
131
135
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.can_paginate)
|
|
132
136
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#can_paginate)
|
|
133
137
|
"""
|
|
138
|
+
|
|
134
139
|
def close(self) -> None:
|
|
135
140
|
"""
|
|
136
141
|
Closes underlying endpoint connections.
|
|
@@ -138,44 +143,49 @@ class SSOAdminClient(BaseClient):
|
|
|
138
143
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.close)
|
|
139
144
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#close)
|
|
140
145
|
"""
|
|
146
|
+
|
|
141
147
|
def create_account_assignment(
|
|
142
148
|
self,
|
|
143
149
|
*,
|
|
144
150
|
InstanceArn: str,
|
|
145
|
-
TargetId: str,
|
|
146
|
-
TargetType: Literal["AWS_ACCOUNT"],
|
|
147
151
|
PermissionSetArn: str,
|
|
152
|
+
PrincipalId: str,
|
|
148
153
|
PrincipalType: PrincipalTypeType,
|
|
149
|
-
|
|
154
|
+
TargetId: str,
|
|
155
|
+
TargetType: Literal["AWS_ACCOUNT"]
|
|
150
156
|
) -> CreateAccountAssignmentResponseTypeDef:
|
|
151
157
|
"""
|
|
152
|
-
Assigns access to a principal for a specified
|
|
153
|
-
permission
|
|
158
|
+
Assigns access to a principal for a specified Amazon Web Services account using
|
|
159
|
+
a specified permission
|
|
160
|
+
set.
|
|
154
161
|
|
|
155
162
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.create_account_assignment)
|
|
156
163
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#create_account_assignment)
|
|
157
164
|
"""
|
|
165
|
+
|
|
158
166
|
def create_instance_access_control_attribute_configuration(
|
|
159
167
|
self,
|
|
160
168
|
*,
|
|
161
|
-
|
|
162
|
-
|
|
169
|
+
InstanceAccessControlAttributeConfiguration: InstanceAccessControlAttributeConfigurationTypeDef,
|
|
170
|
+
InstanceArn: str
|
|
163
171
|
) -> Dict[str, Any]:
|
|
164
172
|
"""
|
|
165
|
-
Enables the attributes-based access control (ABAC) feature for the specified
|
|
166
|
-
Identity Center
|
|
173
|
+
Enables the attributes-based access control (ABAC) feature for the specified
|
|
174
|
+
IAM Identity Center
|
|
175
|
+
instance.
|
|
167
176
|
|
|
168
177
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.create_instance_access_control_attribute_configuration)
|
|
169
178
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#create_instance_access_control_attribute_configuration)
|
|
170
179
|
"""
|
|
180
|
+
|
|
171
181
|
def create_permission_set(
|
|
172
182
|
self,
|
|
173
183
|
*,
|
|
174
|
-
Name: str,
|
|
175
184
|
InstanceArn: str,
|
|
185
|
+
Name: str,
|
|
176
186
|
Description: str = ...,
|
|
177
|
-
SessionDuration: str = ...,
|
|
178
187
|
RelayState: str = ...,
|
|
188
|
+
SessionDuration: str = ...,
|
|
179
189
|
Tags: Sequence[TagTypeDef] = ...
|
|
180
190
|
) -> CreatePermissionSetResponseTypeDef:
|
|
181
191
|
"""
|
|
@@ -184,23 +194,26 @@ class SSOAdminClient(BaseClient):
|
|
|
184
194
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.create_permission_set)
|
|
185
195
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#create_permission_set)
|
|
186
196
|
"""
|
|
197
|
+
|
|
187
198
|
def delete_account_assignment(
|
|
188
199
|
self,
|
|
189
200
|
*,
|
|
190
201
|
InstanceArn: str,
|
|
191
|
-
TargetId: str,
|
|
192
|
-
TargetType: Literal["AWS_ACCOUNT"],
|
|
193
202
|
PermissionSetArn: str,
|
|
203
|
+
PrincipalId: str,
|
|
194
204
|
PrincipalType: PrincipalTypeType,
|
|
195
|
-
|
|
205
|
+
TargetId: str,
|
|
206
|
+
TargetType: Literal["AWS_ACCOUNT"]
|
|
196
207
|
) -> DeleteAccountAssignmentResponseTypeDef:
|
|
197
208
|
"""
|
|
198
|
-
Deletes a principal's access from a specified
|
|
199
|
-
permission
|
|
209
|
+
Deletes a principal's access from a specified Amazon Web Services account using
|
|
210
|
+
a specified permission
|
|
211
|
+
set.
|
|
200
212
|
|
|
201
213
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.delete_account_assignment)
|
|
202
214
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#delete_account_assignment)
|
|
203
215
|
"""
|
|
216
|
+
|
|
204
217
|
def delete_inline_policy_from_permission_set(
|
|
205
218
|
self, *, InstanceArn: str, PermissionSetArn: str
|
|
206
219
|
) -> Dict[str, Any]:
|
|
@@ -210,17 +223,20 @@ class SSOAdminClient(BaseClient):
|
|
|
210
223
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.delete_inline_policy_from_permission_set)
|
|
211
224
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#delete_inline_policy_from_permission_set)
|
|
212
225
|
"""
|
|
226
|
+
|
|
213
227
|
def delete_instance_access_control_attribute_configuration(
|
|
214
228
|
self, *, InstanceArn: str
|
|
215
229
|
) -> Dict[str, Any]:
|
|
216
230
|
"""
|
|
217
231
|
Disables the attributes-based access control (ABAC) feature for the specified
|
|
218
|
-
IAM Identity Center instance and deletes all of the attribute mappings that
|
|
219
|
-
been
|
|
232
|
+
IAM Identity Center instance and deletes all of the attribute mappings that
|
|
233
|
+
have been
|
|
234
|
+
configured.
|
|
220
235
|
|
|
221
236
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.delete_instance_access_control_attribute_configuration)
|
|
222
237
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#delete_instance_access_control_attribute_configuration)
|
|
223
238
|
"""
|
|
239
|
+
|
|
224
240
|
def delete_permission_set(self, *, InstanceArn: str, PermissionSetArn: str) -> Dict[str, Any]:
|
|
225
241
|
"""
|
|
226
242
|
Deletes the specified permission set.
|
|
@@ -228,6 +244,7 @@ class SSOAdminClient(BaseClient):
|
|
|
228
244
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.delete_permission_set)
|
|
229
245
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#delete_permission_set)
|
|
230
246
|
"""
|
|
247
|
+
|
|
231
248
|
def delete_permissions_boundary_from_permission_set(
|
|
232
249
|
self, *, InstanceArn: str, PermissionSetArn: str
|
|
233
250
|
) -> Dict[str, Any]:
|
|
@@ -237,8 +254,9 @@ class SSOAdminClient(BaseClient):
|
|
|
237
254
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.delete_permissions_boundary_from_permission_set)
|
|
238
255
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#delete_permissions_boundary_from_permission_set)
|
|
239
256
|
"""
|
|
257
|
+
|
|
240
258
|
def describe_account_assignment_creation_status(
|
|
241
|
-
self, *,
|
|
259
|
+
self, *, AccountAssignmentCreationRequestId: str, InstanceArn: str
|
|
242
260
|
) -> DescribeAccountAssignmentCreationStatusResponseTypeDef:
|
|
243
261
|
"""
|
|
244
262
|
Describes the status of the assignment creation request.
|
|
@@ -246,8 +264,9 @@ class SSOAdminClient(BaseClient):
|
|
|
246
264
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.describe_account_assignment_creation_status)
|
|
247
265
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#describe_account_assignment_creation_status)
|
|
248
266
|
"""
|
|
267
|
+
|
|
249
268
|
def describe_account_assignment_deletion_status(
|
|
250
|
-
self, *,
|
|
269
|
+
self, *, AccountAssignmentDeletionRequestId: str, InstanceArn: str
|
|
251
270
|
) -> DescribeAccountAssignmentDeletionStatusResponseTypeDef:
|
|
252
271
|
"""
|
|
253
272
|
Describes the status of the assignment deletion request.
|
|
@@ -255,17 +274,20 @@ class SSOAdminClient(BaseClient):
|
|
|
255
274
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.describe_account_assignment_deletion_status)
|
|
256
275
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#describe_account_assignment_deletion_status)
|
|
257
276
|
"""
|
|
277
|
+
|
|
258
278
|
def describe_instance_access_control_attribute_configuration(
|
|
259
279
|
self, *, InstanceArn: str
|
|
260
280
|
) -> DescribeInstanceAccessControlAttributeConfigurationResponseTypeDef:
|
|
261
281
|
"""
|
|
262
|
-
Returns the list of IAM Identity Center identity store attributes that have
|
|
263
|
-
configured to work with attributes-based access control (ABAC) for the
|
|
264
|
-
IAM Identity Center
|
|
282
|
+
Returns the list of IAM Identity Center identity store attributes that have
|
|
283
|
+
been configured to work with attributes-based access control (ABAC) for the
|
|
284
|
+
specified IAM Identity Center
|
|
285
|
+
instance.
|
|
265
286
|
|
|
266
287
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.describe_instance_access_control_attribute_configuration)
|
|
267
288
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#describe_instance_access_control_attribute_configuration)
|
|
268
289
|
"""
|
|
290
|
+
|
|
269
291
|
def describe_permission_set(
|
|
270
292
|
self, *, InstanceArn: str, PermissionSetArn: str
|
|
271
293
|
) -> DescribePermissionSetResponseTypeDef:
|
|
@@ -275,6 +297,7 @@ class SSOAdminClient(BaseClient):
|
|
|
275
297
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.describe_permission_set)
|
|
276
298
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#describe_permission_set)
|
|
277
299
|
"""
|
|
300
|
+
|
|
278
301
|
def describe_permission_set_provisioning_status(
|
|
279
302
|
self, *, InstanceArn: str, ProvisionPermissionSetRequestId: str
|
|
280
303
|
) -> DescribePermissionSetProvisioningStatusResponseTypeDef:
|
|
@@ -284,12 +307,13 @@ class SSOAdminClient(BaseClient):
|
|
|
284
307
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.describe_permission_set_provisioning_status)
|
|
285
308
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#describe_permission_set_provisioning_status)
|
|
286
309
|
"""
|
|
310
|
+
|
|
287
311
|
def detach_customer_managed_policy_reference_from_permission_set(
|
|
288
312
|
self,
|
|
289
313
|
*,
|
|
314
|
+
CustomerManagedPolicyReference: CustomerManagedPolicyReferenceTypeDef,
|
|
290
315
|
InstanceArn: str,
|
|
291
|
-
PermissionSetArn: str
|
|
292
|
-
CustomerManagedPolicyReference: CustomerManagedPolicyReferenceTypeDef
|
|
316
|
+
PermissionSetArn: str
|
|
293
317
|
) -> Dict[str, Any]:
|
|
294
318
|
"""
|
|
295
319
|
Detaches the specified customer managed policy from the specified
|
|
@@ -298,15 +322,19 @@ class SSOAdminClient(BaseClient):
|
|
|
298
322
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.detach_customer_managed_policy_reference_from_permission_set)
|
|
299
323
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#detach_customer_managed_policy_reference_from_permission_set)
|
|
300
324
|
"""
|
|
325
|
+
|
|
301
326
|
def detach_managed_policy_from_permission_set(
|
|
302
|
-
self, *, InstanceArn: str,
|
|
327
|
+
self, *, InstanceArn: str, ManagedPolicyArn: str, PermissionSetArn: str
|
|
303
328
|
) -> Dict[str, Any]:
|
|
304
329
|
"""
|
|
305
|
-
Detaches the attached
|
|
330
|
+
Detaches the attached Amazon Web Services managed policy ARN from the specified
|
|
331
|
+
permission
|
|
332
|
+
set.
|
|
306
333
|
|
|
307
334
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.detach_managed_policy_from_permission_set)
|
|
308
335
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#detach_managed_policy_from_permission_set)
|
|
309
336
|
"""
|
|
337
|
+
|
|
310
338
|
def generate_presigned_url(
|
|
311
339
|
self,
|
|
312
340
|
ClientMethod: str,
|
|
@@ -320,6 +348,7 @@ class SSOAdminClient(BaseClient):
|
|
|
320
348
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.generate_presigned_url)
|
|
321
349
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#generate_presigned_url)
|
|
322
350
|
"""
|
|
351
|
+
|
|
323
352
|
def get_inline_policy_for_permission_set(
|
|
324
353
|
self, *, InstanceArn: str, PermissionSetArn: str
|
|
325
354
|
) -> GetInlinePolicyForPermissionSetResponseTypeDef:
|
|
@@ -329,6 +358,7 @@ class SSOAdminClient(BaseClient):
|
|
|
329
358
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_inline_policy_for_permission_set)
|
|
330
359
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_inline_policy_for_permission_set)
|
|
331
360
|
"""
|
|
361
|
+
|
|
332
362
|
def get_permissions_boundary_for_permission_set(
|
|
333
363
|
self, *, InstanceArn: str, PermissionSetArn: str
|
|
334
364
|
) -> GetPermissionsBoundaryForPermissionSetResponseTypeDef:
|
|
@@ -338,67 +368,77 @@ class SSOAdminClient(BaseClient):
|
|
|
338
368
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_permissions_boundary_for_permission_set)
|
|
339
369
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_permissions_boundary_for_permission_set)
|
|
340
370
|
"""
|
|
371
|
+
|
|
341
372
|
def list_account_assignment_creation_status(
|
|
342
373
|
self,
|
|
343
374
|
*,
|
|
344
375
|
InstanceArn: str,
|
|
376
|
+
Filter: OperationStatusFilterTypeDef = ...,
|
|
345
377
|
MaxResults: int = ...,
|
|
346
|
-
NextToken: str =
|
|
347
|
-
Filter: OperationStatusFilterTypeDef = ...
|
|
378
|
+
NextToken: str = ...
|
|
348
379
|
) -> ListAccountAssignmentCreationStatusResponseTypeDef:
|
|
349
380
|
"""
|
|
350
|
-
Lists the status of the
|
|
351
|
-
IAM Identity Center
|
|
381
|
+
Lists the status of the Amazon Web Services account assignment creation
|
|
382
|
+
requests for a specified IAM Identity Center
|
|
383
|
+
instance.
|
|
352
384
|
|
|
353
385
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_account_assignment_creation_status)
|
|
354
386
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_account_assignment_creation_status)
|
|
355
387
|
"""
|
|
388
|
+
|
|
356
389
|
def list_account_assignment_deletion_status(
|
|
357
390
|
self,
|
|
358
391
|
*,
|
|
359
392
|
InstanceArn: str,
|
|
393
|
+
Filter: OperationStatusFilterTypeDef = ...,
|
|
360
394
|
MaxResults: int = ...,
|
|
361
|
-
NextToken: str =
|
|
362
|
-
Filter: OperationStatusFilterTypeDef = ...
|
|
395
|
+
NextToken: str = ...
|
|
363
396
|
) -> ListAccountAssignmentDeletionStatusResponseTypeDef:
|
|
364
397
|
"""
|
|
365
|
-
Lists the status of the
|
|
366
|
-
IAM Identity Center
|
|
398
|
+
Lists the status of the Amazon Web Services account assignment deletion
|
|
399
|
+
requests for a specified IAM Identity Center
|
|
400
|
+
instance.
|
|
367
401
|
|
|
368
402
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_account_assignment_deletion_status)
|
|
369
403
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_account_assignment_deletion_status)
|
|
370
404
|
"""
|
|
405
|
+
|
|
371
406
|
def list_account_assignments(
|
|
372
407
|
self,
|
|
373
408
|
*,
|
|
374
|
-
InstanceArn: str,
|
|
375
409
|
AccountId: str,
|
|
410
|
+
InstanceArn: str,
|
|
376
411
|
PermissionSetArn: str,
|
|
377
412
|
MaxResults: int = ...,
|
|
378
413
|
NextToken: str = ...
|
|
379
414
|
) -> ListAccountAssignmentsResponseTypeDef:
|
|
380
415
|
"""
|
|
381
|
-
Lists the assignee of the specified
|
|
416
|
+
Lists the assignee of the specified Amazon Web Services account with the
|
|
417
|
+
specified permission
|
|
382
418
|
set.
|
|
383
419
|
|
|
384
420
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_account_assignments)
|
|
385
421
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_account_assignments)
|
|
386
422
|
"""
|
|
423
|
+
|
|
387
424
|
def list_accounts_for_provisioned_permission_set(
|
|
388
425
|
self,
|
|
389
426
|
*,
|
|
390
427
|
InstanceArn: str,
|
|
391
428
|
PermissionSetArn: str,
|
|
392
|
-
ProvisioningStatus: ProvisioningStatusType = ...,
|
|
393
429
|
MaxResults: int = ...,
|
|
394
|
-
NextToken: str =
|
|
430
|
+
NextToken: str = ...,
|
|
431
|
+
ProvisioningStatus: ProvisioningStatusType = ...
|
|
395
432
|
) -> ListAccountsForProvisionedPermissionSetResponseTypeDef:
|
|
396
433
|
"""
|
|
397
|
-
Lists all the
|
|
434
|
+
Lists all the Amazon Web Services accounts where the specified permission set
|
|
435
|
+
is
|
|
436
|
+
provisioned.
|
|
398
437
|
|
|
399
438
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_accounts_for_provisioned_permission_set)
|
|
400
439
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_accounts_for_provisioned_permission_set)
|
|
401
440
|
"""
|
|
441
|
+
|
|
402
442
|
def list_customer_managed_policy_references_in_permission_set(
|
|
403
443
|
self,
|
|
404
444
|
*,
|
|
@@ -413,6 +453,7 @@ class SSOAdminClient(BaseClient):
|
|
|
413
453
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_customer_managed_policy_references_in_permission_set)
|
|
414
454
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_customer_managed_policy_references_in_permission_set)
|
|
415
455
|
"""
|
|
456
|
+
|
|
416
457
|
def list_instances(
|
|
417
458
|
self, *, MaxResults: int = ..., NextToken: str = ...
|
|
418
459
|
) -> ListInstancesResponseTypeDef:
|
|
@@ -422,6 +463,7 @@ class SSOAdminClient(BaseClient):
|
|
|
422
463
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_instances)
|
|
423
464
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_instances)
|
|
424
465
|
"""
|
|
466
|
+
|
|
425
467
|
def list_managed_policies_in_permission_set(
|
|
426
468
|
self,
|
|
427
469
|
*,
|
|
@@ -431,28 +473,33 @@ class SSOAdminClient(BaseClient):
|
|
|
431
473
|
NextToken: str = ...
|
|
432
474
|
) -> ListManagedPoliciesInPermissionSetResponseTypeDef:
|
|
433
475
|
"""
|
|
434
|
-
Lists the
|
|
476
|
+
Lists the Amazon Web Services managed policy that is attached to a specified
|
|
477
|
+
permission
|
|
478
|
+
set.
|
|
435
479
|
|
|
436
480
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_managed_policies_in_permission_set)
|
|
437
481
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_managed_policies_in_permission_set)
|
|
438
482
|
"""
|
|
483
|
+
|
|
439
484
|
def list_permission_set_provisioning_status(
|
|
440
485
|
self,
|
|
441
486
|
*,
|
|
442
487
|
InstanceArn: str,
|
|
488
|
+
Filter: OperationStatusFilterTypeDef = ...,
|
|
443
489
|
MaxResults: int = ...,
|
|
444
|
-
NextToken: str =
|
|
445
|
-
Filter: OperationStatusFilterTypeDef = ...
|
|
490
|
+
NextToken: str = ...
|
|
446
491
|
) -> ListPermissionSetProvisioningStatusResponseTypeDef:
|
|
447
492
|
"""
|
|
448
|
-
Lists the status of the permission set provisioning requests for a specified
|
|
449
|
-
Identity Center
|
|
493
|
+
Lists the status of the permission set provisioning requests for a specified
|
|
494
|
+
IAM Identity Center
|
|
495
|
+
instance.
|
|
450
496
|
|
|
451
497
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_permission_set_provisioning_status)
|
|
452
498
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_permission_set_provisioning_status)
|
|
453
499
|
"""
|
|
500
|
+
|
|
454
501
|
def list_permission_sets(
|
|
455
|
-
self, *, InstanceArn: str,
|
|
502
|
+
self, *, InstanceArn: str, MaxResults: int = ..., NextToken: str = ...
|
|
456
503
|
) -> ListPermissionSetsResponseTypeDef:
|
|
457
504
|
"""
|
|
458
505
|
Lists the PermissionSets in an IAM Identity Center instance.
|
|
@@ -460,21 +507,25 @@ class SSOAdminClient(BaseClient):
|
|
|
460
507
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_permission_sets)
|
|
461
508
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_permission_sets)
|
|
462
509
|
"""
|
|
510
|
+
|
|
463
511
|
def list_permission_sets_provisioned_to_account(
|
|
464
512
|
self,
|
|
465
513
|
*,
|
|
466
|
-
InstanceArn: str,
|
|
467
514
|
AccountId: str,
|
|
468
|
-
|
|
515
|
+
InstanceArn: str,
|
|
469
516
|
MaxResults: int = ...,
|
|
470
|
-
NextToken: str =
|
|
517
|
+
NextToken: str = ...,
|
|
518
|
+
ProvisioningStatus: ProvisioningStatusType = ...
|
|
471
519
|
) -> ListPermissionSetsProvisionedToAccountResponseTypeDef:
|
|
472
520
|
"""
|
|
473
|
-
Lists all the permission sets that are provisioned to a specified
|
|
521
|
+
Lists all the permission sets that are provisioned to a specified Amazon Web
|
|
522
|
+
Services
|
|
523
|
+
account.
|
|
474
524
|
|
|
475
525
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_permission_sets_provisioned_to_account)
|
|
476
526
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_permission_sets_provisioned_to_account)
|
|
477
527
|
"""
|
|
528
|
+
|
|
478
529
|
def list_tags_for_resource(
|
|
479
530
|
self, *, InstanceArn: str, ResourceArn: str, NextToken: str = ...
|
|
480
531
|
) -> ListTagsForResourceResponseTypeDef:
|
|
@@ -484,6 +535,7 @@ class SSOAdminClient(BaseClient):
|
|
|
484
535
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_tags_for_resource)
|
|
485
536
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_tags_for_resource)
|
|
486
537
|
"""
|
|
538
|
+
|
|
487
539
|
def provision_permission_set(
|
|
488
540
|
self,
|
|
489
541
|
*,
|
|
@@ -499,8 +551,9 @@ class SSOAdminClient(BaseClient):
|
|
|
499
551
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.provision_permission_set)
|
|
500
552
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#provision_permission_set)
|
|
501
553
|
"""
|
|
554
|
+
|
|
502
555
|
def put_inline_policy_to_permission_set(
|
|
503
|
-
self, *,
|
|
556
|
+
self, *, InlinePolicy: str, InstanceArn: str, PermissionSetArn: str
|
|
504
557
|
) -> Dict[str, Any]:
|
|
505
558
|
"""
|
|
506
559
|
Attaches an inline policy to a permission set.
|
|
@@ -508,6 +561,7 @@ class SSOAdminClient(BaseClient):
|
|
|
508
561
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.put_inline_policy_to_permission_set)
|
|
509
562
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#put_inline_policy_to_permission_set)
|
|
510
563
|
"""
|
|
564
|
+
|
|
511
565
|
def put_permissions_boundary_to_permission_set(
|
|
512
566
|
self,
|
|
513
567
|
*,
|
|
@@ -516,12 +570,14 @@ class SSOAdminClient(BaseClient):
|
|
|
516
570
|
PermissionsBoundary: PermissionsBoundaryTypeDef
|
|
517
571
|
) -> Dict[str, Any]:
|
|
518
572
|
"""
|
|
519
|
-
Attaches an
|
|
520
|
-
PermissionSet as a permissions
|
|
573
|
+
Attaches an Amazon Web Services managed or customer managed policy to the
|
|
574
|
+
specified PermissionSet as a permissions
|
|
575
|
+
boundary.
|
|
521
576
|
|
|
522
577
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.put_permissions_boundary_to_permission_set)
|
|
523
578
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#put_permissions_boundary_to_permission_set)
|
|
524
579
|
"""
|
|
580
|
+
|
|
525
581
|
def tag_resource(
|
|
526
582
|
self, *, InstanceArn: str, ResourceArn: str, Tags: Sequence[TagTypeDef]
|
|
527
583
|
) -> Dict[str, Any]:
|
|
@@ -531,6 +587,7 @@ class SSOAdminClient(BaseClient):
|
|
|
531
587
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.tag_resource)
|
|
532
588
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#tag_resource)
|
|
533
589
|
"""
|
|
590
|
+
|
|
534
591
|
def untag_resource(
|
|
535
592
|
self, *, InstanceArn: str, ResourceArn: str, TagKeys: Sequence[str]
|
|
536
593
|
) -> Dict[str, Any]:
|
|
@@ -540,27 +597,30 @@ class SSOAdminClient(BaseClient):
|
|
|
540
597
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.untag_resource)
|
|
541
598
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#untag_resource)
|
|
542
599
|
"""
|
|
600
|
+
|
|
543
601
|
def update_instance_access_control_attribute_configuration(
|
|
544
602
|
self,
|
|
545
603
|
*,
|
|
546
|
-
|
|
547
|
-
|
|
604
|
+
InstanceAccessControlAttributeConfiguration: InstanceAccessControlAttributeConfigurationTypeDef,
|
|
605
|
+
InstanceArn: str
|
|
548
606
|
) -> Dict[str, Any]:
|
|
549
607
|
"""
|
|
550
608
|
Updates the IAM Identity Center identity store attributes that you can use with
|
|
551
|
-
the IAM Identity Center instance for attributes-based access control
|
|
609
|
+
the IAM Identity Center instance for attributes-based access control
|
|
610
|
+
(ABAC).
|
|
552
611
|
|
|
553
612
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.update_instance_access_control_attribute_configuration)
|
|
554
613
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#update_instance_access_control_attribute_configuration)
|
|
555
614
|
"""
|
|
615
|
+
|
|
556
616
|
def update_permission_set(
|
|
557
617
|
self,
|
|
558
618
|
*,
|
|
559
619
|
InstanceArn: str,
|
|
560
620
|
PermissionSetArn: str,
|
|
561
621
|
Description: str = ...,
|
|
562
|
-
|
|
563
|
-
|
|
622
|
+
RelayState: str = ...,
|
|
623
|
+
SessionDuration: str = ...
|
|
564
624
|
) -> Dict[str, Any]:
|
|
565
625
|
"""
|
|
566
626
|
Updates an existing permission set.
|
|
@@ -568,6 +628,7 @@ class SSOAdminClient(BaseClient):
|
|
|
568
628
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.update_permission_set)
|
|
569
629
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#update_permission_set)
|
|
570
630
|
"""
|
|
631
|
+
|
|
571
632
|
@overload
|
|
572
633
|
def get_paginator(
|
|
573
634
|
self, operation_name: Literal["list_account_assignment_creation_status"]
|
|
@@ -576,6 +637,7 @@ class SSOAdminClient(BaseClient):
|
|
|
576
637
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
|
|
577
638
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
|
|
578
639
|
"""
|
|
640
|
+
|
|
579
641
|
@overload
|
|
580
642
|
def get_paginator(
|
|
581
643
|
self, operation_name: Literal["list_account_assignment_deletion_status"]
|
|
@@ -584,6 +646,7 @@ class SSOAdminClient(BaseClient):
|
|
|
584
646
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
|
|
585
647
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
|
|
586
648
|
"""
|
|
649
|
+
|
|
587
650
|
@overload
|
|
588
651
|
def get_paginator(
|
|
589
652
|
self, operation_name: Literal["list_account_assignments"]
|
|
@@ -592,6 +655,7 @@ class SSOAdminClient(BaseClient):
|
|
|
592
655
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
|
|
593
656
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
|
|
594
657
|
"""
|
|
658
|
+
|
|
595
659
|
@overload
|
|
596
660
|
def get_paginator(
|
|
597
661
|
self, operation_name: Literal["list_accounts_for_provisioned_permission_set"]
|
|
@@ -600,6 +664,7 @@ class SSOAdminClient(BaseClient):
|
|
|
600
664
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
|
|
601
665
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
|
|
602
666
|
"""
|
|
667
|
+
|
|
603
668
|
@overload
|
|
604
669
|
def get_paginator(
|
|
605
670
|
self, operation_name: Literal["list_customer_managed_policy_references_in_permission_set"]
|
|
@@ -608,12 +673,14 @@ class SSOAdminClient(BaseClient):
|
|
|
608
673
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
|
|
609
674
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
|
|
610
675
|
"""
|
|
676
|
+
|
|
611
677
|
@overload
|
|
612
678
|
def get_paginator(self, operation_name: Literal["list_instances"]) -> ListInstancesPaginator:
|
|
613
679
|
"""
|
|
614
680
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
|
|
615
681
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
|
|
616
682
|
"""
|
|
683
|
+
|
|
617
684
|
@overload
|
|
618
685
|
def get_paginator(
|
|
619
686
|
self, operation_name: Literal["list_managed_policies_in_permission_set"]
|
|
@@ -622,6 +689,7 @@ class SSOAdminClient(BaseClient):
|
|
|
622
689
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
|
|
623
690
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
|
|
624
691
|
"""
|
|
692
|
+
|
|
625
693
|
@overload
|
|
626
694
|
def get_paginator(
|
|
627
695
|
self, operation_name: Literal["list_permission_set_provisioning_status"]
|
|
@@ -630,6 +698,7 @@ class SSOAdminClient(BaseClient):
|
|
|
630
698
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
|
|
631
699
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
|
|
632
700
|
"""
|
|
701
|
+
|
|
633
702
|
@overload
|
|
634
703
|
def get_paginator(
|
|
635
704
|
self, operation_name: Literal["list_permission_sets"]
|
|
@@ -638,6 +707,7 @@ class SSOAdminClient(BaseClient):
|
|
|
638
707
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
|
|
639
708
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
|
|
640
709
|
"""
|
|
710
|
+
|
|
641
711
|
@overload
|
|
642
712
|
def get_paginator(
|
|
643
713
|
self, operation_name: Literal["list_permission_sets_provisioned_to_account"]
|
|
@@ -646,6 +716,7 @@ class SSOAdminClient(BaseClient):
|
|
|
646
716
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
|
|
647
717
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
|
|
648
718
|
"""
|
|
719
|
+
|
|
649
720
|
@overload
|
|
650
721
|
def get_paginator(
|
|
651
722
|
self, operation_name: Literal["list_tags_for_resource"]
|