@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
|
@@ -119,6 +119,10 @@ import {
|
|
|
119
119
|
DeleteAccountCustomizationCommandInput,
|
|
120
120
|
DeleteAccountCustomizationCommandOutput,
|
|
121
121
|
} from "./commands/DeleteAccountCustomizationCommand";
|
|
122
|
+
import {
|
|
123
|
+
DeleteAccountSubscriptionCommandInput,
|
|
124
|
+
DeleteAccountSubscriptionCommandOutput,
|
|
125
|
+
} from "./commands/DeleteAccountSubscriptionCommand";
|
|
122
126
|
import {
|
|
123
127
|
DeleteAnalysisCommandInput,
|
|
124
128
|
DeleteAnalysisCommandOutput,
|
|
@@ -411,6 +415,14 @@ import {
|
|
|
411
415
|
SearchDashboardsCommandInput,
|
|
412
416
|
SearchDashboardsCommandOutput,
|
|
413
417
|
} from "./commands/SearchDashboardsCommand";
|
|
418
|
+
import {
|
|
419
|
+
SearchDataSetsCommandInput,
|
|
420
|
+
SearchDataSetsCommandOutput,
|
|
421
|
+
} from "./commands/SearchDataSetsCommand";
|
|
422
|
+
import {
|
|
423
|
+
SearchDataSourcesCommandInput,
|
|
424
|
+
SearchDataSourcesCommandOutput,
|
|
425
|
+
} from "./commands/SearchDataSourcesCommand";
|
|
414
426
|
import {
|
|
415
427
|
SearchFoldersCommandInput,
|
|
416
428
|
SearchFoldersCommandOutput,
|
|
@@ -548,6 +560,7 @@ export declare type ServiceInputTypes =
|
|
|
548
560
|
| CreateThemeAliasCommandInput
|
|
549
561
|
| CreateThemeCommandInput
|
|
550
562
|
| DeleteAccountCustomizationCommandInput
|
|
563
|
+
| DeleteAccountSubscriptionCommandInput
|
|
551
564
|
| DeleteAnalysisCommandInput
|
|
552
565
|
| DeleteDashboardCommandInput
|
|
553
566
|
| DeleteDataSetCommandInput
|
|
@@ -621,6 +634,8 @@ export declare type ServiceInputTypes =
|
|
|
621
634
|
| RestoreAnalysisCommandInput
|
|
622
635
|
| SearchAnalysesCommandInput
|
|
623
636
|
| SearchDashboardsCommandInput
|
|
637
|
+
| SearchDataSetsCommandInput
|
|
638
|
+
| SearchDataSourcesCommandInput
|
|
624
639
|
| SearchFoldersCommandInput
|
|
625
640
|
| SearchGroupsCommandInput
|
|
626
641
|
| TagResourceCommandInput
|
|
@@ -669,6 +684,7 @@ export declare type ServiceOutputTypes =
|
|
|
669
684
|
| CreateThemeAliasCommandOutput
|
|
670
685
|
| CreateThemeCommandOutput
|
|
671
686
|
| DeleteAccountCustomizationCommandOutput
|
|
687
|
+
| DeleteAccountSubscriptionCommandOutput
|
|
672
688
|
| DeleteAnalysisCommandOutput
|
|
673
689
|
| DeleteDashboardCommandOutput
|
|
674
690
|
| DeleteDataSetCommandOutput
|
|
@@ -742,6 +758,8 @@ export declare type ServiceOutputTypes =
|
|
|
742
758
|
| RestoreAnalysisCommandOutput
|
|
743
759
|
| SearchAnalysesCommandOutput
|
|
744
760
|
| SearchDashboardsCommandOutput
|
|
761
|
+
| SearchDataSetsCommandOutput
|
|
762
|
+
| SearchDataSourcesCommandOutput
|
|
745
763
|
| SearchFoldersCommandOutput
|
|
746
764
|
| SearchGroupsCommandOutput
|
|
747
765
|
| TagResourceCommandOutput
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DeleteAccountSubscriptionRequest,
|
|
11
|
+
DeleteAccountSubscriptionResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
QuickSightClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../QuickSightClient";
|
|
18
|
+
export interface DeleteAccountSubscriptionCommandInput
|
|
19
|
+
extends DeleteAccountSubscriptionRequest {}
|
|
20
|
+
export interface DeleteAccountSubscriptionCommandOutput
|
|
21
|
+
extends DeleteAccountSubscriptionResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DeleteAccountSubscriptionCommand extends $Command<
|
|
24
|
+
DeleteAccountSubscriptionCommandInput,
|
|
25
|
+
DeleteAccountSubscriptionCommandOutput,
|
|
26
|
+
QuickSightClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteAccountSubscriptionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DeleteAccountSubscriptionCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: QuickSightClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeleteAccountSubscriptionCommandInput,
|
|
37
|
+
DeleteAccountSubscriptionCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -6,10 +6,8 @@ import {
|
|
|
6
6
|
MetadataBearer as __MetadataBearer,
|
|
7
7
|
MiddlewareStack,
|
|
8
8
|
} from "@aws-sdk/types";
|
|
9
|
-
import {
|
|
10
|
-
|
|
11
|
-
DescribeTemplateResponse,
|
|
12
|
-
} from "../models/models_0";
|
|
9
|
+
import { DescribeTemplateRequest } from "../models/models_0";
|
|
10
|
+
import { DescribeTemplateResponse } from "../models/models_1";
|
|
13
11
|
import {
|
|
14
12
|
QuickSightClientResolvedConfig,
|
|
15
13
|
ServiceInputTypes,
|
|
@@ -6,8 +6,10 @@ import {
|
|
|
6
6
|
MetadataBearer as __MetadataBearer,
|
|
7
7
|
MiddlewareStack,
|
|
8
8
|
} from "@aws-sdk/types";
|
|
9
|
-
import {
|
|
10
|
-
|
|
9
|
+
import {
|
|
10
|
+
DescribeThemeRequest,
|
|
11
|
+
DescribeThemeResponse,
|
|
12
|
+
} from "../models/models_1";
|
|
11
13
|
import {
|
|
12
14
|
QuickSightClientResolvedConfig,
|
|
13
15
|
ServiceInputTypes,
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
SearchDataSetsRequest,
|
|
11
|
+
SearchDataSetsResponse,
|
|
12
|
+
} from "../models/models_1";
|
|
13
|
+
import {
|
|
14
|
+
QuickSightClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../QuickSightClient";
|
|
18
|
+
export interface SearchDataSetsCommandInput extends SearchDataSetsRequest {}
|
|
19
|
+
export interface SearchDataSetsCommandOutput
|
|
20
|
+
extends SearchDataSetsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class SearchDataSetsCommand extends $Command<
|
|
23
|
+
SearchDataSetsCommandInput,
|
|
24
|
+
SearchDataSetsCommandOutput,
|
|
25
|
+
QuickSightClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: SearchDataSetsCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
|
+
constructor(input: SearchDataSetsCommandInput);
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: QuickSightClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<SearchDataSetsCommandInput, SearchDataSetsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
SearchDataSourcesRequest,
|
|
11
|
+
SearchDataSourcesResponse,
|
|
12
|
+
} from "../models/models_1";
|
|
13
|
+
import {
|
|
14
|
+
QuickSightClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../QuickSightClient";
|
|
18
|
+
export interface SearchDataSourcesCommandInput
|
|
19
|
+
extends SearchDataSourcesRequest {}
|
|
20
|
+
export interface SearchDataSourcesCommandOutput
|
|
21
|
+
extends SearchDataSourcesResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class SearchDataSourcesCommand extends $Command<
|
|
24
|
+
SearchDataSourcesCommandInput,
|
|
25
|
+
SearchDataSourcesCommandOutput,
|
|
26
|
+
QuickSightClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: SearchDataSourcesCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: SearchDataSourcesCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: QuickSightClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<SearchDataSourcesCommandInput, SearchDataSourcesCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -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";
|
|
@@ -27,7 +27,7 @@ export declare const resolveClientEndpointParameters: <T>(
|
|
|
27
27
|
defaultSigningName: string;
|
|
28
28
|
};
|
|
29
29
|
export interface EndpointParameters extends __EndpointParameters {
|
|
30
|
-
Region
|
|
30
|
+
Region: string;
|
|
31
31
|
UseDualStack?: boolean;
|
|
32
32
|
UseFIPS?: boolean;
|
|
33
33
|
Endpoint?: string;
|