@aws-sdk/client-cloud9 3.952.0 → 3.954.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 +190 -131
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/CreateEnvironmentEC2Command.js +2 -2
- package/dist-es/commands/CreateEnvironmentMembershipCommand.js +2 -2
- package/dist-es/commands/DeleteEnvironmentCommand.js +2 -2
- package/dist-es/commands/DeleteEnvironmentMembershipCommand.js +2 -2
- package/dist-es/commands/DescribeEnvironmentMembershipsCommand.js +2 -2
- package/dist-es/commands/DescribeEnvironmentStatusCommand.js +2 -2
- package/dist-es/commands/DescribeEnvironmentsCommand.js +2 -2
- package/dist-es/commands/ListEnvironmentsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateEnvironmentCommand.js +2 -2
- package/dist-es/commands/UpdateEnvironmentMembershipCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +107 -100
- package/dist-types/Cloud9Client.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +53 -63
- package/dist-types/ts3.4/Cloud9Client.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +52 -64
- package/package.json +34 -34
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteEnvironment } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteEnvironment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteEnvironmentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteEnvironmentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSCloud9WorkspaceManagementService", "DeleteEnvironment", {})
|
|
13
13
|
.n("Cloud9Client", "DeleteEnvironmentCommand")
|
|
14
|
-
.sc(DeleteEnvironment)
|
|
14
|
+
.sc(DeleteEnvironment$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteEnvironmentMembership } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteEnvironmentMembership$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteEnvironmentMembershipCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteEnvironmentMembershipCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSCloud9WorkspaceManagementService", "DeleteEnvironmentMembership", {})
|
|
13
13
|
.n("Cloud9Client", "DeleteEnvironmentMembershipCommand")
|
|
14
|
-
.sc(DeleteEnvironmentMembership)
|
|
14
|
+
.sc(DeleteEnvironmentMembership$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeEnvironmentMemberships } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeEnvironmentMemberships$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeEnvironmentMembershipsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeEnvironmentMembershipsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSCloud9WorkspaceManagementService", "DescribeEnvironmentMemberships", {})
|
|
13
13
|
.n("Cloud9Client", "DescribeEnvironmentMembershipsCommand")
|
|
14
|
-
.sc(DescribeEnvironmentMemberships)
|
|
14
|
+
.sc(DescribeEnvironmentMemberships$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeEnvironmentStatus } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeEnvironmentStatus$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeEnvironmentStatusCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeEnvironmentStatusCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSCloud9WorkspaceManagementService", "DescribeEnvironmentStatus", {})
|
|
13
13
|
.n("Cloud9Client", "DescribeEnvironmentStatusCommand")
|
|
14
|
-
.sc(DescribeEnvironmentStatus)
|
|
14
|
+
.sc(DescribeEnvironmentStatus$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeEnvironments } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeEnvironments$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeEnvironmentsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeEnvironmentsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSCloud9WorkspaceManagementService", "DescribeEnvironments", {})
|
|
13
13
|
.n("Cloud9Client", "DescribeEnvironmentsCommand")
|
|
14
|
-
.sc(DescribeEnvironments)
|
|
14
|
+
.sc(DescribeEnvironments$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListEnvironments } from "../schemas/schemas_0";
|
|
4
|
+
import { ListEnvironments$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListEnvironmentsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListEnvironmentsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSCloud9WorkspaceManagementService", "ListEnvironments", {})
|
|
13
13
|
.n("Cloud9Client", "ListEnvironmentsCommand")
|
|
14
|
-
.sc(ListEnvironments)
|
|
14
|
+
.sc(ListEnvironments$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSCloud9WorkspaceManagementService", "ListTagsForResource", {})
|
|
13
13
|
.n("Cloud9Client", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSCloud9WorkspaceManagementService", "TagResource", {})
|
|
13
13
|
.n("Cloud9Client", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSCloud9WorkspaceManagementService", "UntagResource", {})
|
|
13
13
|
.n("Cloud9Client", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateEnvironment } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateEnvironment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateEnvironmentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateEnvironmentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSCloud9WorkspaceManagementService", "UpdateEnvironment", {})
|
|
13
13
|
.n("Cloud9Client", "UpdateEnvironmentCommand")
|
|
14
|
-
.sc(UpdateEnvironment)
|
|
14
|
+
.sc(UpdateEnvironment$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateEnvironmentMembership } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateEnvironmentMembership$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateEnvironmentMembershipCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateEnvironmentMembershipCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSCloud9WorkspaceManagementService", "UpdateEnvironmentMembership", {})
|
|
13
13
|
.n("Cloud9Client", "UpdateEnvironmentMembershipCommand")
|
|
14
|
-
.sc(UpdateEnvironmentMembership)
|
|
14
|
+
.sc(UpdateEnvironmentMembership$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,12 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
26
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.cloud9",
|
|
29
|
+
version: "2017-09-23",
|
|
30
|
+
serviceTarget: "AWSCloud9WorkspaceManagementService",
|
|
31
|
+
},
|
|
32
32
|
serviceId: config?.serviceId ?? "Cloud9",
|
|
33
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
34
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
@@ -101,18 +101,18 @@ const _uA = "userArn";
|
|
|
101
101
|
const _uI = "userId";
|
|
102
102
|
const n0 = "com.amazonaws.cloud9";
|
|
103
103
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
104
|
-
import { Cloud9ServiceException
|
|
105
|
-
import { BadRequestException
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
export var BadRequestException = [-3, n0, _BRE, { [_e]: _c }, [_m, _cN, _co], [0, 0, 1]];
|
|
110
|
-
TypeRegistry.for(n0).registerError(BadRequestException
|
|
111
|
-
export var ConcurrentAccessException = [-3, n0, _CAE, { [_e]: _c }, [_m, _cN, _co], [0, 0, 1]];
|
|
112
|
-
TypeRegistry.for(n0).registerError(ConcurrentAccessException
|
|
113
|
-
export var ConflictException = [-3, n0, _CE, { [_e]: _c }, [_m, _cN, _co], [0, 0, 1]];
|
|
114
|
-
TypeRegistry.for(n0).registerError(ConflictException
|
|
115
|
-
export var CreateEnvironmentEC2Request = [
|
|
104
|
+
import { Cloud9ServiceException } from "../models/Cloud9ServiceException";
|
|
105
|
+
import { BadRequestException, ConcurrentAccessException, ConflictException, ForbiddenException, InternalServerErrorException, LimitExceededException, NotFoundException, TooManyRequestsException, } from "../models/errors";
|
|
106
|
+
var EnvironmentDescription = [0, n0, _ED, 8, 0];
|
|
107
|
+
var TagKey = [0, n0, _TK, 8, 0];
|
|
108
|
+
var TagValue = [0, n0, _TV, 8, 0];
|
|
109
|
+
export var BadRequestException$ = [-3, n0, _BRE, { [_e]: _c }, [_m, _cN, _co], [0, 0, 1]];
|
|
110
|
+
TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
|
|
111
|
+
export var ConcurrentAccessException$ = [-3, n0, _CAE, { [_e]: _c }, [_m, _cN, _co], [0, 0, 1]];
|
|
112
|
+
TypeRegistry.for(n0).registerError(ConcurrentAccessException$, ConcurrentAccessException);
|
|
113
|
+
export var ConflictException$ = [-3, n0, _CE, { [_e]: _c }, [_m, _cN, _co], [0, 0, 1]];
|
|
114
|
+
TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
115
|
+
export var CreateEnvironmentEC2Request$ = [
|
|
116
116
|
3,
|
|
117
117
|
n0,
|
|
118
118
|
_CEECR,
|
|
@@ -120,21 +120,21 @@ export var CreateEnvironmentEC2Request = [
|
|
|
120
120
|
[_n, _d, _cRT, _iT, _sI, _iI, _aSTM, _oA, _t, _cT, _dR],
|
|
121
121
|
[0, [() => EnvironmentDescription, 0], 0, 0, 0, 0, 1, 0, [() => TagList, 0], 0, 2],
|
|
122
122
|
];
|
|
123
|
-
export var CreateEnvironmentEC2Result = [3, n0, _CEECRr, 0, [_eI], [0]];
|
|
124
|
-
export var CreateEnvironmentMembershipRequest = [3, n0, _CEMR, 0, [_eI, _uA, _p], [0, 0, 0]];
|
|
125
|
-
export var CreateEnvironmentMembershipResult = [
|
|
123
|
+
export var CreateEnvironmentEC2Result$ = [3, n0, _CEECRr, 0, [_eI], [0]];
|
|
124
|
+
export var CreateEnvironmentMembershipRequest$ = [3, n0, _CEMR, 0, [_eI, _uA, _p], [0, 0, 0]];
|
|
125
|
+
export var CreateEnvironmentMembershipResult$ = [
|
|
126
126
|
3,
|
|
127
127
|
n0,
|
|
128
128
|
_CEMRr,
|
|
129
129
|
0,
|
|
130
130
|
[_me],
|
|
131
|
-
[() => EnvironmentMember],
|
|
131
|
+
[() => EnvironmentMember$],
|
|
132
132
|
];
|
|
133
|
-
export var DeleteEnvironmentMembershipRequest = [3, n0, _DEMR, 0, [_eI, _uA], [0, 0]];
|
|
134
|
-
export var DeleteEnvironmentMembershipResult = [3, n0, _DEMRe, 0, [], []];
|
|
135
|
-
export var DeleteEnvironmentRequest = [3, n0, _DER, 0, [_eI], [0]];
|
|
136
|
-
export var DeleteEnvironmentResult = [3, n0, _DERe, 0, [], []];
|
|
137
|
-
export var DescribeEnvironmentMembershipsRequest = [
|
|
133
|
+
export var DeleteEnvironmentMembershipRequest$ = [3, n0, _DEMR, 0, [_eI, _uA], [0, 0]];
|
|
134
|
+
export var DeleteEnvironmentMembershipResult$ = [3, n0, _DEMRe, 0, [], []];
|
|
135
|
+
export var DeleteEnvironmentRequest$ = [3, n0, _DER, 0, [_eI], [0]];
|
|
136
|
+
export var DeleteEnvironmentResult$ = [3, n0, _DERe, 0, [], []];
|
|
137
|
+
export var DescribeEnvironmentMembershipsRequest$ = [
|
|
138
138
|
3,
|
|
139
139
|
n0,
|
|
140
140
|
_DEMRes,
|
|
@@ -142,7 +142,7 @@ export var DescribeEnvironmentMembershipsRequest = [
|
|
|
142
142
|
[_uA, _eI, _p, _nT, _mR],
|
|
143
143
|
[0, 0, 64 | 0, 0, 1],
|
|
144
144
|
];
|
|
145
|
-
export var DescribeEnvironmentMembershipsResult = [
|
|
145
|
+
export var DescribeEnvironmentMembershipsResult$ = [
|
|
146
146
|
3,
|
|
147
147
|
n0,
|
|
148
148
|
_DEMResc,
|
|
@@ -150,33 +150,40 @@ export var DescribeEnvironmentMembershipsResult = [
|
|
|
150
150
|
[_mem, _nT],
|
|
151
151
|
[() => EnvironmentMembersList, 0],
|
|
152
152
|
];
|
|
153
|
-
export var DescribeEnvironmentsRequest = [3, n0, _DERes, 0, [_eIn], [64 | 0]];
|
|
154
|
-
export var DescribeEnvironmentsResult = [
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
153
|
+
export var DescribeEnvironmentsRequest$ = [3, n0, _DERes, 0, [_eIn], [64 | 0]];
|
|
154
|
+
export var DescribeEnvironmentsResult$ = [
|
|
155
|
+
3,
|
|
156
|
+
n0,
|
|
157
|
+
_DEResc,
|
|
158
|
+
0,
|
|
159
|
+
[_en],
|
|
160
|
+
[[() => EnvironmentList, 0]],
|
|
161
|
+
];
|
|
162
|
+
export var DescribeEnvironmentStatusRequest$ = [3, n0, _DESR, 0, [_eI], [0]];
|
|
163
|
+
export var DescribeEnvironmentStatusResult$ = [3, n0, _DESRe, 0, [_s, _m], [0, 0]];
|
|
164
|
+
export var Environment$ = [
|
|
158
165
|
3,
|
|
159
166
|
n0,
|
|
160
167
|
_E,
|
|
161
168
|
0,
|
|
162
169
|
[_i, _n, _d, _ty, _cT, _a, _oA, _l, _mCS],
|
|
163
|
-
[0, 0, [() => EnvironmentDescription, 0], 0, 0, 0, 0, () => EnvironmentLifecycle
|
|
170
|
+
[0, 0, [() => EnvironmentDescription, 0], 0, 0, 0, 0, () => EnvironmentLifecycle$, 0],
|
|
164
171
|
];
|
|
165
|
-
export var EnvironmentLifecycle = [3, n0, _EL, 0, [_s, _r, _fR], [0, 0, 0]];
|
|
166
|
-
export var EnvironmentMember = [3, n0, _EM, 0, [_p, _uI, _uA, _eI, _lA], [0, 0, 0, 0, 4]];
|
|
167
|
-
export var ForbiddenException = [-3, n0, _FE, { [_e]: _c }, [_m, _cN, _co], [0, 0, 1]];
|
|
168
|
-
TypeRegistry.for(n0).registerError(ForbiddenException
|
|
169
|
-
export var InternalServerErrorException = [-3, n0, _ISEE, { [_e]: _se }, [_m, _cN, _co], [0, 0, 1]];
|
|
170
|
-
TypeRegistry.for(n0).registerError(InternalServerErrorException
|
|
171
|
-
export var LimitExceededException = [-3, n0, _LEE, { [_e]: _c }, [_m, _cN, _co], [0, 0, 1]];
|
|
172
|
-
TypeRegistry.for(n0).registerError(LimitExceededException
|
|
173
|
-
export var ListEnvironmentsRequest = [3, n0, _LER, 0, [_nT, _mR], [0, 1]];
|
|
174
|
-
export var ListEnvironmentsResult = [3, n0, _LERi, 0, [_nT, _eIn], [0, 64 | 0]];
|
|
175
|
-
export var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RARN], [0]];
|
|
176
|
-
export var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_T], [[() => TagList, 0]]];
|
|
177
|
-
export var NotFoundException = [-3, n0, _NFE, { [_e]: _c }, [_m, _cN, _co], [0, 0, 1]];
|
|
178
|
-
TypeRegistry.for(n0).registerError(NotFoundException
|
|
179
|
-
export var Tag = [
|
|
172
|
+
export var EnvironmentLifecycle$ = [3, n0, _EL, 0, [_s, _r, _fR], [0, 0, 0]];
|
|
173
|
+
export var EnvironmentMember$ = [3, n0, _EM, 0, [_p, _uI, _uA, _eI, _lA], [0, 0, 0, 0, 4]];
|
|
174
|
+
export var ForbiddenException$ = [-3, n0, _FE, { [_e]: _c }, [_m, _cN, _co], [0, 0, 1]];
|
|
175
|
+
TypeRegistry.for(n0).registerError(ForbiddenException$, ForbiddenException);
|
|
176
|
+
export var InternalServerErrorException$ = [-3, n0, _ISEE, { [_e]: _se }, [_m, _cN, _co], [0, 0, 1]];
|
|
177
|
+
TypeRegistry.for(n0).registerError(InternalServerErrorException$, InternalServerErrorException);
|
|
178
|
+
export var LimitExceededException$ = [-3, n0, _LEE, { [_e]: _c }, [_m, _cN, _co], [0, 0, 1]];
|
|
179
|
+
TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
180
|
+
export var ListEnvironmentsRequest$ = [3, n0, _LER, 0, [_nT, _mR], [0, 1]];
|
|
181
|
+
export var ListEnvironmentsResult$ = [3, n0, _LERi, 0, [_nT, _eIn], [0, 64 | 0]];
|
|
182
|
+
export var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_RARN], [0]];
|
|
183
|
+
export var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_T], [[() => TagList, 0]]];
|
|
184
|
+
export var NotFoundException$ = [-3, n0, _NFE, { [_e]: _c }, [_m, _cN, _co], [0, 0, 1]];
|
|
185
|
+
TypeRegistry.for(n0).registerError(NotFoundException$, NotFoundException);
|
|
186
|
+
export var Tag$ = [
|
|
180
187
|
3,
|
|
181
188
|
n0,
|
|
182
189
|
_Ta,
|
|
@@ -187,22 +194,22 @@ export var Tag = [
|
|
|
187
194
|
[() => TagValue, 0],
|
|
188
195
|
],
|
|
189
196
|
];
|
|
190
|
-
export var TagResourceRequest = [3, n0, _TRR, 0, [_RARN, _T], [0, [() => TagList, 0]]];
|
|
191
|
-
export var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
192
|
-
export var TooManyRequestsException = [-3, n0, _TMRE, { [_e]: _c }, [_m, _cN, _co], [0, 0, 1]];
|
|
193
|
-
TypeRegistry.for(n0).registerError(TooManyRequestsException
|
|
194
|
-
export var UntagResourceRequest = [3, n0, _URR, 0, [_RARN, _TKa], [0, [() => TagKeyList, 0]]];
|
|
195
|
-
export var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
196
|
-
export var UpdateEnvironmentMembershipRequest = [3, n0, _UEMR, 0, [_eI, _uA, _p], [0, 0, 0]];
|
|
197
|
-
export var UpdateEnvironmentMembershipResult = [
|
|
197
|
+
export var TagResourceRequest$ = [3, n0, _TRR, 0, [_RARN, _T], [0, [() => TagList, 0]]];
|
|
198
|
+
export var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
|
|
199
|
+
export var TooManyRequestsException$ = [-3, n0, _TMRE, { [_e]: _c }, [_m, _cN, _co], [0, 0, 1]];
|
|
200
|
+
TypeRegistry.for(n0).registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
201
|
+
export var UntagResourceRequest$ = [3, n0, _URR, 0, [_RARN, _TKa], [0, [() => TagKeyList, 0]]];
|
|
202
|
+
export var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
|
|
203
|
+
export var UpdateEnvironmentMembershipRequest$ = [3, n0, _UEMR, 0, [_eI, _uA, _p], [0, 0, 0]];
|
|
204
|
+
export var UpdateEnvironmentMembershipResult$ = [
|
|
198
205
|
3,
|
|
199
206
|
n0,
|
|
200
207
|
_UEMRp,
|
|
201
208
|
0,
|
|
202
209
|
[_me],
|
|
203
|
-
[() => EnvironmentMember],
|
|
210
|
+
[() => EnvironmentMember$],
|
|
204
211
|
];
|
|
205
|
-
export var UpdateEnvironmentRequest = [
|
|
212
|
+
export var UpdateEnvironmentRequest$ = [
|
|
206
213
|
3,
|
|
207
214
|
n0,
|
|
208
215
|
_UER,
|
|
@@ -210,110 +217,110 @@ export var UpdateEnvironmentRequest = [
|
|
|
210
217
|
[_eI, _n, _d, _mCA],
|
|
211
218
|
[0, 0, [() => EnvironmentDescription, 0], 0],
|
|
212
219
|
];
|
|
213
|
-
export var UpdateEnvironmentResult = [3, n0, _UERp, 0, [], []];
|
|
214
|
-
export var Cloud9ServiceException = [-3, _sm, "Cloud9ServiceException", 0, [], []];
|
|
215
|
-
TypeRegistry.for(_sm).registerError(Cloud9ServiceException
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
export var CreateEnvironmentEC2 = [
|
|
220
|
+
export var UpdateEnvironmentResult$ = [3, n0, _UERp, 0, [], []];
|
|
221
|
+
export var Cloud9ServiceException$ = [-3, _sm, "Cloud9ServiceException", 0, [], []];
|
|
222
|
+
TypeRegistry.for(_sm).registerError(Cloud9ServiceException$, Cloud9ServiceException);
|
|
223
|
+
var BoundedEnvironmentIdList = 64 | 0;
|
|
224
|
+
var EnvironmentIdList = 64 | 0;
|
|
225
|
+
var EnvironmentList = [1, n0, _ELn, 0, [() => Environment$, 0]];
|
|
226
|
+
var EnvironmentMembersList = [1, n0, _EML, 0, () => EnvironmentMember$];
|
|
227
|
+
var PermissionsList = 64 | 0;
|
|
228
|
+
var TagKeyList = [1, n0, _TKL, 8, [() => TagKey, 0]];
|
|
229
|
+
var TagList = [1, n0, _TL, 8, [() => Tag$, 0]];
|
|
230
|
+
export var CreateEnvironmentEC2$ = [
|
|
224
231
|
9,
|
|
225
232
|
n0,
|
|
226
233
|
_CEEC,
|
|
227
234
|
2,
|
|
228
|
-
() => CreateEnvironmentEC2Request
|
|
229
|
-
() => CreateEnvironmentEC2Result
|
|
235
|
+
() => CreateEnvironmentEC2Request$,
|
|
236
|
+
() => CreateEnvironmentEC2Result$,
|
|
230
237
|
];
|
|
231
|
-
export var CreateEnvironmentMembership = [
|
|
238
|
+
export var CreateEnvironmentMembership$ = [
|
|
232
239
|
9,
|
|
233
240
|
n0,
|
|
234
241
|
_CEM,
|
|
235
242
|
2,
|
|
236
|
-
() => CreateEnvironmentMembershipRequest
|
|
237
|
-
() => CreateEnvironmentMembershipResult
|
|
243
|
+
() => CreateEnvironmentMembershipRequest$,
|
|
244
|
+
() => CreateEnvironmentMembershipResult$,
|
|
238
245
|
];
|
|
239
|
-
export var DeleteEnvironment = [
|
|
246
|
+
export var DeleteEnvironment$ = [
|
|
240
247
|
9,
|
|
241
248
|
n0,
|
|
242
249
|
_DE,
|
|
243
250
|
2,
|
|
244
|
-
() => DeleteEnvironmentRequest
|
|
245
|
-
() => DeleteEnvironmentResult
|
|
251
|
+
() => DeleteEnvironmentRequest$,
|
|
252
|
+
() => DeleteEnvironmentResult$,
|
|
246
253
|
];
|
|
247
|
-
export var DeleteEnvironmentMembership = [
|
|
254
|
+
export var DeleteEnvironmentMembership$ = [
|
|
248
255
|
9,
|
|
249
256
|
n0,
|
|
250
257
|
_DEM,
|
|
251
258
|
2,
|
|
252
|
-
() => DeleteEnvironmentMembershipRequest
|
|
253
|
-
() => DeleteEnvironmentMembershipResult
|
|
259
|
+
() => DeleteEnvironmentMembershipRequest$,
|
|
260
|
+
() => DeleteEnvironmentMembershipResult$,
|
|
254
261
|
];
|
|
255
|
-
export var DescribeEnvironmentMemberships = [
|
|
262
|
+
export var DescribeEnvironmentMemberships$ = [
|
|
256
263
|
9,
|
|
257
264
|
n0,
|
|
258
265
|
_DEMe,
|
|
259
266
|
0,
|
|
260
|
-
() => DescribeEnvironmentMembershipsRequest
|
|
261
|
-
() => DescribeEnvironmentMembershipsResult
|
|
267
|
+
() => DescribeEnvironmentMembershipsRequest$,
|
|
268
|
+
() => DescribeEnvironmentMembershipsResult$,
|
|
262
269
|
];
|
|
263
|
-
export var DescribeEnvironments = [
|
|
270
|
+
export var DescribeEnvironments$ = [
|
|
264
271
|
9,
|
|
265
272
|
n0,
|
|
266
273
|
_DEe,
|
|
267
274
|
0,
|
|
268
|
-
() => DescribeEnvironmentsRequest
|
|
269
|
-
() => DescribeEnvironmentsResult
|
|
275
|
+
() => DescribeEnvironmentsRequest$,
|
|
276
|
+
() => DescribeEnvironmentsResult$,
|
|
270
277
|
];
|
|
271
|
-
export var DescribeEnvironmentStatus = [
|
|
278
|
+
export var DescribeEnvironmentStatus$ = [
|
|
272
279
|
9,
|
|
273
280
|
n0,
|
|
274
281
|
_DES,
|
|
275
282
|
0,
|
|
276
|
-
() => DescribeEnvironmentStatusRequest
|
|
277
|
-
() => DescribeEnvironmentStatusResult
|
|
283
|
+
() => DescribeEnvironmentStatusRequest$,
|
|
284
|
+
() => DescribeEnvironmentStatusResult$,
|
|
278
285
|
];
|
|
279
|
-
export var ListEnvironments = [
|
|
286
|
+
export var ListEnvironments$ = [
|
|
280
287
|
9,
|
|
281
288
|
n0,
|
|
282
289
|
_LE,
|
|
283
290
|
0,
|
|
284
|
-
() => ListEnvironmentsRequest
|
|
285
|
-
() => ListEnvironmentsResult
|
|
291
|
+
() => ListEnvironmentsRequest$,
|
|
292
|
+
() => ListEnvironmentsResult$,
|
|
286
293
|
];
|
|
287
|
-
export var ListTagsForResource = [
|
|
294
|
+
export var ListTagsForResource$ = [
|
|
288
295
|
9,
|
|
289
296
|
n0,
|
|
290
297
|
_LTFR,
|
|
291
298
|
0,
|
|
292
|
-
() => ListTagsForResourceRequest
|
|
293
|
-
() => ListTagsForResourceResponse
|
|
299
|
+
() => ListTagsForResourceRequest$,
|
|
300
|
+
() => ListTagsForResourceResponse$,
|
|
294
301
|
];
|
|
295
|
-
export var TagResource = [9, n0, _TR, 0, () => TagResourceRequest
|
|
296
|
-
export var UntagResource = [
|
|
302
|
+
export var TagResource$ = [9, n0, _TR, 0, () => TagResourceRequest$, () => TagResourceResponse$];
|
|
303
|
+
export var UntagResource$ = [
|
|
297
304
|
9,
|
|
298
305
|
n0,
|
|
299
306
|
_UR,
|
|
300
307
|
0,
|
|
301
|
-
() => UntagResourceRequest
|
|
302
|
-
() => UntagResourceResponse
|
|
308
|
+
() => UntagResourceRequest$,
|
|
309
|
+
() => UntagResourceResponse$,
|
|
303
310
|
];
|
|
304
|
-
export var UpdateEnvironment = [
|
|
311
|
+
export var UpdateEnvironment$ = [
|
|
305
312
|
9,
|
|
306
313
|
n0,
|
|
307
314
|
_UE,
|
|
308
315
|
2,
|
|
309
|
-
() => UpdateEnvironmentRequest
|
|
310
|
-
() => UpdateEnvironmentResult
|
|
316
|
+
() => UpdateEnvironmentRequest$,
|
|
317
|
+
() => UpdateEnvironmentResult$,
|
|
311
318
|
];
|
|
312
|
-
export var UpdateEnvironmentMembership = [
|
|
319
|
+
export var UpdateEnvironmentMembership$ = [
|
|
313
320
|
9,
|
|
314
321
|
n0,
|
|
315
322
|
_UEM,
|
|
316
323
|
2,
|
|
317
|
-
() => UpdateEnvironmentMembershipRequest
|
|
318
|
-
() => UpdateEnvironmentMembershipResult
|
|
324
|
+
() => UpdateEnvironmentMembershipRequest$,
|
|
325
|
+
() => UpdateEnvironmentMembershipResult$,
|
|
319
326
|
];
|
|
@@ -5,7 +5,7 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
|
|
|
5
5
|
import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
|
|
8
|
-
import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ChecksumConstructor as __ChecksumConstructor, type
|
|
8
|
+
import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ChecksumConstructor as __ChecksumConstructor, type Decoder as __Decoder, type Encoder as __Encoder, type HashConstructor as __HashConstructor, type HttpHandlerOptions as __HttpHandlerOptions, type Logger as __Logger, type Provider as __Provider, type StreamCollector as __StreamCollector, type UrlParser as __UrlParser, AwsCredentialIdentityProvider, Provider, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { CreateEnvironmentEC2CommandInput, CreateEnvironmentEC2CommandOutput } from "./commands/CreateEnvironmentEC2Command";
|
|
11
11
|
import { CreateEnvironmentMembershipCommandInput, CreateEnvironmentMembershipCommandOutput } from "./commands/CreateEnvironmentMembershipCommand";
|
|
@@ -154,15 +154,6 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
154
154
|
* Optional extensions
|
|
155
155
|
*/
|
|
156
156
|
extensions?: RuntimeExtension[];
|
|
157
|
-
/**
|
|
158
|
-
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
159
|
-
* may be overridden. A default will always be set by the client.
|
|
160
|
-
* Available options depend on the service's supported protocols and will not be validated by
|
|
161
|
-
* the client.
|
|
162
|
-
* @alpha
|
|
163
|
-
*
|
|
164
|
-
*/
|
|
165
|
-
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
166
157
|
/**
|
|
167
158
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
168
159
|
*/
|
package/dist-types/index.d.ts
CHANGED
|
@@ -81,6 +81,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
81
81
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
82
82
|
export type { Cloud9ExtensionConfiguration } from "./extensionConfiguration";
|
|
83
83
|
export * from "./commands";
|
|
84
|
+
export * from "./schemas/schemas_0";
|
|
84
85
|
export * from "./pagination";
|
|
85
86
|
export * from "./models/enums";
|
|
86
87
|
export * from "./models/errors";
|
|
@@ -17,8 +17,13 @@ export declare const getRuntimeConfig: (config: Cloud9ClientConfig) => {
|
|
|
17
17
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
18
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
19
19
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
20
|
-
apiVersion: string;
|
|
21
20
|
cacheMiddleware?: boolean | undefined;
|
|
21
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_1Protocol;
|
|
22
|
+
protocolSettings: {
|
|
23
|
+
defaultNamespace?: string;
|
|
24
|
+
[setting: string]: unknown;
|
|
25
|
+
};
|
|
26
|
+
apiVersion: string;
|
|
22
27
|
urlParser: import("@smithy/types").UrlParser;
|
|
23
28
|
base64Decoder: import("@smithy/types").Decoder;
|
|
24
29
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -29,7 +34,6 @@ export declare const getRuntimeConfig: (config: Cloud9ClientConfig) => {
|
|
|
29
34
|
profile?: string;
|
|
30
35
|
logger: import("@smithy/types").Logger;
|
|
31
36
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
33
37
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
34
38
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
35
39
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -19,8 +19,13 @@ export declare const getRuntimeConfig: (config: Cloud9ClientConfig) => {
|
|
|
19
19
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
20
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
22
|
-
apiVersion: string;
|
|
23
22
|
cacheMiddleware?: boolean | undefined;
|
|
23
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_1Protocol;
|
|
24
|
+
protocolSettings: {
|
|
25
|
+
defaultNamespace?: string;
|
|
26
|
+
[setting: string]: unknown;
|
|
27
|
+
};
|
|
28
|
+
apiVersion: string;
|
|
24
29
|
urlParser: import("@smithy/types").UrlParser;
|
|
25
30
|
base64Decoder: import("@smithy/types").Decoder;
|
|
26
31
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -31,7 +36,6 @@ export declare const getRuntimeConfig: (config: Cloud9ClientConfig) => {
|
|
|
31
36
|
profile?: string;
|
|
32
37
|
logger: import("@smithy/types").Logger;
|
|
33
38
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
35
39
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
36
40
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
37
41
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|