@aws-sdk/client-quicksight 3.947.0 → 3.950.0
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.
- package/README.md +8 -0
- package/dist-cjs/index.js +415 -101
- package/dist-es/QuickSight.js +2 -0
- package/dist-es/commands/GetIdentityContextCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/enums.js +49 -17
- package/dist-es/schemas/schemas_0.js +349 -84
- package/dist-types/QuickSight.d.ts +7 -0
- package/dist-types/QuickSightClient.d.ts +3 -2
- package/dist-types/commands/CreateAnalysisCommand.d.ts +194 -0
- package/dist-types/commands/CreateDashboardCommand.d.ts +194 -0
- package/dist-types/commands/CreateDataSetCommand.d.ts +1 -1
- package/dist-types/commands/CreateDataSourceCommand.d.ts +5 -0
- package/dist-types/commands/CreateTemplateCommand.d.ts +194 -0
- package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +194 -0
- package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +194 -0
- package/dist-types/commands/DescribeDashboardSnapshotJobCommand.d.ts +19 -0
- package/dist-types/commands/DescribeDashboardSnapshotJobResultCommand.d.ts +89 -0
- package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +194 -0
- package/dist-types/commands/DescribeThemeAliasCommand.d.ts +1 -1
- package/dist-types/commands/DescribeThemeCommand.d.ts +1 -1
- package/dist-types/commands/DescribeThemePermissionsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTopicCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTopicPermissionsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTopicRefreshCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTopicRefreshScheduleCommand.d.ts +1 -1
- package/dist-types/commands/DescribeUserCommand.d.ts +1 -1
- package/dist-types/commands/GetIdentityContextCommand.d.ts +143 -0
- package/dist-types/commands/StartDashboardSnapshotJobCommand.d.ts +55 -0
- package/dist-types/commands/UpdateAnalysisCommand.d.ts +194 -0
- package/dist-types/commands/UpdateDashboardCommand.d.ts +194 -0
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +5 -0
- package/dist-types/commands/UpdateTemplateCommand.d.ts +194 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +97 -41
- package/dist-types/models/models_0.d.ts +265 -162
- package/dist-types/models/models_1.d.ts +615 -822
- package/dist-types/models/models_2.d.ts +5138 -5090
- package/dist-types/models/models_3.d.ts +3935 -3902
- package/dist-types/models/models_4.d.ts +727 -7
- package/dist-types/schemas/schemas_0.d.ts +33 -0
- package/dist-types/ts3.4/QuickSight.d.ts +17 -0
- package/dist-types/ts3.4/QuickSightClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/CreateDataSetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeThemeAliasCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeThemeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeThemePermissionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTopicCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTopicPermissionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTopicRefreshCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTopicRefreshScheduleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetIdentityContextCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +61 -23
- package/dist-types/ts3.4/models/models_0.d.ts +41 -38
- package/dist-types/ts3.4/models/models_1.d.ts +140 -164
- package/dist-types/ts3.4/models/models_2.d.ts +174 -176
- package/dist-types/ts3.4/models/models_3.d.ts +183 -147
- package/dist-types/ts3.4/models/models_4.d.ts +189 -13
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +33 -0
- package/package.json +3 -3
package/dist-es/QuickSight.js
CHANGED
|
@@ -120,6 +120,7 @@ import { GenerateEmbedUrlForRegisteredUserWithIdentityCommand, } from "./command
|
|
|
120
120
|
import { GetDashboardEmbedUrlCommand, } from "./commands/GetDashboardEmbedUrlCommand";
|
|
121
121
|
import { GetFlowMetadataCommand, } from "./commands/GetFlowMetadataCommand";
|
|
122
122
|
import { GetFlowPermissionsCommand, } from "./commands/GetFlowPermissionsCommand";
|
|
123
|
+
import { GetIdentityContextCommand, } from "./commands/GetIdentityContextCommand";
|
|
123
124
|
import { GetSessionEmbedUrlCommand, } from "./commands/GetSessionEmbedUrlCommand";
|
|
124
125
|
import { ListActionConnectorsCommand, } from "./commands/ListActionConnectorsCommand";
|
|
125
126
|
import { ListAnalysesCommand, } from "./commands/ListAnalysesCommand";
|
|
@@ -347,6 +348,7 @@ const commands = {
|
|
|
347
348
|
GetDashboardEmbedUrlCommand,
|
|
348
349
|
GetFlowMetadataCommand,
|
|
349
350
|
GetFlowPermissionsCommand,
|
|
351
|
+
GetIdentityContextCommand,
|
|
350
352
|
GetSessionEmbedUrlCommand,
|
|
351
353
|
ListActionConnectorsCommand,
|
|
352
354
|
ListAnalysesCommand,
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetIdentityContext } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetIdentityContextCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("QuickSight_20180401", "GetIdentityContext", {})
|
|
13
|
+
.n("QuickSightClient", "GetIdentityContextCommand")
|
|
14
|
+
.sc(GetIdentityContext)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -119,6 +119,7 @@ export * from "./GenerateEmbedUrlForRegisteredUserWithIdentityCommand";
|
|
|
119
119
|
export * from "./GetDashboardEmbedUrlCommand";
|
|
120
120
|
export * from "./GetFlowMetadataCommand";
|
|
121
121
|
export * from "./GetFlowPermissionsCommand";
|
|
122
|
+
export * from "./GetIdentityContextCommand";
|
|
122
123
|
export * from "./GetSessionEmbedUrlCommand";
|
|
123
124
|
export * from "./ListActionConnectorsCommand";
|
|
124
125
|
export * from "./ListAnalysesCommand";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -224,6 +224,34 @@ export const SpecialValue = {
|
|
|
224
224
|
NULL: "NULL",
|
|
225
225
|
OTHER: "OTHER",
|
|
226
226
|
};
|
|
227
|
+
export const DecalPatternType = {
|
|
228
|
+
CHECKERBOARD_LARGE: "CHECKERBOARD_LARGE",
|
|
229
|
+
CHECKERBOARD_MEDIUM: "CHECKERBOARD_MEDIUM",
|
|
230
|
+
CHECKERBOARD_SMALL: "CHECKERBOARD_SMALL",
|
|
231
|
+
CIRCLE_LARGE: "CIRCLE_LARGE",
|
|
232
|
+
CIRCLE_MEDIUM: "CIRCLE_MEDIUM",
|
|
233
|
+
CIRCLE_SMALL: "CIRCLE_SMALL",
|
|
234
|
+
DIAGONAL_LARGE: "DIAGONAL_LARGE",
|
|
235
|
+
DIAGONAL_MEDIUM: "DIAGONAL_MEDIUM",
|
|
236
|
+
DIAGONAL_OPPOSITE_LARGE: "DIAGONAL_OPPOSITE_LARGE",
|
|
237
|
+
DIAGONAL_OPPOSITE_MEDIUM: "DIAGONAL_OPPOSITE_MEDIUM",
|
|
238
|
+
DIAGONAL_OPPOSITE_SMALL: "DIAGONAL_OPPOSITE_SMALL",
|
|
239
|
+
DIAGONAL_SMALL: "DIAGONAL_SMALL",
|
|
240
|
+
DIAMOND_GRID_LARGE: "DIAMOND_GRID_LARGE",
|
|
241
|
+
DIAMOND_GRID_MEDIUM: "DIAMOND_GRID_MEDIUM",
|
|
242
|
+
DIAMOND_GRID_SMALL: "DIAMOND_GRID_SMALL",
|
|
243
|
+
DIAMOND_LARGE: "DIAMOND_LARGE",
|
|
244
|
+
DIAMOND_MEDIUM: "DIAMOND_MEDIUM",
|
|
245
|
+
DIAMOND_SMALL: "DIAMOND_SMALL",
|
|
246
|
+
SOLID: "SOLID",
|
|
247
|
+
TRIANGLE_LARGE: "TRIANGLE_LARGE",
|
|
248
|
+
TRIANGLE_MEDIUM: "TRIANGLE_MEDIUM",
|
|
249
|
+
TRIANGLE_SMALL: "TRIANGLE_SMALL",
|
|
250
|
+
};
|
|
251
|
+
export const DecalStyleType = {
|
|
252
|
+
Auto: "Auto",
|
|
253
|
+
Manual: "Manual",
|
|
254
|
+
};
|
|
227
255
|
export const NegativeValueDisplayMode = {
|
|
228
256
|
NEGATIVE: "NEGATIVE",
|
|
229
257
|
POSITIVE: "POSITIVE",
|
|
@@ -482,6 +510,23 @@ export const BoxPlotFillStyle = {
|
|
|
482
510
|
SOLID: "SOLID",
|
|
483
511
|
TRANSPARENT: "TRANSPARENT",
|
|
484
512
|
};
|
|
513
|
+
export const LineInterpolation = {
|
|
514
|
+
LINEAR: "LINEAR",
|
|
515
|
+
SMOOTH: "SMOOTH",
|
|
516
|
+
STEPPED: "STEPPED",
|
|
517
|
+
};
|
|
518
|
+
export const LineChartLineStyle = {
|
|
519
|
+
DASHED: "DASHED",
|
|
520
|
+
DOTTED: "DOTTED",
|
|
521
|
+
SOLID: "SOLID",
|
|
522
|
+
};
|
|
523
|
+
export const LineChartMarkerShape = {
|
|
524
|
+
CIRCLE: "CIRCLE",
|
|
525
|
+
DIAMOND: "DIAMOND",
|
|
526
|
+
ROUNDED_SQUARE: "ROUNDED_SQUARE",
|
|
527
|
+
SQUARE: "SQUARE",
|
|
528
|
+
TRIANGLE: "TRIANGLE",
|
|
529
|
+
};
|
|
485
530
|
export const SingleYAxisOption = {
|
|
486
531
|
PRIMARY_Y_AXIS: "PRIMARY_Y_AXIS",
|
|
487
532
|
};
|
|
@@ -625,23 +670,6 @@ export const GeospatialMapNavigation = {
|
|
|
625
670
|
DISABLED: "DISABLED",
|
|
626
671
|
ENABLED: "ENABLED",
|
|
627
672
|
};
|
|
628
|
-
export const LineInterpolation = {
|
|
629
|
-
LINEAR: "LINEAR",
|
|
630
|
-
SMOOTH: "SMOOTH",
|
|
631
|
-
STEPPED: "STEPPED",
|
|
632
|
-
};
|
|
633
|
-
export const LineChartLineStyle = {
|
|
634
|
-
DASHED: "DASHED",
|
|
635
|
-
DOTTED: "DOTTED",
|
|
636
|
-
SOLID: "SOLID",
|
|
637
|
-
};
|
|
638
|
-
export const LineChartMarkerShape = {
|
|
639
|
-
CIRCLE: "CIRCLE",
|
|
640
|
-
DIAMOND: "DIAMOND",
|
|
641
|
-
ROUNDED_SQUARE: "ROUNDED_SQUARE",
|
|
642
|
-
SQUARE: "SQUARE",
|
|
643
|
-
TRIANGLE: "TRIANGLE",
|
|
644
|
-
};
|
|
645
673
|
export const MissingDataTreatmentOption = {
|
|
646
674
|
INTERPOLATE: "INTERPOLATE",
|
|
647
675
|
SHOW_AS_BLANK: "SHOW_AS_BLANK",
|
|
@@ -658,6 +686,10 @@ export const ArcThickness = {
|
|
|
658
686
|
SMALL: "SMALL",
|
|
659
687
|
WHOLE: "WHOLE",
|
|
660
688
|
};
|
|
689
|
+
export const DashboardCustomizationStatus = {
|
|
690
|
+
DISABLED: "DISABLED",
|
|
691
|
+
ENABLED: "ENABLED",
|
|
692
|
+
};
|
|
661
693
|
export const PivotTableFieldCollapseState = {
|
|
662
694
|
COLLAPSED: "COLLAPSED",
|
|
663
695
|
EXPANDED: "EXPANDED",
|