types-boto3-quicksight 1.35.74__py3-none-any.whl → 1.35.84__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/__main__.py +4 -4
- types_boto3_quicksight/literals.py +3 -0
- types_boto3_quicksight/literals.pyi +3 -0
- types_boto3_quicksight/type_defs.py +32 -3
- types_boto3_quicksight/type_defs.pyi +28 -3
- types_boto3_quicksight/version.py +1 -1
- {types_boto3_quicksight-1.35.74.dist-info → types_boto3_quicksight-1.35.84.dist-info}/METADATA +21 -7
- types_boto3_quicksight-1.35.84.dist-info/RECORD +18 -0
- types_boto3_quicksight-1.35.74.dist-info/RECORD +0 -18
- {types_boto3_quicksight-1.35.74.dist-info → types_boto3_quicksight-1.35.84.dist-info}/LICENSE +0 -0
- {types_boto3_quicksight-1.35.74.dist-info → types_boto3_quicksight-1.35.84.dist-info}/WHEEL +0 -0
- {types_boto3_quicksight-1.35.74.dist-info → types_boto3_quicksight-1.35.84.dist-info}/top_level.txt +0 -0
@@ -12,9 +12,9 @@ def print_info() -> None:
|
|
12
12
|
Print package info to stdout.
|
13
13
|
"""
|
14
14
|
print(
|
15
|
-
"Type annotations for boto3 QuickSight 1.35.
|
16
|
-
"Version: 1.35.
|
17
|
-
"Builder version: 8.
|
15
|
+
"Type annotations for boto3 QuickSight 1.35.84\n"
|
16
|
+
"Version: 1.35.84\n"
|
17
|
+
"Builder version: 8.6.4\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
|
-
print("1.35.
|
29
|
+
print("1.35.84")
|
30
30
|
|
31
31
|
|
32
32
|
def main() -> None:
|
@@ -1079,12 +1079,15 @@ ServiceName = Literal[
|
|
1079
1079
|
"b2bi",
|
1080
1080
|
"backup",
|
1081
1081
|
"backup-gateway",
|
1082
|
+
"backupsearch",
|
1082
1083
|
"batch",
|
1083
1084
|
"bcm-data-exports",
|
1084
1085
|
"bcm-pricing-calculator",
|
1085
1086
|
"bedrock",
|
1086
1087
|
"bedrock-agent",
|
1087
1088
|
"bedrock-agent-runtime",
|
1089
|
+
"bedrock-data-automation",
|
1090
|
+
"bedrock-data-automation-runtime",
|
1088
1091
|
"bedrock-runtime",
|
1089
1092
|
"billing",
|
1090
1093
|
"billingconductor",
|
@@ -1077,12 +1077,15 @@ ServiceName = Literal[
|
|
1077
1077
|
"b2bi",
|
1078
1078
|
"backup",
|
1079
1079
|
"backup-gateway",
|
1080
|
+
"backupsearch",
|
1080
1081
|
"batch",
|
1081
1082
|
"bcm-data-exports",
|
1082
1083
|
"bcm-pricing-calculator",
|
1083
1084
|
"bedrock",
|
1084
1085
|
"bedrock-agent",
|
1085
1086
|
"bedrock-agent-runtime",
|
1087
|
+
"bedrock-data-automation",
|
1088
|
+
"bedrock-data-automation-runtime",
|
1086
1089
|
"bedrock-runtime",
|
1087
1090
|
"billing",
|
1088
1091
|
"billingconductor",
|
@@ -1604,6 +1604,8 @@ __all__ = (
|
|
1604
1604
|
"PercentVisibleRangeTypeDef",
|
1605
1605
|
"PercentageDisplayFormatConfigurationTypeDef",
|
1606
1606
|
"PercentileAggregationTypeDef",
|
1607
|
+
"PerformanceConfigurationOutputTypeDef",
|
1608
|
+
"PerformanceConfigurationTypeDef",
|
1607
1609
|
"PeriodOverPeriodComputationTypeDef",
|
1608
1610
|
"PeriodToDateComputationTypeDef",
|
1609
1611
|
"PhysicalTableOutputTypeDef",
|
@@ -2184,6 +2186,9 @@ __all__ = (
|
|
2184
2186
|
"TypographyUnionTypeDef",
|
2185
2187
|
"UIColorPaletteTypeDef",
|
2186
2188
|
"UnaggregatedFieldTypeDef",
|
2189
|
+
"UniqueKeyOutputTypeDef",
|
2190
|
+
"UniqueKeyTypeDef",
|
2191
|
+
"UniqueKeyUnionTypeDef",
|
2187
2192
|
"UniqueValuesComputationTypeDef",
|
2188
2193
|
"UntagColumnOperationOutputTypeDef",
|
2189
2194
|
"UntagColumnOperationTypeDef",
|
@@ -4800,6 +4805,10 @@ class PercentVisibleRangeTypeDef(TypedDict):
|
|
4800
4805
|
To: NotRequired[float]
|
4801
4806
|
|
4802
4807
|
|
4808
|
+
class UniqueKeyOutputTypeDef(TypedDict):
|
4809
|
+
ColumnNames: List[str]
|
4810
|
+
|
4811
|
+
|
4803
4812
|
class PivotTableConditionalFormattingScopeTypeDef(TypedDict):
|
4804
4813
|
Role: NotRequired[PivotTableConditionalFormattingScopeRoleType]
|
4805
4814
|
|
@@ -4886,9 +4895,13 @@ class ReferenceLineStaticDataConfigurationTypeDef(TypedDict):
|
|
4886
4895
|
Value: float
|
4887
4896
|
|
4888
4897
|
|
4889
|
-
|
4890
|
-
|
4891
|
-
|
4898
|
+
ReferenceLineStyleConfigurationTypeDef = TypedDict(
|
4899
|
+
"ReferenceLineStyleConfigurationTypeDef",
|
4900
|
+
{
|
4901
|
+
"Pattern": NotRequired[ReferenceLinePatternTypeType],
|
4902
|
+
"Color": NotRequired[str],
|
4903
|
+
},
|
4904
|
+
)
|
4892
4905
|
|
4893
4906
|
|
4894
4907
|
class ScheduleRefreshOnEntityTypeDef(TypedDict):
|
@@ -5205,6 +5218,10 @@ class UntagColumnOperationOutputTypeDef(TypedDict):
|
|
5205
5218
|
TagNames: List[ColumnTagNameType]
|
5206
5219
|
|
5207
5220
|
|
5221
|
+
class UniqueKeyTypeDef(TypedDict):
|
5222
|
+
ColumnNames: Sequence[str]
|
5223
|
+
|
5224
|
+
|
5208
5225
|
class UntagColumnOperationTypeDef(TypedDict):
|
5209
5226
|
ColumnName: str
|
5210
5227
|
TagNames: Sequence[ColumnTagNameType]
|
@@ -8100,6 +8117,10 @@ class VisibleRangeOptionsTypeDef(TypedDict):
|
|
8100
8117
|
PercentRange: NotRequired[PercentVisibleRangeTypeDef]
|
8101
8118
|
|
8102
8119
|
|
8120
|
+
class PerformanceConfigurationOutputTypeDef(TypedDict):
|
8121
|
+
UniqueKeys: NotRequired[List[UniqueKeyOutputTypeDef]]
|
8122
|
+
|
8123
|
+
|
8103
8124
|
class PluginVisualOptionsOutputTypeDef(TypedDict):
|
8104
8125
|
VisualProperties: NotRequired[List[PluginVisualPropertyTypeDef]]
|
8105
8126
|
|
@@ -8326,6 +8347,7 @@ class TotalAggregationOptionTypeDef(TypedDict):
|
|
8326
8347
|
TotalAggregationFunction: TotalAggregationFunctionTypeDef
|
8327
8348
|
|
8328
8349
|
|
8350
|
+
UniqueKeyUnionTypeDef = Union[UniqueKeyTypeDef, UniqueKeyOutputTypeDef]
|
8329
8351
|
UntagColumnOperationUnionTypeDef = Union[
|
8330
8352
|
UntagColumnOperationTypeDef, UntagColumnOperationOutputTypeDef
|
8331
8353
|
]
|
@@ -9352,6 +9374,10 @@ class StringDatasetParameterTypeDef(TypedDict):
|
|
9352
9374
|
DefaultValues: NotRequired[StringDatasetParameterDefaultValuesUnionTypeDef]
|
9353
9375
|
|
9354
9376
|
|
9377
|
+
class PerformanceConfigurationTypeDef(TypedDict):
|
9378
|
+
UniqueKeys: NotRequired[Sequence[UniqueKeyUnionTypeDef]]
|
9379
|
+
|
9380
|
+
|
9355
9381
|
class FilterCrossSheetControlOutputTypeDef(TypedDict):
|
9356
9382
|
FilterControlId: str
|
9357
9383
|
SourceFilterId: str
|
@@ -11122,6 +11148,7 @@ class DataSetTypeDef(TypedDict):
|
|
11122
11148
|
ColumnLevelPermissionRules: NotRequired[List[ColumnLevelPermissionRuleOutputTypeDef]]
|
11123
11149
|
DataSetUsageConfiguration: NotRequired[DataSetUsageConfigurationTypeDef]
|
11124
11150
|
DatasetParameters: NotRequired[List[DatasetParameterOutputTypeDef]]
|
11151
|
+
PerformanceConfiguration: NotRequired[PerformanceConfigurationOutputTypeDef]
|
11125
11152
|
|
11126
11153
|
|
11127
11154
|
class ImageCustomActionOperationOutputTypeDef(TypedDict):
|
@@ -12877,6 +12904,7 @@ class UpdateDataSetRequestRequestTypeDef(TypedDict):
|
|
12877
12904
|
ColumnLevelPermissionRules: NotRequired[Sequence[ColumnLevelPermissionRuleTypeDef]]
|
12878
12905
|
DataSetUsageConfiguration: NotRequired[DataSetUsageConfigurationTypeDef]
|
12879
12906
|
DatasetParameters: NotRequired[Sequence[DatasetParameterTypeDef]]
|
12907
|
+
PerformanceConfiguration: NotRequired[PerformanceConfigurationTypeDef]
|
12880
12908
|
|
12881
12909
|
|
12882
12910
|
ColumnHierarchyUnionTypeDef = Union[ColumnHierarchyTypeDef, ColumnHierarchyOutputTypeDef]
|
@@ -13304,6 +13332,7 @@ class CreateDataSetRequestRequestTypeDef(TypedDict):
|
|
13304
13332
|
DataSetUsageConfiguration: NotRequired[DataSetUsageConfigurationTypeDef]
|
13305
13333
|
DatasetParameters: NotRequired[Sequence[DatasetParameterUnionTypeDef]]
|
13306
13334
|
FolderArns: NotRequired[Sequence[str]]
|
13335
|
+
PerformanceConfiguration: NotRequired[PerformanceConfigurationTypeDef]
|
13307
13336
|
|
13308
13337
|
|
13309
13338
|
class LineSeriesAxisDisplayOptionsTypeDef(TypedDict):
|
@@ -1603,6 +1603,8 @@ __all__ = (
|
|
1603
1603
|
"PercentVisibleRangeTypeDef",
|
1604
1604
|
"PercentageDisplayFormatConfigurationTypeDef",
|
1605
1605
|
"PercentileAggregationTypeDef",
|
1606
|
+
"PerformanceConfigurationOutputTypeDef",
|
1607
|
+
"PerformanceConfigurationTypeDef",
|
1606
1608
|
"PeriodOverPeriodComputationTypeDef",
|
1607
1609
|
"PeriodToDateComputationTypeDef",
|
1608
1610
|
"PhysicalTableOutputTypeDef",
|
@@ -2183,6 +2185,9 @@ __all__ = (
|
|
2183
2185
|
"TypographyUnionTypeDef",
|
2184
2186
|
"UIColorPaletteTypeDef",
|
2185
2187
|
"UnaggregatedFieldTypeDef",
|
2188
|
+
"UniqueKeyOutputTypeDef",
|
2189
|
+
"UniqueKeyTypeDef",
|
2190
|
+
"UniqueKeyUnionTypeDef",
|
2186
2191
|
"UniqueValuesComputationTypeDef",
|
2187
2192
|
"UntagColumnOperationOutputTypeDef",
|
2188
2193
|
"UntagColumnOperationTypeDef",
|
@@ -4372,6 +4377,9 @@ class PercentVisibleRangeTypeDef(TypedDict):
|
|
4372
4377
|
From: NotRequired[float]
|
4373
4378
|
To: NotRequired[float]
|
4374
4379
|
|
4380
|
+
class UniqueKeyOutputTypeDef(TypedDict):
|
4381
|
+
ColumnNames: List[str]
|
4382
|
+
|
4375
4383
|
class PivotTableConditionalFormattingScopeTypeDef(TypedDict):
|
4376
4384
|
Role: NotRequired[PivotTableConditionalFormattingScopeRoleType]
|
4377
4385
|
|
@@ -4441,9 +4449,13 @@ class ReferenceLineCustomLabelConfigurationTypeDef(TypedDict):
|
|
4441
4449
|
class ReferenceLineStaticDataConfigurationTypeDef(TypedDict):
|
4442
4450
|
Value: float
|
4443
4451
|
|
4444
|
-
|
4445
|
-
|
4446
|
-
|
4452
|
+
ReferenceLineStyleConfigurationTypeDef = TypedDict(
|
4453
|
+
"ReferenceLineStyleConfigurationTypeDef",
|
4454
|
+
{
|
4455
|
+
"Pattern": NotRequired[ReferenceLinePatternTypeType],
|
4456
|
+
"Color": NotRequired[str],
|
4457
|
+
},
|
4458
|
+
)
|
4447
4459
|
|
4448
4460
|
class ScheduleRefreshOnEntityTypeDef(TypedDict):
|
4449
4461
|
DayOfWeek: NotRequired[DayOfWeekType]
|
@@ -4705,6 +4717,9 @@ class UntagColumnOperationOutputTypeDef(TypedDict):
|
|
4705
4717
|
ColumnName: str
|
4706
4718
|
TagNames: List[ColumnTagNameType]
|
4707
4719
|
|
4720
|
+
class UniqueKeyTypeDef(TypedDict):
|
4721
|
+
ColumnNames: Sequence[str]
|
4722
|
+
|
4708
4723
|
class UntagColumnOperationTypeDef(TypedDict):
|
4709
4724
|
ColumnName: str
|
4710
4725
|
TagNames: Sequence[ColumnTagNameType]
|
@@ -7179,6 +7194,9 @@ class ParametersOutputTypeDef(TypedDict):
|
|
7179
7194
|
class VisibleRangeOptionsTypeDef(TypedDict):
|
7180
7195
|
PercentRange: NotRequired[PercentVisibleRangeTypeDef]
|
7181
7196
|
|
7197
|
+
class PerformanceConfigurationOutputTypeDef(TypedDict):
|
7198
|
+
UniqueKeys: NotRequired[List[UniqueKeyOutputTypeDef]]
|
7199
|
+
|
7182
7200
|
class PluginVisualOptionsOutputTypeDef(TypedDict):
|
7183
7201
|
VisualProperties: NotRequired[List[PluginVisualPropertyTypeDef]]
|
7184
7202
|
|
@@ -7362,6 +7380,7 @@ class TotalAggregationOptionTypeDef(TypedDict):
|
|
7362
7380
|
FieldId: str
|
7363
7381
|
TotalAggregationFunction: TotalAggregationFunctionTypeDef
|
7364
7382
|
|
7383
|
+
UniqueKeyUnionTypeDef = Union[UniqueKeyTypeDef, UniqueKeyOutputTypeDef]
|
7365
7384
|
UntagColumnOperationUnionTypeDef = Union[
|
7366
7385
|
UntagColumnOperationTypeDef, UntagColumnOperationOutputTypeDef
|
7367
7386
|
]
|
@@ -8236,6 +8255,9 @@ class StringDatasetParameterTypeDef(TypedDict):
|
|
8236
8255
|
ValueType: DatasetParameterValueTypeType
|
8237
8256
|
DefaultValues: NotRequired[StringDatasetParameterDefaultValuesUnionTypeDef]
|
8238
8257
|
|
8258
|
+
class PerformanceConfigurationTypeDef(TypedDict):
|
8259
|
+
UniqueKeys: NotRequired[Sequence[UniqueKeyUnionTypeDef]]
|
8260
|
+
|
8239
8261
|
class FilterCrossSheetControlOutputTypeDef(TypedDict):
|
8240
8262
|
FilterControlId: str
|
8241
8263
|
SourceFilterId: str
|
@@ -9785,6 +9807,7 @@ class DataSetTypeDef(TypedDict):
|
|
9785
9807
|
ColumnLevelPermissionRules: NotRequired[List[ColumnLevelPermissionRuleOutputTypeDef]]
|
9786
9808
|
DataSetUsageConfiguration: NotRequired[DataSetUsageConfigurationTypeDef]
|
9787
9809
|
DatasetParameters: NotRequired[List[DatasetParameterOutputTypeDef]]
|
9810
|
+
PerformanceConfiguration: NotRequired[PerformanceConfigurationOutputTypeDef]
|
9788
9811
|
|
9789
9812
|
class ImageCustomActionOperationOutputTypeDef(TypedDict):
|
9790
9813
|
NavigationOperation: NotRequired[CustomActionNavigationOperationTypeDef]
|
@@ -11289,6 +11312,7 @@ class UpdateDataSetRequestRequestTypeDef(TypedDict):
|
|
11289
11312
|
ColumnLevelPermissionRules: NotRequired[Sequence[ColumnLevelPermissionRuleTypeDef]]
|
11290
11313
|
DataSetUsageConfiguration: NotRequired[DataSetUsageConfigurationTypeDef]
|
11291
11314
|
DatasetParameters: NotRequired[Sequence[DatasetParameterTypeDef]]
|
11315
|
+
PerformanceConfiguration: NotRequired[PerformanceConfigurationTypeDef]
|
11292
11316
|
|
11293
11317
|
ColumnHierarchyUnionTypeDef = Union[ColumnHierarchyTypeDef, ColumnHierarchyOutputTypeDef]
|
11294
11318
|
AxisDisplayOptionsUnionTypeDef = Union[AxisDisplayOptionsTypeDef, AxisDisplayOptionsOutputTypeDef]
|
@@ -11648,6 +11672,7 @@ class CreateDataSetRequestRequestTypeDef(TypedDict):
|
|
11648
11672
|
DataSetUsageConfiguration: NotRequired[DataSetUsageConfigurationTypeDef]
|
11649
11673
|
DatasetParameters: NotRequired[Sequence[DatasetParameterUnionTypeDef]]
|
11650
11674
|
FolderArns: NotRequired[Sequence[str]]
|
11675
|
+
PerformanceConfiguration: NotRequired[PerformanceConfigurationTypeDef]
|
11651
11676
|
|
11652
11677
|
class LineSeriesAxisDisplayOptionsTypeDef(TypedDict):
|
11653
11678
|
AxisOptions: NotRequired[AxisDisplayOptionsUnionTypeDef]
|
{types_boto3_quicksight-1.35.74.dist-info → types_boto3_quicksight-1.35.84.dist-info}/METADATA
RENAMED
@@ -1,7 +1,7 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: types-boto3-quicksight
|
3
|
-
Version: 1.35.
|
4
|
-
Summary: Type annotations for boto3 QuickSight 1.35.
|
3
|
+
Version: 1.35.84
|
4
|
+
Summary: Type annotations for boto3 QuickSight 1.35.84 service generated with mypy-boto3-builder 8.6.4
|
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
|
@@ -44,7 +44,7 @@ Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
|
|
44
44
|

|
45
45
|
|
46
46
|
Type annotations for
|
47
|
-
[boto3 QuickSight 1.35.
|
47
|
+
[boto3 QuickSight 1.35.84](https://pypi.org/project/boto3/) compatible with
|
48
48
|
[VSCode](https://code.visualstudio.com/),
|
49
49
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
50
50
|
[Emacs](https://www.gnu.org/software/emacs/),
|
@@ -52,8 +52,8 @@ Type annotations for
|
|
52
52
|
[mypy](https://github.com/python/mypy),
|
53
53
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
54
54
|
|
55
|
-
Generated
|
56
|
-
[mypy-boto3-builder 8.
|
55
|
+
Generated with
|
56
|
+
[mypy-boto3-builder 8.6.4](https://github.com/youtype/mypy_boto3_builder).
|
57
57
|
|
58
58
|
More information can be found on
|
59
59
|
[types-boto3](https://pypi.org/project/types-boto3/) page and in
|
@@ -65,6 +65,7 @@ See how it helps you find and fix potential bugs:
|
|
65
65
|
|
66
66
|
- [types-boto3-quicksight](#types-boto3-quicksight)
|
67
67
|
- [How to install](#how-to-install)
|
68
|
+
- [Generate locally (recommended)](<#generate-locally-(recommended)>)
|
68
69
|
- [VSCode extension](#vscode-extension)
|
69
70
|
- [From PyPI with pip](#from-pypi-with-pip)
|
70
71
|
- [How to uninstall](#how-to-uninstall)
|
@@ -95,6 +96,21 @@ See how it helps you find and fix potential bugs:
|
|
95
96
|
|
96
97
|
## How to install
|
97
98
|
|
99
|
+
<a id="generate-locally-(recommended)"></a>
|
100
|
+
|
101
|
+
### Generate locally (recommended)
|
102
|
+
|
103
|
+
You can generate type annotations for `boto3` package locally with
|
104
|
+
`mypy_boto3_builder`. Use
|
105
|
+
[uv](https://docs.astral.sh/uv/getting-started/installation/) for build
|
106
|
+
isolation.
|
107
|
+
|
108
|
+
1. Run mypy-boto3-builder in your package root directory:
|
109
|
+
`uvx --with 'boto3==1.35.84' mypy_boto3_builder`
|
110
|
+
2. Select `boto3` AWS SDK.
|
111
|
+
3. Add `QuickSight` service.
|
112
|
+
4. Use provided commands to install generated packages.
|
113
|
+
|
98
114
|
<a id="vscode-extension"></a>
|
99
115
|
|
100
116
|
### VSCode extension
|
@@ -115,12 +131,10 @@ Install `types-boto3` for `QuickSight` service.
|
|
115
131
|
# install with boto3 type annotations
|
116
132
|
python -m pip install 'types-boto3[quicksight]'
|
117
133
|
|
118
|
-
|
119
134
|
# Lite version does not provide session.client/resource overloads
|
120
135
|
# it is more RAM-friendly, but requires explicit type annotations
|
121
136
|
python -m pip install 'types-boto3-lite[quicksight]'
|
122
137
|
|
123
|
-
|
124
138
|
# standalone installation
|
125
139
|
python -m pip install types-boto3-quicksight
|
126
140
|
```
|
@@ -0,0 +1,18 @@
|
|
1
|
+
types_boto3_quicksight/__init__.py,sha256=53cuDZStDP0JwXuP0VowWxbOXphebzmw0YpfEoHsf38,7809
|
2
|
+
types_boto3_quicksight/__init__.pyi,sha256=lhes1ro8TG4uHW9EMvVX61SM9bYsEiti65AVZnnIw40,7808
|
3
|
+
types_boto3_quicksight/__main__.py,sha256=Yh70EF-PHfUfZs4aM2NvaVU4bobSFAXR6cajA8D19Bk,962
|
4
|
+
types_boto3_quicksight/client.py,sha256=OLP4RqSi7MvnZr3Lo2R9wec76xRahe6SyIPiONKi3Ik,155105
|
5
|
+
types_boto3_quicksight/client.pyi,sha256=7LFEs-mAePSR67rACE1WMrZSf2Rqwfa3cDbFFv-ynnk,155101
|
6
|
+
types_boto3_quicksight/literals.py,sha256=Jp9R--l2YLm0OhDSe8keXRR9p5b9vPlGEJvYm-kL9yg,46052
|
7
|
+
types_boto3_quicksight/literals.pyi,sha256=xvsAm5Jqkm_lT_slOuLj8FJLe7qs3SQXdo9bjPY674w,46050
|
8
|
+
types_boto3_quicksight/paginator.py,sha256=f85xWuBsQDN1nW0TEZgFKWlLPbrFed5Wptk7_wJt5Oo,43548
|
9
|
+
types_boto3_quicksight/paginator.pyi,sha256=_pBE4GI__gGcRIwoJnInftSbgGblaqcska-CvQIEk4c,43475
|
10
|
+
types_boto3_quicksight/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
11
|
+
types_boto3_quicksight/type_defs.py,sha256=yCFkGlsWBw2cULb5clQSl4LXG_4lkO2nSP1MeygfhlA,539420
|
12
|
+
types_boto3_quicksight/type_defs.pyi,sha256=0iD-4038_5ptMl3WDtTLXJIOGxxzWImjHK4UmIo1L7M,537522
|
13
|
+
types_boto3_quicksight/version.py,sha256=vDJjYq_Ebvy9WozQ8tBQcKjuUQrg_uGQcZsc1LyYv-E,93
|
14
|
+
types_boto3_quicksight-1.35.84.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
15
|
+
types_boto3_quicksight-1.35.84.dist-info/METADATA,sha256=OgSjMwrKyEIVoVMxJBzVrqLq5glZ27NijAms5CugaVY,19446
|
16
|
+
types_boto3_quicksight-1.35.84.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
17
|
+
types_boto3_quicksight-1.35.84.dist-info/top_level.txt,sha256=-anjx7RpXcQ2voECP3kbFdst3Z47KOiJtPEoMytDTtk,23
|
18
|
+
types_boto3_quicksight-1.35.84.dist-info/RECORD,,
|
@@ -1,18 +0,0 @@
|
|
1
|
-
types_boto3_quicksight/__init__.py,sha256=53cuDZStDP0JwXuP0VowWxbOXphebzmw0YpfEoHsf38,7809
|
2
|
-
types_boto3_quicksight/__init__.pyi,sha256=lhes1ro8TG4uHW9EMvVX61SM9bYsEiti65AVZnnIw40,7808
|
3
|
-
types_boto3_quicksight/__main__.py,sha256=3e7L3Z28mkb2T-NpcHOtKbQO-ZQxQk1d08ebtnvhlLA,962
|
4
|
-
types_boto3_quicksight/client.py,sha256=OLP4RqSi7MvnZr3Lo2R9wec76xRahe6SyIPiONKi3Ik,155105
|
5
|
-
types_boto3_quicksight/client.pyi,sha256=7LFEs-mAePSR67rACE1WMrZSf2Rqwfa3cDbFFv-ynnk,155101
|
6
|
-
types_boto3_quicksight/literals.py,sha256=IVdyYmw_gwscSGY9Hx3i7F9-8S0QmxOf1h_DWY3XvrU,45962
|
7
|
-
types_boto3_quicksight/literals.pyi,sha256=phGiiA1dJa7aQ1XRinf0yoPncqek_C18Jg1-ZP-4fHg,45960
|
8
|
-
types_boto3_quicksight/paginator.py,sha256=f85xWuBsQDN1nW0TEZgFKWlLPbrFed5Wptk7_wJt5Oo,43548
|
9
|
-
types_boto3_quicksight/paginator.pyi,sha256=_pBE4GI__gGcRIwoJnInftSbgGblaqcska-CvQIEk4c,43475
|
10
|
-
types_boto3_quicksight/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
11
|
-
types_boto3_quicksight/type_defs.py,sha256=k2Ey8HftQZWdLmvS0VqBdtQ27Cltdix3nP2JK_p-mTE,538513
|
12
|
-
types_boto3_quicksight/type_defs.pyi,sha256=oZuhyA6RuncIyyZVLvlHDALTGIukAfBneXimYWfkYZ4,536619
|
13
|
-
types_boto3_quicksight/version.py,sha256=B0P5JUO-cREkwttMqs7oU9i3UOmgK6CWkZC0OK5p5h4,93
|
14
|
-
types_boto3_quicksight-1.35.74.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
15
|
-
types_boto3_quicksight-1.35.74.dist-info/METADATA,sha256=Lxd_kYMeEpQ_Gz1YBbxoFA38RpvAO5_-abkkhagChMs,18891
|
16
|
-
types_boto3_quicksight-1.35.74.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
17
|
-
types_boto3_quicksight-1.35.74.dist-info/top_level.txt,sha256=-anjx7RpXcQ2voECP3kbFdst3Z47KOiJtPEoMytDTtk,23
|
18
|
-
types_boto3_quicksight-1.35.74.dist-info/RECORD,,
|
{types_boto3_quicksight-1.35.74.dist-info → types_boto3_quicksight-1.35.84.dist-info}/LICENSE
RENAMED
File without changes
|
File without changes
|
{types_boto3_quicksight-1.35.74.dist-info → types_boto3_quicksight-1.35.84.dist-info}/top_level.txt
RENAMED
File without changes
|