@aws-sdk/client-cloud9 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,27 +1,13 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { Cloud9ServiceException as __BaseException } from "./Cloud9ServiceException";
3
- export declare class BadRequestException extends __BaseException {
4
- readonly name: "BadRequestException";
5
- readonly $fault: "client";
6
- className?: string | undefined;
7
- code?: number | undefined;
8
- constructor(
9
- opts: __ExceptionOptionType<BadRequestException, __BaseException>
10
- );
11
- }
12
- export declare class ConflictException extends __BaseException {
13
- readonly name: "ConflictException";
14
- readonly $fault: "client";
15
- className?: string | undefined;
16
- code?: number | undefined;
17
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
18
- }
19
- export declare const ConnectionType: {
20
- readonly CONNECT_SSH: "CONNECT_SSH";
21
- readonly CONNECT_SSM: "CONNECT_SSM";
22
- };
23
- export type ConnectionType =
24
- (typeof ConnectionType)[keyof typeof ConnectionType];
1
+ import {
2
+ ConnectionType,
3
+ EnvironmentLifecycleStatus,
4
+ EnvironmentStatus,
5
+ EnvironmentType,
6
+ ManagedCredentialsAction,
7
+ ManagedCredentialsStatus,
8
+ MemberPermissions,
9
+ Permissions,
10
+ } from "./enums";
25
11
  export interface Tag {
26
12
  Key: string | undefined;
27
13
  Value: string | undefined;
@@ -42,64 +28,11 @@ export interface CreateEnvironmentEC2Request {
42
28
  export interface CreateEnvironmentEC2Result {
43
29
  environmentId?: string | undefined;
44
30
  }
45
- export declare class ForbiddenException extends __BaseException {
46
- readonly name: "ForbiddenException";
47
- readonly $fault: "client";
48
- className?: string | undefined;
49
- code?: number | undefined;
50
- constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
51
- }
52
- export declare class InternalServerErrorException extends __BaseException {
53
- readonly name: "InternalServerErrorException";
54
- readonly $fault: "server";
55
- className?: string | undefined;
56
- code?: number | undefined;
57
- constructor(
58
- opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
59
- );
60
- }
61
- export declare class LimitExceededException extends __BaseException {
62
- readonly name: "LimitExceededException";
63
- readonly $fault: "client";
64
- className?: string | undefined;
65
- code?: number | undefined;
66
- constructor(
67
- opts: __ExceptionOptionType<LimitExceededException, __BaseException>
68
- );
69
- }
70
- export declare class NotFoundException extends __BaseException {
71
- readonly name: "NotFoundException";
72
- readonly $fault: "client";
73
- className?: string | undefined;
74
- code?: number | undefined;
75
- constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
76
- }
77
- export declare class TooManyRequestsException extends __BaseException {
78
- readonly name: "TooManyRequestsException";
79
- readonly $fault: "client";
80
- className?: string | undefined;
81
- code?: number | undefined;
82
- constructor(
83
- opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
84
- );
85
- }
86
- export declare const MemberPermissions: {
87
- readonly READ_ONLY: "read-only";
88
- readonly READ_WRITE: "read-write";
89
- };
90
- export type MemberPermissions =
91
- (typeof MemberPermissions)[keyof typeof MemberPermissions];
92
31
  export interface CreateEnvironmentMembershipRequest {
93
32
  environmentId: string | undefined;
94
33
  userArn: string | undefined;
95
34
  permissions: MemberPermissions | undefined;
96
35
  }
97
- export declare const Permissions: {
98
- readonly OWNER: "owner";
99
- readonly READ_ONLY: "read-only";
100
- readonly READ_WRITE: "read-write";
101
- };
102
- export type Permissions = (typeof Permissions)[keyof typeof Permissions];
103
36
  export interface EnvironmentMember {
104
37
  permissions: Permissions | undefined;
105
38
  userId: string | undefined;
@@ -133,41 +66,11 @@ export interface DescribeEnvironmentMembershipsResult {
133
66
  export interface DescribeEnvironmentsRequest {
134
67
  environmentIds: string[] | undefined;
135
68
  }
136
- export declare const EnvironmentLifecycleStatus: {
137
- readonly CREATED: "CREATED";
138
- readonly CREATE_FAILED: "CREATE_FAILED";
139
- readonly CREATING: "CREATING";
140
- readonly DELETE_FAILED: "DELETE_FAILED";
141
- readonly DELETING: "DELETING";
142
- };
143
- export type EnvironmentLifecycleStatus =
144
- (typeof EnvironmentLifecycleStatus)[keyof typeof EnvironmentLifecycleStatus];
145
69
  export interface EnvironmentLifecycle {
146
70
  status?: EnvironmentLifecycleStatus | undefined;
147
71
  reason?: string | undefined;
148
72
  failureResource?: string | undefined;
149
73
  }
150
- export declare const ManagedCredentialsStatus: {
151
- readonly DISABLED_BY_COLLABORATOR: "DISABLED_BY_COLLABORATOR";
152
- readonly DISABLED_BY_DEFAULT: "DISABLED_BY_DEFAULT";
153
- readonly DISABLED_BY_OWNER: "DISABLED_BY_OWNER";
154
- readonly ENABLED_BY_OWNER: "ENABLED_BY_OWNER";
155
- readonly ENABLED_ON_CREATE: "ENABLED_ON_CREATE";
156
- readonly FAILED_REMOVAL_BY_COLLABORATOR: "FAILED_REMOVAL_BY_COLLABORATOR";
157
- readonly FAILED_REMOVAL_BY_OWNER: "FAILED_REMOVAL_BY_OWNER";
158
- readonly PENDING_REMOVAL_BY_COLLABORATOR: "PENDING_REMOVAL_BY_COLLABORATOR";
159
- readonly PENDING_REMOVAL_BY_OWNER: "PENDING_REMOVAL_BY_OWNER";
160
- readonly PENDING_START_REMOVAL_BY_COLLABORATOR: "PENDING_START_REMOVAL_BY_COLLABORATOR";
161
- readonly PENDING_START_REMOVAL_BY_OWNER: "PENDING_START_REMOVAL_BY_OWNER";
162
- };
163
- export type ManagedCredentialsStatus =
164
- (typeof ManagedCredentialsStatus)[keyof typeof ManagedCredentialsStatus];
165
- export declare const EnvironmentType: {
166
- readonly EC2: "ec2";
167
- readonly SSH: "ssh";
168
- };
169
- export type EnvironmentType =
170
- (typeof EnvironmentType)[keyof typeof EnvironmentType];
171
74
  export interface Environment {
172
75
  id?: string | undefined;
173
76
  name?: string | undefined;
@@ -185,17 +88,6 @@ export interface DescribeEnvironmentsResult {
185
88
  export interface DescribeEnvironmentStatusRequest {
186
89
  environmentId: string | undefined;
187
90
  }
188
- export declare const EnvironmentStatus: {
189
- readonly CONNECTING: "connecting";
190
- readonly CREATING: "creating";
191
- readonly DELETING: "deleting";
192
- readonly ERROR: "error";
193
- readonly READY: "ready";
194
- readonly STOPPED: "stopped";
195
- readonly STOPPING: "stopping";
196
- };
197
- export type EnvironmentStatus =
198
- (typeof EnvironmentStatus)[keyof typeof EnvironmentStatus];
199
91
  export interface DescribeEnvironmentStatusResult {
200
92
  status: EnvironmentStatus | undefined;
201
93
  message: string | undefined;
@@ -214,15 +106,6 @@ export interface ListTagsForResourceRequest {
214
106
  export interface ListTagsForResourceResponse {
215
107
  Tags?: Tag[] | undefined;
216
108
  }
217
- export declare class ConcurrentAccessException extends __BaseException {
218
- readonly name: "ConcurrentAccessException";
219
- readonly $fault: "client";
220
- className?: string | undefined;
221
- code?: number | undefined;
222
- constructor(
223
- opts: __ExceptionOptionType<ConcurrentAccessException, __BaseException>
224
- );
225
- }
226
109
  export interface TagResourceRequest {
227
110
  ResourceARN: string | undefined;
228
111
  Tags: Tag[] | undefined;
@@ -233,12 +116,6 @@ export interface UntagResourceRequest {
233
116
  TagKeys: string[] | undefined;
234
117
  }
235
118
  export interface UntagResourceResponse {}
236
- export declare const ManagedCredentialsAction: {
237
- readonly DISABLE: "DISABLE";
238
- readonly ENABLE: "ENABLE";
239
- };
240
- export type ManagedCredentialsAction =
241
- (typeof ManagedCredentialsAction)[keyof typeof ManagedCredentialsAction];
242
119
  export interface UpdateEnvironmentRequest {
243
120
  environmentId: string | undefined;
244
121
  name?: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cloud9",
3
3
  "description": "AWS SDK for JavaScript Cloud9 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-cloud9",
@@ -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";