types-boto3-quicksight 1.36.3__py3-none-any.whl → 1.37.23__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.
- types_boto3_quicksight/__init__.py +4 -2
- types_boto3_quicksight/__init__.pyi +4 -2
- types_boto3_quicksight/__main__.py +4 -4
- types_boto3_quicksight/client.py +420 -434
- types_boto3_quicksight/client.pyi +420 -434
- types_boto3_quicksight/literals.py +16 -4
- types_boto3_quicksight/literals.pyi +16 -4
- types_boto3_quicksight/paginator.py +2 -2
- types_boto3_quicksight/paginator.pyi +2 -2
- types_boto3_quicksight/type_defs.py +2255 -3533
- types_boto3_quicksight/type_defs.pyi +2076 -3227
- types_boto3_quicksight/version.py +1 -1
- {types_boto3_quicksight-1.36.3.dist-info → types_boto3_quicksight-1.37.23.dist-info}/METADATA +16 -10
- types_boto3_quicksight-1.37.23.dist-info/RECORD +18 -0
- {types_boto3_quicksight-1.36.3.dist-info → types_boto3_quicksight-1.37.23.dist-info}/WHEEL +1 -1
- types_boto3_quicksight-1.36.3.dist-info/RECORD +0 -18
- {types_boto3_quicksight-1.36.3.dist-info → types_boto3_quicksight-1.37.23.dist-info/licenses}/LICENSE +0 -0
- {types_boto3_quicksight-1.36.3.dist-info → types_boto3_quicksight-1.37.23.dist-info}/top_level.txt +0 -0
{types_boto3_quicksight-1.36.3.dist-info → types_boto3_quicksight-1.37.23.dist-info}/METADATA
RENAMED
@@ -1,7 +1,7 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: types-boto3-quicksight
|
3
|
-
Version: 1.
|
4
|
-
Summary: Type annotations for boto3 QuickSight 1.
|
3
|
+
Version: 1.37.23
|
4
|
+
Summary: Type annotations for boto3 QuickSight 1.37.23 service generated with mypy-boto3-builder 8.10.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
|
@@ -39,6 +39,7 @@ Dynamic: description-content-type
|
|
39
39
|
Dynamic: home-page
|
40
40
|
Dynamic: keywords
|
41
41
|
Dynamic: license
|
42
|
+
Dynamic: license-file
|
42
43
|
Dynamic: project-url
|
43
44
|
Dynamic: requires-dist
|
44
45
|
Dynamic: requires-python
|
@@ -55,8 +56,9 @@ Dynamic: summary
|
|
55
56
|
|
56
57
|

|
57
58
|
|
58
|
-
Type annotations for
|
59
|
-
|
59
|
+
Type annotations for
|
60
|
+
[boto3 QuickSight 1.37.23](https://pypi.org/project/boto3/) compatible with
|
61
|
+
[VSCode](https://code.visualstudio.com/),
|
60
62
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
61
63
|
[Emacs](https://www.gnu.org/software/emacs/),
|
62
64
|
[Sublime Text](https://www.sublimetext.com/),
|
@@ -64,7 +66,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
64
66
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
65
67
|
|
66
68
|
Generated with
|
67
|
-
[mypy-boto3-builder 8.
|
69
|
+
[mypy-boto3-builder 8.10.1](https://github.com/youtype/mypy_boto3_builder).
|
68
70
|
|
69
71
|
More information can be found on
|
70
72
|
[types-boto3](https://pypi.org/project/types-boto3/) page and in
|
@@ -112,12 +114,12 @@ See how it helps you find and fix potential bugs:
|
|
112
114
|
### Generate locally (recommended)
|
113
115
|
|
114
116
|
You can generate type annotations for `boto3` package locally with
|
115
|
-
`
|
117
|
+
`mypy-boto3-builder`. Use
|
116
118
|
[uv](https://docs.astral.sh/uv/getting-started/installation/) for build
|
117
119
|
isolation.
|
118
120
|
|
119
121
|
1. Run mypy-boto3-builder in your package root directory:
|
120
|
-
`uvx --with 'boto3==1.
|
122
|
+
`uvx --with 'boto3==1.37.23' mypy-boto3-builder`
|
121
123
|
2. Select `boto3` AWS SDK.
|
122
124
|
3. Add `QuickSight` service.
|
123
125
|
4. Use provided commands to install generated packages.
|
@@ -489,11 +491,14 @@ Full list of `QuickSight` TypeDefs can be found in
|
|
489
491
|
[docs](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/type_defs/).
|
490
492
|
|
491
493
|
```python
|
494
|
+
# TypedDict usage example
|
492
495
|
from types_boto3_quicksight.type_defs import AccountCustomizationTypeDef
|
493
496
|
|
494
497
|
|
495
498
|
def get_value() -> AccountCustomizationTypeDef:
|
496
|
-
return {
|
499
|
+
return {
|
500
|
+
"DefaultTheme": ...,
|
501
|
+
}
|
497
502
|
```
|
498
503
|
|
499
504
|
<a id="how-it-works"></a>
|
@@ -547,7 +552,8 @@ Builder changelog can be found in
|
|
547
552
|
## Versioning
|
548
553
|
|
549
554
|
`types-boto3-quicksight` version is the same as related `boto3` version and
|
550
|
-
follows
|
555
|
+
follows
|
556
|
+
[Python Packaging version specifiers](https://packaging.python.org/en/latest/specifications/version-specifiers/).
|
551
557
|
|
552
558
|
<a id="thank-you"></a>
|
553
559
|
|
@@ -0,0 +1,18 @@
|
|
1
|
+
types_boto3_quicksight/__init__.py,sha256=Ir1bLU5lk8NCE_D-SME0r1czMZVhCjL7ATHrpZGs5J4,7894
|
2
|
+
types_boto3_quicksight/__init__.pyi,sha256=ALh_3aQMDeCFwS5kZ56rDjlw_iA-XVa9NBux6-hoinA,7893
|
3
|
+
types_boto3_quicksight/__main__.py,sha256=uPk-Twcu7hJXwOxHHy-Bq-689xI3RytegToIZhWoc-c,997
|
4
|
+
types_boto3_quicksight/client.py,sha256=k8XIPV21hHwAaPI4ubmg0ztiJzzxDftrL6OLfYdb4Tc,153907
|
5
|
+
types_boto3_quicksight/client.pyi,sha256=r3Htyxz7EoxcSqCq_w2e9BeVX07QsfYgG56k4urUNVI,153904
|
6
|
+
types_boto3_quicksight/literals.py,sha256=KOl0RIvn44jCq_WnBQMrOblmlnr9DoIezyxFq_pjPQU,46556
|
7
|
+
types_boto3_quicksight/literals.pyi,sha256=vC0_t3BCWMUZ41om4DK8I6ROx5nch_UuXhKdlaIPQtg,46554
|
8
|
+
types_boto3_quicksight/paginator.py,sha256=e5u7UkH74038BTO-MRRU3PZE-Hh4KXF51FrU-PG40tM,50164
|
9
|
+
types_boto3_quicksight/paginator.pyi,sha256=AaoRwQft4q4bV69O3_j3Asoc8pfSafKNdjC_pt8YsKc,50058
|
10
|
+
types_boto3_quicksight/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
11
|
+
types_boto3_quicksight/type_defs.py,sha256=I_dQqCVM9XKQQ_WlzNKodOt2rM3GE5CeVMsTiSSOdc0,485228
|
12
|
+
types_boto3_quicksight/type_defs.pyi,sha256=G5bspCfSK3KSc012zM6rKBgILYX11LBABwwfAzMxzNw,483457
|
13
|
+
types_boto3_quicksight/version.py,sha256=f3mE225hqwDn5dKxWq8ZSjFm3b2QTXzcFWzWzG-KtEc,93
|
14
|
+
types_boto3_quicksight-1.37.23.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
15
|
+
types_boto3_quicksight-1.37.23.dist-info/METADATA,sha256=WzlznGlZWl2yMXkB5kOBFsIMD8wWWed8XI9dEwpUptw,19826
|
16
|
+
types_boto3_quicksight-1.37.23.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
17
|
+
types_boto3_quicksight-1.37.23.dist-info/top_level.txt,sha256=-anjx7RpXcQ2voECP3kbFdst3Z47KOiJtPEoMytDTtk,23
|
18
|
+
types_boto3_quicksight-1.37.23.dist-info/RECORD,,
|
@@ -1,18 +0,0 @@
|
|
1
|
-
types_boto3_quicksight/__init__.py,sha256=wsq3pt6_5OevhsCAJaVdHkSTm3G3bwbOhwA9O0lL03s,7809
|
2
|
-
types_boto3_quicksight/__init__.pyi,sha256=-iaP6vWuhpmEL14jqyBq1zjv39VaeE-Gb9JIhkpN_dw,7808
|
3
|
-
types_boto3_quicksight/__main__.py,sha256=iuJUtZRVpoeAMfr_22bRLoZR0LfSUG7RKj90WwoFOtg,993
|
4
|
-
types_boto3_quicksight/client.py,sha256=4GH2OEF85_YousLLFqh00ZGpX139Aw-SZmwQJccc4zo,156931
|
5
|
-
types_boto3_quicksight/client.pyi,sha256=nsVdcO8HMUUGgpQydLbRUKCK7RxSYsUNHMl5I_-MUig,156928
|
6
|
-
types_boto3_quicksight/literals.py,sha256=YLsdEz6HQ6dH88vfDGBAJzFLZ-xp_D4cdFF9gmfX9VM,46104
|
7
|
-
types_boto3_quicksight/literals.pyi,sha256=e7A-s7KrqBnxyoNS9Co_XUD7cfa-v3B6HZQgBZQ5ylQ,46102
|
8
|
-
types_boto3_quicksight/paginator.py,sha256=VKdSyXbRBo-_mMFgySjsqwm4mbcfcRGUFcifx2InVqE,50164
|
9
|
-
types_boto3_quicksight/paginator.pyi,sha256=g7S56lzHUp9n_yAG2UHdiHiJj_uRHExy4lD2mrKdfUo,50058
|
10
|
-
types_boto3_quicksight/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
11
|
-
types_boto3_quicksight/type_defs.py,sha256=3jAfGwE1W54-g2y_q4jWQtu9UMW5KFEJobLF7SXVNQA,538507
|
12
|
-
types_boto3_quicksight/type_defs.pyi,sha256=EkgG8ZrdtxQJQEcXO07Lbve1i5uEX1eDdgXYUnYAhLw,536609
|
13
|
-
types_boto3_quicksight/version.py,sha256=mKq1ZrYrjLBbg6AJYL81VLYwPmCVAnCg0QaNNDyidDI,92
|
14
|
-
types_boto3_quicksight-1.36.3.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
15
|
-
types_boto3_quicksight-1.36.3.dist-info/METADATA,sha256=n9XRxj8XjYGW2fOHHPfXH66HGyOIGucGN97_7mOLbSc,19688
|
16
|
-
types_boto3_quicksight-1.36.3.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
17
|
-
types_boto3_quicksight-1.36.3.dist-info/top_level.txt,sha256=-anjx7RpXcQ2voECP3kbFdst3Z47KOiJtPEoMytDTtk,23
|
18
|
-
types_boto3_quicksight-1.36.3.dist-info/RECORD,,
|
File without changes
|
{types_boto3_quicksight-1.36.3.dist-info → types_boto3_quicksight-1.37.23.dist-info}/top_level.txt
RENAMED
File without changes
|