@aws-sdk/client-codecatalyst 3.297.0 → 3.298.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/commands/CreateAccessTokenCommand.js +1 -1
- package/dist-cjs/commands/CreateDevEnvironmentCommand.js +2 -3
- package/dist-cjs/commands/CreateProjectCommand.js +2 -3
- package/dist-cjs/commands/CreateSourceRepositoryBranchCommand.js +2 -3
- package/dist-cjs/commands/DeleteAccessTokenCommand.js +2 -3
- package/dist-cjs/commands/DeleteDevEnvironmentCommand.js +2 -3
- package/dist-cjs/commands/GetDevEnvironmentCommand.js +2 -3
- package/dist-cjs/commands/GetProjectCommand.js +2 -3
- package/dist-cjs/commands/GetSourceRepositoryCloneUrlsCommand.js +2 -3
- package/dist-cjs/commands/GetSpaceCommand.js +2 -3
- package/dist-cjs/commands/GetSubscriptionCommand.js +2 -3
- package/dist-cjs/commands/GetUserDetailsCommand.js +2 -3
- package/dist-cjs/commands/ListAccessTokensCommand.js +2 -3
- package/dist-cjs/commands/ListDevEnvironmentsCommand.js +2 -3
- package/dist-cjs/commands/ListEventLogsCommand.js +2 -3
- package/dist-cjs/commands/ListProjectsCommand.js +2 -3
- package/dist-cjs/commands/ListSourceRepositoriesCommand.js +2 -3
- package/dist-cjs/commands/ListSourceRepositoryBranchesCommand.js +2 -3
- package/dist-cjs/commands/ListSpacesCommand.js +2 -3
- package/dist-cjs/commands/StartDevEnvironmentCommand.js +2 -3
- package/dist-cjs/commands/StartDevEnvironmentSessionCommand.js +1 -1
- package/dist-cjs/commands/StopDevEnvironmentCommand.js +2 -3
- package/dist-cjs/commands/StopDevEnvironmentSessionCommand.js +2 -3
- package/dist-cjs/commands/UpdateDevEnvironmentCommand.js +2 -3
- package/dist-cjs/commands/VerifySessionCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -274
- package/dist-es/commands/CreateAccessTokenCommand.js +2 -2
- package/dist-es/commands/CreateDevEnvironmentCommand.js +2 -3
- package/dist-es/commands/CreateProjectCommand.js +2 -3
- package/dist-es/commands/CreateSourceRepositoryBranchCommand.js +2 -3
- package/dist-es/commands/DeleteAccessTokenCommand.js +2 -3
- package/dist-es/commands/DeleteDevEnvironmentCommand.js +2 -3
- package/dist-es/commands/GetDevEnvironmentCommand.js +2 -3
- package/dist-es/commands/GetProjectCommand.js +2 -3
- package/dist-es/commands/GetSourceRepositoryCloneUrlsCommand.js +2 -3
- package/dist-es/commands/GetSpaceCommand.js +2 -3
- package/dist-es/commands/GetSubscriptionCommand.js +2 -3
- package/dist-es/commands/GetUserDetailsCommand.js +2 -3
- package/dist-es/commands/ListAccessTokensCommand.js +2 -3
- package/dist-es/commands/ListDevEnvironmentsCommand.js +2 -3
- package/dist-es/commands/ListEventLogsCommand.js +2 -3
- package/dist-es/commands/ListProjectsCommand.js +2 -3
- package/dist-es/commands/ListSourceRepositoriesCommand.js +2 -3
- package/dist-es/commands/ListSourceRepositoryBranchesCommand.js +2 -3
- package/dist-es/commands/ListSpacesCommand.js +2 -3
- package/dist-es/commands/StartDevEnvironmentCommand.js +2 -3
- package/dist-es/commands/StartDevEnvironmentSessionCommand.js +2 -2
- package/dist-es/commands/StopDevEnvironmentCommand.js +2 -3
- package/dist-es/commands/StopDevEnvironmentSessionCommand.js +2 -3
- package/dist-es/commands/UpdateDevEnvironmentCommand.js +2 -3
- package/dist-es/commands/VerifySessionCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -204
- package/dist-types/models/models_0.d.ts +0 -272
- package/dist-types/ts3.4/models/models_0.d.ts +0 -192
- package/package.json +3 -2
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ListSourceRepositoryBranchesRequestFilterSensitiveLog, ListSourceRepositoryBranchesResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1ListSourceRepositoryBranchesCommand, serializeAws_restJson1ListSourceRepositoryBranchesCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class ListSourceRepositoryBranchesCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -26,8 +25,8 @@ export class ListSourceRepositoryBranchesCommand extends $Command {
|
|
|
26
25
|
logger,
|
|
27
26
|
clientName,
|
|
28
27
|
commandName,
|
|
29
|
-
inputFilterSensitiveLog:
|
|
30
|
-
outputFilterSensitiveLog:
|
|
28
|
+
inputFilterSensitiveLog: (_) => _,
|
|
29
|
+
outputFilterSensitiveLog: (_) => _,
|
|
31
30
|
};
|
|
32
31
|
const { requestHandler } = configuration;
|
|
33
32
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ListSpacesRequestFilterSensitiveLog, ListSpacesResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1ListSpacesCommand, serializeAws_restJson1ListSpacesCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class ListSpacesCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -26,8 +25,8 @@ export class ListSpacesCommand extends $Command {
|
|
|
26
25
|
logger,
|
|
27
26
|
clientName,
|
|
28
27
|
commandName,
|
|
29
|
-
inputFilterSensitiveLog:
|
|
30
|
-
outputFilterSensitiveLog:
|
|
28
|
+
inputFilterSensitiveLog: (_) => _,
|
|
29
|
+
outputFilterSensitiveLog: (_) => _,
|
|
31
30
|
};
|
|
32
31
|
const { requestHandler } = configuration;
|
|
33
32
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { StartDevEnvironmentRequestFilterSensitiveLog, StartDevEnvironmentResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1StartDevEnvironmentCommand, serializeAws_restJson1StartDevEnvironmentCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class StartDevEnvironmentCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -26,8 +25,8 @@ export class StartDevEnvironmentCommand extends $Command {
|
|
|
26
25
|
logger,
|
|
27
26
|
clientName,
|
|
28
27
|
commandName,
|
|
29
|
-
inputFilterSensitiveLog:
|
|
30
|
-
outputFilterSensitiveLog:
|
|
28
|
+
inputFilterSensitiveLog: (_) => _,
|
|
29
|
+
outputFilterSensitiveLog: (_) => _,
|
|
31
30
|
};
|
|
32
31
|
const { requestHandler } = configuration;
|
|
33
32
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { StartDevEnvironmentSessionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1StartDevEnvironmentSessionCommand, serializeAws_restJson1StartDevEnvironmentSessionCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
export class StartDevEnvironmentSessionCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
@@ -26,7 +26,7 @@ export class StartDevEnvironmentSessionCommand extends $Command {
|
|
|
26
26
|
logger,
|
|
27
27
|
clientName,
|
|
28
28
|
commandName,
|
|
29
|
-
inputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
30
|
outputFilterSensitiveLog: StartDevEnvironmentSessionResponseFilterSensitiveLog,
|
|
31
31
|
};
|
|
32
32
|
const { requestHandler } = configuration;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { StopDevEnvironmentRequestFilterSensitiveLog, StopDevEnvironmentResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1StopDevEnvironmentCommand, serializeAws_restJson1StopDevEnvironmentCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class StopDevEnvironmentCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -26,8 +25,8 @@ export class StopDevEnvironmentCommand extends $Command {
|
|
|
26
25
|
logger,
|
|
27
26
|
clientName,
|
|
28
27
|
commandName,
|
|
29
|
-
inputFilterSensitiveLog:
|
|
30
|
-
outputFilterSensitiveLog:
|
|
28
|
+
inputFilterSensitiveLog: (_) => _,
|
|
29
|
+
outputFilterSensitiveLog: (_) => _,
|
|
31
30
|
};
|
|
32
31
|
const { requestHandler } = configuration;
|
|
33
32
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { StopDevEnvironmentSessionRequestFilterSensitiveLog, StopDevEnvironmentSessionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1StopDevEnvironmentSessionCommand, serializeAws_restJson1StopDevEnvironmentSessionCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class StopDevEnvironmentSessionCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -26,8 +25,8 @@ export class StopDevEnvironmentSessionCommand extends $Command {
|
|
|
26
25
|
logger,
|
|
27
26
|
clientName,
|
|
28
27
|
commandName,
|
|
29
|
-
inputFilterSensitiveLog:
|
|
30
|
-
outputFilterSensitiveLog:
|
|
28
|
+
inputFilterSensitiveLog: (_) => _,
|
|
29
|
+
outputFilterSensitiveLog: (_) => _,
|
|
31
30
|
};
|
|
32
31
|
const { requestHandler } = configuration;
|
|
33
32
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { UpdateDevEnvironmentRequestFilterSensitiveLog, UpdateDevEnvironmentResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1UpdateDevEnvironmentCommand, serializeAws_restJson1UpdateDevEnvironmentCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class UpdateDevEnvironmentCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -26,8 +25,8 @@ export class UpdateDevEnvironmentCommand extends $Command {
|
|
|
26
25
|
logger,
|
|
27
26
|
clientName,
|
|
28
27
|
commandName,
|
|
29
|
-
inputFilterSensitiveLog:
|
|
30
|
-
outputFilterSensitiveLog:
|
|
28
|
+
inputFilterSensitiveLog: (_) => _,
|
|
29
|
+
outputFilterSensitiveLog: (_) => _,
|
|
31
30
|
};
|
|
32
31
|
const { requestHandler } = configuration;
|
|
33
32
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { VerifySessionResponseFilterSensitiveLog } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1VerifySessionCommand, serializeAws_restJson1VerifySessionCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class VerifySessionCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -26,8 +25,8 @@ export class VerifySessionCommand extends $Command {
|
|
|
26
25
|
logger,
|
|
27
26
|
clientName,
|
|
28
27
|
commandName,
|
|
29
|
-
inputFilterSensitiveLog: (
|
|
30
|
-
outputFilterSensitiveLog:
|
|
28
|
+
inputFilterSensitiveLog: (_) => _,
|
|
29
|
+
outputFilterSensitiveLog: (_) => _,
|
|
31
30
|
};
|
|
32
31
|
const { requestHandler } = configuration;
|
|
33
32
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -124,139 +124,10 @@ export var FilterKey;
|
|
|
124
124
|
(function (FilterKey) {
|
|
125
125
|
FilterKey["HAS_ACCESS_TO"] = "hasAccessTo";
|
|
126
126
|
})(FilterKey || (FilterKey = {}));
|
|
127
|
-
export const CreateAccessTokenRequestFilterSensitiveLog = (obj) => ({
|
|
128
|
-
...obj,
|
|
129
|
-
});
|
|
130
127
|
export const CreateAccessTokenResponseFilterSensitiveLog = (obj) => ({
|
|
131
128
|
...obj,
|
|
132
129
|
...(obj.secret && { secret: SENSITIVE_STRING }),
|
|
133
130
|
});
|
|
134
|
-
export const DeleteAccessTokenRequestFilterSensitiveLog = (obj) => ({
|
|
135
|
-
...obj,
|
|
136
|
-
});
|
|
137
|
-
export const DeleteAccessTokenResponseFilterSensitiveLog = (obj) => ({
|
|
138
|
-
...obj,
|
|
139
|
-
});
|
|
140
|
-
export const ListAccessTokensRequestFilterSensitiveLog = (obj) => ({
|
|
141
|
-
...obj,
|
|
142
|
-
});
|
|
143
|
-
export const AccessTokenSummaryFilterSensitiveLog = (obj) => ({
|
|
144
|
-
...obj,
|
|
145
|
-
});
|
|
146
|
-
export const ListAccessTokensResponseFilterSensitiveLog = (obj) => ({
|
|
147
|
-
...obj,
|
|
148
|
-
});
|
|
149
|
-
export const GetUserDetailsRequestFilterSensitiveLog = (obj) => ({
|
|
150
|
-
...obj,
|
|
151
|
-
});
|
|
152
|
-
export const EmailAddressFilterSensitiveLog = (obj) => ({
|
|
153
|
-
...obj,
|
|
154
|
-
});
|
|
155
|
-
export const GetUserDetailsResponseFilterSensitiveLog = (obj) => ({
|
|
156
|
-
...obj,
|
|
157
|
-
});
|
|
158
|
-
export const ListEventLogsRequestFilterSensitiveLog = (obj) => ({
|
|
159
|
-
...obj,
|
|
160
|
-
});
|
|
161
|
-
export const ProjectInformationFilterSensitiveLog = (obj) => ({
|
|
162
|
-
...obj,
|
|
163
|
-
});
|
|
164
|
-
export const EventPayloadFilterSensitiveLog = (obj) => ({
|
|
165
|
-
...obj,
|
|
166
|
-
});
|
|
167
|
-
export const UserIdentityFilterSensitiveLog = (obj) => ({
|
|
168
|
-
...obj,
|
|
169
|
-
});
|
|
170
|
-
export const EventLogEntryFilterSensitiveLog = (obj) => ({
|
|
171
|
-
...obj,
|
|
172
|
-
});
|
|
173
|
-
export const ListEventLogsResponseFilterSensitiveLog = (obj) => ({
|
|
174
|
-
...obj,
|
|
175
|
-
});
|
|
176
|
-
export const GetSpaceRequestFilterSensitiveLog = (obj) => ({
|
|
177
|
-
...obj,
|
|
178
|
-
});
|
|
179
|
-
export const GetSpaceResponseFilterSensitiveLog = (obj) => ({
|
|
180
|
-
...obj,
|
|
181
|
-
});
|
|
182
|
-
export const ListSpacesRequestFilterSensitiveLog = (obj) => ({
|
|
183
|
-
...obj,
|
|
184
|
-
});
|
|
185
|
-
export const SpaceSummaryFilterSensitiveLog = (obj) => ({
|
|
186
|
-
...obj,
|
|
187
|
-
});
|
|
188
|
-
export const ListSpacesResponseFilterSensitiveLog = (obj) => ({
|
|
189
|
-
...obj,
|
|
190
|
-
});
|
|
191
|
-
export const CreateProjectRequestFilterSensitiveLog = (obj) => ({
|
|
192
|
-
...obj,
|
|
193
|
-
});
|
|
194
|
-
export const CreateProjectResponseFilterSensitiveLog = (obj) => ({
|
|
195
|
-
...obj,
|
|
196
|
-
});
|
|
197
|
-
export const IdeConfigurationFilterSensitiveLog = (obj) => ({
|
|
198
|
-
...obj,
|
|
199
|
-
});
|
|
200
|
-
export const PersistentStorageConfigurationFilterSensitiveLog = (obj) => ({
|
|
201
|
-
...obj,
|
|
202
|
-
});
|
|
203
|
-
export const RepositoryInputFilterSensitiveLog = (obj) => ({
|
|
204
|
-
...obj,
|
|
205
|
-
});
|
|
206
|
-
export const CreateDevEnvironmentRequestFilterSensitiveLog = (obj) => ({
|
|
207
|
-
...obj,
|
|
208
|
-
});
|
|
209
|
-
export const CreateDevEnvironmentResponseFilterSensitiveLog = (obj) => ({
|
|
210
|
-
...obj,
|
|
211
|
-
});
|
|
212
|
-
export const DeleteDevEnvironmentRequestFilterSensitiveLog = (obj) => ({
|
|
213
|
-
...obj,
|
|
214
|
-
});
|
|
215
|
-
export const DeleteDevEnvironmentResponseFilterSensitiveLog = (obj) => ({
|
|
216
|
-
...obj,
|
|
217
|
-
});
|
|
218
|
-
export const GetDevEnvironmentRequestFilterSensitiveLog = (obj) => ({
|
|
219
|
-
...obj,
|
|
220
|
-
});
|
|
221
|
-
export const IdeFilterSensitiveLog = (obj) => ({
|
|
222
|
-
...obj,
|
|
223
|
-
});
|
|
224
|
-
export const PersistentStorageFilterSensitiveLog = (obj) => ({
|
|
225
|
-
...obj,
|
|
226
|
-
});
|
|
227
|
-
export const DevEnvironmentRepositorySummaryFilterSensitiveLog = (obj) => ({
|
|
228
|
-
...obj,
|
|
229
|
-
});
|
|
230
|
-
export const GetDevEnvironmentResponseFilterSensitiveLog = (obj) => ({
|
|
231
|
-
...obj,
|
|
232
|
-
});
|
|
233
|
-
export const FilterFilterSensitiveLog = (obj) => ({
|
|
234
|
-
...obj,
|
|
235
|
-
});
|
|
236
|
-
export const ListDevEnvironmentsRequestFilterSensitiveLog = (obj) => ({
|
|
237
|
-
...obj,
|
|
238
|
-
});
|
|
239
|
-
export const DevEnvironmentSummaryFilterSensitiveLog = (obj) => ({
|
|
240
|
-
...obj,
|
|
241
|
-
});
|
|
242
|
-
export const ListDevEnvironmentsResponseFilterSensitiveLog = (obj) => ({
|
|
243
|
-
...obj,
|
|
244
|
-
});
|
|
245
|
-
export const StartDevEnvironmentRequestFilterSensitiveLog = (obj) => ({
|
|
246
|
-
...obj,
|
|
247
|
-
});
|
|
248
|
-
export const StartDevEnvironmentResponseFilterSensitiveLog = (obj) => ({
|
|
249
|
-
...obj,
|
|
250
|
-
});
|
|
251
|
-
export const ExecuteCommandSessionConfigurationFilterSensitiveLog = (obj) => ({
|
|
252
|
-
...obj,
|
|
253
|
-
});
|
|
254
|
-
export const DevEnvironmentSessionConfigurationFilterSensitiveLog = (obj) => ({
|
|
255
|
-
...obj,
|
|
256
|
-
});
|
|
257
|
-
export const StartDevEnvironmentSessionRequestFilterSensitiveLog = (obj) => ({
|
|
258
|
-
...obj,
|
|
259
|
-
});
|
|
260
131
|
export const DevEnvironmentAccessDetailsFilterSensitiveLog = (obj) => ({
|
|
261
132
|
...obj,
|
|
262
133
|
...(obj.streamUrl && { streamUrl: SENSITIVE_STRING }),
|
|
@@ -266,78 +137,3 @@ export const StartDevEnvironmentSessionResponseFilterSensitiveLog = (obj) => ({
|
|
|
266
137
|
...obj,
|
|
267
138
|
...(obj.accessDetails && { accessDetails: SENSITIVE_STRING }),
|
|
268
139
|
});
|
|
269
|
-
export const StopDevEnvironmentRequestFilterSensitiveLog = (obj) => ({
|
|
270
|
-
...obj,
|
|
271
|
-
});
|
|
272
|
-
export const StopDevEnvironmentResponseFilterSensitiveLog = (obj) => ({
|
|
273
|
-
...obj,
|
|
274
|
-
});
|
|
275
|
-
export const StopDevEnvironmentSessionRequestFilterSensitiveLog = (obj) => ({
|
|
276
|
-
...obj,
|
|
277
|
-
});
|
|
278
|
-
export const StopDevEnvironmentSessionResponseFilterSensitiveLog = (obj) => ({
|
|
279
|
-
...obj,
|
|
280
|
-
});
|
|
281
|
-
export const UpdateDevEnvironmentRequestFilterSensitiveLog = (obj) => ({
|
|
282
|
-
...obj,
|
|
283
|
-
});
|
|
284
|
-
export const UpdateDevEnvironmentResponseFilterSensitiveLog = (obj) => ({
|
|
285
|
-
...obj,
|
|
286
|
-
});
|
|
287
|
-
export const GetProjectRequestFilterSensitiveLog = (obj) => ({
|
|
288
|
-
...obj,
|
|
289
|
-
});
|
|
290
|
-
export const GetProjectResponseFilterSensitiveLog = (obj) => ({
|
|
291
|
-
...obj,
|
|
292
|
-
});
|
|
293
|
-
export const ProjectListFilterFilterSensitiveLog = (obj) => ({
|
|
294
|
-
...obj,
|
|
295
|
-
});
|
|
296
|
-
export const ListProjectsRequestFilterSensitiveLog = (obj) => ({
|
|
297
|
-
...obj,
|
|
298
|
-
});
|
|
299
|
-
export const ProjectSummaryFilterSensitiveLog = (obj) => ({
|
|
300
|
-
...obj,
|
|
301
|
-
});
|
|
302
|
-
export const ListProjectsResponseFilterSensitiveLog = (obj) => ({
|
|
303
|
-
...obj,
|
|
304
|
-
});
|
|
305
|
-
export const GetSourceRepositoryCloneUrlsRequestFilterSensitiveLog = (obj) => ({
|
|
306
|
-
...obj,
|
|
307
|
-
});
|
|
308
|
-
export const GetSourceRepositoryCloneUrlsResponseFilterSensitiveLog = (obj) => ({
|
|
309
|
-
...obj,
|
|
310
|
-
});
|
|
311
|
-
export const ListSourceRepositoriesRequestFilterSensitiveLog = (obj) => ({
|
|
312
|
-
...obj,
|
|
313
|
-
});
|
|
314
|
-
export const ListSourceRepositoriesItemFilterSensitiveLog = (obj) => ({
|
|
315
|
-
...obj,
|
|
316
|
-
});
|
|
317
|
-
export const ListSourceRepositoriesResponseFilterSensitiveLog = (obj) => ({
|
|
318
|
-
...obj,
|
|
319
|
-
});
|
|
320
|
-
export const CreateSourceRepositoryBranchRequestFilterSensitiveLog = (obj) => ({
|
|
321
|
-
...obj,
|
|
322
|
-
});
|
|
323
|
-
export const CreateSourceRepositoryBranchResponseFilterSensitiveLog = (obj) => ({
|
|
324
|
-
...obj,
|
|
325
|
-
});
|
|
326
|
-
export const ListSourceRepositoryBranchesRequestFilterSensitiveLog = (obj) => ({
|
|
327
|
-
...obj,
|
|
328
|
-
});
|
|
329
|
-
export const ListSourceRepositoryBranchesItemFilterSensitiveLog = (obj) => ({
|
|
330
|
-
...obj,
|
|
331
|
-
});
|
|
332
|
-
export const ListSourceRepositoryBranchesResponseFilterSensitiveLog = (obj) => ({
|
|
333
|
-
...obj,
|
|
334
|
-
});
|
|
335
|
-
export const GetSubscriptionRequestFilterSensitiveLog = (obj) => ({
|
|
336
|
-
...obj,
|
|
337
|
-
});
|
|
338
|
-
export const GetSubscriptionResponseFilterSensitiveLog = (obj) => ({
|
|
339
|
-
...obj,
|
|
340
|
-
});
|
|
341
|
-
export const VerifySessionResponseFilterSensitiveLog = (obj) => ({
|
|
342
|
-
...obj,
|
|
343
|
-
});
|
|
@@ -1564,182 +1564,10 @@ export interface VerifySessionResponse {
|
|
|
1564
1564
|
*/
|
|
1565
1565
|
identity?: string;
|
|
1566
1566
|
}
|
|
1567
|
-
/**
|
|
1568
|
-
* @internal
|
|
1569
|
-
*/
|
|
1570
|
-
export declare const CreateAccessTokenRequestFilterSensitiveLog: (obj: CreateAccessTokenRequest) => any;
|
|
1571
1567
|
/**
|
|
1572
1568
|
* @internal
|
|
1573
1569
|
*/
|
|
1574
1570
|
export declare const CreateAccessTokenResponseFilterSensitiveLog: (obj: CreateAccessTokenResponse) => any;
|
|
1575
|
-
/**
|
|
1576
|
-
* @internal
|
|
1577
|
-
*/
|
|
1578
|
-
export declare const DeleteAccessTokenRequestFilterSensitiveLog: (obj: DeleteAccessTokenRequest) => any;
|
|
1579
|
-
/**
|
|
1580
|
-
* @internal
|
|
1581
|
-
*/
|
|
1582
|
-
export declare const DeleteAccessTokenResponseFilterSensitiveLog: (obj: DeleteAccessTokenResponse) => any;
|
|
1583
|
-
/**
|
|
1584
|
-
* @internal
|
|
1585
|
-
*/
|
|
1586
|
-
export declare const ListAccessTokensRequestFilterSensitiveLog: (obj: ListAccessTokensRequest) => any;
|
|
1587
|
-
/**
|
|
1588
|
-
* @internal
|
|
1589
|
-
*/
|
|
1590
|
-
export declare const AccessTokenSummaryFilterSensitiveLog: (obj: AccessTokenSummary) => any;
|
|
1591
|
-
/**
|
|
1592
|
-
* @internal
|
|
1593
|
-
*/
|
|
1594
|
-
export declare const ListAccessTokensResponseFilterSensitiveLog: (obj: ListAccessTokensResponse) => any;
|
|
1595
|
-
/**
|
|
1596
|
-
* @internal
|
|
1597
|
-
*/
|
|
1598
|
-
export declare const GetUserDetailsRequestFilterSensitiveLog: (obj: GetUserDetailsRequest) => any;
|
|
1599
|
-
/**
|
|
1600
|
-
* @internal
|
|
1601
|
-
*/
|
|
1602
|
-
export declare const EmailAddressFilterSensitiveLog: (obj: EmailAddress) => any;
|
|
1603
|
-
/**
|
|
1604
|
-
* @internal
|
|
1605
|
-
*/
|
|
1606
|
-
export declare const GetUserDetailsResponseFilterSensitiveLog: (obj: GetUserDetailsResponse) => any;
|
|
1607
|
-
/**
|
|
1608
|
-
* @internal
|
|
1609
|
-
*/
|
|
1610
|
-
export declare const ListEventLogsRequestFilterSensitiveLog: (obj: ListEventLogsRequest) => any;
|
|
1611
|
-
/**
|
|
1612
|
-
* @internal
|
|
1613
|
-
*/
|
|
1614
|
-
export declare const ProjectInformationFilterSensitiveLog: (obj: ProjectInformation) => any;
|
|
1615
|
-
/**
|
|
1616
|
-
* @internal
|
|
1617
|
-
*/
|
|
1618
|
-
export declare const EventPayloadFilterSensitiveLog: (obj: EventPayload) => any;
|
|
1619
|
-
/**
|
|
1620
|
-
* @internal
|
|
1621
|
-
*/
|
|
1622
|
-
export declare const UserIdentityFilterSensitiveLog: (obj: UserIdentity) => any;
|
|
1623
|
-
/**
|
|
1624
|
-
* @internal
|
|
1625
|
-
*/
|
|
1626
|
-
export declare const EventLogEntryFilterSensitiveLog: (obj: EventLogEntry) => any;
|
|
1627
|
-
/**
|
|
1628
|
-
* @internal
|
|
1629
|
-
*/
|
|
1630
|
-
export declare const ListEventLogsResponseFilterSensitiveLog: (obj: ListEventLogsResponse) => any;
|
|
1631
|
-
/**
|
|
1632
|
-
* @internal
|
|
1633
|
-
*/
|
|
1634
|
-
export declare const GetSpaceRequestFilterSensitiveLog: (obj: GetSpaceRequest) => any;
|
|
1635
|
-
/**
|
|
1636
|
-
* @internal
|
|
1637
|
-
*/
|
|
1638
|
-
export declare const GetSpaceResponseFilterSensitiveLog: (obj: GetSpaceResponse) => any;
|
|
1639
|
-
/**
|
|
1640
|
-
* @internal
|
|
1641
|
-
*/
|
|
1642
|
-
export declare const ListSpacesRequestFilterSensitiveLog: (obj: ListSpacesRequest) => any;
|
|
1643
|
-
/**
|
|
1644
|
-
* @internal
|
|
1645
|
-
*/
|
|
1646
|
-
export declare const SpaceSummaryFilterSensitiveLog: (obj: SpaceSummary) => any;
|
|
1647
|
-
/**
|
|
1648
|
-
* @internal
|
|
1649
|
-
*/
|
|
1650
|
-
export declare const ListSpacesResponseFilterSensitiveLog: (obj: ListSpacesResponse) => any;
|
|
1651
|
-
/**
|
|
1652
|
-
* @internal
|
|
1653
|
-
*/
|
|
1654
|
-
export declare const CreateProjectRequestFilterSensitiveLog: (obj: CreateProjectRequest) => any;
|
|
1655
|
-
/**
|
|
1656
|
-
* @internal
|
|
1657
|
-
*/
|
|
1658
|
-
export declare const CreateProjectResponseFilterSensitiveLog: (obj: CreateProjectResponse) => any;
|
|
1659
|
-
/**
|
|
1660
|
-
* @internal
|
|
1661
|
-
*/
|
|
1662
|
-
export declare const IdeConfigurationFilterSensitiveLog: (obj: IdeConfiguration) => any;
|
|
1663
|
-
/**
|
|
1664
|
-
* @internal
|
|
1665
|
-
*/
|
|
1666
|
-
export declare const PersistentStorageConfigurationFilterSensitiveLog: (obj: PersistentStorageConfiguration) => any;
|
|
1667
|
-
/**
|
|
1668
|
-
* @internal
|
|
1669
|
-
*/
|
|
1670
|
-
export declare const RepositoryInputFilterSensitiveLog: (obj: RepositoryInput) => any;
|
|
1671
|
-
/**
|
|
1672
|
-
* @internal
|
|
1673
|
-
*/
|
|
1674
|
-
export declare const CreateDevEnvironmentRequestFilterSensitiveLog: (obj: CreateDevEnvironmentRequest) => any;
|
|
1675
|
-
/**
|
|
1676
|
-
* @internal
|
|
1677
|
-
*/
|
|
1678
|
-
export declare const CreateDevEnvironmentResponseFilterSensitiveLog: (obj: CreateDevEnvironmentResponse) => any;
|
|
1679
|
-
/**
|
|
1680
|
-
* @internal
|
|
1681
|
-
*/
|
|
1682
|
-
export declare const DeleteDevEnvironmentRequestFilterSensitiveLog: (obj: DeleteDevEnvironmentRequest) => any;
|
|
1683
|
-
/**
|
|
1684
|
-
* @internal
|
|
1685
|
-
*/
|
|
1686
|
-
export declare const DeleteDevEnvironmentResponseFilterSensitiveLog: (obj: DeleteDevEnvironmentResponse) => any;
|
|
1687
|
-
/**
|
|
1688
|
-
* @internal
|
|
1689
|
-
*/
|
|
1690
|
-
export declare const GetDevEnvironmentRequestFilterSensitiveLog: (obj: GetDevEnvironmentRequest) => any;
|
|
1691
|
-
/**
|
|
1692
|
-
* @internal
|
|
1693
|
-
*/
|
|
1694
|
-
export declare const IdeFilterSensitiveLog: (obj: Ide) => any;
|
|
1695
|
-
/**
|
|
1696
|
-
* @internal
|
|
1697
|
-
*/
|
|
1698
|
-
export declare const PersistentStorageFilterSensitiveLog: (obj: PersistentStorage) => any;
|
|
1699
|
-
/**
|
|
1700
|
-
* @internal
|
|
1701
|
-
*/
|
|
1702
|
-
export declare const DevEnvironmentRepositorySummaryFilterSensitiveLog: (obj: DevEnvironmentRepositorySummary) => any;
|
|
1703
|
-
/**
|
|
1704
|
-
* @internal
|
|
1705
|
-
*/
|
|
1706
|
-
export declare const GetDevEnvironmentResponseFilterSensitiveLog: (obj: GetDevEnvironmentResponse) => any;
|
|
1707
|
-
/**
|
|
1708
|
-
* @internal
|
|
1709
|
-
*/
|
|
1710
|
-
export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
|
|
1711
|
-
/**
|
|
1712
|
-
* @internal
|
|
1713
|
-
*/
|
|
1714
|
-
export declare const ListDevEnvironmentsRequestFilterSensitiveLog: (obj: ListDevEnvironmentsRequest) => any;
|
|
1715
|
-
/**
|
|
1716
|
-
* @internal
|
|
1717
|
-
*/
|
|
1718
|
-
export declare const DevEnvironmentSummaryFilterSensitiveLog: (obj: DevEnvironmentSummary) => any;
|
|
1719
|
-
/**
|
|
1720
|
-
* @internal
|
|
1721
|
-
*/
|
|
1722
|
-
export declare const ListDevEnvironmentsResponseFilterSensitiveLog: (obj: ListDevEnvironmentsResponse) => any;
|
|
1723
|
-
/**
|
|
1724
|
-
* @internal
|
|
1725
|
-
*/
|
|
1726
|
-
export declare const StartDevEnvironmentRequestFilterSensitiveLog: (obj: StartDevEnvironmentRequest) => any;
|
|
1727
|
-
/**
|
|
1728
|
-
* @internal
|
|
1729
|
-
*/
|
|
1730
|
-
export declare const StartDevEnvironmentResponseFilterSensitiveLog: (obj: StartDevEnvironmentResponse) => any;
|
|
1731
|
-
/**
|
|
1732
|
-
* @internal
|
|
1733
|
-
*/
|
|
1734
|
-
export declare const ExecuteCommandSessionConfigurationFilterSensitiveLog: (obj: ExecuteCommandSessionConfiguration) => any;
|
|
1735
|
-
/**
|
|
1736
|
-
* @internal
|
|
1737
|
-
*/
|
|
1738
|
-
export declare const DevEnvironmentSessionConfigurationFilterSensitiveLog: (obj: DevEnvironmentSessionConfiguration) => any;
|
|
1739
|
-
/**
|
|
1740
|
-
* @internal
|
|
1741
|
-
*/
|
|
1742
|
-
export declare const StartDevEnvironmentSessionRequestFilterSensitiveLog: (obj: StartDevEnvironmentSessionRequest) => any;
|
|
1743
1571
|
/**
|
|
1744
1572
|
* @internal
|
|
1745
1573
|
*/
|
|
@@ -1748,103 +1576,3 @@ export declare const DevEnvironmentAccessDetailsFilterSensitiveLog: (obj: DevEnv
|
|
|
1748
1576
|
* @internal
|
|
1749
1577
|
*/
|
|
1750
1578
|
export declare const StartDevEnvironmentSessionResponseFilterSensitiveLog: (obj: StartDevEnvironmentSessionResponse) => any;
|
|
1751
|
-
/**
|
|
1752
|
-
* @internal
|
|
1753
|
-
*/
|
|
1754
|
-
export declare const StopDevEnvironmentRequestFilterSensitiveLog: (obj: StopDevEnvironmentRequest) => any;
|
|
1755
|
-
/**
|
|
1756
|
-
* @internal
|
|
1757
|
-
*/
|
|
1758
|
-
export declare const StopDevEnvironmentResponseFilterSensitiveLog: (obj: StopDevEnvironmentResponse) => any;
|
|
1759
|
-
/**
|
|
1760
|
-
* @internal
|
|
1761
|
-
*/
|
|
1762
|
-
export declare const StopDevEnvironmentSessionRequestFilterSensitiveLog: (obj: StopDevEnvironmentSessionRequest) => any;
|
|
1763
|
-
/**
|
|
1764
|
-
* @internal
|
|
1765
|
-
*/
|
|
1766
|
-
export declare const StopDevEnvironmentSessionResponseFilterSensitiveLog: (obj: StopDevEnvironmentSessionResponse) => any;
|
|
1767
|
-
/**
|
|
1768
|
-
* @internal
|
|
1769
|
-
*/
|
|
1770
|
-
export declare const UpdateDevEnvironmentRequestFilterSensitiveLog: (obj: UpdateDevEnvironmentRequest) => any;
|
|
1771
|
-
/**
|
|
1772
|
-
* @internal
|
|
1773
|
-
*/
|
|
1774
|
-
export declare const UpdateDevEnvironmentResponseFilterSensitiveLog: (obj: UpdateDevEnvironmentResponse) => any;
|
|
1775
|
-
/**
|
|
1776
|
-
* @internal
|
|
1777
|
-
*/
|
|
1778
|
-
export declare const GetProjectRequestFilterSensitiveLog: (obj: GetProjectRequest) => any;
|
|
1779
|
-
/**
|
|
1780
|
-
* @internal
|
|
1781
|
-
*/
|
|
1782
|
-
export declare const GetProjectResponseFilterSensitiveLog: (obj: GetProjectResponse) => any;
|
|
1783
|
-
/**
|
|
1784
|
-
* @internal
|
|
1785
|
-
*/
|
|
1786
|
-
export declare const ProjectListFilterFilterSensitiveLog: (obj: ProjectListFilter) => any;
|
|
1787
|
-
/**
|
|
1788
|
-
* @internal
|
|
1789
|
-
*/
|
|
1790
|
-
export declare const ListProjectsRequestFilterSensitiveLog: (obj: ListProjectsRequest) => any;
|
|
1791
|
-
/**
|
|
1792
|
-
* @internal
|
|
1793
|
-
*/
|
|
1794
|
-
export declare const ProjectSummaryFilterSensitiveLog: (obj: ProjectSummary) => any;
|
|
1795
|
-
/**
|
|
1796
|
-
* @internal
|
|
1797
|
-
*/
|
|
1798
|
-
export declare const ListProjectsResponseFilterSensitiveLog: (obj: ListProjectsResponse) => any;
|
|
1799
|
-
/**
|
|
1800
|
-
* @internal
|
|
1801
|
-
*/
|
|
1802
|
-
export declare const GetSourceRepositoryCloneUrlsRequestFilterSensitiveLog: (obj: GetSourceRepositoryCloneUrlsRequest) => any;
|
|
1803
|
-
/**
|
|
1804
|
-
* @internal
|
|
1805
|
-
*/
|
|
1806
|
-
export declare const GetSourceRepositoryCloneUrlsResponseFilterSensitiveLog: (obj: GetSourceRepositoryCloneUrlsResponse) => any;
|
|
1807
|
-
/**
|
|
1808
|
-
* @internal
|
|
1809
|
-
*/
|
|
1810
|
-
export declare const ListSourceRepositoriesRequestFilterSensitiveLog: (obj: ListSourceRepositoriesRequest) => any;
|
|
1811
|
-
/**
|
|
1812
|
-
* @internal
|
|
1813
|
-
*/
|
|
1814
|
-
export declare const ListSourceRepositoriesItemFilterSensitiveLog: (obj: ListSourceRepositoriesItem) => any;
|
|
1815
|
-
/**
|
|
1816
|
-
* @internal
|
|
1817
|
-
*/
|
|
1818
|
-
export declare const ListSourceRepositoriesResponseFilterSensitiveLog: (obj: ListSourceRepositoriesResponse) => any;
|
|
1819
|
-
/**
|
|
1820
|
-
* @internal
|
|
1821
|
-
*/
|
|
1822
|
-
export declare const CreateSourceRepositoryBranchRequestFilterSensitiveLog: (obj: CreateSourceRepositoryBranchRequest) => any;
|
|
1823
|
-
/**
|
|
1824
|
-
* @internal
|
|
1825
|
-
*/
|
|
1826
|
-
export declare const CreateSourceRepositoryBranchResponseFilterSensitiveLog: (obj: CreateSourceRepositoryBranchResponse) => any;
|
|
1827
|
-
/**
|
|
1828
|
-
* @internal
|
|
1829
|
-
*/
|
|
1830
|
-
export declare const ListSourceRepositoryBranchesRequestFilterSensitiveLog: (obj: ListSourceRepositoryBranchesRequest) => any;
|
|
1831
|
-
/**
|
|
1832
|
-
* @internal
|
|
1833
|
-
*/
|
|
1834
|
-
export declare const ListSourceRepositoryBranchesItemFilterSensitiveLog: (obj: ListSourceRepositoryBranchesItem) => any;
|
|
1835
|
-
/**
|
|
1836
|
-
* @internal
|
|
1837
|
-
*/
|
|
1838
|
-
export declare const ListSourceRepositoryBranchesResponseFilterSensitiveLog: (obj: ListSourceRepositoryBranchesResponse) => any;
|
|
1839
|
-
/**
|
|
1840
|
-
* @internal
|
|
1841
|
-
*/
|
|
1842
|
-
export declare const GetSubscriptionRequestFilterSensitiveLog: (obj: GetSubscriptionRequest) => any;
|
|
1843
|
-
/**
|
|
1844
|
-
* @internal
|
|
1845
|
-
*/
|
|
1846
|
-
export declare const GetSubscriptionResponseFilterSensitiveLog: (obj: GetSubscriptionResponse) => any;
|
|
1847
|
-
/**
|
|
1848
|
-
* @internal
|
|
1849
|
-
*/
|
|
1850
|
-
export declare const VerifySessionResponseFilterSensitiveLog: (obj: VerifySessionResponse) => any;
|