@aws-sdk/client-codestar-connections 3.169.0 → 3.170.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 +8 -0
- package/dist-types/ts3.4/CodeStarConnections.d.ts +220 -65
- package/dist-types/ts3.4/CodeStarConnectionsClient.d.ts +202 -85
- package/dist-types/ts3.4/commands/CreateConnectionCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateHostCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteHostCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetHostCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListHostsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateHostCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +12 -12
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/CodeStarConnectionsServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +316 -288
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListConnectionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListHostsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +149 -38
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-codestar-connections
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-codestar-connections
|
|
@@ -1,65 +1,220 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import { CodeStarConnectionsClient } from "./CodeStarConnectionsClient";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { CodeStarConnectionsClient } from "./CodeStarConnectionsClient";
|
|
3
|
+
import {
|
|
4
|
+
CreateConnectionCommandInput,
|
|
5
|
+
CreateConnectionCommandOutput,
|
|
6
|
+
} from "./commands/CreateConnectionCommand";
|
|
7
|
+
import {
|
|
8
|
+
CreateHostCommandInput,
|
|
9
|
+
CreateHostCommandOutput,
|
|
10
|
+
} from "./commands/CreateHostCommand";
|
|
11
|
+
import {
|
|
12
|
+
DeleteConnectionCommandInput,
|
|
13
|
+
DeleteConnectionCommandOutput,
|
|
14
|
+
} from "./commands/DeleteConnectionCommand";
|
|
15
|
+
import {
|
|
16
|
+
DeleteHostCommandInput,
|
|
17
|
+
DeleteHostCommandOutput,
|
|
18
|
+
} from "./commands/DeleteHostCommand";
|
|
19
|
+
import {
|
|
20
|
+
GetConnectionCommandInput,
|
|
21
|
+
GetConnectionCommandOutput,
|
|
22
|
+
} from "./commands/GetConnectionCommand";
|
|
23
|
+
import {
|
|
24
|
+
GetHostCommandInput,
|
|
25
|
+
GetHostCommandOutput,
|
|
26
|
+
} from "./commands/GetHostCommand";
|
|
27
|
+
import {
|
|
28
|
+
ListConnectionsCommandInput,
|
|
29
|
+
ListConnectionsCommandOutput,
|
|
30
|
+
} from "./commands/ListConnectionsCommand";
|
|
31
|
+
import {
|
|
32
|
+
ListHostsCommandInput,
|
|
33
|
+
ListHostsCommandOutput,
|
|
34
|
+
} from "./commands/ListHostsCommand";
|
|
35
|
+
import {
|
|
36
|
+
ListTagsForResourceCommandInput,
|
|
37
|
+
ListTagsForResourceCommandOutput,
|
|
38
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
39
|
+
import {
|
|
40
|
+
TagResourceCommandInput,
|
|
41
|
+
TagResourceCommandOutput,
|
|
42
|
+
} from "./commands/TagResourceCommand";
|
|
43
|
+
import {
|
|
44
|
+
UntagResourceCommandInput,
|
|
45
|
+
UntagResourceCommandOutput,
|
|
46
|
+
} from "./commands/UntagResourceCommand";
|
|
47
|
+
import {
|
|
48
|
+
UpdateHostCommandInput,
|
|
49
|
+
UpdateHostCommandOutput,
|
|
50
|
+
} from "./commands/UpdateHostCommand";
|
|
51
|
+
|
|
52
|
+
export declare class CodeStarConnections extends CodeStarConnectionsClient {
|
|
53
|
+
createConnection(
|
|
54
|
+
args: CreateConnectionCommandInput,
|
|
55
|
+
options?: __HttpHandlerOptions
|
|
56
|
+
): Promise<CreateConnectionCommandOutput>;
|
|
57
|
+
createConnection(
|
|
58
|
+
args: CreateConnectionCommandInput,
|
|
59
|
+
cb: (err: any, data?: CreateConnectionCommandOutput) => void
|
|
60
|
+
): void;
|
|
61
|
+
createConnection(
|
|
62
|
+
args: CreateConnectionCommandInput,
|
|
63
|
+
options: __HttpHandlerOptions,
|
|
64
|
+
cb: (err: any, data?: CreateConnectionCommandOutput) => void
|
|
65
|
+
): void;
|
|
66
|
+
|
|
67
|
+
createHost(
|
|
68
|
+
args: CreateHostCommandInput,
|
|
69
|
+
options?: __HttpHandlerOptions
|
|
70
|
+
): Promise<CreateHostCommandOutput>;
|
|
71
|
+
createHost(
|
|
72
|
+
args: CreateHostCommandInput,
|
|
73
|
+
cb: (err: any, data?: CreateHostCommandOutput) => void
|
|
74
|
+
): void;
|
|
75
|
+
createHost(
|
|
76
|
+
args: CreateHostCommandInput,
|
|
77
|
+
options: __HttpHandlerOptions,
|
|
78
|
+
cb: (err: any, data?: CreateHostCommandOutput) => void
|
|
79
|
+
): void;
|
|
80
|
+
|
|
81
|
+
deleteConnection(
|
|
82
|
+
args: DeleteConnectionCommandInput,
|
|
83
|
+
options?: __HttpHandlerOptions
|
|
84
|
+
): Promise<DeleteConnectionCommandOutput>;
|
|
85
|
+
deleteConnection(
|
|
86
|
+
args: DeleteConnectionCommandInput,
|
|
87
|
+
cb: (err: any, data?: DeleteConnectionCommandOutput) => void
|
|
88
|
+
): void;
|
|
89
|
+
deleteConnection(
|
|
90
|
+
args: DeleteConnectionCommandInput,
|
|
91
|
+
options: __HttpHandlerOptions,
|
|
92
|
+
cb: (err: any, data?: DeleteConnectionCommandOutput) => void
|
|
93
|
+
): void;
|
|
94
|
+
|
|
95
|
+
deleteHost(
|
|
96
|
+
args: DeleteHostCommandInput,
|
|
97
|
+
options?: __HttpHandlerOptions
|
|
98
|
+
): Promise<DeleteHostCommandOutput>;
|
|
99
|
+
deleteHost(
|
|
100
|
+
args: DeleteHostCommandInput,
|
|
101
|
+
cb: (err: any, data?: DeleteHostCommandOutput) => void
|
|
102
|
+
): void;
|
|
103
|
+
deleteHost(
|
|
104
|
+
args: DeleteHostCommandInput,
|
|
105
|
+
options: __HttpHandlerOptions,
|
|
106
|
+
cb: (err: any, data?: DeleteHostCommandOutput) => void
|
|
107
|
+
): void;
|
|
108
|
+
|
|
109
|
+
getConnection(
|
|
110
|
+
args: GetConnectionCommandInput,
|
|
111
|
+
options?: __HttpHandlerOptions
|
|
112
|
+
): Promise<GetConnectionCommandOutput>;
|
|
113
|
+
getConnection(
|
|
114
|
+
args: GetConnectionCommandInput,
|
|
115
|
+
cb: (err: any, data?: GetConnectionCommandOutput) => void
|
|
116
|
+
): void;
|
|
117
|
+
getConnection(
|
|
118
|
+
args: GetConnectionCommandInput,
|
|
119
|
+
options: __HttpHandlerOptions,
|
|
120
|
+
cb: (err: any, data?: GetConnectionCommandOutput) => void
|
|
121
|
+
): void;
|
|
122
|
+
|
|
123
|
+
getHost(
|
|
124
|
+
args: GetHostCommandInput,
|
|
125
|
+
options?: __HttpHandlerOptions
|
|
126
|
+
): Promise<GetHostCommandOutput>;
|
|
127
|
+
getHost(
|
|
128
|
+
args: GetHostCommandInput,
|
|
129
|
+
cb: (err: any, data?: GetHostCommandOutput) => void
|
|
130
|
+
): void;
|
|
131
|
+
getHost(
|
|
132
|
+
args: GetHostCommandInput,
|
|
133
|
+
options: __HttpHandlerOptions,
|
|
134
|
+
cb: (err: any, data?: GetHostCommandOutput) => void
|
|
135
|
+
): void;
|
|
136
|
+
|
|
137
|
+
listConnections(
|
|
138
|
+
args: ListConnectionsCommandInput,
|
|
139
|
+
options?: __HttpHandlerOptions
|
|
140
|
+
): Promise<ListConnectionsCommandOutput>;
|
|
141
|
+
listConnections(
|
|
142
|
+
args: ListConnectionsCommandInput,
|
|
143
|
+
cb: (err: any, data?: ListConnectionsCommandOutput) => void
|
|
144
|
+
): void;
|
|
145
|
+
listConnections(
|
|
146
|
+
args: ListConnectionsCommandInput,
|
|
147
|
+
options: __HttpHandlerOptions,
|
|
148
|
+
cb: (err: any, data?: ListConnectionsCommandOutput) => void
|
|
149
|
+
): void;
|
|
150
|
+
|
|
151
|
+
listHosts(
|
|
152
|
+
args: ListHostsCommandInput,
|
|
153
|
+
options?: __HttpHandlerOptions
|
|
154
|
+
): Promise<ListHostsCommandOutput>;
|
|
155
|
+
listHosts(
|
|
156
|
+
args: ListHostsCommandInput,
|
|
157
|
+
cb: (err: any, data?: ListHostsCommandOutput) => void
|
|
158
|
+
): void;
|
|
159
|
+
listHosts(
|
|
160
|
+
args: ListHostsCommandInput,
|
|
161
|
+
options: __HttpHandlerOptions,
|
|
162
|
+
cb: (err: any, data?: ListHostsCommandOutput) => void
|
|
163
|
+
): void;
|
|
164
|
+
|
|
165
|
+
listTagsForResource(
|
|
166
|
+
args: ListTagsForResourceCommandInput,
|
|
167
|
+
options?: __HttpHandlerOptions
|
|
168
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
169
|
+
listTagsForResource(
|
|
170
|
+
args: ListTagsForResourceCommandInput,
|
|
171
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
172
|
+
): void;
|
|
173
|
+
listTagsForResource(
|
|
174
|
+
args: ListTagsForResourceCommandInput,
|
|
175
|
+
options: __HttpHandlerOptions,
|
|
176
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
177
|
+
): void;
|
|
178
|
+
|
|
179
|
+
tagResource(
|
|
180
|
+
args: TagResourceCommandInput,
|
|
181
|
+
options?: __HttpHandlerOptions
|
|
182
|
+
): Promise<TagResourceCommandOutput>;
|
|
183
|
+
tagResource(
|
|
184
|
+
args: TagResourceCommandInput,
|
|
185
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
186
|
+
): void;
|
|
187
|
+
tagResource(
|
|
188
|
+
args: TagResourceCommandInput,
|
|
189
|
+
options: __HttpHandlerOptions,
|
|
190
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
191
|
+
): void;
|
|
192
|
+
|
|
193
|
+
untagResource(
|
|
194
|
+
args: UntagResourceCommandInput,
|
|
195
|
+
options?: __HttpHandlerOptions
|
|
196
|
+
): Promise<UntagResourceCommandOutput>;
|
|
197
|
+
untagResource(
|
|
198
|
+
args: UntagResourceCommandInput,
|
|
199
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
200
|
+
): void;
|
|
201
|
+
untagResource(
|
|
202
|
+
args: UntagResourceCommandInput,
|
|
203
|
+
options: __HttpHandlerOptions,
|
|
204
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
205
|
+
): void;
|
|
206
|
+
|
|
207
|
+
updateHost(
|
|
208
|
+
args: UpdateHostCommandInput,
|
|
209
|
+
options?: __HttpHandlerOptions
|
|
210
|
+
): Promise<UpdateHostCommandOutput>;
|
|
211
|
+
updateHost(
|
|
212
|
+
args: UpdateHostCommandInput,
|
|
213
|
+
cb: (err: any, data?: UpdateHostCommandOutput) => void
|
|
214
|
+
): void;
|
|
215
|
+
updateHost(
|
|
216
|
+
args: UpdateHostCommandInput,
|
|
217
|
+
options: __HttpHandlerOptions,
|
|
218
|
+
cb: (err: any, data?: UpdateHostCommandOutput) => void
|
|
219
|
+
): void;
|
|
220
|
+
}
|
|
@@ -1,85 +1,202 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
import {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
}
|
|
85
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
CreateConnectionCommandInput,
|
|
47
|
+
CreateConnectionCommandOutput,
|
|
48
|
+
} from "./commands/CreateConnectionCommand";
|
|
49
|
+
import {
|
|
50
|
+
CreateHostCommandInput,
|
|
51
|
+
CreateHostCommandOutput,
|
|
52
|
+
} from "./commands/CreateHostCommand";
|
|
53
|
+
import {
|
|
54
|
+
DeleteConnectionCommandInput,
|
|
55
|
+
DeleteConnectionCommandOutput,
|
|
56
|
+
} from "./commands/DeleteConnectionCommand";
|
|
57
|
+
import {
|
|
58
|
+
DeleteHostCommandInput,
|
|
59
|
+
DeleteHostCommandOutput,
|
|
60
|
+
} from "./commands/DeleteHostCommand";
|
|
61
|
+
import {
|
|
62
|
+
GetConnectionCommandInput,
|
|
63
|
+
GetConnectionCommandOutput,
|
|
64
|
+
} from "./commands/GetConnectionCommand";
|
|
65
|
+
import {
|
|
66
|
+
GetHostCommandInput,
|
|
67
|
+
GetHostCommandOutput,
|
|
68
|
+
} from "./commands/GetHostCommand";
|
|
69
|
+
import {
|
|
70
|
+
ListConnectionsCommandInput,
|
|
71
|
+
ListConnectionsCommandOutput,
|
|
72
|
+
} from "./commands/ListConnectionsCommand";
|
|
73
|
+
import {
|
|
74
|
+
ListHostsCommandInput,
|
|
75
|
+
ListHostsCommandOutput,
|
|
76
|
+
} from "./commands/ListHostsCommand";
|
|
77
|
+
import {
|
|
78
|
+
ListTagsForResourceCommandInput,
|
|
79
|
+
ListTagsForResourceCommandOutput,
|
|
80
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
81
|
+
import {
|
|
82
|
+
TagResourceCommandInput,
|
|
83
|
+
TagResourceCommandOutput,
|
|
84
|
+
} from "./commands/TagResourceCommand";
|
|
85
|
+
import {
|
|
86
|
+
UntagResourceCommandInput,
|
|
87
|
+
UntagResourceCommandOutput,
|
|
88
|
+
} from "./commands/UntagResourceCommand";
|
|
89
|
+
import {
|
|
90
|
+
UpdateHostCommandInput,
|
|
91
|
+
UpdateHostCommandOutput,
|
|
92
|
+
} from "./commands/UpdateHostCommand";
|
|
93
|
+
export declare type ServiceInputTypes =
|
|
94
|
+
| CreateConnectionCommandInput
|
|
95
|
+
| CreateHostCommandInput
|
|
96
|
+
| DeleteConnectionCommandInput
|
|
97
|
+
| DeleteHostCommandInput
|
|
98
|
+
| GetConnectionCommandInput
|
|
99
|
+
| GetHostCommandInput
|
|
100
|
+
| ListConnectionsCommandInput
|
|
101
|
+
| ListHostsCommandInput
|
|
102
|
+
| ListTagsForResourceCommandInput
|
|
103
|
+
| TagResourceCommandInput
|
|
104
|
+
| UntagResourceCommandInput
|
|
105
|
+
| UpdateHostCommandInput;
|
|
106
|
+
export declare type ServiceOutputTypes =
|
|
107
|
+
| CreateConnectionCommandOutput
|
|
108
|
+
| CreateHostCommandOutput
|
|
109
|
+
| DeleteConnectionCommandOutput
|
|
110
|
+
| DeleteHostCommandOutput
|
|
111
|
+
| GetConnectionCommandOutput
|
|
112
|
+
| GetHostCommandOutput
|
|
113
|
+
| ListConnectionsCommandOutput
|
|
114
|
+
| ListHostsCommandOutput
|
|
115
|
+
| ListTagsForResourceCommandOutput
|
|
116
|
+
| TagResourceCommandOutput
|
|
117
|
+
| UntagResourceCommandOutput
|
|
118
|
+
| UpdateHostCommandOutput;
|
|
119
|
+
export interface ClientDefaults
|
|
120
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
121
|
+
requestHandler?: __HttpHandler;
|
|
122
|
+
|
|
123
|
+
sha256?: __HashConstructor;
|
|
124
|
+
|
|
125
|
+
urlParser?: __UrlParser;
|
|
126
|
+
|
|
127
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
128
|
+
|
|
129
|
+
streamCollector?: __StreamCollector;
|
|
130
|
+
|
|
131
|
+
base64Decoder?: __Decoder;
|
|
132
|
+
|
|
133
|
+
base64Encoder?: __Encoder;
|
|
134
|
+
|
|
135
|
+
utf8Decoder?: __Decoder;
|
|
136
|
+
|
|
137
|
+
utf8Encoder?: __Encoder;
|
|
138
|
+
|
|
139
|
+
runtime?: string;
|
|
140
|
+
|
|
141
|
+
disableHostPrefix?: boolean;
|
|
142
|
+
|
|
143
|
+
maxAttempts?: number | __Provider<number>;
|
|
144
|
+
|
|
145
|
+
retryMode?: string | __Provider<string>;
|
|
146
|
+
|
|
147
|
+
logger?: __Logger;
|
|
148
|
+
|
|
149
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
150
|
+
|
|
151
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
152
|
+
|
|
153
|
+
serviceId?: string;
|
|
154
|
+
|
|
155
|
+
region?: string | __Provider<string>;
|
|
156
|
+
|
|
157
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
158
|
+
|
|
159
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
160
|
+
|
|
161
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
162
|
+
|
|
163
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
164
|
+
}
|
|
165
|
+
declare type CodeStarConnectionsClientConfigType = Partial<
|
|
166
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
167
|
+
> &
|
|
168
|
+
ClientDefaults &
|
|
169
|
+
RegionInputConfig &
|
|
170
|
+
EndpointsInputConfig &
|
|
171
|
+
RetryInputConfig &
|
|
172
|
+
HostHeaderInputConfig &
|
|
173
|
+
AwsAuthInputConfig &
|
|
174
|
+
UserAgentInputConfig;
|
|
175
|
+
|
|
176
|
+
export interface CodeStarConnectionsClientConfig
|
|
177
|
+
extends CodeStarConnectionsClientConfigType {}
|
|
178
|
+
declare type CodeStarConnectionsClientResolvedConfigType =
|
|
179
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
180
|
+
Required<ClientDefaults> &
|
|
181
|
+
RegionResolvedConfig &
|
|
182
|
+
EndpointsResolvedConfig &
|
|
183
|
+
RetryResolvedConfig &
|
|
184
|
+
HostHeaderResolvedConfig &
|
|
185
|
+
AwsAuthResolvedConfig &
|
|
186
|
+
UserAgentResolvedConfig;
|
|
187
|
+
|
|
188
|
+
export interface CodeStarConnectionsClientResolvedConfig
|
|
189
|
+
extends CodeStarConnectionsClientResolvedConfigType {}
|
|
190
|
+
|
|
191
|
+
export declare class CodeStarConnectionsClient extends __Client<
|
|
192
|
+
__HttpHandlerOptions,
|
|
193
|
+
ServiceInputTypes,
|
|
194
|
+
ServiceOutputTypes,
|
|
195
|
+
CodeStarConnectionsClientResolvedConfig
|
|
196
|
+
> {
|
|
197
|
+
readonly config: CodeStarConnectionsClientResolvedConfig;
|
|
198
|
+
constructor(configuration: CodeStarConnectionsClientConfig);
|
|
199
|
+
|
|
200
|
+
destroy(): void;
|
|
201
|
+
}
|
|
202
|
+
export {};
|
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
CodeStarConnectionsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CodeStarConnectionsClient";
|
|
13
|
+
import {
|
|
14
|
+
CreateConnectionInput,
|
|
15
|
+
CreateConnectionOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateConnectionCommandInput extends CreateConnectionInput {}
|
|
18
|
+
export interface CreateConnectionCommandOutput
|
|
19
|
+
extends CreateConnectionOutput,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class CreateConnectionCommand extends $Command<
|
|
23
|
+
CreateConnectionCommandInput,
|
|
24
|
+
CreateConnectionCommandOutput,
|
|
25
|
+
CodeStarConnectionsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: CreateConnectionCommandInput;
|
|
28
|
+
constructor(input: CreateConnectionCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: CodeStarConnectionsClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<CreateConnectionCommandInput, CreateConnectionCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|