mypy-boto3-workspaces-web 1.39.0__py3-none-any.whl → 1.40.54__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 +8 -1
- mypy_boto3_workspaces_web/__init__.pyi +8 -1
- mypy_boto3_workspaces_web/__main__.py +3 -3
- mypy_boto3_workspaces_web/client.py +98 -1
- mypy_boto3_workspaces_web/client.pyi +98 -1
- mypy_boto3_workspaces_web/literals.py +34 -14
- mypy_boto3_workspaces_web/literals.pyi +34 -14
- mypy_boto3_workspaces_web/paginator.py +30 -1
- mypy_boto3_workspaces_web/paginator.pyi +27 -1
- mypy_boto3_workspaces_web/type_defs.py +289 -145
- mypy_boto3_workspaces_web/type_defs.pyi +270 -145
- mypy_boto3_workspaces_web/version.py +1 -1
- {mypy_boto3_workspaces_web-1.39.0.dist-info → mypy_boto3_workspaces_web-1.40.54.dist-info}/METADATA +9 -5
- mypy_boto3_workspaces_web-1.40.54.dist-info/RECORD +18 -0
- mypy_boto3_workspaces_web-1.39.0.dist-info/RECORD +0 -18
- {mypy_boto3_workspaces_web-1.39.0.dist-info → mypy_boto3_workspaces_web-1.40.54.dist-info}/WHEEL +0 -0
- {mypy_boto3_workspaces_web-1.39.0.dist-info → mypy_boto3_workspaces_web-1.40.54.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_workspaces_web-1.39.0.dist-info → mypy_boto3_workspaces_web-1.40.54.dist-info}/top_level.txt +0 -0
|
@@ -25,10 +25,14 @@ __all__ = (
|
|
|
25
25
|
"AuthenticationTypeType",
|
|
26
26
|
"BrowserTypeType",
|
|
27
27
|
"EnabledTypeType",
|
|
28
|
+
"EventType",
|
|
29
|
+
"FolderStructureType",
|
|
28
30
|
"IdentityProviderTypeType",
|
|
29
31
|
"InstanceTypeType",
|
|
30
32
|
"ListDataProtectionSettingsPaginatorName",
|
|
33
|
+
"ListSessionLoggersPaginatorName",
|
|
31
34
|
"ListSessionsPaginatorName",
|
|
35
|
+
"LogFileFormatType",
|
|
32
36
|
"MaxDisplayResolutionType",
|
|
33
37
|
"PaginatorName",
|
|
34
38
|
"PortalStatusType",
|
|
@@ -48,12 +52,33 @@ __all__ = (
|
|
|
48
52
|
AuthenticationTypeType = Literal["IAM_Identity_Center", "Standard"]
|
|
49
53
|
BrowserTypeType = Literal["Chrome"]
|
|
50
54
|
EnabledTypeType = Literal["Disabled", "Enabled"]
|
|
55
|
+
EventType = Literal[
|
|
56
|
+
"ContentCopyFromWebsite",
|
|
57
|
+
"ContentPasteToWebsite",
|
|
58
|
+
"ContentTransferFromLocalToRemoteClipboard",
|
|
59
|
+
"FileDownloadFromSecureBrowserToRemoteDisk",
|
|
60
|
+
"FileTransferFromLocalToRemoteDisk",
|
|
61
|
+
"FileTransferFromRemoteToLocalDisk",
|
|
62
|
+
"FileUploadFromRemoteDiskToSecureBrowser",
|
|
63
|
+
"PrintJobSubmit",
|
|
64
|
+
"SessionConnect",
|
|
65
|
+
"SessionDisconnect",
|
|
66
|
+
"SessionEnd",
|
|
67
|
+
"SessionStart",
|
|
68
|
+
"TabClose",
|
|
69
|
+
"TabOpen",
|
|
70
|
+
"UrlLoad",
|
|
71
|
+
"WebsiteInteract",
|
|
72
|
+
]
|
|
73
|
+
FolderStructureType = Literal["Flat", "NestedByDate"]
|
|
51
74
|
IdentityProviderTypeType = Literal[
|
|
52
75
|
"Facebook", "Google", "LoginWithAmazon", "OIDC", "SAML", "SignInWithApple"
|
|
53
76
|
]
|
|
54
77
|
InstanceTypeType = Literal["standard.large", "standard.regular", "standard.xlarge"]
|
|
55
78
|
ListDataProtectionSettingsPaginatorName = Literal["list_data_protection_settings"]
|
|
79
|
+
ListSessionLoggersPaginatorName = Literal["list_session_loggers"]
|
|
56
80
|
ListSessionsPaginatorName = Literal["list_sessions"]
|
|
81
|
+
LogFileFormatType = Literal["JSONLines", "Json"]
|
|
57
82
|
MaxDisplayResolutionType = Literal[
|
|
58
83
|
"size1024X768",
|
|
59
84
|
"size1280X720",
|
|
@@ -100,6 +125,7 @@ ServiceName = Literal[
|
|
|
100
125
|
"appstream",
|
|
101
126
|
"appsync",
|
|
102
127
|
"apptest",
|
|
128
|
+
"arc-region-switch",
|
|
103
129
|
"arc-zonal-shift",
|
|
104
130
|
"artifact",
|
|
105
131
|
"athena",
|
|
@@ -111,11 +137,15 @@ ServiceName = Literal[
|
|
|
111
137
|
"backup-gateway",
|
|
112
138
|
"backupsearch",
|
|
113
139
|
"batch",
|
|
140
|
+
"bcm-dashboards",
|
|
114
141
|
"bcm-data-exports",
|
|
115
142
|
"bcm-pricing-calculator",
|
|
143
|
+
"bcm-recommended-actions",
|
|
116
144
|
"bedrock",
|
|
117
145
|
"bedrock-agent",
|
|
118
146
|
"bedrock-agent-runtime",
|
|
147
|
+
"bedrock-agentcore",
|
|
148
|
+
"bedrock-agentcore-control",
|
|
119
149
|
"bedrock-data-automation",
|
|
120
150
|
"bedrock-data-automation-runtime",
|
|
121
151
|
"bedrock-runtime",
|
|
@@ -348,11 +378,10 @@ ServiceName = Literal[
|
|
|
348
378
|
"notificationscontacts",
|
|
349
379
|
"oam",
|
|
350
380
|
"observabilityadmin",
|
|
381
|
+
"odb",
|
|
351
382
|
"omics",
|
|
352
383
|
"opensearch",
|
|
353
384
|
"opensearchserverless",
|
|
354
|
-
"opsworks",
|
|
355
|
-
"opsworkscm",
|
|
356
385
|
"organizations",
|
|
357
386
|
"osis",
|
|
358
387
|
"outposts",
|
|
@@ -408,6 +437,7 @@ ServiceName = Literal[
|
|
|
408
437
|
"s3control",
|
|
409
438
|
"s3outposts",
|
|
410
439
|
"s3tables",
|
|
440
|
+
"s3vectors",
|
|
411
441
|
"sagemaker",
|
|
412
442
|
"sagemaker-a2i-runtime",
|
|
413
443
|
"sagemaker-edge",
|
|
@@ -433,7 +463,6 @@ ServiceName = Literal[
|
|
|
433
463
|
"shield",
|
|
434
464
|
"signer",
|
|
435
465
|
"simspaceweaver",
|
|
436
|
-
"sms",
|
|
437
466
|
"snow-device-management",
|
|
438
467
|
"snowball",
|
|
439
468
|
"sns",
|
|
@@ -484,18 +513,9 @@ ServiceName = Literal[
|
|
|
484
513
|
"xray",
|
|
485
514
|
]
|
|
486
515
|
ResourceServiceName = Literal[
|
|
487
|
-
"cloudformation",
|
|
488
|
-
"cloudwatch",
|
|
489
|
-
"dynamodb",
|
|
490
|
-
"ec2",
|
|
491
|
-
"glacier",
|
|
492
|
-
"iam",
|
|
493
|
-
"opsworks",
|
|
494
|
-
"s3",
|
|
495
|
-
"sns",
|
|
496
|
-
"sqs",
|
|
516
|
+
"cloudformation", "cloudwatch", "dynamodb", "ec2", "glacier", "iam", "s3", "sns", "sqs"
|
|
497
517
|
]
|
|
498
|
-
PaginatorName = Literal["list_data_protection_settings", "list_sessions"]
|
|
518
|
+
PaginatorName = Literal["list_data_protection_settings", "list_session_loggers", "list_sessions"]
|
|
499
519
|
RegionName = Literal[
|
|
500
520
|
"ap-northeast-1",
|
|
501
521
|
"ap-south-1",
|
|
@@ -13,6 +13,7 @@ Usage::
|
|
|
13
13
|
from mypy_boto3_workspaces_web.client import WorkSpacesWebClient
|
|
14
14
|
from mypy_boto3_workspaces_web.paginator import (
|
|
15
15
|
ListDataProtectionSettingsPaginator,
|
|
16
|
+
ListSessionLoggersPaginator,
|
|
16
17
|
ListSessionsPaginator,
|
|
17
18
|
)
|
|
18
19
|
|
|
@@ -20,6 +21,7 @@ Usage::
|
|
|
20
21
|
client: WorkSpacesWebClient = session.client("workspaces-web")
|
|
21
22
|
|
|
22
23
|
list_data_protection_settings_paginator: ListDataProtectionSettingsPaginator = client.get_paginator("list_data_protection_settings")
|
|
24
|
+
list_session_loggers_paginator: ListSessionLoggersPaginator = client.get_paginator("list_session_loggers")
|
|
23
25
|
list_sessions_paginator: ListSessionsPaginator = client.get_paginator("list_sessions")
|
|
24
26
|
```
|
|
25
27
|
"""
|
|
@@ -34,6 +36,8 @@ from botocore.paginate import PageIterator, Paginator
|
|
|
34
36
|
from .type_defs import (
|
|
35
37
|
ListDataProtectionSettingsRequestPaginateTypeDef,
|
|
36
38
|
ListDataProtectionSettingsResponseTypeDef,
|
|
39
|
+
ListSessionLoggersRequestPaginateTypeDef,
|
|
40
|
+
ListSessionLoggersResponseTypeDef,
|
|
37
41
|
ListSessionsRequestPaginateTypeDef,
|
|
38
42
|
ListSessionsResponseTypeDef,
|
|
39
43
|
)
|
|
@@ -44,7 +48,11 @@ else:
|
|
|
44
48
|
from typing_extensions import Unpack
|
|
45
49
|
|
|
46
50
|
|
|
47
|
-
__all__ = (
|
|
51
|
+
__all__ = (
|
|
52
|
+
"ListDataProtectionSettingsPaginator",
|
|
53
|
+
"ListSessionLoggersPaginator",
|
|
54
|
+
"ListSessionsPaginator",
|
|
55
|
+
)
|
|
48
56
|
|
|
49
57
|
|
|
50
58
|
if TYPE_CHECKING:
|
|
@@ -68,6 +76,27 @@ class ListDataProtectionSettingsPaginator(_ListDataProtectionSettingsPaginatorBa
|
|
|
68
76
|
"""
|
|
69
77
|
|
|
70
78
|
|
|
79
|
+
if TYPE_CHECKING:
|
|
80
|
+
_ListSessionLoggersPaginatorBase = Paginator[ListSessionLoggersResponseTypeDef]
|
|
81
|
+
else:
|
|
82
|
+
_ListSessionLoggersPaginatorBase = Paginator # type: ignore[assignment]
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
class ListSessionLoggersPaginator(_ListSessionLoggersPaginatorBase):
|
|
86
|
+
"""
|
|
87
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/paginator/ListSessionLoggers.html#WorkSpacesWeb.Paginator.ListSessionLoggers)
|
|
88
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/paginators/#listsessionloggerspaginator)
|
|
89
|
+
"""
|
|
90
|
+
|
|
91
|
+
def paginate( # type: ignore[override]
|
|
92
|
+
self, **kwargs: Unpack[ListSessionLoggersRequestPaginateTypeDef]
|
|
93
|
+
) -> PageIterator[ListSessionLoggersResponseTypeDef]:
|
|
94
|
+
"""
|
|
95
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/paginator/ListSessionLoggers.html#WorkSpacesWeb.Paginator.ListSessionLoggers.paginate)
|
|
96
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/paginators/#listsessionloggerspaginator)
|
|
97
|
+
"""
|
|
98
|
+
|
|
99
|
+
|
|
71
100
|
if TYPE_CHECKING:
|
|
72
101
|
_ListSessionsPaginatorBase = Paginator[ListSessionsResponseTypeDef]
|
|
73
102
|
else:
|
|
@@ -13,6 +13,7 @@ Usage::
|
|
|
13
13
|
from mypy_boto3_workspaces_web.client import WorkSpacesWebClient
|
|
14
14
|
from mypy_boto3_workspaces_web.paginator import (
|
|
15
15
|
ListDataProtectionSettingsPaginator,
|
|
16
|
+
ListSessionLoggersPaginator,
|
|
16
17
|
ListSessionsPaginator,
|
|
17
18
|
)
|
|
18
19
|
|
|
@@ -20,6 +21,7 @@ Usage::
|
|
|
20
21
|
client: WorkSpacesWebClient = session.client("workspaces-web")
|
|
21
22
|
|
|
22
23
|
list_data_protection_settings_paginator: ListDataProtectionSettingsPaginator = client.get_paginator("list_data_protection_settings")
|
|
24
|
+
list_session_loggers_paginator: ListSessionLoggersPaginator = client.get_paginator("list_session_loggers")
|
|
23
25
|
list_sessions_paginator: ListSessionsPaginator = client.get_paginator("list_sessions")
|
|
24
26
|
```
|
|
25
27
|
"""
|
|
@@ -34,6 +36,8 @@ from botocore.paginate import PageIterator, Paginator
|
|
|
34
36
|
from .type_defs import (
|
|
35
37
|
ListDataProtectionSettingsRequestPaginateTypeDef,
|
|
36
38
|
ListDataProtectionSettingsResponseTypeDef,
|
|
39
|
+
ListSessionLoggersRequestPaginateTypeDef,
|
|
40
|
+
ListSessionLoggersResponseTypeDef,
|
|
37
41
|
ListSessionsRequestPaginateTypeDef,
|
|
38
42
|
ListSessionsResponseTypeDef,
|
|
39
43
|
)
|
|
@@ -43,7 +47,11 @@ if sys.version_info >= (3, 12):
|
|
|
43
47
|
else:
|
|
44
48
|
from typing_extensions import Unpack
|
|
45
49
|
|
|
46
|
-
__all__ = (
|
|
50
|
+
__all__ = (
|
|
51
|
+
"ListDataProtectionSettingsPaginator",
|
|
52
|
+
"ListSessionLoggersPaginator",
|
|
53
|
+
"ListSessionsPaginator",
|
|
54
|
+
)
|
|
47
55
|
|
|
48
56
|
if TYPE_CHECKING:
|
|
49
57
|
_ListDataProtectionSettingsPaginatorBase = Paginator[ListDataProtectionSettingsResponseTypeDef]
|
|
@@ -63,6 +71,24 @@ class ListDataProtectionSettingsPaginator(_ListDataProtectionSettingsPaginatorBa
|
|
|
63
71
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/paginators/#listdataprotectionsettingspaginator)
|
|
64
72
|
"""
|
|
65
73
|
|
|
74
|
+
if TYPE_CHECKING:
|
|
75
|
+
_ListSessionLoggersPaginatorBase = Paginator[ListSessionLoggersResponseTypeDef]
|
|
76
|
+
else:
|
|
77
|
+
_ListSessionLoggersPaginatorBase = Paginator # type: ignore[assignment]
|
|
78
|
+
|
|
79
|
+
class ListSessionLoggersPaginator(_ListSessionLoggersPaginatorBase):
|
|
80
|
+
"""
|
|
81
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/paginator/ListSessionLoggers.html#WorkSpacesWeb.Paginator.ListSessionLoggers)
|
|
82
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/paginators/#listsessionloggerspaginator)
|
|
83
|
+
"""
|
|
84
|
+
def paginate( # type: ignore[override]
|
|
85
|
+
self, **kwargs: Unpack[ListSessionLoggersRequestPaginateTypeDef]
|
|
86
|
+
) -> PageIterator[ListSessionLoggersResponseTypeDef]:
|
|
87
|
+
"""
|
|
88
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/paginator/ListSessionLoggers.html#WorkSpacesWeb.Paginator.ListSessionLoggers.paginate)
|
|
89
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/paginators/#listsessionloggerspaginator)
|
|
90
|
+
"""
|
|
91
|
+
|
|
66
92
|
if TYPE_CHECKING:
|
|
67
93
|
_ListSessionsPaginatorBase = Paginator[ListSessionsResponseTypeDef]
|
|
68
94
|
else:
|