@aws-sdk/client-kinesis-analytics-v2 3.169.0 → 3.171.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 +16 -0
- package/dist-types/ts3.4/KinesisAnalyticsV2.d.ts +579 -160
- package/dist-types/ts3.4/KinesisAnalyticsV2Client.d.ts +291 -104
- package/dist-types/ts3.4/commands/AddApplicationCloudWatchLoggingOptionCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/AddApplicationInputCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/AddApplicationInputProcessingConfigurationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/AddApplicationOutputCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/AddApplicationReferenceDataSourceCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/AddApplicationVpcConfigurationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/CreateApplicationPresignedUrlCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateApplicationSnapshotCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteApplicationCloudWatchLoggingOptionCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteApplicationInputProcessingConfigurationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteApplicationOutputCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteApplicationReferenceDataSourceCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteApplicationSnapshotCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteApplicationVpcConfigurationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeApplicationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeApplicationSnapshotCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeApplicationVersionCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DiscoverInputSchemaCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListApplicationSnapshotsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListApplicationVersionsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/RollbackApplicationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/StartApplicationCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/StopApplicationCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/UpdateApplicationMaintenanceConfigurationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/index.d.ts +31 -31
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/KinesisAnalyticsV2ServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1539 -1944
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +377 -95
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- package/package.json +34 -34
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
KinesisAnalyticsV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../KinesisAnalyticsV2Client";
|
|
13
|
+
import {
|
|
14
|
+
DeleteApplicationVpcConfigurationRequest,
|
|
15
|
+
DeleteApplicationVpcConfigurationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteApplicationVpcConfigurationCommandInput
|
|
18
|
+
extends DeleteApplicationVpcConfigurationRequest {}
|
|
19
|
+
export interface DeleteApplicationVpcConfigurationCommandOutput
|
|
20
|
+
extends DeleteApplicationVpcConfigurationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DeleteApplicationVpcConfigurationCommand extends $Command<
|
|
23
|
+
DeleteApplicationVpcConfigurationCommandInput,
|
|
24
|
+
DeleteApplicationVpcConfigurationCommandOutput,
|
|
25
|
+
KinesisAnalyticsV2ClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteApplicationVpcConfigurationCommandInput;
|
|
28
|
+
constructor(input: DeleteApplicationVpcConfigurationCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: KinesisAnalyticsV2ClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DeleteApplicationVpcConfigurationCommandInput,
|
|
35
|
+
DeleteApplicationVpcConfigurationCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
KinesisAnalyticsV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../KinesisAnalyticsV2Client";
|
|
13
|
+
import {
|
|
14
|
+
DescribeApplicationRequest,
|
|
15
|
+
DescribeApplicationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeApplicationCommandInput
|
|
18
|
+
extends DescribeApplicationRequest {}
|
|
19
|
+
export interface DescribeApplicationCommandOutput
|
|
20
|
+
extends DescribeApplicationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeApplicationCommand extends $Command<
|
|
23
|
+
DescribeApplicationCommandInput,
|
|
24
|
+
DescribeApplicationCommandOutput,
|
|
25
|
+
KinesisAnalyticsV2ClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeApplicationCommandInput;
|
|
28
|
+
constructor(input: DescribeApplicationCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: KinesisAnalyticsV2ClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DescribeApplicationCommandInput, DescribeApplicationCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
KinesisAnalyticsV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../KinesisAnalyticsV2Client";
|
|
13
|
+
import {
|
|
14
|
+
DescribeApplicationSnapshotRequest,
|
|
15
|
+
DescribeApplicationSnapshotResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeApplicationSnapshotCommandInput
|
|
18
|
+
extends DescribeApplicationSnapshotRequest {}
|
|
19
|
+
export interface DescribeApplicationSnapshotCommandOutput
|
|
20
|
+
extends DescribeApplicationSnapshotResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeApplicationSnapshotCommand extends $Command<
|
|
23
|
+
DescribeApplicationSnapshotCommandInput,
|
|
24
|
+
DescribeApplicationSnapshotCommandOutput,
|
|
25
|
+
KinesisAnalyticsV2ClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeApplicationSnapshotCommandInput;
|
|
28
|
+
constructor(input: DescribeApplicationSnapshotCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: KinesisAnalyticsV2ClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeApplicationSnapshotCommandInput,
|
|
35
|
+
DescribeApplicationSnapshotCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
KinesisAnalyticsV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../KinesisAnalyticsV2Client";
|
|
13
|
+
import {
|
|
14
|
+
DescribeApplicationVersionRequest,
|
|
15
|
+
DescribeApplicationVersionResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeApplicationVersionCommandInput
|
|
18
|
+
extends DescribeApplicationVersionRequest {}
|
|
19
|
+
export interface DescribeApplicationVersionCommandOutput
|
|
20
|
+
extends DescribeApplicationVersionResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeApplicationVersionCommand extends $Command<
|
|
23
|
+
DescribeApplicationVersionCommandInput,
|
|
24
|
+
DescribeApplicationVersionCommandOutput,
|
|
25
|
+
KinesisAnalyticsV2ClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeApplicationVersionCommandInput;
|
|
28
|
+
constructor(input: DescribeApplicationVersionCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: KinesisAnalyticsV2ClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeApplicationVersionCommandInput,
|
|
35
|
+
DescribeApplicationVersionCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
KinesisAnalyticsV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../KinesisAnalyticsV2Client";
|
|
13
|
+
import {
|
|
14
|
+
DiscoverInputSchemaRequest,
|
|
15
|
+
DiscoverInputSchemaResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DiscoverInputSchemaCommandInput
|
|
18
|
+
extends DiscoverInputSchemaRequest {}
|
|
19
|
+
export interface DiscoverInputSchemaCommandOutput
|
|
20
|
+
extends DiscoverInputSchemaResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DiscoverInputSchemaCommand extends $Command<
|
|
23
|
+
DiscoverInputSchemaCommandInput,
|
|
24
|
+
DiscoverInputSchemaCommandOutput,
|
|
25
|
+
KinesisAnalyticsV2ClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DiscoverInputSchemaCommandInput;
|
|
28
|
+
constructor(input: DiscoverInputSchemaCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: KinesisAnalyticsV2ClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DiscoverInputSchemaCommandInput, DiscoverInputSchemaCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
KinesisAnalyticsV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../KinesisAnalyticsV2Client";
|
|
13
|
+
import {
|
|
14
|
+
ListApplicationSnapshotsRequest,
|
|
15
|
+
ListApplicationSnapshotsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListApplicationSnapshotsCommandInput
|
|
18
|
+
extends ListApplicationSnapshotsRequest {}
|
|
19
|
+
export interface ListApplicationSnapshotsCommandOutput
|
|
20
|
+
extends ListApplicationSnapshotsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListApplicationSnapshotsCommand extends $Command<
|
|
23
|
+
ListApplicationSnapshotsCommandInput,
|
|
24
|
+
ListApplicationSnapshotsCommandOutput,
|
|
25
|
+
KinesisAnalyticsV2ClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListApplicationSnapshotsCommandInput;
|
|
28
|
+
constructor(input: ListApplicationSnapshotsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: KinesisAnalyticsV2ClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListApplicationSnapshotsCommandInput,
|
|
35
|
+
ListApplicationSnapshotsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
KinesisAnalyticsV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../KinesisAnalyticsV2Client";
|
|
13
|
+
import {
|
|
14
|
+
ListApplicationVersionsRequest,
|
|
15
|
+
ListApplicationVersionsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListApplicationVersionsCommandInput
|
|
18
|
+
extends ListApplicationVersionsRequest {}
|
|
19
|
+
export interface ListApplicationVersionsCommandOutput
|
|
20
|
+
extends ListApplicationVersionsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListApplicationVersionsCommand extends $Command<
|
|
23
|
+
ListApplicationVersionsCommandInput,
|
|
24
|
+
ListApplicationVersionsCommandOutput,
|
|
25
|
+
KinesisAnalyticsV2ClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListApplicationVersionsCommandInput;
|
|
28
|
+
constructor(input: ListApplicationVersionsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: KinesisAnalyticsV2ClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListApplicationVersionsCommandInput,
|
|
35
|
+
ListApplicationVersionsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
KinesisAnalyticsV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../KinesisAnalyticsV2Client";
|
|
13
|
+
import {
|
|
14
|
+
ListApplicationsRequest,
|
|
15
|
+
ListApplicationsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListApplicationsCommandInput extends ListApplicationsRequest {}
|
|
18
|
+
export interface ListApplicationsCommandOutput
|
|
19
|
+
extends ListApplicationsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class ListApplicationsCommand extends $Command<
|
|
22
|
+
ListApplicationsCommandInput,
|
|
23
|
+
ListApplicationsCommandOutput,
|
|
24
|
+
KinesisAnalyticsV2ClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ListApplicationsCommandInput;
|
|
27
|
+
constructor(input: ListApplicationsCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: KinesisAnalyticsV2ClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListApplicationsCommandInput, ListApplicationsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
KinesisAnalyticsV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../KinesisAnalyticsV2Client";
|
|
13
|
+
import {
|
|
14
|
+
ListTagsForResourceRequest,
|
|
15
|
+
ListTagsForResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListTagsForResourceCommandInput
|
|
18
|
+
extends ListTagsForResourceRequest {}
|
|
19
|
+
export interface ListTagsForResourceCommandOutput
|
|
20
|
+
extends ListTagsForResourceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
23
|
+
ListTagsForResourceCommandInput,
|
|
24
|
+
ListTagsForResourceCommandOutput,
|
|
25
|
+
KinesisAnalyticsV2ClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
28
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: KinesisAnalyticsV2ClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
KinesisAnalyticsV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../KinesisAnalyticsV2Client";
|
|
13
|
+
import {
|
|
14
|
+
RollbackApplicationRequest,
|
|
15
|
+
RollbackApplicationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface RollbackApplicationCommandInput
|
|
18
|
+
extends RollbackApplicationRequest {}
|
|
19
|
+
export interface RollbackApplicationCommandOutput
|
|
20
|
+
extends RollbackApplicationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class RollbackApplicationCommand extends $Command<
|
|
23
|
+
RollbackApplicationCommandInput,
|
|
24
|
+
RollbackApplicationCommandOutput,
|
|
25
|
+
KinesisAnalyticsV2ClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: RollbackApplicationCommandInput;
|
|
28
|
+
constructor(input: RollbackApplicationCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: KinesisAnalyticsV2ClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<RollbackApplicationCommandInput, RollbackApplicationCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
KinesisAnalyticsV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../KinesisAnalyticsV2Client";
|
|
13
|
+
import {
|
|
14
|
+
StartApplicationRequest,
|
|
15
|
+
StartApplicationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface StartApplicationCommandInput extends StartApplicationRequest {}
|
|
18
|
+
export interface StartApplicationCommandOutput
|
|
19
|
+
extends StartApplicationResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class StartApplicationCommand extends $Command<
|
|
22
|
+
StartApplicationCommandInput,
|
|
23
|
+
StartApplicationCommandOutput,
|
|
24
|
+
KinesisAnalyticsV2ClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: StartApplicationCommandInput;
|
|
27
|
+
constructor(input: StartApplicationCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: KinesisAnalyticsV2ClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<StartApplicationCommandInput, StartApplicationCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|