mypy-boto3-workspaces-web 1.33.0__py3-none-any.whl → 1.34.90__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mypy_boto3_workspaces_web/__init__.py +0 -1
- mypy_boto3_workspaces_web/__main__.py +8 -7
- mypy_boto3_workspaces_web/client.py +24 -15
- mypy_boto3_workspaces_web/client.pyi +24 -15
- mypy_boto3_workspaces_web/literals.py +19 -3
- mypy_boto3_workspaces_web/literals.pyi +19 -1
- mypy_boto3_workspaces_web/type_defs.py +18 -2
- mypy_boto3_workspaces_web/type_defs.pyi +18 -1
- mypy_boto3_workspaces_web/version.py +1 -1
- {mypy_boto3_workspaces_web-1.33.0.dist-info → mypy_boto3_workspaces_web-1.34.90.dist-info}/LICENSE +1 -1
- {mypy_boto3_workspaces_web-1.33.0.dist-info → mypy_boto3_workspaces_web-1.34.90.dist-info}/METADATA +6 -7
- mypy_boto3_workspaces_web-1.34.90.dist-info/RECORD +16 -0
- {mypy_boto3_workspaces_web-1.33.0.dist-info → mypy_boto3_workspaces_web-1.34.90.dist-info}/WHEEL +1 -1
- mypy_boto3_workspaces_web-1.33.0.dist-info/RECORD +0 -16
- {mypy_boto3_workspaces_web-1.33.0.dist-info → mypy_boto3_workspaces_web-1.34.90.dist-info}/top_level.txt +0 -0
|
@@ -10,12 +10,13 @@ def print_info() -> None:
|
|
|
10
10
|
Print package info to stdout.
|
|
11
11
|
"""
|
|
12
12
|
print(
|
|
13
|
-
"Type annotations for boto3.WorkSpacesWeb 1.
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
" https://
|
|
13
|
+
"Type annotations for boto3.WorkSpacesWeb 1.34.90\n"
|
|
14
|
+
"Version: 1.34.90\n"
|
|
15
|
+
"Builder version: 7.23.2\n"
|
|
16
|
+
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web//\n"
|
|
17
|
+
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb\n"
|
|
18
|
+
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
19
|
+
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
|
|
19
20
|
)
|
|
20
21
|
|
|
21
22
|
|
|
@@ -23,7 +24,7 @@ def print_version() -> None:
|
|
|
23
24
|
"""
|
|
24
25
|
Print package version to stdout.
|
|
25
26
|
"""
|
|
26
|
-
print("1.
|
|
27
|
+
print("1.34.90")
|
|
27
28
|
|
|
28
29
|
|
|
29
30
|
def main() -> None:
|
|
@@ -18,7 +18,12 @@ from typing import Any, Dict, Mapping, Sequence, Type
|
|
|
18
18
|
|
|
19
19
|
from botocore.client import BaseClient, ClientMeta
|
|
20
20
|
|
|
21
|
-
from .literals import
|
|
21
|
+
from .literals import (
|
|
22
|
+
AuthenticationTypeType,
|
|
23
|
+
EnabledTypeType,
|
|
24
|
+
IdentityProviderTypeType,
|
|
25
|
+
InstanceTypeType,
|
|
26
|
+
)
|
|
22
27
|
from .type_defs import (
|
|
23
28
|
AssociateBrowserSettingsResponseTypeDef,
|
|
24
29
|
AssociateIpAccessSettingsResponseTypeDef,
|
|
@@ -191,7 +196,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
191
196
|
additionalEncryptionContext: Mapping[str, str] = ...,
|
|
192
197
|
clientToken: str = ...,
|
|
193
198
|
customerManagedKey: str = ...,
|
|
194
|
-
tags: Sequence[TagTypeDef] =
|
|
199
|
+
tags: Sequence[TagTypeDef] = ...,
|
|
195
200
|
) -> CreateBrowserSettingsResponseTypeDef:
|
|
196
201
|
"""
|
|
197
202
|
Creates a browser settings resource that can be associated with a web portal.
|
|
@@ -207,7 +212,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
207
212
|
identityProviderName: str,
|
|
208
213
|
identityProviderType: IdentityProviderTypeType,
|
|
209
214
|
portalArn: str,
|
|
210
|
-
clientToken: str =
|
|
215
|
+
clientToken: str = ...,
|
|
211
216
|
) -> CreateIdentityProviderResponseTypeDef:
|
|
212
217
|
"""
|
|
213
218
|
Creates an identity provider resource that is then associated with a web portal.
|
|
@@ -225,7 +230,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
225
230
|
customerManagedKey: str = ...,
|
|
226
231
|
description: str = ...,
|
|
227
232
|
displayName: str = ...,
|
|
228
|
-
tags: Sequence[TagTypeDef] =
|
|
233
|
+
tags: Sequence[TagTypeDef] = ...,
|
|
229
234
|
) -> CreateIpAccessSettingsResponseTypeDef:
|
|
230
235
|
"""
|
|
231
236
|
Creates an IP access settings resource that can be associated with a web portal.
|
|
@@ -241,7 +246,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
241
246
|
subnetIds: Sequence[str],
|
|
242
247
|
vpcId: str,
|
|
243
248
|
clientToken: str = ...,
|
|
244
|
-
tags: Sequence[TagTypeDef] =
|
|
249
|
+
tags: Sequence[TagTypeDef] = ...,
|
|
245
250
|
) -> CreateNetworkSettingsResponseTypeDef:
|
|
246
251
|
"""
|
|
247
252
|
Creates a network settings resource that can be associated with a web portal.
|
|
@@ -258,7 +263,9 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
258
263
|
clientToken: str = ...,
|
|
259
264
|
customerManagedKey: str = ...,
|
|
260
265
|
displayName: str = ...,
|
|
261
|
-
|
|
266
|
+
instanceType: InstanceTypeType = ...,
|
|
267
|
+
maxConcurrentSessions: int = ...,
|
|
268
|
+
tags: Sequence[TagTypeDef] = ...,
|
|
262
269
|
) -> CreatePortalResponseTypeDef:
|
|
263
270
|
"""
|
|
264
271
|
Creates a web portal.
|
|
@@ -272,7 +279,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
272
279
|
*,
|
|
273
280
|
certificateList: Sequence[BlobTypeDef],
|
|
274
281
|
clientToken: str = ...,
|
|
275
|
-
tags: Sequence[TagTypeDef] =
|
|
282
|
+
tags: Sequence[TagTypeDef] = ...,
|
|
276
283
|
) -> CreateTrustStoreResponseTypeDef:
|
|
277
284
|
"""
|
|
278
285
|
Creates a trust store that can be associated with a web portal.
|
|
@@ -307,7 +314,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
307
314
|
customerManagedKey: str = ...,
|
|
308
315
|
disconnectTimeoutInMinutes: int = ...,
|
|
309
316
|
idleDisconnectTimeoutInMinutes: int = ...,
|
|
310
|
-
tags: Sequence[TagTypeDef] =
|
|
317
|
+
tags: Sequence[TagTypeDef] = ...,
|
|
311
318
|
) -> CreateUserSettingsResponseTypeDef:
|
|
312
319
|
"""
|
|
313
320
|
Creates a user settings resource that can be associated with a web portal.
|
|
@@ -667,7 +674,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
667
674
|
clientToken: str = ...,
|
|
668
675
|
identityProviderDetails: Mapping[str, str] = ...,
|
|
669
676
|
identityProviderName: str = ...,
|
|
670
|
-
identityProviderType: IdentityProviderTypeType =
|
|
677
|
+
identityProviderType: IdentityProviderTypeType = ...,
|
|
671
678
|
) -> UpdateIdentityProviderResponseTypeDef:
|
|
672
679
|
"""
|
|
673
680
|
Updates the identity provider.
|
|
@@ -683,7 +690,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
683
690
|
clientToken: str = ...,
|
|
684
691
|
description: str = ...,
|
|
685
692
|
displayName: str = ...,
|
|
686
|
-
ipRules: Sequence[IpRuleTypeDef] =
|
|
693
|
+
ipRules: Sequence[IpRuleTypeDef] = ...,
|
|
687
694
|
) -> UpdateIpAccessSettingsResponseTypeDef:
|
|
688
695
|
"""
|
|
689
696
|
Updates IP access settings.
|
|
@@ -699,7 +706,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
699
706
|
clientToken: str = ...,
|
|
700
707
|
securityGroupIds: Sequence[str] = ...,
|
|
701
708
|
subnetIds: Sequence[str] = ...,
|
|
702
|
-
vpcId: str =
|
|
709
|
+
vpcId: str = ...,
|
|
703
710
|
) -> UpdateNetworkSettingsResponseTypeDef:
|
|
704
711
|
"""
|
|
705
712
|
Updates network settings.
|
|
@@ -713,7 +720,9 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
713
720
|
*,
|
|
714
721
|
portalArn: str,
|
|
715
722
|
authenticationType: AuthenticationTypeType = ...,
|
|
716
|
-
displayName: str =
|
|
723
|
+
displayName: str = ...,
|
|
724
|
+
instanceType: InstanceTypeType = ...,
|
|
725
|
+
maxConcurrentSessions: int = ...,
|
|
717
726
|
) -> UpdatePortalResponseTypeDef:
|
|
718
727
|
"""
|
|
719
728
|
Updates a web portal.
|
|
@@ -728,7 +737,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
728
737
|
trustStoreArn: str,
|
|
729
738
|
certificatesToAdd: Sequence[BlobTypeDef] = ...,
|
|
730
739
|
certificatesToDelete: Sequence[str] = ...,
|
|
731
|
-
clientToken: str =
|
|
740
|
+
clientToken: str = ...,
|
|
732
741
|
) -> UpdateTrustStoreResponseTypeDef:
|
|
733
742
|
"""
|
|
734
743
|
Updates the trust store.
|
|
@@ -742,7 +751,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
742
751
|
*,
|
|
743
752
|
userAccessLoggingSettingsArn: str,
|
|
744
753
|
clientToken: str = ...,
|
|
745
|
-
kinesisStreamArn: str =
|
|
754
|
+
kinesisStreamArn: str = ...,
|
|
746
755
|
) -> UpdateUserAccessLoggingSettingsResponseTypeDef:
|
|
747
756
|
"""
|
|
748
757
|
Updates the user access logging settings.
|
|
@@ -763,7 +772,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
763
772
|
idleDisconnectTimeoutInMinutes: int = ...,
|
|
764
773
|
pasteAllowed: EnabledTypeType = ...,
|
|
765
774
|
printAllowed: EnabledTypeType = ...,
|
|
766
|
-
uploadAllowed: EnabledTypeType =
|
|
775
|
+
uploadAllowed: EnabledTypeType = ...,
|
|
767
776
|
) -> UpdateUserSettingsResponseTypeDef:
|
|
768
777
|
"""
|
|
769
778
|
Updates the user settings.
|
|
@@ -18,7 +18,12 @@ from typing import Any, Dict, Mapping, Sequence, Type
|
|
|
18
18
|
|
|
19
19
|
from botocore.client import BaseClient, ClientMeta
|
|
20
20
|
|
|
21
|
-
from .literals import
|
|
21
|
+
from .literals import (
|
|
22
|
+
AuthenticationTypeType,
|
|
23
|
+
EnabledTypeType,
|
|
24
|
+
IdentityProviderTypeType,
|
|
25
|
+
InstanceTypeType,
|
|
26
|
+
)
|
|
22
27
|
from .type_defs import (
|
|
23
28
|
AssociateBrowserSettingsResponseTypeDef,
|
|
24
29
|
AssociateIpAccessSettingsResponseTypeDef,
|
|
@@ -188,7 +193,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
188
193
|
additionalEncryptionContext: Mapping[str, str] = ...,
|
|
189
194
|
clientToken: str = ...,
|
|
190
195
|
customerManagedKey: str = ...,
|
|
191
|
-
tags: Sequence[TagTypeDef] =
|
|
196
|
+
tags: Sequence[TagTypeDef] = ...,
|
|
192
197
|
) -> CreateBrowserSettingsResponseTypeDef:
|
|
193
198
|
"""
|
|
194
199
|
Creates a browser settings resource that can be associated with a web portal.
|
|
@@ -204,7 +209,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
204
209
|
identityProviderName: str,
|
|
205
210
|
identityProviderType: IdentityProviderTypeType,
|
|
206
211
|
portalArn: str,
|
|
207
|
-
clientToken: str =
|
|
212
|
+
clientToken: str = ...,
|
|
208
213
|
) -> CreateIdentityProviderResponseTypeDef:
|
|
209
214
|
"""
|
|
210
215
|
Creates an identity provider resource that is then associated with a web portal.
|
|
@@ -222,7 +227,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
222
227
|
customerManagedKey: str = ...,
|
|
223
228
|
description: str = ...,
|
|
224
229
|
displayName: str = ...,
|
|
225
|
-
tags: Sequence[TagTypeDef] =
|
|
230
|
+
tags: Sequence[TagTypeDef] = ...,
|
|
226
231
|
) -> CreateIpAccessSettingsResponseTypeDef:
|
|
227
232
|
"""
|
|
228
233
|
Creates an IP access settings resource that can be associated with a web portal.
|
|
@@ -238,7 +243,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
238
243
|
subnetIds: Sequence[str],
|
|
239
244
|
vpcId: str,
|
|
240
245
|
clientToken: str = ...,
|
|
241
|
-
tags: Sequence[TagTypeDef] =
|
|
246
|
+
tags: Sequence[TagTypeDef] = ...,
|
|
242
247
|
) -> CreateNetworkSettingsResponseTypeDef:
|
|
243
248
|
"""
|
|
244
249
|
Creates a network settings resource that can be associated with a web portal.
|
|
@@ -255,7 +260,9 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
255
260
|
clientToken: str = ...,
|
|
256
261
|
customerManagedKey: str = ...,
|
|
257
262
|
displayName: str = ...,
|
|
258
|
-
|
|
263
|
+
instanceType: InstanceTypeType = ...,
|
|
264
|
+
maxConcurrentSessions: int = ...,
|
|
265
|
+
tags: Sequence[TagTypeDef] = ...,
|
|
259
266
|
) -> CreatePortalResponseTypeDef:
|
|
260
267
|
"""
|
|
261
268
|
Creates a web portal.
|
|
@@ -269,7 +276,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
269
276
|
*,
|
|
270
277
|
certificateList: Sequence[BlobTypeDef],
|
|
271
278
|
clientToken: str = ...,
|
|
272
|
-
tags: Sequence[TagTypeDef] =
|
|
279
|
+
tags: Sequence[TagTypeDef] = ...,
|
|
273
280
|
) -> CreateTrustStoreResponseTypeDef:
|
|
274
281
|
"""
|
|
275
282
|
Creates a trust store that can be associated with a web portal.
|
|
@@ -304,7 +311,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
304
311
|
customerManagedKey: str = ...,
|
|
305
312
|
disconnectTimeoutInMinutes: int = ...,
|
|
306
313
|
idleDisconnectTimeoutInMinutes: int = ...,
|
|
307
|
-
tags: Sequence[TagTypeDef] =
|
|
314
|
+
tags: Sequence[TagTypeDef] = ...,
|
|
308
315
|
) -> CreateUserSettingsResponseTypeDef:
|
|
309
316
|
"""
|
|
310
317
|
Creates a user settings resource that can be associated with a web portal.
|
|
@@ -664,7 +671,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
664
671
|
clientToken: str = ...,
|
|
665
672
|
identityProviderDetails: Mapping[str, str] = ...,
|
|
666
673
|
identityProviderName: str = ...,
|
|
667
|
-
identityProviderType: IdentityProviderTypeType =
|
|
674
|
+
identityProviderType: IdentityProviderTypeType = ...,
|
|
668
675
|
) -> UpdateIdentityProviderResponseTypeDef:
|
|
669
676
|
"""
|
|
670
677
|
Updates the identity provider.
|
|
@@ -680,7 +687,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
680
687
|
clientToken: str = ...,
|
|
681
688
|
description: str = ...,
|
|
682
689
|
displayName: str = ...,
|
|
683
|
-
ipRules: Sequence[IpRuleTypeDef] =
|
|
690
|
+
ipRules: Sequence[IpRuleTypeDef] = ...,
|
|
684
691
|
) -> UpdateIpAccessSettingsResponseTypeDef:
|
|
685
692
|
"""
|
|
686
693
|
Updates IP access settings.
|
|
@@ -696,7 +703,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
696
703
|
clientToken: str = ...,
|
|
697
704
|
securityGroupIds: Sequence[str] = ...,
|
|
698
705
|
subnetIds: Sequence[str] = ...,
|
|
699
|
-
vpcId: str =
|
|
706
|
+
vpcId: str = ...,
|
|
700
707
|
) -> UpdateNetworkSettingsResponseTypeDef:
|
|
701
708
|
"""
|
|
702
709
|
Updates network settings.
|
|
@@ -710,7 +717,9 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
710
717
|
*,
|
|
711
718
|
portalArn: str,
|
|
712
719
|
authenticationType: AuthenticationTypeType = ...,
|
|
713
|
-
displayName: str =
|
|
720
|
+
displayName: str = ...,
|
|
721
|
+
instanceType: InstanceTypeType = ...,
|
|
722
|
+
maxConcurrentSessions: int = ...,
|
|
714
723
|
) -> UpdatePortalResponseTypeDef:
|
|
715
724
|
"""
|
|
716
725
|
Updates a web portal.
|
|
@@ -725,7 +734,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
725
734
|
trustStoreArn: str,
|
|
726
735
|
certificatesToAdd: Sequence[BlobTypeDef] = ...,
|
|
727
736
|
certificatesToDelete: Sequence[str] = ...,
|
|
728
|
-
clientToken: str =
|
|
737
|
+
clientToken: str = ...,
|
|
729
738
|
) -> UpdateTrustStoreResponseTypeDef:
|
|
730
739
|
"""
|
|
731
740
|
Updates the trust store.
|
|
@@ -739,7 +748,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
739
748
|
*,
|
|
740
749
|
userAccessLoggingSettingsArn: str,
|
|
741
750
|
clientToken: str = ...,
|
|
742
|
-
kinesisStreamArn: str =
|
|
751
|
+
kinesisStreamArn: str = ...,
|
|
743
752
|
) -> UpdateUserAccessLoggingSettingsResponseTypeDef:
|
|
744
753
|
"""
|
|
745
754
|
Updates the user access logging settings.
|
|
@@ -760,7 +769,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
760
769
|
idleDisconnectTimeoutInMinutes: int = ...,
|
|
761
770
|
pasteAllowed: EnabledTypeType = ...,
|
|
762
771
|
printAllowed: EnabledTypeType = ...,
|
|
763
|
-
uploadAllowed: EnabledTypeType =
|
|
772
|
+
uploadAllowed: EnabledTypeType = ...,
|
|
764
773
|
) -> UpdateUserSettingsResponseTypeDef:
|
|
765
774
|
"""
|
|
766
775
|
Updates the user settings.
|
|
@@ -19,12 +19,12 @@ if sys.version_info >= (3, 12):
|
|
|
19
19
|
else:
|
|
20
20
|
from typing_extensions import Literal
|
|
21
21
|
|
|
22
|
-
|
|
23
22
|
__all__ = (
|
|
24
23
|
"AuthenticationTypeType",
|
|
25
24
|
"BrowserTypeType",
|
|
26
25
|
"EnabledTypeType",
|
|
27
26
|
"IdentityProviderTypeType",
|
|
27
|
+
"InstanceTypeType",
|
|
28
28
|
"PortalStatusType",
|
|
29
29
|
"RendererTypeType",
|
|
30
30
|
"WorkSpacesWebServiceName",
|
|
@@ -33,13 +33,13 @@ __all__ = (
|
|
|
33
33
|
"RegionName",
|
|
34
34
|
)
|
|
35
35
|
|
|
36
|
-
|
|
37
36
|
AuthenticationTypeType = Literal["IAM_Identity_Center", "Standard"]
|
|
38
37
|
BrowserTypeType = Literal["Chrome"]
|
|
39
38
|
EnabledTypeType = Literal["Disabled", "Enabled"]
|
|
40
39
|
IdentityProviderTypeType = Literal[
|
|
41
40
|
"Facebook", "Google", "LoginWithAmazon", "OIDC", "SAML", "SignInWithApple"
|
|
42
41
|
]
|
|
42
|
+
InstanceTypeType = Literal["standard.large", "standard.regular", "standard.xlarge"]
|
|
43
43
|
PortalStatusType = Literal["Active", "Incomplete", "Pending"]
|
|
44
44
|
RendererTypeType = Literal["AppStream"]
|
|
45
45
|
WorkSpacesWebServiceName = Literal["workspaces-web"]
|
|
@@ -69,6 +69,7 @@ ServiceName = Literal[
|
|
|
69
69
|
"appstream",
|
|
70
70
|
"appsync",
|
|
71
71
|
"arc-zonal-shift",
|
|
72
|
+
"artifact",
|
|
72
73
|
"athena",
|
|
73
74
|
"auditmanager",
|
|
74
75
|
"autoscaling",
|
|
@@ -80,11 +81,14 @@ ServiceName = Literal[
|
|
|
80
81
|
"batch",
|
|
81
82
|
"bcm-data-exports",
|
|
82
83
|
"bedrock",
|
|
84
|
+
"bedrock-agent",
|
|
85
|
+
"bedrock-agent-runtime",
|
|
83
86
|
"bedrock-runtime",
|
|
84
87
|
"billingconductor",
|
|
85
88
|
"braket",
|
|
86
89
|
"budgets",
|
|
87
90
|
"ce",
|
|
91
|
+
"chatbot",
|
|
88
92
|
"chime",
|
|
89
93
|
"chime-sdk-identity",
|
|
90
94
|
"chime-sdk-media-pipelines",
|
|
@@ -92,6 +96,7 @@ ServiceName = Literal[
|
|
|
92
96
|
"chime-sdk-messaging",
|
|
93
97
|
"chime-sdk-voice",
|
|
94
98
|
"cleanrooms",
|
|
99
|
+
"cleanroomsml",
|
|
95
100
|
"cloud9",
|
|
96
101
|
"cloudcontrol",
|
|
97
102
|
"clouddirectory",
|
|
@@ -109,6 +114,7 @@ ServiceName = Literal[
|
|
|
109
114
|
"codebuild",
|
|
110
115
|
"codecatalyst",
|
|
111
116
|
"codecommit",
|
|
117
|
+
"codeconnections",
|
|
112
118
|
"codedeploy",
|
|
113
119
|
"codeguru-reviewer",
|
|
114
120
|
"codeguru-security",
|
|
@@ -129,6 +135,7 @@ ServiceName = Literal[
|
|
|
129
135
|
"connectcampaigns",
|
|
130
136
|
"connectcases",
|
|
131
137
|
"connectparticipant",
|
|
138
|
+
"controlcatalog",
|
|
132
139
|
"controltower",
|
|
133
140
|
"cost-optimization-hub",
|
|
134
141
|
"cur",
|
|
@@ -139,6 +146,7 @@ ServiceName = Literal[
|
|
|
139
146
|
"datasync",
|
|
140
147
|
"datazone",
|
|
141
148
|
"dax",
|
|
149
|
+
"deadline",
|
|
142
150
|
"detective",
|
|
143
151
|
"devicefarm",
|
|
144
152
|
"devops-guru",
|
|
@@ -207,7 +215,6 @@ ServiceName = Literal[
|
|
|
207
215
|
"iot",
|
|
208
216
|
"iot-data",
|
|
209
217
|
"iot-jobs-data",
|
|
210
|
-
"iot-roborunner",
|
|
211
218
|
"iot1click-devices",
|
|
212
219
|
"iot1click-projects",
|
|
213
220
|
"iotanalytics",
|
|
@@ -259,7 +266,9 @@ ServiceName = Literal[
|
|
|
259
266
|
"macie2",
|
|
260
267
|
"managedblockchain",
|
|
261
268
|
"managedblockchain-query",
|
|
269
|
+
"marketplace-agreement",
|
|
262
270
|
"marketplace-catalog",
|
|
271
|
+
"marketplace-deployment",
|
|
263
272
|
"marketplace-entitlement",
|
|
264
273
|
"marketplacecommerceanalytics",
|
|
265
274
|
"mediaconnect",
|
|
@@ -285,9 +294,11 @@ ServiceName = Literal[
|
|
|
285
294
|
"mturk",
|
|
286
295
|
"mwaa",
|
|
287
296
|
"neptune",
|
|
297
|
+
"neptune-graph",
|
|
288
298
|
"neptunedata",
|
|
289
299
|
"network-firewall",
|
|
290
300
|
"networkmanager",
|
|
301
|
+
"networkmonitor",
|
|
291
302
|
"nimble",
|
|
292
303
|
"oam",
|
|
293
304
|
"omics",
|
|
@@ -315,6 +326,8 @@ ServiceName = Literal[
|
|
|
315
326
|
"pricing",
|
|
316
327
|
"privatenetworks",
|
|
317
328
|
"proton",
|
|
329
|
+
"qbusiness",
|
|
330
|
+
"qconnect",
|
|
318
331
|
"qldb",
|
|
319
332
|
"qldb-session",
|
|
320
333
|
"quicksight",
|
|
@@ -338,6 +351,7 @@ ServiceName = Literal[
|
|
|
338
351
|
"route53-recovery-control-config",
|
|
339
352
|
"route53-recovery-readiness",
|
|
340
353
|
"route53domains",
|
|
354
|
+
"route53profiles",
|
|
341
355
|
"route53resolver",
|
|
342
356
|
"rum",
|
|
343
357
|
"s3",
|
|
@@ -383,11 +397,13 @@ ServiceName = Literal[
|
|
|
383
397
|
"stepfunctions",
|
|
384
398
|
"storagegateway",
|
|
385
399
|
"sts",
|
|
400
|
+
"supplychain",
|
|
386
401
|
"support",
|
|
387
402
|
"support-app",
|
|
388
403
|
"swf",
|
|
389
404
|
"synthetics",
|
|
390
405
|
"textract",
|
|
406
|
+
"timestream-influxdb",
|
|
391
407
|
"timestream-query",
|
|
392
408
|
"timestream-write",
|
|
393
409
|
"tnb",
|
|
@@ -24,6 +24,7 @@ __all__ = (
|
|
|
24
24
|
"BrowserTypeType",
|
|
25
25
|
"EnabledTypeType",
|
|
26
26
|
"IdentityProviderTypeType",
|
|
27
|
+
"InstanceTypeType",
|
|
27
28
|
"PortalStatusType",
|
|
28
29
|
"RendererTypeType",
|
|
29
30
|
"WorkSpacesWebServiceName",
|
|
@@ -38,6 +39,7 @@ EnabledTypeType = Literal["Disabled", "Enabled"]
|
|
|
38
39
|
IdentityProviderTypeType = Literal[
|
|
39
40
|
"Facebook", "Google", "LoginWithAmazon", "OIDC", "SAML", "SignInWithApple"
|
|
40
41
|
]
|
|
42
|
+
InstanceTypeType = Literal["standard.large", "standard.regular", "standard.xlarge"]
|
|
41
43
|
PortalStatusType = Literal["Active", "Incomplete", "Pending"]
|
|
42
44
|
RendererTypeType = Literal["AppStream"]
|
|
43
45
|
WorkSpacesWebServiceName = Literal["workspaces-web"]
|
|
@@ -67,6 +69,7 @@ ServiceName = Literal[
|
|
|
67
69
|
"appstream",
|
|
68
70
|
"appsync",
|
|
69
71
|
"arc-zonal-shift",
|
|
72
|
+
"artifact",
|
|
70
73
|
"athena",
|
|
71
74
|
"auditmanager",
|
|
72
75
|
"autoscaling",
|
|
@@ -78,11 +81,14 @@ ServiceName = Literal[
|
|
|
78
81
|
"batch",
|
|
79
82
|
"bcm-data-exports",
|
|
80
83
|
"bedrock",
|
|
84
|
+
"bedrock-agent",
|
|
85
|
+
"bedrock-agent-runtime",
|
|
81
86
|
"bedrock-runtime",
|
|
82
87
|
"billingconductor",
|
|
83
88
|
"braket",
|
|
84
89
|
"budgets",
|
|
85
90
|
"ce",
|
|
91
|
+
"chatbot",
|
|
86
92
|
"chime",
|
|
87
93
|
"chime-sdk-identity",
|
|
88
94
|
"chime-sdk-media-pipelines",
|
|
@@ -90,6 +96,7 @@ ServiceName = Literal[
|
|
|
90
96
|
"chime-sdk-messaging",
|
|
91
97
|
"chime-sdk-voice",
|
|
92
98
|
"cleanrooms",
|
|
99
|
+
"cleanroomsml",
|
|
93
100
|
"cloud9",
|
|
94
101
|
"cloudcontrol",
|
|
95
102
|
"clouddirectory",
|
|
@@ -107,6 +114,7 @@ ServiceName = Literal[
|
|
|
107
114
|
"codebuild",
|
|
108
115
|
"codecatalyst",
|
|
109
116
|
"codecommit",
|
|
117
|
+
"codeconnections",
|
|
110
118
|
"codedeploy",
|
|
111
119
|
"codeguru-reviewer",
|
|
112
120
|
"codeguru-security",
|
|
@@ -127,6 +135,7 @@ ServiceName = Literal[
|
|
|
127
135
|
"connectcampaigns",
|
|
128
136
|
"connectcases",
|
|
129
137
|
"connectparticipant",
|
|
138
|
+
"controlcatalog",
|
|
130
139
|
"controltower",
|
|
131
140
|
"cost-optimization-hub",
|
|
132
141
|
"cur",
|
|
@@ -137,6 +146,7 @@ ServiceName = Literal[
|
|
|
137
146
|
"datasync",
|
|
138
147
|
"datazone",
|
|
139
148
|
"dax",
|
|
149
|
+
"deadline",
|
|
140
150
|
"detective",
|
|
141
151
|
"devicefarm",
|
|
142
152
|
"devops-guru",
|
|
@@ -205,7 +215,6 @@ ServiceName = Literal[
|
|
|
205
215
|
"iot",
|
|
206
216
|
"iot-data",
|
|
207
217
|
"iot-jobs-data",
|
|
208
|
-
"iot-roborunner",
|
|
209
218
|
"iot1click-devices",
|
|
210
219
|
"iot1click-projects",
|
|
211
220
|
"iotanalytics",
|
|
@@ -257,7 +266,9 @@ ServiceName = Literal[
|
|
|
257
266
|
"macie2",
|
|
258
267
|
"managedblockchain",
|
|
259
268
|
"managedblockchain-query",
|
|
269
|
+
"marketplace-agreement",
|
|
260
270
|
"marketplace-catalog",
|
|
271
|
+
"marketplace-deployment",
|
|
261
272
|
"marketplace-entitlement",
|
|
262
273
|
"marketplacecommerceanalytics",
|
|
263
274
|
"mediaconnect",
|
|
@@ -283,9 +294,11 @@ ServiceName = Literal[
|
|
|
283
294
|
"mturk",
|
|
284
295
|
"mwaa",
|
|
285
296
|
"neptune",
|
|
297
|
+
"neptune-graph",
|
|
286
298
|
"neptunedata",
|
|
287
299
|
"network-firewall",
|
|
288
300
|
"networkmanager",
|
|
301
|
+
"networkmonitor",
|
|
289
302
|
"nimble",
|
|
290
303
|
"oam",
|
|
291
304
|
"omics",
|
|
@@ -313,6 +326,8 @@ ServiceName = Literal[
|
|
|
313
326
|
"pricing",
|
|
314
327
|
"privatenetworks",
|
|
315
328
|
"proton",
|
|
329
|
+
"qbusiness",
|
|
330
|
+
"qconnect",
|
|
316
331
|
"qldb",
|
|
317
332
|
"qldb-session",
|
|
318
333
|
"quicksight",
|
|
@@ -336,6 +351,7 @@ ServiceName = Literal[
|
|
|
336
351
|
"route53-recovery-control-config",
|
|
337
352
|
"route53-recovery-readiness",
|
|
338
353
|
"route53domains",
|
|
354
|
+
"route53profiles",
|
|
339
355
|
"route53resolver",
|
|
340
356
|
"rum",
|
|
341
357
|
"s3",
|
|
@@ -381,11 +397,13 @@ ServiceName = Literal[
|
|
|
381
397
|
"stepfunctions",
|
|
382
398
|
"storagegateway",
|
|
383
399
|
"sts",
|
|
400
|
+
"supplychain",
|
|
384
401
|
"support",
|
|
385
402
|
"support-app",
|
|
386
403
|
"swf",
|
|
387
404
|
"synthetics",
|
|
388
405
|
"textract",
|
|
406
|
+
"timestream-influxdb",
|
|
389
407
|
"timestream-query",
|
|
390
408
|
"timestream-write",
|
|
391
409
|
"tnb",
|
|
@@ -22,6 +22,7 @@ from .literals import (
|
|
|
22
22
|
AuthenticationTypeType,
|
|
23
23
|
EnabledTypeType,
|
|
24
24
|
IdentityProviderTypeType,
|
|
25
|
+
InstanceTypeType,
|
|
25
26
|
PortalStatusType,
|
|
26
27
|
)
|
|
27
28
|
|
|
@@ -38,7 +39,6 @@ if sys.version_info >= (3, 12):
|
|
|
38
39
|
else:
|
|
39
40
|
from typing_extensions import TypedDict
|
|
40
41
|
|
|
41
|
-
|
|
42
42
|
__all__ = (
|
|
43
43
|
"AssociateBrowserSettingsRequestRequestTypeDef",
|
|
44
44
|
"ResponseMetadataTypeDef",
|
|
@@ -177,10 +177,10 @@ ResponseMetadataTypeDef = TypedDict(
|
|
|
177
177
|
"ResponseMetadataTypeDef",
|
|
178
178
|
{
|
|
179
179
|
"RequestId": str,
|
|
180
|
-
"HostId": str,
|
|
181
180
|
"HTTPStatusCode": int,
|
|
182
181
|
"HTTPHeaders": Dict[str, str],
|
|
183
182
|
"RetryAttempts": int,
|
|
183
|
+
"HostId": NotRequired[str],
|
|
184
184
|
},
|
|
185
185
|
)
|
|
186
186
|
AssociateIpAccessSettingsRequestRequestTypeDef = TypedDict(
|
|
@@ -229,8 +229,10 @@ BrowserSettingsTypeDef = TypedDict(
|
|
|
229
229
|
"BrowserSettingsTypeDef",
|
|
230
230
|
{
|
|
231
231
|
"browserSettingsArn": str,
|
|
232
|
+
"additionalEncryptionContext": NotRequired[Dict[str, str]],
|
|
232
233
|
"associatedPortalArns": NotRequired[List[str]],
|
|
233
234
|
"browserPolicy": NotRequired[str],
|
|
235
|
+
"customerManagedKey": NotRequired[str],
|
|
234
236
|
},
|
|
235
237
|
)
|
|
236
238
|
CertificateSummaryTypeDef = TypedDict(
|
|
@@ -423,12 +425,16 @@ PortalTypeDef = TypedDict(
|
|
|
423
425
|
"PortalTypeDef",
|
|
424
426
|
{
|
|
425
427
|
"portalArn": str,
|
|
428
|
+
"additionalEncryptionContext": NotRequired[Dict[str, str]],
|
|
426
429
|
"authenticationType": NotRequired[AuthenticationTypeType],
|
|
427
430
|
"browserSettingsArn": NotRequired[str],
|
|
428
431
|
"browserType": NotRequired[Literal["Chrome"]],
|
|
429
432
|
"creationDate": NotRequired[datetime],
|
|
433
|
+
"customerManagedKey": NotRequired[str],
|
|
430
434
|
"displayName": NotRequired[str],
|
|
435
|
+
"instanceType": NotRequired[InstanceTypeType],
|
|
431
436
|
"ipAccessSettingsArn": NotRequired[str],
|
|
437
|
+
"maxConcurrentSessions": NotRequired[int],
|
|
432
438
|
"networkSettingsArn": NotRequired[str],
|
|
433
439
|
"portalEndpoint": NotRequired[str],
|
|
434
440
|
"portalStatus": NotRequired[PortalStatusType],
|
|
@@ -554,7 +560,9 @@ PortalSummaryTypeDef = TypedDict(
|
|
|
554
560
|
"browserType": NotRequired[Literal["Chrome"]],
|
|
555
561
|
"creationDate": NotRequired[datetime],
|
|
556
562
|
"displayName": NotRequired[str],
|
|
563
|
+
"instanceType": NotRequired[InstanceTypeType],
|
|
557
564
|
"ipAccessSettingsArn": NotRequired[str],
|
|
565
|
+
"maxConcurrentSessions": NotRequired[int],
|
|
558
566
|
"networkSettingsArn": NotRequired[str],
|
|
559
567
|
"portalEndpoint": NotRequired[str],
|
|
560
568
|
"portalStatus": NotRequired[PortalStatusType],
|
|
@@ -653,6 +661,8 @@ UpdatePortalRequestRequestTypeDef = TypedDict(
|
|
|
653
661
|
"portalArn": str,
|
|
654
662
|
"authenticationType": NotRequired[AuthenticationTypeType],
|
|
655
663
|
"displayName": NotRequired[str],
|
|
664
|
+
"instanceType": NotRequired[InstanceTypeType],
|
|
665
|
+
"maxConcurrentSessions": NotRequired[int],
|
|
656
666
|
},
|
|
657
667
|
)
|
|
658
668
|
UpdateUserAccessLoggingSettingsRequestRequestTypeDef = TypedDict(
|
|
@@ -866,6 +876,8 @@ CreatePortalRequestRequestTypeDef = TypedDict(
|
|
|
866
876
|
"clientToken": NotRequired[str],
|
|
867
877
|
"customerManagedKey": NotRequired[str],
|
|
868
878
|
"displayName": NotRequired[str],
|
|
879
|
+
"instanceType": NotRequired[InstanceTypeType],
|
|
880
|
+
"maxConcurrentSessions": NotRequired[int],
|
|
869
881
|
"tags": NotRequired[Sequence[TagTypeDef]],
|
|
870
882
|
},
|
|
871
883
|
)
|
|
@@ -916,8 +928,10 @@ IpAccessSettingsTypeDef = TypedDict(
|
|
|
916
928
|
"IpAccessSettingsTypeDef",
|
|
917
929
|
{
|
|
918
930
|
"ipAccessSettingsArn": str,
|
|
931
|
+
"additionalEncryptionContext": NotRequired[Dict[str, str]],
|
|
919
932
|
"associatedPortalArns": NotRequired[List[str]],
|
|
920
933
|
"creationDate": NotRequired[datetime],
|
|
934
|
+
"customerManagedKey": NotRequired[str],
|
|
921
935
|
"description": NotRequired[str],
|
|
922
936
|
"displayName": NotRequired[str],
|
|
923
937
|
"ipRules": NotRequired[List[IpRuleTypeDef]],
|
|
@@ -1100,11 +1114,13 @@ UserSettingsTypeDef = TypedDict(
|
|
|
1100
1114
|
"UserSettingsTypeDef",
|
|
1101
1115
|
{
|
|
1102
1116
|
"userSettingsArn": str,
|
|
1117
|
+
"additionalEncryptionContext": NotRequired[Dict[str, str]],
|
|
1103
1118
|
"associatedPortalArns": NotRequired[List[str]],
|
|
1104
1119
|
"cookieSynchronizationConfiguration": NotRequired[
|
|
1105
1120
|
CookieSynchronizationConfigurationTypeDef
|
|
1106
1121
|
],
|
|
1107
1122
|
"copyAllowed": NotRequired[EnabledTypeType],
|
|
1123
|
+
"customerManagedKey": NotRequired[str],
|
|
1108
1124
|
"disconnectTimeoutInMinutes": NotRequired[int],
|
|
1109
1125
|
"downloadAllowed": NotRequired[EnabledTypeType],
|
|
1110
1126
|
"idleDisconnectTimeoutInMinutes": NotRequired[int],
|
|
@@ -22,6 +22,7 @@ from .literals import (
|
|
|
22
22
|
AuthenticationTypeType,
|
|
23
23
|
EnabledTypeType,
|
|
24
24
|
IdentityProviderTypeType,
|
|
25
|
+
InstanceTypeType,
|
|
25
26
|
PortalStatusType,
|
|
26
27
|
)
|
|
27
28
|
|
|
@@ -176,10 +177,10 @@ ResponseMetadataTypeDef = TypedDict(
|
|
|
176
177
|
"ResponseMetadataTypeDef",
|
|
177
178
|
{
|
|
178
179
|
"RequestId": str,
|
|
179
|
-
"HostId": str,
|
|
180
180
|
"HTTPStatusCode": int,
|
|
181
181
|
"HTTPHeaders": Dict[str, str],
|
|
182
182
|
"RetryAttempts": int,
|
|
183
|
+
"HostId": NotRequired[str],
|
|
183
184
|
},
|
|
184
185
|
)
|
|
185
186
|
AssociateIpAccessSettingsRequestRequestTypeDef = TypedDict(
|
|
@@ -228,8 +229,10 @@ BrowserSettingsTypeDef = TypedDict(
|
|
|
228
229
|
"BrowserSettingsTypeDef",
|
|
229
230
|
{
|
|
230
231
|
"browserSettingsArn": str,
|
|
232
|
+
"additionalEncryptionContext": NotRequired[Dict[str, str]],
|
|
231
233
|
"associatedPortalArns": NotRequired[List[str]],
|
|
232
234
|
"browserPolicy": NotRequired[str],
|
|
235
|
+
"customerManagedKey": NotRequired[str],
|
|
233
236
|
},
|
|
234
237
|
)
|
|
235
238
|
CertificateSummaryTypeDef = TypedDict(
|
|
@@ -422,12 +425,16 @@ PortalTypeDef = TypedDict(
|
|
|
422
425
|
"PortalTypeDef",
|
|
423
426
|
{
|
|
424
427
|
"portalArn": str,
|
|
428
|
+
"additionalEncryptionContext": NotRequired[Dict[str, str]],
|
|
425
429
|
"authenticationType": NotRequired[AuthenticationTypeType],
|
|
426
430
|
"browserSettingsArn": NotRequired[str],
|
|
427
431
|
"browserType": NotRequired[Literal["Chrome"]],
|
|
428
432
|
"creationDate": NotRequired[datetime],
|
|
433
|
+
"customerManagedKey": NotRequired[str],
|
|
429
434
|
"displayName": NotRequired[str],
|
|
435
|
+
"instanceType": NotRequired[InstanceTypeType],
|
|
430
436
|
"ipAccessSettingsArn": NotRequired[str],
|
|
437
|
+
"maxConcurrentSessions": NotRequired[int],
|
|
431
438
|
"networkSettingsArn": NotRequired[str],
|
|
432
439
|
"portalEndpoint": NotRequired[str],
|
|
433
440
|
"portalStatus": NotRequired[PortalStatusType],
|
|
@@ -553,7 +560,9 @@ PortalSummaryTypeDef = TypedDict(
|
|
|
553
560
|
"browserType": NotRequired[Literal["Chrome"]],
|
|
554
561
|
"creationDate": NotRequired[datetime],
|
|
555
562
|
"displayName": NotRequired[str],
|
|
563
|
+
"instanceType": NotRequired[InstanceTypeType],
|
|
556
564
|
"ipAccessSettingsArn": NotRequired[str],
|
|
565
|
+
"maxConcurrentSessions": NotRequired[int],
|
|
557
566
|
"networkSettingsArn": NotRequired[str],
|
|
558
567
|
"portalEndpoint": NotRequired[str],
|
|
559
568
|
"portalStatus": NotRequired[PortalStatusType],
|
|
@@ -652,6 +661,8 @@ UpdatePortalRequestRequestTypeDef = TypedDict(
|
|
|
652
661
|
"portalArn": str,
|
|
653
662
|
"authenticationType": NotRequired[AuthenticationTypeType],
|
|
654
663
|
"displayName": NotRequired[str],
|
|
664
|
+
"instanceType": NotRequired[InstanceTypeType],
|
|
665
|
+
"maxConcurrentSessions": NotRequired[int],
|
|
655
666
|
},
|
|
656
667
|
)
|
|
657
668
|
UpdateUserAccessLoggingSettingsRequestRequestTypeDef = TypedDict(
|
|
@@ -865,6 +876,8 @@ CreatePortalRequestRequestTypeDef = TypedDict(
|
|
|
865
876
|
"clientToken": NotRequired[str],
|
|
866
877
|
"customerManagedKey": NotRequired[str],
|
|
867
878
|
"displayName": NotRequired[str],
|
|
879
|
+
"instanceType": NotRequired[InstanceTypeType],
|
|
880
|
+
"maxConcurrentSessions": NotRequired[int],
|
|
868
881
|
"tags": NotRequired[Sequence[TagTypeDef]],
|
|
869
882
|
},
|
|
870
883
|
)
|
|
@@ -915,8 +928,10 @@ IpAccessSettingsTypeDef = TypedDict(
|
|
|
915
928
|
"IpAccessSettingsTypeDef",
|
|
916
929
|
{
|
|
917
930
|
"ipAccessSettingsArn": str,
|
|
931
|
+
"additionalEncryptionContext": NotRequired[Dict[str, str]],
|
|
918
932
|
"associatedPortalArns": NotRequired[List[str]],
|
|
919
933
|
"creationDate": NotRequired[datetime],
|
|
934
|
+
"customerManagedKey": NotRequired[str],
|
|
920
935
|
"description": NotRequired[str],
|
|
921
936
|
"displayName": NotRequired[str],
|
|
922
937
|
"ipRules": NotRequired[List[IpRuleTypeDef]],
|
|
@@ -1099,11 +1114,13 @@ UserSettingsTypeDef = TypedDict(
|
|
|
1099
1114
|
"UserSettingsTypeDef",
|
|
1100
1115
|
{
|
|
1101
1116
|
"userSettingsArn": str,
|
|
1117
|
+
"additionalEncryptionContext": NotRequired[Dict[str, str]],
|
|
1102
1118
|
"associatedPortalArns": NotRequired[List[str]],
|
|
1103
1119
|
"cookieSynchronizationConfiguration": NotRequired[
|
|
1104
1120
|
CookieSynchronizationConfigurationTypeDef
|
|
1105
1121
|
],
|
|
1106
1122
|
"copyAllowed": NotRequired[EnabledTypeType],
|
|
1123
|
+
"customerManagedKey": NotRequired[str],
|
|
1107
1124
|
"disconnectTimeoutInMinutes": NotRequired[int],
|
|
1108
1125
|
"downloadAllowed": NotRequired[EnabledTypeType],
|
|
1109
1126
|
"idleDisconnectTimeoutInMinutes": NotRequired[int],
|
{mypy_boto3_workspaces_web-1.33.0.dist-info → mypy_boto3_workspaces_web-1.34.90.dist-info}/METADATA
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mypy-boto3-workspaces-web
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3.WorkSpacesWeb 1.
|
|
3
|
+
Version: 1.34.90
|
|
4
|
+
Summary: Type annotations for boto3.WorkSpacesWeb 1.34.90 service generated with mypy-boto3-builder 7.23.2
|
|
5
5
|
Home-page: https://github.com/youtype/mypy_boto3_builder
|
|
6
6
|
Author: Vlad Emelianov
|
|
7
7
|
Author-email: vlad.emelianov.nz@gmail.com
|
|
@@ -17,7 +17,6 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
17
17
|
Classifier: Natural Language :: English
|
|
18
18
|
Classifier: Operating System :: OS Independent
|
|
19
19
|
Classifier: Programming Language :: Python :: 3
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
21
20
|
Classifier: Programming Language :: Python :: 3.8
|
|
22
21
|
Classifier: Programming Language :: Python :: 3.9
|
|
23
22
|
Classifier: Programming Language :: Python :: 3.10
|
|
@@ -26,8 +25,8 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
26
25
|
Classifier: Programming Language :: Python :: 3.13
|
|
27
26
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
28
27
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
29
|
-
Classifier: Typing ::
|
|
30
|
-
Requires-Python: >=3.
|
|
28
|
+
Classifier: Typing :: Stubs Only
|
|
29
|
+
Requires-Python: >=3.8
|
|
31
30
|
Description-Content-Type: text/markdown
|
|
32
31
|
License-File: LICENSE
|
|
33
32
|
Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
|
|
@@ -44,7 +43,7 @@ Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
|
|
|
44
43
|

|
|
45
44
|
|
|
46
45
|
Type annotations for
|
|
47
|
-
[boto3.WorkSpacesWeb 1.
|
|
46
|
+
[boto3.WorkSpacesWeb 1.34.90](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb)
|
|
48
47
|
service compatible with [VSCode](https://code.visualstudio.com/),
|
|
49
48
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
50
49
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -53,7 +52,7 @@ service compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
53
52
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
54
53
|
|
|
55
54
|
Generated by
|
|
56
|
-
[mypy-boto3-builder 7.
|
|
55
|
+
[mypy-boto3-builder 7.23.2](https://github.com/youtype/mypy_boto3_builder).
|
|
57
56
|
|
|
58
57
|
More information can be found on
|
|
59
58
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
mypy_boto3_workspaces_web/__init__.py,sha256=_PceDoM-MgG7nsoy7NRSHaMfNajMR3LFUxZDl6B4ozo,424
|
|
2
|
+
mypy_boto3_workspaces_web/__init__.pyi,sha256=_PceDoM-MgG7nsoy7NRSHaMfNajMR3LFUxZDl6B4ozo,424
|
|
3
|
+
mypy_boto3_workspaces_web/__main__.py,sha256=OLX__aDdD43LA0fZpBcguOe1b2R8qqaTK7EMdaI28hk,945
|
|
4
|
+
mypy_boto3_workspaces_web/client.py,sha256=Jrp3JXE2x3YGMePGZSNvOupK2yy1UcrWmiqOHfBTUtg,38440
|
|
5
|
+
mypy_boto3_workspaces_web/client.pyi,sha256=O4YrOJp7hW94kgq4w8VR2dkhIHaZKLP6TD8JE2FvvjA,38437
|
|
6
|
+
mypy_boto3_workspaces_web/literals.py,sha256=FsD39FOkCUnk3F2Ch2YEnJMWUHy6yuVSI-_28MPLiC8,9178
|
|
7
|
+
mypy_boto3_workspaces_web/literals.pyi,sha256=FsD39FOkCUnk3F2Ch2YEnJMWUHy6yuVSI-_28MPLiC8,9178
|
|
8
|
+
mypy_boto3_workspaces_web/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
+
mypy_boto3_workspaces_web/type_defs.py,sha256=J_Z5tMYLvQDodux0l9AoKIQqi4xmVwhF1mlwBZxmSTc,37029
|
|
10
|
+
mypy_boto3_workspaces_web/type_defs.pyi,sha256=J_Z5tMYLvQDodux0l9AoKIQqi4xmVwhF1mlwBZxmSTc,37029
|
|
11
|
+
mypy_boto3_workspaces_web/version.py,sha256=ov_ee34r3gRd-YgAlPV05qtH_-ExebpJZuoZjAolgbw,62
|
|
12
|
+
mypy_boto3_workspaces_web-1.34.90.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
13
|
+
mypy_boto3_workspaces_web-1.34.90.dist-info/METADATA,sha256=UyZjwY12hzx5U5vpR9ezkxuA4XPX9p8g1oqg1K7e-B8,12481
|
|
14
|
+
mypy_boto3_workspaces_web-1.34.90.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
15
|
+
mypy_boto3_workspaces_web-1.34.90.dist-info/top_level.txt,sha256=uVGqyFrLYAjBajviVBauQuxxcr6knw6ba2vzvsNkrGg,26
|
|
16
|
+
mypy_boto3_workspaces_web-1.34.90.dist-info/RECORD,,
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
mypy_boto3_workspaces_web/__init__.py,sha256=LScVUIHiVVtbYLehdx0qCHg7h2xHLPsFazPfACCnrDU,425
|
|
2
|
-
mypy_boto3_workspaces_web/__init__.pyi,sha256=_PceDoM-MgG7nsoy7NRSHaMfNajMR3LFUxZDl6B4ozo,424
|
|
3
|
-
mypy_boto3_workspaces_web/__main__.py,sha256=nLFjegSF9WaICtkd-4B4wxKSUQO0e45CWNh_Ahp4K5E,931
|
|
4
|
-
mypy_boto3_workspaces_web/client.py,sha256=XL9QN6kmeyZRH7t2VZ0m_smExAq1FucH-k0cgw_Pxb0,38211
|
|
5
|
-
mypy_boto3_workspaces_web/client.pyi,sha256=46TfmSUAF19w0W5FAzUd0PLIEdgMVpKTLdtVkNPg3FQ,38208
|
|
6
|
-
mypy_boto3_workspaces_web/literals.py,sha256=Yk7HRxtBrJUnsjrm2ZqvAL4UM4tWR4chhgSxVDmgw9U,8728
|
|
7
|
-
mypy_boto3_workspaces_web/literals.pyi,sha256=EEsSqaOxo2Vx4TC2Y61FBEgQxuWmqdPz-5QSbiFg1sE,8726
|
|
8
|
-
mypy_boto3_workspaces_web/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
mypy_boto3_workspaces_web/type_defs.py,sha256=KoMCThU8wxldZOb2JTn1b8-Rwg6GU6xvotS3boMoQjM,36107
|
|
10
|
-
mypy_boto3_workspaces_web/type_defs.pyi,sha256=s8BySrc1QsRWqGxwdhliYFRxNktyyBG7Peo8oa6Iyd8,36106
|
|
11
|
-
mypy_boto3_workspaces_web/version.py,sha256=pRH6mk1FqaU5XuRtL3N0KMuAI2_Ng9oXtSxujxS8QKo,61
|
|
12
|
-
mypy_boto3_workspaces_web-1.33.0.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
|
|
13
|
-
mypy_boto3_workspaces_web-1.33.0.dist-info/METADATA,sha256=xJi4eFKqbna9LbiH4isb40K3LmiriclCE1O0YGfQTl4,12523
|
|
14
|
-
mypy_boto3_workspaces_web-1.33.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
15
|
-
mypy_boto3_workspaces_web-1.33.0.dist-info/top_level.txt,sha256=uVGqyFrLYAjBajviVBauQuxxcr6knw6ba2vzvsNkrGg,26
|
|
16
|
-
mypy_boto3_workspaces_web-1.33.0.dist-info/RECORD,,
|
|
File without changes
|