mypy-boto3-workspaces-web 1.34.90__py3-none-any.whl → 1.34.132__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 +4 -4
- mypy_boto3_workspaces_web/client.py +6 -3
- mypy_boto3_workspaces_web/client.pyi +6 -3
- mypy_boto3_workspaces_web/literals.py +5 -3
- mypy_boto3_workspaces_web/literals.pyi +5 -3
- mypy_boto3_workspaces_web/type_defs.py +59 -42
- mypy_boto3_workspaces_web/type_defs.pyi +59 -42
- mypy_boto3_workspaces_web/version.py +1 -1
- {mypy_boto3_workspaces_web-1.34.90.dist-info → mypy_boto3_workspaces_web-1.34.132.dist-info}/METADATA +4 -4
- mypy_boto3_workspaces_web-1.34.132.dist-info/RECORD +16 -0
- {mypy_boto3_workspaces_web-1.34.90.dist-info → mypy_boto3_workspaces_web-1.34.132.dist-info}/WHEEL +1 -1
- mypy_boto3_workspaces_web-1.34.90.dist-info/RECORD +0 -16
- {mypy_boto3_workspaces_web-1.34.90.dist-info → mypy_boto3_workspaces_web-1.34.132.dist-info}/LICENSE +0 -0
- {mypy_boto3_workspaces_web-1.34.90.dist-info → mypy_boto3_workspaces_web-1.34.132.dist-info}/top_level.txt +0 -0
|
@@ -10,9 +10,9 @@ def print_info() -> None:
|
|
|
10
10
|
Print package info to stdout.
|
|
11
11
|
"""
|
|
12
12
|
print(
|
|
13
|
-
"Type annotations for boto3.WorkSpacesWeb 1.34.
|
|
14
|
-
"Version: 1.34.
|
|
15
|
-
"Builder version: 7.
|
|
13
|
+
"Type annotations for boto3.WorkSpacesWeb 1.34.132\n"
|
|
14
|
+
"Version: 1.34.132\n"
|
|
15
|
+
"Builder version: 7.24.0\n"
|
|
16
16
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web//\n"
|
|
17
17
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb\n"
|
|
18
18
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
@@ -24,7 +24,7 @@ def print_version() -> None:
|
|
|
24
24
|
"""
|
|
25
25
|
Print package version to stdout.
|
|
26
26
|
"""
|
|
27
|
-
print("1.34.
|
|
27
|
+
print("1.34.132")
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
def main() -> None:
|
|
@@ -32,7 +32,7 @@ from .type_defs import (
|
|
|
32
32
|
AssociateUserAccessLoggingSettingsResponseTypeDef,
|
|
33
33
|
AssociateUserSettingsResponseTypeDef,
|
|
34
34
|
BlobTypeDef,
|
|
35
|
-
|
|
35
|
+
CookieSynchronizationConfigurationUnionTypeDef,
|
|
36
36
|
CreateBrowserSettingsResponseTypeDef,
|
|
37
37
|
CreateIdentityProviderResponseTypeDef,
|
|
38
38
|
CreateIpAccessSettingsResponseTypeDef,
|
|
@@ -213,6 +213,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
213
213
|
identityProviderType: IdentityProviderTypeType,
|
|
214
214
|
portalArn: str,
|
|
215
215
|
clientToken: str = ...,
|
|
216
|
+
tags: Sequence[TagTypeDef] = ...,
|
|
216
217
|
) -> CreateIdentityProviderResponseTypeDef:
|
|
217
218
|
"""
|
|
218
219
|
Creates an identity provider resource that is then associated with a web portal.
|
|
@@ -310,8 +311,9 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
310
311
|
uploadAllowed: EnabledTypeType,
|
|
311
312
|
additionalEncryptionContext: Mapping[str, str] = ...,
|
|
312
313
|
clientToken: str = ...,
|
|
313
|
-
cookieSynchronizationConfiguration:
|
|
314
|
+
cookieSynchronizationConfiguration: CookieSynchronizationConfigurationUnionTypeDef = ...,
|
|
314
315
|
customerManagedKey: str = ...,
|
|
316
|
+
deepLinkAllowed: EnabledTypeType = ...,
|
|
315
317
|
disconnectTimeoutInMinutes: int = ...,
|
|
316
318
|
idleDisconnectTimeoutInMinutes: int = ...,
|
|
317
319
|
tags: Sequence[TagTypeDef] = ...,
|
|
@@ -765,8 +767,9 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
765
767
|
*,
|
|
766
768
|
userSettingsArn: str,
|
|
767
769
|
clientToken: str = ...,
|
|
768
|
-
cookieSynchronizationConfiguration:
|
|
770
|
+
cookieSynchronizationConfiguration: CookieSynchronizationConfigurationUnionTypeDef = ...,
|
|
769
771
|
copyAllowed: EnabledTypeType = ...,
|
|
772
|
+
deepLinkAllowed: EnabledTypeType = ...,
|
|
770
773
|
disconnectTimeoutInMinutes: int = ...,
|
|
771
774
|
downloadAllowed: EnabledTypeType = ...,
|
|
772
775
|
idleDisconnectTimeoutInMinutes: int = ...,
|
|
@@ -32,7 +32,7 @@ from .type_defs import (
|
|
|
32
32
|
AssociateUserAccessLoggingSettingsResponseTypeDef,
|
|
33
33
|
AssociateUserSettingsResponseTypeDef,
|
|
34
34
|
BlobTypeDef,
|
|
35
|
-
|
|
35
|
+
CookieSynchronizationConfigurationUnionTypeDef,
|
|
36
36
|
CreateBrowserSettingsResponseTypeDef,
|
|
37
37
|
CreateIdentityProviderResponseTypeDef,
|
|
38
38
|
CreateIpAccessSettingsResponseTypeDef,
|
|
@@ -210,6 +210,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
210
210
|
identityProviderType: IdentityProviderTypeType,
|
|
211
211
|
portalArn: str,
|
|
212
212
|
clientToken: str = ...,
|
|
213
|
+
tags: Sequence[TagTypeDef] = ...,
|
|
213
214
|
) -> CreateIdentityProviderResponseTypeDef:
|
|
214
215
|
"""
|
|
215
216
|
Creates an identity provider resource that is then associated with a web portal.
|
|
@@ -307,8 +308,9 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
307
308
|
uploadAllowed: EnabledTypeType,
|
|
308
309
|
additionalEncryptionContext: Mapping[str, str] = ...,
|
|
309
310
|
clientToken: str = ...,
|
|
310
|
-
cookieSynchronizationConfiguration:
|
|
311
|
+
cookieSynchronizationConfiguration: CookieSynchronizationConfigurationUnionTypeDef = ...,
|
|
311
312
|
customerManagedKey: str = ...,
|
|
313
|
+
deepLinkAllowed: EnabledTypeType = ...,
|
|
312
314
|
disconnectTimeoutInMinutes: int = ...,
|
|
313
315
|
idleDisconnectTimeoutInMinutes: int = ...,
|
|
314
316
|
tags: Sequence[TagTypeDef] = ...,
|
|
@@ -762,8 +764,9 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
762
764
|
*,
|
|
763
765
|
userSettingsArn: str,
|
|
764
766
|
clientToken: str = ...,
|
|
765
|
-
cookieSynchronizationConfiguration:
|
|
767
|
+
cookieSynchronizationConfiguration: CookieSynchronizationConfigurationUnionTypeDef = ...,
|
|
766
768
|
copyAllowed: EnabledTypeType = ...,
|
|
769
|
+
deepLinkAllowed: EnabledTypeType = ...,
|
|
767
770
|
disconnectTimeoutInMinutes: int = ...,
|
|
768
771
|
downloadAllowed: EnabledTypeType = ...,
|
|
769
772
|
idleDisconnectTimeoutInMinutes: int = ...,
|
|
@@ -48,7 +48,6 @@ ServiceName = Literal[
|
|
|
48
48
|
"account",
|
|
49
49
|
"acm",
|
|
50
50
|
"acm-pca",
|
|
51
|
-
"alexaforbusiness",
|
|
52
51
|
"amp",
|
|
53
52
|
"amplify",
|
|
54
53
|
"amplifybackend",
|
|
@@ -63,11 +62,13 @@ ServiceName = Literal[
|
|
|
63
62
|
"appintegrations",
|
|
64
63
|
"application-autoscaling",
|
|
65
64
|
"application-insights",
|
|
65
|
+
"application-signals",
|
|
66
66
|
"applicationcostprofiler",
|
|
67
67
|
"appmesh",
|
|
68
68
|
"apprunner",
|
|
69
69
|
"appstream",
|
|
70
70
|
"appsync",
|
|
71
|
+
"apptest",
|
|
71
72
|
"arc-zonal-shift",
|
|
72
73
|
"artifact",
|
|
73
74
|
"athena",
|
|
@@ -77,7 +78,6 @@ ServiceName = Literal[
|
|
|
77
78
|
"b2bi",
|
|
78
79
|
"backup",
|
|
79
80
|
"backup-gateway",
|
|
80
|
-
"backupstorage",
|
|
81
81
|
"batch",
|
|
82
82
|
"bcm-data-exports",
|
|
83
83
|
"bedrock",
|
|
@@ -203,7 +203,6 @@ ServiceName = Literal[
|
|
|
203
203
|
"guardduty",
|
|
204
204
|
"health",
|
|
205
205
|
"healthlake",
|
|
206
|
-
"honeycode",
|
|
207
206
|
"iam",
|
|
208
207
|
"identitystore",
|
|
209
208
|
"imagebuilder",
|
|
@@ -264,6 +263,7 @@ ServiceName = Literal[
|
|
|
264
263
|
"m2",
|
|
265
264
|
"machinelearning",
|
|
266
265
|
"macie2",
|
|
266
|
+
"mailmanager",
|
|
267
267
|
"managedblockchain",
|
|
268
268
|
"managedblockchain-query",
|
|
269
269
|
"marketplace-agreement",
|
|
@@ -313,6 +313,7 @@ ServiceName = Literal[
|
|
|
313
313
|
"payment-cryptography",
|
|
314
314
|
"payment-cryptography-data",
|
|
315
315
|
"pca-connector-ad",
|
|
316
|
+
"pca-connector-scep",
|
|
316
317
|
"personalize",
|
|
317
318
|
"personalize-events",
|
|
318
319
|
"personalize-runtime",
|
|
@@ -402,6 +403,7 @@ ServiceName = Literal[
|
|
|
402
403
|
"support-app",
|
|
403
404
|
"swf",
|
|
404
405
|
"synthetics",
|
|
406
|
+
"taxsettings",
|
|
405
407
|
"textract",
|
|
406
408
|
"timestream-influxdb",
|
|
407
409
|
"timestream-query",
|
|
@@ -48,7 +48,6 @@ ServiceName = Literal[
|
|
|
48
48
|
"account",
|
|
49
49
|
"acm",
|
|
50
50
|
"acm-pca",
|
|
51
|
-
"alexaforbusiness",
|
|
52
51
|
"amp",
|
|
53
52
|
"amplify",
|
|
54
53
|
"amplifybackend",
|
|
@@ -63,11 +62,13 @@ ServiceName = Literal[
|
|
|
63
62
|
"appintegrations",
|
|
64
63
|
"application-autoscaling",
|
|
65
64
|
"application-insights",
|
|
65
|
+
"application-signals",
|
|
66
66
|
"applicationcostprofiler",
|
|
67
67
|
"appmesh",
|
|
68
68
|
"apprunner",
|
|
69
69
|
"appstream",
|
|
70
70
|
"appsync",
|
|
71
|
+
"apptest",
|
|
71
72
|
"arc-zonal-shift",
|
|
72
73
|
"artifact",
|
|
73
74
|
"athena",
|
|
@@ -77,7 +78,6 @@ ServiceName = Literal[
|
|
|
77
78
|
"b2bi",
|
|
78
79
|
"backup",
|
|
79
80
|
"backup-gateway",
|
|
80
|
-
"backupstorage",
|
|
81
81
|
"batch",
|
|
82
82
|
"bcm-data-exports",
|
|
83
83
|
"bedrock",
|
|
@@ -203,7 +203,6 @@ ServiceName = Literal[
|
|
|
203
203
|
"guardduty",
|
|
204
204
|
"health",
|
|
205
205
|
"healthlake",
|
|
206
|
-
"honeycode",
|
|
207
206
|
"iam",
|
|
208
207
|
"identitystore",
|
|
209
208
|
"imagebuilder",
|
|
@@ -264,6 +263,7 @@ ServiceName = Literal[
|
|
|
264
263
|
"m2",
|
|
265
264
|
"machinelearning",
|
|
266
265
|
"macie2",
|
|
266
|
+
"mailmanager",
|
|
267
267
|
"managedblockchain",
|
|
268
268
|
"managedblockchain-query",
|
|
269
269
|
"marketplace-agreement",
|
|
@@ -313,6 +313,7 @@ ServiceName = Literal[
|
|
|
313
313
|
"payment-cryptography",
|
|
314
314
|
"payment-cryptography-data",
|
|
315
315
|
"pca-connector-ad",
|
|
316
|
+
"pca-connector-scep",
|
|
316
317
|
"personalize",
|
|
317
318
|
"personalize-events",
|
|
318
319
|
"personalize-runtime",
|
|
@@ -402,6 +403,7 @@ ServiceName = Literal[
|
|
|
402
403
|
"support-app",
|
|
403
404
|
"swf",
|
|
404
405
|
"synthetics",
|
|
406
|
+
"taxsettings",
|
|
405
407
|
"textract",
|
|
406
408
|
"timestream-influxdb",
|
|
407
409
|
"timestream-query",
|
|
@@ -54,7 +54,6 @@ __all__ = (
|
|
|
54
54
|
"CertificateTypeDef",
|
|
55
55
|
"CookieSpecificationTypeDef",
|
|
56
56
|
"TagTypeDef",
|
|
57
|
-
"CreateIdentityProviderRequestRequestTypeDef",
|
|
58
57
|
"IpRuleTypeDef",
|
|
59
58
|
"DeleteBrowserSettingsRequestRequestTypeDef",
|
|
60
59
|
"DeleteIdentityProviderRequestRequestTypeDef",
|
|
@@ -129,8 +128,10 @@ __all__ = (
|
|
|
129
128
|
"UpdateBrowserSettingsResponseTypeDef",
|
|
130
129
|
"ListTrustStoreCertificatesResponseTypeDef",
|
|
131
130
|
"GetTrustStoreCertificateResponseTypeDef",
|
|
131
|
+
"CookieSynchronizationConfigurationOutputTypeDef",
|
|
132
132
|
"CookieSynchronizationConfigurationTypeDef",
|
|
133
133
|
"CreateBrowserSettingsRequestRequestTypeDef",
|
|
134
|
+
"CreateIdentityProviderRequestRequestTypeDef",
|
|
134
135
|
"CreateNetworkSettingsRequestRequestTypeDef",
|
|
135
136
|
"CreatePortalRequestRequestTypeDef",
|
|
136
137
|
"CreateTrustStoreRequestRequestTypeDef",
|
|
@@ -155,10 +156,11 @@ __all__ = (
|
|
|
155
156
|
"ListPortalsResponseTypeDef",
|
|
156
157
|
"ListTrustStoresResponseTypeDef",
|
|
157
158
|
"ListUserAccessLoggingSettingsResponseTypeDef",
|
|
158
|
-
"CreateUserSettingsRequestRequestTypeDef",
|
|
159
|
-
"UpdateUserSettingsRequestRequestTypeDef",
|
|
160
159
|
"UserSettingsSummaryTypeDef",
|
|
161
160
|
"UserSettingsTypeDef",
|
|
161
|
+
"CookieSynchronizationConfigurationUnionTypeDef",
|
|
162
|
+
"CreateUserSettingsRequestRequestTypeDef",
|
|
163
|
+
"UpdateUserSettingsRequestRequestTypeDef",
|
|
162
164
|
"GetIpAccessSettingsResponseTypeDef",
|
|
163
165
|
"UpdateIpAccessSettingsResponseTypeDef",
|
|
164
166
|
"ListUserSettingsResponseTypeDef",
|
|
@@ -271,16 +273,6 @@ TagTypeDef = TypedDict(
|
|
|
271
273
|
"Value": str,
|
|
272
274
|
},
|
|
273
275
|
)
|
|
274
|
-
CreateIdentityProviderRequestRequestTypeDef = TypedDict(
|
|
275
|
-
"CreateIdentityProviderRequestRequestTypeDef",
|
|
276
|
-
{
|
|
277
|
-
"identityProviderDetails": Mapping[str, str],
|
|
278
|
-
"identityProviderName": str,
|
|
279
|
-
"identityProviderType": IdentityProviderTypeType,
|
|
280
|
-
"portalArn": str,
|
|
281
|
-
"clientToken": NotRequired[str],
|
|
282
|
-
},
|
|
283
|
-
)
|
|
284
276
|
IpRuleTypeDef = TypedDict(
|
|
285
277
|
"IpRuleTypeDef",
|
|
286
278
|
{
|
|
@@ -841,6 +833,13 @@ GetTrustStoreCertificateResponseTypeDef = TypedDict(
|
|
|
841
833
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
842
834
|
},
|
|
843
835
|
)
|
|
836
|
+
CookieSynchronizationConfigurationOutputTypeDef = TypedDict(
|
|
837
|
+
"CookieSynchronizationConfigurationOutputTypeDef",
|
|
838
|
+
{
|
|
839
|
+
"allowlist": List[CookieSpecificationTypeDef],
|
|
840
|
+
"blocklist": NotRequired[List[CookieSpecificationTypeDef]],
|
|
841
|
+
},
|
|
842
|
+
)
|
|
844
843
|
CookieSynchronizationConfigurationTypeDef = TypedDict(
|
|
845
844
|
"CookieSynchronizationConfigurationTypeDef",
|
|
846
845
|
{
|
|
@@ -858,6 +857,17 @@ CreateBrowserSettingsRequestRequestTypeDef = TypedDict(
|
|
|
858
857
|
"tags": NotRequired[Sequence[TagTypeDef]],
|
|
859
858
|
},
|
|
860
859
|
)
|
|
860
|
+
CreateIdentityProviderRequestRequestTypeDef = TypedDict(
|
|
861
|
+
"CreateIdentityProviderRequestRequestTypeDef",
|
|
862
|
+
{
|
|
863
|
+
"identityProviderDetails": Mapping[str, str],
|
|
864
|
+
"identityProviderName": str,
|
|
865
|
+
"identityProviderType": IdentityProviderTypeType,
|
|
866
|
+
"portalArn": str,
|
|
867
|
+
"clientToken": NotRequired[str],
|
|
868
|
+
"tags": NotRequired[Sequence[TagTypeDef]],
|
|
869
|
+
},
|
|
870
|
+
)
|
|
861
871
|
CreateNetworkSettingsRequestRequestTypeDef = TypedDict(
|
|
862
872
|
"CreateNetworkSettingsRequestRequestTypeDef",
|
|
863
873
|
{
|
|
@@ -1058,34 +1068,35 @@ ListUserAccessLoggingSettingsResponseTypeDef = TypedDict(
|
|
|
1058
1068
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1059
1069
|
},
|
|
1060
1070
|
)
|
|
1061
|
-
|
|
1062
|
-
"
|
|
1071
|
+
UserSettingsSummaryTypeDef = TypedDict(
|
|
1072
|
+
"UserSettingsSummaryTypeDef",
|
|
1063
1073
|
{
|
|
1064
|
-
"
|
|
1065
|
-
"downloadAllowed": EnabledTypeType,
|
|
1066
|
-
"pasteAllowed": EnabledTypeType,
|
|
1067
|
-
"printAllowed": EnabledTypeType,
|
|
1068
|
-
"uploadAllowed": EnabledTypeType,
|
|
1069
|
-
"additionalEncryptionContext": NotRequired[Mapping[str, str]],
|
|
1070
|
-
"clientToken": NotRequired[str],
|
|
1074
|
+
"userSettingsArn": str,
|
|
1071
1075
|
"cookieSynchronizationConfiguration": NotRequired[
|
|
1072
|
-
|
|
1076
|
+
CookieSynchronizationConfigurationOutputTypeDef
|
|
1073
1077
|
],
|
|
1074
|
-
"
|
|
1078
|
+
"copyAllowed": NotRequired[EnabledTypeType],
|
|
1079
|
+
"deepLinkAllowed": NotRequired[EnabledTypeType],
|
|
1075
1080
|
"disconnectTimeoutInMinutes": NotRequired[int],
|
|
1081
|
+
"downloadAllowed": NotRequired[EnabledTypeType],
|
|
1076
1082
|
"idleDisconnectTimeoutInMinutes": NotRequired[int],
|
|
1077
|
-
"
|
|
1083
|
+
"pasteAllowed": NotRequired[EnabledTypeType],
|
|
1084
|
+
"printAllowed": NotRequired[EnabledTypeType],
|
|
1085
|
+
"uploadAllowed": NotRequired[EnabledTypeType],
|
|
1078
1086
|
},
|
|
1079
1087
|
)
|
|
1080
|
-
|
|
1081
|
-
"
|
|
1088
|
+
UserSettingsTypeDef = TypedDict(
|
|
1089
|
+
"UserSettingsTypeDef",
|
|
1082
1090
|
{
|
|
1083
1091
|
"userSettingsArn": str,
|
|
1084
|
-
"
|
|
1092
|
+
"additionalEncryptionContext": NotRequired[Dict[str, str]],
|
|
1093
|
+
"associatedPortalArns": NotRequired[List[str]],
|
|
1085
1094
|
"cookieSynchronizationConfiguration": NotRequired[
|
|
1086
|
-
|
|
1095
|
+
CookieSynchronizationConfigurationOutputTypeDef
|
|
1087
1096
|
],
|
|
1088
1097
|
"copyAllowed": NotRequired[EnabledTypeType],
|
|
1098
|
+
"customerManagedKey": NotRequired[str],
|
|
1099
|
+
"deepLinkAllowed": NotRequired[EnabledTypeType],
|
|
1089
1100
|
"disconnectTimeoutInMinutes": NotRequired[int],
|
|
1090
1101
|
"downloadAllowed": NotRequired[EnabledTypeType],
|
|
1091
1102
|
"idleDisconnectTimeoutInMinutes": NotRequired[int],
|
|
@@ -1094,33 +1105,39 @@ UpdateUserSettingsRequestRequestTypeDef = TypedDict(
|
|
|
1094
1105
|
"uploadAllowed": NotRequired[EnabledTypeType],
|
|
1095
1106
|
},
|
|
1096
1107
|
)
|
|
1097
|
-
|
|
1098
|
-
|
|
1108
|
+
CookieSynchronizationConfigurationUnionTypeDef = Union[
|
|
1109
|
+
CookieSynchronizationConfigurationTypeDef, CookieSynchronizationConfigurationOutputTypeDef
|
|
1110
|
+
]
|
|
1111
|
+
CreateUserSettingsRequestRequestTypeDef = TypedDict(
|
|
1112
|
+
"CreateUserSettingsRequestRequestTypeDef",
|
|
1099
1113
|
{
|
|
1100
|
-
"
|
|
1114
|
+
"copyAllowed": EnabledTypeType,
|
|
1115
|
+
"downloadAllowed": EnabledTypeType,
|
|
1116
|
+
"pasteAllowed": EnabledTypeType,
|
|
1117
|
+
"printAllowed": EnabledTypeType,
|
|
1118
|
+
"uploadAllowed": EnabledTypeType,
|
|
1119
|
+
"additionalEncryptionContext": NotRequired[Mapping[str, str]],
|
|
1120
|
+
"clientToken": NotRequired[str],
|
|
1101
1121
|
"cookieSynchronizationConfiguration": NotRequired[
|
|
1102
1122
|
CookieSynchronizationConfigurationTypeDef
|
|
1103
1123
|
],
|
|
1104
|
-
"
|
|
1124
|
+
"customerManagedKey": NotRequired[str],
|
|
1125
|
+
"deepLinkAllowed": NotRequired[EnabledTypeType],
|
|
1105
1126
|
"disconnectTimeoutInMinutes": NotRequired[int],
|
|
1106
|
-
"downloadAllowed": NotRequired[EnabledTypeType],
|
|
1107
1127
|
"idleDisconnectTimeoutInMinutes": NotRequired[int],
|
|
1108
|
-
"
|
|
1109
|
-
"printAllowed": NotRequired[EnabledTypeType],
|
|
1110
|
-
"uploadAllowed": NotRequired[EnabledTypeType],
|
|
1128
|
+
"tags": NotRequired[Sequence[TagTypeDef]],
|
|
1111
1129
|
},
|
|
1112
1130
|
)
|
|
1113
|
-
|
|
1114
|
-
"
|
|
1131
|
+
UpdateUserSettingsRequestRequestTypeDef = TypedDict(
|
|
1132
|
+
"UpdateUserSettingsRequestRequestTypeDef",
|
|
1115
1133
|
{
|
|
1116
1134
|
"userSettingsArn": str,
|
|
1117
|
-
"
|
|
1118
|
-
"associatedPortalArns": NotRequired[List[str]],
|
|
1135
|
+
"clientToken": NotRequired[str],
|
|
1119
1136
|
"cookieSynchronizationConfiguration": NotRequired[
|
|
1120
1137
|
CookieSynchronizationConfigurationTypeDef
|
|
1121
1138
|
],
|
|
1122
1139
|
"copyAllowed": NotRequired[EnabledTypeType],
|
|
1123
|
-
"
|
|
1140
|
+
"deepLinkAllowed": NotRequired[EnabledTypeType],
|
|
1124
1141
|
"disconnectTimeoutInMinutes": NotRequired[int],
|
|
1125
1142
|
"downloadAllowed": NotRequired[EnabledTypeType],
|
|
1126
1143
|
"idleDisconnectTimeoutInMinutes": NotRequired[int],
|
|
@@ -54,7 +54,6 @@ __all__ = (
|
|
|
54
54
|
"CertificateTypeDef",
|
|
55
55
|
"CookieSpecificationTypeDef",
|
|
56
56
|
"TagTypeDef",
|
|
57
|
-
"CreateIdentityProviderRequestRequestTypeDef",
|
|
58
57
|
"IpRuleTypeDef",
|
|
59
58
|
"DeleteBrowserSettingsRequestRequestTypeDef",
|
|
60
59
|
"DeleteIdentityProviderRequestRequestTypeDef",
|
|
@@ -129,8 +128,10 @@ __all__ = (
|
|
|
129
128
|
"UpdateBrowserSettingsResponseTypeDef",
|
|
130
129
|
"ListTrustStoreCertificatesResponseTypeDef",
|
|
131
130
|
"GetTrustStoreCertificateResponseTypeDef",
|
|
131
|
+
"CookieSynchronizationConfigurationOutputTypeDef",
|
|
132
132
|
"CookieSynchronizationConfigurationTypeDef",
|
|
133
133
|
"CreateBrowserSettingsRequestRequestTypeDef",
|
|
134
|
+
"CreateIdentityProviderRequestRequestTypeDef",
|
|
134
135
|
"CreateNetworkSettingsRequestRequestTypeDef",
|
|
135
136
|
"CreatePortalRequestRequestTypeDef",
|
|
136
137
|
"CreateTrustStoreRequestRequestTypeDef",
|
|
@@ -155,10 +156,11 @@ __all__ = (
|
|
|
155
156
|
"ListPortalsResponseTypeDef",
|
|
156
157
|
"ListTrustStoresResponseTypeDef",
|
|
157
158
|
"ListUserAccessLoggingSettingsResponseTypeDef",
|
|
158
|
-
"CreateUserSettingsRequestRequestTypeDef",
|
|
159
|
-
"UpdateUserSettingsRequestRequestTypeDef",
|
|
160
159
|
"UserSettingsSummaryTypeDef",
|
|
161
160
|
"UserSettingsTypeDef",
|
|
161
|
+
"CookieSynchronizationConfigurationUnionTypeDef",
|
|
162
|
+
"CreateUserSettingsRequestRequestTypeDef",
|
|
163
|
+
"UpdateUserSettingsRequestRequestTypeDef",
|
|
162
164
|
"GetIpAccessSettingsResponseTypeDef",
|
|
163
165
|
"UpdateIpAccessSettingsResponseTypeDef",
|
|
164
166
|
"ListUserSettingsResponseTypeDef",
|
|
@@ -271,16 +273,6 @@ TagTypeDef = TypedDict(
|
|
|
271
273
|
"Value": str,
|
|
272
274
|
},
|
|
273
275
|
)
|
|
274
|
-
CreateIdentityProviderRequestRequestTypeDef = TypedDict(
|
|
275
|
-
"CreateIdentityProviderRequestRequestTypeDef",
|
|
276
|
-
{
|
|
277
|
-
"identityProviderDetails": Mapping[str, str],
|
|
278
|
-
"identityProviderName": str,
|
|
279
|
-
"identityProviderType": IdentityProviderTypeType,
|
|
280
|
-
"portalArn": str,
|
|
281
|
-
"clientToken": NotRequired[str],
|
|
282
|
-
},
|
|
283
|
-
)
|
|
284
276
|
IpRuleTypeDef = TypedDict(
|
|
285
277
|
"IpRuleTypeDef",
|
|
286
278
|
{
|
|
@@ -841,6 +833,13 @@ GetTrustStoreCertificateResponseTypeDef = TypedDict(
|
|
|
841
833
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
842
834
|
},
|
|
843
835
|
)
|
|
836
|
+
CookieSynchronizationConfigurationOutputTypeDef = TypedDict(
|
|
837
|
+
"CookieSynchronizationConfigurationOutputTypeDef",
|
|
838
|
+
{
|
|
839
|
+
"allowlist": List[CookieSpecificationTypeDef],
|
|
840
|
+
"blocklist": NotRequired[List[CookieSpecificationTypeDef]],
|
|
841
|
+
},
|
|
842
|
+
)
|
|
844
843
|
CookieSynchronizationConfigurationTypeDef = TypedDict(
|
|
845
844
|
"CookieSynchronizationConfigurationTypeDef",
|
|
846
845
|
{
|
|
@@ -858,6 +857,17 @@ CreateBrowserSettingsRequestRequestTypeDef = TypedDict(
|
|
|
858
857
|
"tags": NotRequired[Sequence[TagTypeDef]],
|
|
859
858
|
},
|
|
860
859
|
)
|
|
860
|
+
CreateIdentityProviderRequestRequestTypeDef = TypedDict(
|
|
861
|
+
"CreateIdentityProviderRequestRequestTypeDef",
|
|
862
|
+
{
|
|
863
|
+
"identityProviderDetails": Mapping[str, str],
|
|
864
|
+
"identityProviderName": str,
|
|
865
|
+
"identityProviderType": IdentityProviderTypeType,
|
|
866
|
+
"portalArn": str,
|
|
867
|
+
"clientToken": NotRequired[str],
|
|
868
|
+
"tags": NotRequired[Sequence[TagTypeDef]],
|
|
869
|
+
},
|
|
870
|
+
)
|
|
861
871
|
CreateNetworkSettingsRequestRequestTypeDef = TypedDict(
|
|
862
872
|
"CreateNetworkSettingsRequestRequestTypeDef",
|
|
863
873
|
{
|
|
@@ -1058,34 +1068,35 @@ ListUserAccessLoggingSettingsResponseTypeDef = TypedDict(
|
|
|
1058
1068
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1059
1069
|
},
|
|
1060
1070
|
)
|
|
1061
|
-
|
|
1062
|
-
"
|
|
1071
|
+
UserSettingsSummaryTypeDef = TypedDict(
|
|
1072
|
+
"UserSettingsSummaryTypeDef",
|
|
1063
1073
|
{
|
|
1064
|
-
"
|
|
1065
|
-
"downloadAllowed": EnabledTypeType,
|
|
1066
|
-
"pasteAllowed": EnabledTypeType,
|
|
1067
|
-
"printAllowed": EnabledTypeType,
|
|
1068
|
-
"uploadAllowed": EnabledTypeType,
|
|
1069
|
-
"additionalEncryptionContext": NotRequired[Mapping[str, str]],
|
|
1070
|
-
"clientToken": NotRequired[str],
|
|
1074
|
+
"userSettingsArn": str,
|
|
1071
1075
|
"cookieSynchronizationConfiguration": NotRequired[
|
|
1072
|
-
|
|
1076
|
+
CookieSynchronizationConfigurationOutputTypeDef
|
|
1073
1077
|
],
|
|
1074
|
-
"
|
|
1078
|
+
"copyAllowed": NotRequired[EnabledTypeType],
|
|
1079
|
+
"deepLinkAllowed": NotRequired[EnabledTypeType],
|
|
1075
1080
|
"disconnectTimeoutInMinutes": NotRequired[int],
|
|
1081
|
+
"downloadAllowed": NotRequired[EnabledTypeType],
|
|
1076
1082
|
"idleDisconnectTimeoutInMinutes": NotRequired[int],
|
|
1077
|
-
"
|
|
1083
|
+
"pasteAllowed": NotRequired[EnabledTypeType],
|
|
1084
|
+
"printAllowed": NotRequired[EnabledTypeType],
|
|
1085
|
+
"uploadAllowed": NotRequired[EnabledTypeType],
|
|
1078
1086
|
},
|
|
1079
1087
|
)
|
|
1080
|
-
|
|
1081
|
-
"
|
|
1088
|
+
UserSettingsTypeDef = TypedDict(
|
|
1089
|
+
"UserSettingsTypeDef",
|
|
1082
1090
|
{
|
|
1083
1091
|
"userSettingsArn": str,
|
|
1084
|
-
"
|
|
1092
|
+
"additionalEncryptionContext": NotRequired[Dict[str, str]],
|
|
1093
|
+
"associatedPortalArns": NotRequired[List[str]],
|
|
1085
1094
|
"cookieSynchronizationConfiguration": NotRequired[
|
|
1086
|
-
|
|
1095
|
+
CookieSynchronizationConfigurationOutputTypeDef
|
|
1087
1096
|
],
|
|
1088
1097
|
"copyAllowed": NotRequired[EnabledTypeType],
|
|
1098
|
+
"customerManagedKey": NotRequired[str],
|
|
1099
|
+
"deepLinkAllowed": NotRequired[EnabledTypeType],
|
|
1089
1100
|
"disconnectTimeoutInMinutes": NotRequired[int],
|
|
1090
1101
|
"downloadAllowed": NotRequired[EnabledTypeType],
|
|
1091
1102
|
"idleDisconnectTimeoutInMinutes": NotRequired[int],
|
|
@@ -1094,33 +1105,39 @@ UpdateUserSettingsRequestRequestTypeDef = TypedDict(
|
|
|
1094
1105
|
"uploadAllowed": NotRequired[EnabledTypeType],
|
|
1095
1106
|
},
|
|
1096
1107
|
)
|
|
1097
|
-
|
|
1098
|
-
|
|
1108
|
+
CookieSynchronizationConfigurationUnionTypeDef = Union[
|
|
1109
|
+
CookieSynchronizationConfigurationTypeDef, CookieSynchronizationConfigurationOutputTypeDef
|
|
1110
|
+
]
|
|
1111
|
+
CreateUserSettingsRequestRequestTypeDef = TypedDict(
|
|
1112
|
+
"CreateUserSettingsRequestRequestTypeDef",
|
|
1099
1113
|
{
|
|
1100
|
-
"
|
|
1114
|
+
"copyAllowed": EnabledTypeType,
|
|
1115
|
+
"downloadAllowed": EnabledTypeType,
|
|
1116
|
+
"pasteAllowed": EnabledTypeType,
|
|
1117
|
+
"printAllowed": EnabledTypeType,
|
|
1118
|
+
"uploadAllowed": EnabledTypeType,
|
|
1119
|
+
"additionalEncryptionContext": NotRequired[Mapping[str, str]],
|
|
1120
|
+
"clientToken": NotRequired[str],
|
|
1101
1121
|
"cookieSynchronizationConfiguration": NotRequired[
|
|
1102
1122
|
CookieSynchronizationConfigurationTypeDef
|
|
1103
1123
|
],
|
|
1104
|
-
"
|
|
1124
|
+
"customerManagedKey": NotRequired[str],
|
|
1125
|
+
"deepLinkAllowed": NotRequired[EnabledTypeType],
|
|
1105
1126
|
"disconnectTimeoutInMinutes": NotRequired[int],
|
|
1106
|
-
"downloadAllowed": NotRequired[EnabledTypeType],
|
|
1107
1127
|
"idleDisconnectTimeoutInMinutes": NotRequired[int],
|
|
1108
|
-
"
|
|
1109
|
-
"printAllowed": NotRequired[EnabledTypeType],
|
|
1110
|
-
"uploadAllowed": NotRequired[EnabledTypeType],
|
|
1128
|
+
"tags": NotRequired[Sequence[TagTypeDef]],
|
|
1111
1129
|
},
|
|
1112
1130
|
)
|
|
1113
|
-
|
|
1114
|
-
"
|
|
1131
|
+
UpdateUserSettingsRequestRequestTypeDef = TypedDict(
|
|
1132
|
+
"UpdateUserSettingsRequestRequestTypeDef",
|
|
1115
1133
|
{
|
|
1116
1134
|
"userSettingsArn": str,
|
|
1117
|
-
"
|
|
1118
|
-
"associatedPortalArns": NotRequired[List[str]],
|
|
1135
|
+
"clientToken": NotRequired[str],
|
|
1119
1136
|
"cookieSynchronizationConfiguration": NotRequired[
|
|
1120
1137
|
CookieSynchronizationConfigurationTypeDef
|
|
1121
1138
|
],
|
|
1122
1139
|
"copyAllowed": NotRequired[EnabledTypeType],
|
|
1123
|
-
"
|
|
1140
|
+
"deepLinkAllowed": NotRequired[EnabledTypeType],
|
|
1124
1141
|
"disconnectTimeoutInMinutes": NotRequired[int],
|
|
1125
1142
|
"downloadAllowed": NotRequired[EnabledTypeType],
|
|
1126
1143
|
"idleDisconnectTimeoutInMinutes": NotRequired[int],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mypy-boto3-workspaces-web
|
|
3
|
-
Version: 1.34.
|
|
4
|
-
Summary: Type annotations for boto3.WorkSpacesWeb 1.34.
|
|
3
|
+
Version: 1.34.132
|
|
4
|
+
Summary: Type annotations for boto3.WorkSpacesWeb 1.34.132 service generated with mypy-boto3-builder 7.24.0
|
|
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
|
|
@@ -43,7 +43,7 @@ Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
|
|
|
43
43
|

|
|
44
44
|
|
|
45
45
|
Type annotations for
|
|
46
|
-
[boto3.WorkSpacesWeb 1.34.
|
|
46
|
+
[boto3.WorkSpacesWeb 1.34.132](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.24.0](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
|
|
@@ -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=WHp2E8eLLTC3XbYjnTTPZFd_-bVGVMCiD85zGAoNZw8,948
|
|
4
|
+
mypy_boto3_workspaces_web/client.py,sha256=qWWpttY8rc7JWXJ7ZlhAs6HQVUNv3yyofV0abhx2Wqg,38593
|
|
5
|
+
mypy_boto3_workspaces_web/client.pyi,sha256=5GmcNQAzQ7Q5yYlr7a4x5lNXUplt08Mvkb89ls-z09c,38590
|
|
6
|
+
mypy_boto3_workspaces_web/literals.py,sha256=ReQHEQA1QIiytWLv2rztrbI3KeZAXtYC4sLZdcGfvpo,9222
|
|
7
|
+
mypy_boto3_workspaces_web/literals.pyi,sha256=ReQHEQA1QIiytWLv2rztrbI3KeZAXtYC4sLZdcGfvpo,9222
|
|
8
|
+
mypy_boto3_workspaces_web/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
+
mypy_boto3_workspaces_web/type_defs.py,sha256=b89nPPlrAYmyN-yCAYEbPS1SnfsVLwi8JBttI97eKp4,37836
|
|
10
|
+
mypy_boto3_workspaces_web/type_defs.pyi,sha256=b89nPPlrAYmyN-yCAYEbPS1SnfsVLwi8JBttI97eKp4,37836
|
|
11
|
+
mypy_boto3_workspaces_web/version.py,sha256=hZshaFCnR0GyLsEpZkILjxxHbv3LcGbDD16rFePRXuE,63
|
|
12
|
+
mypy_boto3_workspaces_web-1.34.132.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
13
|
+
mypy_boto3_workspaces_web-1.34.132.dist-info/METADATA,sha256=vaDTVg60oyq8AVkejVOUbISoyvMM7B3nyPSpWngZjGw,12484
|
|
14
|
+
mypy_boto3_workspaces_web-1.34.132.dist-info/WHEEL,sha256=cpQTJ5IWu9CdaPViMhC9YzF8gZuS5-vlfoFihTBC86A,91
|
|
15
|
+
mypy_boto3_workspaces_web-1.34.132.dist-info/top_level.txt,sha256=uVGqyFrLYAjBajviVBauQuxxcr6knw6ba2vzvsNkrGg,26
|
|
16
|
+
mypy_boto3_workspaces_web-1.34.132.dist-info/RECORD,,
|
|
@@ -1,16 +0,0 @@
|
|
|
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,,
|
{mypy_boto3_workspaces_web-1.34.90.dist-info → mypy_boto3_workspaces_web-1.34.132.dist-info}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|