@aws-sdk/client-kafkaconnect 3.726.1 → 3.730.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/README.md +16 -0
- package/dist-cjs/index.js +174 -3
- package/dist-es/KafkaConnect.js +4 -0
- package/dist-es/commands/DescribeConnectorOperationCommand.js +23 -0
- package/dist-es/commands/ListConnectorOperationsCommand.js +22 -0
- package/dist-es/commands/UpdateConnectorCommand.js +2 -1
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +38 -0
- package/dist-es/pagination/ListConnectorOperationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +81 -0
- package/dist-types/KafkaConnect.d.ts +14 -0
- package/dist-types/KafkaConnectClient.d.ts +4 -2
- package/dist-types/commands/CreateConnectorCommand.d.ts +1 -1
- package/dist-types/commands/DescribeConnectorCommand.d.ts +1 -1
- package/dist-types/commands/DescribeConnectorOperationCommand.d.ts +157 -0
- package/dist-types/commands/ListConnectorOperationsCommand.d.ts +109 -0
- package/dist-types/commands/UpdateConnectorCommand.d.ts +4 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +248 -1
- package/dist-types/pagination/ListConnectorOperationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/ts3.4/KafkaConnect.d.ts +34 -0
- package/dist-types/ts3.4/KafkaConnectClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/DescribeConnectorOperationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListConnectorOperationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +86 -1
- package/dist-types/ts3.4/pagination/ListConnectorOperationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/package.json +6 -8
|
@@ -1,5 +1,113 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { KafkaConnectServiceException as __BaseException } from "./KafkaConnectServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
* @enum
|
|
6
|
+
*/
|
|
7
|
+
export declare const ConnectorOperationStepState: {
|
|
8
|
+
readonly CANCELLED: "CANCELLED";
|
|
9
|
+
readonly COMPLETED: "COMPLETED";
|
|
10
|
+
readonly FAILED: "FAILED";
|
|
11
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
12
|
+
readonly PENDING: "PENDING";
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
export type ConnectorOperationStepState = (typeof ConnectorOperationStepState)[keyof typeof ConnectorOperationStepState];
|
|
18
|
+
/**
|
|
19
|
+
* @public
|
|
20
|
+
* @enum
|
|
21
|
+
*/
|
|
22
|
+
export declare const ConnectorOperationStepType: {
|
|
23
|
+
readonly FINALIZE_UPDATE: "FINALIZE_UPDATE";
|
|
24
|
+
readonly INITIALIZE_UPDATE: "INITIALIZE_UPDATE";
|
|
25
|
+
readonly UPDATE_CONNECTOR_CONFIGURATION: "UPDATE_CONNECTOR_CONFIGURATION";
|
|
26
|
+
readonly UPDATE_WORKER_SETTING: "UPDATE_WORKER_SETTING";
|
|
27
|
+
readonly VALIDATE_UPDATE: "VALIDATE_UPDATE";
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
export type ConnectorOperationStepType = (typeof ConnectorOperationStepType)[keyof typeof ConnectorOperationStepType];
|
|
33
|
+
/**
|
|
34
|
+
* <p>Details of a step that is involved in a connector's operation.</p>
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
export interface ConnectorOperationStep {
|
|
38
|
+
/**
|
|
39
|
+
* <p>The step type of the operation.</p>
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
42
|
+
stepType?: ConnectorOperationStepType | undefined;
|
|
43
|
+
/**
|
|
44
|
+
* <p>The step state of the operation.</p>
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
stepState?: ConnectorOperationStepState | undefined;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* @public
|
|
51
|
+
* @enum
|
|
52
|
+
*/
|
|
53
|
+
export declare const ConnectorOperationState: {
|
|
54
|
+
readonly PENDING: "PENDING";
|
|
55
|
+
readonly ROLLBACK_COMPLETE: "ROLLBACK_COMPLETE";
|
|
56
|
+
readonly ROLLBACK_FAILED: "ROLLBACK_FAILED";
|
|
57
|
+
readonly ROLLBACK_IN_PROGRESS: "ROLLBACK_IN_PROGRESS";
|
|
58
|
+
readonly UPDATE_COMPLETE: "UPDATE_COMPLETE";
|
|
59
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
60
|
+
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
61
|
+
};
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
65
|
+
export type ConnectorOperationState = (typeof ConnectorOperationState)[keyof typeof ConnectorOperationState];
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
* @enum
|
|
69
|
+
*/
|
|
70
|
+
export declare const ConnectorOperationType: {
|
|
71
|
+
readonly ISOLATE_CONNECTOR: "ISOLATE_CONNECTOR";
|
|
72
|
+
readonly RESTORE_CONNECTOR: "RESTORE_CONNECTOR";
|
|
73
|
+
readonly UPDATE_CONNECTOR_CONFIGURATION: "UPDATE_CONNECTOR_CONFIGURATION";
|
|
74
|
+
readonly UPDATE_WORKER_SETTING: "UPDATE_WORKER_SETTING";
|
|
75
|
+
};
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
export type ConnectorOperationType = (typeof ConnectorOperationType)[keyof typeof ConnectorOperationType];
|
|
80
|
+
/**
|
|
81
|
+
* <p>Summary of a connector operation.</p>
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
export interface ConnectorOperationSummary {
|
|
85
|
+
/**
|
|
86
|
+
* <p>The Amazon Resource Name (ARN) of the connector operation.</p>
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
89
|
+
connectorOperationArn?: string | undefined;
|
|
90
|
+
/**
|
|
91
|
+
* <p>The type of connector operation performed.</p>
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
94
|
+
connectorOperationType?: ConnectorOperationType | undefined;
|
|
95
|
+
/**
|
|
96
|
+
* <p>The state of the connector operation.</p>
|
|
97
|
+
* @public
|
|
98
|
+
*/
|
|
99
|
+
connectorOperationState?: ConnectorOperationState | undefined;
|
|
100
|
+
/**
|
|
101
|
+
* <p>The time when operation was created.</p>
|
|
102
|
+
* @public
|
|
103
|
+
*/
|
|
104
|
+
creationTime?: Date | undefined;
|
|
105
|
+
/**
|
|
106
|
+
* <p>The time when operation ended.</p>
|
|
107
|
+
* @public
|
|
108
|
+
*/
|
|
109
|
+
endTime?: Date | undefined;
|
|
110
|
+
}
|
|
3
111
|
/**
|
|
4
112
|
* <p>The description of the scale-in policy for the connector.</p>
|
|
5
113
|
* @public
|
|
@@ -1555,6 +1663,92 @@ export interface DescribeConnectorResponse {
|
|
|
1555
1663
|
*/
|
|
1556
1664
|
stateDescription?: StateDescription | undefined;
|
|
1557
1665
|
}
|
|
1666
|
+
/**
|
|
1667
|
+
* @public
|
|
1668
|
+
*/
|
|
1669
|
+
export interface DescribeConnectorOperationRequest {
|
|
1670
|
+
/**
|
|
1671
|
+
* <p>ARN of the connector operation to be described.</p>
|
|
1672
|
+
* @public
|
|
1673
|
+
*/
|
|
1674
|
+
connectorOperationArn: string | undefined;
|
|
1675
|
+
}
|
|
1676
|
+
/**
|
|
1677
|
+
* <p>Details about worker setting of a connector</p>
|
|
1678
|
+
* @public
|
|
1679
|
+
*/
|
|
1680
|
+
export interface WorkerSetting {
|
|
1681
|
+
/**
|
|
1682
|
+
* <p>A description of the connector's capacity.</p>
|
|
1683
|
+
* @public
|
|
1684
|
+
*/
|
|
1685
|
+
capacity?: CapacityDescription | undefined;
|
|
1686
|
+
}
|
|
1687
|
+
/**
|
|
1688
|
+
* @public
|
|
1689
|
+
*/
|
|
1690
|
+
export interface DescribeConnectorOperationResponse {
|
|
1691
|
+
/**
|
|
1692
|
+
* <p>The Amazon Resource Name (ARN) of the connector.</p>
|
|
1693
|
+
* @public
|
|
1694
|
+
*/
|
|
1695
|
+
connectorArn?: string | undefined;
|
|
1696
|
+
/**
|
|
1697
|
+
* <p>The Amazon Resource Name (ARN) of the connector operation.</p>
|
|
1698
|
+
* @public
|
|
1699
|
+
*/
|
|
1700
|
+
connectorOperationArn?: string | undefined;
|
|
1701
|
+
/**
|
|
1702
|
+
* <p>The state of the connector operation.</p>
|
|
1703
|
+
* @public
|
|
1704
|
+
*/
|
|
1705
|
+
connectorOperationState?: ConnectorOperationState | undefined;
|
|
1706
|
+
/**
|
|
1707
|
+
* <p>The type of connector operation performed.</p>
|
|
1708
|
+
* @public
|
|
1709
|
+
*/
|
|
1710
|
+
connectorOperationType?: ConnectorOperationType | undefined;
|
|
1711
|
+
/**
|
|
1712
|
+
* <p>The array of operation steps taken.</p>
|
|
1713
|
+
* @public
|
|
1714
|
+
*/
|
|
1715
|
+
operationSteps?: ConnectorOperationStep[] | undefined;
|
|
1716
|
+
/**
|
|
1717
|
+
* <p>The origin worker setting.</p>
|
|
1718
|
+
* @public
|
|
1719
|
+
*/
|
|
1720
|
+
originWorkerSetting?: WorkerSetting | undefined;
|
|
1721
|
+
/**
|
|
1722
|
+
* <p>The origin connector configuration.</p>
|
|
1723
|
+
* @public
|
|
1724
|
+
*/
|
|
1725
|
+
originConnectorConfiguration?: Record<string, string> | undefined;
|
|
1726
|
+
/**
|
|
1727
|
+
* <p>The target worker setting.</p>
|
|
1728
|
+
* @public
|
|
1729
|
+
*/
|
|
1730
|
+
targetWorkerSetting?: WorkerSetting | undefined;
|
|
1731
|
+
/**
|
|
1732
|
+
* <p>The target connector configuration.</p>
|
|
1733
|
+
* @public
|
|
1734
|
+
*/
|
|
1735
|
+
targetConnectorConfiguration?: Record<string, string> | undefined;
|
|
1736
|
+
/**
|
|
1737
|
+
* <p>Details about the state of a resource.</p>
|
|
1738
|
+
* @public
|
|
1739
|
+
*/
|
|
1740
|
+
errorInfo?: StateDescription | undefined;
|
|
1741
|
+
/**
|
|
1742
|
+
* <p>The time when the operation was created.</p>
|
|
1743
|
+
* @public
|
|
1744
|
+
*/
|
|
1745
|
+
creationTime?: Date | undefined;
|
|
1746
|
+
/**
|
|
1747
|
+
* <p>The time when the operation ended.</p>
|
|
1748
|
+
* @public
|
|
1749
|
+
*/
|
|
1750
|
+
endTime?: Date | undefined;
|
|
1751
|
+
}
|
|
1558
1752
|
/**
|
|
1559
1753
|
* @public
|
|
1560
1754
|
*/
|
|
@@ -1678,6 +1872,41 @@ export interface DescribeWorkerConfigurationResponse {
|
|
|
1678
1872
|
*/
|
|
1679
1873
|
workerConfigurationState?: WorkerConfigurationState | undefined;
|
|
1680
1874
|
}
|
|
1875
|
+
/**
|
|
1876
|
+
* @public
|
|
1877
|
+
*/
|
|
1878
|
+
export interface ListConnectorOperationsRequest {
|
|
1879
|
+
/**
|
|
1880
|
+
* <p>The Amazon Resource Name (ARN) of the connector for which to list operations.</p>
|
|
1881
|
+
* @public
|
|
1882
|
+
*/
|
|
1883
|
+
connectorArn: string | undefined;
|
|
1884
|
+
/**
|
|
1885
|
+
* <p>Maximum number of connector operations to fetch in one get request.</p>
|
|
1886
|
+
* @public
|
|
1887
|
+
*/
|
|
1888
|
+
maxResults?: number | undefined;
|
|
1889
|
+
/**
|
|
1890
|
+
* <p>If the response is truncated, it includes a NextToken. Send this NextToken in a subsequent request to continue listing from where it left off.</p>
|
|
1891
|
+
* @public
|
|
1892
|
+
*/
|
|
1893
|
+
nextToken?: string | undefined;
|
|
1894
|
+
}
|
|
1895
|
+
/**
|
|
1896
|
+
* @public
|
|
1897
|
+
*/
|
|
1898
|
+
export interface ListConnectorOperationsResponse {
|
|
1899
|
+
/**
|
|
1900
|
+
* <p>An array of connector operation descriptions.</p>
|
|
1901
|
+
* @public
|
|
1902
|
+
*/
|
|
1903
|
+
connectorOperations?: ConnectorOperationSummary[] | undefined;
|
|
1904
|
+
/**
|
|
1905
|
+
* <p>If the response is truncated, it includes a NextToken. Send this NextToken in a subsequent request to continue listing from where it left off.</p>
|
|
1906
|
+
* @public
|
|
1907
|
+
*/
|
|
1908
|
+
nextToken?: string | undefined;
|
|
1909
|
+
}
|
|
1681
1910
|
/**
|
|
1682
1911
|
* @public
|
|
1683
1912
|
*/
|
|
@@ -1863,7 +2092,12 @@ export interface UpdateConnectorRequest {
|
|
|
1863
2092
|
* <p>The target capacity.</p>
|
|
1864
2093
|
* @public
|
|
1865
2094
|
*/
|
|
1866
|
-
capacity
|
|
2095
|
+
capacity?: CapacityUpdate | undefined;
|
|
2096
|
+
/**
|
|
2097
|
+
* <p>A map of keys to values that represent the configuration for the connector.</p>
|
|
2098
|
+
* @public
|
|
2099
|
+
*/
|
|
2100
|
+
connectorConfiguration?: Record<string, string> | undefined;
|
|
1867
2101
|
/**
|
|
1868
2102
|
* <p>The Amazon Resource Name (ARN) of the connector that you want to update.</p>
|
|
1869
2103
|
* @public
|
|
@@ -1889,6 +2123,11 @@ export interface UpdateConnectorResponse {
|
|
|
1889
2123
|
* @public
|
|
1890
2124
|
*/
|
|
1891
2125
|
connectorState?: ConnectorState | undefined;
|
|
2126
|
+
/**
|
|
2127
|
+
* <p>The Amazon Resource Name (ARN) of the connector operation.</p>
|
|
2128
|
+
* @public
|
|
2129
|
+
*/
|
|
2130
|
+
connectorOperationArn?: string | undefined;
|
|
1892
2131
|
}
|
|
1893
2132
|
/**
|
|
1894
2133
|
* @internal
|
|
@@ -1902,6 +2141,10 @@ export declare const CreateWorkerConfigurationRequestFilterSensitiveLog: (obj: C
|
|
|
1902
2141
|
* @internal
|
|
1903
2142
|
*/
|
|
1904
2143
|
export declare const DescribeConnectorResponseFilterSensitiveLog: (obj: DescribeConnectorResponse) => any;
|
|
2144
|
+
/**
|
|
2145
|
+
* @internal
|
|
2146
|
+
*/
|
|
2147
|
+
export declare const DescribeConnectorOperationResponseFilterSensitiveLog: (obj: DescribeConnectorOperationResponse) => any;
|
|
1905
2148
|
/**
|
|
1906
2149
|
* @internal
|
|
1907
2150
|
*/
|
|
@@ -1910,3 +2153,7 @@ export declare const WorkerConfigurationRevisionDescriptionFilterSensitiveLog: (
|
|
|
1910
2153
|
* @internal
|
|
1911
2154
|
*/
|
|
1912
2155
|
export declare const DescribeWorkerConfigurationResponseFilterSensitiveLog: (obj: DescribeWorkerConfigurationResponse) => any;
|
|
2156
|
+
/**
|
|
2157
|
+
* @internal
|
|
2158
|
+
*/
|
|
2159
|
+
export declare const UpdateConnectorRequestFilterSensitiveLog: (obj: UpdateConnectorRequest) => any;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListConnectorOperationsCommandInput, ListConnectorOperationsCommandOutput } from "../commands/ListConnectorOperationsCommand";
|
|
3
|
+
import { KafkaConnectPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListConnectorOperations: (config: KafkaConnectPaginationConfiguration, input: ListConnectorOperationsCommandInput, ...rest: any[]) => Paginator<ListConnectorOperationsCommandOutput>;
|
|
@@ -7,8 +7,10 @@ import { DeleteConnectorCommandInput, DeleteConnectorCommandOutput } from "../co
|
|
|
7
7
|
import { DeleteCustomPluginCommandInput, DeleteCustomPluginCommandOutput } from "../commands/DeleteCustomPluginCommand";
|
|
8
8
|
import { DeleteWorkerConfigurationCommandInput, DeleteWorkerConfigurationCommandOutput } from "../commands/DeleteWorkerConfigurationCommand";
|
|
9
9
|
import { DescribeConnectorCommandInput, DescribeConnectorCommandOutput } from "../commands/DescribeConnectorCommand";
|
|
10
|
+
import { DescribeConnectorOperationCommandInput, DescribeConnectorOperationCommandOutput } from "../commands/DescribeConnectorOperationCommand";
|
|
10
11
|
import { DescribeCustomPluginCommandInput, DescribeCustomPluginCommandOutput } from "../commands/DescribeCustomPluginCommand";
|
|
11
12
|
import { DescribeWorkerConfigurationCommandInput, DescribeWorkerConfigurationCommandOutput } from "../commands/DescribeWorkerConfigurationCommand";
|
|
13
|
+
import { ListConnectorOperationsCommandInput, ListConnectorOperationsCommandOutput } from "../commands/ListConnectorOperationsCommand";
|
|
12
14
|
import { ListConnectorsCommandInput, ListConnectorsCommandOutput } from "../commands/ListConnectorsCommand";
|
|
13
15
|
import { ListCustomPluginsCommandInput, ListCustomPluginsCommandOutput } from "../commands/ListCustomPluginsCommand";
|
|
14
16
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
@@ -44,6 +46,10 @@ export declare const se_DeleteWorkerConfigurationCommand: (input: DeleteWorkerCo
|
|
|
44
46
|
* serializeAws_restJson1DescribeConnectorCommand
|
|
45
47
|
*/
|
|
46
48
|
export declare const se_DescribeConnectorCommand: (input: DescribeConnectorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
49
|
+
/**
|
|
50
|
+
* serializeAws_restJson1DescribeConnectorOperationCommand
|
|
51
|
+
*/
|
|
52
|
+
export declare const se_DescribeConnectorOperationCommand: (input: DescribeConnectorOperationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
53
|
/**
|
|
48
54
|
* serializeAws_restJson1DescribeCustomPluginCommand
|
|
49
55
|
*/
|
|
@@ -52,6 +58,10 @@ export declare const se_DescribeCustomPluginCommand: (input: DescribeCustomPlugi
|
|
|
52
58
|
* serializeAws_restJson1DescribeWorkerConfigurationCommand
|
|
53
59
|
*/
|
|
54
60
|
export declare const se_DescribeWorkerConfigurationCommand: (input: DescribeWorkerConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
61
|
+
/**
|
|
62
|
+
* serializeAws_restJson1ListConnectorOperationsCommand
|
|
63
|
+
*/
|
|
64
|
+
export declare const se_ListConnectorOperationsCommand: (input: ListConnectorOperationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
65
|
/**
|
|
56
66
|
* serializeAws_restJson1ListConnectorsCommand
|
|
57
67
|
*/
|
|
@@ -108,6 +118,10 @@ export declare const de_DeleteWorkerConfigurationCommand: (output: __HttpRespons
|
|
|
108
118
|
* deserializeAws_restJson1DescribeConnectorCommand
|
|
109
119
|
*/
|
|
110
120
|
export declare const de_DescribeConnectorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeConnectorCommandOutput>;
|
|
121
|
+
/**
|
|
122
|
+
* deserializeAws_restJson1DescribeConnectorOperationCommand
|
|
123
|
+
*/
|
|
124
|
+
export declare const de_DescribeConnectorOperationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeConnectorOperationCommandOutput>;
|
|
111
125
|
/**
|
|
112
126
|
* deserializeAws_restJson1DescribeCustomPluginCommand
|
|
113
127
|
*/
|
|
@@ -116,6 +130,10 @@ export declare const de_DescribeCustomPluginCommand: (output: __HttpResponse, co
|
|
|
116
130
|
* deserializeAws_restJson1DescribeWorkerConfigurationCommand
|
|
117
131
|
*/
|
|
118
132
|
export declare const de_DescribeWorkerConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeWorkerConfigurationCommandOutput>;
|
|
133
|
+
/**
|
|
134
|
+
* deserializeAws_restJson1ListConnectorOperationsCommand
|
|
135
|
+
*/
|
|
136
|
+
export declare const de_ListConnectorOperationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConnectorOperationsCommandOutput>;
|
|
119
137
|
/**
|
|
120
138
|
* deserializeAws_restJson1ListConnectorsCommand
|
|
121
139
|
*/
|
|
@@ -27,6 +27,10 @@ import {
|
|
|
27
27
|
DescribeConnectorCommandInput,
|
|
28
28
|
DescribeConnectorCommandOutput,
|
|
29
29
|
} from "./commands/DescribeConnectorCommand";
|
|
30
|
+
import {
|
|
31
|
+
DescribeConnectorOperationCommandInput,
|
|
32
|
+
DescribeConnectorOperationCommandOutput,
|
|
33
|
+
} from "./commands/DescribeConnectorOperationCommand";
|
|
30
34
|
import {
|
|
31
35
|
DescribeCustomPluginCommandInput,
|
|
32
36
|
DescribeCustomPluginCommandOutput,
|
|
@@ -35,6 +39,10 @@ import {
|
|
|
35
39
|
DescribeWorkerConfigurationCommandInput,
|
|
36
40
|
DescribeWorkerConfigurationCommandOutput,
|
|
37
41
|
} from "./commands/DescribeWorkerConfigurationCommand";
|
|
42
|
+
import {
|
|
43
|
+
ListConnectorOperationsCommandInput,
|
|
44
|
+
ListConnectorOperationsCommandOutput,
|
|
45
|
+
} from "./commands/ListConnectorOperationsCommand";
|
|
38
46
|
import {
|
|
39
47
|
ListConnectorsCommandInput,
|
|
40
48
|
ListConnectorsCommandOutput,
|
|
@@ -156,6 +164,19 @@ export interface KafkaConnect {
|
|
|
156
164
|
options: __HttpHandlerOptions,
|
|
157
165
|
cb: (err: any, data?: DescribeConnectorCommandOutput) => void
|
|
158
166
|
): void;
|
|
167
|
+
describeConnectorOperation(
|
|
168
|
+
args: DescribeConnectorOperationCommandInput,
|
|
169
|
+
options?: __HttpHandlerOptions
|
|
170
|
+
): Promise<DescribeConnectorOperationCommandOutput>;
|
|
171
|
+
describeConnectorOperation(
|
|
172
|
+
args: DescribeConnectorOperationCommandInput,
|
|
173
|
+
cb: (err: any, data?: DescribeConnectorOperationCommandOutput) => void
|
|
174
|
+
): void;
|
|
175
|
+
describeConnectorOperation(
|
|
176
|
+
args: DescribeConnectorOperationCommandInput,
|
|
177
|
+
options: __HttpHandlerOptions,
|
|
178
|
+
cb: (err: any, data?: DescribeConnectorOperationCommandOutput) => void
|
|
179
|
+
): void;
|
|
159
180
|
describeCustomPlugin(
|
|
160
181
|
args: DescribeCustomPluginCommandInput,
|
|
161
182
|
options?: __HttpHandlerOptions
|
|
@@ -182,6 +203,19 @@ export interface KafkaConnect {
|
|
|
182
203
|
options: __HttpHandlerOptions,
|
|
183
204
|
cb: (err: any, data?: DescribeWorkerConfigurationCommandOutput) => void
|
|
184
205
|
): void;
|
|
206
|
+
listConnectorOperations(
|
|
207
|
+
args: ListConnectorOperationsCommandInput,
|
|
208
|
+
options?: __HttpHandlerOptions
|
|
209
|
+
): Promise<ListConnectorOperationsCommandOutput>;
|
|
210
|
+
listConnectorOperations(
|
|
211
|
+
args: ListConnectorOperationsCommandInput,
|
|
212
|
+
cb: (err: any, data?: ListConnectorOperationsCommandOutput) => void
|
|
213
|
+
): void;
|
|
214
|
+
listConnectorOperations(
|
|
215
|
+
args: ListConnectorOperationsCommandInput,
|
|
216
|
+
options: __HttpHandlerOptions,
|
|
217
|
+
cb: (err: any, data?: ListConnectorOperationsCommandOutput) => void
|
|
218
|
+
): void;
|
|
185
219
|
listConnectors(): Promise<ListConnectorsCommandOutput>;
|
|
186
220
|
listConnectors(
|
|
187
221
|
args: ListConnectorsCommandInput,
|
|
@@ -73,6 +73,10 @@ import {
|
|
|
73
73
|
DescribeConnectorCommandInput,
|
|
74
74
|
DescribeConnectorCommandOutput,
|
|
75
75
|
} from "./commands/DescribeConnectorCommand";
|
|
76
|
+
import {
|
|
77
|
+
DescribeConnectorOperationCommandInput,
|
|
78
|
+
DescribeConnectorOperationCommandOutput,
|
|
79
|
+
} from "./commands/DescribeConnectorOperationCommand";
|
|
76
80
|
import {
|
|
77
81
|
DescribeCustomPluginCommandInput,
|
|
78
82
|
DescribeCustomPluginCommandOutput,
|
|
@@ -81,6 +85,10 @@ import {
|
|
|
81
85
|
DescribeWorkerConfigurationCommandInput,
|
|
82
86
|
DescribeWorkerConfigurationCommandOutput,
|
|
83
87
|
} from "./commands/DescribeWorkerConfigurationCommand";
|
|
88
|
+
import {
|
|
89
|
+
ListConnectorOperationsCommandInput,
|
|
90
|
+
ListConnectorOperationsCommandOutput,
|
|
91
|
+
} from "./commands/ListConnectorOperationsCommand";
|
|
84
92
|
import {
|
|
85
93
|
ListConnectorsCommandInput,
|
|
86
94
|
ListConnectorsCommandOutput,
|
|
@@ -124,8 +132,10 @@ export type ServiceInputTypes =
|
|
|
124
132
|
| DeleteCustomPluginCommandInput
|
|
125
133
|
| DeleteWorkerConfigurationCommandInput
|
|
126
134
|
| DescribeConnectorCommandInput
|
|
135
|
+
| DescribeConnectorOperationCommandInput
|
|
127
136
|
| DescribeCustomPluginCommandInput
|
|
128
137
|
| DescribeWorkerConfigurationCommandInput
|
|
138
|
+
| ListConnectorOperationsCommandInput
|
|
129
139
|
| ListConnectorsCommandInput
|
|
130
140
|
| ListCustomPluginsCommandInput
|
|
131
141
|
| ListTagsForResourceCommandInput
|
|
@@ -141,8 +151,10 @@ export type ServiceOutputTypes =
|
|
|
141
151
|
| DeleteCustomPluginCommandOutput
|
|
142
152
|
| DeleteWorkerConfigurationCommandOutput
|
|
143
153
|
| DescribeConnectorCommandOutput
|
|
154
|
+
| DescribeConnectorOperationCommandOutput
|
|
144
155
|
| DescribeCustomPluginCommandOutput
|
|
145
156
|
| DescribeWorkerConfigurationCommandOutput
|
|
157
|
+
| ListConnectorOperationsCommandOutput
|
|
146
158
|
| ListConnectorsCommandOutput
|
|
147
159
|
| ListCustomPluginsCommandOutput
|
|
148
160
|
| ListTagsForResourceCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
KafkaConnectClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../KafkaConnectClient";
|
|
8
|
+
import {
|
|
9
|
+
DescribeConnectorOperationRequest,
|
|
10
|
+
DescribeConnectorOperationResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeConnectorOperationCommandInput
|
|
15
|
+
extends DescribeConnectorOperationRequest {}
|
|
16
|
+
export interface DescribeConnectorOperationCommandOutput
|
|
17
|
+
extends DescribeConnectorOperationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeConnectorOperationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeConnectorOperationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeConnectorOperationCommandInput,
|
|
24
|
+
DescribeConnectorOperationCommandOutput,
|
|
25
|
+
KafkaConnectClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DescribeConnectorOperationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeConnectorOperationCommandInput,
|
|
33
|
+
DescribeConnectorOperationCommandOutput,
|
|
34
|
+
KafkaConnectClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeConnectorOperationCommand extends DescribeConnectorOperationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DescribeConnectorOperationRequest;
|
|
44
|
+
output: DescribeConnectorOperationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DescribeConnectorOperationCommandInput;
|
|
48
|
+
output: DescribeConnectorOperationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
KafkaConnectClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../KafkaConnectClient";
|
|
8
|
+
import {
|
|
9
|
+
ListConnectorOperationsRequest,
|
|
10
|
+
ListConnectorOperationsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListConnectorOperationsCommandInput
|
|
15
|
+
extends ListConnectorOperationsRequest {}
|
|
16
|
+
export interface ListConnectorOperationsCommandOutput
|
|
17
|
+
extends ListConnectorOperationsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListConnectorOperationsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListConnectorOperationsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListConnectorOperationsCommandInput,
|
|
24
|
+
ListConnectorOperationsCommandOutput,
|
|
25
|
+
KafkaConnectClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ListConnectorOperationsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListConnectorOperationsCommandInput,
|
|
33
|
+
ListConnectorOperationsCommandOutput,
|
|
34
|
+
KafkaConnectClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListConnectorOperationsCommand extends ListConnectorOperationsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListConnectorOperationsRequest;
|
|
44
|
+
output: ListConnectorOperationsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListConnectorOperationsCommandInput;
|
|
48
|
+
output: ListConnectorOperationsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -5,8 +5,10 @@ export * from "./DeleteConnectorCommand";
|
|
|
5
5
|
export * from "./DeleteCustomPluginCommand";
|
|
6
6
|
export * from "./DeleteWorkerConfigurationCommand";
|
|
7
7
|
export * from "./DescribeConnectorCommand";
|
|
8
|
+
export * from "./DescribeConnectorOperationCommand";
|
|
8
9
|
export * from "./DescribeCustomPluginCommand";
|
|
9
10
|
export * from "./DescribeWorkerConfigurationCommand";
|
|
11
|
+
export * from "./ListConnectorOperationsCommand";
|
|
10
12
|
export * from "./ListConnectorsCommand";
|
|
11
13
|
export * from "./ListCustomPluginsCommand";
|
|
12
14
|
export * from "./ListTagsForResourceCommand";
|