types-aiobotocore-security-ir 2.18.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.
@@ -0,0 +1,50 @@
1
+ """
2
+ Main interface for security-ir service.
3
+
4
+ Usage::
5
+
6
+ ```python
7
+ from aiobotocore.session import get_session
8
+ from types_aiobotocore_security_ir import (
9
+ Client,
10
+ ListCaseEditsPaginator,
11
+ ListCasesPaginator,
12
+ ListCommentsPaginator,
13
+ ListMembershipsPaginator,
14
+ SecurityIncidentResponseClient,
15
+ )
16
+
17
+ session = get_session()
18
+ async with session.create_client("security-ir") as client:
19
+ client: SecurityIncidentResponseClient
20
+ ...
21
+
22
+
23
+ list_case_edits_paginator: ListCaseEditsPaginator = client.get_paginator("list_case_edits")
24
+ list_cases_paginator: ListCasesPaginator = client.get_paginator("list_cases")
25
+ list_comments_paginator: ListCommentsPaginator = client.get_paginator("list_comments")
26
+ list_memberships_paginator: ListMembershipsPaginator = client.get_paginator("list_memberships")
27
+ ```
28
+
29
+ Copyright 2025 Vlad Emelianov
30
+ """
31
+
32
+ from .client import SecurityIncidentResponseClient
33
+ from .paginator import (
34
+ ListCaseEditsPaginator,
35
+ ListCasesPaginator,
36
+ ListCommentsPaginator,
37
+ ListMembershipsPaginator,
38
+ )
39
+
40
+ Client = SecurityIncidentResponseClient
41
+
42
+
43
+ __all__ = (
44
+ "Client",
45
+ "ListCaseEditsPaginator",
46
+ "ListCasesPaginator",
47
+ "ListCommentsPaginator",
48
+ "ListMembershipsPaginator",
49
+ "SecurityIncidentResponseClient",
50
+ )
@@ -0,0 +1,49 @@
1
+ """
2
+ Main interface for security-ir service.
3
+
4
+ Usage::
5
+
6
+ ```python
7
+ from aiobotocore.session import get_session
8
+ from types_aiobotocore_security_ir import (
9
+ Client,
10
+ ListCaseEditsPaginator,
11
+ ListCasesPaginator,
12
+ ListCommentsPaginator,
13
+ ListMembershipsPaginator,
14
+ SecurityIncidentResponseClient,
15
+ )
16
+
17
+ session = get_session()
18
+ async with session.create_client("security-ir") as client:
19
+ client: SecurityIncidentResponseClient
20
+ ...
21
+
22
+
23
+ list_case_edits_paginator: ListCaseEditsPaginator = client.get_paginator("list_case_edits")
24
+ list_cases_paginator: ListCasesPaginator = client.get_paginator("list_cases")
25
+ list_comments_paginator: ListCommentsPaginator = client.get_paginator("list_comments")
26
+ list_memberships_paginator: ListMembershipsPaginator = client.get_paginator("list_memberships")
27
+ ```
28
+
29
+ Copyright 2025 Vlad Emelianov
30
+ """
31
+
32
+ from .client import SecurityIncidentResponseClient
33
+ from .paginator import (
34
+ ListCaseEditsPaginator,
35
+ ListCasesPaginator,
36
+ ListCommentsPaginator,
37
+ ListMembershipsPaginator,
38
+ )
39
+
40
+ Client = SecurityIncidentResponseClient
41
+
42
+ __all__ = (
43
+ "Client",
44
+ "ListCaseEditsPaginator",
45
+ "ListCasesPaginator",
46
+ "ListCommentsPaginator",
47
+ "ListMembershipsPaginator",
48
+ "SecurityIncidentResponseClient",
49
+ )
@@ -0,0 +1,43 @@
1
+ """
2
+ Main CLI entrypoint.
3
+
4
+ Copyright 2025 Vlad Emelianov
5
+ """
6
+
7
+ import sys
8
+
9
+
10
+ def print_info() -> None:
11
+ """
12
+ Print package info to stdout.
13
+ """
14
+ sys.stdout.write(
15
+ "Type annotations for aiobotocore SecurityIncidentResponse 2.18.0\n"
16
+ "Version: 2.18.0\n"
17
+ "Builder version: 8.8.0\n"
18
+ "Docs: https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir//\n"
19
+ "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir.html#securityincidentresponse\n"
20
+ "Other services: https://pypi.org/project/boto3-stubs/\n"
21
+ "Changelog: https://github.com/youtype/mypy_boto3_builder/releases\n"
22
+ )
23
+
24
+
25
+ def print_version() -> None:
26
+ """
27
+ Print package version to stdout.
28
+ """
29
+ sys.stdout.write("2.18.0\n")
30
+
31
+
32
+ def main() -> None:
33
+ """
34
+ Main CLI entrypoint.
35
+ """
36
+ if "--version" in sys.argv:
37
+ print_version()
38
+ return
39
+ print_info()
40
+
41
+
42
+ if __name__ == "__main__":
43
+ main()
@@ -0,0 +1,423 @@
1
+ """
2
+ Type annotations for security-ir service Client.
3
+
4
+ [Documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/)
5
+
6
+ Usage::
7
+
8
+ ```python
9
+ from aiobotocore.session import get_session
10
+ from types_aiobotocore_security_ir.client import SecurityIncidentResponseClient
11
+
12
+ session = get_session()
13
+ async with session.create_client("security-ir") as client:
14
+ client: SecurityIncidentResponseClient
15
+ ```
16
+
17
+ Copyright 2025 Vlad Emelianov
18
+ """
19
+
20
+ from __future__ import annotations
21
+
22
+ import sys
23
+ from types import TracebackType
24
+ from typing import Any, overload
25
+
26
+ from aiobotocore.client import AioBaseClient
27
+ from botocore.client import ClientMeta
28
+ from botocore.errorfactory import BaseClientExceptions
29
+ from botocore.exceptions import ClientError as BotocoreClientError
30
+
31
+ from .paginator import (
32
+ ListCaseEditsPaginator,
33
+ ListCasesPaginator,
34
+ ListCommentsPaginator,
35
+ ListMembershipsPaginator,
36
+ )
37
+ from .type_defs import (
38
+ BatchGetMemberAccountDetailsRequestRequestTypeDef,
39
+ BatchGetMemberAccountDetailsResponseTypeDef,
40
+ CancelMembershipRequestRequestTypeDef,
41
+ CancelMembershipResponseTypeDef,
42
+ CloseCaseRequestRequestTypeDef,
43
+ CloseCaseResponseTypeDef,
44
+ CreateCaseCommentRequestRequestTypeDef,
45
+ CreateCaseCommentResponseTypeDef,
46
+ CreateCaseRequestRequestTypeDef,
47
+ CreateCaseResponseTypeDef,
48
+ CreateMembershipRequestRequestTypeDef,
49
+ CreateMembershipResponseTypeDef,
50
+ GetCaseAttachmentDownloadUrlRequestRequestTypeDef,
51
+ GetCaseAttachmentDownloadUrlResponseTypeDef,
52
+ GetCaseAttachmentUploadUrlRequestRequestTypeDef,
53
+ GetCaseAttachmentUploadUrlResponseTypeDef,
54
+ GetCaseRequestRequestTypeDef,
55
+ GetCaseResponseTypeDef,
56
+ GetMembershipRequestRequestTypeDef,
57
+ GetMembershipResponseTypeDef,
58
+ ListCaseEditsRequestRequestTypeDef,
59
+ ListCaseEditsResponseTypeDef,
60
+ ListCasesRequestRequestTypeDef,
61
+ ListCasesResponseTypeDef,
62
+ ListCommentsRequestRequestTypeDef,
63
+ ListCommentsResponseTypeDef,
64
+ ListMembershipsRequestRequestTypeDef,
65
+ ListMembershipsResponseTypeDef,
66
+ ListTagsForResourceInputRequestTypeDef,
67
+ ListTagsForResourceOutputTypeDef,
68
+ TagResourceInputRequestTypeDef,
69
+ UntagResourceInputRequestTypeDef,
70
+ UpdateCaseCommentRequestRequestTypeDef,
71
+ UpdateCaseCommentResponseTypeDef,
72
+ UpdateCaseRequestRequestTypeDef,
73
+ UpdateCaseStatusRequestRequestTypeDef,
74
+ UpdateCaseStatusResponseTypeDef,
75
+ UpdateMembershipRequestRequestTypeDef,
76
+ UpdateResolverTypeRequestRequestTypeDef,
77
+ UpdateResolverTypeResponseTypeDef,
78
+ )
79
+
80
+ if sys.version_info >= (3, 9):
81
+ from builtins import dict as Dict
82
+ from builtins import type as Type
83
+ from collections.abc import Mapping
84
+ else:
85
+ from typing import Dict, Mapping, Type
86
+ if sys.version_info >= (3, 12):
87
+ from typing import Literal, Self, Unpack
88
+ else:
89
+ from typing_extensions import Literal, Self, Unpack
90
+
91
+
92
+ __all__ = ("SecurityIncidentResponseClient",)
93
+
94
+
95
+ class Exceptions(BaseClientExceptions):
96
+ AccessDeniedException: Type[BotocoreClientError]
97
+ ClientError: Type[BotocoreClientError]
98
+ ConflictException: Type[BotocoreClientError]
99
+ InternalServerException: Type[BotocoreClientError]
100
+ InvalidTokenException: Type[BotocoreClientError]
101
+ ResourceNotFoundException: Type[BotocoreClientError]
102
+ SecurityIncidentResponseNotActiveException: Type[BotocoreClientError]
103
+ ServiceQuotaExceededException: Type[BotocoreClientError]
104
+ ThrottlingException: Type[BotocoreClientError]
105
+ ValidationException: Type[BotocoreClientError]
106
+
107
+
108
+ class SecurityIncidentResponseClient(AioBaseClient):
109
+ """
110
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir.html#SecurityIncidentResponse.Client)
111
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/)
112
+ """
113
+
114
+ meta: ClientMeta
115
+
116
+ @property
117
+ def exceptions(self) -> Exceptions:
118
+ """
119
+ SecurityIncidentResponseClient exceptions.
120
+
121
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir.html#SecurityIncidentResponse.Client)
122
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/#exceptions)
123
+ """
124
+
125
+ def can_paginate(self, operation_name: str) -> bool:
126
+ """
127
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir/client/can_paginate.html)
128
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/#can_paginate)
129
+ """
130
+
131
+ async def generate_presigned_url(
132
+ self,
133
+ ClientMethod: str,
134
+ Params: Mapping[str, Any] = ...,
135
+ ExpiresIn: int = 3600,
136
+ HttpMethod: str = ...,
137
+ ) -> str:
138
+ """
139
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir/client/generate_presigned_url.html)
140
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/#generate_presigned_url)
141
+ """
142
+
143
+ async def batch_get_member_account_details(
144
+ self, **kwargs: Unpack[BatchGetMemberAccountDetailsRequestRequestTypeDef]
145
+ ) -> BatchGetMemberAccountDetailsResponseTypeDef:
146
+ """
147
+ Grants permission to view an existing membership.
148
+
149
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir/client/batch_get_member_account_details.html)
150
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/#batch_get_member_account_details)
151
+ """
152
+
153
+ async def cancel_membership(
154
+ self, **kwargs: Unpack[CancelMembershipRequestRequestTypeDef]
155
+ ) -> CancelMembershipResponseTypeDef:
156
+ """
157
+ Grants permissions to cancel an existing membership.
158
+
159
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir/client/cancel_membership.html)
160
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/#cancel_membership)
161
+ """
162
+
163
+ async def close_case(
164
+ self, **kwargs: Unpack[CloseCaseRequestRequestTypeDef]
165
+ ) -> CloseCaseResponseTypeDef:
166
+ """
167
+ Grants permission to close an existing case.
168
+
169
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir/client/close_case.html)
170
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/#close_case)
171
+ """
172
+
173
+ async def create_case(
174
+ self, **kwargs: Unpack[CreateCaseRequestRequestTypeDef]
175
+ ) -> CreateCaseResponseTypeDef:
176
+ """
177
+ Grants permission to create a new case.
178
+
179
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir/client/create_case.html)
180
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/#create_case)
181
+ """
182
+
183
+ async def create_case_comment(
184
+ self, **kwargs: Unpack[CreateCaseCommentRequestRequestTypeDef]
185
+ ) -> CreateCaseCommentResponseTypeDef:
186
+ """
187
+ Grants permission to add a comment to an existing case.
188
+
189
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir/client/create_case_comment.html)
190
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/#create_case_comment)
191
+ """
192
+
193
+ async def create_membership(
194
+ self, **kwargs: Unpack[CreateMembershipRequestRequestTypeDef]
195
+ ) -> CreateMembershipResponseTypeDef:
196
+ """
197
+ Grants permissions to create a new membership.
198
+
199
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir/client/create_membership.html)
200
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/#create_membership)
201
+ """
202
+
203
+ async def get_case(
204
+ self, **kwargs: Unpack[GetCaseRequestRequestTypeDef]
205
+ ) -> GetCaseResponseTypeDef:
206
+ """
207
+ Grant permission to view a designated case.
208
+
209
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir/client/get_case.html)
210
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/#get_case)
211
+ """
212
+
213
+ async def get_case_attachment_download_url(
214
+ self, **kwargs: Unpack[GetCaseAttachmentDownloadUrlRequestRequestTypeDef]
215
+ ) -> GetCaseAttachmentDownloadUrlResponseTypeDef:
216
+ """
217
+ Grants permission to obtain an Amazon S3 presigned URL to download an
218
+ attachment.
219
+
220
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir/client/get_case_attachment_download_url.html)
221
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/#get_case_attachment_download_url)
222
+ """
223
+
224
+ async def get_case_attachment_upload_url(
225
+ self, **kwargs: Unpack[GetCaseAttachmentUploadUrlRequestRequestTypeDef]
226
+ ) -> GetCaseAttachmentUploadUrlResponseTypeDef:
227
+ """
228
+ Grants permission to upload an attachment to a case.
229
+
230
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir/client/get_case_attachment_upload_url.html)
231
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/#get_case_attachment_upload_url)
232
+ """
233
+
234
+ async def get_membership(
235
+ self, **kwargs: Unpack[GetMembershipRequestRequestTypeDef]
236
+ ) -> GetMembershipResponseTypeDef:
237
+ """
238
+ Grants permission to get details of a designated service membership.
239
+
240
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir/client/get_membership.html)
241
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/#get_membership)
242
+ """
243
+
244
+ async def list_case_edits(
245
+ self, **kwargs: Unpack[ListCaseEditsRequestRequestTypeDef]
246
+ ) -> ListCaseEditsResponseTypeDef:
247
+ """
248
+ Grants permissions to view the aidt log for edits made to a designated case.
249
+
250
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir/client/list_case_edits.html)
251
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/#list_case_edits)
252
+ """
253
+
254
+ async def list_cases(
255
+ self, **kwargs: Unpack[ListCasesRequestRequestTypeDef]
256
+ ) -> ListCasesResponseTypeDef:
257
+ """
258
+ Grants permission to list all cases the requester has access to.
259
+
260
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir/client/list_cases.html)
261
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/#list_cases)
262
+ """
263
+
264
+ async def list_comments(
265
+ self, **kwargs: Unpack[ListCommentsRequestRequestTypeDef]
266
+ ) -> ListCommentsResponseTypeDef:
267
+ """
268
+ Grants permissions to list and view comments for a designated case.
269
+
270
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir/client/list_comments.html)
271
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/#list_comments)
272
+ """
273
+
274
+ async def list_memberships(
275
+ self, **kwargs: Unpack[ListMembershipsRequestRequestTypeDef]
276
+ ) -> ListMembershipsResponseTypeDef:
277
+ """
278
+ Grants permission to query the memberships a principal has access to.
279
+
280
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir/client/list_memberships.html)
281
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/#list_memberships)
282
+ """
283
+
284
+ async def list_tags_for_resource(
285
+ self, **kwargs: Unpack[ListTagsForResourceInputRequestTypeDef]
286
+ ) -> ListTagsForResourceOutputTypeDef:
287
+ """
288
+ Grants permission to view currently configured tags on a resource.
289
+
290
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir/client/list_tags_for_resource.html)
291
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/#list_tags_for_resource)
292
+ """
293
+
294
+ async def tag_resource(
295
+ self, **kwargs: Unpack[TagResourceInputRequestTypeDef]
296
+ ) -> Dict[str, Any]:
297
+ """
298
+ Grants permission to add a tag(s) to a designated resource.
299
+
300
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir/client/tag_resource.html)
301
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/#tag_resource)
302
+ """
303
+
304
+ async def untag_resource(
305
+ self, **kwargs: Unpack[UntagResourceInputRequestTypeDef]
306
+ ) -> Dict[str, Any]:
307
+ """
308
+ Grants permission to remove a tag(s) from a designate resource.
309
+
310
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir/client/untag_resource.html)
311
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/#untag_resource)
312
+ """
313
+
314
+ async def update_case(
315
+ self, **kwargs: Unpack[UpdateCaseRequestRequestTypeDef]
316
+ ) -> Dict[str, Any]:
317
+ """
318
+ Grants permission to update an existing case.
319
+
320
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir/client/update_case.html)
321
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/#update_case)
322
+ """
323
+
324
+ async def update_case_comment(
325
+ self, **kwargs: Unpack[UpdateCaseCommentRequestRequestTypeDef]
326
+ ) -> UpdateCaseCommentResponseTypeDef:
327
+ """
328
+ Grants permission to update an existing case comment.
329
+
330
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir/client/update_case_comment.html)
331
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/#update_case_comment)
332
+ """
333
+
334
+ async def update_case_status(
335
+ self, **kwargs: Unpack[UpdateCaseStatusRequestRequestTypeDef]
336
+ ) -> UpdateCaseStatusResponseTypeDef:
337
+ """
338
+ Grants permission to update the status for a designated cases.
339
+
340
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir/client/update_case_status.html)
341
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/#update_case_status)
342
+ """
343
+
344
+ async def update_membership(
345
+ self, **kwargs: Unpack[UpdateMembershipRequestRequestTypeDef]
346
+ ) -> Dict[str, Any]:
347
+ """
348
+ Grants access to UpdateMembership to change membership configuration.
349
+
350
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir/client/update_membership.html)
351
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/#update_membership)
352
+ """
353
+
354
+ async def update_resolver_type(
355
+ self, **kwargs: Unpack[UpdateResolverTypeRequestRequestTypeDef]
356
+ ) -> UpdateResolverTypeResponseTypeDef:
357
+ """
358
+ Grants permission to update the resolver type for a case.
359
+
360
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir/client/update_resolver_type.html)
361
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/#update_resolver_type)
362
+ """
363
+
364
+ @overload # type: ignore[override]
365
+ def get_paginator( # type: ignore[override]
366
+ self, operation_name: Literal["list_case_edits"]
367
+ ) -> ListCaseEditsPaginator:
368
+ """
369
+ Create a paginator for an operation.
370
+
371
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir/client/get_paginator.html)
372
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/#get_paginator)
373
+ """
374
+
375
+ @overload # type: ignore[override]
376
+ def get_paginator( # type: ignore[override]
377
+ self, operation_name: Literal["list_cases"]
378
+ ) -> ListCasesPaginator:
379
+ """
380
+ Create a paginator for an operation.
381
+
382
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir/client/get_paginator.html)
383
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/#get_paginator)
384
+ """
385
+
386
+ @overload # type: ignore[override]
387
+ def get_paginator( # type: ignore[override]
388
+ self, operation_name: Literal["list_comments"]
389
+ ) -> ListCommentsPaginator:
390
+ """
391
+ Create a paginator for an operation.
392
+
393
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir/client/get_paginator.html)
394
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/#get_paginator)
395
+ """
396
+
397
+ @overload # type: ignore[override]
398
+ def get_paginator( # type: ignore[override]
399
+ self, operation_name: Literal["list_memberships"]
400
+ ) -> ListMembershipsPaginator:
401
+ """
402
+ Create a paginator for an operation.
403
+
404
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir/client/get_paginator.html)
405
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/#get_paginator)
406
+ """
407
+
408
+ async def __aenter__(self) -> Self:
409
+ """
410
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir.html#SecurityIncidentResponse.Client)
411
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/)
412
+ """
413
+
414
+ async def __aexit__(
415
+ self,
416
+ exc_type: Type[BaseException] | None,
417
+ exc_val: BaseException | None,
418
+ exc_tb: TracebackType | None,
419
+ ) -> None:
420
+ """
421
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/security-ir.html#SecurityIncidentResponse.Client)
422
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_security_ir/client/)
423
+ """