@aws-sdk/client-quicksight 3.565.0 → 3.566.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 +76 -6
- package/dist-es/QuickSight.js +2 -0
- package/dist-es/commands/UpdateSPICECapacityConfigurationCommand.js +24 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_1.js +0 -4
- package/dist-es/models/models_2.js +7 -0
- package/dist-es/models/models_3.js +3 -0
- package/dist-es/models/models_4.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +36 -0
- package/dist-types/QuickSight.d.ts +7 -0
- package/dist-types/QuickSightClient.d.ts +3 -2
- package/dist-types/commands/CreateAccountSubscriptionCommand.d.ts +8 -1
- package/dist-types/commands/CreateAnalysisCommand.d.ts +4 -0
- package/dist-types/commands/CreateDashboardCommand.d.ts +4 -0
- package/dist-types/commands/CreateRoleMembershipCommand.d.ts +1 -1
- package/dist-types/commands/CreateTemplateCommand.d.ts +4 -0
- package/dist-types/commands/DeleteRoleCustomPermissionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteRoleMembershipCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +4 -0
- package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +4 -0
- package/dist-types/commands/DescribeRoleCustomPermissionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +4 -0
- package/dist-types/commands/DescribeUserCommand.d.ts +1 -1
- package/dist-types/commands/GenerateEmbedUrlForAnonymousUserCommand.d.ts +3 -0
- package/dist-types/commands/GenerateEmbedUrlForRegisteredUserCommand.d.ts +3 -0
- package/dist-types/commands/ListFoldersCommand.d.ts +2 -1
- package/dist-types/commands/ListGroupMembershipsCommand.d.ts +1 -1
- package/dist-types/commands/ListRoleMembershipsCommand.d.ts +1 -1
- package/dist-types/commands/ListTopicsCommand.d.ts +1 -0
- package/dist-types/commands/ListUsersCommand.d.ts +1 -1
- package/dist-types/commands/RegisterUserCommand.d.ts +2 -2
- package/dist-types/commands/UpdateAnalysisCommand.d.ts +4 -0
- package/dist-types/commands/UpdateDashboardCommand.d.ts +4 -0
- package/dist-types/commands/UpdateRoleCustomPermissionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSPICECapacityConfigurationCommand.d.ts +79 -0
- package/dist-types/commands/UpdateTemplateCommand.d.ts +4 -0
- package/dist-types/commands/UpdateUserCommand.d.ts +2 -2
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_1.d.ts +21 -12
- package/dist-types/models/models_2.d.ts +55 -133
- package/dist-types/models/models_3.d.ts +170 -90
- package/dist-types/models/models_4.d.ts +154 -17
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -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/ListFoldersCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListGroupMembershipsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateSPICECapacityConfigurationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_1.d.ts +5 -6
- package/dist-types/ts3.4/models/models_2.d.ts +17 -26
- package/dist-types/ts3.4/models/models_3.d.ts +34 -20
- package/dist-types/ts3.4/models/models_4.d.ts +36 -1
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +1 -1
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
UpdateSPICECapacityConfigurationRequest,
|
|
5
|
+
UpdateSPICECapacityConfigurationResponse,
|
|
6
|
+
} from "../models/models_4";
|
|
7
|
+
import {
|
|
8
|
+
QuickSightClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../QuickSightClient";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface UpdateSPICECapacityConfigurationCommandInput
|
|
14
|
+
extends UpdateSPICECapacityConfigurationRequest {}
|
|
15
|
+
export interface UpdateSPICECapacityConfigurationCommandOutput
|
|
16
|
+
extends UpdateSPICECapacityConfigurationResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const UpdateSPICECapacityConfigurationCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: UpdateSPICECapacityConfigurationCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
UpdateSPICECapacityConfigurationCommandInput,
|
|
23
|
+
UpdateSPICECapacityConfigurationCommandOutput,
|
|
24
|
+
QuickSightClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: UpdateSPICECapacityConfigurationCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
UpdateSPICECapacityConfigurationCommandInput,
|
|
32
|
+
UpdateSPICECapacityConfigurationCommandOutput,
|
|
33
|
+
QuickSightClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class UpdateSPICECapacityConfigurationCommand extends UpdateSPICECapacityConfigurationCommand_base {}
|
|
@@ -158,6 +158,7 @@ export * from "./UpdateIpRestrictionCommand";
|
|
|
158
158
|
export * from "./UpdatePublicSharingSettingsCommand";
|
|
159
159
|
export * from "./UpdateRefreshScheduleCommand";
|
|
160
160
|
export * from "./UpdateRoleCustomPermissionCommand";
|
|
161
|
+
export * from "./UpdateSPICECapacityConfigurationCommand";
|
|
161
162
|
export * from "./UpdateTemplateAliasCommand";
|
|
162
163
|
export * from "./UpdateTemplateCommand";
|
|
163
164
|
export * from "./UpdateTemplatePermissionsCommand";
|
|
@@ -403,6 +403,10 @@ export interface FunnelChartVisual {
|
|
|
403
403
|
Actions?: VisualCustomAction[];
|
|
404
404
|
ColumnHierarchies?: ColumnHierarchy[];
|
|
405
405
|
}
|
|
406
|
+
export interface GaugeChartColorConfiguration {
|
|
407
|
+
ForegroundColor?: string;
|
|
408
|
+
BackgroundColor?: string;
|
|
409
|
+
}
|
|
406
410
|
export interface GaugeChartFieldWells {
|
|
407
411
|
Values?: MeasureField[];
|
|
408
412
|
TargetValues?: MeasureField[];
|
|
@@ -461,6 +465,7 @@ export interface GaugeChartConfiguration {
|
|
|
461
465
|
DataLabels?: DataLabelOptions;
|
|
462
466
|
TooltipOptions?: TooltipOptions;
|
|
463
467
|
VisualPalette?: VisualPalette;
|
|
468
|
+
ColorConfiguration?: GaugeChartColorConfiguration;
|
|
464
469
|
Interactions?: VisualInteractionOptions;
|
|
465
470
|
}
|
|
466
471
|
export interface GaugeChartArcConditionalFormatting {
|
|
@@ -1745,12 +1750,6 @@ export declare const WordCloudWordCasing: {
|
|
|
1745
1750
|
};
|
|
1746
1751
|
export type WordCloudWordCasing =
|
|
1747
1752
|
(typeof WordCloudWordCasing)[keyof typeof WordCloudWordCasing];
|
|
1748
|
-
export declare const WordCloudWordOrientation: {
|
|
1749
|
-
readonly HORIZONTAL: "HORIZONTAL";
|
|
1750
|
-
readonly HORIZONTAL_AND_VERTICAL: "HORIZONTAL_AND_VERTICAL";
|
|
1751
|
-
};
|
|
1752
|
-
export type WordCloudWordOrientation =
|
|
1753
|
-
(typeof WordCloudWordOrientation)[keyof typeof WordCloudWordOrientation];
|
|
1754
1753
|
export declare const DataPathValueFilterSensitiveLog: (
|
|
1755
1754
|
obj: DataPathValue
|
|
1756
1755
|
) => any;
|
|
@@ -56,9 +56,14 @@ import {
|
|
|
56
56
|
WordCloudFieldWells,
|
|
57
57
|
WordCloudSortConfiguration,
|
|
58
58
|
WordCloudWordCasing,
|
|
59
|
-
WordCloudWordOrientation,
|
|
60
59
|
} from "./models_1";
|
|
61
60
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
61
|
+
export declare const WordCloudWordOrientation: {
|
|
62
|
+
readonly HORIZONTAL: "HORIZONTAL";
|
|
63
|
+
readonly HORIZONTAL_AND_VERTICAL: "HORIZONTAL_AND_VERTICAL";
|
|
64
|
+
};
|
|
65
|
+
export type WordCloudWordOrientation =
|
|
66
|
+
(typeof WordCloudWordOrientation)[keyof typeof WordCloudWordOrientation];
|
|
62
67
|
export declare const WordCloudWordPadding: {
|
|
63
68
|
readonly LARGE: "LARGE";
|
|
64
69
|
readonly MEDIUM: "MEDIUM";
|
|
@@ -196,6 +201,9 @@ export interface DashboardVisualId {
|
|
|
196
201
|
export interface AnonymousUserDashboardVisualEmbeddingConfiguration {
|
|
197
202
|
InitialDashboardVisualId: DashboardVisualId | undefined;
|
|
198
203
|
}
|
|
204
|
+
export interface AnonymousUserGenerativeQnAEmbeddingConfiguration {
|
|
205
|
+
InitialTopicId: string | undefined;
|
|
206
|
+
}
|
|
199
207
|
export interface AnonymousUserQSearchBarEmbeddingConfiguration {
|
|
200
208
|
InitialTopicId: string | undefined;
|
|
201
209
|
}
|
|
@@ -203,6 +211,7 @@ export interface AnonymousUserEmbeddingExperienceConfiguration {
|
|
|
203
211
|
Dashboard?: AnonymousUserDashboardEmbeddingConfiguration;
|
|
204
212
|
DashboardVisual?: AnonymousUserDashboardVisualEmbeddingConfiguration;
|
|
205
213
|
QSearchBar?: AnonymousUserQSearchBarEmbeddingConfiguration;
|
|
214
|
+
GenerativeQnA?: AnonymousUserGenerativeQnAEmbeddingConfiguration;
|
|
206
215
|
}
|
|
207
216
|
export declare const SnapshotFileFormatType: {
|
|
208
217
|
readonly CSV: "CSV";
|
|
@@ -1819,7 +1828,7 @@ export declare class ResourceUnavailableException extends __BaseException {
|
|
|
1819
1828
|
);
|
|
1820
1829
|
}
|
|
1821
1830
|
export interface CreateAccountSubscriptionRequest {
|
|
1822
|
-
Edition
|
|
1831
|
+
Edition?: Edition;
|
|
1823
1832
|
AuthenticationMethod: AuthenticationMethodOption | undefined;
|
|
1824
1833
|
AwsAccountId: string | undefined;
|
|
1825
1834
|
AccountName: string | undefined;
|
|
@@ -1830,6 +1839,9 @@ export interface CreateAccountSubscriptionRequest {
|
|
|
1830
1839
|
AdminGroup?: string[];
|
|
1831
1840
|
AuthorGroup?: string[];
|
|
1832
1841
|
ReaderGroup?: string[];
|
|
1842
|
+
AdminProGroup?: string[];
|
|
1843
|
+
AuthorProGroup?: string[];
|
|
1844
|
+
ReaderProGroup?: string[];
|
|
1833
1845
|
FirstName?: string;
|
|
1834
1846
|
LastName?: string;
|
|
1835
1847
|
EmailAddress?: string;
|
|
@@ -2696,8 +2708,11 @@ export interface CreateRefreshScheduleResponse {
|
|
|
2696
2708
|
}
|
|
2697
2709
|
export declare const Role: {
|
|
2698
2710
|
readonly ADMIN: "ADMIN";
|
|
2711
|
+
readonly ADMIN_PRO: "ADMIN_PRO";
|
|
2699
2712
|
readonly AUTHOR: "AUTHOR";
|
|
2713
|
+
readonly AUTHOR_PRO: "AUTHOR_PRO";
|
|
2700
2714
|
readonly READER: "READER";
|
|
2715
|
+
readonly READER_PRO: "READER_PRO";
|
|
2701
2716
|
};
|
|
2702
2717
|
export type Role = (typeof Role)[keyof typeof Role];
|
|
2703
2718
|
export interface CreateRoleMembershipRequest {
|
|
@@ -2802,30 +2817,6 @@ export interface Font {
|
|
|
2802
2817
|
export interface Typography {
|
|
2803
2818
|
FontFamilies?: Font[];
|
|
2804
2819
|
}
|
|
2805
|
-
export interface UIColorPalette {
|
|
2806
|
-
PrimaryForeground?: string;
|
|
2807
|
-
PrimaryBackground?: string;
|
|
2808
|
-
SecondaryForeground?: string;
|
|
2809
|
-
SecondaryBackground?: string;
|
|
2810
|
-
Accent?: string;
|
|
2811
|
-
AccentForeground?: string;
|
|
2812
|
-
Danger?: string;
|
|
2813
|
-
DangerForeground?: string;
|
|
2814
|
-
Warning?: string;
|
|
2815
|
-
WarningForeground?: string;
|
|
2816
|
-
Success?: string;
|
|
2817
|
-
SuccessForeground?: string;
|
|
2818
|
-
Dimension?: string;
|
|
2819
|
-
DimensionForeground?: string;
|
|
2820
|
-
Measure?: string;
|
|
2821
|
-
MeasureForeground?: string;
|
|
2822
|
-
}
|
|
2823
|
-
export interface ThemeConfiguration {
|
|
2824
|
-
DataColorPalette?: DataColorPalette;
|
|
2825
|
-
UIColorPalette?: UIColorPalette;
|
|
2826
|
-
Sheet?: SheetStyle;
|
|
2827
|
-
Typography?: Typography;
|
|
2828
|
-
}
|
|
2829
2820
|
export declare const WordCloudChartConfigurationFilterSensitiveLog: (
|
|
2830
2821
|
obj: WordCloudChartConfiguration
|
|
2831
2822
|
) => any;
|
|
@@ -50,6 +50,7 @@ import {
|
|
|
50
50
|
DashboardPublishOptions,
|
|
51
51
|
DashboardVersionDefinition,
|
|
52
52
|
DashboardVisualId,
|
|
53
|
+
DataColorPalette,
|
|
53
54
|
DataSetConfiguration,
|
|
54
55
|
DataSetImportMode,
|
|
55
56
|
DatasetParameter,
|
|
@@ -75,16 +76,41 @@ import {
|
|
|
75
76
|
RowLevelPermissionTagConfiguration,
|
|
76
77
|
ServiceType,
|
|
77
78
|
SharingModel,
|
|
79
|
+
SheetStyle,
|
|
78
80
|
SnapshotFile,
|
|
79
81
|
SnapshotS3DestinationConfiguration,
|
|
80
82
|
SslProperties,
|
|
81
83
|
Tag,
|
|
82
84
|
TemplateAlias,
|
|
83
85
|
TemplateVersionDefinition,
|
|
84
|
-
|
|
86
|
+
Typography,
|
|
85
87
|
VpcConnectionProperties,
|
|
86
88
|
} from "./models_2";
|
|
87
89
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
90
|
+
export interface UIColorPalette {
|
|
91
|
+
PrimaryForeground?: string;
|
|
92
|
+
PrimaryBackground?: string;
|
|
93
|
+
SecondaryForeground?: string;
|
|
94
|
+
SecondaryBackground?: string;
|
|
95
|
+
Accent?: string;
|
|
96
|
+
AccentForeground?: string;
|
|
97
|
+
Danger?: string;
|
|
98
|
+
DangerForeground?: string;
|
|
99
|
+
Warning?: string;
|
|
100
|
+
WarningForeground?: string;
|
|
101
|
+
Success?: string;
|
|
102
|
+
SuccessForeground?: string;
|
|
103
|
+
Dimension?: string;
|
|
104
|
+
DimensionForeground?: string;
|
|
105
|
+
Measure?: string;
|
|
106
|
+
MeasureForeground?: string;
|
|
107
|
+
}
|
|
108
|
+
export interface ThemeConfiguration {
|
|
109
|
+
DataColorPalette?: DataColorPalette;
|
|
110
|
+
UIColorPalette?: UIColorPalette;
|
|
111
|
+
Sheet?: SheetStyle;
|
|
112
|
+
Typography?: Typography;
|
|
113
|
+
}
|
|
88
114
|
export interface CreateThemeRequest {
|
|
89
115
|
AwsAccountId: string | undefined;
|
|
90
116
|
ThemeId: string | undefined;
|
|
@@ -1676,8 +1702,11 @@ export declare const IdentityType: {
|
|
|
1676
1702
|
export type IdentityType = (typeof IdentityType)[keyof typeof IdentityType];
|
|
1677
1703
|
export declare const UserRole: {
|
|
1678
1704
|
readonly ADMIN: "ADMIN";
|
|
1705
|
+
readonly ADMIN_PRO: "ADMIN_PRO";
|
|
1679
1706
|
readonly AUTHOR: "AUTHOR";
|
|
1707
|
+
readonly AUTHOR_PRO: "AUTHOR_PRO";
|
|
1680
1708
|
readonly READER: "READER";
|
|
1709
|
+
readonly READER_PRO: "READER_PRO";
|
|
1681
1710
|
readonly RESTRICTED_AUTHOR: "RESTRICTED_AUTHOR";
|
|
1682
1711
|
readonly RESTRICTED_READER: "RESTRICTED_READER";
|
|
1683
1712
|
};
|
|
@@ -1848,6 +1877,9 @@ export interface RegisteredUserDashboardEmbeddingConfiguration {
|
|
|
1848
1877
|
export interface RegisteredUserDashboardVisualEmbeddingConfiguration {
|
|
1849
1878
|
InitialDashboardVisualId: DashboardVisualId | undefined;
|
|
1850
1879
|
}
|
|
1880
|
+
export interface RegisteredUserGenerativeQnAEmbeddingConfiguration {
|
|
1881
|
+
InitialTopicId?: string;
|
|
1882
|
+
}
|
|
1851
1883
|
export interface RegisteredUserQSearchBarEmbeddingConfiguration {
|
|
1852
1884
|
InitialTopicId?: string;
|
|
1853
1885
|
}
|
|
@@ -1863,6 +1895,7 @@ export interface RegisteredUserEmbeddingExperienceConfiguration {
|
|
|
1863
1895
|
QuickSightConsole?: RegisteredUserQuickSightConsoleEmbeddingConfiguration;
|
|
1864
1896
|
QSearchBar?: RegisteredUserQSearchBarEmbeddingConfiguration;
|
|
1865
1897
|
DashboardVisual?: RegisteredUserDashboardVisualEmbeddingConfiguration;
|
|
1898
|
+
GenerativeQnA?: RegisteredUserGenerativeQnAEmbeddingConfiguration;
|
|
1866
1899
|
}
|
|
1867
1900
|
export interface GenerateEmbedUrlForRegisteredUserRequest {
|
|
1868
1901
|
AwsAccountId: string | undefined;
|
|
@@ -2053,25 +2086,6 @@ export interface ListFoldersRequest {
|
|
|
2053
2086
|
NextToken?: string;
|
|
2054
2087
|
MaxResults?: number;
|
|
2055
2088
|
}
|
|
2056
|
-
export interface ListFoldersResponse {
|
|
2057
|
-
Status?: number;
|
|
2058
|
-
FolderSummaryList?: FolderSummary[];
|
|
2059
|
-
NextToken?: string;
|
|
2060
|
-
RequestId?: string;
|
|
2061
|
-
}
|
|
2062
|
-
export interface ListGroupMembershipsRequest {
|
|
2063
|
-
GroupName: string | undefined;
|
|
2064
|
-
NextToken?: string;
|
|
2065
|
-
MaxResults?: number;
|
|
2066
|
-
AwsAccountId: string | undefined;
|
|
2067
|
-
Namespace: string | undefined;
|
|
2068
|
-
}
|
|
2069
|
-
export interface ListGroupMembershipsResponse {
|
|
2070
|
-
GroupMemberList?: GroupMember[];
|
|
2071
|
-
NextToken?: string;
|
|
2072
|
-
RequestId?: string;
|
|
2073
|
-
Status?: number;
|
|
2074
|
-
}
|
|
2075
2089
|
export declare const SemanticTypeFilterSensitiveLog: (obj: SemanticType) => any;
|
|
2076
2090
|
export declare const TopicCalculatedFieldFilterSensitiveLog: (
|
|
2077
2091
|
obj: TopicCalculatedField
|
|
@@ -32,6 +32,7 @@ import {
|
|
|
32
32
|
DataSourceParameters,
|
|
33
33
|
FieldFolder,
|
|
34
34
|
Group,
|
|
35
|
+
GroupMember,
|
|
35
36
|
LinkSharingConfiguration,
|
|
36
37
|
LogicalTable,
|
|
37
38
|
PhysicalTable,
|
|
@@ -46,7 +47,6 @@ import {
|
|
|
46
47
|
TemplateAlias,
|
|
47
48
|
TemplateSourceEntity,
|
|
48
49
|
TemplateVersionDefinition,
|
|
49
|
-
ThemeConfiguration,
|
|
50
50
|
ValidationStrategy,
|
|
51
51
|
VpcConnectionProperties,
|
|
52
52
|
} from "./models_2";
|
|
@@ -69,14 +69,35 @@ import {
|
|
|
69
69
|
SessionTag,
|
|
70
70
|
SnapshotConfiguration,
|
|
71
71
|
ThemeAlias,
|
|
72
|
+
ThemeConfiguration,
|
|
72
73
|
ThemeType,
|
|
73
74
|
TopicDetails,
|
|
74
75
|
TopicRefreshSchedule,
|
|
76
|
+
TopicUserExperienceVersion,
|
|
75
77
|
User,
|
|
76
78
|
UserRole,
|
|
77
79
|
VPCConnectionAvailabilityStatus,
|
|
78
80
|
VPCConnectionResourceStatus,
|
|
79
81
|
} from "./models_3";
|
|
82
|
+
export interface ListFoldersResponse {
|
|
83
|
+
Status?: number;
|
|
84
|
+
FolderSummaryList?: FolderSummary[];
|
|
85
|
+
NextToken?: string;
|
|
86
|
+
RequestId?: string;
|
|
87
|
+
}
|
|
88
|
+
export interface ListGroupMembershipsRequest {
|
|
89
|
+
GroupName: string | undefined;
|
|
90
|
+
NextToken?: string;
|
|
91
|
+
MaxResults?: number;
|
|
92
|
+
AwsAccountId: string | undefined;
|
|
93
|
+
Namespace: string | undefined;
|
|
94
|
+
}
|
|
95
|
+
export interface ListGroupMembershipsResponse {
|
|
96
|
+
GroupMemberList?: GroupMember[];
|
|
97
|
+
NextToken?: string;
|
|
98
|
+
RequestId?: string;
|
|
99
|
+
Status?: number;
|
|
100
|
+
}
|
|
80
101
|
export interface ListGroupsRequest {
|
|
81
102
|
AwsAccountId: string | undefined;
|
|
82
103
|
NextToken?: string;
|
|
@@ -306,6 +327,7 @@ export interface TopicSummary {
|
|
|
306
327
|
Arn?: string;
|
|
307
328
|
TopicId?: string;
|
|
308
329
|
Name?: string;
|
|
330
|
+
UserExperienceVersion?: TopicUserExperienceVersion;
|
|
309
331
|
}
|
|
310
332
|
export interface ListTopicsResponse {
|
|
311
333
|
TopicsSummaries?: TopicSummary[];
|
|
@@ -363,6 +385,11 @@ export interface ListVPCConnectionsResponse {
|
|
|
363
385
|
RequestId?: string;
|
|
364
386
|
Status?: number;
|
|
365
387
|
}
|
|
388
|
+
export declare const PurchaseMode: {
|
|
389
|
+
readonly AUTO_PURCHASE: "AUTO_PURCHASE";
|
|
390
|
+
readonly MANUAL: "MANUAL";
|
|
391
|
+
};
|
|
392
|
+
export type PurchaseMode = (typeof PurchaseMode)[keyof typeof PurchaseMode];
|
|
366
393
|
export interface PutDataSetRefreshPropertiesRequest {
|
|
367
394
|
AwsAccountId: string | undefined;
|
|
368
395
|
DataSetId: string | undefined;
|
|
@@ -820,6 +847,14 @@ export interface UpdateRoleCustomPermissionResponse {
|
|
|
820
847
|
RequestId?: string;
|
|
821
848
|
Status?: number;
|
|
822
849
|
}
|
|
850
|
+
export interface UpdateSPICECapacityConfigurationRequest {
|
|
851
|
+
AwsAccountId: string | undefined;
|
|
852
|
+
PurchaseMode: PurchaseMode | undefined;
|
|
853
|
+
}
|
|
854
|
+
export interface UpdateSPICECapacityConfigurationResponse {
|
|
855
|
+
RequestId?: string;
|
|
856
|
+
Status?: number;
|
|
857
|
+
}
|
|
823
858
|
export interface UpdateTemplateRequest {
|
|
824
859
|
AwsAccountId: string | undefined;
|
|
825
860
|
TemplateId: string | undefined;
|
|
@@ -643,6 +643,10 @@ import {
|
|
|
643
643
|
UpdateRoleCustomPermissionCommandInput,
|
|
644
644
|
UpdateRoleCustomPermissionCommandOutput,
|
|
645
645
|
} from "../commands/UpdateRoleCustomPermissionCommand";
|
|
646
|
+
import {
|
|
647
|
+
UpdateSPICECapacityConfigurationCommandInput,
|
|
648
|
+
UpdateSPICECapacityConfigurationCommandOutput,
|
|
649
|
+
} from "../commands/UpdateSPICECapacityConfigurationCommand";
|
|
646
650
|
import {
|
|
647
651
|
UpdateTemplateAliasCommandInput,
|
|
648
652
|
UpdateTemplateAliasCommandOutput,
|
|
@@ -1327,6 +1331,10 @@ export declare const se_UpdateRoleCustomPermissionCommand: (
|
|
|
1327
1331
|
input: UpdateRoleCustomPermissionCommandInput,
|
|
1328
1332
|
context: __SerdeContext
|
|
1329
1333
|
) => Promise<__HttpRequest>;
|
|
1334
|
+
export declare const se_UpdateSPICECapacityConfigurationCommand: (
|
|
1335
|
+
input: UpdateSPICECapacityConfigurationCommandInput,
|
|
1336
|
+
context: __SerdeContext
|
|
1337
|
+
) => Promise<__HttpRequest>;
|
|
1330
1338
|
export declare const se_UpdateTemplateCommand: (
|
|
1331
1339
|
input: UpdateTemplateCommandInput,
|
|
1332
1340
|
context: __SerdeContext
|
|
@@ -2011,6 +2019,10 @@ export declare const de_UpdateRoleCustomPermissionCommand: (
|
|
|
2011
2019
|
output: __HttpResponse,
|
|
2012
2020
|
context: __SerdeContext
|
|
2013
2021
|
) => Promise<UpdateRoleCustomPermissionCommandOutput>;
|
|
2022
|
+
export declare const de_UpdateSPICECapacityConfigurationCommand: (
|
|
2023
|
+
output: __HttpResponse,
|
|
2024
|
+
context: __SerdeContext
|
|
2025
|
+
) => Promise<UpdateSPICECapacityConfigurationCommandOutput>;
|
|
2014
2026
|
export declare const de_UpdateTemplateCommand: (
|
|
2015
2027
|
output: __HttpResponse,
|
|
2016
2028
|
context: __SerdeContext
|
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.566.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",
|