@aws-sdk/client-quicksight 3.957.0 → 3.960.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.
Files changed (56) hide show
  1. package/README.md +26 -229
  2. package/dist-cjs/auth/httpAuthSchemeProvider.js +3 -4
  3. package/dist-cjs/index.js +6544 -10649
  4. package/dist-cjs/runtimeConfig.browser.js +1 -2
  5. package/dist-cjs/runtimeConfig.js +2 -4
  6. package/dist-es/QuickSight.js +8 -0
  7. package/dist-es/auth/httpAuthSchemeProvider.js +3 -4
  8. package/dist-es/commands/DescribeSelfUpgradeConfigurationCommand.js +16 -0
  9. package/dist-es/commands/ListSelfUpgradesCommand.js +16 -0
  10. package/dist-es/commands/UpdateSelfUpgradeCommand.js +16 -0
  11. package/dist-es/commands/UpdateSelfUpgradeConfigurationCommand.js +16 -0
  12. package/dist-es/commands/index.js +4 -0
  13. package/dist-es/models/enums.js +16 -0
  14. package/dist-es/models/errors.js +16 -0
  15. package/dist-es/pagination/index.js +6 -6
  16. package/dist-es/runtimeConfig.browser.js +1 -2
  17. package/dist-es/runtimeConfig.js +4 -6
  18. package/dist-es/schemas/schemas_0.js +6252 -10460
  19. package/dist-types/QuickSight.d.ts +28 -0
  20. package/dist-types/QuickSightClient.d.ts +6 -2
  21. package/dist-types/commands/CreateCustomPermissionsCommand.d.ts +1 -0
  22. package/dist-types/commands/DescribeCustomPermissionsCommand.d.ts +1 -0
  23. package/dist-types/commands/DescribeSelfUpgradeConfigurationCommand.d.ts +106 -0
  24. package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +2 -1
  25. package/dist-types/commands/DescribeTemplatePermissionsCommand.d.ts +1 -1
  26. package/dist-types/commands/ListCustomPermissionsCommand.d.ts +1 -0
  27. package/dist-types/commands/ListSelfUpgradesCommand.d.ts +122 -0
  28. package/dist-types/commands/StartDashboardSnapshotJobCommand.d.ts +2 -2
  29. package/dist-types/commands/UpdateCustomPermissionsCommand.d.ts +1 -0
  30. package/dist-types/commands/UpdateSelfUpgradeCommand.d.ts +119 -0
  31. package/dist-types/commands/UpdateSelfUpgradeConfigurationCommand.d.ts +104 -0
  32. package/dist-types/commands/index.d.ts +4 -0
  33. package/dist-types/models/enums.d.ts +40 -0
  34. package/dist-types/models/errors.d.ts +18 -0
  35. package/dist-types/models/models_2.d.ts +5 -0
  36. package/dist-types/models/models_3.d.ts +57 -129
  37. package/dist-types/models/models_4.d.ts +312 -3
  38. package/dist-types/pagination/index.d.ts +6 -6
  39. package/dist-types/schemas/schemas_0.d.ts +15 -0
  40. package/dist-types/ts3.4/QuickSight.d.ts +68 -0
  41. package/dist-types/ts3.4/QuickSightClient.d.ts +24 -0
  42. package/dist-types/ts3.4/commands/DescribeSelfUpgradeConfigurationCommand.d.ts +51 -0
  43. package/dist-types/ts3.4/commands/DescribeTemplateDefinitionCommand.d.ts +2 -4
  44. package/dist-types/ts3.4/commands/DescribeTemplatePermissionsCommand.d.ts +1 -1
  45. package/dist-types/ts3.4/commands/ListSelfUpgradesCommand.d.ts +50 -0
  46. package/dist-types/ts3.4/commands/UpdateSelfUpgradeCommand.d.ts +51 -0
  47. package/dist-types/ts3.4/commands/UpdateSelfUpgradeConfigurationCommand.d.ts +51 -0
  48. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  49. package/dist-types/ts3.4/models/enums.d.ts +22 -0
  50. package/dist-types/ts3.4/models/errors.d.ts +9 -0
  51. package/dist-types/ts3.4/models/models_2.d.ts +1 -0
  52. package/dist-types/ts3.4/models/models_3.d.ts +13 -21
  53. package/dist-types/ts3.4/models/models_4.d.ts +68 -0
  54. package/dist-types/ts3.4/pagination/index.d.ts +6 -6
  55. package/dist-types/ts3.4/schemas/schemas_0.d.ts +15 -0
  56. package/package.json +2 -2
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DescribeSelfUpgradeConfigurationRequest,
5
+ DescribeSelfUpgradeConfigurationResponse,
6
+ } from "../models/models_3";
7
+ import {
8
+ QuickSightClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../QuickSightClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DescribeSelfUpgradeConfigurationCommandInput
15
+ extends DescribeSelfUpgradeConfigurationRequest {}
16
+ export interface DescribeSelfUpgradeConfigurationCommandOutput
17
+ extends DescribeSelfUpgradeConfigurationResponse,
18
+ __MetadataBearer {}
19
+ declare const DescribeSelfUpgradeConfigurationCommand_base: {
20
+ new (
21
+ input: DescribeSelfUpgradeConfigurationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DescribeSelfUpgradeConfigurationCommandInput,
24
+ DescribeSelfUpgradeConfigurationCommandOutput,
25
+ QuickSightClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DescribeSelfUpgradeConfigurationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DescribeSelfUpgradeConfigurationCommandInput,
33
+ DescribeSelfUpgradeConfigurationCommandOutput,
34
+ QuickSightClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DescribeSelfUpgradeConfigurationCommand extends DescribeSelfUpgradeConfigurationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DescribeSelfUpgradeConfigurationRequest;
44
+ output: DescribeSelfUpgradeConfigurationResponse;
45
+ };
46
+ sdk: {
47
+ input: DescribeSelfUpgradeConfigurationCommandInput;
48
+ output: DescribeSelfUpgradeConfigurationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -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
- DescribeTemplateDefinitionRequest,
5
- DescribeTemplateDefinitionResponse,
6
- } from "../models/models_3";
3
+ import { DescribeTemplateDefinitionRequest } from "../models/models_3";
4
+ import { DescribeTemplateDefinitionResponse } from "../models/models_4";
7
5
  import {
8
6
  QuickSightClientResolvedConfig,
9
7
  ServiceInputTypes,
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  DescribeTemplatePermissionsRequest,
5
5
  DescribeTemplatePermissionsResponse,
6
- } from "../models/models_3";
6
+ } from "../models/models_4";
7
7
  import {
8
8
  QuickSightClientResolvedConfig,
9
9
  ServiceInputTypes,
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListSelfUpgradesRequest,
5
+ ListSelfUpgradesResponse,
6
+ } from "../models/models_4";
7
+ import {
8
+ QuickSightClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../QuickSightClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListSelfUpgradesCommandInput extends ListSelfUpgradesRequest {}
15
+ export interface ListSelfUpgradesCommandOutput
16
+ extends ListSelfUpgradesResponse,
17
+ __MetadataBearer {}
18
+ declare const ListSelfUpgradesCommand_base: {
19
+ new (
20
+ input: ListSelfUpgradesCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListSelfUpgradesCommandInput,
23
+ ListSelfUpgradesCommandOutput,
24
+ QuickSightClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: ListSelfUpgradesCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListSelfUpgradesCommandInput,
32
+ ListSelfUpgradesCommandOutput,
33
+ QuickSightClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListSelfUpgradesCommand extends ListSelfUpgradesCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ListSelfUpgradesRequest;
43
+ output: ListSelfUpgradesResponse;
44
+ };
45
+ sdk: {
46
+ input: ListSelfUpgradesCommandInput;
47
+ output: ListSelfUpgradesCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ UpdateSelfUpgradeRequest,
5
+ UpdateSelfUpgradeResponse,
6
+ } from "../models/models_4";
7
+ import {
8
+ QuickSightClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../QuickSightClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateSelfUpgradeCommandInput
15
+ extends UpdateSelfUpgradeRequest {}
16
+ export interface UpdateSelfUpgradeCommandOutput
17
+ extends UpdateSelfUpgradeResponse,
18
+ __MetadataBearer {}
19
+ declare const UpdateSelfUpgradeCommand_base: {
20
+ new (
21
+ input: UpdateSelfUpgradeCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ UpdateSelfUpgradeCommandInput,
24
+ UpdateSelfUpgradeCommandOutput,
25
+ QuickSightClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: UpdateSelfUpgradeCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ UpdateSelfUpgradeCommandInput,
33
+ UpdateSelfUpgradeCommandOutput,
34
+ QuickSightClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class UpdateSelfUpgradeCommand extends UpdateSelfUpgradeCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: UpdateSelfUpgradeRequest;
44
+ output: UpdateSelfUpgradeResponse;
45
+ };
46
+ sdk: {
47
+ input: UpdateSelfUpgradeCommandInput;
48
+ output: UpdateSelfUpgradeCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ UpdateSelfUpgradeConfigurationRequest,
5
+ UpdateSelfUpgradeConfigurationResponse,
6
+ } from "../models/models_4";
7
+ import {
8
+ QuickSightClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../QuickSightClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateSelfUpgradeConfigurationCommandInput
15
+ extends UpdateSelfUpgradeConfigurationRequest {}
16
+ export interface UpdateSelfUpgradeConfigurationCommandOutput
17
+ extends UpdateSelfUpgradeConfigurationResponse,
18
+ __MetadataBearer {}
19
+ declare const UpdateSelfUpgradeConfigurationCommand_base: {
20
+ new (
21
+ input: UpdateSelfUpgradeConfigurationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ UpdateSelfUpgradeConfigurationCommandInput,
24
+ UpdateSelfUpgradeConfigurationCommandOutput,
25
+ QuickSightClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: UpdateSelfUpgradeConfigurationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ UpdateSelfUpgradeConfigurationCommandInput,
33
+ UpdateSelfUpgradeConfigurationCommandOutput,
34
+ QuickSightClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class UpdateSelfUpgradeConfigurationCommand extends UpdateSelfUpgradeConfigurationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: UpdateSelfUpgradeConfigurationRequest;
44
+ output: UpdateSelfUpgradeConfigurationResponse;
45
+ };
46
+ sdk: {
47
+ input: UpdateSelfUpgradeConfigurationCommandInput;
48
+ output: UpdateSelfUpgradeConfigurationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -100,6 +100,7 @@ export * from "./DescribeQPersonalizationConfigurationCommand";
100
100
  export * from "./DescribeQuickSightQSearchConfigurationCommand";
101
101
  export * from "./DescribeRefreshScheduleCommand";
102
102
  export * from "./DescribeRoleCustomPermissionCommand";
103
+ export * from "./DescribeSelfUpgradeConfigurationCommand";
103
104
  export * from "./DescribeTemplateAliasCommand";
104
105
  export * from "./DescribeTemplateCommand";
105
106
  export * from "./DescribeTemplateDefinitionCommand";
@@ -144,6 +145,7 @@ export * from "./ListIngestionsCommand";
144
145
  export * from "./ListNamespacesCommand";
145
146
  export * from "./ListRefreshSchedulesCommand";
146
147
  export * from "./ListRoleMembershipsCommand";
148
+ export * from "./ListSelfUpgradesCommand";
147
149
  export * from "./ListTagsForResourceCommand";
148
150
  export * from "./ListTemplateAliasesCommand";
149
151
  export * from "./ListTemplateVersionsCommand";
@@ -212,6 +214,8 @@ export * from "./UpdateQuickSightQSearchConfigurationCommand";
212
214
  export * from "./UpdateRefreshScheduleCommand";
213
215
  export * from "./UpdateRoleCustomPermissionCommand";
214
216
  export * from "./UpdateSPICECapacityConfigurationCommand";
217
+ export * from "./UpdateSelfUpgradeCommand";
218
+ export * from "./UpdateSelfUpgradeConfigurationCommand";
215
219
  export * from "./UpdateTemplateAliasCommand";
216
220
  export * from "./UpdateTemplateCommand";
217
221
  export * from "./UpdateTemplatePermissionsCommand";
@@ -2000,6 +2000,12 @@ export declare const QSearchStatus: {
2000
2000
  readonly ENABLED: "ENABLED";
2001
2001
  };
2002
2002
  export type QSearchStatus = (typeof QSearchStatus)[keyof typeof QSearchStatus];
2003
+ export declare const SelfUpgradeStatus: {
2004
+ readonly ADMIN_APPROVAL: "ADMIN_APPROVAL";
2005
+ readonly AUTO_APPROVAL: "AUTO_APPROVAL";
2006
+ };
2007
+ export type SelfUpgradeStatus =
2008
+ (typeof SelfUpgradeStatus)[keyof typeof SelfUpgradeStatus];
2003
2009
  export declare const TemplateErrorType: {
2004
2010
  readonly ACCESS_DENIED: "ACCESS_DENIED";
2005
2011
  readonly DATA_SET_NOT_FOUND: "DATA_SET_NOT_FOUND";
@@ -2121,6 +2127,15 @@ export declare const IncludeQuickSightQIndex: {
2121
2127
  };
2122
2128
  export type IncludeQuickSightQIndex =
2123
2129
  (typeof IncludeQuickSightQIndex)[keyof typeof IncludeQuickSightQIndex];
2130
+ export declare const SelfUpgradeRequestStatus: {
2131
+ readonly APPROVED: "APPROVED";
2132
+ readonly DENIED: "DENIED";
2133
+ readonly PENDING: "PENDING";
2134
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
2135
+ readonly VERIFY_FAILED: "VERIFY_FAILED";
2136
+ };
2137
+ export type SelfUpgradeRequestStatus =
2138
+ (typeof SelfUpgradeRequestStatus)[keyof typeof SelfUpgradeRequestStatus];
2124
2139
  export declare const QAResultType: {
2125
2140
  readonly DASHBOARD_VISUAL: "DASHBOARD_VISUAL";
2126
2141
  readonly GENERATED_ANSWER: "GENERATED_ANSWER";
@@ -2155,3 +2170,10 @@ export declare const TopicFilterOperator: {
2155
2170
  };
2156
2171
  export type TopicFilterOperator =
2157
2172
  (typeof TopicFilterOperator)[keyof typeof TopicFilterOperator];
2173
+ export declare const SelfUpgradeAdminAction: {
2174
+ readonly APPROVE: "APPROVE";
2175
+ readonly DENY: "DENY";
2176
+ readonly VERIFY: "VERIFY";
2177
+ };
2178
+ export type SelfUpgradeAdminAction =
2179
+ (typeof SelfUpgradeAdminAction)[keyof typeof SelfUpgradeAdminAction];
@@ -164,6 +164,15 @@ export declare class InvalidNextTokenException extends __BaseException {
164
164
  opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
165
165
  );
166
166
  }
167
+ export declare class InvalidParameterException extends __BaseException {
168
+ readonly name: "InvalidParameterException";
169
+ readonly $fault: "client";
170
+ Message?: string | undefined;
171
+ RequestId?: string | undefined;
172
+ constructor(
173
+ opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
174
+ );
175
+ }
167
176
  export declare class DomainNotWhitelistedException extends __BaseException {
168
177
  readonly name: "DomainNotWhitelistedException";
169
178
  readonly $fault: "client";
@@ -2513,6 +2513,7 @@ export interface Capabilities {
2513
2513
  ChatAgent?: CapabilityState | undefined;
2514
2514
  CreateChatAgents?: CapabilityState | undefined;
2515
2515
  Research?: CapabilityState | undefined;
2516
+ SelfUpgradeUserRole?: CapabilityState | undefined;
2516
2517
  }
2517
2518
  export interface CastColumnTypeOperation {
2518
2519
  ColumnName: string | undefined;
@@ -52,6 +52,7 @@ import {
52
52
  Role,
53
53
  RowLevelPermissionFormatVersion,
54
54
  RowLevelPermissionPolicy,
55
+ SelfUpgradeStatus,
55
56
  ServiceType,
56
57
  SharingModel,
57
58
  SnapshotJobStatus,
@@ -1890,6 +1891,18 @@ export interface DescribeRoleCustomPermissionResponse {
1890
1891
  RequestId?: string | undefined;
1891
1892
  Status?: number | undefined;
1892
1893
  }
1894
+ export interface DescribeSelfUpgradeConfigurationRequest {
1895
+ AwsAccountId: string | undefined;
1896
+ Namespace: string | undefined;
1897
+ }
1898
+ export interface SelfUpgradeConfiguration {
1899
+ SelfUpgradeStatus?: SelfUpgradeStatus | undefined;
1900
+ }
1901
+ export interface DescribeSelfUpgradeConfigurationResponse {
1902
+ SelfUpgradeConfiguration?: SelfUpgradeConfiguration | undefined;
1903
+ RequestId?: string | undefined;
1904
+ Status?: number | undefined;
1905
+ }
1893
1906
  export interface DescribeTemplateRequest {
1894
1907
  AwsAccountId: string | undefined;
1895
1908
  TemplateId: string | undefined;
@@ -1941,24 +1954,3 @@ export interface DescribeTemplateDefinitionRequest {
1941
1954
  VersionNumber?: number | undefined;
1942
1955
  AliasName?: string | undefined;
1943
1956
  }
1944
- export interface DescribeTemplateDefinitionResponse {
1945
- Name?: string | undefined;
1946
- TemplateId?: string | undefined;
1947
- Errors?: TemplateError[] | undefined;
1948
- ResourceStatus?: ResourceStatus | undefined;
1949
- ThemeArn?: string | undefined;
1950
- Definition?: TemplateVersionDefinition | undefined;
1951
- Status?: number | undefined;
1952
- RequestId?: string | undefined;
1953
- }
1954
- export interface DescribeTemplatePermissionsRequest {
1955
- AwsAccountId: string | undefined;
1956
- TemplateId: string | undefined;
1957
- }
1958
- export interface DescribeTemplatePermissionsResponse {
1959
- TemplateId?: string | undefined;
1960
- TemplateArn?: string | undefined;
1961
- Permissions?: ResourcePermission[] | undefined;
1962
- RequestId?: string | undefined;
1963
- Status?: number | undefined;
1964
- }
@@ -25,6 +25,9 @@ import {
25
25
  ResourceStatus,
26
26
  Role,
27
27
  SearchFilterOperator,
28
+ SelfUpgradeAdminAction,
29
+ SelfUpgradeRequestStatus,
30
+ SelfUpgradeStatus,
28
31
  ServiceType,
29
32
  SharingModel,
30
33
  ThemeErrorType,
@@ -123,8 +126,30 @@ import {
123
126
  RefreshSchedule,
124
127
  RegisteredCustomerManagedKey,
125
128
  TemplateAlias,
129
+ TemplateError,
126
130
  ThemeAlias,
127
131
  } from "./models_3";
132
+ export interface DescribeTemplateDefinitionResponse {
133
+ Name?: string | undefined;
134
+ TemplateId?: string | undefined;
135
+ Errors?: TemplateError[] | undefined;
136
+ ResourceStatus?: ResourceStatus | undefined;
137
+ ThemeArn?: string | undefined;
138
+ Definition?: TemplateVersionDefinition | undefined;
139
+ Status?: number | undefined;
140
+ RequestId?: string | undefined;
141
+ }
142
+ export interface DescribeTemplatePermissionsRequest {
143
+ AwsAccountId: string | undefined;
144
+ TemplateId: string | undefined;
145
+ }
146
+ export interface DescribeTemplatePermissionsResponse {
147
+ TemplateId?: string | undefined;
148
+ TemplateArn?: string | undefined;
149
+ Permissions?: ResourcePermission[] | undefined;
150
+ RequestId?: string | undefined;
151
+ Status?: number | undefined;
152
+ }
128
153
  export interface DescribeThemeRequest {
129
154
  AwsAccountId: string | undefined;
130
155
  ThemeId: string | undefined;
@@ -823,6 +848,29 @@ export interface ListRoleMembershipsResponse {
823
848
  RequestId?: string | undefined;
824
849
  Status?: number | undefined;
825
850
  }
851
+ export interface ListSelfUpgradesRequest {
852
+ AwsAccountId: string | undefined;
853
+ Namespace: string | undefined;
854
+ NextToken?: string | undefined;
855
+ MaxResults?: number | undefined;
856
+ }
857
+ export interface SelfUpgradeRequestDetail {
858
+ UpgradeRequestId?: string | undefined;
859
+ UserName?: string | undefined;
860
+ OriginalRole?: UserRole | undefined;
861
+ RequestedRole?: UserRole | undefined;
862
+ RequestNote?: string | undefined;
863
+ CreationTime?: number | undefined;
864
+ RequestStatus?: SelfUpgradeRequestStatus | undefined;
865
+ lastUpdateAttemptTime?: number | undefined;
866
+ lastUpdateFailureReason?: string | undefined;
867
+ }
868
+ export interface ListSelfUpgradesResponse {
869
+ SelfUpgradeRequestDetails?: SelfUpgradeRequestDetail[] | undefined;
870
+ NextToken?: string | undefined;
871
+ RequestId?: string | undefined;
872
+ Status?: number | undefined;
873
+ }
826
874
  export interface ListTagsForResourceRequest {
827
875
  ResourceArn: string | undefined;
828
876
  }
@@ -1706,6 +1754,26 @@ export interface UpdateRoleCustomPermissionResponse {
1706
1754
  RequestId?: string | undefined;
1707
1755
  Status?: number | undefined;
1708
1756
  }
1757
+ export interface UpdateSelfUpgradeRequest {
1758
+ AwsAccountId: string | undefined;
1759
+ Namespace: string | undefined;
1760
+ UpgradeRequestId: string | undefined;
1761
+ Action: SelfUpgradeAdminAction | undefined;
1762
+ }
1763
+ export interface UpdateSelfUpgradeResponse {
1764
+ SelfUpgradeRequestDetail?: SelfUpgradeRequestDetail | undefined;
1765
+ RequestId?: string | undefined;
1766
+ Status?: number | undefined;
1767
+ }
1768
+ export interface UpdateSelfUpgradeConfigurationRequest {
1769
+ AwsAccountId: string | undefined;
1770
+ Namespace: string | undefined;
1771
+ SelfUpgradeStatus: SelfUpgradeStatus | undefined;
1772
+ }
1773
+ export interface UpdateSelfUpgradeConfigurationResponse {
1774
+ RequestId?: string | undefined;
1775
+ Status?: number | undefined;
1776
+ }
1709
1777
  export interface UpdateSPICECapacityConfigurationRequest {
1710
1778
  AwsAccountId: string | undefined;
1711
1779
  PurchaseMode: PurchaseMode | undefined;
@@ -1,32 +1,32 @@
1
+ export * from "./Interfaces";
1
2
  export * from "./DescribeFolderPermissionsPaginator";
2
3
  export * from "./DescribeFolderResolvedPermissionsPaginator";
3
- export * from "./Interfaces";
4
4
  export * from "./ListActionConnectorsPaginator";
5
5
  export * from "./ListAnalysesPaginator";
6
6
  export * from "./ListAssetBundleExportJobsPaginator";
7
7
  export * from "./ListAssetBundleImportJobsPaginator";
8
8
  export * from "./ListBrandsPaginator";
9
9
  export * from "./ListCustomPermissionsPaginator";
10
- export * from "./ListDashboardVersionsPaginator";
11
10
  export * from "./ListDashboardsPaginator";
11
+ export * from "./ListDashboardVersionsPaginator";
12
12
  export * from "./ListDataSetsPaginator";
13
13
  export * from "./ListDataSourcesPaginator";
14
14
  export * from "./ListFlowsPaginator";
15
15
  export * from "./ListFolderMembersPaginator";
16
- export * from "./ListFoldersForResourcePaginator";
17
16
  export * from "./ListFoldersPaginator";
17
+ export * from "./ListFoldersForResourcePaginator";
18
18
  export * from "./ListGroupMembershipsPaginator";
19
19
  export * from "./ListGroupsPaginator";
20
- export * from "./ListIAMPolicyAssignmentsForUserPaginator";
21
20
  export * from "./ListIAMPolicyAssignmentsPaginator";
21
+ export * from "./ListIAMPolicyAssignmentsForUserPaginator";
22
22
  export * from "./ListIngestionsPaginator";
23
23
  export * from "./ListNamespacesPaginator";
24
24
  export * from "./ListRoleMembershipsPaginator";
25
25
  export * from "./ListTemplateAliasesPaginator";
26
- export * from "./ListTemplateVersionsPaginator";
27
26
  export * from "./ListTemplatesPaginator";
28
- export * from "./ListThemeVersionsPaginator";
27
+ export * from "./ListTemplateVersionsPaginator";
29
28
  export * from "./ListThemesPaginator";
29
+ export * from "./ListThemeVersionsPaginator";
30
30
  export * from "./ListTopicsPaginator";
31
31
  export * from "./ListUserGroupsPaginator";
32
32
  export * from "./ListUsersPaginator";
@@ -552,6 +552,8 @@ export declare var DescribeRefreshScheduleRequest$: StaticStructureSchema;
552
552
  export declare var DescribeRefreshScheduleResponse$: StaticStructureSchema;
553
553
  export declare var DescribeRoleCustomPermissionRequest$: StaticStructureSchema;
554
554
  export declare var DescribeRoleCustomPermissionResponse$: StaticStructureSchema;
555
+ export declare var DescribeSelfUpgradeConfigurationRequest$: StaticStructureSchema;
556
+ export declare var DescribeSelfUpgradeConfigurationResponse$: StaticStructureSchema;
555
557
  export declare var DescribeTemplateAliasRequest$: StaticStructureSchema;
556
558
  export declare var DescribeTemplateAliasResponse$: StaticStructureSchema;
557
559
  export declare var DescribeTemplateDefinitionRequest$: StaticStructureSchema;
@@ -791,6 +793,7 @@ export declare var InternalFailureException$: StaticErrorSchema;
791
793
  export declare var InternalServerException$: StaticErrorSchema;
792
794
  export declare var InvalidDataSetParameterValueException$: StaticErrorSchema;
793
795
  export declare var InvalidNextTokenException$: StaticErrorSchema;
796
+ export declare var InvalidParameterException$: StaticErrorSchema;
794
797
  export declare var InvalidParameterValueException$: StaticErrorSchema;
795
798
  export declare var InvalidRequestException$: StaticErrorSchema;
796
799
  export declare var InvalidTopicReviewedAnswer$: StaticStructureSchema;
@@ -883,6 +886,8 @@ export declare var ListRefreshSchedulesRequest$: StaticStructureSchema;
883
886
  export declare var ListRefreshSchedulesResponse$: StaticStructureSchema;
884
887
  export declare var ListRoleMembershipsRequest$: StaticStructureSchema;
885
888
  export declare var ListRoleMembershipsResponse$: StaticStructureSchema;
889
+ export declare var ListSelfUpgradesRequest$: StaticStructureSchema;
890
+ export declare var ListSelfUpgradesResponse$: StaticStructureSchema;
886
891
  export declare var ListTagsForResourceRequest$: StaticStructureSchema;
887
892
  export declare var ListTagsForResourceResponse$: StaticStructureSchema;
888
893
  export declare var ListTemplateAliasesRequest$: StaticStructureSchema;
@@ -1152,6 +1157,8 @@ export declare var SectionLayoutConfiguration$: StaticStructureSchema;
1152
1157
  export declare var SectionPageBreakConfiguration$: StaticStructureSchema;
1153
1158
  export declare var SectionStyle$: StaticStructureSchema;
1154
1159
  export declare var SelectedSheetsFilterScopeConfiguration$: StaticStructureSchema;
1160
+ export declare var SelfUpgradeConfiguration$: StaticStructureSchema;
1161
+ export declare var SelfUpgradeRequestDetail$: StaticStructureSchema;
1155
1162
  export declare var SemanticEntityType$: StaticStructureSchema;
1156
1163
  export declare var SemanticModelConfiguration$: StaticStructureSchema;
1157
1164
  export declare var SemanticTable$: StaticStructureSchema;
@@ -1434,6 +1441,10 @@ export declare var UpdateRefreshScheduleRequest$: StaticStructureSchema;
1434
1441
  export declare var UpdateRefreshScheduleResponse$: StaticStructureSchema;
1435
1442
  export declare var UpdateRoleCustomPermissionRequest$: StaticStructureSchema;
1436
1443
  export declare var UpdateRoleCustomPermissionResponse$: StaticStructureSchema;
1444
+ export declare var UpdateSelfUpgradeConfigurationRequest$: StaticStructureSchema;
1445
+ export declare var UpdateSelfUpgradeConfigurationResponse$: StaticStructureSchema;
1446
+ export declare var UpdateSelfUpgradeRequest$: StaticStructureSchema;
1447
+ export declare var UpdateSelfUpgradeResponse$: StaticStructureSchema;
1437
1448
  export declare var UpdateSPICECapacityConfigurationRequest$: StaticStructureSchema;
1438
1449
  export declare var UpdateSPICECapacityConfigurationResponse$: StaticStructureSchema;
1439
1450
  export declare var UpdateTemplateAliasRequest$: StaticStructureSchema;
@@ -1617,6 +1628,7 @@ export declare var DescribeQPersonalizationConfiguration$: StaticOperationSchema
1617
1628
  export declare var DescribeQuickSightQSearchConfiguration$: StaticOperationSchema;
1618
1629
  export declare var DescribeRefreshSchedule$: StaticOperationSchema;
1619
1630
  export declare var DescribeRoleCustomPermission$: StaticOperationSchema;
1631
+ export declare var DescribeSelfUpgradeConfiguration$: StaticOperationSchema;
1620
1632
  export declare var DescribeTemplate$: StaticOperationSchema;
1621
1633
  export declare var DescribeTemplateAlias$: StaticOperationSchema;
1622
1634
  export declare var DescribeTemplateDefinition$: StaticOperationSchema;
@@ -1661,6 +1673,7 @@ export declare var ListIngestions$: StaticOperationSchema;
1661
1673
  export declare var ListNamespaces$: StaticOperationSchema;
1662
1674
  export declare var ListRefreshSchedules$: StaticOperationSchema;
1663
1675
  export declare var ListRoleMemberships$: StaticOperationSchema;
1676
+ export declare var ListSelfUpgrades$: StaticOperationSchema;
1664
1677
  export declare var ListTagsForResource$: StaticOperationSchema;
1665
1678
  export declare var ListTemplateAliases$: StaticOperationSchema;
1666
1679
  export declare var ListTemplates$: StaticOperationSchema;
@@ -1728,6 +1741,8 @@ export declare var UpdateQPersonalizationConfiguration$: StaticOperationSchema;
1728
1741
  export declare var UpdateQuickSightQSearchConfiguration$: StaticOperationSchema;
1729
1742
  export declare var UpdateRefreshSchedule$: StaticOperationSchema;
1730
1743
  export declare var UpdateRoleCustomPermission$: StaticOperationSchema;
1744
+ export declare var UpdateSelfUpgrade$: StaticOperationSchema;
1745
+ export declare var UpdateSelfUpgradeConfiguration$: StaticOperationSchema;
1731
1746
  export declare var UpdateSPICECapacityConfiguration$: StaticOperationSchema;
1732
1747
  export declare var UpdateTemplate$: StaticOperationSchema;
1733
1748
  export declare var UpdateTemplateAlias$: StaticOperationSchema;
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.957.0",
4
+ "version": "3.960.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-quicksight",
@@ -22,7 +22,7 @@
22
22
  "@aws-crypto/sha256-browser": "5.2.0",
23
23
  "@aws-crypto/sha256-js": "5.2.0",
24
24
  "@aws-sdk/core": "3.957.0",
25
- "@aws-sdk/credential-provider-node": "3.957.0",
25
+ "@aws-sdk/credential-provider-node": "3.958.0",
26
26
  "@aws-sdk/middleware-host-header": "3.957.0",
27
27
  "@aws-sdk/middleware-logger": "3.957.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.957.0",