@aws-sdk/client-quicksight 3.213.0 → 3.215.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/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- 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/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -2
- package/package.json +28 -28
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
SearchDataSetsCommandInput,
|
|
4
|
+
SearchDataSetsCommandOutput,
|
|
5
|
+
} from "../commands/SearchDataSetsCommand";
|
|
6
|
+
import { QuickSightPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateSearchDataSets(
|
|
8
|
+
config: QuickSightPaginationConfiguration,
|
|
9
|
+
input: SearchDataSetsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<SearchDataSetsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
SearchDataSourcesCommandInput,
|
|
4
|
+
SearchDataSourcesCommandOutput,
|
|
5
|
+
} from "../commands/SearchDataSourcesCommand";
|
|
6
|
+
import { QuickSightPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateSearchDataSources(
|
|
8
|
+
config: QuickSightPaginationConfiguration,
|
|
9
|
+
input: SearchDataSourcesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<SearchDataSourcesCommandOutput>;
|
|
@@ -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";
|
|
@@ -79,6 +79,10 @@ import {
|
|
|
79
79
|
DeleteAccountCustomizationCommandInput,
|
|
80
80
|
DeleteAccountCustomizationCommandOutput,
|
|
81
81
|
} from "../commands/DeleteAccountCustomizationCommand";
|
|
82
|
+
import {
|
|
83
|
+
DeleteAccountSubscriptionCommandInput,
|
|
84
|
+
DeleteAccountSubscriptionCommandOutput,
|
|
85
|
+
} from "../commands/DeleteAccountSubscriptionCommand";
|
|
82
86
|
import {
|
|
83
87
|
DeleteAnalysisCommandInput,
|
|
84
88
|
DeleteAnalysisCommandOutput,
|
|
@@ -371,6 +375,14 @@ import {
|
|
|
371
375
|
SearchDashboardsCommandInput,
|
|
372
376
|
SearchDashboardsCommandOutput,
|
|
373
377
|
} from "../commands/SearchDashboardsCommand";
|
|
378
|
+
import {
|
|
379
|
+
SearchDataSetsCommandInput,
|
|
380
|
+
SearchDataSetsCommandOutput,
|
|
381
|
+
} from "../commands/SearchDataSetsCommand";
|
|
382
|
+
import {
|
|
383
|
+
SearchDataSourcesCommandInput,
|
|
384
|
+
SearchDataSourcesCommandOutput,
|
|
385
|
+
} from "../commands/SearchDataSourcesCommand";
|
|
374
386
|
import {
|
|
375
387
|
SearchFoldersCommandInput,
|
|
376
388
|
SearchFoldersCommandOutput,
|
|
@@ -559,6 +571,10 @@ export declare const serializeAws_restJson1DeleteAccountCustomizationCommand: (
|
|
|
559
571
|
input: DeleteAccountCustomizationCommandInput,
|
|
560
572
|
context: __SerdeContext
|
|
561
573
|
) => Promise<__HttpRequest>;
|
|
574
|
+
export declare const serializeAws_restJson1DeleteAccountSubscriptionCommand: (
|
|
575
|
+
input: DeleteAccountSubscriptionCommandInput,
|
|
576
|
+
context: __SerdeContext
|
|
577
|
+
) => Promise<__HttpRequest>;
|
|
562
578
|
export declare const serializeAws_restJson1DeleteAnalysisCommand: (
|
|
563
579
|
input: DeleteAnalysisCommandInput,
|
|
564
580
|
context: __SerdeContext
|
|
@@ -851,6 +867,14 @@ export declare const serializeAws_restJson1SearchDashboardsCommand: (
|
|
|
851
867
|
input: SearchDashboardsCommandInput,
|
|
852
868
|
context: __SerdeContext
|
|
853
869
|
) => Promise<__HttpRequest>;
|
|
870
|
+
export declare const serializeAws_restJson1SearchDataSetsCommand: (
|
|
871
|
+
input: SearchDataSetsCommandInput,
|
|
872
|
+
context: __SerdeContext
|
|
873
|
+
) => Promise<__HttpRequest>;
|
|
874
|
+
export declare const serializeAws_restJson1SearchDataSourcesCommand: (
|
|
875
|
+
input: SearchDataSourcesCommandInput,
|
|
876
|
+
context: __SerdeContext
|
|
877
|
+
) => Promise<__HttpRequest>;
|
|
854
878
|
export declare const serializeAws_restJson1SearchFoldersCommand: (
|
|
855
879
|
input: SearchFoldersCommandInput,
|
|
856
880
|
context: __SerdeContext
|
|
@@ -1039,6 +1063,10 @@ export declare const deserializeAws_restJson1DeleteAccountCustomizationCommand:
|
|
|
1039
1063
|
output: __HttpResponse,
|
|
1040
1064
|
context: __SerdeContext
|
|
1041
1065
|
) => Promise<DeleteAccountCustomizationCommandOutput>;
|
|
1066
|
+
export declare const deserializeAws_restJson1DeleteAccountSubscriptionCommand: (
|
|
1067
|
+
output: __HttpResponse,
|
|
1068
|
+
context: __SerdeContext
|
|
1069
|
+
) => Promise<DeleteAccountSubscriptionCommandOutput>;
|
|
1042
1070
|
export declare const deserializeAws_restJson1DeleteAnalysisCommand: (
|
|
1043
1071
|
output: __HttpResponse,
|
|
1044
1072
|
context: __SerdeContext
|
|
@@ -1331,6 +1359,14 @@ export declare const deserializeAws_restJson1SearchDashboardsCommand: (
|
|
|
1331
1359
|
output: __HttpResponse,
|
|
1332
1360
|
context: __SerdeContext
|
|
1333
1361
|
) => Promise<SearchDashboardsCommandOutput>;
|
|
1362
|
+
export declare const deserializeAws_restJson1SearchDataSetsCommand: (
|
|
1363
|
+
output: __HttpResponse,
|
|
1364
|
+
context: __SerdeContext
|
|
1365
|
+
) => Promise<SearchDataSetsCommandOutput>;
|
|
1366
|
+
export declare const deserializeAws_restJson1SearchDataSourcesCommand: (
|
|
1367
|
+
output: __HttpResponse,
|
|
1368
|
+
context: __SerdeContext
|
|
1369
|
+
) => Promise<SearchDataSourcesCommandOutput>;
|
|
1334
1370
|
export declare const deserializeAws_restJson1SearchFoldersCommand: (
|
|
1335
1371
|
output: __HttpResponse,
|
|
1336
1372
|
context: __SerdeContext
|
|
@@ -64,8 +64,10 @@ export declare const getRuntimeConfig: (config: QuickSightClientConfig) => {
|
|
|
64
64
|
tls?: boolean | undefined;
|
|
65
65
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
66
66
|
credentials?:
|
|
67
|
-
| import("@aws-sdk/types").
|
|
68
|
-
| import("@aws-sdk/types").Provider<
|
|
67
|
+
| import("@aws-sdk/types").AwsCredentialIdentity
|
|
68
|
+
| import("@aws-sdk/types").Provider<
|
|
69
|
+
import("@aws-sdk/types").AwsCredentialIdentity
|
|
70
|
+
>
|
|
69
71
|
| undefined;
|
|
70
72
|
signer?:
|
|
71
73
|
| import("@aws-sdk/types").RequestSigner
|
|
@@ -64,8 +64,10 @@ export declare const getRuntimeConfig: (config: QuickSightClientConfig) => {
|
|
|
64
64
|
tls?: boolean | undefined;
|
|
65
65
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
66
66
|
credentials?:
|
|
67
|
-
| import("@aws-sdk/types").
|
|
68
|
-
| import("@aws-sdk/types").Provider<
|
|
67
|
+
| import("@aws-sdk/types").AwsCredentialIdentity
|
|
68
|
+
| import("@aws-sdk/types").Provider<
|
|
69
|
+
import("@aws-sdk/types").AwsCredentialIdentity
|
|
70
|
+
>
|
|
69
71
|
| undefined;
|
|
70
72
|
signer?:
|
|
71
73
|
| import("@aws-sdk/types").RequestSigner
|
|
@@ -53,8 +53,10 @@ export declare const getRuntimeConfig: (config: QuickSightClientConfig) => {
|
|
|
53
53
|
tls?: boolean | undefined;
|
|
54
54
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
55
55
|
credentials?:
|
|
56
|
-
| import("@aws-sdk/types").
|
|
57
|
-
| import("@aws-sdk/types").Provider<
|
|
56
|
+
| import("@aws-sdk/types").AwsCredentialIdentity
|
|
57
|
+
| import("@aws-sdk/types").Provider<
|
|
58
|
+
import("@aws-sdk/types").AwsCredentialIdentity
|
|
59
|
+
>
|
|
58
60
|
| undefined;
|
|
59
61
|
signer?:
|
|
60
62
|
| import("@aws-sdk/types").RequestSigner
|
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.215.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",
|
|
@@ -19,36 +19,36 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
30
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
31
|
-
"@aws-sdk/middleware-logger": "3.
|
|
32
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.215.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.215.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.215.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.215.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.215.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.215.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.215.0",
|
|
29
|
+
"@aws-sdk/middleware-endpoint": "3.215.0",
|
|
30
|
+
"@aws-sdk/middleware-host-header": "3.215.0",
|
|
31
|
+
"@aws-sdk/middleware-logger": "3.215.0",
|
|
32
|
+
"@aws-sdk/middleware-recursion-detection": "3.215.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.215.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.215.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.215.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.215.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.215.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.215.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.215.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.215.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.215.0",
|
|
42
|
+
"@aws-sdk/types": "3.215.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.215.0",
|
|
44
44
|
"@aws-sdk/util-base64": "3.208.0",
|
|
45
45
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
46
46
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
47
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
-
"@aws-sdk/util-endpoints": "3.
|
|
50
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
51
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.215.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.215.0",
|
|
49
|
+
"@aws-sdk/util-endpoints": "3.215.0",
|
|
50
|
+
"@aws-sdk/util-user-agent-browser": "3.215.0",
|
|
51
|
+
"@aws-sdk/util-user-agent-node": "3.215.0",
|
|
52
52
|
"@aws-sdk/util-utf8-browser": "3.188.0",
|
|
53
53
|
"@aws-sdk/util-utf8-node": "3.208.0",
|
|
54
54
|
"tslib": "^2.3.1"
|