types-aiobotocore-ssm-quicksetup 2.13.3__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.
Potentially problematic release.
This version of types-aiobotocore-ssm-quicksetup might be problematic. Click here for more details.
- types_aiobotocore_ssm_quicksetup/__init__.py +29 -0
- types_aiobotocore_ssm_quicksetup/__init__.pyi +29 -0
- types_aiobotocore_ssm_quicksetup/__main__.py +40 -0
- types_aiobotocore_ssm_quicksetup/client.py +262 -0
- types_aiobotocore_ssm_quicksetup/client.pyi +259 -0
- types_aiobotocore_ssm_quicksetup/literals.py +447 -0
- types_aiobotocore_ssm_quicksetup/literals.pyi +447 -0
- types_aiobotocore_ssm_quicksetup/paginator.py +58 -0
- types_aiobotocore_ssm_quicksetup/paginator.pyi +56 -0
- types_aiobotocore_ssm_quicksetup/py.typed +0 -0
- types_aiobotocore_ssm_quicksetup/type_defs.py +295 -0
- types_aiobotocore_ssm_quicksetup/type_defs.pyi +295 -0
- types_aiobotocore_ssm_quicksetup/version.py +5 -0
- types_aiobotocore_ssm_quicksetup-2.13.3.dist-info/LICENSE +21 -0
- types_aiobotocore_ssm_quicksetup-2.13.3.dist-info/METADATA +412 -0
- types_aiobotocore_ssm_quicksetup-2.13.3.dist-info/RECORD +18 -0
- types_aiobotocore_ssm_quicksetup-2.13.3.dist-info/WHEEL +5 -0
- types_aiobotocore_ssm_quicksetup-2.13.3.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Main interface for ssm-quicksetup service.
|
|
3
|
+
|
|
4
|
+
Usage::
|
|
5
|
+
|
|
6
|
+
```python
|
|
7
|
+
from aiobotocore.session import get_session
|
|
8
|
+
from types_aiobotocore_ssm_quicksetup import (
|
|
9
|
+
Client,
|
|
10
|
+
ListConfigurationManagersPaginator,
|
|
11
|
+
SystemsManagerQuickSetupClient,
|
|
12
|
+
)
|
|
13
|
+
|
|
14
|
+
session = get_session()
|
|
15
|
+
async with session.create_client("ssm-quicksetup") as client:
|
|
16
|
+
client: SystemsManagerQuickSetupClient
|
|
17
|
+
...
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
list_configuration_managers_paginator: ListConfigurationManagersPaginator = client.get_paginator("list_configuration_managers")
|
|
21
|
+
```
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
from .client import SystemsManagerQuickSetupClient
|
|
25
|
+
from .paginator import ListConfigurationManagersPaginator
|
|
26
|
+
|
|
27
|
+
Client = SystemsManagerQuickSetupClient
|
|
28
|
+
|
|
29
|
+
__all__ = ("Client", "ListConfigurationManagersPaginator", "SystemsManagerQuickSetupClient")
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Main interface for ssm-quicksetup service.
|
|
3
|
+
|
|
4
|
+
Usage::
|
|
5
|
+
|
|
6
|
+
```python
|
|
7
|
+
from aiobotocore.session import get_session
|
|
8
|
+
from types_aiobotocore_ssm_quicksetup import (
|
|
9
|
+
Client,
|
|
10
|
+
ListConfigurationManagersPaginator,
|
|
11
|
+
SystemsManagerQuickSetupClient,
|
|
12
|
+
)
|
|
13
|
+
|
|
14
|
+
session = get_session()
|
|
15
|
+
async with session.create_client("ssm-quicksetup") as client:
|
|
16
|
+
client: SystemsManagerQuickSetupClient
|
|
17
|
+
...
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
list_configuration_managers_paginator: ListConfigurationManagersPaginator = client.get_paginator("list_configuration_managers")
|
|
21
|
+
```
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
from .client import SystemsManagerQuickSetupClient
|
|
25
|
+
from .paginator import ListConfigurationManagersPaginator
|
|
26
|
+
|
|
27
|
+
Client = SystemsManagerQuickSetupClient
|
|
28
|
+
|
|
29
|
+
__all__ = ("Client", "ListConfigurationManagersPaginator", "SystemsManagerQuickSetupClient")
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Main CLI entrypoint.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
import sys
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
def print_info() -> None:
|
|
9
|
+
"""
|
|
10
|
+
Print package info to stdout.
|
|
11
|
+
"""
|
|
12
|
+
print(
|
|
13
|
+
"Type annotations for aiobotocore.SystemsManagerQuickSetup 2.13.3\n"
|
|
14
|
+
"Version: 2.13.3\n"
|
|
15
|
+
"Builder version: 7.26.1\n"
|
|
16
|
+
"Docs: https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup//\n"
|
|
17
|
+
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup\n"
|
|
18
|
+
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
19
|
+
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
|
|
20
|
+
)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
def print_version() -> None:
|
|
24
|
+
"""
|
|
25
|
+
Print package version to stdout.
|
|
26
|
+
"""
|
|
27
|
+
print("2.13.3")
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
def main() -> None:
|
|
31
|
+
"""
|
|
32
|
+
Main CLI entrypoint.
|
|
33
|
+
"""
|
|
34
|
+
if "--version" in sys.argv:
|
|
35
|
+
return print_version()
|
|
36
|
+
print_info()
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
if __name__ == "__main__":
|
|
40
|
+
main()
|
|
@@ -0,0 +1,262 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Type annotations for ssm-quicksetup service client.
|
|
3
|
+
|
|
4
|
+
[Open documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/)
|
|
5
|
+
|
|
6
|
+
Usage::
|
|
7
|
+
|
|
8
|
+
```python
|
|
9
|
+
from aiobotocore.session import get_session
|
|
10
|
+
from types_aiobotocore_ssm_quicksetup.client import SystemsManagerQuickSetupClient
|
|
11
|
+
|
|
12
|
+
session = get_session()
|
|
13
|
+
async with session.create_client("ssm-quicksetup") as client:
|
|
14
|
+
client: SystemsManagerQuickSetupClient
|
|
15
|
+
```
|
|
16
|
+
"""
|
|
17
|
+
|
|
18
|
+
import sys
|
|
19
|
+
from typing import Any, Dict, Mapping, Sequence, Type
|
|
20
|
+
|
|
21
|
+
from aiobotocore.client import AioBaseClient
|
|
22
|
+
from botocore.client import ClientMeta
|
|
23
|
+
|
|
24
|
+
from .paginator import ListConfigurationManagersPaginator
|
|
25
|
+
from .type_defs import (
|
|
26
|
+
ConfigurationDefinitionInputTypeDef,
|
|
27
|
+
CreateConfigurationManagerOutputTypeDef,
|
|
28
|
+
EmptyResponseMetadataTypeDef,
|
|
29
|
+
FilterTypeDef,
|
|
30
|
+
GetConfigurationManagerOutputTypeDef,
|
|
31
|
+
GetServiceSettingsOutputTypeDef,
|
|
32
|
+
ListConfigurationManagersOutputTypeDef,
|
|
33
|
+
ListQuickSetupTypesOutputTypeDef,
|
|
34
|
+
ListTagsForResourceResponseTypeDef,
|
|
35
|
+
)
|
|
36
|
+
|
|
37
|
+
if sys.version_info >= (3, 12):
|
|
38
|
+
from typing import Literal
|
|
39
|
+
else:
|
|
40
|
+
from typing_extensions import Literal
|
|
41
|
+
|
|
42
|
+
__all__ = ("SystemsManagerQuickSetupClient",)
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
class BotocoreClientError(Exception):
|
|
46
|
+
MSG_TEMPLATE: str
|
|
47
|
+
|
|
48
|
+
def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
|
|
49
|
+
self.response: Dict[str, Any]
|
|
50
|
+
self.operation_name: str
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
class Exceptions:
|
|
54
|
+
AccessDeniedException: Type[BotocoreClientError]
|
|
55
|
+
ClientError: Type[BotocoreClientError]
|
|
56
|
+
ConflictException: Type[BotocoreClientError]
|
|
57
|
+
InternalServerException: Type[BotocoreClientError]
|
|
58
|
+
ResourceNotFoundException: Type[BotocoreClientError]
|
|
59
|
+
ThrottlingException: Type[BotocoreClientError]
|
|
60
|
+
ValidationException: Type[BotocoreClientError]
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
class SystemsManagerQuickSetupClient(AioBaseClient):
|
|
64
|
+
"""
|
|
65
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client)
|
|
66
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/)
|
|
67
|
+
"""
|
|
68
|
+
|
|
69
|
+
meta: ClientMeta
|
|
70
|
+
|
|
71
|
+
@property
|
|
72
|
+
def exceptions(self) -> Exceptions:
|
|
73
|
+
"""
|
|
74
|
+
SystemsManagerQuickSetupClient exceptions.
|
|
75
|
+
|
|
76
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.exceptions)
|
|
77
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#exceptions)
|
|
78
|
+
"""
|
|
79
|
+
|
|
80
|
+
def can_paginate(self, operation_name: str) -> bool:
|
|
81
|
+
"""
|
|
82
|
+
Check if an operation can be paginated.
|
|
83
|
+
|
|
84
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.can_paginate)
|
|
85
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#can_paginate)
|
|
86
|
+
"""
|
|
87
|
+
|
|
88
|
+
async def close(self) -> None:
|
|
89
|
+
"""
|
|
90
|
+
Closes underlying endpoint connections.
|
|
91
|
+
|
|
92
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.close)
|
|
93
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#close)
|
|
94
|
+
"""
|
|
95
|
+
|
|
96
|
+
async def create_configuration_manager(
|
|
97
|
+
self,
|
|
98
|
+
*,
|
|
99
|
+
ConfigurationDefinitions: Sequence[ConfigurationDefinitionInputTypeDef],
|
|
100
|
+
Description: str = ...,
|
|
101
|
+
Name: str = ...,
|
|
102
|
+
Tags: Mapping[str, str] = ...,
|
|
103
|
+
) -> CreateConfigurationManagerOutputTypeDef:
|
|
104
|
+
"""
|
|
105
|
+
Creates a Quick Setup configuration manager resource.
|
|
106
|
+
|
|
107
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.create_configuration_manager)
|
|
108
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#create_configuration_manager)
|
|
109
|
+
"""
|
|
110
|
+
|
|
111
|
+
async def delete_configuration_manager(
|
|
112
|
+
self, *, ManagerArn: str
|
|
113
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
114
|
+
"""
|
|
115
|
+
Deletes a configuration manager.
|
|
116
|
+
|
|
117
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.delete_configuration_manager)
|
|
118
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#delete_configuration_manager)
|
|
119
|
+
"""
|
|
120
|
+
|
|
121
|
+
async def generate_presigned_url(
|
|
122
|
+
self,
|
|
123
|
+
ClientMethod: str,
|
|
124
|
+
Params: Mapping[str, Any] = ...,
|
|
125
|
+
ExpiresIn: int = 3600,
|
|
126
|
+
HttpMethod: str = ...,
|
|
127
|
+
) -> str:
|
|
128
|
+
"""
|
|
129
|
+
Generate a presigned url given a client, its method, and arguments.
|
|
130
|
+
|
|
131
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.generate_presigned_url)
|
|
132
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#generate_presigned_url)
|
|
133
|
+
"""
|
|
134
|
+
|
|
135
|
+
async def get_configuration_manager(
|
|
136
|
+
self, *, ManagerArn: str
|
|
137
|
+
) -> GetConfigurationManagerOutputTypeDef:
|
|
138
|
+
"""
|
|
139
|
+
Returns a configuration manager.
|
|
140
|
+
|
|
141
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.get_configuration_manager)
|
|
142
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#get_configuration_manager)
|
|
143
|
+
"""
|
|
144
|
+
|
|
145
|
+
async def get_service_settings(self) -> GetServiceSettingsOutputTypeDef:
|
|
146
|
+
"""
|
|
147
|
+
Returns settings configured for Quick Setup in the requesting Amazon Web
|
|
148
|
+
Services account and Amazon Web Services
|
|
149
|
+
Region.
|
|
150
|
+
|
|
151
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.get_service_settings)
|
|
152
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#get_service_settings)
|
|
153
|
+
"""
|
|
154
|
+
|
|
155
|
+
async def list_configuration_managers(
|
|
156
|
+
self,
|
|
157
|
+
*,
|
|
158
|
+
Filters: Sequence[FilterTypeDef] = ...,
|
|
159
|
+
MaxItems: int = ...,
|
|
160
|
+
StartingToken: str = ...,
|
|
161
|
+
) -> ListConfigurationManagersOutputTypeDef:
|
|
162
|
+
"""
|
|
163
|
+
Returns Quick Setup configuration managers.
|
|
164
|
+
|
|
165
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.list_configuration_managers)
|
|
166
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#list_configuration_managers)
|
|
167
|
+
"""
|
|
168
|
+
|
|
169
|
+
async def list_quick_setup_types(self) -> ListQuickSetupTypesOutputTypeDef:
|
|
170
|
+
"""
|
|
171
|
+
Returns the available Quick Setup types.
|
|
172
|
+
|
|
173
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.list_quick_setup_types)
|
|
174
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#list_quick_setup_types)
|
|
175
|
+
"""
|
|
176
|
+
|
|
177
|
+
async def list_tags_for_resource(
|
|
178
|
+
self, *, ResourceArn: str
|
|
179
|
+
) -> ListTagsForResourceResponseTypeDef:
|
|
180
|
+
"""
|
|
181
|
+
Returns tags assigned to the resource.
|
|
182
|
+
|
|
183
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.list_tags_for_resource)
|
|
184
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#list_tags_for_resource)
|
|
185
|
+
"""
|
|
186
|
+
|
|
187
|
+
async def tag_resource(
|
|
188
|
+
self, *, ResourceArn: str, Tags: Mapping[str, str]
|
|
189
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
190
|
+
"""
|
|
191
|
+
Assigns key-value pairs of metadata to Amazon Web Services resources.
|
|
192
|
+
|
|
193
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.tag_resource)
|
|
194
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#tag_resource)
|
|
195
|
+
"""
|
|
196
|
+
|
|
197
|
+
async def untag_resource(
|
|
198
|
+
self, *, ResourceArn: str, TagKeys: Sequence[str]
|
|
199
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
200
|
+
"""
|
|
201
|
+
Removes tags from the specified resource.
|
|
202
|
+
|
|
203
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.untag_resource)
|
|
204
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#untag_resource)
|
|
205
|
+
"""
|
|
206
|
+
|
|
207
|
+
async def update_configuration_definition(
|
|
208
|
+
self,
|
|
209
|
+
*,
|
|
210
|
+
Id: str,
|
|
211
|
+
ManagerArn: str,
|
|
212
|
+
LocalDeploymentAdministrationRoleArn: str = ...,
|
|
213
|
+
LocalDeploymentExecutionRoleName: str = ...,
|
|
214
|
+
Parameters: Mapping[str, str] = ...,
|
|
215
|
+
TypeVersion: str = ...,
|
|
216
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
217
|
+
"""
|
|
218
|
+
Updates a Quick Setup configuration definition.
|
|
219
|
+
|
|
220
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.update_configuration_definition)
|
|
221
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#update_configuration_definition)
|
|
222
|
+
"""
|
|
223
|
+
|
|
224
|
+
async def update_configuration_manager(
|
|
225
|
+
self, *, ManagerArn: str, Description: str = ..., Name: str = ...
|
|
226
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
227
|
+
"""
|
|
228
|
+
Updates a Quick Setup configuration manager.
|
|
229
|
+
|
|
230
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.update_configuration_manager)
|
|
231
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#update_configuration_manager)
|
|
232
|
+
"""
|
|
233
|
+
|
|
234
|
+
async def update_service_settings(
|
|
235
|
+
self, *, ExplorerEnablingRoleArn: str = ...
|
|
236
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
237
|
+
"""
|
|
238
|
+
Updates settings configured for Quick Setup.
|
|
239
|
+
|
|
240
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.update_service_settings)
|
|
241
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#update_service_settings)
|
|
242
|
+
"""
|
|
243
|
+
|
|
244
|
+
def get_paginator(
|
|
245
|
+
self, operation_name: Literal["list_configuration_managers"]
|
|
246
|
+
) -> ListConfigurationManagersPaginator:
|
|
247
|
+
"""
|
|
248
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.get_paginator)
|
|
249
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#get_paginator)
|
|
250
|
+
"""
|
|
251
|
+
|
|
252
|
+
async def __aenter__(self) -> "SystemsManagerQuickSetupClient":
|
|
253
|
+
"""
|
|
254
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client)
|
|
255
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/)
|
|
256
|
+
"""
|
|
257
|
+
|
|
258
|
+
async def __aexit__(self, exc_type: Any, exc_val: Any, exc_tb: Any) -> Any:
|
|
259
|
+
"""
|
|
260
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client)
|
|
261
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/)
|
|
262
|
+
"""
|
|
@@ -0,0 +1,259 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Type annotations for ssm-quicksetup service client.
|
|
3
|
+
|
|
4
|
+
[Open documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/)
|
|
5
|
+
|
|
6
|
+
Usage::
|
|
7
|
+
|
|
8
|
+
```python
|
|
9
|
+
from aiobotocore.session import get_session
|
|
10
|
+
from types_aiobotocore_ssm_quicksetup.client import SystemsManagerQuickSetupClient
|
|
11
|
+
|
|
12
|
+
session = get_session()
|
|
13
|
+
async with session.create_client("ssm-quicksetup") as client:
|
|
14
|
+
client: SystemsManagerQuickSetupClient
|
|
15
|
+
```
|
|
16
|
+
"""
|
|
17
|
+
|
|
18
|
+
import sys
|
|
19
|
+
from typing import Any, Dict, Mapping, Sequence, Type
|
|
20
|
+
|
|
21
|
+
from aiobotocore.client import AioBaseClient
|
|
22
|
+
from botocore.client import ClientMeta
|
|
23
|
+
|
|
24
|
+
from .paginator import ListConfigurationManagersPaginator
|
|
25
|
+
from .type_defs import (
|
|
26
|
+
ConfigurationDefinitionInputTypeDef,
|
|
27
|
+
CreateConfigurationManagerOutputTypeDef,
|
|
28
|
+
EmptyResponseMetadataTypeDef,
|
|
29
|
+
FilterTypeDef,
|
|
30
|
+
GetConfigurationManagerOutputTypeDef,
|
|
31
|
+
GetServiceSettingsOutputTypeDef,
|
|
32
|
+
ListConfigurationManagersOutputTypeDef,
|
|
33
|
+
ListQuickSetupTypesOutputTypeDef,
|
|
34
|
+
ListTagsForResourceResponseTypeDef,
|
|
35
|
+
)
|
|
36
|
+
|
|
37
|
+
if sys.version_info >= (3, 12):
|
|
38
|
+
from typing import Literal
|
|
39
|
+
else:
|
|
40
|
+
from typing_extensions import Literal
|
|
41
|
+
|
|
42
|
+
__all__ = ("SystemsManagerQuickSetupClient",)
|
|
43
|
+
|
|
44
|
+
class BotocoreClientError(Exception):
|
|
45
|
+
MSG_TEMPLATE: str
|
|
46
|
+
|
|
47
|
+
def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
|
|
48
|
+
self.response: Dict[str, Any]
|
|
49
|
+
self.operation_name: str
|
|
50
|
+
|
|
51
|
+
class Exceptions:
|
|
52
|
+
AccessDeniedException: Type[BotocoreClientError]
|
|
53
|
+
ClientError: Type[BotocoreClientError]
|
|
54
|
+
ConflictException: Type[BotocoreClientError]
|
|
55
|
+
InternalServerException: Type[BotocoreClientError]
|
|
56
|
+
ResourceNotFoundException: Type[BotocoreClientError]
|
|
57
|
+
ThrottlingException: Type[BotocoreClientError]
|
|
58
|
+
ValidationException: Type[BotocoreClientError]
|
|
59
|
+
|
|
60
|
+
class SystemsManagerQuickSetupClient(AioBaseClient):
|
|
61
|
+
"""
|
|
62
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client)
|
|
63
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/)
|
|
64
|
+
"""
|
|
65
|
+
|
|
66
|
+
meta: ClientMeta
|
|
67
|
+
|
|
68
|
+
@property
|
|
69
|
+
def exceptions(self) -> Exceptions:
|
|
70
|
+
"""
|
|
71
|
+
SystemsManagerQuickSetupClient exceptions.
|
|
72
|
+
|
|
73
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.exceptions)
|
|
74
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#exceptions)
|
|
75
|
+
"""
|
|
76
|
+
|
|
77
|
+
def can_paginate(self, operation_name: str) -> bool:
|
|
78
|
+
"""
|
|
79
|
+
Check if an operation can be paginated.
|
|
80
|
+
|
|
81
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.can_paginate)
|
|
82
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#can_paginate)
|
|
83
|
+
"""
|
|
84
|
+
|
|
85
|
+
async def close(self) -> None:
|
|
86
|
+
"""
|
|
87
|
+
Closes underlying endpoint connections.
|
|
88
|
+
|
|
89
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.close)
|
|
90
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#close)
|
|
91
|
+
"""
|
|
92
|
+
|
|
93
|
+
async def create_configuration_manager(
|
|
94
|
+
self,
|
|
95
|
+
*,
|
|
96
|
+
ConfigurationDefinitions: Sequence[ConfigurationDefinitionInputTypeDef],
|
|
97
|
+
Description: str = ...,
|
|
98
|
+
Name: str = ...,
|
|
99
|
+
Tags: Mapping[str, str] = ...,
|
|
100
|
+
) -> CreateConfigurationManagerOutputTypeDef:
|
|
101
|
+
"""
|
|
102
|
+
Creates a Quick Setup configuration manager resource.
|
|
103
|
+
|
|
104
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.create_configuration_manager)
|
|
105
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#create_configuration_manager)
|
|
106
|
+
"""
|
|
107
|
+
|
|
108
|
+
async def delete_configuration_manager(
|
|
109
|
+
self, *, ManagerArn: str
|
|
110
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
111
|
+
"""
|
|
112
|
+
Deletes a configuration manager.
|
|
113
|
+
|
|
114
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.delete_configuration_manager)
|
|
115
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#delete_configuration_manager)
|
|
116
|
+
"""
|
|
117
|
+
|
|
118
|
+
async def generate_presigned_url(
|
|
119
|
+
self,
|
|
120
|
+
ClientMethod: str,
|
|
121
|
+
Params: Mapping[str, Any] = ...,
|
|
122
|
+
ExpiresIn: int = 3600,
|
|
123
|
+
HttpMethod: str = ...,
|
|
124
|
+
) -> str:
|
|
125
|
+
"""
|
|
126
|
+
Generate a presigned url given a client, its method, and arguments.
|
|
127
|
+
|
|
128
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.generate_presigned_url)
|
|
129
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#generate_presigned_url)
|
|
130
|
+
"""
|
|
131
|
+
|
|
132
|
+
async def get_configuration_manager(
|
|
133
|
+
self, *, ManagerArn: str
|
|
134
|
+
) -> GetConfigurationManagerOutputTypeDef:
|
|
135
|
+
"""
|
|
136
|
+
Returns a configuration manager.
|
|
137
|
+
|
|
138
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.get_configuration_manager)
|
|
139
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#get_configuration_manager)
|
|
140
|
+
"""
|
|
141
|
+
|
|
142
|
+
async def get_service_settings(self) -> GetServiceSettingsOutputTypeDef:
|
|
143
|
+
"""
|
|
144
|
+
Returns settings configured for Quick Setup in the requesting Amazon Web
|
|
145
|
+
Services account and Amazon Web Services
|
|
146
|
+
Region.
|
|
147
|
+
|
|
148
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.get_service_settings)
|
|
149
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#get_service_settings)
|
|
150
|
+
"""
|
|
151
|
+
|
|
152
|
+
async def list_configuration_managers(
|
|
153
|
+
self,
|
|
154
|
+
*,
|
|
155
|
+
Filters: Sequence[FilterTypeDef] = ...,
|
|
156
|
+
MaxItems: int = ...,
|
|
157
|
+
StartingToken: str = ...,
|
|
158
|
+
) -> ListConfigurationManagersOutputTypeDef:
|
|
159
|
+
"""
|
|
160
|
+
Returns Quick Setup configuration managers.
|
|
161
|
+
|
|
162
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.list_configuration_managers)
|
|
163
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#list_configuration_managers)
|
|
164
|
+
"""
|
|
165
|
+
|
|
166
|
+
async def list_quick_setup_types(self) -> ListQuickSetupTypesOutputTypeDef:
|
|
167
|
+
"""
|
|
168
|
+
Returns the available Quick Setup types.
|
|
169
|
+
|
|
170
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.list_quick_setup_types)
|
|
171
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#list_quick_setup_types)
|
|
172
|
+
"""
|
|
173
|
+
|
|
174
|
+
async def list_tags_for_resource(
|
|
175
|
+
self, *, ResourceArn: str
|
|
176
|
+
) -> ListTagsForResourceResponseTypeDef:
|
|
177
|
+
"""
|
|
178
|
+
Returns tags assigned to the resource.
|
|
179
|
+
|
|
180
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.list_tags_for_resource)
|
|
181
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#list_tags_for_resource)
|
|
182
|
+
"""
|
|
183
|
+
|
|
184
|
+
async def tag_resource(
|
|
185
|
+
self, *, ResourceArn: str, Tags: Mapping[str, str]
|
|
186
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
187
|
+
"""
|
|
188
|
+
Assigns key-value pairs of metadata to Amazon Web Services resources.
|
|
189
|
+
|
|
190
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.tag_resource)
|
|
191
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#tag_resource)
|
|
192
|
+
"""
|
|
193
|
+
|
|
194
|
+
async def untag_resource(
|
|
195
|
+
self, *, ResourceArn: str, TagKeys: Sequence[str]
|
|
196
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
197
|
+
"""
|
|
198
|
+
Removes tags from the specified resource.
|
|
199
|
+
|
|
200
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.untag_resource)
|
|
201
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#untag_resource)
|
|
202
|
+
"""
|
|
203
|
+
|
|
204
|
+
async def update_configuration_definition(
|
|
205
|
+
self,
|
|
206
|
+
*,
|
|
207
|
+
Id: str,
|
|
208
|
+
ManagerArn: str,
|
|
209
|
+
LocalDeploymentAdministrationRoleArn: str = ...,
|
|
210
|
+
LocalDeploymentExecutionRoleName: str = ...,
|
|
211
|
+
Parameters: Mapping[str, str] = ...,
|
|
212
|
+
TypeVersion: str = ...,
|
|
213
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
214
|
+
"""
|
|
215
|
+
Updates a Quick Setup configuration definition.
|
|
216
|
+
|
|
217
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.update_configuration_definition)
|
|
218
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#update_configuration_definition)
|
|
219
|
+
"""
|
|
220
|
+
|
|
221
|
+
async def update_configuration_manager(
|
|
222
|
+
self, *, ManagerArn: str, Description: str = ..., Name: str = ...
|
|
223
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
224
|
+
"""
|
|
225
|
+
Updates a Quick Setup configuration manager.
|
|
226
|
+
|
|
227
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.update_configuration_manager)
|
|
228
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#update_configuration_manager)
|
|
229
|
+
"""
|
|
230
|
+
|
|
231
|
+
async def update_service_settings(
|
|
232
|
+
self, *, ExplorerEnablingRoleArn: str = ...
|
|
233
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
234
|
+
"""
|
|
235
|
+
Updates settings configured for Quick Setup.
|
|
236
|
+
|
|
237
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.update_service_settings)
|
|
238
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#update_service_settings)
|
|
239
|
+
"""
|
|
240
|
+
|
|
241
|
+
def get_paginator(
|
|
242
|
+
self, operation_name: Literal["list_configuration_managers"]
|
|
243
|
+
) -> ListConfigurationManagersPaginator:
|
|
244
|
+
"""
|
|
245
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client.get_paginator)
|
|
246
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#get_paginator)
|
|
247
|
+
"""
|
|
248
|
+
|
|
249
|
+
async def __aenter__(self) -> "SystemsManagerQuickSetupClient":
|
|
250
|
+
"""
|
|
251
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client)
|
|
252
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/)
|
|
253
|
+
"""
|
|
254
|
+
|
|
255
|
+
async def __aexit__(self, exc_type: Any, exc_val: Any, exc_tb: Any) -> Any:
|
|
256
|
+
"""
|
|
257
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client)
|
|
258
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/)
|
|
259
|
+
"""
|