@aws-sdk/client-quicksight 3.213.0 → 3.214.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/QuickSight.js +45 -0
- package/dist-cjs/commands/DeleteAccountSubscriptionCommand.js +46 -0
- package/dist-cjs/commands/DescribeTemplateAliasCommand.js +3 -3
- package/dist-cjs/commands/DescribeTemplateCommand.js +2 -1
- package/dist-cjs/commands/DescribeTemplatePermissionsCommand.js +3 -3
- package/dist-cjs/commands/DescribeThemeCommand.js +1 -2
- package/dist-cjs/commands/SearchDataSetsCommand.js +46 -0
- package/dist-cjs/commands/SearchDataSourcesCommand.js +46 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/models/models_0.js +69 -45
- package/dist-cjs/models/models_1.js +79 -4
- package/dist-cjs/pagination/SearchDataSetsPaginator.js +36 -0
- package/dist-cjs/pagination/SearchDataSourcesPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +352 -5
- package/dist-es/QuickSight.js +45 -0
- package/dist-es/commands/DeleteAccountSubscriptionCommand.js +42 -0
- package/dist-es/commands/DescribeTemplateAliasCommand.js +1 -1
- package/dist-es/commands/DescribeTemplateCommand.js +2 -1
- package/dist-es/commands/DescribeTemplatePermissionsCommand.js +1 -1
- package/dist-es/commands/DescribeThemeCommand.js +1 -2
- package/dist-es/commands/SearchDataSetsCommand.js +42 -0
- package/dist-es/commands/SearchDataSourcesCommand.js +42 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +55 -30
- package/dist-es/models/models_1.js +62 -0
- package/dist-es/pagination/SearchDataSetsPaginator.js +32 -0
- package/dist-es/pagination/SearchDataSourcesPaginator.js +32 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +342 -1
- package/dist-types/QuickSight.d.ts +22 -1
- package/dist-types/QuickSightClient.d.ts +5 -2
- package/dist-types/commands/DeleteAccountSubscriptionCommand.d.ts +37 -0
- package/dist-types/commands/DescribeAccountSubscriptionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTemplateAliasCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTemplateCommand.d.ts +2 -1
- package/dist-types/commands/DescribeTemplatePermissionsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeThemeCommand.d.ts +1 -2
- package/dist-types/commands/SearchDataSetsCommand.d.ts +37 -0
- package/dist-types/commands/SearchDataSourcesCommand.d.ts +37 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +349 -227
- package/dist-types/models/models_1.d.ts +373 -5
- package/dist-types/pagination/SearchDataSetsPaginator.d.ts +4 -0
- package/dist-types/pagination/SearchDataSourcesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/QuickSight.d.ts +51 -0
- package/dist-types/ts3.4/QuickSightClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/DeleteAccountSubscriptionCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DescribeTemplateAliasCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTemplateCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeTemplatePermissionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeThemeCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchDataSetsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/SearchDataSourcesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +136 -78
- package/dist-types/ts3.4/models/models_1.d.ts +137 -1
- package/dist-types/ts3.4/pagination/SearchDataSetsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/SearchDataSourcesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/package.json +1 -1
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { DeleteAccountSubscriptionRequestFilterSensitiveLog, DeleteAccountSubscriptionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1DeleteAccountSubscriptionCommand, serializeAws_restJson1DeleteAccountSubscriptionCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
export class DeleteAccountSubscriptionCommand extends $Command {
|
|
7
|
+
constructor(input) {
|
|
8
|
+
super();
|
|
9
|
+
this.input = input;
|
|
10
|
+
}
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
20
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
|
+
this.middlewareStack.use(getEndpointPlugin(configuration, DeleteAccountSubscriptionCommand.getEndpointParameterInstructions()));
|
|
22
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
23
|
+
const { logger } = configuration;
|
|
24
|
+
const clientName = "QuickSightClient";
|
|
25
|
+
const commandName = "DeleteAccountSubscriptionCommand";
|
|
26
|
+
const handlerExecutionContext = {
|
|
27
|
+
logger,
|
|
28
|
+
clientName,
|
|
29
|
+
commandName,
|
|
30
|
+
inputFilterSensitiveLog: DeleteAccountSubscriptionRequestFilterSensitiveLog,
|
|
31
|
+
outputFilterSensitiveLog: DeleteAccountSubscriptionResponseFilterSensitiveLog,
|
|
32
|
+
};
|
|
33
|
+
const { requestHandler } = configuration;
|
|
34
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
35
|
+
}
|
|
36
|
+
serialize(input, context) {
|
|
37
|
+
return serializeAws_restJson1DeleteAccountSubscriptionCommand(input, context);
|
|
38
|
+
}
|
|
39
|
+
deserialize(output, context) {
|
|
40
|
+
return deserializeAws_restJson1DeleteAccountSubscriptionCommand(output, context);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { DescribeTemplateAliasRequestFilterSensitiveLog, DescribeTemplateAliasResponseFilterSensitiveLog, } from "../models/
|
|
4
|
+
import { DescribeTemplateAliasRequestFilterSensitiveLog, DescribeTemplateAliasResponseFilterSensitiveLog, } from "../models/models_1";
|
|
5
5
|
import { deserializeAws_restJson1DescribeTemplateAliasCommand, serializeAws_restJson1DescribeTemplateAliasCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
export class DescribeTemplateAliasCommand extends $Command {
|
|
7
7
|
constructor(input) {
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { DescribeTemplateRequestFilterSensitiveLog
|
|
4
|
+
import { DescribeTemplateRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
|
+
import { DescribeTemplateResponseFilterSensitiveLog } from "../models/models_1";
|
|
5
6
|
import { deserializeAws_restJson1DescribeTemplateCommand, serializeAws_restJson1DescribeTemplateCommand, } from "../protocols/Aws_restJson1";
|
|
6
7
|
export class DescribeTemplateCommand extends $Command {
|
|
7
8
|
constructor(input) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { DescribeTemplatePermissionsRequestFilterSensitiveLog, DescribeTemplatePermissionsResponseFilterSensitiveLog, } from "../models/
|
|
4
|
+
import { DescribeTemplatePermissionsRequestFilterSensitiveLog, DescribeTemplatePermissionsResponseFilterSensitiveLog, } from "../models/models_1";
|
|
5
5
|
import { deserializeAws_restJson1DescribeTemplatePermissionsCommand, serializeAws_restJson1DescribeTemplatePermissionsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
export class DescribeTemplatePermissionsCommand extends $Command {
|
|
7
7
|
constructor(input) {
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { DescribeThemeRequestFilterSensitiveLog } from "../models/
|
|
5
|
-
import { DescribeThemeResponseFilterSensitiveLog } from "../models/models_1";
|
|
4
|
+
import { DescribeThemeRequestFilterSensitiveLog, DescribeThemeResponseFilterSensitiveLog, } from "../models/models_1";
|
|
6
5
|
import { deserializeAws_restJson1DescribeThemeCommand, serializeAws_restJson1DescribeThemeCommand, } from "../protocols/Aws_restJson1";
|
|
7
6
|
export class DescribeThemeCommand extends $Command {
|
|
8
7
|
constructor(input) {
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { SearchDataSetsRequestFilterSensitiveLog, SearchDataSetsResponseFilterSensitiveLog, } from "../models/models_1";
|
|
5
|
+
import { deserializeAws_restJson1SearchDataSetsCommand, serializeAws_restJson1SearchDataSetsCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
export class SearchDataSetsCommand extends $Command {
|
|
7
|
+
constructor(input) {
|
|
8
|
+
super();
|
|
9
|
+
this.input = input;
|
|
10
|
+
}
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
20
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
|
+
this.middlewareStack.use(getEndpointPlugin(configuration, SearchDataSetsCommand.getEndpointParameterInstructions()));
|
|
22
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
23
|
+
const { logger } = configuration;
|
|
24
|
+
const clientName = "QuickSightClient";
|
|
25
|
+
const commandName = "SearchDataSetsCommand";
|
|
26
|
+
const handlerExecutionContext = {
|
|
27
|
+
logger,
|
|
28
|
+
clientName,
|
|
29
|
+
commandName,
|
|
30
|
+
inputFilterSensitiveLog: SearchDataSetsRequestFilterSensitiveLog,
|
|
31
|
+
outputFilterSensitiveLog: SearchDataSetsResponseFilterSensitiveLog,
|
|
32
|
+
};
|
|
33
|
+
const { requestHandler } = configuration;
|
|
34
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
35
|
+
}
|
|
36
|
+
serialize(input, context) {
|
|
37
|
+
return serializeAws_restJson1SearchDataSetsCommand(input, context);
|
|
38
|
+
}
|
|
39
|
+
deserialize(output, context) {
|
|
40
|
+
return deserializeAws_restJson1SearchDataSetsCommand(output, context);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { SearchDataSourcesRequestFilterSensitiveLog, SearchDataSourcesResponseFilterSensitiveLog, } from "../models/models_1";
|
|
5
|
+
import { deserializeAws_restJson1SearchDataSourcesCommand, serializeAws_restJson1SearchDataSourcesCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
export class SearchDataSourcesCommand extends $Command {
|
|
7
|
+
constructor(input) {
|
|
8
|
+
super();
|
|
9
|
+
this.input = input;
|
|
10
|
+
}
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
20
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
|
+
this.middlewareStack.use(getEndpointPlugin(configuration, SearchDataSourcesCommand.getEndpointParameterInstructions()));
|
|
22
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
23
|
+
const { logger } = configuration;
|
|
24
|
+
const clientName = "QuickSightClient";
|
|
25
|
+
const commandName = "SearchDataSourcesCommand";
|
|
26
|
+
const handlerExecutionContext = {
|
|
27
|
+
logger,
|
|
28
|
+
clientName,
|
|
29
|
+
commandName,
|
|
30
|
+
inputFilterSensitiveLog: SearchDataSourcesRequestFilterSensitiveLog,
|
|
31
|
+
outputFilterSensitiveLog: SearchDataSourcesResponseFilterSensitiveLog,
|
|
32
|
+
};
|
|
33
|
+
const { requestHandler } = configuration;
|
|
34
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
35
|
+
}
|
|
36
|
+
serialize(input, context) {
|
|
37
|
+
return serializeAws_restJson1SearchDataSourcesCommand(input, context);
|
|
38
|
+
}
|
|
39
|
+
deserialize(output, context) {
|
|
40
|
+
return deserializeAws_restJson1SearchDataSourcesCommand(output, context);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -17,6 +17,7 @@ export * from "./CreateTemplateCommand";
|
|
|
17
17
|
export * from "./CreateThemeAliasCommand";
|
|
18
18
|
export * from "./CreateThemeCommand";
|
|
19
19
|
export * from "./DeleteAccountCustomizationCommand";
|
|
20
|
+
export * from "./DeleteAccountSubscriptionCommand";
|
|
20
21
|
export * from "./DeleteAnalysisCommand";
|
|
21
22
|
export * from "./DeleteDashboardCommand";
|
|
22
23
|
export * from "./DeleteDataSetCommand";
|
|
@@ -90,6 +91,8 @@ export * from "./RegisterUserCommand";
|
|
|
90
91
|
export * from "./RestoreAnalysisCommand";
|
|
91
92
|
export * from "./SearchAnalysesCommand";
|
|
92
93
|
export * from "./SearchDashboardsCommand";
|
|
94
|
+
export * from "./SearchDataSetsCommand";
|
|
95
|
+
export * from "./SearchDataSourcesCommand";
|
|
93
96
|
export * from "./SearchFoldersCommand";
|
|
94
97
|
export * from "./SearchGroupsCommand";
|
|
95
98
|
export * from "./TagResourceCommand";
|
|
@@ -50,11 +50,18 @@ export var ResourceStatus;
|
|
|
50
50
|
})(ResourceStatus || (ResourceStatus = {}));
|
|
51
51
|
export var AnalysisFilterAttribute;
|
|
52
52
|
(function (AnalysisFilterAttribute) {
|
|
53
|
+
AnalysisFilterAttribute["ANALYSIS_NAME"] = "ANALYSIS_NAME";
|
|
54
|
+
AnalysisFilterAttribute["DIRECT_QUICKSIGHT_OWNER"] = "DIRECT_QUICKSIGHT_OWNER";
|
|
55
|
+
AnalysisFilterAttribute["DIRECT_QUICKSIGHT_SOLE_OWNER"] = "DIRECT_QUICKSIGHT_SOLE_OWNER";
|
|
56
|
+
AnalysisFilterAttribute["DIRECT_QUICKSIGHT_VIEWER_OR_OWNER"] = "DIRECT_QUICKSIGHT_VIEWER_OR_OWNER";
|
|
57
|
+
AnalysisFilterAttribute["QUICKSIGHT_OWNER"] = "QUICKSIGHT_OWNER";
|
|
53
58
|
AnalysisFilterAttribute["QUICKSIGHT_USER"] = "QUICKSIGHT_USER";
|
|
59
|
+
AnalysisFilterAttribute["QUICKSIGHT_VIEWER_OR_OWNER"] = "QUICKSIGHT_VIEWER_OR_OWNER";
|
|
54
60
|
})(AnalysisFilterAttribute || (AnalysisFilterAttribute = {}));
|
|
55
61
|
export var FilterOperator;
|
|
56
62
|
(function (FilterOperator) {
|
|
57
63
|
FilterOperator["StringEquals"] = "StringEquals";
|
|
64
|
+
FilterOperator["StringLike"] = "StringLike";
|
|
58
65
|
})(FilterOperator || (FilterOperator = {}));
|
|
59
66
|
export var AssignmentStatus;
|
|
60
67
|
(function (AssignmentStatus) {
|
|
@@ -399,6 +406,8 @@ export var DataSourceParameters;
|
|
|
399
406
|
return visitor.AmazonOpenSearchParameters(value.AmazonOpenSearchParameters);
|
|
400
407
|
if (value.ExasolParameters !== undefined)
|
|
401
408
|
return visitor.ExasolParameters(value.ExasolParameters);
|
|
409
|
+
if (value.DatabricksParameters !== undefined)
|
|
410
|
+
return visitor.DatabricksParameters(value.DatabricksParameters);
|
|
402
411
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
403
412
|
};
|
|
404
413
|
})(DataSourceParameters || (DataSourceParameters = {}));
|
|
@@ -411,6 +420,7 @@ export var DataSourceType;
|
|
|
411
420
|
DataSourceType["AURORA"] = "AURORA";
|
|
412
421
|
DataSourceType["AURORA_POSTGRESQL"] = "AURORA_POSTGRESQL";
|
|
413
422
|
DataSourceType["AWS_IOT_ANALYTICS"] = "AWS_IOT_ANALYTICS";
|
|
423
|
+
DataSourceType["DATABRICKS"] = "DATABRICKS";
|
|
414
424
|
DataSourceType["EXASOL"] = "EXASOL";
|
|
415
425
|
DataSourceType["GITHUB"] = "GITHUB";
|
|
416
426
|
DataSourceType["JIRA"] = "JIRA";
|
|
@@ -481,8 +491,23 @@ export var DashboardErrorType;
|
|
|
481
491
|
})(DashboardErrorType || (DashboardErrorType = {}));
|
|
482
492
|
export var DashboardFilterAttribute;
|
|
483
493
|
(function (DashboardFilterAttribute) {
|
|
494
|
+
DashboardFilterAttribute["DASHBOARD_NAME"] = "DASHBOARD_NAME";
|
|
495
|
+
DashboardFilterAttribute["DIRECT_QUICKSIGHT_OWNER"] = "DIRECT_QUICKSIGHT_OWNER";
|
|
496
|
+
DashboardFilterAttribute["DIRECT_QUICKSIGHT_SOLE_OWNER"] = "DIRECT_QUICKSIGHT_SOLE_OWNER";
|
|
497
|
+
DashboardFilterAttribute["DIRECT_QUICKSIGHT_VIEWER_OR_OWNER"] = "DIRECT_QUICKSIGHT_VIEWER_OR_OWNER";
|
|
498
|
+
DashboardFilterAttribute["QUICKSIGHT_OWNER"] = "QUICKSIGHT_OWNER";
|
|
484
499
|
DashboardFilterAttribute["QUICKSIGHT_USER"] = "QUICKSIGHT_USER";
|
|
500
|
+
DashboardFilterAttribute["QUICKSIGHT_VIEWER_OR_OWNER"] = "QUICKSIGHT_VIEWER_OR_OWNER";
|
|
485
501
|
})(DashboardFilterAttribute || (DashboardFilterAttribute = {}));
|
|
502
|
+
export var DataSetFilterAttribute;
|
|
503
|
+
(function (DataSetFilterAttribute) {
|
|
504
|
+
DataSetFilterAttribute["DATASET_NAME"] = "DATASET_NAME";
|
|
505
|
+
DataSetFilterAttribute["DIRECT_QUICKSIGHT_OWNER"] = "DIRECT_QUICKSIGHT_OWNER";
|
|
506
|
+
DataSetFilterAttribute["DIRECT_QUICKSIGHT_SOLE_OWNER"] = "DIRECT_QUICKSIGHT_SOLE_OWNER";
|
|
507
|
+
DataSetFilterAttribute["DIRECT_QUICKSIGHT_VIEWER_OR_OWNER"] = "DIRECT_QUICKSIGHT_VIEWER_OR_OWNER";
|
|
508
|
+
DataSetFilterAttribute["QUICKSIGHT_OWNER"] = "QUICKSIGHT_OWNER";
|
|
509
|
+
DataSetFilterAttribute["QUICKSIGHT_VIEWER_OR_OWNER"] = "QUICKSIGHT_VIEWER_OR_OWNER";
|
|
510
|
+
})(DataSetFilterAttribute || (DataSetFilterAttribute = {}));
|
|
486
511
|
export var DataSourceErrorInfoType;
|
|
487
512
|
(function (DataSourceErrorInfoType) {
|
|
488
513
|
DataSourceErrorInfoType["ACCESS_DENIED"] = "ACCESS_DENIED";
|
|
@@ -494,6 +519,13 @@ export var DataSourceErrorInfoType;
|
|
|
494
519
|
DataSourceErrorInfoType["UNKNOWN"] = "UNKNOWN";
|
|
495
520
|
DataSourceErrorInfoType["UNKNOWN_HOST"] = "UNKNOWN_HOST";
|
|
496
521
|
})(DataSourceErrorInfoType || (DataSourceErrorInfoType = {}));
|
|
522
|
+
export var DataSourceFilterAttribute;
|
|
523
|
+
(function (DataSourceFilterAttribute) {
|
|
524
|
+
DataSourceFilterAttribute["DATASOURCE_NAME"] = "DATASOURCE_NAME";
|
|
525
|
+
DataSourceFilterAttribute["DIRECT_QUICKSIGHT_OWNER"] = "DIRECT_QUICKSIGHT_OWNER";
|
|
526
|
+
DataSourceFilterAttribute["DIRECT_QUICKSIGHT_SOLE_OWNER"] = "DIRECT_QUICKSIGHT_SOLE_OWNER";
|
|
527
|
+
DataSourceFilterAttribute["DIRECT_QUICKSIGHT_VIEWER_OR_OWNER"] = "DIRECT_QUICKSIGHT_VIEWER_OR_OWNER";
|
|
528
|
+
})(DataSourceFilterAttribute || (DataSourceFilterAttribute = {}));
|
|
497
529
|
export class InvalidNextTokenException extends __BaseException {
|
|
498
530
|
constructor(opts) {
|
|
499
531
|
super({
|
|
@@ -579,12 +611,6 @@ export var TemplateErrorType;
|
|
|
579
611
|
TemplateErrorType["INTERNAL_FAILURE"] = "INTERNAL_FAILURE";
|
|
580
612
|
TemplateErrorType["SOURCE_NOT_FOUND"] = "SOURCE_NOT_FOUND";
|
|
581
613
|
})(TemplateErrorType || (TemplateErrorType = {}));
|
|
582
|
-
export var ThemeType;
|
|
583
|
-
(function (ThemeType) {
|
|
584
|
-
ThemeType["ALL"] = "ALL";
|
|
585
|
-
ThemeType["CUSTOM"] = "CUSTOM";
|
|
586
|
-
ThemeType["QUICKSIGHT"] = "QUICKSIGHT";
|
|
587
|
-
})(ThemeType || (ThemeType = {}));
|
|
588
614
|
export const AccountCustomizationFilterSensitiveLog = (obj) => ({
|
|
589
615
|
...obj,
|
|
590
616
|
});
|
|
@@ -639,6 +665,9 @@ export const DashboardVisualIdFilterSensitiveLog = (obj) => ({
|
|
|
639
665
|
export const AnonymousUserDashboardVisualEmbeddingConfigurationFilterSensitiveLog = (obj) => ({
|
|
640
666
|
...obj,
|
|
641
667
|
});
|
|
668
|
+
export const AnonymousUserQSearchBarEmbeddingConfigurationFilterSensitiveLog = (obj) => ({
|
|
669
|
+
...obj,
|
|
670
|
+
});
|
|
642
671
|
export const AnonymousUserEmbeddingExperienceConfigurationFilterSensitiveLog = (obj) => ({
|
|
643
672
|
...obj,
|
|
644
673
|
});
|
|
@@ -864,6 +893,9 @@ export const CreateDataSetRequestFilterSensitiveLog = (obj) => ({
|
|
|
864
893
|
export const CreateDataSetResponseFilterSensitiveLog = (obj) => ({
|
|
865
894
|
...obj,
|
|
866
895
|
});
|
|
896
|
+
export const DatabricksParametersFilterSensitiveLog = (obj) => ({
|
|
897
|
+
...obj,
|
|
898
|
+
});
|
|
867
899
|
export const ExasolParametersFilterSensitiveLog = (obj) => ({
|
|
868
900
|
...obj,
|
|
869
901
|
});
|
|
@@ -962,6 +994,8 @@ export const DataSourceParametersFilterSensitiveLog = (obj) => {
|
|
|
962
994
|
return { AmazonOpenSearchParameters: AmazonOpenSearchParametersFilterSensitiveLog(obj.AmazonOpenSearchParameters) };
|
|
963
995
|
if (obj.ExasolParameters !== undefined)
|
|
964
996
|
return { ExasolParameters: ExasolParametersFilterSensitiveLog(obj.ExasolParameters) };
|
|
997
|
+
if (obj.DatabricksParameters !== undefined)
|
|
998
|
+
return { DatabricksParameters: DatabricksParametersFilterSensitiveLog(obj.DatabricksParameters) };
|
|
965
999
|
if (obj.$unknown !== undefined)
|
|
966
1000
|
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
967
1001
|
};
|
|
@@ -1144,6 +1178,9 @@ export const DataSetSchemaFilterSensitiveLog = (obj) => ({
|
|
|
1144
1178
|
export const DataSetConfigurationFilterSensitiveLog = (obj) => ({
|
|
1145
1179
|
...obj,
|
|
1146
1180
|
});
|
|
1181
|
+
export const DataSetSearchFilterFilterSensitiveLog = (obj) => ({
|
|
1182
|
+
...obj,
|
|
1183
|
+
});
|
|
1147
1184
|
export const DataSetSummaryFilterSensitiveLog = (obj) => ({
|
|
1148
1185
|
...obj,
|
|
1149
1186
|
});
|
|
@@ -1159,12 +1196,24 @@ export const DataSourceFilterSensitiveLog = (obj) => ({
|
|
|
1159
1196
|
AlternateDataSourceParameters: obj.AlternateDataSourceParameters.map((item) => DataSourceParametersFilterSensitiveLog(item)),
|
|
1160
1197
|
}),
|
|
1161
1198
|
});
|
|
1199
|
+
export const DataSourceSearchFilterFilterSensitiveLog = (obj) => ({
|
|
1200
|
+
...obj,
|
|
1201
|
+
});
|
|
1202
|
+
export const DataSourceSummaryFilterSensitiveLog = (obj) => ({
|
|
1203
|
+
...obj,
|
|
1204
|
+
});
|
|
1162
1205
|
export const DeleteAccountCustomizationRequestFilterSensitiveLog = (obj) => ({
|
|
1163
1206
|
...obj,
|
|
1164
1207
|
});
|
|
1165
1208
|
export const DeleteAccountCustomizationResponseFilterSensitiveLog = (obj) => ({
|
|
1166
1209
|
...obj,
|
|
1167
1210
|
});
|
|
1211
|
+
export const DeleteAccountSubscriptionRequestFilterSensitiveLog = (obj) => ({
|
|
1212
|
+
...obj,
|
|
1213
|
+
});
|
|
1214
|
+
export const DeleteAccountSubscriptionResponseFilterSensitiveLog = (obj) => ({
|
|
1215
|
+
...obj,
|
|
1216
|
+
});
|
|
1168
1217
|
export const DeleteAnalysisRequestFilterSensitiveLog = (obj) => ({
|
|
1169
1218
|
...obj,
|
|
1170
1219
|
});
|
|
@@ -1416,27 +1465,3 @@ export const DescribeTemplateRequestFilterSensitiveLog = (obj) => ({
|
|
|
1416
1465
|
export const TemplateErrorFilterSensitiveLog = (obj) => ({
|
|
1417
1466
|
...obj,
|
|
1418
1467
|
});
|
|
1419
|
-
export const TemplateVersionFilterSensitiveLog = (obj) => ({
|
|
1420
|
-
...obj,
|
|
1421
|
-
});
|
|
1422
|
-
export const TemplateFilterSensitiveLog = (obj) => ({
|
|
1423
|
-
...obj,
|
|
1424
|
-
});
|
|
1425
|
-
export const DescribeTemplateResponseFilterSensitiveLog = (obj) => ({
|
|
1426
|
-
...obj,
|
|
1427
|
-
});
|
|
1428
|
-
export const DescribeTemplateAliasRequestFilterSensitiveLog = (obj) => ({
|
|
1429
|
-
...obj,
|
|
1430
|
-
});
|
|
1431
|
-
export const DescribeTemplateAliasResponseFilterSensitiveLog = (obj) => ({
|
|
1432
|
-
...obj,
|
|
1433
|
-
});
|
|
1434
|
-
export const DescribeTemplatePermissionsRequestFilterSensitiveLog = (obj) => ({
|
|
1435
|
-
...obj,
|
|
1436
|
-
});
|
|
1437
|
-
export const DescribeTemplatePermissionsResponseFilterSensitiveLog = (obj) => ({
|
|
1438
|
-
...obj,
|
|
1439
|
-
});
|
|
1440
|
-
export const DescribeThemeRequestFilterSensitiveLog = (obj) => ({
|
|
1441
|
-
...obj,
|
|
1442
|
-
});
|
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { DataSourceFilterSensitiveLog, DataSourceParametersFilterSensitiveLog, LogicalTableFilterSensitiveLog, PhysicalTableFilterSensitiveLog, RowLevelPermissionTagConfigurationFilterSensitiveLog, } from "./models_0";
|
|
3
3
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
4
|
+
export var ThemeType;
|
|
5
|
+
(function (ThemeType) {
|
|
6
|
+
ThemeType["ALL"] = "ALL";
|
|
7
|
+
ThemeType["CUSTOM"] = "CUSTOM";
|
|
8
|
+
ThemeType["QUICKSIGHT"] = "QUICKSIGHT";
|
|
9
|
+
})(ThemeType || (ThemeType = {}));
|
|
4
10
|
export var ThemeErrorType;
|
|
5
11
|
(function (ThemeErrorType) {
|
|
6
12
|
ThemeErrorType["INTERNAL_FAILURE"] = "INTERNAL_FAILURE";
|
|
@@ -40,7 +46,13 @@ export var EmbeddingIdentityType;
|
|
|
40
46
|
})(EmbeddingIdentityType || (EmbeddingIdentityType = {}));
|
|
41
47
|
export var FolderFilterAttribute;
|
|
42
48
|
(function (FolderFilterAttribute) {
|
|
49
|
+
FolderFilterAttribute["DIRECT_QUICKSIGHT_OWNER"] = "DIRECT_QUICKSIGHT_OWNER";
|
|
50
|
+
FolderFilterAttribute["DIRECT_QUICKSIGHT_SOLE_OWNER"] = "DIRECT_QUICKSIGHT_SOLE_OWNER";
|
|
51
|
+
FolderFilterAttribute["DIRECT_QUICKSIGHT_VIEWER_OR_OWNER"] = "DIRECT_QUICKSIGHT_VIEWER_OR_OWNER";
|
|
52
|
+
FolderFilterAttribute["FOLDER_NAME"] = "FOLDER_NAME";
|
|
43
53
|
FolderFilterAttribute["PARENT_FOLDER_ARN"] = "PARENT_FOLDER_ARN";
|
|
54
|
+
FolderFilterAttribute["QUICKSIGHT_OWNER"] = "QUICKSIGHT_OWNER";
|
|
55
|
+
FolderFilterAttribute["QUICKSIGHT_VIEWER_OR_OWNER"] = "QUICKSIGHT_VIEWER_OR_OWNER";
|
|
44
56
|
})(FolderFilterAttribute || (FolderFilterAttribute = {}));
|
|
45
57
|
export class SessionLifetimeInMinutesInvalidException extends __BaseException {
|
|
46
58
|
constructor(opts) {
|
|
@@ -106,6 +118,44 @@ export var GroupFilterOperator;
|
|
|
106
118
|
(function (GroupFilterOperator) {
|
|
107
119
|
GroupFilterOperator["StartsWith"] = "StartsWith";
|
|
108
120
|
})(GroupFilterOperator || (GroupFilterOperator = {}));
|
|
121
|
+
export class InvalidRequestException extends __BaseException {
|
|
122
|
+
constructor(opts) {
|
|
123
|
+
super({
|
|
124
|
+
name: "InvalidRequestException",
|
|
125
|
+
$fault: "client",
|
|
126
|
+
...opts,
|
|
127
|
+
});
|
|
128
|
+
this.name = "InvalidRequestException";
|
|
129
|
+
this.$fault = "client";
|
|
130
|
+
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
131
|
+
this.Message = opts.Message;
|
|
132
|
+
this.RequestId = opts.RequestId;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
export const TemplateVersionFilterSensitiveLog = (obj) => ({
|
|
136
|
+
...obj,
|
|
137
|
+
});
|
|
138
|
+
export const TemplateFilterSensitiveLog = (obj) => ({
|
|
139
|
+
...obj,
|
|
140
|
+
});
|
|
141
|
+
export const DescribeTemplateResponseFilterSensitiveLog = (obj) => ({
|
|
142
|
+
...obj,
|
|
143
|
+
});
|
|
144
|
+
export const DescribeTemplateAliasRequestFilterSensitiveLog = (obj) => ({
|
|
145
|
+
...obj,
|
|
146
|
+
});
|
|
147
|
+
export const DescribeTemplateAliasResponseFilterSensitiveLog = (obj) => ({
|
|
148
|
+
...obj,
|
|
149
|
+
});
|
|
150
|
+
export const DescribeTemplatePermissionsRequestFilterSensitiveLog = (obj) => ({
|
|
151
|
+
...obj,
|
|
152
|
+
});
|
|
153
|
+
export const DescribeTemplatePermissionsResponseFilterSensitiveLog = (obj) => ({
|
|
154
|
+
...obj,
|
|
155
|
+
});
|
|
156
|
+
export const DescribeThemeRequestFilterSensitiveLog = (obj) => ({
|
|
157
|
+
...obj,
|
|
158
|
+
});
|
|
109
159
|
export const ThemeErrorFilterSensitiveLog = (obj) => ({
|
|
110
160
|
...obj,
|
|
111
161
|
});
|
|
@@ -371,6 +421,18 @@ export const SearchDashboardsRequestFilterSensitiveLog = (obj) => ({
|
|
|
371
421
|
export const SearchDashboardsResponseFilterSensitiveLog = (obj) => ({
|
|
372
422
|
...obj,
|
|
373
423
|
});
|
|
424
|
+
export const SearchDataSetsRequestFilterSensitiveLog = (obj) => ({
|
|
425
|
+
...obj,
|
|
426
|
+
});
|
|
427
|
+
export const SearchDataSetsResponseFilterSensitiveLog = (obj) => ({
|
|
428
|
+
...obj,
|
|
429
|
+
});
|
|
430
|
+
export const SearchDataSourcesRequestFilterSensitiveLog = (obj) => ({
|
|
431
|
+
...obj,
|
|
432
|
+
});
|
|
433
|
+
export const SearchDataSourcesResponseFilterSensitiveLog = (obj) => ({
|
|
434
|
+
...obj,
|
|
435
|
+
});
|
|
374
436
|
export const SearchFoldersRequestFilterSensitiveLog = (obj) => ({
|
|
375
437
|
...obj,
|
|
376
438
|
});
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { SearchDataSetsCommand, } from "../commands/SearchDataSetsCommand";
|
|
2
|
+
import { QuickSight } from "../QuickSight";
|
|
3
|
+
import { QuickSightClient } from "../QuickSightClient";
|
|
4
|
+
const makePagedClientRequest = async (client, input, ...args) => {
|
|
5
|
+
return await client.send(new SearchDataSetsCommand(input), ...args);
|
|
6
|
+
};
|
|
7
|
+
const makePagedRequest = async (client, input, ...args) => {
|
|
8
|
+
return await client.searchDataSets(input, ...args);
|
|
9
|
+
};
|
|
10
|
+
export async function* paginateSearchDataSets(config, input, ...additionalArguments) {
|
|
11
|
+
let token = config.startingToken || undefined;
|
|
12
|
+
let hasNext = true;
|
|
13
|
+
let page;
|
|
14
|
+
while (hasNext) {
|
|
15
|
+
input.NextToken = token;
|
|
16
|
+
input["MaxResults"] = config.pageSize;
|
|
17
|
+
if (config.client instanceof QuickSight) {
|
|
18
|
+
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
19
|
+
}
|
|
20
|
+
else if (config.client instanceof QuickSightClient) {
|
|
21
|
+
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
22
|
+
}
|
|
23
|
+
else {
|
|
24
|
+
throw new Error("Invalid client, expected QuickSight | QuickSightClient");
|
|
25
|
+
}
|
|
26
|
+
yield page;
|
|
27
|
+
const prevToken = token;
|
|
28
|
+
token = page.NextToken;
|
|
29
|
+
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
30
|
+
}
|
|
31
|
+
return undefined;
|
|
32
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { SearchDataSourcesCommand, } from "../commands/SearchDataSourcesCommand";
|
|
2
|
+
import { QuickSight } from "../QuickSight";
|
|
3
|
+
import { QuickSightClient } from "../QuickSightClient";
|
|
4
|
+
const makePagedClientRequest = async (client, input, ...args) => {
|
|
5
|
+
return await client.send(new SearchDataSourcesCommand(input), ...args);
|
|
6
|
+
};
|
|
7
|
+
const makePagedRequest = async (client, input, ...args) => {
|
|
8
|
+
return await client.searchDataSources(input, ...args);
|
|
9
|
+
};
|
|
10
|
+
export async function* paginateSearchDataSources(config, input, ...additionalArguments) {
|
|
11
|
+
let token = config.startingToken || undefined;
|
|
12
|
+
let hasNext = true;
|
|
13
|
+
let page;
|
|
14
|
+
while (hasNext) {
|
|
15
|
+
input.NextToken = token;
|
|
16
|
+
input["MaxResults"] = config.pageSize;
|
|
17
|
+
if (config.client instanceof QuickSight) {
|
|
18
|
+
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
19
|
+
}
|
|
20
|
+
else if (config.client instanceof QuickSightClient) {
|
|
21
|
+
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
22
|
+
}
|
|
23
|
+
else {
|
|
24
|
+
throw new Error("Invalid client, expected QuickSight | QuickSightClient");
|
|
25
|
+
}
|
|
26
|
+
yield page;
|
|
27
|
+
const prevToken = token;
|
|
28
|
+
token = page.NextToken;
|
|
29
|
+
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
30
|
+
}
|
|
31
|
+
return undefined;
|
|
32
|
+
}
|
|
@@ -13,3 +13,5 @@ export * from "./ListThemeVersionsPaginator";
|
|
|
13
13
|
export * from "./ListThemesPaginator";
|
|
14
14
|
export * from "./SearchAnalysesPaginator";
|
|
15
15
|
export * from "./SearchDashboardsPaginator";
|
|
16
|
+
export * from "./SearchDataSetsPaginator";
|
|
17
|
+
export * from "./SearchDataSourcesPaginator";
|