@aws-sdk/client-codestar-connections 3.934.0 → 3.935.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/index.js +44 -43
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +43 -0
- package/dist-es/models/errors.js +239 -0
- package/dist-es/models/models_0.js +1 -282
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +115 -0
- package/dist-types/models/errors.d.ts +223 -0
- package/dist-types/models/models_0.d.ts +1 -338
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +58 -0
- package/dist-types/ts3.4/models/errors.d.ts +154 -0
- package/dist-types/ts3.4/models/models_0.d.ts +11 -212
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
package/dist-types/index.d.ts
CHANGED
|
@@ -89,5 +89,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
89
89
|
export type { CodeStarConnectionsExtensionConfiguration } from "./extensionConfiguration";
|
|
90
90
|
export * from "./commands";
|
|
91
91
|
export * from "./pagination";
|
|
92
|
-
export * from "./models";
|
|
92
|
+
export * from "./models/enums";
|
|
93
|
+
export * from "./models/errors";
|
|
94
|
+
export type * from "./models/models_0";
|
|
93
95
|
export { CodeStarConnectionsServiceException } from "./models/CodeStarConnectionsServiceException";
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const BlockerStatus: {
|
|
6
|
+
readonly ACTIVE: "ACTIVE";
|
|
7
|
+
readonly RESOLVED: "RESOLVED";
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
export type BlockerStatus = (typeof BlockerStatus)[keyof typeof BlockerStatus];
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
* @enum
|
|
16
|
+
*/
|
|
17
|
+
export declare const BlockerType: {
|
|
18
|
+
readonly AUTOMATED: "AUTOMATED";
|
|
19
|
+
};
|
|
20
|
+
/**
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
export type BlockerType = (typeof BlockerType)[keyof typeof BlockerType];
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* @enum
|
|
27
|
+
*/
|
|
28
|
+
export declare const ProviderType: {
|
|
29
|
+
readonly BITBUCKET: "Bitbucket";
|
|
30
|
+
readonly GITHUB: "GitHub";
|
|
31
|
+
readonly GITHUB_ENTERPRISE_SERVER: "GitHubEnterpriseServer";
|
|
32
|
+
readonly GITLAB: "GitLab";
|
|
33
|
+
readonly GITLAB_SELF_MANAGED: "GitLabSelfManaged";
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
export type ProviderType = (typeof ProviderType)[keyof typeof ProviderType];
|
|
39
|
+
/**
|
|
40
|
+
* @public
|
|
41
|
+
* @enum
|
|
42
|
+
*/
|
|
43
|
+
export declare const PublishDeploymentStatus: {
|
|
44
|
+
readonly DISABLED: "DISABLED";
|
|
45
|
+
readonly ENABLED: "ENABLED";
|
|
46
|
+
};
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
export type PublishDeploymentStatus = (typeof PublishDeploymentStatus)[keyof typeof PublishDeploymentStatus];
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
* @enum
|
|
54
|
+
*/
|
|
55
|
+
export declare const SyncConfigurationType: {
|
|
56
|
+
readonly CFN_STACK_SYNC: "CFN_STACK_SYNC";
|
|
57
|
+
};
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
export type SyncConfigurationType = (typeof SyncConfigurationType)[keyof typeof SyncConfigurationType];
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
* @enum
|
|
65
|
+
*/
|
|
66
|
+
export declare const TriggerResourceUpdateOn: {
|
|
67
|
+
readonly ANY_CHANGE: "ANY_CHANGE";
|
|
68
|
+
readonly FILE_CHANGE: "FILE_CHANGE";
|
|
69
|
+
};
|
|
70
|
+
/**
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
73
|
+
export type TriggerResourceUpdateOn = (typeof TriggerResourceUpdateOn)[keyof typeof TriggerResourceUpdateOn];
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
* @enum
|
|
77
|
+
*/
|
|
78
|
+
export declare const ConnectionStatus: {
|
|
79
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
80
|
+
readonly ERROR: "ERROR";
|
|
81
|
+
readonly PENDING: "PENDING";
|
|
82
|
+
};
|
|
83
|
+
/**
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
export type ConnectionStatus = (typeof ConnectionStatus)[keyof typeof ConnectionStatus];
|
|
87
|
+
/**
|
|
88
|
+
* @public
|
|
89
|
+
* @enum
|
|
90
|
+
*/
|
|
91
|
+
export declare const RepositorySyncStatus: {
|
|
92
|
+
readonly FAILED: "FAILED";
|
|
93
|
+
readonly INITIATED: "INITIATED";
|
|
94
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
95
|
+
readonly QUEUED: "QUEUED";
|
|
96
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
97
|
+
};
|
|
98
|
+
/**
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
101
|
+
export type RepositorySyncStatus = (typeof RepositorySyncStatus)[keyof typeof RepositorySyncStatus];
|
|
102
|
+
/**
|
|
103
|
+
* @public
|
|
104
|
+
* @enum
|
|
105
|
+
*/
|
|
106
|
+
export declare const ResourceSyncStatus: {
|
|
107
|
+
readonly FAILED: "FAILED";
|
|
108
|
+
readonly INITIATED: "INITIATED";
|
|
109
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
110
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
111
|
+
};
|
|
112
|
+
/**
|
|
113
|
+
* @public
|
|
114
|
+
*/
|
|
115
|
+
export type ResourceSyncStatus = (typeof ResourceSyncStatus)[keyof typeof ResourceSyncStatus];
|
|
@@ -0,0 +1,223 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { CodeStarConnectionsServiceException as __BaseException } from "./CodeStarConnectionsServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
+
readonly name: "AccessDeniedException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
Message?: string | undefined;
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* <p>Exceeded the maximum limit for connections.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export declare class LimitExceededException extends __BaseException {
|
|
21
|
+
readonly name: "LimitExceededException";
|
|
22
|
+
readonly $fault: "client";
|
|
23
|
+
Message?: string | undefined;
|
|
24
|
+
/**
|
|
25
|
+
* @internal
|
|
26
|
+
*/
|
|
27
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* <p>Resource not found. Verify the connection resource ARN and try again.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
34
|
+
readonly name: "ResourceNotFoundException";
|
|
35
|
+
readonly $fault: "client";
|
|
36
|
+
Message?: string | undefined;
|
|
37
|
+
/**
|
|
38
|
+
* @internal
|
|
39
|
+
*/
|
|
40
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* <p>Resource not found. Verify the ARN for the host resource and try again.</p>
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
export declare class ResourceUnavailableException extends __BaseException {
|
|
47
|
+
readonly name: "ResourceUnavailableException";
|
|
48
|
+
readonly $fault: "client";
|
|
49
|
+
Message?: string | undefined;
|
|
50
|
+
/**
|
|
51
|
+
* @internal
|
|
52
|
+
*/
|
|
53
|
+
constructor(opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>);
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* <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>
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
export declare class ConcurrentModificationException extends __BaseException {
|
|
60
|
+
readonly name: "ConcurrentModificationException";
|
|
61
|
+
readonly $fault: "client";
|
|
62
|
+
Message?: string | undefined;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
66
|
+
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* <p>Received an internal server exception. Try again later.</p>
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
export declare class InternalServerException extends __BaseException {
|
|
73
|
+
readonly name: "InternalServerException";
|
|
74
|
+
readonly $fault: "server";
|
|
75
|
+
Message?: string | undefined;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
79
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* <p>The input is not valid. Verify that the action is typed correctly.</p>
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
export declare class InvalidInputException extends __BaseException {
|
|
86
|
+
readonly name: "InvalidInputException";
|
|
87
|
+
readonly $fault: "client";
|
|
88
|
+
Message?: string | undefined;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
92
|
+
constructor(opts: __ExceptionOptionType<InvalidInputException, __BaseException>);
|
|
93
|
+
}
|
|
94
|
+
/**
|
|
95
|
+
* <p>Unable to create resource. Resource already exists.</p>
|
|
96
|
+
* @public
|
|
97
|
+
*/
|
|
98
|
+
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
99
|
+
readonly name: "ResourceAlreadyExistsException";
|
|
100
|
+
readonly $fault: "client";
|
|
101
|
+
Message?: string | undefined;
|
|
102
|
+
/**
|
|
103
|
+
* @internal
|
|
104
|
+
*/
|
|
105
|
+
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* <p>The request was denied due to request throttling.</p>
|
|
109
|
+
* @public
|
|
110
|
+
*/
|
|
111
|
+
export declare class ThrottlingException extends __BaseException {
|
|
112
|
+
readonly name: "ThrottlingException";
|
|
113
|
+
readonly $fault: "client";
|
|
114
|
+
Message?: string | undefined;
|
|
115
|
+
/**
|
|
116
|
+
* @internal
|
|
117
|
+
*/
|
|
118
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
119
|
+
}
|
|
120
|
+
/**
|
|
121
|
+
* <p>Unable to continue. The sync blocker still exists.</p>
|
|
122
|
+
* @public
|
|
123
|
+
*/
|
|
124
|
+
export declare class SyncConfigurationStillExistsException extends __BaseException {
|
|
125
|
+
readonly name: "SyncConfigurationStillExistsException";
|
|
126
|
+
readonly $fault: "client";
|
|
127
|
+
Message?: string | undefined;
|
|
128
|
+
/**
|
|
129
|
+
* @internal
|
|
130
|
+
*/
|
|
131
|
+
constructor(opts: __ExceptionOptionType<SyncConfigurationStillExistsException, __BaseException>);
|
|
132
|
+
}
|
|
133
|
+
/**
|
|
134
|
+
* <p>The specified provider type is not supported for connections.</p>
|
|
135
|
+
* @public
|
|
136
|
+
*/
|
|
137
|
+
export declare class UnsupportedProviderTypeException extends __BaseException {
|
|
138
|
+
readonly name: "UnsupportedProviderTypeException";
|
|
139
|
+
readonly $fault: "client";
|
|
140
|
+
Message?: string | undefined;
|
|
141
|
+
/**
|
|
142
|
+
* @internal
|
|
143
|
+
*/
|
|
144
|
+
constructor(opts: __ExceptionOptionType<UnsupportedProviderTypeException, __BaseException>);
|
|
145
|
+
}
|
|
146
|
+
/**
|
|
147
|
+
* <p>Two conflicting operations have been made on the same resource.</p>
|
|
148
|
+
* @public
|
|
149
|
+
*/
|
|
150
|
+
export declare class ConflictException extends __BaseException {
|
|
151
|
+
readonly name: "ConflictException";
|
|
152
|
+
readonly $fault: "client";
|
|
153
|
+
Message?: string | undefined;
|
|
154
|
+
/**
|
|
155
|
+
* @internal
|
|
156
|
+
*/
|
|
157
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
158
|
+
}
|
|
159
|
+
/**
|
|
160
|
+
* <p>The operation is not supported. Check the connection status and try again.</p>
|
|
161
|
+
* @public
|
|
162
|
+
*/
|
|
163
|
+
export declare class UnsupportedOperationException extends __BaseException {
|
|
164
|
+
readonly name: "UnsupportedOperationException";
|
|
165
|
+
readonly $fault: "client";
|
|
166
|
+
Message?: string | undefined;
|
|
167
|
+
/**
|
|
168
|
+
* @internal
|
|
169
|
+
*/
|
|
170
|
+
constructor(opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>);
|
|
171
|
+
}
|
|
172
|
+
/**
|
|
173
|
+
* <p>The conditional check failed. Try again later.</p>
|
|
174
|
+
* @public
|
|
175
|
+
*/
|
|
176
|
+
export declare class ConditionalCheckFailedException extends __BaseException {
|
|
177
|
+
readonly name: "ConditionalCheckFailedException";
|
|
178
|
+
readonly $fault: "client";
|
|
179
|
+
Message?: string | undefined;
|
|
180
|
+
/**
|
|
181
|
+
* @internal
|
|
182
|
+
*/
|
|
183
|
+
constructor(opts: __ExceptionOptionType<ConditionalCheckFailedException, __BaseException>);
|
|
184
|
+
}
|
|
185
|
+
/**
|
|
186
|
+
* <p>The update is out of sync. Try syncing again.</p>
|
|
187
|
+
* @public
|
|
188
|
+
*/
|
|
189
|
+
export declare class UpdateOutOfSyncException extends __BaseException {
|
|
190
|
+
readonly name: "UpdateOutOfSyncException";
|
|
191
|
+
readonly $fault: "client";
|
|
192
|
+
Message?: string | undefined;
|
|
193
|
+
/**
|
|
194
|
+
* @internal
|
|
195
|
+
*/
|
|
196
|
+
constructor(opts: __ExceptionOptionType<UpdateOutOfSyncException, __BaseException>);
|
|
197
|
+
}
|
|
198
|
+
/**
|
|
199
|
+
* <p>Retrying the latest commit failed. Try again later.</p>
|
|
200
|
+
* @public
|
|
201
|
+
*/
|
|
202
|
+
export declare class RetryLatestCommitFailedException extends __BaseException {
|
|
203
|
+
readonly name: "RetryLatestCommitFailedException";
|
|
204
|
+
readonly $fault: "server";
|
|
205
|
+
Message?: string | undefined;
|
|
206
|
+
/**
|
|
207
|
+
* @internal
|
|
208
|
+
*/
|
|
209
|
+
constructor(opts: __ExceptionOptionType<RetryLatestCommitFailedException, __BaseException>);
|
|
210
|
+
}
|
|
211
|
+
/**
|
|
212
|
+
* <p>Unable to continue. The sync blocker does not exist.</p>
|
|
213
|
+
* @public
|
|
214
|
+
*/
|
|
215
|
+
export declare class SyncBlockerDoesNotExistException extends __BaseException {
|
|
216
|
+
readonly name: "SyncBlockerDoesNotExistException";
|
|
217
|
+
readonly $fault: "client";
|
|
218
|
+
Message?: string | undefined;
|
|
219
|
+
/**
|
|
220
|
+
* @internal
|
|
221
|
+
*/
|
|
222
|
+
constructor(opts: __ExceptionOptionType<SyncBlockerDoesNotExistException, __BaseException>);
|
|
223
|
+
}
|