mypy-boto3-workspaces-web 1.28.15.post1__py3-none-any.whl → 1.28.16__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/__main__.py +3 -3
- mypy_boto3_workspaces_web/client.py +4 -4
- mypy_boto3_workspaces_web/client.pyi +4 -4
- mypy_boto3_workspaces_web/type_defs.py +28 -26
- mypy_boto3_workspaces_web/type_defs.pyi +26 -24
- mypy_boto3_workspaces_web/version.py +1 -1
- {mypy_boto3_workspaces_web-1.28.15.post1.dist-info → mypy_boto3_workspaces_web-1.28.16.dist-info}/METADATA +12 -11
- mypy_boto3_workspaces_web-1.28.16.dist-info/RECORD +16 -0
- mypy_boto3_workspaces_web-1.28.15.post1.dist-info/RECORD +0 -16
- {mypy_boto3_workspaces_web-1.28.15.post1.dist-info → mypy_boto3_workspaces_web-1.28.16.dist-info}/LICENSE +0 -0
- {mypy_boto3_workspaces_web-1.28.15.post1.dist-info → mypy_boto3_workspaces_web-1.28.16.dist-info}/WHEEL +0 -0
- {mypy_boto3_workspaces_web-1.28.15.post1.dist-info → mypy_boto3_workspaces_web-1.28.16.dist-info}/top_level.txt +0 -0
|
@@ -9,8 +9,8 @@ def print_info() -> None:
|
|
|
9
9
|
Print package info to stdout.
|
|
10
10
|
"""
|
|
11
11
|
print(
|
|
12
|
-
"Type annotations for boto3.WorkSpacesWeb 1.28.
|
|
13
|
-
" version: 7.
|
|
12
|
+
"Type annotations for boto3.WorkSpacesWeb 1.28.16\nVersion: 1.28.16\nBuilder"
|
|
13
|
+
" version: 7.17.1\nDocs: "
|
|
14
14
|
" https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web//\nBoto3 docs: "
|
|
15
15
|
" https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb\nOther"
|
|
16
16
|
" services: https://pypi.org/project/boto3-stubs/\nChangelog: "
|
|
@@ -22,7 +22,7 @@ def print_version() -> None:
|
|
|
22
22
|
"""
|
|
23
23
|
Print package version to stdout.
|
|
24
24
|
"""
|
|
25
|
-
print("1.28.
|
|
25
|
+
print("1.28.16")
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
def main() -> None:
|
|
@@ -13,10 +13,9 @@ Usage::
|
|
|
13
13
|
client: WorkSpacesWebClient = session.client("workspaces-web")
|
|
14
14
|
```
|
|
15
15
|
"""
|
|
16
|
-
from typing import
|
|
16
|
+
from typing import Any, Dict, Mapping, Sequence, Type
|
|
17
17
|
|
|
18
18
|
from botocore.client import BaseClient, ClientMeta
|
|
19
|
-
from botocore.response import StreamingBody
|
|
20
19
|
|
|
21
20
|
from .literals import AuthenticationTypeType, EnabledTypeType, IdentityProviderTypeType
|
|
22
21
|
from .type_defs import (
|
|
@@ -26,6 +25,7 @@ from .type_defs import (
|
|
|
26
25
|
AssociateTrustStoreResponseTypeDef,
|
|
27
26
|
AssociateUserAccessLoggingSettingsResponseTypeDef,
|
|
28
27
|
AssociateUserSettingsResponseTypeDef,
|
|
28
|
+
BlobTypeDef,
|
|
29
29
|
CreateBrowserSettingsResponseTypeDef,
|
|
30
30
|
CreateIdentityProviderResponseTypeDef,
|
|
31
31
|
CreateIpAccessSettingsResponseTypeDef,
|
|
@@ -268,7 +268,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
268
268
|
def create_trust_store(
|
|
269
269
|
self,
|
|
270
270
|
*,
|
|
271
|
-
certificateList: Sequence[
|
|
271
|
+
certificateList: Sequence[BlobTypeDef],
|
|
272
272
|
clientToken: str = ...,
|
|
273
273
|
tags: Sequence[TagTypeDef] = ...
|
|
274
274
|
) -> CreateTrustStoreResponseTypeDef:
|
|
@@ -720,7 +720,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
720
720
|
self,
|
|
721
721
|
*,
|
|
722
722
|
trustStoreArn: str,
|
|
723
|
-
certificatesToAdd: Sequence[
|
|
723
|
+
certificatesToAdd: Sequence[BlobTypeDef] = ...,
|
|
724
724
|
certificatesToDelete: Sequence[str] = ...,
|
|
725
725
|
clientToken: str = ...
|
|
726
726
|
) -> UpdateTrustStoreResponseTypeDef:
|
|
@@ -13,10 +13,9 @@ Usage::
|
|
|
13
13
|
client: WorkSpacesWebClient = session.client("workspaces-web")
|
|
14
14
|
```
|
|
15
15
|
"""
|
|
16
|
-
from typing import
|
|
16
|
+
from typing import Any, Dict, Mapping, Sequence, Type
|
|
17
17
|
|
|
18
18
|
from botocore.client import BaseClient, ClientMeta
|
|
19
|
-
from botocore.response import StreamingBody
|
|
20
19
|
|
|
21
20
|
from .literals import AuthenticationTypeType, EnabledTypeType, IdentityProviderTypeType
|
|
22
21
|
from .type_defs import (
|
|
@@ -26,6 +25,7 @@ from .type_defs import (
|
|
|
26
25
|
AssociateTrustStoreResponseTypeDef,
|
|
27
26
|
AssociateUserAccessLoggingSettingsResponseTypeDef,
|
|
28
27
|
AssociateUserSettingsResponseTypeDef,
|
|
28
|
+
BlobTypeDef,
|
|
29
29
|
CreateBrowserSettingsResponseTypeDef,
|
|
30
30
|
CreateIdentityProviderResponseTypeDef,
|
|
31
31
|
CreateIpAccessSettingsResponseTypeDef,
|
|
@@ -251,7 +251,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
251
251
|
def create_trust_store(
|
|
252
252
|
self,
|
|
253
253
|
*,
|
|
254
|
-
certificateList: Sequence[
|
|
254
|
+
certificateList: Sequence[BlobTypeDef],
|
|
255
255
|
clientToken: str = ...,
|
|
256
256
|
tags: Sequence[TagTypeDef] = ...
|
|
257
257
|
) -> CreateTrustStoreResponseTypeDef:
|
|
@@ -658,7 +658,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
658
658
|
self,
|
|
659
659
|
*,
|
|
660
660
|
trustStoreArn: str,
|
|
661
|
-
certificatesToAdd: Sequence[
|
|
661
|
+
certificatesToAdd: Sequence[BlobTypeDef] = ...,
|
|
662
662
|
certificatesToDelete: Sequence[str] = ...,
|
|
663
663
|
clientToken: str = ...
|
|
664
664
|
) -> UpdateTrustStoreResponseTypeDef:
|
|
@@ -8,7 +8,7 @@ Usage::
|
|
|
8
8
|
```python
|
|
9
9
|
from mypy_boto3_workspaces_web.type_defs import AssociateBrowserSettingsRequestRequestTypeDef
|
|
10
10
|
|
|
11
|
-
data: AssociateBrowserSettingsRequestRequestTypeDef =
|
|
11
|
+
data: AssociateBrowserSettingsRequestRequestTypeDef = ...
|
|
12
12
|
```
|
|
13
13
|
"""
|
|
14
14
|
import sys
|
|
@@ -42,6 +42,7 @@ __all__ = (
|
|
|
42
42
|
"AssociateTrustStoreRequestRequestTypeDef",
|
|
43
43
|
"AssociateUserAccessLoggingSettingsRequestRequestTypeDef",
|
|
44
44
|
"AssociateUserSettingsRequestRequestTypeDef",
|
|
45
|
+
"BlobTypeDef",
|
|
45
46
|
"BrowserSettingsSummaryTypeDef",
|
|
46
47
|
"BrowserSettingsTypeDef",
|
|
47
48
|
"CertificateSummaryTypeDef",
|
|
@@ -101,7 +102,6 @@ __all__ = (
|
|
|
101
102
|
"UpdateIdentityProviderRequestRequestTypeDef",
|
|
102
103
|
"UpdateNetworkSettingsRequestRequestTypeDef",
|
|
103
104
|
"UpdatePortalRequestRequestTypeDef",
|
|
104
|
-
"UpdateTrustStoreRequestRequestTypeDef",
|
|
105
105
|
"UpdateUserAccessLoggingSettingsRequestRequestTypeDef",
|
|
106
106
|
"UpdateUserSettingsRequestRequestTypeDef",
|
|
107
107
|
"AssociateBrowserSettingsResponseTypeDef",
|
|
@@ -120,6 +120,7 @@ __all__ = (
|
|
|
120
120
|
"CreateUserSettingsResponseTypeDef",
|
|
121
121
|
"GetPortalServiceProviderMetadataResponseTypeDef",
|
|
122
122
|
"UpdateTrustStoreResponseTypeDef",
|
|
123
|
+
"UpdateTrustStoreRequestRequestTypeDef",
|
|
123
124
|
"ListBrowserSettingsResponseTypeDef",
|
|
124
125
|
"GetBrowserSettingsResponseTypeDef",
|
|
125
126
|
"UpdateBrowserSettingsResponseTypeDef",
|
|
@@ -217,6 +218,7 @@ AssociateUserSettingsRequestRequestTypeDef = TypedDict(
|
|
|
217
218
|
},
|
|
218
219
|
)
|
|
219
220
|
|
|
221
|
+
BlobTypeDef = Union[str, bytes, IO[Any], StreamingBody]
|
|
220
222
|
BrowserSettingsSummaryTypeDef = TypedDict(
|
|
221
223
|
"BrowserSettingsSummaryTypeDef",
|
|
222
224
|
{
|
|
@@ -915,29 +917,6 @@ class UpdatePortalRequestRequestTypeDef(
|
|
|
915
917
|
pass
|
|
916
918
|
|
|
917
919
|
|
|
918
|
-
_RequiredUpdateTrustStoreRequestRequestTypeDef = TypedDict(
|
|
919
|
-
"_RequiredUpdateTrustStoreRequestRequestTypeDef",
|
|
920
|
-
{
|
|
921
|
-
"trustStoreArn": str,
|
|
922
|
-
},
|
|
923
|
-
)
|
|
924
|
-
_OptionalUpdateTrustStoreRequestRequestTypeDef = TypedDict(
|
|
925
|
-
"_OptionalUpdateTrustStoreRequestRequestTypeDef",
|
|
926
|
-
{
|
|
927
|
-
"certificatesToAdd": Sequence[Union[str, bytes, IO[Any], StreamingBody]],
|
|
928
|
-
"certificatesToDelete": Sequence[str],
|
|
929
|
-
"clientToken": str,
|
|
930
|
-
},
|
|
931
|
-
total=False,
|
|
932
|
-
)
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
class UpdateTrustStoreRequestRequestTypeDef(
|
|
936
|
-
_RequiredUpdateTrustStoreRequestRequestTypeDef, _OptionalUpdateTrustStoreRequestRequestTypeDef
|
|
937
|
-
):
|
|
938
|
-
pass
|
|
939
|
-
|
|
940
|
-
|
|
941
920
|
_RequiredUpdateUserAccessLoggingSettingsRequestRequestTypeDef = TypedDict(
|
|
942
921
|
"_RequiredUpdateUserAccessLoggingSettingsRequestRequestTypeDef",
|
|
943
922
|
{
|
|
@@ -1126,6 +1105,29 @@ UpdateTrustStoreResponseTypeDef = TypedDict(
|
|
|
1126
1105
|
},
|
|
1127
1106
|
)
|
|
1128
1107
|
|
|
1108
|
+
_RequiredUpdateTrustStoreRequestRequestTypeDef = TypedDict(
|
|
1109
|
+
"_RequiredUpdateTrustStoreRequestRequestTypeDef",
|
|
1110
|
+
{
|
|
1111
|
+
"trustStoreArn": str,
|
|
1112
|
+
},
|
|
1113
|
+
)
|
|
1114
|
+
_OptionalUpdateTrustStoreRequestRequestTypeDef = TypedDict(
|
|
1115
|
+
"_OptionalUpdateTrustStoreRequestRequestTypeDef",
|
|
1116
|
+
{
|
|
1117
|
+
"certificatesToAdd": Sequence[BlobTypeDef],
|
|
1118
|
+
"certificatesToDelete": Sequence[str],
|
|
1119
|
+
"clientToken": str,
|
|
1120
|
+
},
|
|
1121
|
+
total=False,
|
|
1122
|
+
)
|
|
1123
|
+
|
|
1124
|
+
|
|
1125
|
+
class UpdateTrustStoreRequestRequestTypeDef(
|
|
1126
|
+
_RequiredUpdateTrustStoreRequestRequestTypeDef, _OptionalUpdateTrustStoreRequestRequestTypeDef
|
|
1127
|
+
):
|
|
1128
|
+
pass
|
|
1129
|
+
|
|
1130
|
+
|
|
1129
1131
|
ListBrowserSettingsResponseTypeDef = TypedDict(
|
|
1130
1132
|
"ListBrowserSettingsResponseTypeDef",
|
|
1131
1133
|
{
|
|
@@ -1236,7 +1238,7 @@ CreatePortalRequestRequestTypeDef = TypedDict(
|
|
|
1236
1238
|
_RequiredCreateTrustStoreRequestRequestTypeDef = TypedDict(
|
|
1237
1239
|
"_RequiredCreateTrustStoreRequestRequestTypeDef",
|
|
1238
1240
|
{
|
|
1239
|
-
"certificateList": Sequence[
|
|
1241
|
+
"certificateList": Sequence[BlobTypeDef],
|
|
1240
1242
|
},
|
|
1241
1243
|
)
|
|
1242
1244
|
_OptionalCreateTrustStoreRequestRequestTypeDef = TypedDict(
|
|
@@ -8,7 +8,7 @@ Usage::
|
|
|
8
8
|
```python
|
|
9
9
|
from mypy_boto3_workspaces_web.type_defs import AssociateBrowserSettingsRequestRequestTypeDef
|
|
10
10
|
|
|
11
|
-
data: AssociateBrowserSettingsRequestRequestTypeDef =
|
|
11
|
+
data: AssociateBrowserSettingsRequestRequestTypeDef = ...
|
|
12
12
|
```
|
|
13
13
|
"""
|
|
14
14
|
import sys
|
|
@@ -41,6 +41,7 @@ __all__ = (
|
|
|
41
41
|
"AssociateTrustStoreRequestRequestTypeDef",
|
|
42
42
|
"AssociateUserAccessLoggingSettingsRequestRequestTypeDef",
|
|
43
43
|
"AssociateUserSettingsRequestRequestTypeDef",
|
|
44
|
+
"BlobTypeDef",
|
|
44
45
|
"BrowserSettingsSummaryTypeDef",
|
|
45
46
|
"BrowserSettingsTypeDef",
|
|
46
47
|
"CertificateSummaryTypeDef",
|
|
@@ -100,7 +101,6 @@ __all__ = (
|
|
|
100
101
|
"UpdateIdentityProviderRequestRequestTypeDef",
|
|
101
102
|
"UpdateNetworkSettingsRequestRequestTypeDef",
|
|
102
103
|
"UpdatePortalRequestRequestTypeDef",
|
|
103
|
-
"UpdateTrustStoreRequestRequestTypeDef",
|
|
104
104
|
"UpdateUserAccessLoggingSettingsRequestRequestTypeDef",
|
|
105
105
|
"UpdateUserSettingsRequestRequestTypeDef",
|
|
106
106
|
"AssociateBrowserSettingsResponseTypeDef",
|
|
@@ -119,6 +119,7 @@ __all__ = (
|
|
|
119
119
|
"CreateUserSettingsResponseTypeDef",
|
|
120
120
|
"GetPortalServiceProviderMetadataResponseTypeDef",
|
|
121
121
|
"UpdateTrustStoreResponseTypeDef",
|
|
122
|
+
"UpdateTrustStoreRequestRequestTypeDef",
|
|
122
123
|
"ListBrowserSettingsResponseTypeDef",
|
|
123
124
|
"GetBrowserSettingsResponseTypeDef",
|
|
124
125
|
"UpdateBrowserSettingsResponseTypeDef",
|
|
@@ -216,6 +217,7 @@ AssociateUserSettingsRequestRequestTypeDef = TypedDict(
|
|
|
216
217
|
},
|
|
217
218
|
)
|
|
218
219
|
|
|
220
|
+
BlobTypeDef = Union[str, bytes, IO[Any], StreamingBody]
|
|
219
221
|
BrowserSettingsSummaryTypeDef = TypedDict(
|
|
220
222
|
"BrowserSettingsSummaryTypeDef",
|
|
221
223
|
{
|
|
@@ -888,27 +890,6 @@ class UpdatePortalRequestRequestTypeDef(
|
|
|
888
890
|
):
|
|
889
891
|
pass
|
|
890
892
|
|
|
891
|
-
_RequiredUpdateTrustStoreRequestRequestTypeDef = TypedDict(
|
|
892
|
-
"_RequiredUpdateTrustStoreRequestRequestTypeDef",
|
|
893
|
-
{
|
|
894
|
-
"trustStoreArn": str,
|
|
895
|
-
},
|
|
896
|
-
)
|
|
897
|
-
_OptionalUpdateTrustStoreRequestRequestTypeDef = TypedDict(
|
|
898
|
-
"_OptionalUpdateTrustStoreRequestRequestTypeDef",
|
|
899
|
-
{
|
|
900
|
-
"certificatesToAdd": Sequence[Union[str, bytes, IO[Any], StreamingBody]],
|
|
901
|
-
"certificatesToDelete": Sequence[str],
|
|
902
|
-
"clientToken": str,
|
|
903
|
-
},
|
|
904
|
-
total=False,
|
|
905
|
-
)
|
|
906
|
-
|
|
907
|
-
class UpdateTrustStoreRequestRequestTypeDef(
|
|
908
|
-
_RequiredUpdateTrustStoreRequestRequestTypeDef, _OptionalUpdateTrustStoreRequestRequestTypeDef
|
|
909
|
-
):
|
|
910
|
-
pass
|
|
911
|
-
|
|
912
893
|
_RequiredUpdateUserAccessLoggingSettingsRequestRequestTypeDef = TypedDict(
|
|
913
894
|
"_RequiredUpdateUserAccessLoggingSettingsRequestRequestTypeDef",
|
|
914
895
|
{
|
|
@@ -1093,6 +1074,27 @@ UpdateTrustStoreResponseTypeDef = TypedDict(
|
|
|
1093
1074
|
},
|
|
1094
1075
|
)
|
|
1095
1076
|
|
|
1077
|
+
_RequiredUpdateTrustStoreRequestRequestTypeDef = TypedDict(
|
|
1078
|
+
"_RequiredUpdateTrustStoreRequestRequestTypeDef",
|
|
1079
|
+
{
|
|
1080
|
+
"trustStoreArn": str,
|
|
1081
|
+
},
|
|
1082
|
+
)
|
|
1083
|
+
_OptionalUpdateTrustStoreRequestRequestTypeDef = TypedDict(
|
|
1084
|
+
"_OptionalUpdateTrustStoreRequestRequestTypeDef",
|
|
1085
|
+
{
|
|
1086
|
+
"certificatesToAdd": Sequence[BlobTypeDef],
|
|
1087
|
+
"certificatesToDelete": Sequence[str],
|
|
1088
|
+
"clientToken": str,
|
|
1089
|
+
},
|
|
1090
|
+
total=False,
|
|
1091
|
+
)
|
|
1092
|
+
|
|
1093
|
+
class UpdateTrustStoreRequestRequestTypeDef(
|
|
1094
|
+
_RequiredUpdateTrustStoreRequestRequestTypeDef, _OptionalUpdateTrustStoreRequestRequestTypeDef
|
|
1095
|
+
):
|
|
1096
|
+
pass
|
|
1097
|
+
|
|
1096
1098
|
ListBrowserSettingsResponseTypeDef = TypedDict(
|
|
1097
1099
|
"ListBrowserSettingsResponseTypeDef",
|
|
1098
1100
|
{
|
|
@@ -1199,7 +1201,7 @@ CreatePortalRequestRequestTypeDef = TypedDict(
|
|
|
1199
1201
|
_RequiredCreateTrustStoreRequestRequestTypeDef = TypedDict(
|
|
1200
1202
|
"_RequiredCreateTrustStoreRequestRequestTypeDef",
|
|
1201
1203
|
{
|
|
1202
|
-
"certificateList": Sequence[
|
|
1204
|
+
"certificateList": Sequence[BlobTypeDef],
|
|
1203
1205
|
},
|
|
1204
1206
|
)
|
|
1205
1207
|
_OptionalCreateTrustStoreRequestRequestTypeDef = TypedDict(
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mypy-boto3-workspaces-web
|
|
3
|
-
Version: 1.28.
|
|
4
|
-
Summary: Type annotations for boto3.WorkSpacesWeb 1.28.
|
|
3
|
+
Version: 1.28.16
|
|
4
|
+
Summary: Type annotations for boto3.WorkSpacesWeb 1.28.16 service generated with mypy-boto3-builder 7.17.1
|
|
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
|
|
@@ -9,7 +9,7 @@ License: MIT License
|
|
|
9
9
|
Project-URL: Documentation, https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/
|
|
10
10
|
Project-URL: Source, https://github.com/youtype/mypy_boto3_builder
|
|
11
11
|
Project-URL: Tracker, https://github.com/youtype/mypy_boto3_builder/issues
|
|
12
|
-
Keywords: boto3 workspaces-web type-annotations
|
|
12
|
+
Keywords: boto3 workspaces-web type-annotations botocore mypy typeshed autocomplete
|
|
13
13
|
Classifier: Development Status :: 5 - Production/Stable
|
|
14
14
|
Classifier: Intended Audience :: Developers
|
|
15
15
|
Classifier: Environment :: Console
|
|
@@ -43,7 +43,7 @@ Requires-Dist: typing-extensions (>=4.1.0) ; python_version < "3.9"
|
|
|
43
43
|

|
|
44
44
|
|
|
45
45
|
Type annotations for
|
|
46
|
-
[boto3.WorkSpacesWeb 1.28.
|
|
46
|
+
[boto3.WorkSpacesWeb 1.28.16](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb)
|
|
47
47
|
service compatible with [VSCode](https://code.visualstudio.com/),
|
|
48
48
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
49
49
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -52,7 +52,7 @@ service compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
52
52
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
53
53
|
|
|
54
54
|
Generated by
|
|
55
|
-
[mypy-boto3-builder 7.
|
|
55
|
+
[mypy-boto3-builder 7.17.1](https://github.com/youtype/mypy_boto3_builder).
|
|
56
56
|
|
|
57
57
|
More information can be found on
|
|
58
58
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -78,7 +78,7 @@ See how it helps to find and fix potential bugs:
|
|
|
78
78
|
- [Explicit type annotations](#explicit-type-annotations)
|
|
79
79
|
- [Client annotations](#client-annotations)
|
|
80
80
|
- [Literals](#literals)
|
|
81
|
-
- [
|
|
81
|
+
- [Type definitions](#type-definitions)
|
|
82
82
|
- [How it works](#how-it-works)
|
|
83
83
|
- [What's new](#what's-new)
|
|
84
84
|
- [Implemented features](#implemented-features)
|
|
@@ -299,12 +299,12 @@ def check_value(value: AuthenticationTypeType) -> bool:
|
|
|
299
299
|
...
|
|
300
300
|
```
|
|
301
301
|
|
|
302
|
-
<a id="
|
|
302
|
+
<a id="type-definitions"></a>
|
|
303
303
|
|
|
304
|
-
###
|
|
304
|
+
### Type definitions
|
|
305
305
|
|
|
306
306
|
`mypy_boto3_workspaces_web.type_defs` module contains structures and shapes
|
|
307
|
-
assembled to typed dictionaries for additional type checking.
|
|
307
|
+
assembled to typed dictionaries and unions for additional type checking.
|
|
308
308
|
|
|
309
309
|
```python
|
|
310
310
|
from mypy_boto3_workspaces_web.type_defs import (
|
|
@@ -315,6 +315,7 @@ from mypy_boto3_workspaces_web.type_defs import (
|
|
|
315
315
|
AssociateTrustStoreRequestRequestTypeDef,
|
|
316
316
|
AssociateUserAccessLoggingSettingsRequestRequestTypeDef,
|
|
317
317
|
AssociateUserSettingsRequestRequestTypeDef,
|
|
318
|
+
BlobTypeDef,
|
|
318
319
|
BrowserSettingsSummaryTypeDef,
|
|
319
320
|
BrowserSettingsTypeDef,
|
|
320
321
|
CertificateSummaryTypeDef,
|
|
@@ -374,7 +375,6 @@ from mypy_boto3_workspaces_web.type_defs import (
|
|
|
374
375
|
UpdateIdentityProviderRequestRequestTypeDef,
|
|
375
376
|
UpdateNetworkSettingsRequestRequestTypeDef,
|
|
376
377
|
UpdatePortalRequestRequestTypeDef,
|
|
377
|
-
UpdateTrustStoreRequestRequestTypeDef,
|
|
378
378
|
UpdateUserAccessLoggingSettingsRequestRequestTypeDef,
|
|
379
379
|
UpdateUserSettingsRequestRequestTypeDef,
|
|
380
380
|
AssociateBrowserSettingsResponseTypeDef,
|
|
@@ -393,6 +393,7 @@ from mypy_boto3_workspaces_web.type_defs import (
|
|
|
393
393
|
CreateUserSettingsResponseTypeDef,
|
|
394
394
|
GetPortalServiceProviderMetadataResponseTypeDef,
|
|
395
395
|
UpdateTrustStoreResponseTypeDef,
|
|
396
|
+
UpdateTrustStoreRequestRequestTypeDef,
|
|
396
397
|
ListBrowserSettingsResponseTypeDef,
|
|
397
398
|
GetBrowserSettingsResponseTypeDef,
|
|
398
399
|
UpdateBrowserSettingsResponseTypeDef,
|
|
@@ -432,7 +433,7 @@ from mypy_boto3_workspaces_web.type_defs import (
|
|
|
432
433
|
)
|
|
433
434
|
|
|
434
435
|
|
|
435
|
-
def
|
|
436
|
+
def get_value() -> AssociateBrowserSettingsRequestRequestTypeDef:
|
|
436
437
|
return {...}
|
|
437
438
|
```
|
|
438
439
|
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
mypy_boto3_workspaces_web/__init__.py,sha256=TLFSkH6ozzTHeXVvV_C2WAVbKnoHgGv5jjxGT_x94bo,424
|
|
2
|
+
mypy_boto3_workspaces_web/__init__.pyi,sha256=7L_xIWh-ihCKqEHDJauXGx-KcoPhBYuQiduaqThFaFs,423
|
|
3
|
+
mypy_boto3_workspaces_web/__main__.py,sha256=r6ApxYq5Cp9UB7VDKIhpSEb7dmDZtULNH3lNt1Rju1A,933
|
|
4
|
+
mypy_boto3_workspaces_web/client.py,sha256=uJvrerN6rd4b4oPyb4MvREm31U3tIytFFaI5Z1rHZOU,37872
|
|
5
|
+
mypy_boto3_workspaces_web/client.pyi,sha256=oS4AVJtw6ZKagtasdlCzbkZQFRIl1s_wgmFnjM-JItg,37808
|
|
6
|
+
mypy_boto3_workspaces_web/literals.py,sha256=tVyTQvg7GF8ZYP3UfDHfNsljPuLG1xgOXwDdaUUaPjQ,8417
|
|
7
|
+
mypy_boto3_workspaces_web/literals.pyi,sha256=NCYNdhUmw_wE8Iy-74-3hBYbTS0U0lm5-B-_zElF4wc,8415
|
|
8
|
+
mypy_boto3_workspaces_web/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
+
mypy_boto3_workspaces_web/type_defs.py,sha256=8tx56z6e15XBZRj6P1oaPTB5wxd41UKCZuTLA8L446w,41319
|
|
10
|
+
mypy_boto3_workspaces_web/type_defs.pyi,sha256=0a97HqGx8TaCgPW0E2XZhO1hhx07z9q6ooa6x11rKJU,41268
|
|
11
|
+
mypy_boto3_workspaces_web/version.py,sha256=U4Nyk6u0IVhAYJrhlcsuZD7DSN47rKXZPJeLZmksuE0,61
|
|
12
|
+
mypy_boto3_workspaces_web-1.28.16.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
|
|
13
|
+
mypy_boto3_workspaces_web-1.28.16.dist-info/METADATA,sha256=HUaWHdv1TJwEMBGMQvITf_BnDW4CYEDQEqCVDF8q5oU,17520
|
|
14
|
+
mypy_boto3_workspaces_web-1.28.16.dist-info/WHEEL,sha256=AtBG6SXL3KF_v0NxLf0ehyVOh0cold-JbJYXNGorC6Q,92
|
|
15
|
+
mypy_boto3_workspaces_web-1.28.16.dist-info/top_level.txt,sha256=uVGqyFrLYAjBajviVBauQuxxcr6knw6ba2vzvsNkrGg,26
|
|
16
|
+
mypy_boto3_workspaces_web-1.28.16.dist-info/RECORD,,
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
mypy_boto3_workspaces_web/__init__.py,sha256=TLFSkH6ozzTHeXVvV_C2WAVbKnoHgGv5jjxGT_x94bo,424
|
|
2
|
-
mypy_boto3_workspaces_web/__init__.pyi,sha256=7L_xIWh-ihCKqEHDJauXGx-KcoPhBYuQiduaqThFaFs,423
|
|
3
|
-
mypy_boto3_workspaces_web/__main__.py,sha256=79RsF0Ymotff95H-myftTdFiL_lgsIqJoLJCpm_VfEw,945
|
|
4
|
-
mypy_boto3_workspaces_web/client.py,sha256=sRxK07yK8u4pjOLFqd4yv26xHsdULeASqT-VowBs09k,37970
|
|
5
|
-
mypy_boto3_workspaces_web/client.pyi,sha256=7V9Ur4YuttobQ71gQzLkGY1H0ZZ99RNSv2HYFwdKdzM,37906
|
|
6
|
-
mypy_boto3_workspaces_web/literals.py,sha256=tVyTQvg7GF8ZYP3UfDHfNsljPuLG1xgOXwDdaUUaPjQ,8417
|
|
7
|
-
mypy_boto3_workspaces_web/literals.pyi,sha256=NCYNdhUmw_wE8Iy-74-3hBYbTS0U0lm5-B-_zElF4wc,8415
|
|
8
|
-
mypy_boto3_workspaces_web/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
mypy_boto3_workspaces_web/type_defs.py,sha256=5hpsZKGNDoxETcK4B5RFpsorP9wAAW2gPillgmW3ZeI,41306
|
|
10
|
-
mypy_boto3_workspaces_web/type_defs.pyi,sha256=lbpxzefeJaT4k6ZNItGUrrfihscED00ItNdhzPknrn0,41255
|
|
11
|
-
mypy_boto3_workspaces_web/version.py,sha256=r8FecTF_mU12tcaFlh_rWegIHI_YLM7zyv624C7W3XM,67
|
|
12
|
-
mypy_boto3_workspaces_web-1.28.15.post1.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
|
|
13
|
-
mypy_boto3_workspaces_web-1.28.15.post1.dist-info/METADATA,sha256=jfv9P59aFnb32tYzemJFmoGBFrPuyKZCw7gLXmP60X8,17513
|
|
14
|
-
mypy_boto3_workspaces_web-1.28.15.post1.dist-info/WHEEL,sha256=AtBG6SXL3KF_v0NxLf0ehyVOh0cold-JbJYXNGorC6Q,92
|
|
15
|
-
mypy_boto3_workspaces_web-1.28.15.post1.dist-info/top_level.txt,sha256=uVGqyFrLYAjBajviVBauQuxxcr6knw6ba2vzvsNkrGg,26
|
|
16
|
-
mypy_boto3_workspaces_web-1.28.15.post1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|