@aws-sdk/client-quicksight 3.1040.0 → 3.1042.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 (48) hide show
  1. package/dist-cjs/schemas/schemas_0.js +101 -86
  2. package/dist-es/schemas/schemas_0.js +69 -54
  3. package/dist-types/commands/CreateAnalysisCommand.d.ts +51 -18
  4. package/dist-types/commands/CreateCustomPermissionsCommand.d.ts +2 -0
  5. package/dist-types/commands/CreateDashboardCommand.d.ts +51 -18
  6. package/dist-types/commands/CreateDataSourceCommand.d.ts +4 -0
  7. package/dist-types/commands/CreateTemplateCommand.d.ts +51 -18
  8. package/dist-types/commands/CreateThemeCommand.d.ts +4 -0
  9. package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +51 -18
  10. package/dist-types/commands/DescribeAssetBundleImportJobCommand.d.ts +2 -0
  11. package/dist-types/commands/DescribeCustomPermissionsCommand.d.ts +2 -0
  12. package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +51 -18
  13. package/dist-types/commands/DescribeDataSourceCommand.d.ts +4 -0
  14. package/dist-types/commands/DescribeRefreshScheduleCommand.d.ts +2 -1
  15. package/dist-types/commands/DescribeRoleCustomPermissionCommand.d.ts +1 -2
  16. package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +51 -18
  17. package/dist-types/commands/DescribeThemeCommand.d.ts +4 -0
  18. package/dist-types/commands/GetIdentityContextCommand.d.ts +1 -0
  19. package/dist-types/commands/ListCustomPermissionsCommand.d.ts +2 -0
  20. package/dist-types/commands/ListDataSourcesCommand.d.ts +4 -0
  21. package/dist-types/commands/StartAssetBundleImportJobCommand.d.ts +2 -0
  22. package/dist-types/commands/UpdateAnalysisCommand.d.ts +51 -18
  23. package/dist-types/commands/UpdateCustomPermissionsCommand.d.ts +2 -0
  24. package/dist-types/commands/UpdateDashboardCommand.d.ts +51 -18
  25. package/dist-types/commands/UpdateDataSourceCommand.d.ts +4 -0
  26. package/dist-types/commands/UpdateTemplateCommand.d.ts +51 -18
  27. package/dist-types/commands/UpdateThemeCommand.d.ts +4 -0
  28. package/dist-types/commands/UpdateTopicPermissionsCommand.d.ts +2 -1
  29. package/dist-types/commands/UpdateTopicRefreshScheduleCommand.d.ts +1 -2
  30. package/dist-types/models/models_0.d.ts +101 -44
  31. package/dist-types/models/models_1.d.ts +31 -13
  32. package/dist-types/models/models_2.d.ts +45 -45
  33. package/dist-types/models/models_3.d.ts +48 -46
  34. package/dist-types/models/models_4.d.ts +67 -58
  35. package/dist-types/models/models_5.d.ts +58 -1
  36. package/dist-types/schemas/schemas_0.d.ts +2 -0
  37. package/dist-types/ts3.4/commands/DescribeRefreshScheduleCommand.d.ts +2 -4
  38. package/dist-types/ts3.4/commands/DescribeRoleCustomPermissionCommand.d.ts +4 -2
  39. package/dist-types/ts3.4/commands/UpdateTopicPermissionsCommand.d.ts +2 -4
  40. package/dist-types/ts3.4/commands/UpdateTopicRefreshScheduleCommand.d.ts +4 -2
  41. package/dist-types/ts3.4/models/models_0.d.ts +32 -18
  42. package/dist-types/ts3.4/models/models_1.d.ts +4 -4
  43. package/dist-types/ts3.4/models/models_2.d.ts +12 -11
  44. package/dist-types/ts3.4/models/models_3.d.ts +12 -13
  45. package/dist-types/ts3.4/models/models_4.d.ts +13 -14
  46. package/dist-types/ts3.4/models/models_5.d.ts +15 -1
  47. package/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -0
  48. package/package.json +5 -5
@@ -4,8 +4,22 @@ import {
4
4
  VPCConnectionAvailabilityStatus,
5
5
  VPCConnectionResourceStatus,
6
6
  } from "./enums";
7
- import { TopicIR, TopicTemplate } from "./models_2";
7
+ import { ResourcePermission, TopicIR, TopicTemplate } from "./models_2";
8
+ import { TopicRefreshSchedule } from "./models_3";
8
9
  import { User } from "./models_4";
10
+ export interface UpdateTopicPermissionsResponse {
11
+ TopicId?: string | undefined;
12
+ TopicArn?: string | undefined;
13
+ Permissions?: ResourcePermission[] | undefined;
14
+ Status?: number | undefined;
15
+ RequestId?: string | undefined;
16
+ }
17
+ export interface UpdateTopicRefreshScheduleRequest {
18
+ AwsAccountId: string | undefined;
19
+ TopicId: string | undefined;
20
+ DatasetId: string | undefined;
21
+ RefreshSchedule: TopicRefreshSchedule | undefined;
22
+ }
9
23
  export interface UpdateTopicRefreshScheduleResponse {
10
24
  TopicId?: string | undefined;
11
25
  TopicArn?: string | undefined;
@@ -249,6 +249,8 @@ export declare var ContributionAnalysisDefault$: StaticStructureSchema;
249
249
  export declare var ContributionAnalysisFactor$: StaticStructureSchema;
250
250
  export declare var ContributionAnalysisTimeRanges$: StaticStructureSchema;
251
251
  export declare var ControlSortConfiguration$: StaticStructureSchema;
252
+ export declare var ControlTitleFontConfiguration$: StaticStructureSchema;
253
+ export declare var ControlTitleFormatText$: StaticStructureSchema;
252
254
  export declare var Coordinate$: StaticStructureSchema;
253
255
  export declare var CreateAccountCustomizationRequest$: StaticStructureSchema;
254
256
  export declare var CreateAccountCustomizationResponse$: StaticStructureSchema;
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.1040.0",
4
+ "version": "3.1042.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",
@@ -21,17 +21,17 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "5.2.0",
23
23
  "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "^3.974.7",
25
- "@aws-sdk/credential-provider-node": "^3.972.38",
24
+ "@aws-sdk/core": "^3.974.8",
25
+ "@aws-sdk/credential-provider-node": "^3.972.39",
26
26
  "@aws-sdk/middleware-host-header": "^3.972.10",
27
27
  "@aws-sdk/middleware-logger": "^3.972.10",
28
28
  "@aws-sdk/middleware-recursion-detection": "^3.972.11",
29
- "@aws-sdk/middleware-user-agent": "^3.972.37",
29
+ "@aws-sdk/middleware-user-agent": "^3.972.38",
30
30
  "@aws-sdk/region-config-resolver": "^3.972.13",
31
31
  "@aws-sdk/types": "^3.973.8",
32
32
  "@aws-sdk/util-endpoints": "^3.996.8",
33
33
  "@aws-sdk/util-user-agent-browser": "^3.972.10",
34
- "@aws-sdk/util-user-agent-node": "^3.973.23",
34
+ "@aws-sdk/util-user-agent-node": "^3.973.24",
35
35
  "@smithy/config-resolver": "^4.4.17",
36
36
  "@smithy/core": "^3.23.17",
37
37
  "@smithy/fetch-http-handler": "^5.3.17",