types-boto3-quicksight 1.35.71__py3-none-any.whl → 1.35.93__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 +1 -1
- types_boto3_quicksight/__init__.pyi +1 -1
- types_boto3_quicksight/__main__.py +9 -8
- types_boto3_quicksight/client.py +218 -89
- types_boto3_quicksight/client.pyi +218 -88
- types_boto3_quicksight/literals.py +21 -3
- types_boto3_quicksight/literals.pyi +21 -3
- types_boto3_quicksight/paginator.py +392 -196
- types_boto3_quicksight/paginator.pyi +358 -195
- types_boto3_quicksight/type_defs.py +319 -134
- types_boto3_quicksight/type_defs.pyi +294 -132
- types_boto3_quicksight/version.py +2 -2
- {types_boto3_quicksight-1.35.71.dist-info → types_boto3_quicksight-1.35.93.dist-info}/LICENSE +1 -1
- {types_boto3_quicksight-1.35.71.dist-info → types_boto3_quicksight-1.35.93.dist-info}/METADATA +50 -10
- types_boto3_quicksight-1.35.93.dist-info/RECORD +18 -0
- {types_boto3_quicksight-1.35.71.dist-info → types_boto3_quicksight-1.35.93.dist-info}/WHEEL +1 -1
- types_boto3_quicksight-1.35.71.dist-info/RECORD +0 -18
- {types_boto3_quicksight-1.35.71.dist-info → types_boto3_quicksight-1.35.93.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,7 @@
|
|
1
1
|
"""
|
2
2
|
Type annotations for quicksight service literal definitions.
|
3
3
|
|
4
|
-
[
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/literals/)
|
5
5
|
|
6
6
|
Usage::
|
7
7
|
|
@@ -11,7 +11,7 @@ Usage::
|
|
11
11
|
data: AggTypeType = "AVERAGE"
|
12
12
|
```
|
13
13
|
|
14
|
-
Copyright
|
14
|
+
Copyright 2025 Vlad Emelianov
|
15
15
|
"""
|
16
16
|
|
17
17
|
import sys
|
@@ -114,6 +114,7 @@ __all__ = (
|
|
114
114
|
"FontWeightNameType",
|
115
115
|
"ForecastComputationSeasonalityType",
|
116
116
|
"FunnelChartMeasureDataLabelStyleType",
|
117
|
+
"GeneratedAnswerStatusType",
|
117
118
|
"GeoSpatialCountryCodeType",
|
118
119
|
"GeoSpatialDataRoleType",
|
119
120
|
"GeospatialColorStateType",
|
@@ -129,6 +130,8 @@ __all__ = (
|
|
129
130
|
"IdentityTypeType",
|
130
131
|
"ImageCustomActionTriggerType",
|
131
132
|
"IncludeFolderMembersType",
|
133
|
+
"IncludeGeneratedAnswerType",
|
134
|
+
"IncludeQuickSightQIndexType",
|
132
135
|
"IngestionErrorTypeType",
|
133
136
|
"IngestionRequestSourceType",
|
134
137
|
"IngestionRequestTypeType",
|
@@ -206,6 +209,8 @@ __all__ = (
|
|
206
209
|
"PropertyRoleType",
|
207
210
|
"PropertyUsageType",
|
208
211
|
"PurchaseModeType",
|
212
|
+
"QAResultTypeType",
|
213
|
+
"QSearchStatusType",
|
209
214
|
"QueryExecutionModeType",
|
210
215
|
"QuickSightServiceName",
|
211
216
|
"RadarChartAxesRangeScaleType",
|
@@ -616,6 +621,7 @@ FunnelChartMeasureDataLabelStyleType = Literal[
|
|
616
621
|
"VALUE_AND_PERCENTAGE_BY_PREVIOUS_STAGE",
|
617
622
|
"VALUE_ONLY",
|
618
623
|
]
|
624
|
+
GeneratedAnswerStatusType = Literal["ANSWER_DOWNGRADE", "ANSWER_GENERATED", "ANSWER_RETRIEVED"]
|
619
625
|
GeoSpatialCountryCodeType = Literal["US"]
|
620
626
|
GeoSpatialDataRoleType = Literal[
|
621
627
|
"CITY", "COUNTRY", "COUNTY", "LATITUDE", "LONGITUDE", "POSTCODE", "STATE"
|
@@ -660,6 +666,8 @@ IdentityStoreType = Literal["QUICKSIGHT"]
|
|
660
666
|
IdentityTypeType = Literal["IAM", "IAM_IDENTITY_CENTER", "QUICKSIGHT"]
|
661
667
|
ImageCustomActionTriggerType = Literal["CLICK", "MENU"]
|
662
668
|
IncludeFolderMembersType = Literal["NONE", "ONE_LEVEL", "RECURSE"]
|
669
|
+
IncludeGeneratedAnswerType = Literal["EXCLUDE", "INCLUDE"]
|
670
|
+
IncludeQuickSightQIndexType = Literal["EXCLUDE", "INCLUDE"]
|
663
671
|
IngestionErrorTypeType = Literal[
|
664
672
|
"ACCOUNT_CAPACITY_LIMIT_EXCEEDED",
|
665
673
|
"CONNECTION_FAILURE",
|
@@ -853,6 +861,8 @@ PrimaryValueDisplayTypeType = Literal["ACTUAL", "COMPARISON", "HIDDEN"]
|
|
853
861
|
PropertyRoleType = Literal["ID", "PRIMARY"]
|
854
862
|
PropertyUsageType = Literal["DIMENSION", "INHERIT", "MEASURE"]
|
855
863
|
PurchaseModeType = Literal["AUTO_PURCHASE", "MANUAL"]
|
864
|
+
QAResultTypeType = Literal["DASHBOARD_VISUAL", "GENERATED_ANSWER", "NO_ANSWER"]
|
865
|
+
QSearchStatusType = Literal["DISABLED", "ENABLED"]
|
856
866
|
QueryExecutionModeType = Literal["AUTO", "MANUAL"]
|
857
867
|
RadarChartAxesRangeScaleType = Literal["AUTO", "INDEPENDENT", "SHARED"]
|
858
868
|
RadarChartShapeType = Literal["CIRCLE", "POLYGON"]
|
@@ -897,7 +907,7 @@ SectionPageBreakStatusType = Literal["DISABLED", "ENABLED"]
|
|
897
907
|
SelectAllValueOptionsType = Literal["ALL_VALUES"]
|
898
908
|
SelectedFieldOptionsType = Literal["ALL_FIELDS"]
|
899
909
|
SelectedTooltipTypeType = Literal["BASIC", "DETAILED"]
|
900
|
-
ServiceTypeType = Literal["REDSHIFT"]
|
910
|
+
ServiceTypeType = Literal["QBUSINESS", "REDSHIFT"]
|
901
911
|
SharingModelType = Literal["ACCOUNT", "NAMESPACE"]
|
902
912
|
SheetContentTypeType = Literal["INTERACTIVE", "PAGINATED"]
|
903
913
|
SheetControlDateTimePickerTypeType = Literal["DATE_RANGE", "SINGLE_VALUED"]
|
@@ -1069,12 +1079,15 @@ ServiceName = Literal[
|
|
1069
1079
|
"b2bi",
|
1070
1080
|
"backup",
|
1071
1081
|
"backup-gateway",
|
1082
|
+
"backupsearch",
|
1072
1083
|
"batch",
|
1073
1084
|
"bcm-data-exports",
|
1074
1085
|
"bcm-pricing-calculator",
|
1075
1086
|
"bedrock",
|
1076
1087
|
"bedrock-agent",
|
1077
1088
|
"bedrock-agent-runtime",
|
1089
|
+
"bedrock-data-automation",
|
1090
|
+
"bedrock-data-automation-runtime",
|
1078
1091
|
"bedrock-runtime",
|
1079
1092
|
"billing",
|
1080
1093
|
"billingconductor",
|
@@ -1152,6 +1165,7 @@ ServiceName = Literal[
|
|
1152
1165
|
"drs",
|
1153
1166
|
"ds",
|
1154
1167
|
"ds-data",
|
1168
|
+
"dsql",
|
1155
1169
|
"dynamodb",
|
1156
1170
|
"dynamodbstreams",
|
1157
1171
|
"ebs",
|
@@ -1208,6 +1222,7 @@ ServiceName = Literal[
|
|
1208
1222
|
"inspector-scan",
|
1209
1223
|
"inspector2",
|
1210
1224
|
"internetmonitor",
|
1225
|
+
"invoicing",
|
1211
1226
|
"iot",
|
1212
1227
|
"iot-data",
|
1213
1228
|
"iot-jobs-data",
|
@@ -1294,6 +1309,7 @@ ServiceName = Literal[
|
|
1294
1309
|
"neptune-graph",
|
1295
1310
|
"neptunedata",
|
1296
1311
|
"network-firewall",
|
1312
|
+
"networkflowmonitor",
|
1297
1313
|
"networkmanager",
|
1298
1314
|
"networkmonitor",
|
1299
1315
|
"notifications",
|
@@ -1360,6 +1376,7 @@ ServiceName = Literal[
|
|
1360
1376
|
"s3",
|
1361
1377
|
"s3control",
|
1362
1378
|
"s3outposts",
|
1379
|
+
"s3tables",
|
1363
1380
|
"sagemaker",
|
1364
1381
|
"sagemaker-a2i-runtime",
|
1365
1382
|
"sagemaker-edge",
|
@@ -1372,6 +1389,7 @@ ServiceName = Literal[
|
|
1372
1389
|
"schemas",
|
1373
1390
|
"sdb",
|
1374
1391
|
"secretsmanager",
|
1392
|
+
"security-ir",
|
1375
1393
|
"securityhub",
|
1376
1394
|
"securitylake",
|
1377
1395
|
"serverlessrepo",
|
@@ -1,7 +1,7 @@
|
|
1
1
|
"""
|
2
2
|
Type annotations for quicksight service literal definitions.
|
3
3
|
|
4
|
-
[
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/literals/)
|
5
5
|
|
6
6
|
Usage::
|
7
7
|
|
@@ -11,7 +11,7 @@ Usage::
|
|
11
11
|
data: AggTypeType = "AVERAGE"
|
12
12
|
```
|
13
13
|
|
14
|
-
Copyright
|
14
|
+
Copyright 2025 Vlad Emelianov
|
15
15
|
"""
|
16
16
|
|
17
17
|
import sys
|
@@ -113,6 +113,7 @@ __all__ = (
|
|
113
113
|
"FontWeightNameType",
|
114
114
|
"ForecastComputationSeasonalityType",
|
115
115
|
"FunnelChartMeasureDataLabelStyleType",
|
116
|
+
"GeneratedAnswerStatusType",
|
116
117
|
"GeoSpatialCountryCodeType",
|
117
118
|
"GeoSpatialDataRoleType",
|
118
119
|
"GeospatialColorStateType",
|
@@ -128,6 +129,8 @@ __all__ = (
|
|
128
129
|
"IdentityTypeType",
|
129
130
|
"ImageCustomActionTriggerType",
|
130
131
|
"IncludeFolderMembersType",
|
132
|
+
"IncludeGeneratedAnswerType",
|
133
|
+
"IncludeQuickSightQIndexType",
|
131
134
|
"IngestionErrorTypeType",
|
132
135
|
"IngestionRequestSourceType",
|
133
136
|
"IngestionRequestTypeType",
|
@@ -205,6 +208,8 @@ __all__ = (
|
|
205
208
|
"PropertyRoleType",
|
206
209
|
"PropertyUsageType",
|
207
210
|
"PurchaseModeType",
|
211
|
+
"QAResultTypeType",
|
212
|
+
"QSearchStatusType",
|
208
213
|
"QueryExecutionModeType",
|
209
214
|
"QuickSightServiceName",
|
210
215
|
"RadarChartAxesRangeScaleType",
|
@@ -614,6 +619,7 @@ FunnelChartMeasureDataLabelStyleType = Literal[
|
|
614
619
|
"VALUE_AND_PERCENTAGE_BY_PREVIOUS_STAGE",
|
615
620
|
"VALUE_ONLY",
|
616
621
|
]
|
622
|
+
GeneratedAnswerStatusType = Literal["ANSWER_DOWNGRADE", "ANSWER_GENERATED", "ANSWER_RETRIEVED"]
|
617
623
|
GeoSpatialCountryCodeType = Literal["US"]
|
618
624
|
GeoSpatialDataRoleType = Literal[
|
619
625
|
"CITY", "COUNTRY", "COUNTY", "LATITUDE", "LONGITUDE", "POSTCODE", "STATE"
|
@@ -658,6 +664,8 @@ IdentityStoreType = Literal["QUICKSIGHT"]
|
|
658
664
|
IdentityTypeType = Literal["IAM", "IAM_IDENTITY_CENTER", "QUICKSIGHT"]
|
659
665
|
ImageCustomActionTriggerType = Literal["CLICK", "MENU"]
|
660
666
|
IncludeFolderMembersType = Literal["NONE", "ONE_LEVEL", "RECURSE"]
|
667
|
+
IncludeGeneratedAnswerType = Literal["EXCLUDE", "INCLUDE"]
|
668
|
+
IncludeQuickSightQIndexType = Literal["EXCLUDE", "INCLUDE"]
|
661
669
|
IngestionErrorTypeType = Literal[
|
662
670
|
"ACCOUNT_CAPACITY_LIMIT_EXCEEDED",
|
663
671
|
"CONNECTION_FAILURE",
|
@@ -851,6 +859,8 @@ PrimaryValueDisplayTypeType = Literal["ACTUAL", "COMPARISON", "HIDDEN"]
|
|
851
859
|
PropertyRoleType = Literal["ID", "PRIMARY"]
|
852
860
|
PropertyUsageType = Literal["DIMENSION", "INHERIT", "MEASURE"]
|
853
861
|
PurchaseModeType = Literal["AUTO_PURCHASE", "MANUAL"]
|
862
|
+
QAResultTypeType = Literal["DASHBOARD_VISUAL", "GENERATED_ANSWER", "NO_ANSWER"]
|
863
|
+
QSearchStatusType = Literal["DISABLED", "ENABLED"]
|
854
864
|
QueryExecutionModeType = Literal["AUTO", "MANUAL"]
|
855
865
|
RadarChartAxesRangeScaleType = Literal["AUTO", "INDEPENDENT", "SHARED"]
|
856
866
|
RadarChartShapeType = Literal["CIRCLE", "POLYGON"]
|
@@ -895,7 +905,7 @@ SectionPageBreakStatusType = Literal["DISABLED", "ENABLED"]
|
|
895
905
|
SelectAllValueOptionsType = Literal["ALL_VALUES"]
|
896
906
|
SelectedFieldOptionsType = Literal["ALL_FIELDS"]
|
897
907
|
SelectedTooltipTypeType = Literal["BASIC", "DETAILED"]
|
898
|
-
ServiceTypeType = Literal["REDSHIFT"]
|
908
|
+
ServiceTypeType = Literal["QBUSINESS", "REDSHIFT"]
|
899
909
|
SharingModelType = Literal["ACCOUNT", "NAMESPACE"]
|
900
910
|
SheetContentTypeType = Literal["INTERACTIVE", "PAGINATED"]
|
901
911
|
SheetControlDateTimePickerTypeType = Literal["DATE_RANGE", "SINGLE_VALUED"]
|
@@ -1067,12 +1077,15 @@ ServiceName = Literal[
|
|
1067
1077
|
"b2bi",
|
1068
1078
|
"backup",
|
1069
1079
|
"backup-gateway",
|
1080
|
+
"backupsearch",
|
1070
1081
|
"batch",
|
1071
1082
|
"bcm-data-exports",
|
1072
1083
|
"bcm-pricing-calculator",
|
1073
1084
|
"bedrock",
|
1074
1085
|
"bedrock-agent",
|
1075
1086
|
"bedrock-agent-runtime",
|
1087
|
+
"bedrock-data-automation",
|
1088
|
+
"bedrock-data-automation-runtime",
|
1076
1089
|
"bedrock-runtime",
|
1077
1090
|
"billing",
|
1078
1091
|
"billingconductor",
|
@@ -1150,6 +1163,7 @@ ServiceName = Literal[
|
|
1150
1163
|
"drs",
|
1151
1164
|
"ds",
|
1152
1165
|
"ds-data",
|
1166
|
+
"dsql",
|
1153
1167
|
"dynamodb",
|
1154
1168
|
"dynamodbstreams",
|
1155
1169
|
"ebs",
|
@@ -1206,6 +1220,7 @@ ServiceName = Literal[
|
|
1206
1220
|
"inspector-scan",
|
1207
1221
|
"inspector2",
|
1208
1222
|
"internetmonitor",
|
1223
|
+
"invoicing",
|
1209
1224
|
"iot",
|
1210
1225
|
"iot-data",
|
1211
1226
|
"iot-jobs-data",
|
@@ -1292,6 +1307,7 @@ ServiceName = Literal[
|
|
1292
1307
|
"neptune-graph",
|
1293
1308
|
"neptunedata",
|
1294
1309
|
"network-firewall",
|
1310
|
+
"networkflowmonitor",
|
1295
1311
|
"networkmanager",
|
1296
1312
|
"networkmonitor",
|
1297
1313
|
"notifications",
|
@@ -1358,6 +1374,7 @@ ServiceName = Literal[
|
|
1358
1374
|
"s3",
|
1359
1375
|
"s3control",
|
1360
1376
|
"s3outposts",
|
1377
|
+
"s3tables",
|
1361
1378
|
"sagemaker",
|
1362
1379
|
"sagemaker-a2i-runtime",
|
1363
1380
|
"sagemaker-edge",
|
@@ -1370,6 +1387,7 @@ ServiceName = Literal[
|
|
1370
1387
|
"schemas",
|
1371
1388
|
"sdb",
|
1372
1389
|
"secretsmanager",
|
1390
|
+
"security-ir",
|
1373
1391
|
"securityhub",
|
1374
1392
|
"securitylake",
|
1375
1393
|
"serverlessrepo",
|