@aws-sdk/client-quicksight 3.363.0 → 3.369.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 (44) hide show
  1. package/dist-cjs/models/models_0.js +29 -25
  2. package/dist-cjs/models/models_1.js +25 -12
  3. package/dist-cjs/models/models_2.js +12 -4
  4. package/dist-es/models/models_0.js +24 -18
  5. package/dist-es/models/models_1.js +18 -7
  6. package/dist-es/models/models_2.js +7 -1
  7. package/dist-types/commands/CreateAnalysisCommand.d.ts +31 -1
  8. package/dist-types/commands/CreateDashboardCommand.d.ts +31 -1
  9. package/dist-types/commands/CreateTemplateCommand.d.ts +31 -1
  10. package/dist-types/commands/DeleteFolderCommand.d.ts +2 -1
  11. package/dist-types/commands/DeleteFolderMembershipCommand.d.ts +1 -1
  12. package/dist-types/commands/DeleteGroupCommand.d.ts +1 -1
  13. package/dist-types/commands/DeleteGroupMembershipCommand.d.ts +1 -2
  14. package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +31 -1
  15. package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +31 -1
  16. package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +31 -1
  17. package/dist-types/commands/StartAssetBundleExportJobCommand.d.ts +1 -1
  18. package/dist-types/commands/StartAssetBundleImportJobCommand.d.ts +1 -1
  19. package/dist-types/commands/UpdateAnalysisCommand.d.ts +31 -1
  20. package/dist-types/commands/UpdateDashboardCommand.d.ts +31 -1
  21. package/dist-types/commands/UpdateTemplateAliasCommand.d.ts +2 -1
  22. package/dist-types/commands/UpdateTemplateCommand.d.ts +31 -1
  23. package/dist-types/commands/UpdateTemplatePermissionsCommand.d.ts +1 -1
  24. package/dist-types/commands/UpdateThemeAliasCommand.d.ts +1 -2
  25. package/dist-types/commands/UpdateThemeCommand.d.ts +1 -1
  26. package/dist-types/models/models_0.d.ts +97 -164
  27. package/dist-types/models/models_1.d.ts +159 -89
  28. package/dist-types/models/models_2.d.ts +94 -107
  29. package/dist-types/models/models_3.d.ts +113 -148
  30. package/dist-types/models/models_4.d.ts +147 -1
  31. package/dist-types/ts3.4/commands/DeleteFolderCommand.d.ts +2 -1
  32. package/dist-types/ts3.4/commands/DeleteFolderMembershipCommand.d.ts +1 -1
  33. package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +1 -1
  34. package/dist-types/ts3.4/commands/DeleteGroupMembershipCommand.d.ts +4 -2
  35. package/dist-types/ts3.4/commands/UpdateTemplateAliasCommand.d.ts +2 -4
  36. package/dist-types/ts3.4/commands/UpdateTemplatePermissionsCommand.d.ts +1 -1
  37. package/dist-types/ts3.4/commands/UpdateThemeAliasCommand.d.ts +4 -2
  38. package/dist-types/ts3.4/commands/UpdateThemeCommand.d.ts +1 -1
  39. package/dist-types/ts3.4/models/models_0.d.ts +38 -53
  40. package/dist-types/ts3.4/models/models_1.d.ts +54 -34
  41. package/dist-types/ts3.4/models/models_2.d.ts +31 -36
  42. package/dist-types/ts3.4/models/models_3.d.ts +32 -40
  43. package/dist-types/ts3.4/models/models_4.d.ts +43 -0
  44. package/package.json +13 -13
@@ -1,7 +1,95 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { AccountCustomization, AdHocFilteringOption, AmazonElasticsearchParameters, AmazonOpenSearchParameters, AnalysisDefaults, CalculatedField, ColumnConfiguration, DashboardBehavior, DataSetIdentifierDeclaration, Edition, Entity, FilterGroup, NumberScale, ParameterDeclaration, ResourceStatus, Sheet, TimeGranularity } from "./models_0";
3
- import { AnalysisDefinition, AnalysisSourceEntity, AssetBundleImportFailureAction, AssetBundleImportJobAnalysisOverrideParameters, AssetBundleImportJobDashboardOverrideParameters, AssetBundleImportJobDataSetOverrideParameters, AssetBundleImportJobDataSourceCredentials, AthenaParameters, AuroraParameters, AuroraPostgreSqlParameters, AwsIotAnalyticsParameters, DataSetReference, FilterOperator, SheetDefinition } from "./models_1";
3
+ import { AnalysisDefinition, AnalysisSourceEntity, AssetBundleImportFailureAction, AssetBundleImportJobAnalysisOverrideParameters, AssetBundleImportJobDashboardOverrideParameters, AssetBundleImportJobDataSetOverrideParameters, DataSetReference, FilterOperator, SheetDefinition } from "./models_1";
4
4
  import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
5
+ /**
6
+ * @public
7
+ * <p>A username and password credential pair to use to import a data source resource.</p>
8
+ */
9
+ export interface AssetBundleImportJobDataSourceCredentialPair {
10
+ /**
11
+ * <p>The username for the data source connection.</p>
12
+ */
13
+ Username: string | undefined;
14
+ /**
15
+ * <p>The password for the data source connection.</p>
16
+ */
17
+ Password: string | undefined;
18
+ }
19
+ /**
20
+ * @public
21
+ * <p>The login credentials to use to import a data source resource.</p>
22
+ */
23
+ export interface AssetBundleImportJobDataSourceCredentials {
24
+ /**
25
+ * <p>A username and password credential pair to be used to create the imported data source. Keep this field blank if you are using a Secrets Manager secret to provide credentials.</p>
26
+ */
27
+ CredentialPair?: AssetBundleImportJobDataSourceCredentialPair;
28
+ /**
29
+ * <p>The ARN of the Secrets Manager secret that's used to create the imported data source. Keep this field blank, unless you are using a secret in place of a credential pair.</p>
30
+ */
31
+ SecretArn?: string;
32
+ }
33
+ /**
34
+ * @public
35
+ * <p>Parameters for Amazon Athena.</p>
36
+ */
37
+ export interface AthenaParameters {
38
+ /**
39
+ * <p>The workgroup that Amazon Athena uses.</p>
40
+ */
41
+ WorkGroup?: string;
42
+ /**
43
+ * <p>Use the <code>RoleArn</code> structure to override an account-wide role for a specific Athena data source. For example, say an account administrator has turned off all Athena access with an account-wide role. The administrator can then use <code>RoleArn</code> to bypass the account-wide role and allow Athena access for the single Athena data source that is specified in the structure, even if the account-wide role forbidding Athena access is still active.</p>
44
+ */
45
+ RoleArn?: string;
46
+ }
47
+ /**
48
+ * @public
49
+ * <p>Parameters for Amazon Aurora.</p>
50
+ */
51
+ export interface AuroraParameters {
52
+ /**
53
+ * <p>Host.</p>
54
+ */
55
+ Host: string | undefined;
56
+ /**
57
+ * <p>Port.</p>
58
+ */
59
+ Port: number | undefined;
60
+ /**
61
+ * <p>Database.</p>
62
+ */
63
+ Database: string | undefined;
64
+ }
65
+ /**
66
+ * @public
67
+ * <p>Parameters for Amazon Aurora PostgreSQL-Compatible Edition.</p>
68
+ */
69
+ export interface AuroraPostgreSqlParameters {
70
+ /**
71
+ * <p>The Amazon Aurora PostgreSQL-Compatible host to connect to.</p>
72
+ */
73
+ Host: string | undefined;
74
+ /**
75
+ * <p>The port that Amazon Aurora PostgreSQL is listening on.</p>
76
+ */
77
+ Port: number | undefined;
78
+ /**
79
+ * <p>The Amazon Aurora PostgreSQL database to connect to.</p>
80
+ */
81
+ Database: string | undefined;
82
+ }
83
+ /**
84
+ * @public
85
+ * <p>The parameters for IoT Analytics.</p>
86
+ */
87
+ export interface AwsIotAnalyticsParameters {
88
+ /**
89
+ * <p>Dataset name.</p>
90
+ */
91
+ DataSetName: string | undefined;
92
+ }
5
93
  /**
6
94
  * @public
7
95
  * <p>The required parameters that are needed to connect to a Databricks data source.</p>
@@ -1257,7 +1345,7 @@ export interface AssetBundleImportJobSummary {
1257
1345
  }
1258
1346
  /**
1259
1347
  * @public
1260
- * <p>The source of the asset bundle zip file that contains the data that you want to import.</p>
1348
+ * <p>The source of the asset bundle zip file that contains the data that you want to import. The file must be in <code>QUICKSIGHT_JSON</code> format.</p>
1261
1349
  */
1262
1350
  export interface AssetBundleImportSource {
1263
1351
  /**
@@ -7202,114 +7290,13 @@ export interface DeleteFolderRequest {
7202
7290
  FolderId: string | undefined;
7203
7291
  }
7204
7292
  /**
7205
- * @public
7206
- */
7207
- export interface DeleteFolderResponse {
7208
- /**
7209
- * <p>The HTTP status of the request.</p>
7210
- */
7211
- Status?: number;
7212
- /**
7213
- * <p>The Amazon Resource Name of the deleted folder.</p>
7214
- */
7215
- Arn?: string;
7216
- /**
7217
- * <p>The ID of the folder.</p>
7218
- */
7219
- FolderId?: string;
7220
- /**
7221
- * <p>The Amazon Web Services request ID for this operation.</p>
7222
- */
7223
- RequestId?: string;
7224
- }
7225
- /**
7226
- * @public
7227
- */
7228
- export interface DeleteFolderMembershipRequest {
7229
- /**
7230
- * <p>The ID for the Amazon Web Services account that contains the folder.</p>
7231
- */
7232
- AwsAccountId: string | undefined;
7233
- /**
7234
- * <p>The Folder ID.</p>
7235
- */
7236
- FolderId: string | undefined;
7237
- /**
7238
- * <p>The ID of the asset (the dashboard, analysis, or dataset) that you want to delete.</p>
7239
- */
7240
- MemberId: string | undefined;
7241
- /**
7242
- * <p>The type of the member, including <code>DASHBOARD</code>, <code>ANALYSIS</code>, and <code>DATASET</code>
7243
- * </p>
7244
- */
7245
- MemberType: MemberType | string | undefined;
7246
- }
7247
- /**
7248
- * @public
7249
- */
7250
- export interface DeleteFolderMembershipResponse {
7251
- /**
7252
- * <p>The HTTP status of the request.</p>
7253
- */
7254
- Status?: number;
7255
- /**
7256
- * <p>The Amazon Web Services request ID for this operation.</p>
7257
- */
7258
- RequestId?: string;
7259
- }
7260
- /**
7261
- * @public
7262
- */
7263
- export interface DeleteGroupRequest {
7264
- /**
7265
- * <p>The name of the group that you want to delete.</p>
7266
- */
7267
- GroupName: string | undefined;
7268
- /**
7269
- * <p>The ID for the Amazon Web Services account that the group is in. Currently, you use the ID for the
7270
- * Amazon Web Services account that contains your Amazon QuickSight account.</p>
7271
- */
7272
- AwsAccountId: string | undefined;
7273
- /**
7274
- * <p>The namespace of the group that you want to delete.</p>
7275
- */
7276
- Namespace: string | undefined;
7277
- }
7278
- /**
7279
- * @public
7293
+ * @internal
7280
7294
  */
7281
- export interface DeleteGroupResponse {
7282
- /**
7283
- * <p>The Amazon Web Services request ID for this operation.</p>
7284
- */
7285
- RequestId?: string;
7286
- /**
7287
- * <p>The HTTP status of the request.</p>
7288
- */
7289
- Status?: number;
7290
- }
7295
+ export declare const AssetBundleImportJobDataSourceCredentialPairFilterSensitiveLog: (obj: AssetBundleImportJobDataSourceCredentialPair) => any;
7291
7296
  /**
7292
- * @public
7297
+ * @internal
7293
7298
  */
7294
- export interface DeleteGroupMembershipRequest {
7295
- /**
7296
- * <p>The name of the user that you want to delete from the group membership.</p>
7297
- */
7298
- MemberName: string | undefined;
7299
- /**
7300
- * <p>The name of the group that you want to delete the user from.</p>
7301
- */
7302
- GroupName: string | undefined;
7303
- /**
7304
- * <p>The ID for the Amazon Web Services account that the group is in. Currently, you use the ID for the
7305
- * Amazon Web Services account that contains your Amazon QuickSight account.</p>
7306
- */
7307
- AwsAccountId: string | undefined;
7308
- /**
7309
- * <p>The namespace of the group that you want to remove a user from.</p>
7310
- */
7311
- Namespace: string | undefined;
7312
- }
7299
+ export declare const AssetBundleImportJobDataSourceCredentialsFilterSensitiveLog: (obj: AssetBundleImportJobDataSourceCredentials) => any;
7313
7300
  /**
7314
7301
  * @internal
7315
7302
  */
@@ -1,8 +1,117 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { AccountCustomization, AccountInfo, AccountSettings, ActiveIAMPolicyAssignment, Analysis, AnalysisError, Entity, ResourceStatus, Sheet } from "./models_0";
3
3
  import { AnalysisDefinition, AnalysisSearchFilter, AnalysisSourceEntity, AnalysisSummary, AnonymousUserEmbeddingExperienceConfiguration, AssetBundleCloudFormationOverridePropertyConfiguration, AssetBundleExportFormat, AssetBundleExportJobError, AssetBundleExportJobStatus, AssetBundleExportJobSummary, AssetBundleImportFailureAction, DashboardVisualId, FilterOperator } from "./models_1";
4
- import { _Parameters, AssetBundleImportJobError, AssetBundleImportJobOverrideParameters, AssetBundleImportJobStatus, AssetBundleImportJobSummary, AssetBundleImportSource, AssetBundleImportSourceDescription, AssignmentStatus, BookmarksConfigurations, ColumnGroup, ColumnLevelPermissionRule, Dashboard, DashboardError, DashboardPublishOptions, DashboardSearchFilter, DashboardSourceEntity, DashboardSummary, DashboardVersionDefinition, DashboardVersionSummary, DataSet, DataSetConfiguration, DataSetImportMode, DatasetParameter, DataSetRefreshProperties, DataSetSearchFilter, DataSetSummary, DataSetUsageConfiguration, DataSource, DataSourceCredentials, DataSourceParameters, DataSourceSearchFilter, DataSourceSummary, FieldFolder, FolderType, Group, GroupMember, IdentityStore, IngestionStatus, LogicalTable, NamespaceStatus, PhysicalTable, RefreshSchedule, ResourcePermission, RowLevelPermissionDataSet, RowLevelPermissionTagConfiguration, SslProperties, Tag, TemplateAlias, TemplateSourceEntity, TemplateVersionDefinition, ThemeAlias, ThemeConfiguration, TopicDetails, TopicRefreshSchedule, VPCConnectionAvailabilityStatus, VpcConnectionProperties, VPCConnectionResourceStatus } from "./models_2";
4
+ import { _Parameters, AssetBundleImportJobError, AssetBundleImportJobOverrideParameters, AssetBundleImportJobStatus, AssetBundleImportJobSummary, AssetBundleImportSource, AssetBundleImportSourceDescription, AssignmentStatus, BookmarksConfigurations, ColumnGroup, ColumnLevelPermissionRule, Dashboard, DashboardError, DashboardPublishOptions, DashboardSearchFilter, DashboardSourceEntity, DashboardSummary, DashboardVersionDefinition, DashboardVersionSummary, DataSet, DataSetConfiguration, DataSetImportMode, DatasetParameter, DataSetRefreshProperties, DataSetSearchFilter, DataSetSummary, DataSetUsageConfiguration, DataSource, DataSourceCredentials, DataSourceParameters, DataSourceSearchFilter, DataSourceSummary, FieldFolder, FolderType, Group, GroupMember, IdentityStore, IngestionStatus, LogicalTable, MemberType, NamespaceStatus, PhysicalTable, RefreshSchedule, ResourcePermission, RowLevelPermissionDataSet, RowLevelPermissionTagConfiguration, SslProperties, Tag, TemplateAlias, TemplateSourceEntity, TemplateVersionDefinition, ThemeAlias, ThemeConfiguration, TopicDetails, TopicRefreshSchedule, VPCConnectionAvailabilityStatus, VpcConnectionProperties, VPCConnectionResourceStatus } from "./models_2";
5
5
  import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
6
+ /**
7
+ * @public
8
+ */
9
+ export interface DeleteFolderResponse {
10
+ /**
11
+ * <p>The HTTP status of the request.</p>
12
+ */
13
+ Status?: number;
14
+ /**
15
+ * <p>The Amazon Resource Name of the deleted folder.</p>
16
+ */
17
+ Arn?: string;
18
+ /**
19
+ * <p>The ID of the folder.</p>
20
+ */
21
+ FolderId?: string;
22
+ /**
23
+ * <p>The Amazon Web Services request ID for this operation.</p>
24
+ */
25
+ RequestId?: string;
26
+ }
27
+ /**
28
+ * @public
29
+ */
30
+ export interface DeleteFolderMembershipRequest {
31
+ /**
32
+ * <p>The ID for the Amazon Web Services account that contains the folder.</p>
33
+ */
34
+ AwsAccountId: string | undefined;
35
+ /**
36
+ * <p>The Folder ID.</p>
37
+ */
38
+ FolderId: string | undefined;
39
+ /**
40
+ * <p>The ID of the asset (the dashboard, analysis, or dataset) that you want to delete.</p>
41
+ */
42
+ MemberId: string | undefined;
43
+ /**
44
+ * <p>The type of the member, including <code>DASHBOARD</code>, <code>ANALYSIS</code>, and <code>DATASET</code>
45
+ * </p>
46
+ */
47
+ MemberType: MemberType | string | undefined;
48
+ }
49
+ /**
50
+ * @public
51
+ */
52
+ export interface DeleteFolderMembershipResponse {
53
+ /**
54
+ * <p>The HTTP status of the request.</p>
55
+ */
56
+ Status?: number;
57
+ /**
58
+ * <p>The Amazon Web Services request ID for this operation.</p>
59
+ */
60
+ RequestId?: string;
61
+ }
62
+ /**
63
+ * @public
64
+ */
65
+ export interface DeleteGroupRequest {
66
+ /**
67
+ * <p>The name of the group that you want to delete.</p>
68
+ */
69
+ GroupName: string | undefined;
70
+ /**
71
+ * <p>The ID for the Amazon Web Services account that the group is in. Currently, you use the ID for the
72
+ * Amazon Web Services account that contains your Amazon QuickSight account.</p>
73
+ */
74
+ AwsAccountId: string | undefined;
75
+ /**
76
+ * <p>The namespace of the group that you want to delete.</p>
77
+ */
78
+ Namespace: string | undefined;
79
+ }
80
+ /**
81
+ * @public
82
+ */
83
+ export interface DeleteGroupResponse {
84
+ /**
85
+ * <p>The Amazon Web Services request ID for this operation.</p>
86
+ */
87
+ RequestId?: string;
88
+ /**
89
+ * <p>The HTTP status of the request.</p>
90
+ */
91
+ Status?: number;
92
+ }
93
+ /**
94
+ * @public
95
+ */
96
+ export interface DeleteGroupMembershipRequest {
97
+ /**
98
+ * <p>The name of the user that you want to delete from the group membership.</p>
99
+ */
100
+ MemberName: string | undefined;
101
+ /**
102
+ * <p>The name of the group that you want to delete the user from.</p>
103
+ */
104
+ GroupName: string | undefined;
105
+ /**
106
+ * <p>The ID for the Amazon Web Services account that the group is in. Currently, you use the ID for the
107
+ * Amazon Web Services account that contains your Amazon QuickSight account.</p>
108
+ */
109
+ AwsAccountId: string | undefined;
110
+ /**
111
+ * <p>The namespace of the group that you want to remove a user from.</p>
112
+ */
113
+ Namespace: string | undefined;
114
+ }
6
115
  /**
7
116
  * @public
8
117
  */
@@ -822,7 +931,7 @@ export interface DescribeAssetBundleExportJobResponse {
822
931
  */
823
932
  IncludeAllDependencies?: boolean;
824
933
  /**
825
- * <p>The format of the export.</p>
934
+ * <p>The format of the exported asset bundle. A <code>QUICKSIGHT_JSON</code> formatted file can be used to make a <code>StartAssetBundleImportJob</code> API call. A <code>CLOUDFORMATION_JSON</code> formatted file can be used in the CloudFormation console and with the CloudFormation APIs.</p>
826
935
  */
827
936
  ExportFormat?: AssetBundleExportFormat | string;
828
937
  /**
@@ -5806,7 +5915,8 @@ export interface StartAssetBundleImportJobRequest {
5806
5915
  */
5807
5916
  AssetBundleImportJobId: string | undefined;
5808
5917
  /**
5809
- * <p>The source of the asset bundle zip file that contains the data that you want to import.</p>
5918
+ * <p>The source of the asset bundle zip file that contains the data that you want to import. The file must be in <code>QUICKSIGHT_JSON</code> format.
5919
+ * </p>
5810
5920
  */
5811
5921
  AssetBundleImportSource: AssetBundleImportSource | undefined;
5812
5922
  /**
@@ -6966,151 +7076,6 @@ export interface UpdateTemplateAliasRequest {
6966
7076
  */
6967
7077
  TemplateVersionNumber: number | undefined;
6968
7078
  }
6969
- /**
6970
- * @public
6971
- */
6972
- export interface UpdateTemplateAliasResponse {
6973
- /**
6974
- * <p>The template alias.</p>
6975
- */
6976
- TemplateAlias?: TemplateAlias;
6977
- /**
6978
- * <p>The HTTP status of the request.</p>
6979
- */
6980
- Status?: number;
6981
- /**
6982
- * <p>The Amazon Web Services request ID for this operation.</p>
6983
- */
6984
- RequestId?: string;
6985
- }
6986
- /**
6987
- * @public
6988
- */
6989
- export interface UpdateTemplatePermissionsRequest {
6990
- /**
6991
- * <p>The ID of the Amazon Web Services account that contains the template.</p>
6992
- */
6993
- AwsAccountId: string | undefined;
6994
- /**
6995
- * <p>The ID for the template.</p>
6996
- */
6997
- TemplateId: string | undefined;
6998
- /**
6999
- * <p>A list of resource permissions to be granted on the template. </p>
7000
- */
7001
- GrantPermissions?: ResourcePermission[];
7002
- /**
7003
- * <p>A list of resource permissions to be revoked from the template. </p>
7004
- */
7005
- RevokePermissions?: ResourcePermission[];
7006
- }
7007
- /**
7008
- * @public
7009
- */
7010
- export interface UpdateTemplatePermissionsResponse {
7011
- /**
7012
- * <p>The ID for the template.</p>
7013
- */
7014
- TemplateId?: string;
7015
- /**
7016
- * <p>The Amazon Resource Name (ARN) of the template.</p>
7017
- */
7018
- TemplateArn?: string;
7019
- /**
7020
- * <p>A list of resource permissions to be set on the template.</p>
7021
- */
7022
- Permissions?: ResourcePermission[];
7023
- /**
7024
- * <p>The Amazon Web Services request ID for this operation.</p>
7025
- */
7026
- RequestId?: string;
7027
- /**
7028
- * <p>The HTTP status of the request.</p>
7029
- */
7030
- Status?: number;
7031
- }
7032
- /**
7033
- * @public
7034
- */
7035
- export interface UpdateThemeRequest {
7036
- /**
7037
- * <p>The ID of the Amazon Web Services account that contains the theme that you're updating.</p>
7038
- */
7039
- AwsAccountId: string | undefined;
7040
- /**
7041
- * <p>The ID for the theme.</p>
7042
- */
7043
- ThemeId: string | undefined;
7044
- /**
7045
- * <p>The name for the theme.</p>
7046
- */
7047
- Name?: string;
7048
- /**
7049
- * <p>The theme ID, defined by Amazon QuickSight, that a custom theme inherits from.
7050
- * All themes initially inherit from a default Amazon QuickSight theme.</p>
7051
- */
7052
- BaseThemeId: string | undefined;
7053
- /**
7054
- * <p>A description of the theme version that you're updating Every time that you call
7055
- * <code>UpdateTheme</code>, you create a new version of the theme. Each version of the
7056
- * theme maintains a description of the version in <code>VersionDescription</code>.</p>
7057
- */
7058
- VersionDescription?: string;
7059
- /**
7060
- * <p>The theme configuration, which contains the theme display properties.</p>
7061
- */
7062
- Configuration?: ThemeConfiguration;
7063
- }
7064
- /**
7065
- * @public
7066
- */
7067
- export interface UpdateThemeResponse {
7068
- /**
7069
- * <p>The ID for the theme.</p>
7070
- */
7071
- ThemeId?: string;
7072
- /**
7073
- * <p>The Amazon Resource Name (ARN) for the theme.</p>
7074
- */
7075
- Arn?: string;
7076
- /**
7077
- * <p>The Amazon Resource Name (ARN) for the new version of the theme.</p>
7078
- */
7079
- VersionArn?: string;
7080
- /**
7081
- * <p>The creation status of the theme.</p>
7082
- */
7083
- CreationStatus?: ResourceStatus | string;
7084
- /**
7085
- * <p>The HTTP status of the request.</p>
7086
- */
7087
- Status?: number;
7088
- /**
7089
- * <p>The Amazon Web Services request ID for this operation.</p>
7090
- */
7091
- RequestId?: string;
7092
- }
7093
- /**
7094
- * @public
7095
- */
7096
- export interface UpdateThemeAliasRequest {
7097
- /**
7098
- * <p>The ID of the Amazon Web Services account that contains the theme alias that you're updating.</p>
7099
- */
7100
- AwsAccountId: string | undefined;
7101
- /**
7102
- * <p>The ID for the theme.</p>
7103
- */
7104
- ThemeId: string | undefined;
7105
- /**
7106
- * <p>The name of the theme alias that you want to update.</p>
7107
- */
7108
- AliasName: string | undefined;
7109
- /**
7110
- * <p>The version number of the theme that the alias should reference.</p>
7111
- */
7112
- ThemeVersionNumber: number | undefined;
7113
- }
7114
7079
  /**
7115
7080
  * @internal
7116
7081
  */
@@ -1,5 +1,151 @@
1
- import { ResourcePermission, ThemeAlias, TopicDetails, TopicRefreshSchedule, VPCConnectionAvailabilityStatus, VPCConnectionResourceStatus } from "./models_2";
1
+ import { ResourceStatus } from "./models_0";
2
+ import { ResourcePermission, TemplateAlias, ThemeAlias, ThemeConfiguration, TopicDetails, TopicRefreshSchedule, VPCConnectionAvailabilityStatus, VPCConnectionResourceStatus } from "./models_2";
2
3
  import { User, UserRole } from "./models_3";
4
+ /**
5
+ * @public
6
+ */
7
+ export interface UpdateTemplateAliasResponse {
8
+ /**
9
+ * <p>The template alias.</p>
10
+ */
11
+ TemplateAlias?: TemplateAlias;
12
+ /**
13
+ * <p>The HTTP status of the request.</p>
14
+ */
15
+ Status?: number;
16
+ /**
17
+ * <p>The Amazon Web Services request ID for this operation.</p>
18
+ */
19
+ RequestId?: string;
20
+ }
21
+ /**
22
+ * @public
23
+ */
24
+ export interface UpdateTemplatePermissionsRequest {
25
+ /**
26
+ * <p>The ID of the Amazon Web Services account that contains the template.</p>
27
+ */
28
+ AwsAccountId: string | undefined;
29
+ /**
30
+ * <p>The ID for the template.</p>
31
+ */
32
+ TemplateId: string | undefined;
33
+ /**
34
+ * <p>A list of resource permissions to be granted on the template. </p>
35
+ */
36
+ GrantPermissions?: ResourcePermission[];
37
+ /**
38
+ * <p>A list of resource permissions to be revoked from the template. </p>
39
+ */
40
+ RevokePermissions?: ResourcePermission[];
41
+ }
42
+ /**
43
+ * @public
44
+ */
45
+ export interface UpdateTemplatePermissionsResponse {
46
+ /**
47
+ * <p>The ID for the template.</p>
48
+ */
49
+ TemplateId?: string;
50
+ /**
51
+ * <p>The Amazon Resource Name (ARN) of the template.</p>
52
+ */
53
+ TemplateArn?: string;
54
+ /**
55
+ * <p>A list of resource permissions to be set on the template.</p>
56
+ */
57
+ Permissions?: ResourcePermission[];
58
+ /**
59
+ * <p>The Amazon Web Services request ID for this operation.</p>
60
+ */
61
+ RequestId?: string;
62
+ /**
63
+ * <p>The HTTP status of the request.</p>
64
+ */
65
+ Status?: number;
66
+ }
67
+ /**
68
+ * @public
69
+ */
70
+ export interface UpdateThemeRequest {
71
+ /**
72
+ * <p>The ID of the Amazon Web Services account that contains the theme that you're updating.</p>
73
+ */
74
+ AwsAccountId: string | undefined;
75
+ /**
76
+ * <p>The ID for the theme.</p>
77
+ */
78
+ ThemeId: string | undefined;
79
+ /**
80
+ * <p>The name for the theme.</p>
81
+ */
82
+ Name?: string;
83
+ /**
84
+ * <p>The theme ID, defined by Amazon QuickSight, that a custom theme inherits from.
85
+ * All themes initially inherit from a default Amazon QuickSight theme.</p>
86
+ */
87
+ BaseThemeId: string | undefined;
88
+ /**
89
+ * <p>A description of the theme version that you're updating Every time that you call
90
+ * <code>UpdateTheme</code>, you create a new version of the theme. Each version of the
91
+ * theme maintains a description of the version in <code>VersionDescription</code>.</p>
92
+ */
93
+ VersionDescription?: string;
94
+ /**
95
+ * <p>The theme configuration, which contains the theme display properties.</p>
96
+ */
97
+ Configuration?: ThemeConfiguration;
98
+ }
99
+ /**
100
+ * @public
101
+ */
102
+ export interface UpdateThemeResponse {
103
+ /**
104
+ * <p>The ID for the theme.</p>
105
+ */
106
+ ThemeId?: string;
107
+ /**
108
+ * <p>The Amazon Resource Name (ARN) for the theme.</p>
109
+ */
110
+ Arn?: string;
111
+ /**
112
+ * <p>The Amazon Resource Name (ARN) for the new version of the theme.</p>
113
+ */
114
+ VersionArn?: string;
115
+ /**
116
+ * <p>The creation status of the theme.</p>
117
+ */
118
+ CreationStatus?: ResourceStatus | string;
119
+ /**
120
+ * <p>The HTTP status of the request.</p>
121
+ */
122
+ Status?: number;
123
+ /**
124
+ * <p>The Amazon Web Services request ID for this operation.</p>
125
+ */
126
+ RequestId?: string;
127
+ }
128
+ /**
129
+ * @public
130
+ */
131
+ export interface UpdateThemeAliasRequest {
132
+ /**
133
+ * <p>The ID of the Amazon Web Services account that contains the theme alias that you're updating.</p>
134
+ */
135
+ AwsAccountId: string | undefined;
136
+ /**
137
+ * <p>The ID for the theme.</p>
138
+ */
139
+ ThemeId: string | undefined;
140
+ /**
141
+ * <p>The name of the theme alias that you want to update.</p>
142
+ */
143
+ AliasName: string | undefined;
144
+ /**
145
+ * <p>The version number of the theme that the alias should reference.</p>
146
+ */
147
+ ThemeVersionNumber: number | undefined;
148
+ }
3
149
  /**
4
150
  * @public
5
151
  */
@@ -6,7 +6,8 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import { DeleteFolderRequest, DeleteFolderResponse } from "../models/models_2";
9
+ import { DeleteFolderRequest } from "../models/models_2";
10
+ import { DeleteFolderResponse } from "../models/models_3";
10
11
  import {
11
12
  QuickSightClientResolvedConfig,
12
13
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  DeleteFolderMembershipRequest,
11
11
  DeleteFolderMembershipResponse,
12
- } from "../models/models_2";
12
+ } from "../models/models_3";
13
13
  import {
14
14
  QuickSightClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -6,7 +6,7 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import { DeleteGroupRequest, DeleteGroupResponse } from "../models/models_2";
9
+ import { DeleteGroupRequest, DeleteGroupResponse } from "../models/models_3";
10
10
  import {
11
11
  QuickSightClientResolvedConfig,
12
12
  ServiceInputTypes,