@aws-sdk/client-quicksight 3.958.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 (47) hide show
  1. package/README.md +28 -0
  2. package/dist-cjs/index.js +215 -10
  3. package/dist-es/QuickSight.js +8 -0
  4. package/dist-es/commands/DescribeSelfUpgradeConfigurationCommand.js +16 -0
  5. package/dist-es/commands/ListSelfUpgradesCommand.js +16 -0
  6. package/dist-es/commands/UpdateSelfUpgradeCommand.js +16 -0
  7. package/dist-es/commands/UpdateSelfUpgradeConfigurationCommand.js +16 -0
  8. package/dist-es/commands/index.js +4 -0
  9. package/dist-es/models/enums.js +16 -0
  10. package/dist-es/models/errors.js +16 -0
  11. package/dist-es/schemas/schemas_0.js +109 -11
  12. package/dist-types/QuickSight.d.ts +28 -0
  13. package/dist-types/QuickSightClient.d.ts +6 -2
  14. package/dist-types/commands/CreateCustomPermissionsCommand.d.ts +1 -0
  15. package/dist-types/commands/DescribeCustomPermissionsCommand.d.ts +1 -0
  16. package/dist-types/commands/DescribeSelfUpgradeConfigurationCommand.d.ts +106 -0
  17. package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +2 -1
  18. package/dist-types/commands/DescribeTemplatePermissionsCommand.d.ts +1 -1
  19. package/dist-types/commands/ListCustomPermissionsCommand.d.ts +1 -0
  20. package/dist-types/commands/ListSelfUpgradesCommand.d.ts +122 -0
  21. package/dist-types/commands/StartDashboardSnapshotJobCommand.d.ts +2 -2
  22. package/dist-types/commands/UpdateCustomPermissionsCommand.d.ts +1 -0
  23. package/dist-types/commands/UpdateSelfUpgradeCommand.d.ts +119 -0
  24. package/dist-types/commands/UpdateSelfUpgradeConfigurationCommand.d.ts +104 -0
  25. package/dist-types/commands/index.d.ts +4 -0
  26. package/dist-types/models/enums.d.ts +40 -0
  27. package/dist-types/models/errors.d.ts +18 -0
  28. package/dist-types/models/models_2.d.ts +5 -0
  29. package/dist-types/models/models_3.d.ts +57 -129
  30. package/dist-types/models/models_4.d.ts +312 -3
  31. package/dist-types/schemas/schemas_0.d.ts +15 -0
  32. package/dist-types/ts3.4/QuickSight.d.ts +68 -0
  33. package/dist-types/ts3.4/QuickSightClient.d.ts +24 -0
  34. package/dist-types/ts3.4/commands/DescribeSelfUpgradeConfigurationCommand.d.ts +51 -0
  35. package/dist-types/ts3.4/commands/DescribeTemplateDefinitionCommand.d.ts +2 -4
  36. package/dist-types/ts3.4/commands/DescribeTemplatePermissionsCommand.d.ts +1 -1
  37. package/dist-types/ts3.4/commands/ListSelfUpgradesCommand.d.ts +50 -0
  38. package/dist-types/ts3.4/commands/UpdateSelfUpgradeCommand.d.ts +51 -0
  39. package/dist-types/ts3.4/commands/UpdateSelfUpgradeConfigurationCommand.d.ts +51 -0
  40. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  41. package/dist-types/ts3.4/models/enums.d.ts +22 -0
  42. package/dist-types/ts3.4/models/errors.d.ts +9 -0
  43. package/dist-types/ts3.4/models/models_2.d.ts +1 -0
  44. package/dist-types/ts3.4/models/models_3.d.ts +13 -21
  45. package/dist-types/ts3.4/models/models_4.d.ts +68 -0
  46. package/dist-types/ts3.4/schemas/schemas_0.d.ts +15 -0
  47. package/package.json +1 -1
@@ -407,6 +407,10 @@ import {
407
407
  DescribeRoleCustomPermissionCommandInput,
408
408
  DescribeRoleCustomPermissionCommandOutput,
409
409
  } from "./commands/DescribeRoleCustomPermissionCommand";
410
+ import {
411
+ DescribeSelfUpgradeConfigurationCommandInput,
412
+ DescribeSelfUpgradeConfigurationCommandOutput,
413
+ } from "./commands/DescribeSelfUpgradeConfigurationCommand";
410
414
  import {
411
415
  DescribeTemplateAliasCommandInput,
412
416
  DescribeTemplateAliasCommandOutput,
@@ -583,6 +587,10 @@ import {
583
587
  ListRoleMembershipsCommandInput,
584
588
  ListRoleMembershipsCommandOutput,
585
589
  } from "./commands/ListRoleMembershipsCommand";
590
+ import {
591
+ ListSelfUpgradesCommandInput,
592
+ ListSelfUpgradesCommandOutput,
593
+ } from "./commands/ListSelfUpgradesCommand";
586
594
  import {
587
595
  ListTagsForResourceCommandInput,
588
596
  ListTagsForResourceCommandOutput,
@@ -851,6 +859,14 @@ import {
851
859
  UpdateRoleCustomPermissionCommandInput,
852
860
  UpdateRoleCustomPermissionCommandOutput,
853
861
  } from "./commands/UpdateRoleCustomPermissionCommand";
862
+ import {
863
+ UpdateSelfUpgradeCommandInput,
864
+ UpdateSelfUpgradeCommandOutput,
865
+ } from "./commands/UpdateSelfUpgradeCommand";
866
+ import {
867
+ UpdateSelfUpgradeConfigurationCommandInput,
868
+ UpdateSelfUpgradeConfigurationCommandOutput,
869
+ } from "./commands/UpdateSelfUpgradeConfigurationCommand";
854
870
  import {
855
871
  UpdateSPICECapacityConfigurationCommandInput,
856
872
  UpdateSPICECapacityConfigurationCommandOutput,
@@ -2279,6 +2295,19 @@ export interface QuickSight {
2279
2295
  options: __HttpHandlerOptions,
2280
2296
  cb: (err: any, data?: DescribeRoleCustomPermissionCommandOutput) => void
2281
2297
  ): void;
2298
+ describeSelfUpgradeConfiguration(
2299
+ args: DescribeSelfUpgradeConfigurationCommandInput,
2300
+ options?: __HttpHandlerOptions
2301
+ ): Promise<DescribeSelfUpgradeConfigurationCommandOutput>;
2302
+ describeSelfUpgradeConfiguration(
2303
+ args: DescribeSelfUpgradeConfigurationCommandInput,
2304
+ cb: (err: any, data?: DescribeSelfUpgradeConfigurationCommandOutput) => void
2305
+ ): void;
2306
+ describeSelfUpgradeConfiguration(
2307
+ args: DescribeSelfUpgradeConfigurationCommandInput,
2308
+ options: __HttpHandlerOptions,
2309
+ cb: (err: any, data?: DescribeSelfUpgradeConfigurationCommandOutput) => void
2310
+ ): void;
2282
2311
  describeTemplate(
2283
2312
  args: DescribeTemplateCommandInput,
2284
2313
  options?: __HttpHandlerOptions
@@ -2863,6 +2892,19 @@ export interface QuickSight {
2863
2892
  options: __HttpHandlerOptions,
2864
2893
  cb: (err: any, data?: ListRoleMembershipsCommandOutput) => void
2865
2894
  ): void;
2895
+ listSelfUpgrades(
2896
+ args: ListSelfUpgradesCommandInput,
2897
+ options?: __HttpHandlerOptions
2898
+ ): Promise<ListSelfUpgradesCommandOutput>;
2899
+ listSelfUpgrades(
2900
+ args: ListSelfUpgradesCommandInput,
2901
+ cb: (err: any, data?: ListSelfUpgradesCommandOutput) => void
2902
+ ): void;
2903
+ listSelfUpgrades(
2904
+ args: ListSelfUpgradesCommandInput,
2905
+ options: __HttpHandlerOptions,
2906
+ cb: (err: any, data?: ListSelfUpgradesCommandOutput) => void
2907
+ ): void;
2866
2908
  listTagsForResource(
2867
2909
  args: ListTagsForResourceCommandInput,
2868
2910
  options?: __HttpHandlerOptions
@@ -3764,6 +3806,32 @@ export interface QuickSight {
3764
3806
  options: __HttpHandlerOptions,
3765
3807
  cb: (err: any, data?: UpdateRoleCustomPermissionCommandOutput) => void
3766
3808
  ): void;
3809
+ updateSelfUpgrade(
3810
+ args: UpdateSelfUpgradeCommandInput,
3811
+ options?: __HttpHandlerOptions
3812
+ ): Promise<UpdateSelfUpgradeCommandOutput>;
3813
+ updateSelfUpgrade(
3814
+ args: UpdateSelfUpgradeCommandInput,
3815
+ cb: (err: any, data?: UpdateSelfUpgradeCommandOutput) => void
3816
+ ): void;
3817
+ updateSelfUpgrade(
3818
+ args: UpdateSelfUpgradeCommandInput,
3819
+ options: __HttpHandlerOptions,
3820
+ cb: (err: any, data?: UpdateSelfUpgradeCommandOutput) => void
3821
+ ): void;
3822
+ updateSelfUpgradeConfiguration(
3823
+ args: UpdateSelfUpgradeConfigurationCommandInput,
3824
+ options?: __HttpHandlerOptions
3825
+ ): Promise<UpdateSelfUpgradeConfigurationCommandOutput>;
3826
+ updateSelfUpgradeConfiguration(
3827
+ args: UpdateSelfUpgradeConfigurationCommandInput,
3828
+ cb: (err: any, data?: UpdateSelfUpgradeConfigurationCommandOutput) => void
3829
+ ): void;
3830
+ updateSelfUpgradeConfiguration(
3831
+ args: UpdateSelfUpgradeConfigurationCommandInput,
3832
+ options: __HttpHandlerOptions,
3833
+ cb: (err: any, data?: UpdateSelfUpgradeConfigurationCommandOutput) => void
3834
+ ): void;
3767
3835
  updateSPICECapacityConfiguration(
3768
3836
  args: UpdateSPICECapacityConfigurationCommandInput,
3769
3837
  options?: __HttpHandlerOptions
@@ -453,6 +453,10 @@ import {
453
453
  DescribeRoleCustomPermissionCommandInput,
454
454
  DescribeRoleCustomPermissionCommandOutput,
455
455
  } from "./commands/DescribeRoleCustomPermissionCommand";
456
+ import {
457
+ DescribeSelfUpgradeConfigurationCommandInput,
458
+ DescribeSelfUpgradeConfigurationCommandOutput,
459
+ } from "./commands/DescribeSelfUpgradeConfigurationCommand";
456
460
  import {
457
461
  DescribeTemplateAliasCommandInput,
458
462
  DescribeTemplateAliasCommandOutput,
@@ -629,6 +633,10 @@ import {
629
633
  ListRoleMembershipsCommandInput,
630
634
  ListRoleMembershipsCommandOutput,
631
635
  } from "./commands/ListRoleMembershipsCommand";
636
+ import {
637
+ ListSelfUpgradesCommandInput,
638
+ ListSelfUpgradesCommandOutput,
639
+ } from "./commands/ListSelfUpgradesCommand";
632
640
  import {
633
641
  ListTagsForResourceCommandInput,
634
642
  ListTagsForResourceCommandOutput,
@@ -897,6 +905,14 @@ import {
897
905
  UpdateRoleCustomPermissionCommandInput,
898
906
  UpdateRoleCustomPermissionCommandOutput,
899
907
  } from "./commands/UpdateRoleCustomPermissionCommand";
908
+ import {
909
+ UpdateSelfUpgradeCommandInput,
910
+ UpdateSelfUpgradeCommandOutput,
911
+ } from "./commands/UpdateSelfUpgradeCommand";
912
+ import {
913
+ UpdateSelfUpgradeConfigurationCommandInput,
914
+ UpdateSelfUpgradeConfigurationCommandOutput,
915
+ } from "./commands/UpdateSelfUpgradeConfigurationCommand";
900
916
  import {
901
917
  UpdateSPICECapacityConfigurationCommandInput,
902
918
  UpdateSPICECapacityConfigurationCommandOutput,
@@ -1059,6 +1075,7 @@ export type ServiceInputTypes =
1059
1075
  | DescribeQuickSightQSearchConfigurationCommandInput
1060
1076
  | DescribeRefreshScheduleCommandInput
1061
1077
  | DescribeRoleCustomPermissionCommandInput
1078
+ | DescribeSelfUpgradeConfigurationCommandInput
1062
1079
  | DescribeTemplateAliasCommandInput
1063
1080
  | DescribeTemplateCommandInput
1064
1081
  | DescribeTemplateDefinitionCommandInput
@@ -1103,6 +1120,7 @@ export type ServiceInputTypes =
1103
1120
  | ListNamespacesCommandInput
1104
1121
  | ListRefreshSchedulesCommandInput
1105
1122
  | ListRoleMembershipsCommandInput
1123
+ | ListSelfUpgradesCommandInput
1106
1124
  | ListTagsForResourceCommandInput
1107
1125
  | ListTemplateAliasesCommandInput
1108
1126
  | ListTemplateVersionsCommandInput
@@ -1171,6 +1189,8 @@ export type ServiceInputTypes =
1171
1189
  | UpdateRefreshScheduleCommandInput
1172
1190
  | UpdateRoleCustomPermissionCommandInput
1173
1191
  | UpdateSPICECapacityConfigurationCommandInput
1192
+ | UpdateSelfUpgradeCommandInput
1193
+ | UpdateSelfUpgradeConfigurationCommandInput
1174
1194
  | UpdateTemplateAliasCommandInput
1175
1195
  | UpdateTemplateCommandInput
1176
1196
  | UpdateTemplatePermissionsCommandInput
@@ -1286,6 +1306,7 @@ export type ServiceOutputTypes =
1286
1306
  | DescribeQuickSightQSearchConfigurationCommandOutput
1287
1307
  | DescribeRefreshScheduleCommandOutput
1288
1308
  | DescribeRoleCustomPermissionCommandOutput
1309
+ | DescribeSelfUpgradeConfigurationCommandOutput
1289
1310
  | DescribeTemplateAliasCommandOutput
1290
1311
  | DescribeTemplateCommandOutput
1291
1312
  | DescribeTemplateDefinitionCommandOutput
@@ -1330,6 +1351,7 @@ export type ServiceOutputTypes =
1330
1351
  | ListNamespacesCommandOutput
1331
1352
  | ListRefreshSchedulesCommandOutput
1332
1353
  | ListRoleMembershipsCommandOutput
1354
+ | ListSelfUpgradesCommandOutput
1333
1355
  | ListTagsForResourceCommandOutput
1334
1356
  | ListTemplateAliasesCommandOutput
1335
1357
  | ListTemplateVersionsCommandOutput
@@ -1398,6 +1420,8 @@ export type ServiceOutputTypes =
1398
1420
  | UpdateRefreshScheduleCommandOutput
1399
1421
  | UpdateRoleCustomPermissionCommandOutput
1400
1422
  | UpdateSPICECapacityConfigurationCommandOutput
1423
+ | UpdateSelfUpgradeCommandOutput
1424
+ | UpdateSelfUpgradeConfigurationCommandOutput
1401
1425
  | UpdateTemplateAliasCommandOutput
1402
1426
  | UpdateTemplateCommandOutput
1403
1427
  | UpdateTemplatePermissionsCommandOutput
@@ -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;