mypy-boto3-workspaces-web 1.36.0__py3-none-any.whl → 1.36.25__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 +4 -2
- mypy_boto3_workspaces_web/__init__.pyi +4 -2
- mypy_boto3_workspaces_web/__main__.py +4 -4
- mypy_boto3_workspaces_web/client.py +138 -146
- mypy_boto3_workspaces_web/client.pyi +138 -146
- mypy_boto3_workspaces_web/literals.py +19 -2
- mypy_boto3_workspaces_web/literals.pyi +19 -2
- mypy_boto3_workspaces_web/paginator.py +2 -2
- mypy_boto3_workspaces_web/paginator.pyi +2 -2
- mypy_boto3_workspaces_web/type_defs.py +213 -177
- mypy_boto3_workspaces_web/type_defs.pyi +208 -176
- mypy_boto3_workspaces_web/version.py +1 -1
- {mypy_boto3_workspaces_web-1.36.0.dist-info → mypy_boto3_workspaces_web-1.36.25.dist-info}/METADATA +14 -10
- mypy_boto3_workspaces_web-1.36.25.dist-info/RECORD +18 -0
- mypy_boto3_workspaces_web-1.36.0.dist-info/RECORD +0 -18
- {mypy_boto3_workspaces_web-1.36.0.dist-info → mypy_boto3_workspaces_web-1.36.25.dist-info}/LICENSE +0 -0
- {mypy_boto3_workspaces_web-1.36.0.dist-info → mypy_boto3_workspaces_web-1.36.25.dist-info}/WHEEL +0 -0
- {mypy_boto3_workspaces_web-1.36.0.dist-info → mypy_boto3_workspaces_web-1.36.25.dist-info}/top_level.txt +0 -0
{mypy_boto3_workspaces_web-1.36.0.dist-info → mypy_boto3_workspaces_web-1.36.25.dist-info}/METADATA
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: mypy-boto3-workspaces-web
|
|
3
|
-
Version: 1.36.
|
|
4
|
-
Summary: Type annotations for boto3 WorkSpacesWeb 1.36.
|
|
3
|
+
Version: 1.36.25
|
|
4
|
+
Summary: Type annotations for boto3 WorkSpacesWeb 1.36.25 service generated with mypy-boto3-builder 8.9.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
|
|
@@ -56,7 +56,7 @@ Dynamic: summary
|
|
|
56
56
|

|
|
57
57
|
|
|
58
58
|
Type annotations for
|
|
59
|
-
[boto3 WorkSpacesWeb 1.36.
|
|
59
|
+
[boto3 WorkSpacesWeb 1.36.25](https://pypi.org/project/boto3/) compatible with
|
|
60
60
|
[VSCode](https://code.visualstudio.com/),
|
|
61
61
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
62
62
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -65,7 +65,7 @@ Type annotations for
|
|
|
65
65
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
66
66
|
|
|
67
67
|
Generated with
|
|
68
|
-
[mypy-boto3-builder 8.
|
|
68
|
+
[mypy-boto3-builder 8.9.2](https://github.com/youtype/mypy_boto3_builder).
|
|
69
69
|
|
|
70
70
|
More information can be found on
|
|
71
71
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -113,12 +113,12 @@ See how it helps you find and fix potential bugs:
|
|
|
113
113
|
### Generate locally (recommended)
|
|
114
114
|
|
|
115
115
|
You can generate type annotations for `boto3` package locally with
|
|
116
|
-
`
|
|
116
|
+
`mypy-boto3-builder`. Use
|
|
117
117
|
[uv](https://docs.astral.sh/uv/getting-started/installation/) for build
|
|
118
118
|
isolation.
|
|
119
119
|
|
|
120
120
|
1. Run mypy-boto3-builder in your package root directory:
|
|
121
|
-
`uvx --with 'boto3==1.36.
|
|
121
|
+
`uvx --with 'boto3==1.36.25' mypy-boto3-builder`
|
|
122
122
|
2. Select `boto3-stubs` AWS SDK.
|
|
123
123
|
3. Add `WorkSpacesWeb` service.
|
|
124
124
|
4. Use provided commands to install generated packages.
|
|
@@ -396,11 +396,14 @@ Full list of `WorkSpacesWeb` TypeDefs can be found in
|
|
|
396
396
|
[docs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/type_defs/).
|
|
397
397
|
|
|
398
398
|
```python
|
|
399
|
-
|
|
399
|
+
# TypedDict usage example
|
|
400
|
+
from mypy_boto3_workspaces_web.type_defs import AssociateBrowserSettingsRequestTypeDef
|
|
400
401
|
|
|
401
402
|
|
|
402
|
-
def get_value() ->
|
|
403
|
-
return {
|
|
403
|
+
def get_value() -> AssociateBrowserSettingsRequestTypeDef:
|
|
404
|
+
return {
|
|
405
|
+
"browserSettingsArn": ...,
|
|
406
|
+
}
|
|
404
407
|
```
|
|
405
408
|
|
|
406
409
|
<a id="how-it-works"></a>
|
|
@@ -454,7 +457,8 @@ Builder changelog can be found in
|
|
|
454
457
|
## Versioning
|
|
455
458
|
|
|
456
459
|
`mypy-boto3-workspaces-web` version is the same as related `boto3` version and
|
|
457
|
-
follows
|
|
460
|
+
follows
|
|
461
|
+
[Python Packaging version specifiers](https://packaging.python.org/en/latest/specifications/version-specifiers/).
|
|
458
462
|
|
|
459
463
|
<a id="thank-you"></a>
|
|
460
464
|
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
mypy_boto3_workspaces_web/__init__.py,sha256=3DK1WSJcohEQySprXd4qcatG2yy431cO9n25YWRukfY,1014
|
|
2
|
+
mypy_boto3_workspaces_web/__init__.pyi,sha256=u20rYbspspTEECHCu2JVCS9NGUIZUV4_iLeRFteIPvU,1013
|
|
3
|
+
mypy_boto3_workspaces_web/__main__.py,sha256=nk_8ELYtxWW89ul9HbAFuYOsH-zs4xdhVMIBvXggSl8,1009
|
|
4
|
+
mypy_boto3_workspaces_web/client.py,sha256=A64ocr0_xVpB6BygDzfc5s8tn94YGVWJWH43smUKpzw,45031
|
|
5
|
+
mypy_boto3_workspaces_web/client.pyi,sha256=ehivUddXEPeXLLC2-IUz1E8sxdHnXnp9MKOfOSUUr28,45028
|
|
6
|
+
mypy_boto3_workspaces_web/literals.py,sha256=VJQOxZexpU8Nrrcc0zBRHeaF0j_N1eCOExOm0sgqK08,10718
|
|
7
|
+
mypy_boto3_workspaces_web/literals.pyi,sha256=RKOb_EYwSvtIkf8Uc6VLwUFFaj3to4IBz2_vqBO_hgw,10716
|
|
8
|
+
mypy_boto3_workspaces_web/paginator.py,sha256=o3iopqiClyZmPjt6Zuovtj1pWzjorE8qj2nX0O8doiQ,3715
|
|
9
|
+
mypy_boto3_workspaces_web/paginator.pyi,sha256=o-_8odx34bwuczx1le-ekJSDgsX4ttcmFE6gTOASCfA,3708
|
|
10
|
+
mypy_boto3_workspaces_web/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_workspaces_web/type_defs.py,sha256=gcvC1HjRNeBik8yHUcI3NDeW08-8Hrq8I24fCyl3stg,36688
|
|
12
|
+
mypy_boto3_workspaces_web/type_defs.pyi,sha256=Xz8QmYp9athQLj_Skwm2-7QJHNal1qXCT2OUy8vzwcY,36527
|
|
13
|
+
mypy_boto3_workspaces_web/version.py,sha256=t9RbWvXjy_jtiXJExxfJbQv-tdaFI-PJGt754J-gIVY,93
|
|
14
|
+
mypy_boto3_workspaces_web-1.36.25.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
+
mypy_boto3_workspaces_web-1.36.25.dist-info/METADATA,sha256=x-WL8Iz3KfEQC6C1cEu4T5o3b3b-B4_nt8C77g3VKv0,15495
|
|
16
|
+
mypy_boto3_workspaces_web-1.36.25.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
17
|
+
mypy_boto3_workspaces_web-1.36.25.dist-info/top_level.txt,sha256=uVGqyFrLYAjBajviVBauQuxxcr6knw6ba2vzvsNkrGg,26
|
|
18
|
+
mypy_boto3_workspaces_web-1.36.25.dist-info/RECORD,,
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
mypy_boto3_workspaces_web/__init__.py,sha256=XQiUoB4xBb_zQzt7-g36QP5x8G33HsdqKwEbBMI_XoM,926
|
|
2
|
-
mypy_boto3_workspaces_web/__init__.pyi,sha256=6JzzAIAQAAbEjl9dP0TAQYSCogRPdFERVndNGNu5Rp4,925
|
|
3
|
-
mypy_boto3_workspaces_web/__main__.py,sha256=9489byRkAlLtoRnnfg8NtTNpd6QiQQMfc5Qxxhq6njk,1006
|
|
4
|
-
mypy_boto3_workspaces_web/client.py,sha256=jclqNI4YjHk9UpCoMSLX0JxpditCgcF06_aXWWc9Vok,46039
|
|
5
|
-
mypy_boto3_workspaces_web/client.pyi,sha256=hMIszOUfG8tOXBrt1G0A7ABCBoxvtT6QExN6IpCyrzA,46036
|
|
6
|
-
mypy_boto3_workspaces_web/literals.py,sha256=RGw08utwWDXRAaTux4pL_8HFDOWQWxutvTiUelZZu9s,10236
|
|
7
|
-
mypy_boto3_workspaces_web/literals.pyi,sha256=RsYwArmFKYiiS_EBrPmRJgTwiijc6YvvRclbBj-WMJM,10234
|
|
8
|
-
mypy_boto3_workspaces_web/paginator.py,sha256=RVLuKDlvR1YLsEUiYnlzjCfWAuMGuZOej610W0IFMiU,3715
|
|
9
|
-
mypy_boto3_workspaces_web/paginator.pyi,sha256=Eh7ewtRasnMEKDydywpUiLzJuEq6uWb7vgQRXDtWfsY,3708
|
|
10
|
-
mypy_boto3_workspaces_web/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_workspaces_web/type_defs.py,sha256=5Q12RzQiQOfnIe-QAxQ0NJJB8OjhOFmFE7ouuaRAie0,36263
|
|
12
|
-
mypy_boto3_workspaces_web/type_defs.pyi,sha256=vftc_p3czImOuGqY2eyUdiEH2Y4d7NekppBU1VcGyUg,36106
|
|
13
|
-
mypy_boto3_workspaces_web/version.py,sha256=XqBLww9Ajk9GRr5oc1Ak2757Fsir4zxoRCWswSKh8Ro,92
|
|
14
|
-
mypy_boto3_workspaces_web-1.36.0.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
-
mypy_boto3_workspaces_web-1.36.0.dist-info/METADATA,sha256=7SGLIy1qU_flpJqKibFMiFxDDyr8KXXZ9wve07XpIhQ,15389
|
|
16
|
-
mypy_boto3_workspaces_web-1.36.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
17
|
-
mypy_boto3_workspaces_web-1.36.0.dist-info/top_level.txt,sha256=uVGqyFrLYAjBajviVBauQuxxcr6knw6ba2vzvsNkrGg,26
|
|
18
|
-
mypy_boto3_workspaces_web-1.36.0.dist-info/RECORD,,
|
{mypy_boto3_workspaces_web-1.36.0.dist-info → mypy_boto3_workspaces_web-1.36.25.dist-info}/LICENSE
RENAMED
|
File without changes
|
{mypy_boto3_workspaces_web-1.36.0.dist-info → mypy_boto3_workspaces_web-1.36.25.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|