@aws-sdk/client-codestar-connections 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/CodeStarConnections.d.ts +208 -65
- package/dist-types/ts3.4/CodeStarConnectionsClient.d.ts +177 -85
- package/dist-types/ts3.4/commands/CreateConnectionCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreateHostCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteHostCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetHostCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListHostsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateHostCommand.d.ts +32 -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 +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +238 -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 +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,288 +1,238 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { CodeStarConnectionsServiceException as __BaseException } from "./CodeStarConnectionsServiceException";
|
|
3
|
-
export declare enum ProviderType {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
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
|
-
}
|
|
66
|
-
export interface
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
}
|
|
138
|
-
export interface
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
export
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
export
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
export
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
export declare
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
export declare const
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
export declare const VpcConfigurationFilterSensitiveLog: (obj: VpcConfiguration) => any;
|
|
241
|
-
|
|
242
|
-
export declare const CreateHostInputFilterSensitiveLog: (obj: CreateHostInput) => any;
|
|
243
|
-
|
|
244
|
-
export declare const CreateHostOutputFilterSensitiveLog: (obj: CreateHostOutput) => any;
|
|
245
|
-
|
|
246
|
-
export declare const DeleteConnectionInputFilterSensitiveLog: (obj: DeleteConnectionInput) => any;
|
|
247
|
-
|
|
248
|
-
export declare const DeleteConnectionOutputFilterSensitiveLog: (obj: DeleteConnectionOutput) => any;
|
|
249
|
-
|
|
250
|
-
export declare const DeleteHostInputFilterSensitiveLog: (obj: DeleteHostInput) => any;
|
|
251
|
-
|
|
252
|
-
export declare const DeleteHostOutputFilterSensitiveLog: (obj: DeleteHostOutput) => any;
|
|
253
|
-
|
|
254
|
-
export declare const GetConnectionInputFilterSensitiveLog: (obj: GetConnectionInput) => any;
|
|
255
|
-
|
|
256
|
-
export declare const ConnectionFilterSensitiveLog: (obj: Connection) => any;
|
|
257
|
-
|
|
258
|
-
export declare const GetConnectionOutputFilterSensitiveLog: (obj: GetConnectionOutput) => any;
|
|
259
|
-
|
|
260
|
-
export declare const GetHostInputFilterSensitiveLog: (obj: GetHostInput) => any;
|
|
261
|
-
|
|
262
|
-
export declare const GetHostOutputFilterSensitiveLog: (obj: GetHostOutput) => any;
|
|
263
|
-
|
|
264
|
-
export declare const ListConnectionsInputFilterSensitiveLog: (obj: ListConnectionsInput) => any;
|
|
265
|
-
|
|
266
|
-
export declare const ListConnectionsOutputFilterSensitiveLog: (obj: ListConnectionsOutput) => any;
|
|
267
|
-
|
|
268
|
-
export declare const ListHostsInputFilterSensitiveLog: (obj: ListHostsInput) => any;
|
|
269
|
-
|
|
270
|
-
export declare const HostFilterSensitiveLog: (obj: Host) => any;
|
|
271
|
-
|
|
272
|
-
export declare const ListHostsOutputFilterSensitiveLog: (obj: ListHostsOutput) => any;
|
|
273
|
-
|
|
274
|
-
export declare const ListTagsForResourceInputFilterSensitiveLog: (obj: ListTagsForResourceInput) => any;
|
|
275
|
-
|
|
276
|
-
export declare const ListTagsForResourceOutputFilterSensitiveLog: (obj: ListTagsForResourceOutput) => any;
|
|
277
|
-
|
|
278
|
-
export declare const TagResourceInputFilterSensitiveLog: (obj: TagResourceInput) => any;
|
|
279
|
-
|
|
280
|
-
export declare const TagResourceOutputFilterSensitiveLog: (obj: TagResourceOutput) => any;
|
|
281
|
-
|
|
282
|
-
export declare const UntagResourceInputFilterSensitiveLog: (obj: UntagResourceInput) => any;
|
|
283
|
-
|
|
284
|
-
export declare const UntagResourceOutputFilterSensitiveLog: (obj: UntagResourceOutput) => any;
|
|
285
|
-
|
|
286
|
-
export declare const UpdateHostInputFilterSensitiveLog: (obj: UpdateHostInput) => any;
|
|
287
|
-
|
|
288
|
-
export declare const UpdateHostOutputFilterSensitiveLog: (obj: UpdateHostOutput) => any;
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { CodeStarConnectionsServiceException as __BaseException } from "./CodeStarConnectionsServiceException";
|
|
3
|
+
export declare enum ProviderType {
|
|
4
|
+
BITBUCKET = "Bitbucket",
|
|
5
|
+
GITHUB = "GitHub",
|
|
6
|
+
GITHUB_ENTERPRISE_SERVER = "GitHubEnterpriseServer",
|
|
7
|
+
}
|
|
8
|
+
export interface Tag {
|
|
9
|
+
Key: string | undefined;
|
|
10
|
+
Value: string | undefined;
|
|
11
|
+
}
|
|
12
|
+
export interface CreateConnectionInput {
|
|
13
|
+
ProviderType?: ProviderType | string;
|
|
14
|
+
ConnectionName: string | undefined;
|
|
15
|
+
Tags?: Tag[];
|
|
16
|
+
HostArn?: string;
|
|
17
|
+
}
|
|
18
|
+
export interface CreateConnectionOutput {
|
|
19
|
+
ConnectionArn: string | undefined;
|
|
20
|
+
Tags?: Tag[];
|
|
21
|
+
}
|
|
22
|
+
export declare class LimitExceededException extends __BaseException {
|
|
23
|
+
readonly name: "LimitExceededException";
|
|
24
|
+
readonly $fault: "client";
|
|
25
|
+
Message?: string;
|
|
26
|
+
constructor(
|
|
27
|
+
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
28
|
+
);
|
|
29
|
+
}
|
|
30
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
31
|
+
readonly name: "ResourceNotFoundException";
|
|
32
|
+
readonly $fault: "client";
|
|
33
|
+
Message?: string;
|
|
34
|
+
constructor(
|
|
35
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
36
|
+
);
|
|
37
|
+
}
|
|
38
|
+
export declare class ResourceUnavailableException extends __BaseException {
|
|
39
|
+
readonly name: "ResourceUnavailableException";
|
|
40
|
+
readonly $fault: "client";
|
|
41
|
+
Message?: string;
|
|
42
|
+
constructor(
|
|
43
|
+
opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>
|
|
44
|
+
);
|
|
45
|
+
}
|
|
46
|
+
export interface VpcConfiguration {
|
|
47
|
+
VpcId: string | undefined;
|
|
48
|
+
SubnetIds: string[] | undefined;
|
|
49
|
+
SecurityGroupIds: string[] | undefined;
|
|
50
|
+
TlsCertificate?: string;
|
|
51
|
+
}
|
|
52
|
+
export interface CreateHostInput {
|
|
53
|
+
Name: string | undefined;
|
|
54
|
+
ProviderType: ProviderType | string | undefined;
|
|
55
|
+
ProviderEndpoint: string | undefined;
|
|
56
|
+
VpcConfiguration?: VpcConfiguration;
|
|
57
|
+
Tags?: Tag[];
|
|
58
|
+
}
|
|
59
|
+
export interface CreateHostOutput {
|
|
60
|
+
HostArn?: string;
|
|
61
|
+
Tags?: Tag[];
|
|
62
|
+
}
|
|
63
|
+
export interface DeleteConnectionInput {
|
|
64
|
+
ConnectionArn: string | undefined;
|
|
65
|
+
}
|
|
66
|
+
export interface DeleteConnectionOutput {}
|
|
67
|
+
export interface DeleteHostInput {
|
|
68
|
+
HostArn: string | undefined;
|
|
69
|
+
}
|
|
70
|
+
export interface DeleteHostOutput {}
|
|
71
|
+
export interface GetConnectionInput {
|
|
72
|
+
ConnectionArn: string | undefined;
|
|
73
|
+
}
|
|
74
|
+
export declare enum ConnectionStatus {
|
|
75
|
+
AVAILABLE = "AVAILABLE",
|
|
76
|
+
ERROR = "ERROR",
|
|
77
|
+
PENDING = "PENDING",
|
|
78
|
+
}
|
|
79
|
+
export interface Connection {
|
|
80
|
+
ConnectionName?: string;
|
|
81
|
+
ConnectionArn?: string;
|
|
82
|
+
ProviderType?: ProviderType | string;
|
|
83
|
+
OwnerAccountId?: string;
|
|
84
|
+
ConnectionStatus?: ConnectionStatus | string;
|
|
85
|
+
HostArn?: string;
|
|
86
|
+
}
|
|
87
|
+
export interface GetConnectionOutput {
|
|
88
|
+
Connection?: Connection;
|
|
89
|
+
}
|
|
90
|
+
export interface GetHostInput {
|
|
91
|
+
HostArn: string | undefined;
|
|
92
|
+
}
|
|
93
|
+
export interface GetHostOutput {
|
|
94
|
+
Name?: string;
|
|
95
|
+
Status?: string;
|
|
96
|
+
ProviderType?: ProviderType | string;
|
|
97
|
+
ProviderEndpoint?: string;
|
|
98
|
+
VpcConfiguration?: VpcConfiguration;
|
|
99
|
+
}
|
|
100
|
+
export interface ListConnectionsInput {
|
|
101
|
+
ProviderTypeFilter?: ProviderType | string;
|
|
102
|
+
HostArnFilter?: string;
|
|
103
|
+
MaxResults?: number;
|
|
104
|
+
NextToken?: string;
|
|
105
|
+
}
|
|
106
|
+
export interface ListConnectionsOutput {
|
|
107
|
+
Connections?: Connection[];
|
|
108
|
+
NextToken?: string;
|
|
109
|
+
}
|
|
110
|
+
export interface ListHostsInput {
|
|
111
|
+
MaxResults?: number;
|
|
112
|
+
NextToken?: string;
|
|
113
|
+
}
|
|
114
|
+
export interface Host {
|
|
115
|
+
Name?: string;
|
|
116
|
+
HostArn?: string;
|
|
117
|
+
ProviderType?: ProviderType | string;
|
|
118
|
+
ProviderEndpoint?: string;
|
|
119
|
+
VpcConfiguration?: VpcConfiguration;
|
|
120
|
+
Status?: string;
|
|
121
|
+
StatusMessage?: string;
|
|
122
|
+
}
|
|
123
|
+
export interface ListHostsOutput {
|
|
124
|
+
Hosts?: Host[];
|
|
125
|
+
NextToken?: string;
|
|
126
|
+
}
|
|
127
|
+
export interface ListTagsForResourceInput {
|
|
128
|
+
ResourceArn: string | undefined;
|
|
129
|
+
}
|
|
130
|
+
export interface ListTagsForResourceOutput {
|
|
131
|
+
Tags?: Tag[];
|
|
132
|
+
}
|
|
133
|
+
export interface TagResourceInput {
|
|
134
|
+
ResourceArn: string | undefined;
|
|
135
|
+
Tags: Tag[] | undefined;
|
|
136
|
+
}
|
|
137
|
+
export interface TagResourceOutput {}
|
|
138
|
+
export interface UntagResourceInput {
|
|
139
|
+
ResourceArn: string | undefined;
|
|
140
|
+
TagKeys: string[] | undefined;
|
|
141
|
+
}
|
|
142
|
+
export interface UntagResourceOutput {}
|
|
143
|
+
export declare class ConflictException extends __BaseException {
|
|
144
|
+
readonly name: "ConflictException";
|
|
145
|
+
readonly $fault: "client";
|
|
146
|
+
Message?: string;
|
|
147
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
148
|
+
}
|
|
149
|
+
export declare class UnsupportedOperationException extends __BaseException {
|
|
150
|
+
readonly name: "UnsupportedOperationException";
|
|
151
|
+
readonly $fault: "client";
|
|
152
|
+
Message?: string;
|
|
153
|
+
constructor(
|
|
154
|
+
opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>
|
|
155
|
+
);
|
|
156
|
+
}
|
|
157
|
+
export interface UpdateHostInput {
|
|
158
|
+
HostArn: string | undefined;
|
|
159
|
+
ProviderEndpoint?: string;
|
|
160
|
+
VpcConfiguration?: VpcConfiguration;
|
|
161
|
+
}
|
|
162
|
+
export interface UpdateHostOutput {}
|
|
163
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
164
|
+
export declare const CreateConnectionInputFilterSensitiveLog: (
|
|
165
|
+
obj: CreateConnectionInput
|
|
166
|
+
) => any;
|
|
167
|
+
export declare const CreateConnectionOutputFilterSensitiveLog: (
|
|
168
|
+
obj: CreateConnectionOutput
|
|
169
|
+
) => any;
|
|
170
|
+
export declare const VpcConfigurationFilterSensitiveLog: (
|
|
171
|
+
obj: VpcConfiguration
|
|
172
|
+
) => any;
|
|
173
|
+
export declare const CreateHostInputFilterSensitiveLog: (
|
|
174
|
+
obj: CreateHostInput
|
|
175
|
+
) => any;
|
|
176
|
+
export declare const CreateHostOutputFilterSensitiveLog: (
|
|
177
|
+
obj: CreateHostOutput
|
|
178
|
+
) => any;
|
|
179
|
+
export declare const DeleteConnectionInputFilterSensitiveLog: (
|
|
180
|
+
obj: DeleteConnectionInput
|
|
181
|
+
) => any;
|
|
182
|
+
export declare const DeleteConnectionOutputFilterSensitiveLog: (
|
|
183
|
+
obj: DeleteConnectionOutput
|
|
184
|
+
) => any;
|
|
185
|
+
export declare const DeleteHostInputFilterSensitiveLog: (
|
|
186
|
+
obj: DeleteHostInput
|
|
187
|
+
) => any;
|
|
188
|
+
export declare const DeleteHostOutputFilterSensitiveLog: (
|
|
189
|
+
obj: DeleteHostOutput
|
|
190
|
+
) => any;
|
|
191
|
+
export declare const GetConnectionInputFilterSensitiveLog: (
|
|
192
|
+
obj: GetConnectionInput
|
|
193
|
+
) => any;
|
|
194
|
+
export declare const ConnectionFilterSensitiveLog: (obj: Connection) => any;
|
|
195
|
+
export declare const GetConnectionOutputFilterSensitiveLog: (
|
|
196
|
+
obj: GetConnectionOutput
|
|
197
|
+
) => any;
|
|
198
|
+
export declare const GetHostInputFilterSensitiveLog: (obj: GetHostInput) => any;
|
|
199
|
+
export declare const GetHostOutputFilterSensitiveLog: (
|
|
200
|
+
obj: GetHostOutput
|
|
201
|
+
) => any;
|
|
202
|
+
export declare const ListConnectionsInputFilterSensitiveLog: (
|
|
203
|
+
obj: ListConnectionsInput
|
|
204
|
+
) => any;
|
|
205
|
+
export declare const ListConnectionsOutputFilterSensitiveLog: (
|
|
206
|
+
obj: ListConnectionsOutput
|
|
207
|
+
) => any;
|
|
208
|
+
export declare const ListHostsInputFilterSensitiveLog: (
|
|
209
|
+
obj: ListHostsInput
|
|
210
|
+
) => any;
|
|
211
|
+
export declare const HostFilterSensitiveLog: (obj: Host) => any;
|
|
212
|
+
export declare const ListHostsOutputFilterSensitiveLog: (
|
|
213
|
+
obj: ListHostsOutput
|
|
214
|
+
) => any;
|
|
215
|
+
export declare const ListTagsForResourceInputFilterSensitiveLog: (
|
|
216
|
+
obj: ListTagsForResourceInput
|
|
217
|
+
) => any;
|
|
218
|
+
export declare const ListTagsForResourceOutputFilterSensitiveLog: (
|
|
219
|
+
obj: ListTagsForResourceOutput
|
|
220
|
+
) => any;
|
|
221
|
+
export declare const TagResourceInputFilterSensitiveLog: (
|
|
222
|
+
obj: TagResourceInput
|
|
223
|
+
) => any;
|
|
224
|
+
export declare const TagResourceOutputFilterSensitiveLog: (
|
|
225
|
+
obj: TagResourceOutput
|
|
226
|
+
) => any;
|
|
227
|
+
export declare const UntagResourceInputFilterSensitiveLog: (
|
|
228
|
+
obj: UntagResourceInput
|
|
229
|
+
) => any;
|
|
230
|
+
export declare const UntagResourceOutputFilterSensitiveLog: (
|
|
231
|
+
obj: UntagResourceOutput
|
|
232
|
+
) => any;
|
|
233
|
+
export declare const UpdateHostInputFilterSensitiveLog: (
|
|
234
|
+
obj: UpdateHostInput
|
|
235
|
+
) => any;
|
|
236
|
+
export declare const UpdateHostOutputFilterSensitiveLog: (
|
|
237
|
+
obj: UpdateHostOutput
|
|
238
|
+
) => any;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { CodeStarConnections } from "../CodeStarConnections";
|
|
3
|
-
import { CodeStarConnectionsClient } from "../CodeStarConnectionsClient";
|
|
4
|
-
export interface CodeStarConnectionsPaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { CodeStarConnections } from "../CodeStarConnections";
|
|
3
|
+
import { CodeStarConnectionsClient } from "../CodeStarConnectionsClient";
|
|
4
|
+
export interface CodeStarConnectionsPaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: CodeStarConnections | CodeStarConnectionsClient;
|
|
7
|
+
}
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListConnectionsCommandInput,
|
|
4
|
+
ListConnectionsCommandOutput,
|
|
5
|
+
} from "../commands/ListConnectionsCommand";
|
|
6
|
+
import { CodeStarConnectionsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListConnections(
|
|
8
|
+
config: CodeStarConnectionsPaginationConfiguration,
|
|
9
|
+
input: ListConnectionsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListConnectionsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListHostsCommandInput,
|
|
4
|
+
ListHostsCommandOutput,
|
|
5
|
+
} from "../commands/ListHostsCommand";
|
|
6
|
+
import { CodeStarConnectionsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListHosts(
|
|
8
|
+
config: CodeStarConnectionsPaginationConfiguration,
|
|
9
|
+
input: ListHostsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListHostsCommandOutput>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from "./Interfaces";
|
|
2
|
-
export * from "./ListConnectionsPaginator";
|
|
3
|
-
export * from "./ListHostsPaginator";
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListConnectionsPaginator";
|
|
3
|
+
export * from "./ListHostsPaginator";
|