@aws-sdk/client-codestar-connections 3.533.0 → 3.540.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-cjs/endpoint/endpointResolver.js +4 -2
- package/dist-cjs/index.js +0 -3
- package/dist-es/endpoint/endpointResolver.js +3 -1
- package/dist-es/index.js +0 -1
- package/dist-types/CodeStarConnections.d.ts +4 -1
- package/dist-types/CodeStarConnectionsClient.d.ts +1 -1
- package/dist-types/commands/CreateConnectionCommand.d.ts +2 -1
- package/dist-types/commands/CreateHostCommand.d.ts +2 -1
- package/dist-types/commands/CreateRepositoryLinkCommand.d.ts +2 -1
- package/dist-types/commands/CreateSyncConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/DeleteConnectionCommand.d.ts +2 -1
- package/dist-types/commands/DeleteHostCommand.d.ts +2 -1
- package/dist-types/commands/DeleteRepositoryLinkCommand.d.ts +2 -1
- package/dist-types/commands/DeleteSyncConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/GetConnectionCommand.d.ts +2 -1
- package/dist-types/commands/GetHostCommand.d.ts +2 -1
- package/dist-types/commands/GetRepositoryLinkCommand.d.ts +2 -1
- package/dist-types/commands/GetRepositorySyncStatusCommand.d.ts +2 -1
- package/dist-types/commands/GetResourceSyncStatusCommand.d.ts +2 -1
- package/dist-types/commands/GetSyncBlockerSummaryCommand.d.ts +2 -1
- package/dist-types/commands/GetSyncConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/ListConnectionsCommand.d.ts +2 -1
- package/dist-types/commands/ListHostsCommand.d.ts +2 -1
- package/dist-types/commands/ListRepositoryLinksCommand.d.ts +2 -1
- package/dist-types/commands/ListRepositorySyncDefinitionsCommand.d.ts +2 -1
- package/dist-types/commands/ListSyncConfigurationsCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateHostCommand.d.ts +2 -1
- package/dist-types/commands/UpdateRepositoryLinkCommand.d.ts +2 -1
- package/dist-types/commands/UpdateSyncBlockerCommand.d.ts +2 -1
- package/dist-types/commands/UpdateSyncConfigurationCommand.d.ts +2 -1
- package/dist-types/index.d.ts +0 -1
- package/dist-types/models/models_0.d.ts +220 -220
- package/dist-types/ts3.4/CodeStarConnections.d.ts +3 -0
- package/dist-types/ts3.4/commands/CreateConnectionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateHostCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateRepositoryLinkCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateSyncConfigurationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteHostCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteRepositoryLinkCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteSyncConfigurationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetHostCommand.d.ts +7 -0
- package/dist-types/ts3.4/commands/GetRepositoryLinkCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetRepositorySyncStatusCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetResourceSyncStatusCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetSyncBlockerSummaryCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetSyncConfigurationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListHostsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListRepositoryLinksCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListRepositorySyncDefinitionsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListSyncConfigurationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateHostCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateRepositoryLinkCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateSyncBlockerCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateSyncConfigurationCommand.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +0 -1
- package/package.json +40 -40
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { CodeStarConnectionsServiceException as __BaseException } from "./CodeStarConnectionsServiceException";
|
|
3
3
|
/**
|
|
4
|
-
* @public
|
|
5
4
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
5
|
+
* @public
|
|
6
6
|
*/
|
|
7
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
8
8
|
readonly name: "AccessDeniedException";
|
|
@@ -52,19 +52,19 @@ export declare const ProviderType: {
|
|
|
52
52
|
*/
|
|
53
53
|
export type ProviderType = (typeof ProviderType)[keyof typeof ProviderType];
|
|
54
54
|
/**
|
|
55
|
-
* @public
|
|
56
55
|
* <p>A tag is a key-value pair that is used to manage the resource.</p>
|
|
57
56
|
* <p>This tag is available for use by Amazon Web Services services that support tags.</p>
|
|
57
|
+
* @public
|
|
58
58
|
*/
|
|
59
59
|
export interface Tag {
|
|
60
60
|
/**
|
|
61
|
-
* @public
|
|
62
61
|
* <p>The tag's key.</p>
|
|
62
|
+
* @public
|
|
63
63
|
*/
|
|
64
64
|
Key: string | undefined;
|
|
65
65
|
/**
|
|
66
|
-
* @public
|
|
67
66
|
* <p>The tag's value.</p>
|
|
67
|
+
* @public
|
|
68
68
|
*/
|
|
69
69
|
Value: string | undefined;
|
|
70
70
|
}
|
|
@@ -73,24 +73,24 @@ export interface Tag {
|
|
|
73
73
|
*/
|
|
74
74
|
export interface CreateConnectionInput {
|
|
75
75
|
/**
|
|
76
|
-
* @public
|
|
77
76
|
* <p>The name of the external provider where your third-party code repository is
|
|
78
77
|
* configured.</p>
|
|
78
|
+
* @public
|
|
79
79
|
*/
|
|
80
80
|
ProviderType?: ProviderType;
|
|
81
81
|
/**
|
|
82
|
-
* @public
|
|
83
82
|
* <p>The name of the connection to be created.</p>
|
|
83
|
+
* @public
|
|
84
84
|
*/
|
|
85
85
|
ConnectionName: string | undefined;
|
|
86
86
|
/**
|
|
87
|
-
* @public
|
|
88
87
|
* <p>The key-value pair to use when tagging the resource.</p>
|
|
88
|
+
* @public
|
|
89
89
|
*/
|
|
90
90
|
Tags?: Tag[];
|
|
91
91
|
/**
|
|
92
|
-
* @public
|
|
93
92
|
* <p>The Amazon Resource Name (ARN) of the host associated with the connection to be created.</p>
|
|
93
|
+
* @public
|
|
94
94
|
*/
|
|
95
95
|
HostArn?: string;
|
|
96
96
|
}
|
|
@@ -99,23 +99,23 @@ export interface CreateConnectionInput {
|
|
|
99
99
|
*/
|
|
100
100
|
export interface CreateConnectionOutput {
|
|
101
101
|
/**
|
|
102
|
-
* @public
|
|
103
102
|
* <p>The Amazon Resource Name (ARN) of the connection to be created. The ARN is used as the
|
|
104
103
|
* connection reference when the connection is shared between Amazon Web Services services.</p>
|
|
105
104
|
* <note>
|
|
106
105
|
* <p>The ARN is never reused if the connection is deleted.</p>
|
|
107
106
|
* </note>
|
|
107
|
+
* @public
|
|
108
108
|
*/
|
|
109
109
|
ConnectionArn: string | undefined;
|
|
110
110
|
/**
|
|
111
|
-
* @public
|
|
112
111
|
* <p>Specifies the tags applied to the resource.</p>
|
|
112
|
+
* @public
|
|
113
113
|
*/
|
|
114
114
|
Tags?: Tag[];
|
|
115
115
|
}
|
|
116
116
|
/**
|
|
117
|
-
* @public
|
|
118
117
|
* <p>Exceeded the maximum limit for connections.</p>
|
|
118
|
+
* @public
|
|
119
119
|
*/
|
|
120
120
|
export declare class LimitExceededException extends __BaseException {
|
|
121
121
|
readonly name: "LimitExceededException";
|
|
@@ -127,8 +127,8 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
127
127
|
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
128
128
|
}
|
|
129
129
|
/**
|
|
130
|
-
* @public
|
|
131
130
|
* <p>Resource not found. Verify the connection resource ARN and try again.</p>
|
|
131
|
+
* @public
|
|
132
132
|
*/
|
|
133
133
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
134
134
|
readonly name: "ResourceNotFoundException";
|
|
@@ -140,8 +140,8 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
140
140
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
141
141
|
}
|
|
142
142
|
/**
|
|
143
|
-
* @public
|
|
144
143
|
* <p>Resource not found. Verify the ARN for the host resource and try again.</p>
|
|
144
|
+
* @public
|
|
145
145
|
*/
|
|
146
146
|
export declare class ResourceUnavailableException extends __BaseException {
|
|
147
147
|
readonly name: "ResourceUnavailableException";
|
|
@@ -153,31 +153,31 @@ export declare class ResourceUnavailableException extends __BaseException {
|
|
|
153
153
|
constructor(opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>);
|
|
154
154
|
}
|
|
155
155
|
/**
|
|
156
|
-
* @public
|
|
157
156
|
* <p>The VPC configuration provisioned for the host.</p>
|
|
157
|
+
* @public
|
|
158
158
|
*/
|
|
159
159
|
export interface VpcConfiguration {
|
|
160
160
|
/**
|
|
161
|
-
* @public
|
|
162
161
|
* <p>The ID of the Amazon VPC connected to the infrastructure where your provider type is
|
|
163
162
|
* installed.</p>
|
|
163
|
+
* @public
|
|
164
164
|
*/
|
|
165
165
|
VpcId: string | undefined;
|
|
166
166
|
/**
|
|
167
|
-
* @public
|
|
168
167
|
* <p>The ID of the subnet or subnets associated with the Amazon VPC connected to the
|
|
169
168
|
* infrastructure where your provider type is installed.</p>
|
|
169
|
+
* @public
|
|
170
170
|
*/
|
|
171
171
|
SubnetIds: string[] | undefined;
|
|
172
172
|
/**
|
|
173
|
-
* @public
|
|
174
173
|
* <p>The ID of the security group or security groups associated with the Amazon VPC connected
|
|
175
174
|
* to the infrastructure where your provider type is installed.</p>
|
|
175
|
+
* @public
|
|
176
176
|
*/
|
|
177
177
|
SecurityGroupIds: string[] | undefined;
|
|
178
178
|
/**
|
|
179
|
-
* @public
|
|
180
179
|
* <p>The value of the Transport Layer Security (TLS) certificate associated with the infrastructure where your provider type is installed.</p>
|
|
180
|
+
* @public
|
|
181
181
|
*/
|
|
182
182
|
TlsCertificate?: string;
|
|
183
183
|
}
|
|
@@ -186,32 +186,32 @@ export interface VpcConfiguration {
|
|
|
186
186
|
*/
|
|
187
187
|
export interface CreateHostInput {
|
|
188
188
|
/**
|
|
189
|
-
* @public
|
|
190
189
|
* <p>The name of the host to be created.</p>
|
|
190
|
+
* @public
|
|
191
191
|
*/
|
|
192
192
|
Name: string | undefined;
|
|
193
193
|
/**
|
|
194
|
-
* @public
|
|
195
194
|
* <p>The name of the installed provider to be associated with your connection. The host
|
|
196
195
|
* resource represents the infrastructure where your provider type is installed. The valid
|
|
197
196
|
* provider type is GitHub Enterprise Server.</p>
|
|
197
|
+
* @public
|
|
198
198
|
*/
|
|
199
199
|
ProviderType: ProviderType | undefined;
|
|
200
200
|
/**
|
|
201
|
-
* @public
|
|
202
201
|
* <p>The endpoint of the infrastructure to be represented by the host after it is
|
|
203
202
|
* created.</p>
|
|
203
|
+
* @public
|
|
204
204
|
*/
|
|
205
205
|
ProviderEndpoint: string | undefined;
|
|
206
206
|
/**
|
|
207
|
-
* @public
|
|
208
207
|
* <p>The VPC configuration to be provisioned for the host. A VPC must be configured and the
|
|
209
208
|
* infrastructure to be represented by the host must already be connected to the VPC.</p>
|
|
209
|
+
* @public
|
|
210
210
|
*/
|
|
211
211
|
VpcConfiguration?: VpcConfiguration;
|
|
212
212
|
/**
|
|
213
|
-
* @public
|
|
214
213
|
* <p>Tags for the host to be created.</p>
|
|
214
|
+
* @public
|
|
215
215
|
*/
|
|
216
216
|
Tags?: Tag[];
|
|
217
217
|
}
|
|
@@ -220,19 +220,19 @@ export interface CreateHostInput {
|
|
|
220
220
|
*/
|
|
221
221
|
export interface CreateHostOutput {
|
|
222
222
|
/**
|
|
223
|
-
* @public
|
|
224
223
|
* <p>The Amazon Resource Name (ARN) of the host to be created.</p>
|
|
224
|
+
* @public
|
|
225
225
|
*/
|
|
226
226
|
HostArn?: string;
|
|
227
227
|
/**
|
|
228
|
-
* @public
|
|
229
228
|
* <p>Tags for the created host.</p>
|
|
229
|
+
* @public
|
|
230
230
|
*/
|
|
231
231
|
Tags?: Tag[];
|
|
232
232
|
}
|
|
233
233
|
/**
|
|
234
|
-
* @public
|
|
235
234
|
* <p>Exception thrown as a result of concurrent modification to an application. For example, two individuals attempting to edit the same application at the same time. </p>
|
|
235
|
+
* @public
|
|
236
236
|
*/
|
|
237
237
|
export declare class ConcurrentModificationException extends __BaseException {
|
|
238
238
|
readonly name: "ConcurrentModificationException";
|
|
@@ -248,71 +248,71 @@ export declare class ConcurrentModificationException extends __BaseException {
|
|
|
248
248
|
*/
|
|
249
249
|
export interface CreateRepositoryLinkInput {
|
|
250
250
|
/**
|
|
251
|
-
* @public
|
|
252
251
|
* <p>The Amazon Resource Name (ARN) of the connection to be associated with the repository link.</p>
|
|
252
|
+
* @public
|
|
253
253
|
*/
|
|
254
254
|
ConnectionArn: string | undefined;
|
|
255
255
|
/**
|
|
256
|
-
* @public
|
|
257
256
|
* <p>The owner ID for the repository associated with a specific sync configuration, such as
|
|
258
257
|
* the owner ID in GitHub.</p>
|
|
258
|
+
* @public
|
|
259
259
|
*/
|
|
260
260
|
OwnerId: string | undefined;
|
|
261
261
|
/**
|
|
262
|
-
* @public
|
|
263
262
|
* <p>The name of the repository to be associated with the repository link.</p>
|
|
263
|
+
* @public
|
|
264
264
|
*/
|
|
265
265
|
RepositoryName: string | undefined;
|
|
266
266
|
/**
|
|
267
|
-
* @public
|
|
268
267
|
* <p>The Amazon Resource Name (ARN) encryption key for the repository to be associated with the repository link.</p>
|
|
268
|
+
* @public
|
|
269
269
|
*/
|
|
270
270
|
EncryptionKeyArn?: string;
|
|
271
271
|
/**
|
|
272
|
-
* @public
|
|
273
272
|
* <p>The tags for the repository to be associated with the repository link.</p>
|
|
273
|
+
* @public
|
|
274
274
|
*/
|
|
275
275
|
Tags?: Tag[];
|
|
276
276
|
}
|
|
277
277
|
/**
|
|
278
|
-
* @public
|
|
279
278
|
* <p>Information about the repository link resource, such as the repository link ARN, the associated connection ARN, encryption key ARN, and owner ID.</p>
|
|
279
|
+
* @public
|
|
280
280
|
*/
|
|
281
281
|
export interface RepositoryLinkInfo {
|
|
282
282
|
/**
|
|
283
|
-
* @public
|
|
284
283
|
* <p>The Amazon Resource Name (ARN) of the connection associated with the repository link.</p>
|
|
284
|
+
* @public
|
|
285
285
|
*/
|
|
286
286
|
ConnectionArn: string | undefined;
|
|
287
287
|
/**
|
|
288
|
-
* @public
|
|
289
288
|
* <p>The Amazon Resource Name (ARN) of the encryption key for the repository associated with the repository link.</p>
|
|
289
|
+
* @public
|
|
290
290
|
*/
|
|
291
291
|
EncryptionKeyArn?: string;
|
|
292
292
|
/**
|
|
293
|
-
* @public
|
|
294
293
|
* <p>The owner ID for the repository associated with the repository link, such as the owner
|
|
295
294
|
* ID in GitHub.</p>
|
|
295
|
+
* @public
|
|
296
296
|
*/
|
|
297
297
|
OwnerId: string | undefined;
|
|
298
298
|
/**
|
|
299
|
-
* @public
|
|
300
299
|
* <p>The provider type for the connection, such as GitHub, associated with the repository link.</p>
|
|
300
|
+
* @public
|
|
301
301
|
*/
|
|
302
302
|
ProviderType: ProviderType | undefined;
|
|
303
303
|
/**
|
|
304
|
-
* @public
|
|
305
304
|
* <p>The Amazon Resource Name (ARN) of the repository link.</p>
|
|
305
|
+
* @public
|
|
306
306
|
*/
|
|
307
307
|
RepositoryLinkArn: string | undefined;
|
|
308
308
|
/**
|
|
309
|
-
* @public
|
|
310
309
|
* <p>The ID of the repository link.</p>
|
|
310
|
+
* @public
|
|
311
311
|
*/
|
|
312
312
|
RepositoryLinkId: string | undefined;
|
|
313
313
|
/**
|
|
314
|
-
* @public
|
|
315
314
|
* <p>The name of the repository associated with the repository link.</p>
|
|
315
|
+
* @public
|
|
316
316
|
*/
|
|
317
317
|
RepositoryName: string | undefined;
|
|
318
318
|
}
|
|
@@ -321,14 +321,14 @@ export interface RepositoryLinkInfo {
|
|
|
321
321
|
*/
|
|
322
322
|
export interface CreateRepositoryLinkOutput {
|
|
323
323
|
/**
|
|
324
|
-
* @public
|
|
325
324
|
* <p>The returned information about the created repository link.</p>
|
|
325
|
+
* @public
|
|
326
326
|
*/
|
|
327
327
|
RepositoryLinkInfo: RepositoryLinkInfo | undefined;
|
|
328
328
|
}
|
|
329
329
|
/**
|
|
330
|
-
* @public
|
|
331
330
|
* <p>Received an internal server exception. Try again later.</p>
|
|
331
|
+
* @public
|
|
332
332
|
*/
|
|
333
333
|
export declare class InternalServerException extends __BaseException {
|
|
334
334
|
readonly name: "InternalServerException";
|
|
@@ -340,8 +340,8 @@ export declare class InternalServerException extends __BaseException {
|
|
|
340
340
|
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
341
341
|
}
|
|
342
342
|
/**
|
|
343
|
-
* @public
|
|
344
343
|
* <p>The input is not valid. Verify that the action is typed correctly.</p>
|
|
344
|
+
* @public
|
|
345
345
|
*/
|
|
346
346
|
export declare class InvalidInputException extends __BaseException {
|
|
347
347
|
readonly name: "InvalidInputException";
|
|
@@ -353,8 +353,8 @@ export declare class InvalidInputException extends __BaseException {
|
|
|
353
353
|
constructor(opts: __ExceptionOptionType<InvalidInputException, __BaseException>);
|
|
354
354
|
}
|
|
355
355
|
/**
|
|
356
|
-
* @public
|
|
357
356
|
* <p>Unable to create resource. Resource already exists.</p>
|
|
357
|
+
* @public
|
|
358
358
|
*/
|
|
359
359
|
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
360
360
|
readonly name: "ResourceAlreadyExistsException";
|
|
@@ -366,8 +366,8 @@ export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
|
366
366
|
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
367
367
|
}
|
|
368
368
|
/**
|
|
369
|
-
* @public
|
|
370
369
|
* <p>The request was denied due to request throttling.</p>
|
|
370
|
+
* @public
|
|
371
371
|
*/
|
|
372
372
|
export declare class ThrottlingException extends __BaseException {
|
|
373
373
|
readonly name: "ThrottlingException";
|
|
@@ -418,109 +418,109 @@ export type TriggerResourceUpdateOn = (typeof TriggerResourceUpdateOn)[keyof typ
|
|
|
418
418
|
*/
|
|
419
419
|
export interface CreateSyncConfigurationInput {
|
|
420
420
|
/**
|
|
421
|
-
* @public
|
|
422
421
|
* <p>The branch in the repository from which changes will be synced.</p>
|
|
422
|
+
* @public
|
|
423
423
|
*/
|
|
424
424
|
Branch: string | undefined;
|
|
425
425
|
/**
|
|
426
|
-
* @public
|
|
427
426
|
* <p>The file name of the configuration file that manages syncing between the connection and the repository. This configuration file is stored in the repository.</p>
|
|
427
|
+
* @public
|
|
428
428
|
*/
|
|
429
429
|
ConfigFile: string | undefined;
|
|
430
430
|
/**
|
|
431
|
-
* @public
|
|
432
431
|
* <p>The ID of the repository link created for the connection. A repository link allows Git
|
|
433
432
|
* sync to monitor and sync changes to files in a specified Git repository.</p>
|
|
433
|
+
* @public
|
|
434
434
|
*/
|
|
435
435
|
RepositoryLinkId: string | undefined;
|
|
436
436
|
/**
|
|
437
|
-
* @public
|
|
438
437
|
* <p>The name of the Amazon Web Services resource (for example, a CloudFormation stack in the
|
|
439
438
|
* case of CFN_STACK_SYNC) that will be synchronized from the linked repository.</p>
|
|
439
|
+
* @public
|
|
440
440
|
*/
|
|
441
441
|
ResourceName: string | undefined;
|
|
442
442
|
/**
|
|
443
|
-
* @public
|
|
444
443
|
* <p>The ARN of the IAM role that grants permission for Amazon Web Services to use Git sync to
|
|
445
444
|
* update a given Amazon Web Services resource on your behalf.</p>
|
|
445
|
+
* @public
|
|
446
446
|
*/
|
|
447
447
|
RoleArn: string | undefined;
|
|
448
448
|
/**
|
|
449
|
-
* @public
|
|
450
449
|
* <p>The type of sync configuration.</p>
|
|
450
|
+
* @public
|
|
451
451
|
*/
|
|
452
452
|
SyncType: SyncConfigurationType | undefined;
|
|
453
453
|
/**
|
|
454
|
-
* @public
|
|
455
454
|
* <p>Whether to enable or disable publishing of deployment status to source providers.</p>
|
|
455
|
+
* @public
|
|
456
456
|
*/
|
|
457
457
|
PublishDeploymentStatus?: PublishDeploymentStatus;
|
|
458
458
|
/**
|
|
459
|
-
* @public
|
|
460
459
|
* <p>When to trigger Git sync to begin the stack update.</p>
|
|
460
|
+
* @public
|
|
461
461
|
*/
|
|
462
462
|
TriggerResourceUpdateOn?: TriggerResourceUpdateOn;
|
|
463
463
|
}
|
|
464
464
|
/**
|
|
465
|
-
* @public
|
|
466
465
|
* <p>Information, such as repository, branch, provider, and resource names for a specific sync configuration.</p>
|
|
466
|
+
* @public
|
|
467
467
|
*/
|
|
468
468
|
export interface SyncConfiguration {
|
|
469
469
|
/**
|
|
470
|
-
* @public
|
|
471
470
|
* <p>The branch associated with a specific sync configuration.</p>
|
|
471
|
+
* @public
|
|
472
472
|
*/
|
|
473
473
|
Branch: string | undefined;
|
|
474
474
|
/**
|
|
475
|
-
* @public
|
|
476
475
|
* <p>The file path to the configuration file associated with a specific sync configuration. The path should point to an actual file in the sync configurations linked repository.</p>
|
|
476
|
+
* @public
|
|
477
477
|
*/
|
|
478
478
|
ConfigFile?: string;
|
|
479
479
|
/**
|
|
480
|
-
* @public
|
|
481
480
|
* <p>The owner ID for the repository associated with a specific sync configuration, such as
|
|
482
481
|
* the owner ID in GitHub.</p>
|
|
482
|
+
* @public
|
|
483
483
|
*/
|
|
484
484
|
OwnerId: string | undefined;
|
|
485
485
|
/**
|
|
486
|
-
* @public
|
|
487
486
|
* <p>The connection provider type associated with a specific sync configuration, such as
|
|
488
487
|
* GitHub.</p>
|
|
488
|
+
* @public
|
|
489
489
|
*/
|
|
490
490
|
ProviderType: ProviderType | undefined;
|
|
491
491
|
/**
|
|
492
|
-
* @public
|
|
493
492
|
* <p>The ID of the repository link associated with a specific sync configuration.</p>
|
|
493
|
+
* @public
|
|
494
494
|
*/
|
|
495
495
|
RepositoryLinkId: string | undefined;
|
|
496
496
|
/**
|
|
497
|
-
* @public
|
|
498
497
|
* <p>The name of the repository associated with a specific sync configuration.</p>
|
|
498
|
+
* @public
|
|
499
499
|
*/
|
|
500
500
|
RepositoryName: string | undefined;
|
|
501
501
|
/**
|
|
502
|
-
* @public
|
|
503
502
|
* <p>The name of the connection resource associated with a specific sync configuration.</p>
|
|
503
|
+
* @public
|
|
504
504
|
*/
|
|
505
505
|
ResourceName: string | undefined;
|
|
506
506
|
/**
|
|
507
|
-
* @public
|
|
508
507
|
* <p>The Amazon Resource Name (ARN) of the IAM role associated with a specific sync configuration.</p>
|
|
508
|
+
* @public
|
|
509
509
|
*/
|
|
510
510
|
RoleArn: string | undefined;
|
|
511
511
|
/**
|
|
512
|
-
* @public
|
|
513
512
|
* <p>The type of sync for a specific sync configuration.</p>
|
|
513
|
+
* @public
|
|
514
514
|
*/
|
|
515
515
|
SyncType: SyncConfigurationType | undefined;
|
|
516
516
|
/**
|
|
517
|
-
* @public
|
|
518
517
|
* <p>Whether to enable or disable publishing of deployment status to source providers.</p>
|
|
518
|
+
* @public
|
|
519
519
|
*/
|
|
520
520
|
PublishDeploymentStatus?: PublishDeploymentStatus;
|
|
521
521
|
/**
|
|
522
|
-
* @public
|
|
523
522
|
* <p>When to trigger Git sync to begin the stack update.</p>
|
|
523
|
+
* @public
|
|
524
524
|
*/
|
|
525
525
|
TriggerResourceUpdateOn?: TriggerResourceUpdateOn;
|
|
526
526
|
}
|
|
@@ -529,9 +529,9 @@ export interface SyncConfiguration {
|
|
|
529
529
|
*/
|
|
530
530
|
export interface CreateSyncConfigurationOutput {
|
|
531
531
|
/**
|
|
532
|
-
* @public
|
|
533
532
|
* <p>The created sync configuration for the connection. A sync configuration allows Amazon Web Services to sync content from a Git repository to update a specified Amazon Web Services
|
|
534
533
|
* resource. </p>
|
|
534
|
+
* @public
|
|
535
535
|
*/
|
|
536
536
|
SyncConfiguration: SyncConfiguration | undefined;
|
|
537
537
|
}
|
|
@@ -540,11 +540,11 @@ export interface CreateSyncConfigurationOutput {
|
|
|
540
540
|
*/
|
|
541
541
|
export interface DeleteConnectionInput {
|
|
542
542
|
/**
|
|
543
|
-
* @public
|
|
544
543
|
* <p>The Amazon Resource Name (ARN) of the connection to be deleted.</p>
|
|
545
544
|
* <note>
|
|
546
545
|
* <p>The ARN is never reused if the connection is deleted.</p>
|
|
547
546
|
* </note>
|
|
547
|
+
* @public
|
|
548
548
|
*/
|
|
549
549
|
ConnectionArn: string | undefined;
|
|
550
550
|
}
|
|
@@ -558,8 +558,8 @@ export interface DeleteConnectionOutput {
|
|
|
558
558
|
*/
|
|
559
559
|
export interface DeleteHostInput {
|
|
560
560
|
/**
|
|
561
|
-
* @public
|
|
562
561
|
* <p>The Amazon Resource Name (ARN) of the host to be deleted.</p>
|
|
562
|
+
* @public
|
|
563
563
|
*/
|
|
564
564
|
HostArn: string | undefined;
|
|
565
565
|
}
|
|
@@ -573,8 +573,8 @@ export interface DeleteHostOutput {
|
|
|
573
573
|
*/
|
|
574
574
|
export interface DeleteRepositoryLinkInput {
|
|
575
575
|
/**
|
|
576
|
-
* @public
|
|
577
576
|
* <p>The ID of the repository link to be deleted.</p>
|
|
577
|
+
* @public
|
|
578
578
|
*/
|
|
579
579
|
RepositoryLinkId: string | undefined;
|
|
580
580
|
}
|
|
@@ -584,8 +584,8 @@ export interface DeleteRepositoryLinkInput {
|
|
|
584
584
|
export interface DeleteRepositoryLinkOutput {
|
|
585
585
|
}
|
|
586
586
|
/**
|
|
587
|
-
* @public
|
|
588
587
|
* <p>Unable to continue. The sync blocker still exists.</p>
|
|
588
|
+
* @public
|
|
589
589
|
*/
|
|
590
590
|
export declare class SyncConfigurationStillExistsException extends __BaseException {
|
|
591
591
|
readonly name: "SyncConfigurationStillExistsException";
|
|
@@ -597,8 +597,8 @@ export declare class SyncConfigurationStillExistsException extends __BaseExcepti
|
|
|
597
597
|
constructor(opts: __ExceptionOptionType<SyncConfigurationStillExistsException, __BaseException>);
|
|
598
598
|
}
|
|
599
599
|
/**
|
|
600
|
-
* @public
|
|
601
600
|
* <p>The specified provider type is not supported for connections.</p>
|
|
601
|
+
* @public
|
|
602
602
|
*/
|
|
603
603
|
export declare class UnsupportedProviderTypeException extends __BaseException {
|
|
604
604
|
readonly name: "UnsupportedProviderTypeException";
|
|
@@ -614,14 +614,14 @@ export declare class UnsupportedProviderTypeException extends __BaseException {
|
|
|
614
614
|
*/
|
|
615
615
|
export interface DeleteSyncConfigurationInput {
|
|
616
616
|
/**
|
|
617
|
-
* @public
|
|
618
617
|
* <p>The type of sync configuration to be deleted.</p>
|
|
618
|
+
* @public
|
|
619
619
|
*/
|
|
620
620
|
SyncType: SyncConfigurationType | undefined;
|
|
621
621
|
/**
|
|
622
|
-
* @public
|
|
623
622
|
* <p>The name of the Amazon Web Services resource associated with the sync configuration to be
|
|
624
623
|
* deleted.</p>
|
|
624
|
+
* @public
|
|
625
625
|
*/
|
|
626
626
|
ResourceName: string | undefined;
|
|
627
627
|
}
|
|
@@ -635,8 +635,8 @@ export interface DeleteSyncConfigurationOutput {
|
|
|
635
635
|
*/
|
|
636
636
|
export interface GetConnectionInput {
|
|
637
637
|
/**
|
|
638
|
-
* @public
|
|
639
638
|
* <p>The Amazon Resource Name (ARN) of a connection.</p>
|
|
639
|
+
* @public
|
|
640
640
|
*/
|
|
641
641
|
ConnectionArn: string | undefined;
|
|
642
642
|
}
|
|
@@ -654,46 +654,46 @@ export declare const ConnectionStatus: {
|
|
|
654
654
|
*/
|
|
655
655
|
export type ConnectionStatus = (typeof ConnectionStatus)[keyof typeof ConnectionStatus];
|
|
656
656
|
/**
|
|
657
|
-
* @public
|
|
658
657
|
* <p>A resource that is used to connect third-party source providers with services like CodePipeline.</p>
|
|
659
658
|
* <p>Note: A connection created through CloudFormation, the CLI, or the SDK is in `PENDING` status by default. You can make its status `AVAILABLE` by updating the
|
|
660
659
|
* connection in the console.</p>
|
|
660
|
+
* @public
|
|
661
661
|
*/
|
|
662
662
|
export interface Connection {
|
|
663
663
|
/**
|
|
664
|
-
* @public
|
|
665
664
|
* <p>The name of the connection. Connection names must be unique in an Amazon Web Services account.</p>
|
|
665
|
+
* @public
|
|
666
666
|
*/
|
|
667
667
|
ConnectionName?: string;
|
|
668
668
|
/**
|
|
669
|
-
* @public
|
|
670
669
|
* <p>The Amazon Resource Name (ARN) of the connection. The ARN is used as the connection
|
|
671
670
|
* reference when the connection is shared between Amazon Web Services.</p>
|
|
672
671
|
* <note>
|
|
673
672
|
* <p>The ARN is never reused if the connection is deleted.</p>
|
|
674
673
|
* </note>
|
|
674
|
+
* @public
|
|
675
675
|
*/
|
|
676
676
|
ConnectionArn?: string;
|
|
677
677
|
/**
|
|
678
|
-
* @public
|
|
679
678
|
* <p>The name of the external provider where your third-party code repository is
|
|
680
679
|
* configured.</p>
|
|
680
|
+
* @public
|
|
681
681
|
*/
|
|
682
682
|
ProviderType?: ProviderType;
|
|
683
683
|
/**
|
|
684
|
-
* @public
|
|
685
684
|
* <p>The identifier of the external provider where your third-party code repository is configured.
|
|
686
685
|
* For Bitbucket, this is the account ID of the owner of the Bitbucket repository.</p>
|
|
686
|
+
* @public
|
|
687
687
|
*/
|
|
688
688
|
OwnerAccountId?: string;
|
|
689
689
|
/**
|
|
690
|
-
* @public
|
|
691
690
|
* <p>The current status of the connection. </p>
|
|
691
|
+
* @public
|
|
692
692
|
*/
|
|
693
693
|
ConnectionStatus?: ConnectionStatus;
|
|
694
694
|
/**
|
|
695
|
-
* @public
|
|
696
695
|
* <p>The Amazon Resource Name (ARN) of the host associated with the connection.</p>
|
|
696
|
+
* @public
|
|
697
697
|
*/
|
|
698
698
|
HostArn?: string;
|
|
699
699
|
}
|
|
@@ -702,8 +702,8 @@ export interface Connection {
|
|
|
702
702
|
*/
|
|
703
703
|
export interface GetConnectionOutput {
|
|
704
704
|
/**
|
|
705
|
-
* @public
|
|
706
705
|
* <p>The connection details, such as status, owner, and provider type.</p>
|
|
706
|
+
* @public
|
|
707
707
|
*/
|
|
708
708
|
Connection?: Connection;
|
|
709
709
|
}
|
|
@@ -712,8 +712,8 @@ export interface GetConnectionOutput {
|
|
|
712
712
|
*/
|
|
713
713
|
export interface GetHostInput {
|
|
714
714
|
/**
|
|
715
|
-
* @public
|
|
716
715
|
* <p>The Amazon Resource Name (ARN) of the requested host.</p>
|
|
716
|
+
* @public
|
|
717
717
|
*/
|
|
718
718
|
HostArn: string | undefined;
|
|
719
719
|
}
|
|
@@ -722,28 +722,28 @@ export interface GetHostInput {
|
|
|
722
722
|
*/
|
|
723
723
|
export interface GetHostOutput {
|
|
724
724
|
/**
|
|
725
|
-
* @public
|
|
726
725
|
* <p>The name of the requested host.</p>
|
|
726
|
+
* @public
|
|
727
727
|
*/
|
|
728
728
|
Name?: string;
|
|
729
729
|
/**
|
|
730
|
-
* @public
|
|
731
730
|
* <p>The status of the requested host.</p>
|
|
731
|
+
* @public
|
|
732
732
|
*/
|
|
733
733
|
Status?: string;
|
|
734
734
|
/**
|
|
735
|
-
* @public
|
|
736
735
|
* <p>The provider type of the requested host, such as GitHub Enterprise Server.</p>
|
|
736
|
+
* @public
|
|
737
737
|
*/
|
|
738
738
|
ProviderType?: ProviderType;
|
|
739
739
|
/**
|
|
740
|
-
* @public
|
|
741
740
|
* <p>The endpoint of the infrastructure represented by the requested host.</p>
|
|
741
|
+
* @public
|
|
742
742
|
*/
|
|
743
743
|
ProviderEndpoint?: string;
|
|
744
744
|
/**
|
|
745
|
-
* @public
|
|
746
745
|
* <p>The VPC configuration of the requested host.</p>
|
|
746
|
+
* @public
|
|
747
747
|
*/
|
|
748
748
|
VpcConfiguration?: VpcConfiguration;
|
|
749
749
|
}
|
|
@@ -752,8 +752,8 @@ export interface GetHostOutput {
|
|
|
752
752
|
*/
|
|
753
753
|
export interface GetRepositoryLinkInput {
|
|
754
754
|
/**
|
|
755
|
-
* @public
|
|
756
755
|
* <p>The ID of the repository link to get.</p>
|
|
756
|
+
* @public
|
|
757
757
|
*/
|
|
758
758
|
RepositoryLinkId: string | undefined;
|
|
759
759
|
}
|
|
@@ -762,8 +762,8 @@ export interface GetRepositoryLinkInput {
|
|
|
762
762
|
*/
|
|
763
763
|
export interface GetRepositoryLinkOutput {
|
|
764
764
|
/**
|
|
765
|
-
* @public
|
|
766
765
|
* <p>The information returned for a specified repository link.</p>
|
|
766
|
+
* @public
|
|
767
767
|
*/
|
|
768
768
|
RepositoryLinkInfo: RepositoryLinkInfo | undefined;
|
|
769
769
|
}
|
|
@@ -772,44 +772,44 @@ export interface GetRepositoryLinkOutput {
|
|
|
772
772
|
*/
|
|
773
773
|
export interface GetRepositorySyncStatusInput {
|
|
774
774
|
/**
|
|
775
|
-
* @public
|
|
776
775
|
* <p>The branch of the repository link for the requested repository sync status.</p>
|
|
776
|
+
* @public
|
|
777
777
|
*/
|
|
778
778
|
Branch: string | undefined;
|
|
779
779
|
/**
|
|
780
|
-
* @public
|
|
781
780
|
* <p>The repository link ID for the requested repository sync status.</p>
|
|
781
|
+
* @public
|
|
782
782
|
*/
|
|
783
783
|
RepositoryLinkId: string | undefined;
|
|
784
784
|
/**
|
|
785
|
-
* @public
|
|
786
785
|
* <p>The sync type of the requested sync status.</p>
|
|
786
|
+
* @public
|
|
787
787
|
*/
|
|
788
788
|
SyncType: SyncConfigurationType | undefined;
|
|
789
789
|
}
|
|
790
790
|
/**
|
|
791
|
-
* @public
|
|
792
791
|
* <p>Information about a repository sync event.</p>
|
|
792
|
+
* @public
|
|
793
793
|
*/
|
|
794
794
|
export interface RepositorySyncEvent {
|
|
795
795
|
/**
|
|
796
|
-
* @public
|
|
797
796
|
* <p>A description of a repository sync event.</p>
|
|
797
|
+
* @public
|
|
798
798
|
*/
|
|
799
799
|
Event: string | undefined;
|
|
800
800
|
/**
|
|
801
|
-
* @public
|
|
802
801
|
* <p>The ID for a repository sync event.</p>
|
|
802
|
+
* @public
|
|
803
803
|
*/
|
|
804
804
|
ExternalId?: string;
|
|
805
805
|
/**
|
|
806
|
-
* @public
|
|
807
806
|
* <p>The time that a repository sync event occurred.</p>
|
|
807
|
+
* @public
|
|
808
808
|
*/
|
|
809
809
|
Time: Date | undefined;
|
|
810
810
|
/**
|
|
811
|
-
* @public
|
|
812
811
|
* <p>The event type for a repository sync event.</p>
|
|
812
|
+
* @public
|
|
813
813
|
*/
|
|
814
814
|
Type: string | undefined;
|
|
815
815
|
}
|
|
@@ -829,17 +829,16 @@ export declare const RepositorySyncStatus: {
|
|
|
829
829
|
*/
|
|
830
830
|
export type RepositorySyncStatus = (typeof RepositorySyncStatus)[keyof typeof RepositorySyncStatus];
|
|
831
831
|
/**
|
|
832
|
-
* @public
|
|
833
832
|
* <p>Information about a repository sync attempt for a repository with a sync configuration.</p>
|
|
833
|
+
* @public
|
|
834
834
|
*/
|
|
835
835
|
export interface RepositorySyncAttempt {
|
|
836
836
|
/**
|
|
837
|
-
* @public
|
|
838
837
|
* <p>The start time of a specific sync attempt.</p>
|
|
838
|
+
* @public
|
|
839
839
|
*/
|
|
840
840
|
StartedAt: Date | undefined;
|
|
841
841
|
/**
|
|
842
|
-
* @public
|
|
843
842
|
* <p>The status of a specific sync attempt. The following are valid statuses:</p>
|
|
844
843
|
* <ul>
|
|
845
844
|
* <li>
|
|
@@ -859,11 +858,12 @@ export interface RepositorySyncAttempt {
|
|
|
859
858
|
* <p>QUEUED - The repository sync attempt didn't execute and was queued.</p>
|
|
860
859
|
* </li>
|
|
861
860
|
* </ul>
|
|
861
|
+
* @public
|
|
862
862
|
*/
|
|
863
863
|
Status: RepositorySyncStatus | undefined;
|
|
864
864
|
/**
|
|
865
|
-
* @public
|
|
866
865
|
* <p>The events associated with a specific sync attempt.</p>
|
|
866
|
+
* @public
|
|
867
867
|
*/
|
|
868
868
|
Events: RepositorySyncEvent[] | undefined;
|
|
869
869
|
}
|
|
@@ -872,8 +872,8 @@ export interface RepositorySyncAttempt {
|
|
|
872
872
|
*/
|
|
873
873
|
export interface GetRepositorySyncStatusOutput {
|
|
874
874
|
/**
|
|
875
|
-
* @public
|
|
876
875
|
* <p>The status of the latest sync returned for a specified repository and branch.</p>
|
|
876
|
+
* @public
|
|
877
877
|
*/
|
|
878
878
|
LatestSync: RepositorySyncAttempt | undefined;
|
|
879
879
|
}
|
|
@@ -882,76 +882,76 @@ export interface GetRepositorySyncStatusOutput {
|
|
|
882
882
|
*/
|
|
883
883
|
export interface GetResourceSyncStatusInput {
|
|
884
884
|
/**
|
|
885
|
-
* @public
|
|
886
885
|
* <p>The name of the Amazon Web Services resource for the sync status with the Git
|
|
887
886
|
* repository.</p>
|
|
887
|
+
* @public
|
|
888
888
|
*/
|
|
889
889
|
ResourceName: string | undefined;
|
|
890
890
|
/**
|
|
891
|
-
* @public
|
|
892
891
|
* <p>The sync type for the sync status with the Git repository.</p>
|
|
892
|
+
* @public
|
|
893
893
|
*/
|
|
894
894
|
SyncType: SyncConfigurationType | undefined;
|
|
895
895
|
}
|
|
896
896
|
/**
|
|
897
|
-
* @public
|
|
898
897
|
* <p>Information about the revision for a specific sync event, such as the branch, owner ID, and name of the repository.</p>
|
|
898
|
+
* @public
|
|
899
899
|
*/
|
|
900
900
|
export interface Revision {
|
|
901
901
|
/**
|
|
902
|
-
* @public
|
|
903
902
|
* <p>The branch name for a specific revision.</p>
|
|
903
|
+
* @public
|
|
904
904
|
*/
|
|
905
905
|
Branch: string | undefined;
|
|
906
906
|
/**
|
|
907
|
-
* @public
|
|
908
907
|
* <p>The directory, if any, for a specific revision.</p>
|
|
908
|
+
* @public
|
|
909
909
|
*/
|
|
910
910
|
Directory: string | undefined;
|
|
911
911
|
/**
|
|
912
|
-
* @public
|
|
913
912
|
* <p>The owner ID for a specific revision, such as the GitHub owner ID for a GitHub repository.</p>
|
|
913
|
+
* @public
|
|
914
914
|
*/
|
|
915
915
|
OwnerId: string | undefined;
|
|
916
916
|
/**
|
|
917
|
-
* @public
|
|
918
917
|
* <p>The repository name for a specific revision.</p>
|
|
918
|
+
* @public
|
|
919
919
|
*/
|
|
920
920
|
RepositoryName: string | undefined;
|
|
921
921
|
/**
|
|
922
|
-
* @public
|
|
923
922
|
* <p>The provider type for a revision, such as GitHub.</p>
|
|
923
|
+
* @public
|
|
924
924
|
*/
|
|
925
925
|
ProviderType: ProviderType | undefined;
|
|
926
926
|
/**
|
|
927
|
-
* @public
|
|
928
927
|
* <p>The SHA, such as the commit ID, for a specific revision.</p>
|
|
928
|
+
* @public
|
|
929
929
|
*/
|
|
930
930
|
Sha: string | undefined;
|
|
931
931
|
}
|
|
932
932
|
/**
|
|
933
|
-
* @public
|
|
934
933
|
* <p>Information about a resource sync event for the resource associated with a sync configuration.</p>
|
|
934
|
+
* @public
|
|
935
935
|
*/
|
|
936
936
|
export interface ResourceSyncEvent {
|
|
937
937
|
/**
|
|
938
|
-
* @public
|
|
939
938
|
* <p>The event for a resource sync event.</p>
|
|
939
|
+
* @public
|
|
940
940
|
*/
|
|
941
941
|
Event: string | undefined;
|
|
942
942
|
/**
|
|
943
|
-
* @public
|
|
944
943
|
* <p>The ID for a resource sync event.</p>
|
|
944
|
+
* @public
|
|
945
945
|
*/
|
|
946
946
|
ExternalId?: string;
|
|
947
947
|
/**
|
|
948
|
-
* @public
|
|
949
948
|
* <p>The time that a resource sync event occurred.</p>
|
|
949
|
+
* @public
|
|
950
950
|
*/
|
|
951
951
|
Time: Date | undefined;
|
|
952
952
|
/**
|
|
953
|
-
* @public
|
|
954
953
|
* <p>The type of resource sync event.</p>
|
|
954
|
+
* @public
|
|
955
955
|
*/
|
|
956
956
|
Type: string | undefined;
|
|
957
957
|
}
|
|
@@ -970,28 +970,27 @@ export declare const ResourceSyncStatus: {
|
|
|
970
970
|
*/
|
|
971
971
|
export type ResourceSyncStatus = (typeof ResourceSyncStatus)[keyof typeof ResourceSyncStatus];
|
|
972
972
|
/**
|
|
973
|
-
* @public
|
|
974
973
|
* <p>Information about a resource sync attempt.</p>
|
|
974
|
+
* @public
|
|
975
975
|
*/
|
|
976
976
|
export interface ResourceSyncAttempt {
|
|
977
977
|
/**
|
|
978
|
-
* @public
|
|
979
978
|
* <p>The events related to a resource sync attempt.</p>
|
|
979
|
+
* @public
|
|
980
980
|
*/
|
|
981
981
|
Events: ResourceSyncEvent[] | undefined;
|
|
982
982
|
/**
|
|
983
|
-
* @public
|
|
984
983
|
* <p>The current state of the resource as defined in the resource's <code>config-file</code>
|
|
985
984
|
* in the linked repository.</p>
|
|
985
|
+
* @public
|
|
986
986
|
*/
|
|
987
987
|
InitialRevision: Revision | undefined;
|
|
988
988
|
/**
|
|
989
|
-
* @public
|
|
990
989
|
* <p>The start time for a resource sync attempt.</p>
|
|
990
|
+
* @public
|
|
991
991
|
*/
|
|
992
992
|
StartedAt: Date | undefined;
|
|
993
993
|
/**
|
|
994
|
-
* @public
|
|
995
994
|
* <p>The status for a resource sync attempt. The follow are valid statuses:</p>
|
|
996
995
|
* <ul>
|
|
997
996
|
* <li>
|
|
@@ -1007,17 +1006,18 @@ export interface ResourceSyncAttempt {
|
|
|
1007
1006
|
* <p>SYNC_FAILED - A resource sync attempt has failed.</p>
|
|
1008
1007
|
* </li>
|
|
1009
1008
|
* </ul>
|
|
1009
|
+
* @public
|
|
1010
1010
|
*/
|
|
1011
1011
|
Status: ResourceSyncStatus | undefined;
|
|
1012
1012
|
/**
|
|
1013
|
-
* @public
|
|
1014
1013
|
* <p>The desired state of the resource as defined in the resource's <code>config-file</code>
|
|
1015
1014
|
* in the linked repository. Git sync attempts to update the resource to this state.</p>
|
|
1015
|
+
* @public
|
|
1016
1016
|
*/
|
|
1017
1017
|
TargetRevision: Revision | undefined;
|
|
1018
1018
|
/**
|
|
1019
|
-
* @public
|
|
1020
1019
|
* <p>The name of the Amazon Web Services resource that is attempted to be synchronized.</p>
|
|
1020
|
+
* @public
|
|
1021
1021
|
*/
|
|
1022
1022
|
Target: string | undefined;
|
|
1023
1023
|
}
|
|
@@ -1026,19 +1026,19 @@ export interface ResourceSyncAttempt {
|
|
|
1026
1026
|
*/
|
|
1027
1027
|
export interface GetResourceSyncStatusOutput {
|
|
1028
1028
|
/**
|
|
1029
|
-
* @public
|
|
1030
1029
|
* <p>The desired state of the Amazon Web Services resource for the sync status with the Git
|
|
1031
1030
|
* repository.</p>
|
|
1031
|
+
* @public
|
|
1032
1032
|
*/
|
|
1033
1033
|
DesiredState?: Revision;
|
|
1034
1034
|
/**
|
|
1035
|
-
* @public
|
|
1036
1035
|
* <p>The latest successful sync for the sync status with the Git repository.</p>
|
|
1036
|
+
* @public
|
|
1037
1037
|
*/
|
|
1038
1038
|
LatestSuccessfulSync?: ResourceSyncAttempt;
|
|
1039
1039
|
/**
|
|
1040
|
-
* @public
|
|
1041
1040
|
* <p>The latest sync for the sync status with the Git repository, whether successful or not.</p>
|
|
1041
|
+
* @public
|
|
1042
1042
|
*/
|
|
1043
1043
|
LatestSync: ResourceSyncAttempt | undefined;
|
|
1044
1044
|
}
|
|
@@ -1047,96 +1047,96 @@ export interface GetResourceSyncStatusOutput {
|
|
|
1047
1047
|
*/
|
|
1048
1048
|
export interface GetSyncBlockerSummaryInput {
|
|
1049
1049
|
/**
|
|
1050
|
-
* @public
|
|
1051
1050
|
* <p>The sync type for the sync blocker summary.</p>
|
|
1051
|
+
* @public
|
|
1052
1052
|
*/
|
|
1053
1053
|
SyncType: SyncConfigurationType | undefined;
|
|
1054
1054
|
/**
|
|
1055
|
-
* @public
|
|
1056
1055
|
* <p>The name of the Amazon Web Services resource currently blocked from automatically being synced from a Git repository.</p>
|
|
1056
|
+
* @public
|
|
1057
1057
|
*/
|
|
1058
1058
|
ResourceName: string | undefined;
|
|
1059
1059
|
}
|
|
1060
1060
|
/**
|
|
1061
|
-
* @public
|
|
1062
1061
|
* <p>The context for a specific sync blocker.</p>
|
|
1062
|
+
* @public
|
|
1063
1063
|
*/
|
|
1064
1064
|
export interface SyncBlockerContext {
|
|
1065
1065
|
/**
|
|
1066
|
-
* @public
|
|
1067
1066
|
* <p>The key provided for a context key-value pair for a specific sync blocker.</p>
|
|
1067
|
+
* @public
|
|
1068
1068
|
*/
|
|
1069
1069
|
Key: string | undefined;
|
|
1070
1070
|
/**
|
|
1071
|
-
* @public
|
|
1072
1071
|
* <p>The value provided for a context key-value pair for a specific sync blocker.</p>
|
|
1072
|
+
* @public
|
|
1073
1073
|
*/
|
|
1074
1074
|
Value: string | undefined;
|
|
1075
1075
|
}
|
|
1076
1076
|
/**
|
|
1077
|
-
* @public
|
|
1078
1077
|
* <p>Information about a blocker for a sync event.</p>
|
|
1078
|
+
* @public
|
|
1079
1079
|
*/
|
|
1080
1080
|
export interface SyncBlocker {
|
|
1081
1081
|
/**
|
|
1082
|
-
* @public
|
|
1083
1082
|
* <p>The ID for a specific sync blocker.</p>
|
|
1083
|
+
* @public
|
|
1084
1084
|
*/
|
|
1085
1085
|
Id: string | undefined;
|
|
1086
1086
|
/**
|
|
1087
|
-
* @public
|
|
1088
1087
|
* <p>The sync blocker type.</p>
|
|
1088
|
+
* @public
|
|
1089
1089
|
*/
|
|
1090
1090
|
Type: BlockerType | undefined;
|
|
1091
1091
|
/**
|
|
1092
|
-
* @public
|
|
1093
1092
|
* <p>The status for a specific sync blocker.</p>
|
|
1093
|
+
* @public
|
|
1094
1094
|
*/
|
|
1095
1095
|
Status: BlockerStatus | undefined;
|
|
1096
1096
|
/**
|
|
1097
|
-
* @public
|
|
1098
1097
|
* <p>The provided reason for a specific sync blocker.</p>
|
|
1098
|
+
* @public
|
|
1099
1099
|
*/
|
|
1100
1100
|
CreatedReason: string | undefined;
|
|
1101
1101
|
/**
|
|
1102
|
-
* @public
|
|
1103
1102
|
* <p>The creation time for a specific sync blocker.</p>
|
|
1103
|
+
* @public
|
|
1104
1104
|
*/
|
|
1105
1105
|
CreatedAt: Date | undefined;
|
|
1106
1106
|
/**
|
|
1107
|
-
* @public
|
|
1108
1107
|
* <p>The contexts for a specific sync blocker.</p>
|
|
1108
|
+
* @public
|
|
1109
1109
|
*/
|
|
1110
1110
|
Contexts?: SyncBlockerContext[];
|
|
1111
1111
|
/**
|
|
1112
|
-
* @public
|
|
1113
1112
|
* <p>The resolved reason for a specific sync blocker.</p>
|
|
1113
|
+
* @public
|
|
1114
1114
|
*/
|
|
1115
1115
|
ResolvedReason?: string;
|
|
1116
1116
|
/**
|
|
1117
|
-
* @public
|
|
1118
1117
|
* <p>The time that a specific sync blocker was resolved.</p>
|
|
1118
|
+
* @public
|
|
1119
1119
|
*/
|
|
1120
1120
|
ResolvedAt?: Date;
|
|
1121
1121
|
}
|
|
1122
1122
|
/**
|
|
1123
|
-
* @public
|
|
1124
1123
|
* <p>A summary for sync blockers.</p>
|
|
1124
|
+
* @public
|
|
1125
1125
|
*/
|
|
1126
1126
|
export interface SyncBlockerSummary {
|
|
1127
1127
|
/**
|
|
1128
|
-
* @public
|
|
1129
1128
|
* <p>The resource name for sync blocker summary.</p>
|
|
1129
|
+
* @public
|
|
1130
1130
|
*/
|
|
1131
1131
|
ResourceName: string | undefined;
|
|
1132
1132
|
/**
|
|
1133
|
-
* @public
|
|
1134
1133
|
* <p>The parent resource name for a sync blocker summary.</p>
|
|
1134
|
+
* @public
|
|
1135
1135
|
*/
|
|
1136
1136
|
ParentResourceName?: string;
|
|
1137
1137
|
/**
|
|
1138
|
-
* @public
|
|
1139
1138
|
* <p>The latest events for a sync blocker summary.</p>
|
|
1139
|
+
* @public
|
|
1140
1140
|
*/
|
|
1141
1141
|
LatestBlockers?: SyncBlocker[];
|
|
1142
1142
|
}
|
|
@@ -1145,8 +1145,8 @@ export interface SyncBlockerSummary {
|
|
|
1145
1145
|
*/
|
|
1146
1146
|
export interface GetSyncBlockerSummaryOutput {
|
|
1147
1147
|
/**
|
|
1148
|
-
* @public
|
|
1149
1148
|
* <p>The list of sync blockers for a specified resource.</p>
|
|
1149
|
+
* @public
|
|
1150
1150
|
*/
|
|
1151
1151
|
SyncBlockerSummary: SyncBlockerSummary | undefined;
|
|
1152
1152
|
}
|
|
@@ -1155,14 +1155,14 @@ export interface GetSyncBlockerSummaryOutput {
|
|
|
1155
1155
|
*/
|
|
1156
1156
|
export interface GetSyncConfigurationInput {
|
|
1157
1157
|
/**
|
|
1158
|
-
* @public
|
|
1159
1158
|
* <p>The sync type for the sync configuration for which you want to retrieve information.</p>
|
|
1159
|
+
* @public
|
|
1160
1160
|
*/
|
|
1161
1161
|
SyncType: SyncConfigurationType | undefined;
|
|
1162
1162
|
/**
|
|
1163
|
-
* @public
|
|
1164
1163
|
* <p>The name of the Amazon Web Services resource for the sync configuration for which you
|
|
1165
1164
|
* want to retrieve information.</p>
|
|
1165
|
+
* @public
|
|
1166
1166
|
*/
|
|
1167
1167
|
ResourceName: string | undefined;
|
|
1168
1168
|
}
|
|
@@ -1171,8 +1171,8 @@ export interface GetSyncConfigurationInput {
|
|
|
1171
1171
|
*/
|
|
1172
1172
|
export interface GetSyncConfigurationOutput {
|
|
1173
1173
|
/**
|
|
1174
|
-
* @public
|
|
1175
1174
|
* <p>The details about the sync configuration for which you want to retrieve information.</p>
|
|
1175
|
+
* @public
|
|
1176
1176
|
*/
|
|
1177
1177
|
SyncConfiguration: SyncConfiguration | undefined;
|
|
1178
1178
|
}
|
|
@@ -1181,26 +1181,26 @@ export interface GetSyncConfigurationOutput {
|
|
|
1181
1181
|
*/
|
|
1182
1182
|
export interface ListConnectionsInput {
|
|
1183
1183
|
/**
|
|
1184
|
-
* @public
|
|
1185
1184
|
* <p>Filters the list of connections to those associated with a specified provider, such as
|
|
1186
1185
|
* Bitbucket.</p>
|
|
1186
|
+
* @public
|
|
1187
1187
|
*/
|
|
1188
1188
|
ProviderTypeFilter?: ProviderType;
|
|
1189
1189
|
/**
|
|
1190
|
-
* @public
|
|
1191
1190
|
* <p>Filters the list of connections to those associated with a specified host.</p>
|
|
1191
|
+
* @public
|
|
1192
1192
|
*/
|
|
1193
1193
|
HostArnFilter?: string;
|
|
1194
1194
|
/**
|
|
1195
|
-
* @public
|
|
1196
1195
|
* <p>The maximum number of results to return in a single call. To retrieve the remaining
|
|
1197
1196
|
* results, make another call with the returned <code>nextToken</code> value.</p>
|
|
1197
|
+
* @public
|
|
1198
1198
|
*/
|
|
1199
1199
|
MaxResults?: number;
|
|
1200
1200
|
/**
|
|
1201
|
-
* @public
|
|
1202
1201
|
* <p>The token that was returned from the previous <code>ListConnections</code> call, which
|
|
1203
1202
|
* can be used to return the next set of connections in the list.</p>
|
|
1203
|
+
* @public
|
|
1204
1204
|
*/
|
|
1205
1205
|
NextToken?: string;
|
|
1206
1206
|
}
|
|
@@ -1209,16 +1209,16 @@ export interface ListConnectionsInput {
|
|
|
1209
1209
|
*/
|
|
1210
1210
|
export interface ListConnectionsOutput {
|
|
1211
1211
|
/**
|
|
1212
|
-
* @public
|
|
1213
1212
|
* <p>A list of connections and the details for each connection, such as status, owner, and
|
|
1214
1213
|
* provider type.</p>
|
|
1214
|
+
* @public
|
|
1215
1215
|
*/
|
|
1216
1216
|
Connections?: Connection[];
|
|
1217
1217
|
/**
|
|
1218
|
-
* @public
|
|
1219
1218
|
* <p>A token that can be used in the next <code>ListConnections</code> call. To view all
|
|
1220
1219
|
* items in the list, continue to call this operation with each subsequent token until no more
|
|
1221
1220
|
* <code>nextToken</code> values are returned.</p>
|
|
1221
|
+
* @public
|
|
1222
1222
|
*/
|
|
1223
1223
|
NextToken?: string;
|
|
1224
1224
|
}
|
|
@@ -1227,20 +1227,19 @@ export interface ListConnectionsOutput {
|
|
|
1227
1227
|
*/
|
|
1228
1228
|
export interface ListHostsInput {
|
|
1229
1229
|
/**
|
|
1230
|
-
* @public
|
|
1231
1230
|
* <p>The maximum number of results to return in a single call. To retrieve the remaining
|
|
1232
1231
|
* results, make another call with the returned <code>nextToken</code> value.</p>
|
|
1232
|
+
* @public
|
|
1233
1233
|
*/
|
|
1234
1234
|
MaxResults?: number;
|
|
1235
1235
|
/**
|
|
1236
|
-
* @public
|
|
1237
1236
|
* <p>The token that was returned from the previous <code>ListHosts</code> call, which can be
|
|
1238
1237
|
* used to return the next set of hosts in the list.</p>
|
|
1238
|
+
* @public
|
|
1239
1239
|
*/
|
|
1240
1240
|
NextToken?: string;
|
|
1241
1241
|
}
|
|
1242
1242
|
/**
|
|
1243
|
-
* @public
|
|
1244
1243
|
* <p>A resource that represents the infrastructure where a third-party provider is installed.
|
|
1245
1244
|
* The host is used when you create connections to an installed third-party provider type, such
|
|
1246
1245
|
* as GitHub Enterprise Server. You create one host for all connections to that provider.</p>
|
|
@@ -1248,43 +1247,44 @@ export interface ListHostsInput {
|
|
|
1248
1247
|
* <p>A host created through the CLI or the SDK is in `PENDING` status by
|
|
1249
1248
|
* default. You can make its status `AVAILABLE` by setting up the host in the console.</p>
|
|
1250
1249
|
* </note>
|
|
1250
|
+
* @public
|
|
1251
1251
|
*/
|
|
1252
1252
|
export interface Host {
|
|
1253
1253
|
/**
|
|
1254
|
-
* @public
|
|
1255
1254
|
* <p>The name of the host.</p>
|
|
1255
|
+
* @public
|
|
1256
1256
|
*/
|
|
1257
1257
|
Name?: string;
|
|
1258
1258
|
/**
|
|
1259
|
-
* @public
|
|
1260
1259
|
* <p>The Amazon Resource Name (ARN) of the host.</p>
|
|
1260
|
+
* @public
|
|
1261
1261
|
*/
|
|
1262
1262
|
HostArn?: string;
|
|
1263
1263
|
/**
|
|
1264
|
-
* @public
|
|
1265
1264
|
* <p>The name of the installed provider to be associated with your connection. The host
|
|
1266
1265
|
* resource represents the infrastructure where your provider type is installed. The valid
|
|
1267
1266
|
* provider type is GitHub Enterprise Server.</p>
|
|
1267
|
+
* @public
|
|
1268
1268
|
*/
|
|
1269
1269
|
ProviderType?: ProviderType;
|
|
1270
1270
|
/**
|
|
1271
|
-
* @public
|
|
1272
1271
|
* <p>The endpoint of the infrastructure where your provider type is installed.</p>
|
|
1272
|
+
* @public
|
|
1273
1273
|
*/
|
|
1274
1274
|
ProviderEndpoint?: string;
|
|
1275
1275
|
/**
|
|
1276
|
-
* @public
|
|
1277
1276
|
* <p>The VPC configuration provisioned for the host.</p>
|
|
1277
|
+
* @public
|
|
1278
1278
|
*/
|
|
1279
1279
|
VpcConfiguration?: VpcConfiguration;
|
|
1280
1280
|
/**
|
|
1281
|
-
* @public
|
|
1282
1281
|
* <p>The status of the host, such as PENDING, AVAILABLE, VPC_CONFIG_DELETING, VPC_CONFIG_INITIALIZING, and VPC_CONFIG_FAILED_INITIALIZATION.</p>
|
|
1282
|
+
* @public
|
|
1283
1283
|
*/
|
|
1284
1284
|
Status?: string;
|
|
1285
1285
|
/**
|
|
1286
|
-
* @public
|
|
1287
1286
|
* <p>The status description for the host.</p>
|
|
1287
|
+
* @public
|
|
1288
1288
|
*/
|
|
1289
1289
|
StatusMessage?: string;
|
|
1290
1290
|
}
|
|
@@ -1293,16 +1293,16 @@ export interface Host {
|
|
|
1293
1293
|
*/
|
|
1294
1294
|
export interface ListHostsOutput {
|
|
1295
1295
|
/**
|
|
1296
|
-
* @public
|
|
1297
1296
|
* <p>A list of hosts and the details for each host, such as status, endpoint, and provider
|
|
1298
1297
|
* type.</p>
|
|
1298
|
+
* @public
|
|
1299
1299
|
*/
|
|
1300
1300
|
Hosts?: Host[];
|
|
1301
1301
|
/**
|
|
1302
|
-
* @public
|
|
1303
1302
|
* <p>A token that can be used in the next <code>ListHosts</code> call. To view all items in the
|
|
1304
1303
|
* list, continue to call this operation with each subsequent token until no more
|
|
1305
1304
|
* <code>nextToken</code> values are returned.</p>
|
|
1305
|
+
* @public
|
|
1306
1306
|
*/
|
|
1307
1307
|
NextToken?: string;
|
|
1308
1308
|
}
|
|
@@ -1311,15 +1311,15 @@ export interface ListHostsOutput {
|
|
|
1311
1311
|
*/
|
|
1312
1312
|
export interface ListRepositoryLinksInput {
|
|
1313
1313
|
/**
|
|
1314
|
-
* @public
|
|
1315
1314
|
* <p>
|
|
1316
1315
|
* A non-zero, non-negative integer used to limit the number of returned results.</p>
|
|
1316
|
+
* @public
|
|
1317
1317
|
*/
|
|
1318
1318
|
MaxResults?: number;
|
|
1319
1319
|
/**
|
|
1320
|
-
* @public
|
|
1321
1320
|
* <p>
|
|
1322
1321
|
* An enumeration token that, when provided in a request, returns the next batch of the results.</p>
|
|
1322
|
+
* @public
|
|
1323
1323
|
*/
|
|
1324
1324
|
NextToken?: string;
|
|
1325
1325
|
}
|
|
@@ -1328,13 +1328,13 @@ export interface ListRepositoryLinksInput {
|
|
|
1328
1328
|
*/
|
|
1329
1329
|
export interface ListRepositoryLinksOutput {
|
|
1330
1330
|
/**
|
|
1331
|
-
* @public
|
|
1332
1331
|
* <p>Lists the repository links called by the list repository links operation.</p>
|
|
1332
|
+
* @public
|
|
1333
1333
|
*/
|
|
1334
1334
|
RepositoryLinks: RepositoryLinkInfo[] | undefined;
|
|
1335
1335
|
/**
|
|
1336
|
-
* @public
|
|
1337
1336
|
* <p>An enumeration token that allows the operation to batch the results of the operation. </p>
|
|
1337
|
+
* @public
|
|
1338
1338
|
*/
|
|
1339
1339
|
NextToken?: string;
|
|
1340
1340
|
}
|
|
@@ -1343,40 +1343,40 @@ export interface ListRepositoryLinksOutput {
|
|
|
1343
1343
|
*/
|
|
1344
1344
|
export interface ListRepositorySyncDefinitionsInput {
|
|
1345
1345
|
/**
|
|
1346
|
-
* @public
|
|
1347
1346
|
* <p>The ID of the repository link for the sync definition for which you want to retrieve information.</p>
|
|
1347
|
+
* @public
|
|
1348
1348
|
*/
|
|
1349
1349
|
RepositoryLinkId: string | undefined;
|
|
1350
1350
|
/**
|
|
1351
|
-
* @public
|
|
1352
1351
|
* <p>The sync type of the repository link for the the sync definition for which you want to retrieve information.</p>
|
|
1352
|
+
* @public
|
|
1353
1353
|
*/
|
|
1354
1354
|
SyncType: SyncConfigurationType | undefined;
|
|
1355
1355
|
}
|
|
1356
1356
|
/**
|
|
1357
|
-
* @public
|
|
1358
1357
|
* <p>The definition for a repository with a sync configuration.</p>
|
|
1358
|
+
* @public
|
|
1359
1359
|
*/
|
|
1360
1360
|
export interface RepositorySyncDefinition {
|
|
1361
1361
|
/**
|
|
1362
|
-
* @public
|
|
1363
1362
|
* <p>The branch specified for a repository sync definition.</p>
|
|
1363
|
+
* @public
|
|
1364
1364
|
*/
|
|
1365
1365
|
Branch: string | undefined;
|
|
1366
1366
|
/**
|
|
1367
|
-
* @public
|
|
1368
1367
|
* <p>The configuration file for a repository sync definition. This value comes from creating
|
|
1369
1368
|
* or updating the <code>config-file</code> field of a <code>sync-configuration</code>.</p>
|
|
1369
|
+
* @public
|
|
1370
1370
|
*/
|
|
1371
1371
|
Directory: string | undefined;
|
|
1372
1372
|
/**
|
|
1373
|
-
* @public
|
|
1374
1373
|
* <p>The parent resource specified for a repository sync definition.</p>
|
|
1374
|
+
* @public
|
|
1375
1375
|
*/
|
|
1376
1376
|
Parent: string | undefined;
|
|
1377
1377
|
/**
|
|
1378
|
-
* @public
|
|
1379
1378
|
* <p>The target resource specified for a repository sync definition. In some cases, such as CFN_STACK_SYNC, the parent and target resource are the same.</p>
|
|
1379
|
+
* @public
|
|
1380
1380
|
*/
|
|
1381
1381
|
Target: string | undefined;
|
|
1382
1382
|
}
|
|
@@ -1385,16 +1385,16 @@ export interface RepositorySyncDefinition {
|
|
|
1385
1385
|
*/
|
|
1386
1386
|
export interface ListRepositorySyncDefinitionsOutput {
|
|
1387
1387
|
/**
|
|
1388
|
-
* @public
|
|
1389
1388
|
* <p>The list of repository sync definitions returned by the request. A
|
|
1390
1389
|
* <code>RepositorySyncDefinition</code> is a mapping from a repository branch to all the
|
|
1391
1390
|
* Amazon Web Services resources that are being synced from that branch.</p>
|
|
1391
|
+
* @public
|
|
1392
1392
|
*/
|
|
1393
1393
|
RepositorySyncDefinitions: RepositorySyncDefinition[] | undefined;
|
|
1394
1394
|
/**
|
|
1395
|
-
* @public
|
|
1396
1395
|
* <p>An enumeration token that, when provided in a request, returns the next batch of the
|
|
1397
1396
|
* results.</p>
|
|
1397
|
+
* @public
|
|
1398
1398
|
*/
|
|
1399
1399
|
NextToken?: string;
|
|
1400
1400
|
}
|
|
@@ -1403,23 +1403,23 @@ export interface ListRepositorySyncDefinitionsOutput {
|
|
|
1403
1403
|
*/
|
|
1404
1404
|
export interface ListSyncConfigurationsInput {
|
|
1405
1405
|
/**
|
|
1406
|
-
* @public
|
|
1407
1406
|
* <p>A non-zero, non-negative integer used to limit the number of returned results.</p>
|
|
1407
|
+
* @public
|
|
1408
1408
|
*/
|
|
1409
1409
|
MaxResults?: number;
|
|
1410
1410
|
/**
|
|
1411
|
-
* @public
|
|
1412
1411
|
* <p>An enumeration token that allows the operation to batch the results of the operation.</p>
|
|
1412
|
+
* @public
|
|
1413
1413
|
*/
|
|
1414
1414
|
NextToken?: string;
|
|
1415
1415
|
/**
|
|
1416
|
-
* @public
|
|
1417
1416
|
* <p>The ID of the repository link for the requested list of sync configurations.</p>
|
|
1417
|
+
* @public
|
|
1418
1418
|
*/
|
|
1419
1419
|
RepositoryLinkId: string | undefined;
|
|
1420
1420
|
/**
|
|
1421
|
-
* @public
|
|
1422
1421
|
* <p>The sync type for the requested list of sync configurations.</p>
|
|
1422
|
+
* @public
|
|
1423
1423
|
*/
|
|
1424
1424
|
SyncType: SyncConfigurationType | undefined;
|
|
1425
1425
|
}
|
|
@@ -1428,13 +1428,13 @@ export interface ListSyncConfigurationsInput {
|
|
|
1428
1428
|
*/
|
|
1429
1429
|
export interface ListSyncConfigurationsOutput {
|
|
1430
1430
|
/**
|
|
1431
|
-
* @public
|
|
1432
1431
|
* <p>The list of repository sync definitions returned by the request.</p>
|
|
1432
|
+
* @public
|
|
1433
1433
|
*/
|
|
1434
1434
|
SyncConfigurations: SyncConfiguration[] | undefined;
|
|
1435
1435
|
/**
|
|
1436
|
-
* @public
|
|
1437
1436
|
* <p>An enumeration token that allows the operation to batch the next results of the operation.</p>
|
|
1437
|
+
* @public
|
|
1438
1438
|
*/
|
|
1439
1439
|
NextToken?: string;
|
|
1440
1440
|
}
|
|
@@ -1443,8 +1443,8 @@ export interface ListSyncConfigurationsOutput {
|
|
|
1443
1443
|
*/
|
|
1444
1444
|
export interface ListTagsForResourceInput {
|
|
1445
1445
|
/**
|
|
1446
|
-
* @public
|
|
1447
1446
|
* <p>The Amazon Resource Name (ARN) of the resource for which you want to get information about tags, if any.</p>
|
|
1447
|
+
* @public
|
|
1448
1448
|
*/
|
|
1449
1449
|
ResourceArn: string | undefined;
|
|
1450
1450
|
}
|
|
@@ -1453,8 +1453,8 @@ export interface ListTagsForResourceInput {
|
|
|
1453
1453
|
*/
|
|
1454
1454
|
export interface ListTagsForResourceOutput {
|
|
1455
1455
|
/**
|
|
1456
|
-
* @public
|
|
1457
1456
|
* <p>A list of tag key and value pairs associated with the specified resource.</p>
|
|
1457
|
+
* @public
|
|
1458
1458
|
*/
|
|
1459
1459
|
Tags?: Tag[];
|
|
1460
1460
|
}
|
|
@@ -1463,13 +1463,13 @@ export interface ListTagsForResourceOutput {
|
|
|
1463
1463
|
*/
|
|
1464
1464
|
export interface TagResourceInput {
|
|
1465
1465
|
/**
|
|
1466
|
-
* @public
|
|
1467
1466
|
* <p>The Amazon Resource Name (ARN) of the resource to which you want to add or update tags.</p>
|
|
1467
|
+
* @public
|
|
1468
1468
|
*/
|
|
1469
1469
|
ResourceArn: string | undefined;
|
|
1470
1470
|
/**
|
|
1471
|
-
* @public
|
|
1472
1471
|
* <p>The tags you want to modify or add to the resource.</p>
|
|
1472
|
+
* @public
|
|
1473
1473
|
*/
|
|
1474
1474
|
Tags: Tag[] | undefined;
|
|
1475
1475
|
}
|
|
@@ -1483,13 +1483,13 @@ export interface TagResourceOutput {
|
|
|
1483
1483
|
*/
|
|
1484
1484
|
export interface UntagResourceInput {
|
|
1485
1485
|
/**
|
|
1486
|
-
* @public
|
|
1487
1486
|
* <p>The Amazon Resource Name (ARN) of the resource to remove tags from.</p>
|
|
1487
|
+
* @public
|
|
1488
1488
|
*/
|
|
1489
1489
|
ResourceArn: string | undefined;
|
|
1490
1490
|
/**
|
|
1491
|
-
* @public
|
|
1492
1491
|
* <p>The list of keys for the tags to be removed from the resource.</p>
|
|
1492
|
+
* @public
|
|
1493
1493
|
*/
|
|
1494
1494
|
TagKeys: string[] | undefined;
|
|
1495
1495
|
}
|
|
@@ -1499,8 +1499,8 @@ export interface UntagResourceInput {
|
|
|
1499
1499
|
export interface UntagResourceOutput {
|
|
1500
1500
|
}
|
|
1501
1501
|
/**
|
|
1502
|
-
* @public
|
|
1503
1502
|
* <p>Two conflicting operations have been made on the same resource.</p>
|
|
1503
|
+
* @public
|
|
1504
1504
|
*/
|
|
1505
1505
|
export declare class ConflictException extends __BaseException {
|
|
1506
1506
|
readonly name: "ConflictException";
|
|
@@ -1512,8 +1512,8 @@ export declare class ConflictException extends __BaseException {
|
|
|
1512
1512
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
1513
1513
|
}
|
|
1514
1514
|
/**
|
|
1515
|
-
* @public
|
|
1516
1515
|
* <p>The operation is not supported. Check the connection status and try again.</p>
|
|
1516
|
+
* @public
|
|
1517
1517
|
*/
|
|
1518
1518
|
export declare class UnsupportedOperationException extends __BaseException {
|
|
1519
1519
|
readonly name: "UnsupportedOperationException";
|
|
@@ -1529,19 +1529,19 @@ export declare class UnsupportedOperationException extends __BaseException {
|
|
|
1529
1529
|
*/
|
|
1530
1530
|
export interface UpdateHostInput {
|
|
1531
1531
|
/**
|
|
1532
|
-
* @public
|
|
1533
1532
|
* <p>The Amazon Resource Name (ARN) of the host to be updated.</p>
|
|
1533
|
+
* @public
|
|
1534
1534
|
*/
|
|
1535
1535
|
HostArn: string | undefined;
|
|
1536
1536
|
/**
|
|
1537
|
-
* @public
|
|
1538
1537
|
* <p>The URL or endpoint of the host to be updated.</p>
|
|
1538
|
+
* @public
|
|
1539
1539
|
*/
|
|
1540
1540
|
ProviderEndpoint?: string;
|
|
1541
1541
|
/**
|
|
1542
|
-
* @public
|
|
1543
1542
|
* <p>The VPC configuration of the host to be updated. A VPC must be configured and the
|
|
1544
1543
|
* infrastructure to be represented by the host must already be connected to the VPC.</p>
|
|
1544
|
+
* @public
|
|
1545
1545
|
*/
|
|
1546
1546
|
VpcConfiguration?: VpcConfiguration;
|
|
1547
1547
|
}
|
|
@@ -1551,8 +1551,8 @@ export interface UpdateHostInput {
|
|
|
1551
1551
|
export interface UpdateHostOutput {
|
|
1552
1552
|
}
|
|
1553
1553
|
/**
|
|
1554
|
-
* @public
|
|
1555
1554
|
* <p>The conditional check failed. Try again later.</p>
|
|
1555
|
+
* @public
|
|
1556
1556
|
*/
|
|
1557
1557
|
export declare class ConditionalCheckFailedException extends __BaseException {
|
|
1558
1558
|
readonly name: "ConditionalCheckFailedException";
|
|
@@ -1564,8 +1564,8 @@ export declare class ConditionalCheckFailedException extends __BaseException {
|
|
|
1564
1564
|
constructor(opts: __ExceptionOptionType<ConditionalCheckFailedException, __BaseException>);
|
|
1565
1565
|
}
|
|
1566
1566
|
/**
|
|
1567
|
-
* @public
|
|
1568
1567
|
* <p>The update is out of sync. Try syncing again.</p>
|
|
1568
|
+
* @public
|
|
1569
1569
|
*/
|
|
1570
1570
|
export declare class UpdateOutOfSyncException extends __BaseException {
|
|
1571
1571
|
readonly name: "UpdateOutOfSyncException";
|
|
@@ -1581,18 +1581,18 @@ export declare class UpdateOutOfSyncException extends __BaseException {
|
|
|
1581
1581
|
*/
|
|
1582
1582
|
export interface UpdateRepositoryLinkInput {
|
|
1583
1583
|
/**
|
|
1584
|
-
* @public
|
|
1585
1584
|
* <p>The Amazon Resource Name (ARN) of the connection for the repository link to be updated. The updated connection ARN must have the same providerType (such as GitHub) as the original connection ARN for the repo link.</p>
|
|
1585
|
+
* @public
|
|
1586
1586
|
*/
|
|
1587
1587
|
ConnectionArn?: string;
|
|
1588
1588
|
/**
|
|
1589
|
-
* @public
|
|
1590
1589
|
* <p>The Amazon Resource Name (ARN) of the encryption key for the repository link to be updated.</p>
|
|
1590
|
+
* @public
|
|
1591
1591
|
*/
|
|
1592
1592
|
EncryptionKeyArn?: string;
|
|
1593
1593
|
/**
|
|
1594
|
-
* @public
|
|
1595
1594
|
* <p>The ID of the repository link to be updated.</p>
|
|
1595
|
+
* @public
|
|
1596
1596
|
*/
|
|
1597
1597
|
RepositoryLinkId: string | undefined;
|
|
1598
1598
|
}
|
|
@@ -1601,14 +1601,14 @@ export interface UpdateRepositoryLinkInput {
|
|
|
1601
1601
|
*/
|
|
1602
1602
|
export interface UpdateRepositoryLinkOutput {
|
|
1603
1603
|
/**
|
|
1604
|
-
* @public
|
|
1605
1604
|
* <p>Information about the repository link to be updated.</p>
|
|
1605
|
+
* @public
|
|
1606
1606
|
*/
|
|
1607
1607
|
RepositoryLinkInfo: RepositoryLinkInfo | undefined;
|
|
1608
1608
|
}
|
|
1609
1609
|
/**
|
|
1610
|
-
* @public
|
|
1611
1610
|
* <p>Retrying the latest commit failed. Try again later.</p>
|
|
1611
|
+
* @public
|
|
1612
1612
|
*/
|
|
1613
1613
|
export declare class RetryLatestCommitFailedException extends __BaseException {
|
|
1614
1614
|
readonly name: "RetryLatestCommitFailedException";
|
|
@@ -1620,8 +1620,8 @@ export declare class RetryLatestCommitFailedException extends __BaseException {
|
|
|
1620
1620
|
constructor(opts: __ExceptionOptionType<RetryLatestCommitFailedException, __BaseException>);
|
|
1621
1621
|
}
|
|
1622
1622
|
/**
|
|
1623
|
-
* @public
|
|
1624
1623
|
* <p>Unable to continue. The sync blocker does not exist.</p>
|
|
1624
|
+
* @public
|
|
1625
1625
|
*/
|
|
1626
1626
|
export declare class SyncBlockerDoesNotExistException extends __BaseException {
|
|
1627
1627
|
readonly name: "SyncBlockerDoesNotExistException";
|
|
@@ -1637,23 +1637,23 @@ export declare class SyncBlockerDoesNotExistException extends __BaseException {
|
|
|
1637
1637
|
*/
|
|
1638
1638
|
export interface UpdateSyncBlockerInput {
|
|
1639
1639
|
/**
|
|
1640
|
-
* @public
|
|
1641
1640
|
* <p>The ID of the sync blocker to be updated.</p>
|
|
1641
|
+
* @public
|
|
1642
1642
|
*/
|
|
1643
1643
|
Id: string | undefined;
|
|
1644
1644
|
/**
|
|
1645
|
-
* @public
|
|
1646
1645
|
* <p>The sync type of the sync blocker to be updated.</p>
|
|
1646
|
+
* @public
|
|
1647
1647
|
*/
|
|
1648
1648
|
SyncType: SyncConfigurationType | undefined;
|
|
1649
1649
|
/**
|
|
1650
|
-
* @public
|
|
1651
1650
|
* <p>The name of the resource for the sync blocker to be updated.</p>
|
|
1651
|
+
* @public
|
|
1652
1652
|
*/
|
|
1653
1653
|
ResourceName: string | undefined;
|
|
1654
1654
|
/**
|
|
1655
|
-
* @public
|
|
1656
1655
|
* <p>The reason for resolving the sync blocker.</p>
|
|
1656
|
+
* @public
|
|
1657
1657
|
*/
|
|
1658
1658
|
ResolvedReason: string | undefined;
|
|
1659
1659
|
}
|
|
@@ -1662,18 +1662,18 @@ export interface UpdateSyncBlockerInput {
|
|
|
1662
1662
|
*/
|
|
1663
1663
|
export interface UpdateSyncBlockerOutput {
|
|
1664
1664
|
/**
|
|
1665
|
-
* @public
|
|
1666
1665
|
* <p>The resource name for the sync blocker.</p>
|
|
1666
|
+
* @public
|
|
1667
1667
|
*/
|
|
1668
1668
|
ResourceName: string | undefined;
|
|
1669
1669
|
/**
|
|
1670
|
-
* @public
|
|
1671
1670
|
* <p>The parent resource name for the sync blocker.</p>
|
|
1671
|
+
* @public
|
|
1672
1672
|
*/
|
|
1673
1673
|
ParentResourceName?: string;
|
|
1674
1674
|
/**
|
|
1675
|
-
* @public
|
|
1676
1675
|
* <p>Information about the sync blocker to be updated.</p>
|
|
1676
|
+
* @public
|
|
1677
1677
|
*/
|
|
1678
1678
|
SyncBlocker: SyncBlocker | undefined;
|
|
1679
1679
|
}
|
|
@@ -1682,44 +1682,44 @@ export interface UpdateSyncBlockerOutput {
|
|
|
1682
1682
|
*/
|
|
1683
1683
|
export interface UpdateSyncConfigurationInput {
|
|
1684
1684
|
/**
|
|
1685
|
-
* @public
|
|
1686
1685
|
* <p>The branch for the sync configuration to be updated.</p>
|
|
1686
|
+
* @public
|
|
1687
1687
|
*/
|
|
1688
1688
|
Branch?: string;
|
|
1689
1689
|
/**
|
|
1690
|
-
* @public
|
|
1691
1690
|
* <p>The configuration file for the sync configuration to be updated.</p>
|
|
1691
|
+
* @public
|
|
1692
1692
|
*/
|
|
1693
1693
|
ConfigFile?: string;
|
|
1694
1694
|
/**
|
|
1695
|
-
* @public
|
|
1696
1695
|
* <p>The ID of the repository link for the sync configuration to be updated.</p>
|
|
1696
|
+
* @public
|
|
1697
1697
|
*/
|
|
1698
1698
|
RepositoryLinkId?: string;
|
|
1699
1699
|
/**
|
|
1700
|
-
* @public
|
|
1701
1700
|
* <p>The name of the Amazon Web Services resource for the sync configuration to be
|
|
1702
1701
|
* updated.</p>
|
|
1702
|
+
* @public
|
|
1703
1703
|
*/
|
|
1704
1704
|
ResourceName: string | undefined;
|
|
1705
1705
|
/**
|
|
1706
|
-
* @public
|
|
1707
1706
|
* <p>The ARN of the IAM role for the sync configuration to be updated.</p>
|
|
1707
|
+
* @public
|
|
1708
1708
|
*/
|
|
1709
1709
|
RoleArn?: string;
|
|
1710
1710
|
/**
|
|
1711
|
-
* @public
|
|
1712
1711
|
* <p>The sync type for the sync configuration to be updated.</p>
|
|
1712
|
+
* @public
|
|
1713
1713
|
*/
|
|
1714
1714
|
SyncType: SyncConfigurationType | undefined;
|
|
1715
1715
|
/**
|
|
1716
|
-
* @public
|
|
1717
1716
|
* <p>Whether to enable or disable publishing of deployment status to source providers.</p>
|
|
1717
|
+
* @public
|
|
1718
1718
|
*/
|
|
1719
1719
|
PublishDeploymentStatus?: PublishDeploymentStatus;
|
|
1720
1720
|
/**
|
|
1721
|
-
* @public
|
|
1722
1721
|
* <p>When to trigger Git sync to begin the stack update.</p>
|
|
1722
|
+
* @public
|
|
1723
1723
|
*/
|
|
1724
1724
|
TriggerResourceUpdateOn?: TriggerResourceUpdateOn;
|
|
1725
1725
|
}
|
|
@@ -1728,8 +1728,8 @@ export interface UpdateSyncConfigurationInput {
|
|
|
1728
1728
|
*/
|
|
1729
1729
|
export interface UpdateSyncConfigurationOutput {
|
|
1730
1730
|
/**
|
|
1731
|
-
* @public
|
|
1732
1731
|
* <p>The information returned for the sync configuration to be updated.</p>
|
|
1732
|
+
* @public
|
|
1733
1733
|
*/
|
|
1734
1734
|
SyncConfiguration: SyncConfiguration | undefined;
|
|
1735
1735
|
}
|