@aws-sdk/client-finspace-data 3.193.0 → 3.196.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/CHANGELOG.md +19 -0
- package/dist-cjs/FinspaceDataClient.js +11 -8
- package/dist-cjs/commands/AssociateUserToPermissionGroupCommand.js +10 -0
- package/dist-cjs/commands/CreateChangesetCommand.js +10 -0
- package/dist-cjs/commands/CreateDataViewCommand.js +10 -0
- package/dist-cjs/commands/CreateDatasetCommand.js +10 -0
- package/dist-cjs/commands/CreatePermissionGroupCommand.js +10 -0
- package/dist-cjs/commands/CreateUserCommand.js +10 -0
- package/dist-cjs/commands/DeleteDatasetCommand.js +10 -0
- package/dist-cjs/commands/DeletePermissionGroupCommand.js +10 -0
- package/dist-cjs/commands/DisableUserCommand.js +10 -0
- package/dist-cjs/commands/DisassociateUserFromPermissionGroupCommand.js +10 -0
- package/dist-cjs/commands/EnableUserCommand.js +10 -0
- package/dist-cjs/commands/GetChangesetCommand.js +10 -0
- package/dist-cjs/commands/GetDataViewCommand.js +10 -0
- package/dist-cjs/commands/GetDatasetCommand.js +10 -0
- package/dist-cjs/commands/GetExternalDataViewAccessDetailsCommand.js +10 -0
- package/dist-cjs/commands/GetPermissionGroupCommand.js +10 -0
- package/dist-cjs/commands/GetProgrammaticAccessCredentialsCommand.js +10 -0
- package/dist-cjs/commands/GetUserCommand.js +10 -0
- package/dist-cjs/commands/GetWorkingLocationCommand.js +10 -0
- package/dist-cjs/commands/ListChangesetsCommand.js +10 -0
- package/dist-cjs/commands/ListDataViewsCommand.js +10 -0
- package/dist-cjs/commands/ListDatasetsCommand.js +10 -0
- package/dist-cjs/commands/ListPermissionGroupsByUserCommand.js +10 -0
- package/dist-cjs/commands/ListPermissionGroupsCommand.js +10 -0
- package/dist-cjs/commands/ListUsersByPermissionGroupCommand.js +10 -0
- package/dist-cjs/commands/ListUsersCommand.js +10 -0
- package/dist-cjs/commands/ResetUserPasswordCommand.js +10 -0
- package/dist-cjs/commands/UpdateChangesetCommand.js +10 -0
- package/dist-cjs/commands/UpdateDatasetCommand.js +10 -0
- package/dist-cjs/commands/UpdatePermissionGroupCommand.js +10 -0
- package/dist-cjs/commands/UpdateUserCommand.js +10 -0
- package/dist-cjs/endpoint/EndpointParameters.js +13 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +318 -0
- package/dist-cjs/runtimeConfig.shared.js +3 -3
- package/dist-es/FinspaceDataClient.js +12 -9
- package/dist-es/commands/AssociateUserToPermissionGroupCommand.js +10 -0
- package/dist-es/commands/CreateChangesetCommand.js +10 -0
- package/dist-es/commands/CreateDataViewCommand.js +10 -0
- package/dist-es/commands/CreateDatasetCommand.js +10 -0
- package/dist-es/commands/CreatePermissionGroupCommand.js +10 -0
- package/dist-es/commands/CreateUserCommand.js +10 -0
- package/dist-es/commands/DeleteDatasetCommand.js +10 -0
- package/dist-es/commands/DeletePermissionGroupCommand.js +10 -0
- package/dist-es/commands/DisableUserCommand.js +10 -0
- package/dist-es/commands/DisassociateUserFromPermissionGroupCommand.js +10 -0
- package/dist-es/commands/EnableUserCommand.js +10 -0
- package/dist-es/commands/GetChangesetCommand.js +10 -0
- package/dist-es/commands/GetDataViewCommand.js +10 -0
- package/dist-es/commands/GetDatasetCommand.js +10 -0
- package/dist-es/commands/GetExternalDataViewAccessDetailsCommand.js +10 -0
- package/dist-es/commands/GetPermissionGroupCommand.js +10 -0
- package/dist-es/commands/GetProgrammaticAccessCredentialsCommand.js +10 -0
- package/dist-es/commands/GetUserCommand.js +10 -0
- package/dist-es/commands/GetWorkingLocationCommand.js +10 -0
- package/dist-es/commands/ListChangesetsCommand.js +10 -0
- package/dist-es/commands/ListDataViewsCommand.js +10 -0
- package/dist-es/commands/ListDatasetsCommand.js +10 -0
- package/dist-es/commands/ListPermissionGroupsByUserCommand.js +10 -0
- package/dist-es/commands/ListPermissionGroupsCommand.js +10 -0
- package/dist-es/commands/ListUsersByPermissionGroupCommand.js +10 -0
- package/dist-es/commands/ListUsersCommand.js +10 -0
- package/dist-es/commands/ResetUserPasswordCommand.js +10 -0
- package/dist-es/commands/UpdateChangesetCommand.js +10 -0
- package/dist-es/commands/UpdateDatasetCommand.js +10 -0
- package/dist-es/commands/UpdatePermissionGroupCommand.js +10 -0
- package/dist-es/commands/UpdateUserCommand.js +10 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +315 -0
- package/dist-es/runtimeConfig.shared.js +2 -2
- package/dist-types/FinspaceDataClient.d.ts +6 -9
- package/dist-types/commands/AssociateUserToPermissionGroupCommand.d.ts +2 -0
- package/dist-types/commands/CreateChangesetCommand.d.ts +2 -0
- package/dist-types/commands/CreateDataViewCommand.d.ts +2 -0
- package/dist-types/commands/CreateDatasetCommand.d.ts +2 -0
- package/dist-types/commands/CreatePermissionGroupCommand.d.ts +2 -0
- package/dist-types/commands/CreateUserCommand.d.ts +2 -0
- package/dist-types/commands/DeleteDatasetCommand.d.ts +2 -0
- package/dist-types/commands/DeletePermissionGroupCommand.d.ts +2 -0
- package/dist-types/commands/DisableUserCommand.d.ts +2 -0
- package/dist-types/commands/DisassociateUserFromPermissionGroupCommand.d.ts +2 -0
- package/dist-types/commands/EnableUserCommand.d.ts +2 -0
- package/dist-types/commands/GetChangesetCommand.d.ts +2 -0
- package/dist-types/commands/GetDataViewCommand.d.ts +2 -0
- package/dist-types/commands/GetDatasetCommand.d.ts +2 -0
- package/dist-types/commands/GetExternalDataViewAccessDetailsCommand.d.ts +2 -0
- package/dist-types/commands/GetPermissionGroupCommand.d.ts +2 -0
- package/dist-types/commands/GetProgrammaticAccessCredentialsCommand.d.ts +2 -0
- package/dist-types/commands/GetUserCommand.d.ts +2 -0
- package/dist-types/commands/GetWorkingLocationCommand.d.ts +2 -0
- package/dist-types/commands/ListChangesetsCommand.d.ts +2 -0
- package/dist-types/commands/ListDataViewsCommand.d.ts +2 -0
- package/dist-types/commands/ListDatasetsCommand.d.ts +2 -0
- package/dist-types/commands/ListPermissionGroupsByUserCommand.d.ts +2 -0
- package/dist-types/commands/ListPermissionGroupsCommand.d.ts +2 -0
- package/dist-types/commands/ListUsersByPermissionGroupCommand.d.ts +2 -0
- package/dist-types/commands/ListUsersCommand.d.ts +2 -0
- package/dist-types/commands/ResetUserPasswordCommand.d.ts +2 -0
- package/dist-types/commands/UpdateChangesetCommand.d.ts +2 -0
- package/dist-types/commands/UpdateDatasetCommand.d.ts +2 -0
- package/dist-types/commands/UpdatePermissionGroupCommand.d.ts +2 -0
- package/dist-types/commands/UpdateUserCommand.d.ts +2 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +4 -2
- package/dist-types/runtimeConfig.d.ts +4 -2
- package/dist-types/runtimeConfig.native.d.ts +4 -2
- package/dist-types/runtimeConfig.shared.d.ts +3 -1
- package/dist-types/ts3.4/FinspaceDataClient.d.ts +15 -8
- package/dist-types/ts3.4/commands/AssociateUserToPermissionGroupCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateChangesetCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateDataViewCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateDatasetCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreatePermissionGroupCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteDatasetCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeletePermissionGroupCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DisableUserCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DisassociateUserFromPermissionGroupCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/EnableUserCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetChangesetCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetDataViewCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetDatasetCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetExternalDataViewAccessDetailsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetPermissionGroupCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetProgrammaticAccessCredentialsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetUserCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetWorkingLocationCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListChangesetsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListDataViewsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListDatasetsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListPermissionGroupsByUserCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListPermissionGroupsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListUsersByPermissionGroupCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ResetUserPasswordCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateChangesetCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateDatasetCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdatePermissionGroupCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +2 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +26 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +14 -4
- package/dist-types/ts3.4/runtimeConfig.d.ts +14 -4
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +14 -3
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +6 -1
- package/package.json +5 -3
- package/dist-cjs/endpoints.js +0 -132
- package/dist-es/endpoints.js +0 -128
- package/dist-types/endpoints.d.ts +0 -2
- package/dist-types/ts3.4/endpoints.d.ts +0 -2
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
@@ -25,6 +26,7 @@ export interface DeletePermissionGroupCommandOutput extends DeletePermissionGrou
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class DeletePermissionGroupCommand extends $Command<DeletePermissionGroupCommandInput, DeletePermissionGroupCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
28
|
readonly input: DeletePermissionGroupCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DeletePermissionGroupCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
@@ -25,6 +26,7 @@ export interface DisableUserCommandOutput extends DisableUserResponse, __Metadat
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class DisableUserCommand extends $Command<DisableUserCommandInput, DisableUserCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
28
|
readonly input: DisableUserCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DisableUserCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
@@ -25,6 +26,7 @@ export interface DisassociateUserFromPermissionGroupCommandOutput extends Disass
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class DisassociateUserFromPermissionGroupCommand extends $Command<DisassociateUserFromPermissionGroupCommandInput, DisassociateUserFromPermissionGroupCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
28
|
readonly input: DisassociateUserFromPermissionGroupCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DisassociateUserFromPermissionGroupCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
@@ -25,6 +26,7 @@ export interface EnableUserCommandOutput extends EnableUserResponse, __MetadataB
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class EnableUserCommand extends $Command<EnableUserCommandInput, EnableUserCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
28
|
readonly input: EnableUserCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: EnableUserCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
@@ -25,6 +26,7 @@ export interface GetChangesetCommandOutput extends GetChangesetResponse, __Metad
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class GetChangesetCommand extends $Command<GetChangesetCommandInput, GetChangesetCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
28
|
readonly input: GetChangesetCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: GetChangesetCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
@@ -25,6 +26,7 @@ export interface GetDataViewCommandOutput extends GetDataViewResponse, __Metadat
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class GetDataViewCommand extends $Command<GetDataViewCommandInput, GetDataViewCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
28
|
readonly input: GetDataViewCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: GetDataViewCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
@@ -25,6 +26,7 @@ export interface GetDatasetCommandOutput extends GetDatasetResponse, __MetadataB
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class GetDatasetCommand extends $Command<GetDatasetCommandInput, GetDatasetCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
28
|
readonly input: GetDatasetCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: GetDatasetCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
@@ -33,6 +34,7 @@ export interface GetExternalDataViewAccessDetailsCommandOutput extends GetExtern
|
|
|
33
34
|
*/
|
|
34
35
|
export declare class GetExternalDataViewAccessDetailsCommand extends $Command<GetExternalDataViewAccessDetailsCommandInput, GetExternalDataViewAccessDetailsCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
35
36
|
readonly input: GetExternalDataViewAccessDetailsCommandInput;
|
|
37
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
36
38
|
constructor(input: GetExternalDataViewAccessDetailsCommandInput);
|
|
37
39
|
/**
|
|
38
40
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
@@ -25,6 +26,7 @@ export interface GetPermissionGroupCommandOutput extends GetPermissionGroupRespo
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class GetPermissionGroupCommand extends $Command<GetPermissionGroupCommandInput, GetPermissionGroupCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
28
|
readonly input: GetPermissionGroupCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: GetPermissionGroupCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
@@ -25,6 +26,7 @@ export interface GetProgrammaticAccessCredentialsCommandOutput extends GetProgra
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class GetProgrammaticAccessCredentialsCommand extends $Command<GetProgrammaticAccessCredentialsCommandInput, GetProgrammaticAccessCredentialsCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
28
|
readonly input: GetProgrammaticAccessCredentialsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: GetProgrammaticAccessCredentialsCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
@@ -25,6 +26,7 @@ export interface GetUserCommandOutput extends GetUserResponse, __MetadataBearer
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class GetUserCommand extends $Command<GetUserCommandInput, GetUserCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
28
|
readonly input: GetUserCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: GetUserCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
@@ -26,6 +27,7 @@ export interface GetWorkingLocationCommandOutput extends GetWorkingLocationRespo
|
|
|
26
27
|
*/
|
|
27
28
|
export declare class GetWorkingLocationCommand extends $Command<GetWorkingLocationCommandInput, GetWorkingLocationCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
28
29
|
readonly input: GetWorkingLocationCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
31
|
constructor(input: GetWorkingLocationCommandInput);
|
|
30
32
|
/**
|
|
31
33
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
@@ -25,6 +26,7 @@ export interface ListChangesetsCommandOutput extends ListChangesetsResponse, __M
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class ListChangesetsCommand extends $Command<ListChangesetsCommandInput, ListChangesetsCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
28
|
readonly input: ListChangesetsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListChangesetsCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
@@ -25,6 +26,7 @@ export interface ListDataViewsCommandOutput extends ListDataViewsResponse, __Met
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class ListDataViewsCommand extends $Command<ListDataViewsCommandInput, ListDataViewsCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
28
|
readonly input: ListDataViewsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListDataViewsCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
@@ -25,6 +26,7 @@ export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __Metad
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class ListDatasetsCommand extends $Command<ListDatasetsCommandInput, ListDatasetsCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
28
|
readonly input: ListDatasetsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListDatasetsCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
@@ -25,6 +26,7 @@ export interface ListPermissionGroupsByUserCommandOutput extends ListPermissionG
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class ListPermissionGroupsByUserCommand extends $Command<ListPermissionGroupsByUserCommandInput, ListPermissionGroupsByUserCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
28
|
readonly input: ListPermissionGroupsByUserCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListPermissionGroupsByUserCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
@@ -25,6 +26,7 @@ export interface ListPermissionGroupsCommandOutput extends ListPermissionGroupsR
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class ListPermissionGroupsCommand extends $Command<ListPermissionGroupsCommandInput, ListPermissionGroupsCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
28
|
readonly input: ListPermissionGroupsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListPermissionGroupsCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
@@ -25,6 +26,7 @@ export interface ListUsersByPermissionGroupCommandOutput extends ListUsersByPerm
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class ListUsersByPermissionGroupCommand extends $Command<ListUsersByPermissionGroupCommandInput, ListUsersByPermissionGroupCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
28
|
readonly input: ListUsersByPermissionGroupCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListUsersByPermissionGroupCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
@@ -25,6 +26,7 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class ListUsersCommand extends $Command<ListUsersCommandInput, ListUsersCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
28
|
readonly input: ListUsersCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListUsersCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
@@ -25,6 +26,7 @@ export interface ResetUserPasswordCommandOutput extends ResetUserPasswordRespons
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class ResetUserPasswordCommand extends $Command<ResetUserPasswordCommandInput, ResetUserPasswordCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
28
|
readonly input: ResetUserPasswordCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ResetUserPasswordCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
@@ -25,6 +26,7 @@ export interface UpdateChangesetCommandOutput extends UpdateChangesetResponse, _
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class UpdateChangesetCommand extends $Command<UpdateChangesetCommandInput, UpdateChangesetCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
28
|
readonly input: UpdateChangesetCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: UpdateChangesetCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
@@ -25,6 +26,7 @@ export interface UpdateDatasetCommandOutput extends UpdateDatasetResponse, __Met
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class UpdateDatasetCommand extends $Command<UpdateDatasetCommandInput, UpdateDatasetCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
28
|
readonly input: UpdateDatasetCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: UpdateDatasetCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
@@ -25,6 +26,7 @@ export interface UpdatePermissionGroupCommandOutput extends UpdatePermissionGrou
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class UpdatePermissionGroupCommand extends $Command<UpdatePermissionGroupCommandInput, UpdatePermissionGroupCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
28
|
readonly input: UpdatePermissionGroupCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: UpdatePermissionGroupCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
|
|
@@ -25,6 +26,7 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class UpdateUserCommand extends $Command<UpdateUserCommandInput, UpdateUserCommandOutput, FinspaceDataClientResolvedConfig> {
|
|
27
28
|
readonly input: UpdateUserCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: UpdateUserCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { EndpointParameters as __EndpointParameters, Provider } from "@aws-sdk/types";
|
|
2
|
+
export interface ClientInputEndpointParameters {
|
|
3
|
+
region?: string | Provider<string>;
|
|
4
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
5
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
6
|
+
endpoint?: string | Provider<string>;
|
|
7
|
+
}
|
|
8
|
+
export declare type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
9
|
+
defaultSigningName: string;
|
|
10
|
+
};
|
|
11
|
+
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
|
|
12
|
+
defaultSigningName: string;
|
|
13
|
+
};
|
|
14
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
15
|
+
Region?: string;
|
|
16
|
+
UseDualStack?: boolean;
|
|
17
|
+
UseFIPS?: boolean;
|
|
18
|
+
Endpoint?: string;
|
|
19
|
+
}
|
|
@@ -26,8 +26,10 @@ export declare const getRuntimeConfig: (config: FinspaceDataClientConfig) => {
|
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
logger: import("@aws-sdk/types").Logger;
|
|
28
28
|
serviceId: string;
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
31
33
|
tls?: boolean | undefined;
|
|
32
34
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
35
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -26,8 +26,10 @@ export declare const getRuntimeConfig: (config: FinspaceDataClientConfig) => {
|
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
logger: import("@aws-sdk/types").Logger;
|
|
28
28
|
serviceId: string;
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
31
33
|
tls?: boolean | undefined;
|
|
32
34
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
35
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -23,10 +23,12 @@ export declare const getRuntimeConfig: (config: FinspaceDataClientConfig) => {
|
|
|
23
23
|
serviceId: string;
|
|
24
24
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
25
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
26
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
27
|
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
29
|
-
endpoint?: string | import("@aws-sdk/types").Endpoint
|
|
28
|
+
endpoint?: string | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").Endpoint & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").EndpointV2 & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> & import("@aws-sdk/types").Provider<string>) | undefined;
|
|
29
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
30
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
31
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
30
32
|
tls?: boolean | undefined;
|
|
31
33
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
32
34
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -6,8 +6,10 @@ import { FinspaceDataClientConfig } from "./FinspaceDataClient";
|
|
|
6
6
|
export declare const getRuntimeConfig: (config: FinspaceDataClientConfig) => {
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
disableHostPrefix: boolean;
|
|
9
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
10
|
+
logger?: __Logger | undefined;
|
|
11
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
9
12
|
logger: __Logger;
|
|
10
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
11
13
|
serviceId: string;
|
|
12
14
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
13
15
|
};
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
|
-
EndpointsInputConfig,
|
|
3
|
-
EndpointsResolvedConfig,
|
|
4
2
|
RegionInputConfig,
|
|
5
3
|
RegionResolvedConfig,
|
|
6
4
|
} from "@aws-sdk/config-resolver";
|
|
5
|
+
import {
|
|
6
|
+
EndpointInputConfig,
|
|
7
|
+
EndpointResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-endpoint";
|
|
7
9
|
import {
|
|
8
10
|
HostHeaderInputConfig,
|
|
9
11
|
HostHeaderResolvedConfig,
|
|
@@ -37,7 +39,6 @@ import {
|
|
|
37
39
|
Logger as __Logger,
|
|
38
40
|
Provider as __Provider,
|
|
39
41
|
Provider,
|
|
40
|
-
RegionInfoProvider,
|
|
41
42
|
StreamCollector as __StreamCollector,
|
|
42
43
|
UrlParser as __UrlParser,
|
|
43
44
|
UserAgent as __UserAgent,
|
|
@@ -166,6 +167,11 @@ import {
|
|
|
166
167
|
UpdateUserCommandInput,
|
|
167
168
|
UpdateUserCommandOutput,
|
|
168
169
|
} from "./commands/UpdateUserCommand";
|
|
170
|
+
import {
|
|
171
|
+
ClientInputEndpointParameters,
|
|
172
|
+
ClientResolvedEndpointParameters,
|
|
173
|
+
EndpointParameters,
|
|
174
|
+
} from "./endpoint/EndpointParameters";
|
|
169
175
|
export declare type ServiceInputTypes =
|
|
170
176
|
| AssociateUserToPermissionGroupCommandInput
|
|
171
177
|
| CreateChangesetCommandInput
|
|
@@ -251,7 +257,6 @@ export interface ClientDefaults
|
|
|
251
257
|
serviceId?: string;
|
|
252
258
|
region?: string | __Provider<string>;
|
|
253
259
|
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
254
|
-
regionInfoProvider?: RegionInfoProvider;
|
|
255
260
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
256
261
|
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
257
262
|
}
|
|
@@ -260,22 +265,24 @@ declare type FinspaceDataClientConfigType = Partial<
|
|
|
260
265
|
> &
|
|
261
266
|
ClientDefaults &
|
|
262
267
|
RegionInputConfig &
|
|
263
|
-
|
|
268
|
+
EndpointInputConfig<EndpointParameters> &
|
|
264
269
|
RetryInputConfig &
|
|
265
270
|
HostHeaderInputConfig &
|
|
266
271
|
AwsAuthInputConfig &
|
|
267
|
-
UserAgentInputConfig
|
|
272
|
+
UserAgentInputConfig &
|
|
273
|
+
ClientInputEndpointParameters;
|
|
268
274
|
export interface FinspaceDataClientConfig
|
|
269
275
|
extends FinspaceDataClientConfigType {}
|
|
270
276
|
declare type FinspaceDataClientResolvedConfigType =
|
|
271
277
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
272
278
|
Required<ClientDefaults> &
|
|
273
279
|
RegionResolvedConfig &
|
|
274
|
-
|
|
280
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
275
281
|
RetryResolvedConfig &
|
|
276
282
|
HostHeaderResolvedConfig &
|
|
277
283
|
AwsAuthResolvedConfig &
|
|
278
|
-
UserAgentResolvedConfig
|
|
284
|
+
UserAgentResolvedConfig &
|
|
285
|
+
ClientResolvedEndpointParameters;
|
|
279
286
|
export interface FinspaceDataClientResolvedConfig
|
|
280
287
|
extends FinspaceDataClientResolvedConfigType {}
|
|
281
288
|
export declare class FinspaceDataClient extends __Client<
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class AssociateUserToPermissionGroupCommand extends $Command<
|
|
|
25
26
|
FinspaceDataClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: AssociateUserToPermissionGroupCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: AssociateUserToPermissionGroupCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class CreateChangesetCommand extends $Command<
|
|
|
24
25
|
FinspaceDataClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: CreateChangesetCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: CreateChangesetCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class CreateDataViewCommand extends $Command<
|
|
|
24
25
|
FinspaceDataClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: CreateDataViewCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: CreateDataViewCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class CreateDatasetCommand extends $Command<
|
|
|
24
25
|
FinspaceDataClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: CreateDatasetCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: CreateDatasetCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class CreatePermissionGroupCommand extends $Command<
|
|
|
25
26
|
FinspaceDataClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: CreatePermissionGroupCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: CreatePermissionGroupCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class CreateUserCommand extends $Command<
|
|
|
21
22
|
FinspaceDataClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: CreateUserCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: CreateUserCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class DeleteDatasetCommand extends $Command<
|
|
|
24
25
|
FinspaceDataClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: DeleteDatasetCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: DeleteDatasetCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class DeletePermissionGroupCommand extends $Command<
|
|
|
25
26
|
FinspaceDataClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: DeletePermissionGroupCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DeletePermissionGroupCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class DisableUserCommand extends $Command<
|
|
|
21
22
|
FinspaceDataClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: DisableUserCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: DisableUserCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|