@aws-sdk/client-quicksight 3.731.1 → 3.732.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/dist-cjs/index.js +17 -9
- package/dist-es/commands/DescribeAnalysisCommand.js +1 -1
- package/dist-es/models/models_0.js +6 -4
- package/dist-es/models/models_1.js +4 -0
- package/dist-es/models/models_3.js +0 -3
- package/dist-es/models/models_4.js +3 -0
- package/dist-types/commands/BatchCreateTopicReviewedAnswerCommand.d.ts +4 -4
- package/dist-types/commands/CreateAnalysisCommand.d.ts +17 -12
- package/dist-types/commands/CreateDashboardCommand.d.ts +17 -12
- package/dist-types/commands/CreateTemplateCommand.d.ts +17 -12
- package/dist-types/commands/CreateTopicCommand.d.ts +2 -2
- package/dist-types/commands/DescribeAnalysisCommand.d.ts +2 -1
- package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +17 -12
- package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +17 -12
- package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +17 -12
- package/dist-types/commands/DescribeTopicCommand.d.ts +2 -2
- package/dist-types/commands/ListTopicReviewedAnswersCommand.d.ts +4 -4
- package/dist-types/commands/UpdateAnalysisCommand.d.ts +17 -12
- package/dist-types/commands/UpdateApplicationWithTokenExchangeGrantCommand.d.ts +1 -2
- package/dist-types/commands/UpdateDashboardCommand.d.ts +17 -12
- package/dist-types/commands/UpdateTemplateCommand.d.ts +17 -12
- package/dist-types/commands/UpdateTopicCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +19 -12
- package/dist-types/models/models_1.d.ts +13 -17
- package/dist-types/models/models_2.d.ts +17 -22
- package/dist-types/models/models_3.d.ts +23 -27
- package/dist-types/models/models_4.d.ts +24 -14
- package/dist-types/models/models_5.d.ts +17 -2
- package/dist-types/ts3.4/commands/DescribeAnalysisCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateApplicationWithTokenExchangeGrantCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +9 -6
- package/dist-types/ts3.4/models/models_1.d.ts +6 -5
- package/dist-types/ts3.4/models/models_2.d.ts +5 -5
- package/dist-types/ts3.4/models/models_3.d.ts +4 -10
- package/dist-types/ts3.4/models/models_4.d.ts +9 -4
- package/dist-types/ts3.4/models/models_5.d.ts +5 -1
- package/package.json +1 -1
|
@@ -1,7 +1,23 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { AggFunction, AggregationPartitionBy, AggType, AmazonElasticsearchParameters, AmazonOpenSearchParameters, AnalysisDefaults, AssetOptions, AxisDisplayOptions, CalculatedField, ChartAxisLabelOptions, ColumnConfiguration, DataLabelOptions, DataSetIdentifierDeclaration, DimensionField, FilterControl, FilterGroup, FontConfiguration, Layout, LegendOptions, MeasureField, NumberScale, ParameterControl, ParameterDeclaration, QueryExecutionOptions, ResourceStatus, SheetContentType, SheetControlLayout, SheetImage, SheetTextBox, TimeGranularity, TopicTimeGranularity, URLTargetConfiguration, Visibility, VisualCustomAction, VisualInteractionOptions } from "./models_0";
|
|
3
|
-
import { BarChartVisual, BoxPlotVisual, ColorScale, ColumnHierarchy, ComboChartVisual, ConditionalFormattingColor, CustomContentVisual, EmptyVisual, FieldSortOptions, FilledMapVisual, FunnelChartVisual, GaugeChartVisual, GeospatialMapVisual, HeatMapVisual, HistogramVisual, InsightVisual, ItemsLimitConfiguration, KPIVisual, LayerMapVisual, LineChartVisual, PaginationConfiguration, PieChartVisual, PivotTableVisual, PluginVisualFieldWell,
|
|
3
|
+
import { BarChartVisual, BoxPlotVisual, ColorScale, ColumnHierarchy, ComboChartVisual, ConditionalFormattingColor, CustomContentVisual, EmptyVisual, FieldSortOptions, FilledMapVisual, FunnelChartVisual, GaugeChartVisual, GeospatialMapVisual, HeatMapVisual, HistogramVisual, InsightVisual, ItemsLimitConfiguration, KPIVisual, LayerMapVisual, LineChartVisual, PaginationConfiguration, PieChartVisual, PivotTableVisual, PluginVisualFieldWell, PluginVisualItemsLimitConfiguration, RowAlternateColorOptions, TableCellStyle, TableTotalsPlacement, TableTotalsScrollStatus, TextConditionalFormat, TooltipOptions, TotalAggregationOption, UnaggregatedField, VisualPalette, VisualSubtitleLabelOptions, VisualTitleLabelOptions } from "./models_1";
|
|
4
4
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
5
|
+
/**
|
|
6
|
+
* <p>The table query sorting options for the plugin visual.</p>
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export interface PluginVisualTableQuerySort {
|
|
10
|
+
/**
|
|
11
|
+
* <p>Determines how data is sorted in the response.</p>
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
RowSort?: FieldSortOptions[] | undefined;
|
|
15
|
+
/**
|
|
16
|
+
* <p>The maximum amount of data to be returned by a query.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
ItemsLimitConfiguration?: PluginVisualItemsLimitConfiguration | undefined;
|
|
20
|
+
}
|
|
5
21
|
/**
|
|
6
22
|
* <p>Determines how the plugin visual sorts the data during query.</p>
|
|
7
23
|
* @public
|
|
@@ -7243,27 +7259,6 @@ export interface ColumnGroupSchema {
|
|
|
7243
7259
|
*/
|
|
7244
7260
|
ColumnGroupColumnSchemaList?: ColumnGroupColumnSchema[] | undefined;
|
|
7245
7261
|
}
|
|
7246
|
-
/**
|
|
7247
|
-
* <p>A rule defined to grant access on one or more restricted columns.
|
|
7248
|
-
* Each dataset can have multiple rules.
|
|
7249
|
-
* To create a restricted column, you add it to one or more rules.
|
|
7250
|
-
* Each rule must contain at least one column and at least one user or group.
|
|
7251
|
-
* To be able to see a restricted column, a user or group needs to be added
|
|
7252
|
-
* to a rule for that column.</p>
|
|
7253
|
-
* @public
|
|
7254
|
-
*/
|
|
7255
|
-
export interface ColumnLevelPermissionRule {
|
|
7256
|
-
/**
|
|
7257
|
-
* <p>An array of Amazon Resource Names (ARNs) for Amazon QuickSight users or groups.</p>
|
|
7258
|
-
* @public
|
|
7259
|
-
*/
|
|
7260
|
-
Principals?: string[] | undefined;
|
|
7261
|
-
/**
|
|
7262
|
-
* <p>An array of column names.</p>
|
|
7263
|
-
* @public
|
|
7264
|
-
*/
|
|
7265
|
-
ColumnNames?: string[] | undefined;
|
|
7266
|
-
}
|
|
7267
7262
|
/**
|
|
7268
7263
|
* @internal
|
|
7269
7264
|
*/
|
|
@@ -1,7 +1,28 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { AccountCustomization, AccountInfo, AccountSettings, AdHocFilteringOption,
|
|
3
|
-
import { AnalysisDefinition, AnalysisSourceEntity, AssignmentStatus, AuthenticationMethodOption, AuthorSpecifiedAggregation, BorderStyle, BrandDefinition, BrandDetail, CalculatedColumn, Capabilities, CastColumnTypeOperation, CategoryFilterFunction, CategoryFilterType, CellValueSynonym, CollectiveConstant, ColumnDataRole, ColumnDataSubType, ColumnDataType, ColumnDescription, ColumnGroup, ColumnGroupSchema,
|
|
2
|
+
import { AccountCustomization, AccountInfo, AccountSettings, AdHocFilteringOption, AnalysisDefaults, AssetOptions, CalculatedField, ColumnConfiguration, DashboardBehavior, DataSetIdentifierDeclaration, Edition, Entity, FilterGroup, ParameterDeclaration, QueryExecutionOptions, ResourceStatus, Sheet, TimeGranularity, TopicTimeGranularity, VisualMenuOption } from "./models_0";
|
|
3
|
+
import { AnalysisDefinition, AnalysisSourceEntity, AssignmentStatus, AuthenticationMethodOption, AuthorSpecifiedAggregation, BorderStyle, BrandDefinition, BrandDetail, CalculatedColumn, Capabilities, CastColumnTypeOperation, CategoryFilterFunction, CategoryFilterType, CellValueSynonym, CollectiveConstant, ColumnDataRole, ColumnDataSubType, ColumnDataType, ColumnDescription, ColumnGroup, ColumnGroupSchema, ConstantType, DataSetReference, DataSourceParameters, DisplayFormat, DisplayFormatOptions, ExceptionResourceType, FilterClass, FilterOperator, ServiceType, SheetDefinition, SslProperties, StaticFile, Tag, VpcConnectionProperties } from "./models_2";
|
|
4
4
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
5
|
+
/**
|
|
6
|
+
* <p>A rule defined to grant access on one or more restricted columns.
|
|
7
|
+
* Each dataset can have multiple rules.
|
|
8
|
+
* To create a restricted column, you add it to one or more rules.
|
|
9
|
+
* Each rule must contain at least one column and at least one user or group.
|
|
10
|
+
* To be able to see a restricted column, a user or group needs to be added
|
|
11
|
+
* to a rule for that column.</p>
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
export interface ColumnLevelPermissionRule {
|
|
15
|
+
/**
|
|
16
|
+
* <p>An array of Amazon Resource Names (ARNs) for Amazon QuickSight users or groups.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
Principals?: string[] | undefined;
|
|
20
|
+
/**
|
|
21
|
+
* <p>An array of column names.</p>
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
ColumnNames?: string[] | undefined;
|
|
25
|
+
}
|
|
5
26
|
/**
|
|
6
27
|
* @public
|
|
7
28
|
* @enum
|
|
@@ -7647,27 +7668,6 @@ export interface DescribeAnalysisRequest {
|
|
|
7647
7668
|
*/
|
|
7648
7669
|
AnalysisId: string | undefined;
|
|
7649
7670
|
}
|
|
7650
|
-
/**
|
|
7651
|
-
* @public
|
|
7652
|
-
*/
|
|
7653
|
-
export interface DescribeAnalysisResponse {
|
|
7654
|
-
/**
|
|
7655
|
-
* <p>A metadata structure that contains summary information for the analysis that you're
|
|
7656
|
-
* describing.</p>
|
|
7657
|
-
* @public
|
|
7658
|
-
*/
|
|
7659
|
-
Analysis?: Analysis | undefined;
|
|
7660
|
-
/**
|
|
7661
|
-
* <p>The HTTP status of the request.</p>
|
|
7662
|
-
* @public
|
|
7663
|
-
*/
|
|
7664
|
-
Status?: number | undefined;
|
|
7665
|
-
/**
|
|
7666
|
-
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
7667
|
-
* @public
|
|
7668
|
-
*/
|
|
7669
|
-
RequestId?: string | undefined;
|
|
7670
|
-
}
|
|
7671
7671
|
/**
|
|
7672
7672
|
* @internal
|
|
7673
7673
|
*/
|
|
@@ -7828,7 +7828,3 @@ export declare const OutputColumnFilterSensitiveLog: (obj: OutputColumn) => any;
|
|
|
7828
7828
|
* @internal
|
|
7829
7829
|
*/
|
|
7830
7830
|
export declare const DataSetFilterSensitiveLog: (obj: DataSet) => any;
|
|
7831
|
-
/**
|
|
7832
|
-
* @internal
|
|
7833
|
-
*/
|
|
7834
|
-
export declare const DescribeAnalysisResponseFilterSensitiveLog: (obj: DescribeAnalysisResponse) => any;
|
|
@@ -1,8 +1,29 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { AccountCustomization, ActiveIAMPolicyAssignment, AnalysisError, Entity, ResourceStatus, Sheet } from "./models_0";
|
|
2
|
+
import { AccountCustomization, ActiveIAMPolicyAssignment, Analysis, AnalysisError, Entity, ResourceStatus, Sheet } from "./models_0";
|
|
3
3
|
import { AnalysisDefinition, AnalysisSearchFilter, AnalysisSourceEntity, AnalysisSummary, AnonymousUserEmbeddingExperienceConfiguration, AnonymousUserSnapshotJobResult, AssetBundleCloudFormationOverridePropertyConfiguration, AssetBundleExportFormat, AssetBundleExportJobError, AssetBundleExportJobStatus, AssetBundleExportJobSummary, AssetBundleExportJobValidationStrategy, AssetBundleExportJobWarning, AssetBundleImportFailureAction, AssetBundleImportJobError, AssetBundleImportJobOverrideParameters, AssetBundleImportJobOverridePermissions, AssetBundleImportJobOverrideTags, AssetBundleImportJobOverrideValidationStrategy, AssetBundleImportJobStatus, AssetBundleImportJobSummary, AssetBundleImportJobWarning, AssetBundleImportSource, AssetBundleImportSourceDescription, AssignmentStatus, AuthorizedTargetsByService, BookmarksConfigurations, BrandDefinition, BrandDetail, BrandSummary, DashboardVisualId, FilterOperator, SharedViewConfigurations, SnapshotFile, SnapshotS3DestinationConfiguration, Tag } from "./models_2";
|
|
4
4
|
import { _Parameters, CustomPermissions, Dashboard, DashboardError, DashboardPublishOptions, DashboardSearchFilter, DashboardsQAStatus, DashboardSummary, DashboardVersionDefinition, DashboardVersionSummary, DashboardVisualResult, DataSet, DataSetConfiguration, DataSetRefreshProperties, DataSetSearchFilter, DataSetSummary, DataSource, DataSourceSearchFilter, DataSourceSummary, FolderType, Group, GroupMember, IdentityStore, IngestionStatus, LinkSharingConfiguration, NamespaceStatus, RefreshSchedule, ResourcePermission, Role, SharingModel, TemplateAlias, TemplateVersionDefinition, ThemeAlias, ThemeConfiguration, TopicDetails, TopicRefreshSchedule, TopicUserExperienceVersion, ValidationStrategy, VPCConnectionAvailabilityStatus, VPCConnectionResourceStatus } from "./models_3";
|
|
5
5
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export interface DescribeAnalysisResponse {
|
|
10
|
+
/**
|
|
11
|
+
* <p>A metadata structure that contains summary information for the analysis that you're
|
|
12
|
+
* describing.</p>
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
Analysis?: Analysis | undefined;
|
|
16
|
+
/**
|
|
17
|
+
* <p>The HTTP status of the request.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
Status?: number | undefined;
|
|
21
|
+
/**
|
|
22
|
+
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
RequestId?: string | undefined;
|
|
26
|
+
}
|
|
6
27
|
/**
|
|
7
28
|
* @public
|
|
8
29
|
*/
|
|
@@ -7916,20 +7937,9 @@ export interface UpdateAnalysisPermissionsResponse {
|
|
|
7916
7937
|
Status?: number | undefined;
|
|
7917
7938
|
}
|
|
7918
7939
|
/**
|
|
7919
|
-
* @
|
|
7940
|
+
* @internal
|
|
7920
7941
|
*/
|
|
7921
|
-
export
|
|
7922
|
-
/**
|
|
7923
|
-
* <p>The ID of the Amazon Web Services account to be updated with a token exchange grant.</p>
|
|
7924
|
-
* @public
|
|
7925
|
-
*/
|
|
7926
|
-
AwsAccountId: string | undefined;
|
|
7927
|
-
/**
|
|
7928
|
-
* <p>The namespace of the Amazon QuickSight application.</p>
|
|
7929
|
-
* @public
|
|
7930
|
-
*/
|
|
7931
|
-
Namespace: string | undefined;
|
|
7932
|
-
}
|
|
7942
|
+
export declare const DescribeAnalysisResponseFilterSensitiveLog: (obj: DescribeAnalysisResponse) => any;
|
|
7933
7943
|
/**
|
|
7934
7944
|
* @internal
|
|
7935
7945
|
*/
|
|
@@ -1,7 +1,22 @@
|
|
|
1
1
|
import { ResourceStatus } from "./models_0";
|
|
2
|
-
import { AssignmentStatus, BrandDefinition, BrandDetail, Capabilities, ColumnGroup,
|
|
3
|
-
import { _Parameters, DashboardPublishOptions, DashboardSourceEntity, DashboardsQAStatus, DashboardVersionDefinition, DataSetImportMode, DatasetParameter, DataSetUsageConfiguration, DataSourceCredentials, FieldFolder, Group, LinkSharingConfiguration, LogicalTable, PerformanceConfiguration, PhysicalTable, RefreshSchedule, ResourcePermission, Role, RowLevelPermissionDataSet, RowLevelPermissionTagConfiguration, TemplateAlias, TemplateSourceEntity, TemplateVersionDefinition, ThemeAlias, ThemeConfiguration, TopicDetails, TopicRefreshSchedule, ValidationStrategy, VPCConnectionAvailabilityStatus, VPCConnectionResourceStatus } from "./models_3";
|
|
2
|
+
import { AssignmentStatus, BrandDefinition, BrandDetail, Capabilities, ColumnGroup, DataSourceParameters, ServiceType, SslProperties, TopicIR, TopicTemplate, VisualRole, VpcConnectionProperties } from "./models_2";
|
|
3
|
+
import { _Parameters, ColumnLevelPermissionRule, DashboardPublishOptions, DashboardSourceEntity, DashboardsQAStatus, DashboardVersionDefinition, DataSetImportMode, DatasetParameter, DataSetUsageConfiguration, DataSourceCredentials, FieldFolder, Group, LinkSharingConfiguration, LogicalTable, PerformanceConfiguration, PhysicalTable, RefreshSchedule, ResourcePermission, Role, RowLevelPermissionDataSet, RowLevelPermissionTagConfiguration, TemplateAlias, TemplateSourceEntity, TemplateVersionDefinition, ThemeAlias, ThemeConfiguration, TopicDetails, TopicRefreshSchedule, ValidationStrategy, VPCConnectionAvailabilityStatus, VPCConnectionResourceStatus } from "./models_3";
|
|
4
4
|
import { FailedKeyRegistrationEntry, PersonalizationMode, PurchaseMode, QSearchStatus, RegisteredCustomerManagedKey, User, UserRole } from "./models_4";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface UpdateApplicationWithTokenExchangeGrantRequest {
|
|
9
|
+
/**
|
|
10
|
+
* <p>The ID of the Amazon Web Services account to be updated with a token exchange grant.</p>
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
AwsAccountId: string | undefined;
|
|
14
|
+
/**
|
|
15
|
+
* <p>The namespace of the Amazon QuickSight application.</p>
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
Namespace: string | undefined;
|
|
19
|
+
}
|
|
5
20
|
/**
|
|
6
21
|
* @public
|
|
7
22
|
*/
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
DescribeAnalysisResponse,
|
|
6
|
-
} from "../models/models_3";
|
|
3
|
+
import { DescribeAnalysisRequest } from "../models/models_3";
|
|
4
|
+
import { DescribeAnalysisResponse } from "../models/models_4";
|
|
7
5
|
import {
|
|
8
6
|
QuickSightClientResolvedConfig,
|
|
9
7
|
ServiceInputTypes,
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
3
|
+
import {
|
|
4
|
+
UpdateApplicationWithTokenExchangeGrantRequest,
|
|
5
|
+
UpdateApplicationWithTokenExchangeGrantResponse,
|
|
6
|
+
} from "../models/models_5";
|
|
5
7
|
import {
|
|
6
8
|
QuickSightClientResolvedConfig,
|
|
7
9
|
ServiceInputTypes,
|
|
@@ -464,6 +464,8 @@ export interface NegativeValueConfiguration {
|
|
|
464
464
|
export declare const NumberScale: {
|
|
465
465
|
readonly AUTO: "AUTO";
|
|
466
466
|
readonly BILLIONS: "BILLIONS";
|
|
467
|
+
readonly CRORES: "CRORES";
|
|
468
|
+
readonly LAKHS: "LAKHS";
|
|
467
469
|
readonly MILLIONS: "MILLIONS";
|
|
468
470
|
readonly NONE: "NONE";
|
|
469
471
|
readonly THOUSANDS: "THOUSANDS";
|
|
@@ -477,9 +479,16 @@ export declare const NumericSeparatorSymbol: {
|
|
|
477
479
|
};
|
|
478
480
|
export type NumericSeparatorSymbol =
|
|
479
481
|
(typeof NumericSeparatorSymbol)[keyof typeof NumericSeparatorSymbol];
|
|
482
|
+
export declare const DigitGroupingStyle: {
|
|
483
|
+
readonly DEFAULT: "DEFAULT";
|
|
484
|
+
readonly LAKHS: "LAKHS";
|
|
485
|
+
};
|
|
486
|
+
export type DigitGroupingStyle =
|
|
487
|
+
(typeof DigitGroupingStyle)[keyof typeof DigitGroupingStyle];
|
|
480
488
|
export interface ThousandSeparatorOptions {
|
|
481
489
|
Symbol?: NumericSeparatorSymbol | undefined;
|
|
482
490
|
Visibility?: Visibility | undefined;
|
|
491
|
+
GroupingStyle?: DigitGroupingStyle | undefined;
|
|
483
492
|
}
|
|
484
493
|
export interface NumericSeparatorConfiguration {
|
|
485
494
|
DecimalSeparator?: NumericSeparatorSymbol | undefined;
|
|
@@ -1693,12 +1702,6 @@ export interface ReferenceLineValueLabelConfiguration {
|
|
|
1693
1702
|
RelativePosition?: ReferenceLineValueLabelRelativePosition | undefined;
|
|
1694
1703
|
FormatConfiguration?: NumericFormatConfiguration | undefined;
|
|
1695
1704
|
}
|
|
1696
|
-
export declare const ReferenceLineLabelVerticalPosition: {
|
|
1697
|
-
readonly ABOVE: "ABOVE";
|
|
1698
|
-
readonly BELOW: "BELOW";
|
|
1699
|
-
};
|
|
1700
|
-
export type ReferenceLineLabelVerticalPosition =
|
|
1701
|
-
(typeof ReferenceLineLabelVerticalPosition)[keyof typeof ReferenceLineLabelVerticalPosition];
|
|
1702
1705
|
export declare const CustomParameterValuesFilterSensitiveLog: (
|
|
1703
1706
|
obj: CustomParameterValues
|
|
1704
1707
|
) => any;
|
|
@@ -25,7 +25,6 @@ import {
|
|
|
25
25
|
ReferenceLineCustomLabelConfiguration,
|
|
26
26
|
ReferenceLineDataConfiguration,
|
|
27
27
|
ReferenceLineLabelHorizontalPosition,
|
|
28
|
-
ReferenceLineLabelVerticalPosition,
|
|
29
28
|
ReferenceLineValueLabelConfiguration,
|
|
30
29
|
SortDirection,
|
|
31
30
|
TimeGranularity,
|
|
@@ -34,6 +33,12 @@ import {
|
|
|
34
33
|
VisualInteractionOptions,
|
|
35
34
|
WidgetStatus,
|
|
36
35
|
} from "./models_0";
|
|
36
|
+
export declare const ReferenceLineLabelVerticalPosition: {
|
|
37
|
+
readonly ABOVE: "ABOVE";
|
|
38
|
+
readonly BELOW: "BELOW";
|
|
39
|
+
};
|
|
40
|
+
export type ReferenceLineLabelVerticalPosition =
|
|
41
|
+
(typeof ReferenceLineLabelVerticalPosition)[keyof typeof ReferenceLineLabelVerticalPosition];
|
|
37
42
|
export interface ReferenceLineLabelConfiguration {
|
|
38
43
|
ValueLabelConfiguration?: ReferenceLineValueLabelConfiguration | undefined;
|
|
39
44
|
CustomLabelConfiguration?: ReferenceLineCustomLabelConfiguration | undefined;
|
|
@@ -1763,10 +1768,6 @@ export interface PluginVisualFieldWell {
|
|
|
1763
1768
|
export interface PluginVisualItemsLimitConfiguration {
|
|
1764
1769
|
ItemsLimit?: number | undefined;
|
|
1765
1770
|
}
|
|
1766
|
-
export interface PluginVisualTableQuerySort {
|
|
1767
|
-
RowSort?: FieldSortOptions[] | undefined;
|
|
1768
|
-
ItemsLimitConfiguration?: PluginVisualItemsLimitConfiguration | undefined;
|
|
1769
|
-
}
|
|
1770
1771
|
export declare const ReferenceLineLabelConfigurationFilterSensitiveLog: (
|
|
1771
1772
|
obj: ReferenceLineLabelConfiguration
|
|
1772
1773
|
) => any;
|
|
@@ -61,7 +61,7 @@ import {
|
|
|
61
61
|
PieChartVisual,
|
|
62
62
|
PivotTableVisual,
|
|
63
63
|
PluginVisualFieldWell,
|
|
64
|
-
|
|
64
|
+
PluginVisualItemsLimitConfiguration,
|
|
65
65
|
RowAlternateColorOptions,
|
|
66
66
|
TableCellStyle,
|
|
67
67
|
TableTotalsPlacement,
|
|
@@ -75,6 +75,10 @@ import {
|
|
|
75
75
|
VisualTitleLabelOptions,
|
|
76
76
|
} from "./models_1";
|
|
77
77
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
78
|
+
export interface PluginVisualTableQuerySort {
|
|
79
|
+
RowSort?: FieldSortOptions[] | undefined;
|
|
80
|
+
ItemsLimitConfiguration?: PluginVisualItemsLimitConfiguration | undefined;
|
|
81
|
+
}
|
|
78
82
|
export interface PluginVisualSortConfiguration {
|
|
79
83
|
PluginVisualTableQuerySort?: PluginVisualTableQuerySort | undefined;
|
|
80
84
|
}
|
|
@@ -2695,10 +2699,6 @@ export interface ColumnGroupSchema {
|
|
|
2695
2699
|
Name?: string | undefined;
|
|
2696
2700
|
ColumnGroupColumnSchemaList?: ColumnGroupColumnSchema[] | undefined;
|
|
2697
2701
|
}
|
|
2698
|
-
export interface ColumnLevelPermissionRule {
|
|
2699
|
-
Principals?: string[] | undefined;
|
|
2700
|
-
ColumnNames?: string[] | undefined;
|
|
2701
|
-
}
|
|
2702
2702
|
export declare const PluginVisualConfigurationFilterSensitiveLog: (
|
|
2703
2703
|
obj: PluginVisualConfiguration
|
|
2704
2704
|
) => any;
|
|
@@ -4,7 +4,6 @@ import {
|
|
|
4
4
|
AccountInfo,
|
|
5
5
|
AccountSettings,
|
|
6
6
|
AdHocFilteringOption,
|
|
7
|
-
Analysis,
|
|
8
7
|
AnalysisDefaults,
|
|
9
8
|
AssetOptions,
|
|
10
9
|
CalculatedField,
|
|
@@ -44,7 +43,6 @@ import {
|
|
|
44
43
|
ColumnDescription,
|
|
45
44
|
ColumnGroup,
|
|
46
45
|
ColumnGroupSchema,
|
|
47
|
-
ColumnLevelPermissionRule,
|
|
48
46
|
ConstantType,
|
|
49
47
|
DataSetReference,
|
|
50
48
|
DataSourceParameters,
|
|
@@ -61,6 +59,10 @@ import {
|
|
|
61
59
|
VpcConnectionProperties,
|
|
62
60
|
} from "./models_2";
|
|
63
61
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
62
|
+
export interface ColumnLevelPermissionRule {
|
|
63
|
+
Principals?: string[] | undefined;
|
|
64
|
+
ColumnNames?: string[] | undefined;
|
|
65
|
+
}
|
|
64
66
|
export declare const ColumnOrderingType: {
|
|
65
67
|
readonly GREATER_IS_BETTER: "GREATER_IS_BETTER";
|
|
66
68
|
readonly LESSER_IS_BETTER: "LESSER_IS_BETTER";
|
|
@@ -2121,11 +2123,6 @@ export interface DescribeAnalysisRequest {
|
|
|
2121
2123
|
AwsAccountId: string | undefined;
|
|
2122
2124
|
AnalysisId: string | undefined;
|
|
2123
2125
|
}
|
|
2124
|
-
export interface DescribeAnalysisResponse {
|
|
2125
|
-
Analysis?: Analysis | undefined;
|
|
2126
|
-
Status?: number | undefined;
|
|
2127
|
-
RequestId?: string | undefined;
|
|
2128
|
-
}
|
|
2129
2126
|
export declare const ColumnTagFilterSensitiveLog: (obj: ColumnTag) => any;
|
|
2130
2127
|
export declare const DateTimeParameterFilterSensitiveLog: (
|
|
2131
2128
|
obj: DateTimeParameter
|
|
@@ -2226,6 +2223,3 @@ export declare const DashboardVersionFilterSensitiveLog: (
|
|
|
2226
2223
|
export declare const DashboardFilterSensitiveLog: (obj: Dashboard) => any;
|
|
2227
2224
|
export declare const OutputColumnFilterSensitiveLog: (obj: OutputColumn) => any;
|
|
2228
2225
|
export declare const DataSetFilterSensitiveLog: (obj: DataSet) => any;
|
|
2229
|
-
export declare const DescribeAnalysisResponseFilterSensitiveLog: (
|
|
2230
|
-
obj: DescribeAnalysisResponse
|
|
2231
|
-
) => any;
|
|
@@ -2,6 +2,7 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-cli
|
|
|
2
2
|
import {
|
|
3
3
|
AccountCustomization,
|
|
4
4
|
ActiveIAMPolicyAssignment,
|
|
5
|
+
Analysis,
|
|
5
6
|
AnalysisError,
|
|
6
7
|
Entity,
|
|
7
8
|
ResourceStatus,
|
|
@@ -88,6 +89,11 @@ import {
|
|
|
88
89
|
VPCConnectionResourceStatus,
|
|
89
90
|
} from "./models_3";
|
|
90
91
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
92
|
+
export interface DescribeAnalysisResponse {
|
|
93
|
+
Analysis?: Analysis | undefined;
|
|
94
|
+
Status?: number | undefined;
|
|
95
|
+
RequestId?: string | undefined;
|
|
96
|
+
}
|
|
91
97
|
export interface DescribeAnalysisDefinitionRequest {
|
|
92
98
|
AwsAccountId: string | undefined;
|
|
93
99
|
AnalysisId: string | undefined;
|
|
@@ -1983,10 +1989,9 @@ export interface UpdateAnalysisPermissionsResponse {
|
|
|
1983
1989
|
RequestId?: string | undefined;
|
|
1984
1990
|
Status?: number | undefined;
|
|
1985
1991
|
}
|
|
1986
|
-
export
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
}
|
|
1992
|
+
export declare const DescribeAnalysisResponseFilterSensitiveLog: (
|
|
1993
|
+
obj: DescribeAnalysisResponse
|
|
1994
|
+
) => any;
|
|
1990
1995
|
export declare const DescribeAnalysisDefinitionResponseFilterSensitiveLog: (
|
|
1991
1996
|
obj: DescribeAnalysisDefinitionResponse
|
|
1992
1997
|
) => any;
|
|
@@ -5,7 +5,6 @@ import {
|
|
|
5
5
|
BrandDetail,
|
|
6
6
|
Capabilities,
|
|
7
7
|
ColumnGroup,
|
|
8
|
-
ColumnLevelPermissionRule,
|
|
9
8
|
DataSourceParameters,
|
|
10
9
|
ServiceType,
|
|
11
10
|
SslProperties,
|
|
@@ -16,6 +15,7 @@ import {
|
|
|
16
15
|
} from "./models_2";
|
|
17
16
|
import {
|
|
18
17
|
_Parameters,
|
|
18
|
+
ColumnLevelPermissionRule,
|
|
19
19
|
DashboardPublishOptions,
|
|
20
20
|
DashboardSourceEntity,
|
|
21
21
|
DashboardsQAStatus,
|
|
@@ -55,6 +55,10 @@ import {
|
|
|
55
55
|
User,
|
|
56
56
|
UserRole,
|
|
57
57
|
} from "./models_4";
|
|
58
|
+
export interface UpdateApplicationWithTokenExchangeGrantRequest {
|
|
59
|
+
AwsAccountId: string | undefined;
|
|
60
|
+
Namespace: string | undefined;
|
|
61
|
+
}
|
|
58
62
|
export interface UpdateApplicationWithTokenExchangeGrantResponse {
|
|
59
63
|
Status?: number | undefined;
|
|
60
64
|
RequestId?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-quicksight",
|
|
3
3
|
"description": "AWS SDK for JavaScript Quicksight Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.732.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-quicksight",
|