types-boto3-quicksight 1.36.3__py3-none-any.whl → 1.37.0__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 +2 -3
- types_boto3_quicksight/literals.pyi +2 -3
- types_boto3_quicksight/paginator.py +2 -2
- types_boto3_quicksight/paginator.pyi +2 -2
- types_boto3_quicksight/type_defs.py +2106 -3485
- types_boto3_quicksight/type_defs.pyi +1935 -3173
- types_boto3_quicksight/version.py +1 -1
- {types_boto3_quicksight-1.36.3.dist-info → types_boto3_quicksight-1.37.0.dist-info}/METADATA +12 -8
- types_boto3_quicksight-1.37.0.dist-info/RECORD +18 -0
- types_boto3_quicksight-1.36.3.dist-info/RECORD +0 -18
- {types_boto3_quicksight-1.36.3.dist-info → types_boto3_quicksight-1.37.0.dist-info}/LICENSE +0 -0
- {types_boto3_quicksight-1.36.3.dist-info → types_boto3_quicksight-1.37.0.dist-info}/WHEEL +0 -0
- {types_boto3_quicksight-1.36.3.dist-info → types_boto3_quicksight-1.37.0.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,10 @@
|
|
1
1
|
"""
|
2
2
|
Main interface for quicksight service.
|
3
3
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/)
|
5
|
+
|
6
|
+
Copyright 2025 Vlad Emelianov
|
7
|
+
|
4
8
|
Usage::
|
5
9
|
|
6
10
|
```python
|
@@ -84,8 +88,6 @@ Usage::
|
|
84
88
|
search_groups_paginator: SearchGroupsPaginator = client.get_paginator("search_groups")
|
85
89
|
search_topics_paginator: SearchTopicsPaginator = client.get_paginator("search_topics")
|
86
90
|
```
|
87
|
-
|
88
|
-
Copyright 2025 Vlad Emelianov
|
89
91
|
"""
|
90
92
|
|
91
93
|
from .client import QuickSightClient
|
@@ -1,6 +1,10 @@
|
|
1
1
|
"""
|
2
2
|
Main interface for quicksight service.
|
3
3
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/)
|
5
|
+
|
6
|
+
Copyright 2025 Vlad Emelianov
|
7
|
+
|
4
8
|
Usage::
|
5
9
|
|
6
10
|
```python
|
@@ -84,8 +88,6 @@ Usage::
|
|
84
88
|
search_groups_paginator: SearchGroupsPaginator = client.get_paginator("search_groups")
|
85
89
|
search_topics_paginator: SearchTopicsPaginator = client.get_paginator("search_topics")
|
86
90
|
```
|
87
|
-
|
88
|
-
Copyright 2025 Vlad Emelianov
|
89
91
|
"""
|
90
92
|
|
91
93
|
from .client import QuickSightClient
|
@@ -12,9 +12,9 @@ def print_info() -> None:
|
|
12
12
|
Print package info to stdout.
|
13
13
|
"""
|
14
14
|
sys.stdout.write(
|
15
|
-
"Type annotations for boto3 QuickSight 1.
|
16
|
-
"Version: 1.
|
17
|
-
"Builder version: 8.
|
15
|
+
"Type annotations for boto3 QuickSight 1.37.0\n"
|
16
|
+
"Version: 1.37.0\n"
|
17
|
+
"Builder version: 8.9.2\n"
|
18
18
|
"Docs: https://youtype.github.io/types_boto3_docs/types_boto3_quicksight//\n"
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight.html#quicksight\n"
|
20
20
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
26
26
|
"""
|
27
27
|
Print package version to stdout.
|
28
28
|
"""
|
29
|
-
sys.stdout.write("1.
|
29
|
+
sys.stdout.write("1.37.0\n")
|
30
30
|
|
31
31
|
|
32
32
|
def main() -> None:
|