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