@aws-sdk/client-appflow 3.1087.0 → 3.1088.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/index.js +1 -1
- package/dist-types/ts3.4/Appflow.d.ts +87 -111
- package/dist-types/ts3.4/AppflowClient.d.ts +22 -53
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CancelFlowExecutionsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateConnectorProfileCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateFlowCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteConnectorProfileCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteFlowCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeConnectorCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeConnectorEntityCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeConnectorProfilesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeConnectorsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeFlowCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeFlowExecutionRecordsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListConnectorEntitiesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListConnectorsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListFlowsCommand.d.ts +4 -4
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/RegisterConnectorCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ResetConnectorMetadataCacheCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/StartFlowCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/StopFlowCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UnregisterConnectorCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateConnectorProfileCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateConnectorRegistrationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateFlowCommand.d.ts +3 -5
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +10 -20
- package/dist-types/ts3.4/models/errors.d.ts +9 -30
- package/dist-types/ts3.4/models/models_0.d.ts +2 -6
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListFlowsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -7,17 +7,10 @@ import { AppflowHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: AppflowHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: AppflowHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): AppflowHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
12
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
13
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
14
|
}
|
|
22
15
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
16
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
18
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
19
|
}>;
|
|
27
20
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
21
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
22
|
) => HttpAuthExtensionConfiguration;
|
|
30
23
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
24
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
25
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { AppflowClientResolvedConfig } from "../AppflowClient";
|
|
15
|
-
export interface AppflowHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface AppflowHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface AppflowHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface AppflowHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
AppflowClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
AppflowHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultAppflowHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: AppflowClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<AppflowHttpAuthSchemeParameters>;
|
|
31
|
-
export interface AppflowHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<AppflowHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface AppflowHttpAuthSchemeProvider extends HttpAuthSchemeProvider<AppflowHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultAppflowHttpAuthSchemeProvider: AppflowHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: AppflowHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: AppflowHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./AppflowClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
AppflowClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CancelFlowExecutionsRequest,
|
|
4
|
-
CancelFlowExecutionsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CancelFlowExecutionsRequest, CancelFlowExecutionsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CancelFlowExecutionsCommandInput
|
|
8
|
-
extends CancelFlowExecutionsRequest {}
|
|
4
|
+
export interface CancelFlowExecutionsCommandInput extends CancelFlowExecutionsRequest {}
|
|
9
5
|
export interface CancelFlowExecutionsCommandOutput
|
|
10
|
-
extends CancelFlowExecutionsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CancelFlowExecutionsResponse, __MetadataBearer {}
|
|
12
7
|
declare const CancelFlowExecutionsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CancelFlowExecutionsCommandInput
|
|
9
|
+
input: CancelFlowExecutionsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CancelFlowExecutionsCommandInput,
|
|
17
12
|
CancelFlowExecutionsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CancelFlowExecutionsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CancelFlowExecutionsCommandInput
|
|
18
|
+
input: CancelFlowExecutionsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CancelFlowExecutionsCommandInput,
|
|
26
21
|
CancelFlowExecutionsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateConnectorProfileRequest,
|
|
4
|
-
CreateConnectorProfileResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateConnectorProfileRequest, CreateConnectorProfileResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateConnectorProfileCommandInput
|
|
8
|
-
extends CreateConnectorProfileRequest {}
|
|
4
|
+
export interface CreateConnectorProfileCommandInput extends CreateConnectorProfileRequest {}
|
|
9
5
|
export interface CreateConnectorProfileCommandOutput
|
|
10
|
-
extends CreateConnectorProfileResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateConnectorProfileResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateConnectorProfileCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateConnectorProfileCommandInput
|
|
9
|
+
input: CreateConnectorProfileCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateConnectorProfileCommandInput,
|
|
17
12
|
CreateConnectorProfileCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateConnectorProfileCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateConnectorProfileCommandInput
|
|
18
|
+
input: CreateConnectorProfileCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateConnectorProfileCommandInput,
|
|
26
21
|
CreateConnectorProfileCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { CreateFlowRequest, CreateFlowResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface CreateFlowCommandInput extends CreateFlowRequest {}
|
|
5
|
-
export interface CreateFlowCommandOutput
|
|
6
|
-
extends CreateFlowResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataBearer {}
|
|
8
6
|
declare const CreateFlowCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: CreateFlowCommandInput
|
|
8
|
+
input: CreateFlowCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
CreateFlowCommandInput,
|
|
13
11
|
CreateFlowCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const CreateFlowCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: CreateFlowCommandInput
|
|
17
|
+
input: CreateFlowCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
CreateFlowCommandInput,
|
|
22
20
|
CreateFlowCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteConnectorProfileRequest,
|
|
4
|
-
DeleteConnectorProfileResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteConnectorProfileRequest, DeleteConnectorProfileResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteConnectorProfileCommandInput
|
|
8
|
-
extends DeleteConnectorProfileRequest {}
|
|
4
|
+
export interface DeleteConnectorProfileCommandInput extends DeleteConnectorProfileRequest {}
|
|
9
5
|
export interface DeleteConnectorProfileCommandOutput
|
|
10
|
-
extends DeleteConnectorProfileResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteConnectorProfileResponse, __MetadataBearer {}
|
|
12
7
|
declare const DeleteConnectorProfileCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteConnectorProfileCommandInput
|
|
9
|
+
input: DeleteConnectorProfileCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteConnectorProfileCommandInput,
|
|
17
12
|
DeleteConnectorProfileCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteConnectorProfileCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteConnectorProfileCommandInput
|
|
18
|
+
input: DeleteConnectorProfileCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteConnectorProfileCommandInput,
|
|
26
21
|
DeleteConnectorProfileCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DeleteFlowRequest, DeleteFlowResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DeleteFlowCommandInput extends DeleteFlowRequest {}
|
|
5
|
-
export interface DeleteFlowCommandOutput
|
|
6
|
-
extends DeleteFlowResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteFlowCommandOutput extends DeleteFlowResponse, __MetadataBearer {}
|
|
8
6
|
declare const DeleteFlowCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DeleteFlowCommandInput
|
|
8
|
+
input: DeleteFlowCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DeleteFlowCommandInput,
|
|
13
11
|
DeleteFlowCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DeleteFlowCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DeleteFlowCommandInput
|
|
17
|
+
input: DeleteFlowCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DeleteFlowCommandInput,
|
|
22
20
|
DeleteFlowCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeConnectorRequest,
|
|
4
|
-
DescribeConnectorResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeConnectorRequest, DescribeConnectorResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeConnectorCommandInput
|
|
8
|
-
extends DescribeConnectorRequest {}
|
|
4
|
+
export interface DescribeConnectorCommandInput extends DescribeConnectorRequest {}
|
|
9
5
|
export interface DescribeConnectorCommandOutput
|
|
10
|
-
extends DescribeConnectorResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DescribeConnectorResponse, __MetadataBearer {}
|
|
12
7
|
declare const DescribeConnectorCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DescribeConnectorCommandInput
|
|
9
|
+
input: DescribeConnectorCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DescribeConnectorCommandInput,
|
|
17
12
|
DescribeConnectorCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DescribeConnectorCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DescribeConnectorCommandInput
|
|
18
|
+
input: DescribeConnectorCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DescribeConnectorCommandInput,
|
|
26
21
|
DescribeConnectorCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeConnectorEntityResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeConnectorEntityCommandInput
|
|
8
|
-
extends DescribeConnectorEntityRequest {}
|
|
7
|
+
export interface DescribeConnectorEntityCommandInput extends DescribeConnectorEntityRequest {}
|
|
9
8
|
export interface DescribeConnectorEntityCommandOutput
|
|
10
|
-
extends DescribeConnectorEntityResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeConnectorEntityResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeConnectorEntityCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeConnectorEntityCommandInput
|
|
12
|
+
input: DescribeConnectorEntityCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeConnectorEntityCommandInput,
|
|
17
15
|
DescribeConnectorEntityCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeConnectorEntityCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeConnectorEntityCommandInput
|
|
21
|
+
input: DescribeConnectorEntityCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeConnectorEntityCommandInput,
|
|
26
24
|
DescribeConnectorEntityCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeConnectorProfilesResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeConnectorProfilesCommandInput
|
|
8
|
-
extends DescribeConnectorProfilesRequest {}
|
|
7
|
+
export interface DescribeConnectorProfilesCommandInput extends DescribeConnectorProfilesRequest {}
|
|
9
8
|
export interface DescribeConnectorProfilesCommandOutput
|
|
10
|
-
extends DescribeConnectorProfilesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeConnectorProfilesResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeConnectorProfilesCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeConnectorProfilesCommandInput
|
|
12
|
+
input: DescribeConnectorProfilesCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeConnectorProfilesCommandInput,
|
|
17
15
|
DescribeConnectorProfilesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeConnectorsRequest,
|
|
4
|
-
DescribeConnectorsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeConnectorsRequest, DescribeConnectorsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeConnectorsCommandInput
|
|
8
|
-
extends DescribeConnectorsRequest {}
|
|
4
|
+
export interface DescribeConnectorsCommandInput extends DescribeConnectorsRequest {}
|
|
9
5
|
export interface DescribeConnectorsCommandOutput
|
|
10
|
-
extends DescribeConnectorsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DescribeConnectorsResponse, __MetadataBearer {}
|
|
12
7
|
declare const DescribeConnectorsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DescribeConnectorsCommandInput
|
|
9
|
+
input: DescribeConnectorsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DescribeConnectorsCommandInput,
|
|
17
12
|
DescribeConnectorsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DescribeFlowRequest, DescribeFlowResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DescribeFlowCommandInput extends DescribeFlowRequest {}
|
|
5
|
-
export interface DescribeFlowCommandOutput
|
|
6
|
-
extends DescribeFlowResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DescribeFlowCommandOutput extends DescribeFlowResponse, __MetadataBearer {}
|
|
8
6
|
declare const DescribeFlowCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DescribeFlowCommandInput
|
|
8
|
+
input: DescribeFlowCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DescribeFlowCommandInput,
|
|
13
11
|
DescribeFlowCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DescribeFlowCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DescribeFlowCommandInput
|
|
17
|
+
input: DescribeFlowCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DescribeFlowCommandInput,
|
|
22
20
|
DescribeFlowCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeFlowExecutionRecordsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeFlowExecutionRecordsCommandInput
|
|
8
|
-
extends DescribeFlowExecutionRecordsRequest {}
|
|
7
|
+
export interface DescribeFlowExecutionRecordsCommandInput extends DescribeFlowExecutionRecordsRequest {}
|
|
9
8
|
export interface DescribeFlowExecutionRecordsCommandOutput
|
|
10
|
-
extends DescribeFlowExecutionRecordsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeFlowExecutionRecordsResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeFlowExecutionRecordsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeFlowExecutionRecordsCommandInput
|
|
12
|
+
input: DescribeFlowExecutionRecordsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeFlowExecutionRecordsCommandInput,
|
|
17
15
|
DescribeFlowExecutionRecordsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeFlowExecutionRecordsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeFlowExecutionRecordsCommandInput
|
|
21
|
+
input: DescribeFlowExecutionRecordsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeFlowExecutionRecordsCommandInput,
|
|
26
24
|
DescribeFlowExecutionRecordsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListConnectorEntitiesRequest,
|
|
4
|
-
ListConnectorEntitiesResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListConnectorEntitiesRequest, ListConnectorEntitiesResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListConnectorEntitiesCommandInput
|
|
8
|
-
extends ListConnectorEntitiesRequest {}
|
|
4
|
+
export interface ListConnectorEntitiesCommandInput extends ListConnectorEntitiesRequest {}
|
|
9
5
|
export interface ListConnectorEntitiesCommandOutput
|
|
10
|
-
extends ListConnectorEntitiesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListConnectorEntitiesResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListConnectorEntitiesCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListConnectorEntitiesCommandInput
|
|
9
|
+
input: ListConnectorEntitiesCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListConnectorEntitiesCommandInput,
|
|
17
12
|
ListConnectorEntitiesCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListConnectorsRequest,
|
|
4
|
-
ListConnectorsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListConnectorsRequest, ListConnectorsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListConnectorsCommandInput extends ListConnectorsRequest {}
|
|
8
|
-
export interface ListConnectorsCommandOutput
|
|
9
|
-
extends ListConnectorsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListConnectorsCommandOutput extends ListConnectorsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListConnectorsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListConnectorsCommandInput
|
|
8
|
+
input: ListConnectorsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListConnectorsCommandInput,
|
|
16
11
|
ListConnectorsCommandOutput,
|
|
@@ -2,11 +2,11 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListFlowsRequest, ListFlowsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListFlowsCommandInput extends ListFlowsRequest {}
|
|
5
|
-
export interface ListFlowsCommandOutput
|
|
6
|
-
extends ListFlowsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListFlowsCommandOutput extends ListFlowsResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListFlowsCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: ListFlowsCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
ListFlowsCommandInput,
|
|
11
11
|
ListFlowsCommandOutput,
|
|
12
12
|
import("..").AppflowClientResolvedConfig,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
RegisterConnectorRequest,
|
|
4
|
-
RegisterConnectorResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { RegisterConnectorRequest, RegisterConnectorResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface RegisterConnectorCommandInput
|
|
8
|
-
extends RegisterConnectorRequest {}
|
|
4
|
+
export interface RegisterConnectorCommandInput extends RegisterConnectorRequest {}
|
|
9
5
|
export interface RegisterConnectorCommandOutput
|
|
10
|
-
extends RegisterConnectorResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends RegisterConnectorResponse, __MetadataBearer {}
|
|
12
7
|
declare const RegisterConnectorCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: RegisterConnectorCommandInput
|
|
9
|
+
input: RegisterConnectorCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
RegisterConnectorCommandInput,
|
|
17
12
|
RegisterConnectorCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ResetConnectorMetadataCacheResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ResetConnectorMetadataCacheCommandInput
|
|
8
|
-
extends ResetConnectorMetadataCacheRequest {}
|
|
7
|
+
export interface ResetConnectorMetadataCacheCommandInput extends ResetConnectorMetadataCacheRequest {}
|
|
9
8
|
export interface ResetConnectorMetadataCacheCommandOutput
|
|
10
|
-
extends ResetConnectorMetadataCacheResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ResetConnectorMetadataCacheResponse, __MetadataBearer {}
|
|
12
10
|
declare const ResetConnectorMetadataCacheCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ResetConnectorMetadataCacheCommandInput
|
|
12
|
+
input: ResetConnectorMetadataCacheCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ResetConnectorMetadataCacheCommandInput,
|
|
17
15
|
ResetConnectorMetadataCacheCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { StartFlowRequest, StartFlowResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface StartFlowCommandInput extends StartFlowRequest {}
|
|
5
|
-
export interface StartFlowCommandOutput
|
|
6
|
-
extends StartFlowResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface StartFlowCommandOutput extends StartFlowResponse, __MetadataBearer {}
|
|
8
6
|
declare const StartFlowCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: StartFlowCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
StartFlowCommandInput,
|
|
11
11
|
StartFlowCommandOutput,
|
|
12
12
|
import("..").AppflowClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: StartFlowCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
StartFlowCommandInput,
|
|
18
20
|
StartFlowCommandOutput,
|
|
19
21
|
import("..").AppflowClientResolvedConfig,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { StopFlowRequest, StopFlowResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface StopFlowCommandInput extends StopFlowRequest {}
|
|
5
|
-
export interface StopFlowCommandOutput
|
|
6
|
-
extends StopFlowResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface StopFlowCommandOutput extends StopFlowResponse, __MetadataBearer {}
|
|
8
6
|
declare const StopFlowCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: StopFlowCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
StopFlowCommandInput,
|
|
11
11
|
StopFlowCommandOutput,
|
|
12
12
|
import("..").AppflowClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: StopFlowCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
StopFlowCommandInput,
|
|
18
20
|
StopFlowCommandOutput,
|
|
19
21
|
import("..").AppflowClientResolvedConfig,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|