@aws-sdk/client-quicksight 3.431.0 → 3.432.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/commands/StartAssetBundleImportJobCommand.js +2 -2
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +17 -9
- package/dist-cjs/models/models_1.js +20 -9
- package/dist-cjs/models/models_2.js +17 -25
- package/dist-cjs/models/models_3.js +22 -15
- package/dist-cjs/models/models_4.js +16 -1
- package/dist-cjs/protocols/Aws_restJson1.js +8 -0
- package/dist-es/commands/StartAssetBundleImportJobCommand.js +1 -1
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +14 -6
- package/dist-es/models/models_1.js +15 -4
- package/dist-es/models/models_2.js +13 -22
- package/dist-es/models/models_3.js +22 -13
- package/dist-es/models/models_4.js +14 -1
- package/dist-es/protocols/Aws_restJson1.js +8 -0
- package/dist-types/commands/CreateAnalysisCommand.d.ts +47 -12
- package/dist-types/commands/CreateDashboardCommand.d.ts +47 -12
- package/dist-types/commands/CreateDataSetCommand.d.ts +3 -0
- package/dist-types/commands/CreateDataSourceCommand.d.ts +25 -0
- package/dist-types/commands/CreateFolderCommand.d.ts +1 -1
- package/dist-types/commands/CreateTemplateCommand.d.ts +44 -12
- package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +44 -12
- package/dist-types/commands/DescribeAssetBundleImportJobCommand.d.ts +11 -0
- package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +44 -12
- package/dist-types/commands/DescribeDataSourceCommand.d.ts +22 -0
- package/dist-types/commands/DescribeFolderCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +44 -12
- package/dist-types/commands/ListDataSourcesCommand.d.ts +22 -0
- package/dist-types/commands/ListFoldersCommand.d.ts +1 -1
- package/dist-types/commands/SearchFoldersCommand.d.ts +2 -2
- package/dist-types/commands/SearchGroupsCommand.d.ts +1 -1
- package/dist-types/commands/StartAssetBundleExportJobCommand.d.ts +1 -1
- package/dist-types/commands/StartAssetBundleImportJobCommand.d.ts +12 -1
- package/dist-types/commands/UpdateAnalysisCommand.d.ts +44 -12
- package/dist-types/commands/UpdateDashboardCommand.d.ts +44 -12
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +22 -0
- package/dist-types/commands/UpdateTemplateCommand.d.ts +44 -12
- package/dist-types/models/models_0.d.ts +111 -106
- package/dist-types/models/models_1.d.ts +137 -122
- package/dist-types/models/models_2.d.ts +320 -310
- package/dist-types/models/models_3.d.ts +309 -290
- package/dist-types/models/models_4.d.ts +290 -2
- package/dist-types/ts3.4/commands/SearchFoldersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchGroupsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartAssetBundleExportJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartAssetBundleImportJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +29 -26
- package/dist-types/ts3.4/models/models_1.d.ts +40 -31
- package/dist-types/ts3.4/models/models_2.d.ts +161 -83
- package/dist-types/ts3.4/models/models_3.d.ts +81 -70
- package/dist-types/ts3.4/models/models_4.d.ts +70 -1
- package/package.json +1 -1
|
@@ -2,6 +2,11 @@ import { AccountCustomization, ResourceStatus } from "./models_0";
|
|
|
2
2
|
import { AnalysisDefinition, AnalysisSourceEntity } from "./models_1";
|
|
3
3
|
import {
|
|
4
4
|
_Parameters,
|
|
5
|
+
AssetBundleCloudFormationOverridePropertyConfiguration,
|
|
6
|
+
AssetBundleExportFormat,
|
|
7
|
+
AssetBundleImportFailureAction,
|
|
8
|
+
AssetBundleImportJobOverrideParameters,
|
|
9
|
+
AssetBundleImportSource,
|
|
5
10
|
AssignmentStatus,
|
|
6
11
|
ColumnGroup,
|
|
7
12
|
ColumnLevelPermissionRule,
|
|
@@ -36,12 +41,70 @@ import {
|
|
|
36
41
|
VPCConnectionResourceStatus,
|
|
37
42
|
} from "./models_2";
|
|
38
43
|
import {
|
|
44
|
+
FolderSearchFilter,
|
|
45
|
+
FolderSummary,
|
|
46
|
+
GroupSearchFilter,
|
|
39
47
|
LinkSharingConfiguration,
|
|
40
|
-
|
|
48
|
+
SessionTag,
|
|
41
49
|
SnapshotConfiguration,
|
|
42
50
|
User,
|
|
43
51
|
UserRole,
|
|
44
52
|
} from "./models_3";
|
|
53
|
+
export interface SearchFoldersRequest {
|
|
54
|
+
AwsAccountId: string | undefined;
|
|
55
|
+
Filters: FolderSearchFilter[] | undefined;
|
|
56
|
+
NextToken?: string;
|
|
57
|
+
MaxResults?: number;
|
|
58
|
+
}
|
|
59
|
+
export interface SearchFoldersResponse {
|
|
60
|
+
Status?: number;
|
|
61
|
+
FolderSummaryList?: FolderSummary[];
|
|
62
|
+
NextToken?: string;
|
|
63
|
+
RequestId?: string;
|
|
64
|
+
}
|
|
65
|
+
export interface SearchGroupsRequest {
|
|
66
|
+
AwsAccountId: string | undefined;
|
|
67
|
+
NextToken?: string;
|
|
68
|
+
MaxResults?: number;
|
|
69
|
+
Namespace: string | undefined;
|
|
70
|
+
Filters: GroupSearchFilter[] | undefined;
|
|
71
|
+
}
|
|
72
|
+
export interface SearchGroupsResponse {
|
|
73
|
+
GroupList?: Group[];
|
|
74
|
+
NextToken?: string;
|
|
75
|
+
RequestId?: string;
|
|
76
|
+
Status?: number;
|
|
77
|
+
}
|
|
78
|
+
export interface StartAssetBundleExportJobRequest {
|
|
79
|
+
AwsAccountId: string | undefined;
|
|
80
|
+
AssetBundleExportJobId: string | undefined;
|
|
81
|
+
ResourceArns: string[] | undefined;
|
|
82
|
+
IncludeAllDependencies?: boolean;
|
|
83
|
+
ExportFormat: AssetBundleExportFormat | undefined;
|
|
84
|
+
CloudFormationOverridePropertyConfiguration?: AssetBundleCloudFormationOverridePropertyConfiguration;
|
|
85
|
+
}
|
|
86
|
+
export interface StartAssetBundleExportJobResponse {
|
|
87
|
+
Arn?: string;
|
|
88
|
+
AssetBundleExportJobId?: string;
|
|
89
|
+
RequestId?: string;
|
|
90
|
+
Status?: number;
|
|
91
|
+
}
|
|
92
|
+
export interface StartAssetBundleImportJobRequest {
|
|
93
|
+
AwsAccountId: string | undefined;
|
|
94
|
+
AssetBundleImportJobId: string | undefined;
|
|
95
|
+
AssetBundleImportSource: AssetBundleImportSource | undefined;
|
|
96
|
+
OverrideParameters?: AssetBundleImportJobOverrideParameters;
|
|
97
|
+
FailureAction?: AssetBundleImportFailureAction;
|
|
98
|
+
}
|
|
99
|
+
export interface StartAssetBundleImportJobResponse {
|
|
100
|
+
Arn?: string;
|
|
101
|
+
AssetBundleImportJobId?: string;
|
|
102
|
+
RequestId?: string;
|
|
103
|
+
Status?: number;
|
|
104
|
+
}
|
|
105
|
+
export interface SnapshotAnonymousUser {
|
|
106
|
+
RowLevelPermissionTags?: SessionTag[];
|
|
107
|
+
}
|
|
45
108
|
export interface SnapshotUserConfiguration {
|
|
46
109
|
AnonymousUsers?: SnapshotAnonymousUser[];
|
|
47
110
|
}
|
|
@@ -471,6 +534,12 @@ export interface UpdateVPCConnectionResponse {
|
|
|
471
534
|
RequestId?: string;
|
|
472
535
|
Status?: number;
|
|
473
536
|
}
|
|
537
|
+
export declare const StartAssetBundleImportJobRequestFilterSensitiveLog: (
|
|
538
|
+
obj: StartAssetBundleImportJobRequest
|
|
539
|
+
) => any;
|
|
540
|
+
export declare const SnapshotAnonymousUserFilterSensitiveLog: (
|
|
541
|
+
obj: SnapshotAnonymousUser
|
|
542
|
+
) => any;
|
|
474
543
|
export declare const SnapshotUserConfigurationFilterSensitiveLog: (
|
|
475
544
|
obj: SnapshotUserConfiguration
|
|
476
545
|
) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-quicksight",
|
|
3
3
|
"description": "AWS SDK for JavaScript Quicksight Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.432.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|