@aws-sdk/client-quicksight 3.212.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 +2 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
-
import { DescribeTemplateAliasRequest, DescribeTemplateAliasResponse } from "../models/
|
|
4
|
+
import { DescribeTemplateAliasRequest, DescribeTemplateAliasResponse } from "../models/models_1";
|
|
5
5
|
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
6
6
|
export interface DescribeTemplateAliasCommandInput extends DescribeTemplateAliasRequest {
|
|
7
7
|
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
-
import { DescribeTemplateRequest
|
|
4
|
+
import { DescribeTemplateRequest } from "../models/models_0";
|
|
5
|
+
import { DescribeTemplateResponse } from "../models/models_1";
|
|
5
6
|
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
6
7
|
export interface DescribeTemplateCommandInput extends DescribeTemplateRequest {
|
|
7
8
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
-
import { DescribeTemplatePermissionsRequest, DescribeTemplatePermissionsResponse } from "../models/
|
|
4
|
+
import { DescribeTemplatePermissionsRequest, DescribeTemplatePermissionsResponse } from "../models/models_1";
|
|
5
5
|
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
6
6
|
export interface DescribeTemplatePermissionsCommandInput extends DescribeTemplatePermissionsRequest {
|
|
7
7
|
}
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
-
import { DescribeThemeRequest } from "../models/
|
|
5
|
-
import { DescribeThemeResponse } from "../models/models_1";
|
|
4
|
+
import { DescribeThemeRequest, DescribeThemeResponse } from "../models/models_1";
|
|
6
5
|
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
7
6
|
export interface DescribeThemeCommandInput extends DescribeThemeRequest {
|
|
8
7
|
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { SearchDataSetsRequest, SearchDataSetsResponse } from "../models/models_1";
|
|
5
|
+
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
6
|
+
export interface SearchDataSetsCommandInput extends SearchDataSetsRequest {
|
|
7
|
+
}
|
|
8
|
+
export interface SearchDataSetsCommandOutput extends SearchDataSetsResponse, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>Use the <code>SearchDataSets</code> operation to search for datasets that belong to an account.</p>
|
|
12
|
+
* @example
|
|
13
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
14
|
+
* ```javascript
|
|
15
|
+
* import { QuickSightClient, SearchDataSetsCommand } from "@aws-sdk/client-quicksight"; // ES Modules import
|
|
16
|
+
* // const { QuickSightClient, SearchDataSetsCommand } = require("@aws-sdk/client-quicksight"); // CommonJS import
|
|
17
|
+
* const client = new QuickSightClient(config);
|
|
18
|
+
* const command = new SearchDataSetsCommand(input);
|
|
19
|
+
* const response = await client.send(command);
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
22
|
+
* @see {@link SearchDataSetsCommandInput} for command's `input` shape.
|
|
23
|
+
* @see {@link SearchDataSetsCommandOutput} for command's `response` shape.
|
|
24
|
+
* @see {@link QuickSightClientResolvedConfig | config} for QuickSightClient's `config` shape.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
export declare class SearchDataSetsCommand extends $Command<SearchDataSetsCommandInput, SearchDataSetsCommandOutput, QuickSightClientResolvedConfig> {
|
|
28
|
+
readonly input: SearchDataSetsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: SearchDataSetsCommandInput);
|
|
31
|
+
/**
|
|
32
|
+
* @internal
|
|
33
|
+
*/
|
|
34
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: QuickSightClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchDataSetsCommandInput, SearchDataSetsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { SearchDataSourcesRequest, SearchDataSourcesResponse } from "../models/models_1";
|
|
5
|
+
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
6
|
+
export interface SearchDataSourcesCommandInput extends SearchDataSourcesRequest {
|
|
7
|
+
}
|
|
8
|
+
export interface SearchDataSourcesCommandOutput extends SearchDataSourcesResponse, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>Use the <code>SearchDataSources</code> operation to search for data sources that belong to an account.</p>
|
|
12
|
+
* @example
|
|
13
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
14
|
+
* ```javascript
|
|
15
|
+
* import { QuickSightClient, SearchDataSourcesCommand } from "@aws-sdk/client-quicksight"; // ES Modules import
|
|
16
|
+
* // const { QuickSightClient, SearchDataSourcesCommand } = require("@aws-sdk/client-quicksight"); // CommonJS import
|
|
17
|
+
* const client = new QuickSightClient(config);
|
|
18
|
+
* const command = new SearchDataSourcesCommand(input);
|
|
19
|
+
* const response = await client.send(command);
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
22
|
+
* @see {@link SearchDataSourcesCommandInput} for command's `input` shape.
|
|
23
|
+
* @see {@link SearchDataSourcesCommandOutput} for command's `response` shape.
|
|
24
|
+
* @see {@link QuickSightClientResolvedConfig | config} for QuickSightClient's `config` shape.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
export declare class SearchDataSourcesCommand extends $Command<SearchDataSourcesCommandInput, SearchDataSourcesCommandOutput, QuickSightClientResolvedConfig> {
|
|
28
|
+
readonly input: SearchDataSourcesCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: SearchDataSourcesCommandInput);
|
|
31
|
+
/**
|
|
32
|
+
* @internal
|
|
33
|
+
*/
|
|
34
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: QuickSightClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchDataSourcesCommandInput, SearchDataSourcesCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -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";
|
|
@@ -12,7 +12,7 @@ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInp
|
|
|
12
12
|
defaultSigningName: string;
|
|
13
13
|
};
|
|
14
14
|
export interface EndpointParameters extends __EndpointParameters {
|
|
15
|
-
Region
|
|
15
|
+
Region: string;
|
|
16
16
|
UseDualStack?: boolean;
|
|
17
17
|
UseFIPS?: boolean;
|
|
18
18
|
Endpoint?: string;
|