mypy-boto3-workspaces-web 1.28.15.post1__py3-none-any.whl → 1.28.36__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 +9 -4
- mypy_boto3_workspaces_web/client.pyi +9 -4
- mypy_boto3_workspaces_web/literals.py +1 -1
- mypy_boto3_workspaces_web/literals.pyi +1 -1
- mypy_boto3_workspaces_web/type_defs.py +305 -613
- mypy_boto3_workspaces_web/type_defs.pyi +305 -563
- mypy_boto3_workspaces_web/version.py +1 -1
- {mypy_boto3_workspaces_web-1.28.15.post1.dist-info → mypy_boto3_workspaces_web-1.28.36.dist-info}/METADATA +21 -148
- mypy_boto3_workspaces_web-1.28.36.dist-info/RECORD +16 -0
- {mypy_boto3_workspaces_web-1.28.15.post1.dist-info → mypy_boto3_workspaces_web-1.28.36.dist-info}/WHEEL +1 -1
- 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.36.dist-info}/LICENSE +0 -0
- {mypy_boto3_workspaces_web-1.28.15.post1.dist-info → mypy_boto3_workspaces_web-1.28.36.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.36\nVersion: 1.28.36\nBuilder"
|
|
13
|
+
" version: 7.18.0\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.36")
|
|
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,8 @@ from .type_defs import (
|
|
|
26
25
|
AssociateTrustStoreResponseTypeDef,
|
|
27
26
|
AssociateUserAccessLoggingSettingsResponseTypeDef,
|
|
28
27
|
AssociateUserSettingsResponseTypeDef,
|
|
28
|
+
BlobTypeDef,
|
|
29
|
+
CookieSynchronizationConfigurationTypeDef,
|
|
29
30
|
CreateBrowserSettingsResponseTypeDef,
|
|
30
31
|
CreateIdentityProviderResponseTypeDef,
|
|
31
32
|
CreateIpAccessSettingsResponseTypeDef,
|
|
@@ -268,7 +269,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
268
269
|
def create_trust_store(
|
|
269
270
|
self,
|
|
270
271
|
*,
|
|
271
|
-
certificateList: Sequence[
|
|
272
|
+
certificateList: Sequence[BlobTypeDef],
|
|
272
273
|
clientToken: str = ...,
|
|
273
274
|
tags: Sequence[TagTypeDef] = ...
|
|
274
275
|
) -> CreateTrustStoreResponseTypeDef:
|
|
@@ -298,7 +299,10 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
298
299
|
pasteAllowed: EnabledTypeType,
|
|
299
300
|
printAllowed: EnabledTypeType,
|
|
300
301
|
uploadAllowed: EnabledTypeType,
|
|
302
|
+
additionalEncryptionContext: Mapping[str, str] = ...,
|
|
301
303
|
clientToken: str = ...,
|
|
304
|
+
cookieSynchronizationConfiguration: CookieSynchronizationConfigurationTypeDef = ...,
|
|
305
|
+
customerManagedKey: str = ...,
|
|
302
306
|
disconnectTimeoutInMinutes: int = ...,
|
|
303
307
|
idleDisconnectTimeoutInMinutes: int = ...,
|
|
304
308
|
tags: Sequence[TagTypeDef] = ...
|
|
@@ -720,7 +724,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
720
724
|
self,
|
|
721
725
|
*,
|
|
722
726
|
trustStoreArn: str,
|
|
723
|
-
certificatesToAdd: Sequence[
|
|
727
|
+
certificatesToAdd: Sequence[BlobTypeDef] = ...,
|
|
724
728
|
certificatesToDelete: Sequence[str] = ...,
|
|
725
729
|
clientToken: str = ...
|
|
726
730
|
) -> UpdateTrustStoreResponseTypeDef:
|
|
@@ -750,6 +754,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
750
754
|
*,
|
|
751
755
|
userSettingsArn: str,
|
|
752
756
|
clientToken: str = ...,
|
|
757
|
+
cookieSynchronizationConfiguration: CookieSynchronizationConfigurationTypeDef = ...,
|
|
753
758
|
copyAllowed: EnabledTypeType = ...,
|
|
754
759
|
disconnectTimeoutInMinutes: int = ...,
|
|
755
760
|
downloadAllowed: EnabledTypeType = ...,
|
|
@@ -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,8 @@ from .type_defs import (
|
|
|
26
25
|
AssociateTrustStoreResponseTypeDef,
|
|
27
26
|
AssociateUserAccessLoggingSettingsResponseTypeDef,
|
|
28
27
|
AssociateUserSettingsResponseTypeDef,
|
|
28
|
+
BlobTypeDef,
|
|
29
|
+
CookieSynchronizationConfigurationTypeDef,
|
|
29
30
|
CreateBrowserSettingsResponseTypeDef,
|
|
30
31
|
CreateIdentityProviderResponseTypeDef,
|
|
31
32
|
CreateIpAccessSettingsResponseTypeDef,
|
|
@@ -251,7 +252,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
251
252
|
def create_trust_store(
|
|
252
253
|
self,
|
|
253
254
|
*,
|
|
254
|
-
certificateList: Sequence[
|
|
255
|
+
certificateList: Sequence[BlobTypeDef],
|
|
255
256
|
clientToken: str = ...,
|
|
256
257
|
tags: Sequence[TagTypeDef] = ...
|
|
257
258
|
) -> CreateTrustStoreResponseTypeDef:
|
|
@@ -279,7 +280,10 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
279
280
|
pasteAllowed: EnabledTypeType,
|
|
280
281
|
printAllowed: EnabledTypeType,
|
|
281
282
|
uploadAllowed: EnabledTypeType,
|
|
283
|
+
additionalEncryptionContext: Mapping[str, str] = ...,
|
|
282
284
|
clientToken: str = ...,
|
|
285
|
+
cookieSynchronizationConfiguration: CookieSynchronizationConfigurationTypeDef = ...,
|
|
286
|
+
customerManagedKey: str = ...,
|
|
283
287
|
disconnectTimeoutInMinutes: int = ...,
|
|
284
288
|
idleDisconnectTimeoutInMinutes: int = ...,
|
|
285
289
|
tags: Sequence[TagTypeDef] = ...
|
|
@@ -658,7 +662,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
658
662
|
self,
|
|
659
663
|
*,
|
|
660
664
|
trustStoreArn: str,
|
|
661
|
-
certificatesToAdd: Sequence[
|
|
665
|
+
certificatesToAdd: Sequence[BlobTypeDef] = ...,
|
|
662
666
|
certificatesToDelete: Sequence[str] = ...,
|
|
663
667
|
clientToken: str = ...
|
|
664
668
|
) -> UpdateTrustStoreResponseTypeDef:
|
|
@@ -686,6 +690,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
686
690
|
*,
|
|
687
691
|
userSettingsArn: str,
|
|
688
692
|
clientToken: str = ...,
|
|
693
|
+
cookieSynchronizationConfiguration: CookieSynchronizationConfigurationTypeDef = ...,
|
|
689
694
|
copyAllowed: EnabledTypeType = ...,
|
|
690
695
|
disconnectTimeoutInMinutes: int = ...,
|
|
691
696
|
downloadAllowed: EnabledTypeType = ...,
|