@aws-sdk/client-codeconnections 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.
@@ -1,31 +1,15 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { CodeConnectionsServiceException as __BaseException } from "./CodeConnectionsServiceException";
3
- export declare class AccessDeniedException extends __BaseException {
4
- readonly name: "AccessDeniedException";
5
- readonly $fault: "client";
6
- Message?: string | undefined;
7
- constructor(
8
- opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
- );
10
- }
11
- export declare const BlockerStatus: {
12
- readonly ACTIVE: "ACTIVE";
13
- readonly RESOLVED: "RESOLVED";
14
- };
15
- export type BlockerStatus = (typeof BlockerStatus)[keyof typeof BlockerStatus];
16
- export declare const BlockerType: {
17
- readonly AUTOMATED: "AUTOMATED";
18
- };
19
- export type BlockerType = (typeof BlockerType)[keyof typeof BlockerType];
20
- export declare const ProviderType: {
21
- readonly AZURE_DEV_OPS: "AzureDevOps";
22
- readonly BITBUCKET: "Bitbucket";
23
- readonly GITHUB: "GitHub";
24
- readonly GITHUB_ENTERPRISE_SERVER: "GitHubEnterpriseServer";
25
- readonly GITLAB: "GitLab";
26
- readonly GITLAB_SELF_MANAGED: "GitLabSelfManaged";
27
- };
28
- export type ProviderType = (typeof ProviderType)[keyof typeof ProviderType];
1
+ import {
2
+ BlockerStatus,
3
+ BlockerType,
4
+ ConnectionStatus,
5
+ ProviderType,
6
+ PublishDeploymentStatus,
7
+ PullRequestComment,
8
+ RepositorySyncStatus,
9
+ ResourceSyncStatus,
10
+ SyncConfigurationType,
11
+ TriggerResourceUpdateOn,
12
+ } from "./enums";
29
13
  export interface Tag {
30
14
  Key: string | undefined;
31
15
  Value: string | undefined;
@@ -40,30 +24,6 @@ export interface CreateConnectionOutput {
40
24
  ConnectionArn: string | undefined;
41
25
  Tags?: Tag[] | undefined;
42
26
  }
43
- export declare class LimitExceededException extends __BaseException {
44
- readonly name: "LimitExceededException";
45
- readonly $fault: "client";
46
- Message?: string | undefined;
47
- constructor(
48
- opts: __ExceptionOptionType<LimitExceededException, __BaseException>
49
- );
50
- }
51
- export declare class ResourceNotFoundException extends __BaseException {
52
- readonly name: "ResourceNotFoundException";
53
- readonly $fault: "client";
54
- Message?: string | undefined;
55
- constructor(
56
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
57
- );
58
- }
59
- export declare class ResourceUnavailableException extends __BaseException {
60
- readonly name: "ResourceUnavailableException";
61
- readonly $fault: "client";
62
- Message?: string | undefined;
63
- constructor(
64
- opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>
65
- );
66
- }
67
27
  export interface VpcConfiguration {
68
28
  VpcId: string | undefined;
69
29
  SubnetIds: string[] | undefined;
@@ -81,17 +41,6 @@ export interface CreateHostOutput {
81
41
  HostArn?: string | undefined;
82
42
  Tags?: Tag[] | undefined;
83
43
  }
84
- export declare class ConcurrentModificationException extends __BaseException {
85
- readonly name: "ConcurrentModificationException";
86
- readonly $fault: "client";
87
- Message?: string | undefined;
88
- constructor(
89
- opts: __ExceptionOptionType<
90
- ConcurrentModificationException,
91
- __BaseException
92
- >
93
- );
94
- }
95
44
  export interface CreateRepositoryLinkInput {
96
45
  ConnectionArn: string | undefined;
97
46
  OwnerId: string | undefined;
@@ -111,61 +60,6 @@ export interface RepositoryLinkInfo {
111
60
  export interface CreateRepositoryLinkOutput {
112
61
  RepositoryLinkInfo: RepositoryLinkInfo | undefined;
113
62
  }
114
- export declare class InternalServerException extends __BaseException {
115
- readonly name: "InternalServerException";
116
- readonly $fault: "server";
117
- Message?: string | undefined;
118
- constructor(
119
- opts: __ExceptionOptionType<InternalServerException, __BaseException>
120
- );
121
- }
122
- export declare class InvalidInputException extends __BaseException {
123
- readonly name: "InvalidInputException";
124
- readonly $fault: "client";
125
- Message?: string | undefined;
126
- constructor(
127
- opts: __ExceptionOptionType<InvalidInputException, __BaseException>
128
- );
129
- }
130
- export declare class ResourceAlreadyExistsException extends __BaseException {
131
- readonly name: "ResourceAlreadyExistsException";
132
- readonly $fault: "client";
133
- Message?: string | undefined;
134
- constructor(
135
- opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
136
- );
137
- }
138
- export declare class ThrottlingException extends __BaseException {
139
- readonly name: "ThrottlingException";
140
- readonly $fault: "client";
141
- Message?: string | undefined;
142
- constructor(
143
- opts: __ExceptionOptionType<ThrottlingException, __BaseException>
144
- );
145
- }
146
- export declare const PublishDeploymentStatus: {
147
- readonly DISABLED: "DISABLED";
148
- readonly ENABLED: "ENABLED";
149
- };
150
- export type PublishDeploymentStatus =
151
- (typeof PublishDeploymentStatus)[keyof typeof PublishDeploymentStatus];
152
- export declare const PullRequestComment: {
153
- readonly DISABLED: "DISABLED";
154
- readonly ENABLED: "ENABLED";
155
- };
156
- export type PullRequestComment =
157
- (typeof PullRequestComment)[keyof typeof PullRequestComment];
158
- export declare const SyncConfigurationType: {
159
- readonly CFN_STACK_SYNC: "CFN_STACK_SYNC";
160
- };
161
- export type SyncConfigurationType =
162
- (typeof SyncConfigurationType)[keyof typeof SyncConfigurationType];
163
- export declare const TriggerResourceUpdateOn: {
164
- readonly ANY_CHANGE: "ANY_CHANGE";
165
- readonly FILE_CHANGE: "FILE_CHANGE";
166
- };
167
- export type TriggerResourceUpdateOn =
168
- (typeof TriggerResourceUpdateOn)[keyof typeof TriggerResourceUpdateOn];
169
63
  export interface CreateSyncConfigurationInput {
170
64
  Branch: string | undefined;
171
65
  ConfigFile: string | undefined;
@@ -206,28 +100,6 @@ export interface DeleteRepositoryLinkInput {
206
100
  RepositoryLinkId: string | undefined;
207
101
  }
208
102
  export interface DeleteRepositoryLinkOutput {}
209
- export declare class SyncConfigurationStillExistsException extends __BaseException {
210
- readonly name: "SyncConfigurationStillExistsException";
211
- readonly $fault: "client";
212
- Message?: string | undefined;
213
- constructor(
214
- opts: __ExceptionOptionType<
215
- SyncConfigurationStillExistsException,
216
- __BaseException
217
- >
218
- );
219
- }
220
- export declare class UnsupportedProviderTypeException extends __BaseException {
221
- readonly name: "UnsupportedProviderTypeException";
222
- readonly $fault: "client";
223
- Message?: string | undefined;
224
- constructor(
225
- opts: __ExceptionOptionType<
226
- UnsupportedProviderTypeException,
227
- __BaseException
228
- >
229
- );
230
- }
231
103
  export interface DeleteSyncConfigurationInput {
232
104
  SyncType: SyncConfigurationType | undefined;
233
105
  ResourceName: string | undefined;
@@ -236,13 +108,6 @@ export interface DeleteSyncConfigurationOutput {}
236
108
  export interface GetConnectionInput {
237
109
  ConnectionArn: string | undefined;
238
110
  }
239
- export declare const ConnectionStatus: {
240
- readonly AVAILABLE: "AVAILABLE";
241
- readonly ERROR: "ERROR";
242
- readonly PENDING: "PENDING";
243
- };
244
- export type ConnectionStatus =
245
- (typeof ConnectionStatus)[keyof typeof ConnectionStatus];
246
111
  export interface Connection {
247
112
  ConnectionName?: string | undefined;
248
113
  ConnectionArn?: string | undefined;
@@ -281,15 +146,6 @@ export interface RepositorySyncEvent {
281
146
  Time: Date | undefined;
282
147
  Type: string | undefined;
283
148
  }
284
- export declare const RepositorySyncStatus: {
285
- readonly FAILED: "FAILED";
286
- readonly INITIATED: "INITIATED";
287
- readonly IN_PROGRESS: "IN_PROGRESS";
288
- readonly QUEUED: "QUEUED";
289
- readonly SUCCEEDED: "SUCCEEDED";
290
- };
291
- export type RepositorySyncStatus =
292
- (typeof RepositorySyncStatus)[keyof typeof RepositorySyncStatus];
293
149
  export interface RepositorySyncAttempt {
294
150
  StartedAt: Date | undefined;
295
151
  Status: RepositorySyncStatus | undefined;
@@ -316,14 +172,6 @@ export interface ResourceSyncEvent {
316
172
  Time: Date | undefined;
317
173
  Type: string | undefined;
318
174
  }
319
- export declare const ResourceSyncStatus: {
320
- readonly FAILED: "FAILED";
321
- readonly INITIATED: "INITIATED";
322
- readonly IN_PROGRESS: "IN_PROGRESS";
323
- readonly SUCCEEDED: "SUCCEEDED";
324
- };
325
- export type ResourceSyncStatus =
326
- (typeof ResourceSyncStatus)[keyof typeof ResourceSyncStatus];
327
175
  export interface ResourceSyncAttempt {
328
176
  Events: ResourceSyncEvent[] | undefined;
329
177
  InitialRevision: Revision | undefined;
@@ -445,45 +293,12 @@ export interface UntagResourceInput {
445
293
  TagKeys: string[] | undefined;
446
294
  }
447
295
  export interface UntagResourceOutput {}
448
- export declare class ConflictException extends __BaseException {
449
- readonly name: "ConflictException";
450
- readonly $fault: "client";
451
- Message?: string | undefined;
452
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
453
- }
454
- export declare class UnsupportedOperationException extends __BaseException {
455
- readonly name: "UnsupportedOperationException";
456
- readonly $fault: "client";
457
- Message?: string | undefined;
458
- constructor(
459
- opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>
460
- );
461
- }
462
296
  export interface UpdateHostInput {
463
297
  HostArn: string | undefined;
464
298
  ProviderEndpoint?: string | undefined;
465
299
  VpcConfiguration?: VpcConfiguration | undefined;
466
300
  }
467
301
  export interface UpdateHostOutput {}
468
- export declare class ConditionalCheckFailedException extends __BaseException {
469
- readonly name: "ConditionalCheckFailedException";
470
- readonly $fault: "client";
471
- Message?: string | undefined;
472
- constructor(
473
- opts: __ExceptionOptionType<
474
- ConditionalCheckFailedException,
475
- __BaseException
476
- >
477
- );
478
- }
479
- export declare class UpdateOutOfSyncException extends __BaseException {
480
- readonly name: "UpdateOutOfSyncException";
481
- readonly $fault: "client";
482
- Message?: string | undefined;
483
- constructor(
484
- opts: __ExceptionOptionType<UpdateOutOfSyncException, __BaseException>
485
- );
486
- }
487
302
  export interface UpdateRepositoryLinkInput {
488
303
  ConnectionArn?: string | undefined;
489
304
  EncryptionKeyArn?: string | undefined;
@@ -492,28 +307,6 @@ export interface UpdateRepositoryLinkInput {
492
307
  export interface UpdateRepositoryLinkOutput {
493
308
  RepositoryLinkInfo: RepositoryLinkInfo | undefined;
494
309
  }
495
- export declare class RetryLatestCommitFailedException extends __BaseException {
496
- readonly name: "RetryLatestCommitFailedException";
497
- readonly $fault: "server";
498
- Message?: string | undefined;
499
- constructor(
500
- opts: __ExceptionOptionType<
501
- RetryLatestCommitFailedException,
502
- __BaseException
503
- >
504
- );
505
- }
506
- export declare class SyncBlockerDoesNotExistException extends __BaseException {
507
- readonly name: "SyncBlockerDoesNotExistException";
508
- readonly $fault: "client";
509
- Message?: string | undefined;
510
- constructor(
511
- opts: __ExceptionOptionType<
512
- SyncBlockerDoesNotExistException,
513
- __BaseException
514
- >
515
- );
516
- }
517
310
  export interface UpdateSyncBlockerInput {
518
311
  Id: string | undefined;
519
312
  SyncType: SyncConfigurationType | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-codeconnections",
3
3
  "description": "AWS SDK for JavaScript Codeconnections Client for Node.js, Browser and React Native",
4
- "version": "3.934.0",
4
+ "version": "3.935.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-codeconnections",
@@ -20,38 +20,38 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.934.0",
24
- "@aws-sdk/credential-provider-node": "3.934.0",
23
+ "@aws-sdk/core": "3.935.0",
24
+ "@aws-sdk/credential-provider-node": "3.935.0",
25
25
  "@aws-sdk/middleware-host-header": "3.930.0",
26
26
  "@aws-sdk/middleware-logger": "3.930.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.933.0",
28
- "@aws-sdk/middleware-user-agent": "3.934.0",
28
+ "@aws-sdk/middleware-user-agent": "3.935.0",
29
29
  "@aws-sdk/region-config-resolver": "3.930.0",
30
30
  "@aws-sdk/types": "3.930.0",
31
31
  "@aws-sdk/util-endpoints": "3.930.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.930.0",
33
- "@aws-sdk/util-user-agent-node": "3.934.0",
33
+ "@aws-sdk/util-user-agent-node": "3.935.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
- "@smithy/core": "^3.18.2",
35
+ "@smithy/core": "^3.18.5",
36
36
  "@smithy/fetch-http-handler": "^5.3.6",
37
37
  "@smithy/hash-node": "^4.2.5",
38
38
  "@smithy/invalid-dependency": "^4.2.5",
39
39
  "@smithy/middleware-content-length": "^4.2.5",
40
- "@smithy/middleware-endpoint": "^4.3.9",
41
- "@smithy/middleware-retry": "^4.4.9",
42
- "@smithy/middleware-serde": "^4.2.5",
40
+ "@smithy/middleware-endpoint": "^4.3.12",
41
+ "@smithy/middleware-retry": "^4.4.12",
42
+ "@smithy/middleware-serde": "^4.2.6",
43
43
  "@smithy/middleware-stack": "^4.2.5",
44
44
  "@smithy/node-config-provider": "^4.3.5",
45
45
  "@smithy/node-http-handler": "^4.4.5",
46
46
  "@smithy/protocol-http": "^5.3.5",
47
- "@smithy/smithy-client": "^4.9.5",
47
+ "@smithy/smithy-client": "^4.9.8",
48
48
  "@smithy/types": "^4.9.0",
49
49
  "@smithy/url-parser": "^4.2.5",
50
50
  "@smithy/util-base64": "^4.3.0",
51
51
  "@smithy/util-body-length-browser": "^4.2.0",
52
52
  "@smithy/util-body-length-node": "^4.2.1",
53
- "@smithy/util-defaults-mode-browser": "^4.3.8",
54
- "@smithy/util-defaults-mode-node": "^4.2.11",
53
+ "@smithy/util-defaults-mode-browser": "^4.3.11",
54
+ "@smithy/util-defaults-mode-node": "^4.2.14",
55
55
  "@smithy/util-endpoints": "^3.2.5",
56
56
  "@smithy/util-middleware": "^4.2.5",
57
57
  "@smithy/util-retry": "^4.2.5",
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";