@aws-sdk/client-kinesis-analytics 3.295.0 → 3.297.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-types/KinesisAnalytics.d.ts +21 -0
- package/dist-types/KinesisAnalyticsClient.d.ts +24 -4
- package/dist-types/commands/AddApplicationCloudWatchLoggingOptionCommand.d.ts +16 -0
- package/dist-types/commands/AddApplicationInputCommand.d.ts +16 -0
- package/dist-types/commands/AddApplicationInputProcessingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/AddApplicationOutputCommand.d.ts +16 -0
- package/dist-types/commands/AddApplicationReferenceDataSourceCommand.d.ts +16 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationCloudWatchLoggingOptionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationInputProcessingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationOutputCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationReferenceDataSourceCommand.d.ts +16 -0
- package/dist-types/commands/DescribeApplicationCommand.d.ts +16 -0
- package/dist-types/commands/DiscoverInputSchemaCommand.d.ts +16 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/StartApplicationCommand.d.ts +16 -0
- package/dist-types/commands/StopApplicationCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +16 -0
- package/dist-types/models/KinesisAnalyticsServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +152 -0
- package/package.json +29 -29
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
|
|
5
5
|
import { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateApplicationCommandInput extends UpdateApplicationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateApplicationCommandOutput extends UpdateApplicationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <note>
|
|
18
23
|
* <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
|
|
19
24
|
* </note>
|
|
@@ -34,6 +39,8 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
|
|
|
34
39
|
* const response = await client.send(command);
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
42
|
+
* @param UpdateApplicationCommandInput - {@link UpdateApplicationCommandInput}
|
|
43
|
+
* @returns {@link UpdateApplicationCommandOutput}
|
|
37
44
|
* @see {@link UpdateApplicationCommandInput} for command's `input` shape.
|
|
38
45
|
* @see {@link UpdateApplicationCommandOutput} for command's `response` shape.
|
|
39
46
|
* @see {@link KinesisAnalyticsClientResolvedConfig | config} for KinesisAnalyticsClient's `config` shape.
|
|
@@ -61,11 +68,20 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
|
|
|
61
68
|
export declare class UpdateApplicationCommand extends $Command<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, KinesisAnalyticsClientResolvedConfig> {
|
|
62
69
|
readonly input: UpdateApplicationCommandInput;
|
|
63
70
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
71
|
+
/**
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
64
74
|
constructor(input: UpdateApplicationCommandInput);
|
|
65
75
|
/**
|
|
66
76
|
* @internal
|
|
67
77
|
*/
|
|
68
78
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateApplicationCommandInput, UpdateApplicationCommandOutput>;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
69
82
|
private serialize;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
70
86
|
private deserialize;
|
|
71
87
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from KinesisAnalytics service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class KinesisAnalyticsServiceException extends __ServiceException {
|