types-aiobotocore-ssm-quicksetup 2.25.1__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_ssm_quicksetup/__init__.py +41 -0
- types_aiobotocore_ssm_quicksetup/__init__.pyi +40 -0
- types_aiobotocore_ssm_quicksetup/__main__.py +43 -0
- types_aiobotocore_ssm_quicksetup/client.py +290 -0
- types_aiobotocore_ssm_quicksetup/client.pyi +287 -0
- types_aiobotocore_ssm_quicksetup/literals.py +483 -0
- types_aiobotocore_ssm_quicksetup/literals.pyi +481 -0
- types_aiobotocore_ssm_quicksetup/paginator.py +90 -0
- types_aiobotocore_ssm_quicksetup/paginator.pyi +83 -0
- types_aiobotocore_ssm_quicksetup/py.typed +0 -0
- types_aiobotocore_ssm_quicksetup/type_defs.py +320 -0
- types_aiobotocore_ssm_quicksetup/type_defs.pyi +288 -0
- types_aiobotocore_ssm_quicksetup/version.py +7 -0
- types_aiobotocore_ssm_quicksetup-2.25.1.dist-info/METADATA +490 -0
- types_aiobotocore_ssm_quicksetup-2.25.1.dist-info/RECORD +18 -0
- types_aiobotocore_ssm_quicksetup-2.25.1.dist-info/WHEEL +5 -0
- types_aiobotocore_ssm_quicksetup-2.25.1.dist-info/licenses/LICENSE +21 -0
- types_aiobotocore_ssm_quicksetup-2.25.1.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Main interface for ssm-quicksetup service.
|
|
3
|
+
|
|
4
|
+
[Documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
8
|
+
Usage::
|
|
9
|
+
|
|
10
|
+
```python
|
|
11
|
+
from aiobotocore.session import get_session
|
|
12
|
+
from types_aiobotocore_ssm_quicksetup import (
|
|
13
|
+
Client,
|
|
14
|
+
ListConfigurationManagersPaginator,
|
|
15
|
+
ListConfigurationsPaginator,
|
|
16
|
+
SystemsManagerQuickSetupClient,
|
|
17
|
+
)
|
|
18
|
+
|
|
19
|
+
session = get_session()
|
|
20
|
+
async with session.create_client("ssm-quicksetup") as client:
|
|
21
|
+
client: SystemsManagerQuickSetupClient
|
|
22
|
+
...
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
list_configuration_managers_paginator: ListConfigurationManagersPaginator = client.get_paginator("list_configuration_managers")
|
|
26
|
+
list_configurations_paginator: ListConfigurationsPaginator = client.get_paginator("list_configurations")
|
|
27
|
+
```
|
|
28
|
+
"""
|
|
29
|
+
|
|
30
|
+
from .client import SystemsManagerQuickSetupClient
|
|
31
|
+
from .paginator import ListConfigurationManagersPaginator, ListConfigurationsPaginator
|
|
32
|
+
|
|
33
|
+
Client = SystemsManagerQuickSetupClient
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
__all__ = (
|
|
37
|
+
"Client",
|
|
38
|
+
"ListConfigurationManagersPaginator",
|
|
39
|
+
"ListConfigurationsPaginator",
|
|
40
|
+
"SystemsManagerQuickSetupClient",
|
|
41
|
+
)
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Main interface for ssm-quicksetup service.
|
|
3
|
+
|
|
4
|
+
[Documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
8
|
+
Usage::
|
|
9
|
+
|
|
10
|
+
```python
|
|
11
|
+
from aiobotocore.session import get_session
|
|
12
|
+
from types_aiobotocore_ssm_quicksetup import (
|
|
13
|
+
Client,
|
|
14
|
+
ListConfigurationManagersPaginator,
|
|
15
|
+
ListConfigurationsPaginator,
|
|
16
|
+
SystemsManagerQuickSetupClient,
|
|
17
|
+
)
|
|
18
|
+
|
|
19
|
+
session = get_session()
|
|
20
|
+
async with session.create_client("ssm-quicksetup") as client:
|
|
21
|
+
client: SystemsManagerQuickSetupClient
|
|
22
|
+
...
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
list_configuration_managers_paginator: ListConfigurationManagersPaginator = client.get_paginator("list_configuration_managers")
|
|
26
|
+
list_configurations_paginator: ListConfigurationsPaginator = client.get_paginator("list_configurations")
|
|
27
|
+
```
|
|
28
|
+
"""
|
|
29
|
+
|
|
30
|
+
from .client import SystemsManagerQuickSetupClient
|
|
31
|
+
from .paginator import ListConfigurationManagersPaginator, ListConfigurationsPaginator
|
|
32
|
+
|
|
33
|
+
Client = SystemsManagerQuickSetupClient
|
|
34
|
+
|
|
35
|
+
__all__ = (
|
|
36
|
+
"Client",
|
|
37
|
+
"ListConfigurationManagersPaginator",
|
|
38
|
+
"ListConfigurationsPaginator",
|
|
39
|
+
"SystemsManagerQuickSetupClient",
|
|
40
|
+
)
|
|
@@ -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 SystemsManagerQuickSetup 2.25.1\n"
|
|
16
|
+
"Version: 2.25.1\n"
|
|
17
|
+
"Builder version: 8.11.0\n"
|
|
18
|
+
"Docs: https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup//\n"
|
|
19
|
+
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#systemsmanagerquicksetup\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.25.1\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,290 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Type annotations for ssm-quicksetup service Client.
|
|
3
|
+
|
|
4
|
+
[Documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
8
|
+
Usage::
|
|
9
|
+
|
|
10
|
+
```python
|
|
11
|
+
from aiobotocore.session import get_session
|
|
12
|
+
from types_aiobotocore_ssm_quicksetup.client import SystemsManagerQuickSetupClient
|
|
13
|
+
|
|
14
|
+
session = get_session()
|
|
15
|
+
async with session.create_client("ssm-quicksetup") as client:
|
|
16
|
+
client: SystemsManagerQuickSetupClient
|
|
17
|
+
```
|
|
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 ListConfigurationManagersPaginator, ListConfigurationsPaginator
|
|
32
|
+
from .type_defs import (
|
|
33
|
+
CreateConfigurationManagerInputTypeDef,
|
|
34
|
+
CreateConfigurationManagerOutputTypeDef,
|
|
35
|
+
DeleteConfigurationManagerInputTypeDef,
|
|
36
|
+
EmptyResponseMetadataTypeDef,
|
|
37
|
+
GetConfigurationInputTypeDef,
|
|
38
|
+
GetConfigurationManagerInputTypeDef,
|
|
39
|
+
GetConfigurationManagerOutputTypeDef,
|
|
40
|
+
GetConfigurationOutputTypeDef,
|
|
41
|
+
GetServiceSettingsOutputTypeDef,
|
|
42
|
+
ListConfigurationManagersInputTypeDef,
|
|
43
|
+
ListConfigurationManagersOutputTypeDef,
|
|
44
|
+
ListConfigurationsInputTypeDef,
|
|
45
|
+
ListConfigurationsOutputTypeDef,
|
|
46
|
+
ListQuickSetupTypesOutputTypeDef,
|
|
47
|
+
ListTagsForResourceRequestTypeDef,
|
|
48
|
+
ListTagsForResourceResponseTypeDef,
|
|
49
|
+
TagResourceInputTypeDef,
|
|
50
|
+
UntagResourceInputTypeDef,
|
|
51
|
+
UpdateConfigurationDefinitionInputTypeDef,
|
|
52
|
+
UpdateConfigurationManagerInputTypeDef,
|
|
53
|
+
UpdateServiceSettingsInputTypeDef,
|
|
54
|
+
)
|
|
55
|
+
|
|
56
|
+
if sys.version_info >= (3, 9):
|
|
57
|
+
from builtins import type as Type
|
|
58
|
+
from collections.abc import Mapping
|
|
59
|
+
else:
|
|
60
|
+
from typing import Mapping, Type
|
|
61
|
+
if sys.version_info >= (3, 12):
|
|
62
|
+
from typing import Literal, Self, Unpack
|
|
63
|
+
else:
|
|
64
|
+
from typing_extensions import Literal, Self, Unpack
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
__all__ = ("SystemsManagerQuickSetupClient",)
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
class Exceptions(BaseClientExceptions):
|
|
71
|
+
AccessDeniedException: Type[BotocoreClientError]
|
|
72
|
+
ClientError: Type[BotocoreClientError]
|
|
73
|
+
ConflictException: Type[BotocoreClientError]
|
|
74
|
+
InternalServerException: Type[BotocoreClientError]
|
|
75
|
+
ResourceNotFoundException: Type[BotocoreClientError]
|
|
76
|
+
ThrottlingException: Type[BotocoreClientError]
|
|
77
|
+
ValidationException: Type[BotocoreClientError]
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
class SystemsManagerQuickSetupClient(AioBaseClient):
|
|
81
|
+
"""
|
|
82
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client)
|
|
83
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/)
|
|
84
|
+
"""
|
|
85
|
+
|
|
86
|
+
meta: ClientMeta
|
|
87
|
+
|
|
88
|
+
@property
|
|
89
|
+
def exceptions(self) -> Exceptions:
|
|
90
|
+
"""
|
|
91
|
+
SystemsManagerQuickSetupClient exceptions.
|
|
92
|
+
|
|
93
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client)
|
|
94
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#exceptions)
|
|
95
|
+
"""
|
|
96
|
+
|
|
97
|
+
def can_paginate(self, operation_name: str) -> bool:
|
|
98
|
+
"""
|
|
99
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup/client/can_paginate.html)
|
|
100
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#can_paginate)
|
|
101
|
+
"""
|
|
102
|
+
|
|
103
|
+
async def generate_presigned_url(
|
|
104
|
+
self,
|
|
105
|
+
ClientMethod: str,
|
|
106
|
+
Params: Mapping[str, Any] = ...,
|
|
107
|
+
ExpiresIn: int = 3600,
|
|
108
|
+
HttpMethod: str = ...,
|
|
109
|
+
) -> str:
|
|
110
|
+
"""
|
|
111
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup/client/generate_presigned_url.html)
|
|
112
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#generate_presigned_url)
|
|
113
|
+
"""
|
|
114
|
+
|
|
115
|
+
async def create_configuration_manager(
|
|
116
|
+
self, **kwargs: Unpack[CreateConfigurationManagerInputTypeDef]
|
|
117
|
+
) -> CreateConfigurationManagerOutputTypeDef:
|
|
118
|
+
"""
|
|
119
|
+
Creates a Quick Setup configuration manager resource.
|
|
120
|
+
|
|
121
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup/client/create_configuration_manager.html)
|
|
122
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#create_configuration_manager)
|
|
123
|
+
"""
|
|
124
|
+
|
|
125
|
+
async def delete_configuration_manager(
|
|
126
|
+
self, **kwargs: Unpack[DeleteConfigurationManagerInputTypeDef]
|
|
127
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
128
|
+
"""
|
|
129
|
+
Deletes a configuration manager.
|
|
130
|
+
|
|
131
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup/client/delete_configuration_manager.html)
|
|
132
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#delete_configuration_manager)
|
|
133
|
+
"""
|
|
134
|
+
|
|
135
|
+
async def get_configuration(
|
|
136
|
+
self, **kwargs: Unpack[GetConfigurationInputTypeDef]
|
|
137
|
+
) -> GetConfigurationOutputTypeDef:
|
|
138
|
+
"""
|
|
139
|
+
Returns details about the specified configuration.
|
|
140
|
+
|
|
141
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup/client/get_configuration.html)
|
|
142
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#get_configuration)
|
|
143
|
+
"""
|
|
144
|
+
|
|
145
|
+
async def get_configuration_manager(
|
|
146
|
+
self, **kwargs: Unpack[GetConfigurationManagerInputTypeDef]
|
|
147
|
+
) -> GetConfigurationManagerOutputTypeDef:
|
|
148
|
+
"""
|
|
149
|
+
Returns a configuration manager.
|
|
150
|
+
|
|
151
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup/client/get_configuration_manager.html)
|
|
152
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#get_configuration_manager)
|
|
153
|
+
"""
|
|
154
|
+
|
|
155
|
+
async def get_service_settings(self) -> GetServiceSettingsOutputTypeDef:
|
|
156
|
+
"""
|
|
157
|
+
Returns settings configured for Quick Setup in the requesting Amazon Web
|
|
158
|
+
Services account and Amazon Web Services Region.
|
|
159
|
+
|
|
160
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup/client/get_service_settings.html)
|
|
161
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#get_service_settings)
|
|
162
|
+
"""
|
|
163
|
+
|
|
164
|
+
async def list_configuration_managers(
|
|
165
|
+
self, **kwargs: Unpack[ListConfigurationManagersInputTypeDef]
|
|
166
|
+
) -> ListConfigurationManagersOutputTypeDef:
|
|
167
|
+
"""
|
|
168
|
+
Returns Quick Setup configuration managers.
|
|
169
|
+
|
|
170
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup/client/list_configuration_managers.html)
|
|
171
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#list_configuration_managers)
|
|
172
|
+
"""
|
|
173
|
+
|
|
174
|
+
async def list_configurations(
|
|
175
|
+
self, **kwargs: Unpack[ListConfigurationsInputTypeDef]
|
|
176
|
+
) -> ListConfigurationsOutputTypeDef:
|
|
177
|
+
"""
|
|
178
|
+
Returns configurations deployed by Quick Setup in the requesting Amazon Web
|
|
179
|
+
Services account and Amazon Web Services Region.
|
|
180
|
+
|
|
181
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup/client/list_configurations.html)
|
|
182
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#list_configurations)
|
|
183
|
+
"""
|
|
184
|
+
|
|
185
|
+
async def list_quick_setup_types(self) -> ListQuickSetupTypesOutputTypeDef:
|
|
186
|
+
"""
|
|
187
|
+
Returns the available Quick Setup types.
|
|
188
|
+
|
|
189
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup/client/list_quick_setup_types.html)
|
|
190
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#list_quick_setup_types)
|
|
191
|
+
"""
|
|
192
|
+
|
|
193
|
+
async def list_tags_for_resource(
|
|
194
|
+
self, **kwargs: Unpack[ListTagsForResourceRequestTypeDef]
|
|
195
|
+
) -> ListTagsForResourceResponseTypeDef:
|
|
196
|
+
"""
|
|
197
|
+
Returns tags assigned to the resource.
|
|
198
|
+
|
|
199
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup/client/list_tags_for_resource.html)
|
|
200
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#list_tags_for_resource)
|
|
201
|
+
"""
|
|
202
|
+
|
|
203
|
+
async def tag_resource(
|
|
204
|
+
self, **kwargs: Unpack[TagResourceInputTypeDef]
|
|
205
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
206
|
+
"""
|
|
207
|
+
Assigns key-value pairs of metadata to Amazon Web Services resources.
|
|
208
|
+
|
|
209
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup/client/tag_resource.html)
|
|
210
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#tag_resource)
|
|
211
|
+
"""
|
|
212
|
+
|
|
213
|
+
async def untag_resource(
|
|
214
|
+
self, **kwargs: Unpack[UntagResourceInputTypeDef]
|
|
215
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
216
|
+
"""
|
|
217
|
+
Removes tags from the specified resource.
|
|
218
|
+
|
|
219
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup/client/untag_resource.html)
|
|
220
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#untag_resource)
|
|
221
|
+
"""
|
|
222
|
+
|
|
223
|
+
async def update_configuration_definition(
|
|
224
|
+
self, **kwargs: Unpack[UpdateConfigurationDefinitionInputTypeDef]
|
|
225
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
226
|
+
"""
|
|
227
|
+
Updates a Quick Setup configuration definition.
|
|
228
|
+
|
|
229
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup/client/update_configuration_definition.html)
|
|
230
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#update_configuration_definition)
|
|
231
|
+
"""
|
|
232
|
+
|
|
233
|
+
async def update_configuration_manager(
|
|
234
|
+
self, **kwargs: Unpack[UpdateConfigurationManagerInputTypeDef]
|
|
235
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
236
|
+
"""
|
|
237
|
+
Updates a Quick Setup configuration manager.
|
|
238
|
+
|
|
239
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup/client/update_configuration_manager.html)
|
|
240
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#update_configuration_manager)
|
|
241
|
+
"""
|
|
242
|
+
|
|
243
|
+
async def update_service_settings(
|
|
244
|
+
self, **kwargs: Unpack[UpdateServiceSettingsInputTypeDef]
|
|
245
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
246
|
+
"""
|
|
247
|
+
Updates settings configured for Quick Setup.
|
|
248
|
+
|
|
249
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup/client/update_service_settings.html)
|
|
250
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#update_service_settings)
|
|
251
|
+
"""
|
|
252
|
+
|
|
253
|
+
@overload # type: ignore[override]
|
|
254
|
+
def get_paginator( # type: ignore[override]
|
|
255
|
+
self, operation_name: Literal["list_configuration_managers"]
|
|
256
|
+
) -> ListConfigurationManagersPaginator:
|
|
257
|
+
"""
|
|
258
|
+
Create a paginator for an operation.
|
|
259
|
+
|
|
260
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup/client/get_paginator.html)
|
|
261
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#get_paginator)
|
|
262
|
+
"""
|
|
263
|
+
|
|
264
|
+
@overload # type: ignore[override]
|
|
265
|
+
def get_paginator( # type: ignore[override]
|
|
266
|
+
self, operation_name: Literal["list_configurations"]
|
|
267
|
+
) -> ListConfigurationsPaginator:
|
|
268
|
+
"""
|
|
269
|
+
Create a paginator for an operation.
|
|
270
|
+
|
|
271
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup/client/get_paginator.html)
|
|
272
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/#get_paginator)
|
|
273
|
+
"""
|
|
274
|
+
|
|
275
|
+
async def __aenter__(self) -> Self:
|
|
276
|
+
"""
|
|
277
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client)
|
|
278
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/)
|
|
279
|
+
"""
|
|
280
|
+
|
|
281
|
+
async def __aexit__(
|
|
282
|
+
self,
|
|
283
|
+
exc_type: Type[BaseException] | None,
|
|
284
|
+
exc_val: BaseException | None,
|
|
285
|
+
exc_tb: TracebackType | None,
|
|
286
|
+
) -> None:
|
|
287
|
+
"""
|
|
288
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm-quicksetup.html#SystemsManagerQuickSetup.Client)
|
|
289
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ssm_quicksetup/client/)
|
|
290
|
+
"""
|