@aws-sdk/client-codecatalyst 3.414.0 → 3.421.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/README.md +7 -7
- package/dist-cjs/commands/CreateAccessTokenCommand.js +5 -0
- package/dist-cjs/commands/CreateDevEnvironmentCommand.js +5 -0
- package/dist-cjs/commands/CreateProjectCommand.js +5 -0
- package/dist-cjs/commands/CreateSourceRepositoryBranchCommand.js +5 -0
- package/dist-cjs/commands/CreateSourceRepositoryCommand.js +5 -0
- package/dist-cjs/commands/DeleteAccessTokenCommand.js +5 -0
- package/dist-cjs/commands/DeleteDevEnvironmentCommand.js +5 -0
- package/dist-cjs/commands/DeleteProjectCommand.js +5 -0
- package/dist-cjs/commands/DeleteSourceRepositoryCommand.js +5 -0
- package/dist-cjs/commands/DeleteSpaceCommand.js +5 -0
- package/dist-cjs/commands/GetDevEnvironmentCommand.js +5 -0
- package/dist-cjs/commands/GetProjectCommand.js +5 -0
- package/dist-cjs/commands/GetSourceRepositoryCloneUrlsCommand.js +5 -0
- package/dist-cjs/commands/GetSourceRepositoryCommand.js +5 -0
- package/dist-cjs/commands/GetSpaceCommand.js +5 -0
- package/dist-cjs/commands/GetSubscriptionCommand.js +5 -0
- package/dist-cjs/commands/GetUserDetailsCommand.js +5 -0
- package/dist-cjs/commands/ListAccessTokensCommand.js +5 -0
- package/dist-cjs/commands/ListDevEnvironmentSessionsCommand.js +5 -0
- package/dist-cjs/commands/ListDevEnvironmentsCommand.js +5 -0
- package/dist-cjs/commands/ListEventLogsCommand.js +5 -0
- package/dist-cjs/commands/ListProjectsCommand.js +5 -0
- package/dist-cjs/commands/ListSourceRepositoriesCommand.js +5 -0
- package/dist-cjs/commands/ListSourceRepositoryBranchesCommand.js +5 -0
- package/dist-cjs/commands/ListSpacesCommand.js +5 -0
- package/dist-cjs/commands/StartDevEnvironmentCommand.js +5 -0
- package/dist-cjs/commands/StartDevEnvironmentSessionCommand.js +5 -0
- package/dist-cjs/commands/StopDevEnvironmentCommand.js +5 -0
- package/dist-cjs/commands/StopDevEnvironmentSessionCommand.js +5 -0
- package/dist-cjs/commands/UpdateDevEnvironmentCommand.js +5 -0
- package/dist-cjs/commands/UpdateProjectCommand.js +5 -0
- package/dist-cjs/commands/UpdateSpaceCommand.js +5 -0
- package/dist-cjs/commands/VerifySessionCommand.js +5 -0
- package/dist-es/commands/CreateAccessTokenCommand.js +5 -0
- package/dist-es/commands/CreateDevEnvironmentCommand.js +5 -0
- package/dist-es/commands/CreateProjectCommand.js +5 -0
- package/dist-es/commands/CreateSourceRepositoryBranchCommand.js +5 -0
- package/dist-es/commands/CreateSourceRepositoryCommand.js +5 -0
- package/dist-es/commands/DeleteAccessTokenCommand.js +5 -0
- package/dist-es/commands/DeleteDevEnvironmentCommand.js +5 -0
- package/dist-es/commands/DeleteProjectCommand.js +5 -0
- package/dist-es/commands/DeleteSourceRepositoryCommand.js +5 -0
- package/dist-es/commands/DeleteSpaceCommand.js +5 -0
- package/dist-es/commands/GetDevEnvironmentCommand.js +5 -0
- package/dist-es/commands/GetProjectCommand.js +5 -0
- package/dist-es/commands/GetSourceRepositoryCloneUrlsCommand.js +5 -0
- package/dist-es/commands/GetSourceRepositoryCommand.js +5 -0
- package/dist-es/commands/GetSpaceCommand.js +5 -0
- package/dist-es/commands/GetSubscriptionCommand.js +5 -0
- package/dist-es/commands/GetUserDetailsCommand.js +5 -0
- package/dist-es/commands/ListAccessTokensCommand.js +5 -0
- package/dist-es/commands/ListDevEnvironmentSessionsCommand.js +5 -0
- package/dist-es/commands/ListDevEnvironmentsCommand.js +5 -0
- package/dist-es/commands/ListEventLogsCommand.js +5 -0
- package/dist-es/commands/ListProjectsCommand.js +5 -0
- package/dist-es/commands/ListSourceRepositoriesCommand.js +5 -0
- package/dist-es/commands/ListSourceRepositoryBranchesCommand.js +5 -0
- package/dist-es/commands/ListSpacesCommand.js +5 -0
- package/dist-es/commands/StartDevEnvironmentCommand.js +5 -0
- package/dist-es/commands/StartDevEnvironmentSessionCommand.js +5 -0
- package/dist-es/commands/StopDevEnvironmentCommand.js +5 -0
- package/dist-es/commands/StopDevEnvironmentSessionCommand.js +5 -0
- package/dist-es/commands/UpdateDevEnvironmentCommand.js +5 -0
- package/dist-es/commands/UpdateProjectCommand.js +5 -0
- package/dist-es/commands/UpdateSpaceCommand.js +5 -0
- package/dist-es/commands/VerifySessionCommand.js +5 -0
- package/package.json +29 -29
package/README.md
CHANGED
|
@@ -174,16 +174,16 @@ using your favorite package manager:
|
|
|
174
174
|
|
|
175
175
|
The AWS SDK is modulized by clients and commands.
|
|
176
176
|
To send a request, you only need to import the `CodeCatalystClient` and
|
|
177
|
-
the commands you need, for example `
|
|
177
|
+
the commands you need, for example `ListSpacesCommand`:
|
|
178
178
|
|
|
179
179
|
```js
|
|
180
180
|
// ES5 example
|
|
181
|
-
const { CodeCatalystClient,
|
|
181
|
+
const { CodeCatalystClient, ListSpacesCommand } = require("@aws-sdk/client-codecatalyst");
|
|
182
182
|
```
|
|
183
183
|
|
|
184
184
|
```ts
|
|
185
185
|
// ES6+ example
|
|
186
|
-
import { CodeCatalystClient,
|
|
186
|
+
import { CodeCatalystClient, ListSpacesCommand } from "@aws-sdk/client-codecatalyst";
|
|
187
187
|
```
|
|
188
188
|
|
|
189
189
|
### Usage
|
|
@@ -202,7 +202,7 @@ const client = new CodeCatalystClient({ region: "REGION" });
|
|
|
202
202
|
const params = {
|
|
203
203
|
/** input parameters */
|
|
204
204
|
};
|
|
205
|
-
const command = new
|
|
205
|
+
const command = new ListSpacesCommand(params);
|
|
206
206
|
```
|
|
207
207
|
|
|
208
208
|
#### Async/await
|
|
@@ -281,7 +281,7 @@ const client = new AWS.CodeCatalyst({ region: "REGION" });
|
|
|
281
281
|
|
|
282
282
|
// async/await.
|
|
283
283
|
try {
|
|
284
|
-
const data = await client.
|
|
284
|
+
const data = await client.listSpaces(params);
|
|
285
285
|
// process data.
|
|
286
286
|
} catch (error) {
|
|
287
287
|
// error handling.
|
|
@@ -289,7 +289,7 @@ try {
|
|
|
289
289
|
|
|
290
290
|
// Promises.
|
|
291
291
|
client
|
|
292
|
-
.
|
|
292
|
+
.listSpaces(params)
|
|
293
293
|
.then((data) => {
|
|
294
294
|
// process data.
|
|
295
295
|
})
|
|
@@ -298,7 +298,7 @@ client
|
|
|
298
298
|
});
|
|
299
299
|
|
|
300
300
|
// callbacks.
|
|
301
|
-
client.
|
|
301
|
+
client.listSpaces(params, (err, data) => {
|
|
302
302
|
// process err and data.
|
|
303
303
|
});
|
|
304
304
|
```
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const models_0_1 = require("../models/models_0");
|
|
9
10
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
11
|
class CreateAccessTokenCommand extends smithy_client_1.Command {
|
|
@@ -32,6 +33,10 @@ class CreateAccessTokenCommand extends smithy_client_1.Command {
|
|
|
32
33
|
commandName,
|
|
33
34
|
inputFilterSensitiveLog: (_) => _,
|
|
34
35
|
outputFilterSensitiveLog: models_0_1.CreateAccessTokenResponseFilterSensitiveLog,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "CodeCatalyst",
|
|
38
|
+
operation: "CreateAccessToken",
|
|
39
|
+
},
|
|
35
40
|
};
|
|
36
41
|
const { requestHandler } = configuration;
|
|
37
42
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class CreateDevEnvironmentCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,6 +32,10 @@ class CreateDevEnvironmentCommand extends smithy_client_1.Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "CodeCatalyst",
|
|
37
|
+
operation: "CreateDevEnvironment",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class CreateProjectCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,6 +32,10 @@ class CreateProjectCommand extends smithy_client_1.Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "CodeCatalyst",
|
|
37
|
+
operation: "CreateProject",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class CreateSourceRepositoryBranchCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,6 +32,10 @@ class CreateSourceRepositoryBranchCommand extends smithy_client_1.Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "CodeCatalyst",
|
|
37
|
+
operation: "CreateSourceRepositoryBranch",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class CreateSourceRepositoryCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,6 +32,10 @@ class CreateSourceRepositoryCommand extends smithy_client_1.Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "CodeCatalyst",
|
|
37
|
+
operation: "CreateSourceRepository",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class DeleteAccessTokenCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,6 +32,10 @@ class DeleteAccessTokenCommand extends smithy_client_1.Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "CodeCatalyst",
|
|
37
|
+
operation: "DeleteAccessToken",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class DeleteDevEnvironmentCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,6 +32,10 @@ class DeleteDevEnvironmentCommand extends smithy_client_1.Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "CodeCatalyst",
|
|
37
|
+
operation: "DeleteDevEnvironment",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class DeleteProjectCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,6 +32,10 @@ class DeleteProjectCommand extends smithy_client_1.Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "CodeCatalyst",
|
|
37
|
+
operation: "DeleteProject",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class DeleteSourceRepositoryCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,6 +32,10 @@ class DeleteSourceRepositoryCommand extends smithy_client_1.Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "CodeCatalyst",
|
|
37
|
+
operation: "DeleteSourceRepository",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class DeleteSpaceCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,6 +32,10 @@ class DeleteSpaceCommand extends smithy_client_1.Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "CodeCatalyst",
|
|
37
|
+
operation: "DeleteSpace",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class GetDevEnvironmentCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,6 +32,10 @@ class GetDevEnvironmentCommand extends smithy_client_1.Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "CodeCatalyst",
|
|
37
|
+
operation: "GetDevEnvironment",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class GetProjectCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,6 +32,10 @@ class GetProjectCommand extends smithy_client_1.Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "CodeCatalyst",
|
|
37
|
+
operation: "GetProject",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class GetSourceRepositoryCloneUrlsCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,6 +32,10 @@ class GetSourceRepositoryCloneUrlsCommand extends smithy_client_1.Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "CodeCatalyst",
|
|
37
|
+
operation: "GetSourceRepositoryCloneUrls",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class GetSourceRepositoryCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,6 +32,10 @@ class GetSourceRepositoryCommand extends smithy_client_1.Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "CodeCatalyst",
|
|
37
|
+
operation: "GetSourceRepository",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class GetSpaceCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,6 +32,10 @@ class GetSpaceCommand extends smithy_client_1.Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "CodeCatalyst",
|
|
37
|
+
operation: "GetSpace",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class GetSubscriptionCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,6 +32,10 @@ class GetSubscriptionCommand extends smithy_client_1.Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "CodeCatalyst",
|
|
37
|
+
operation: "GetSubscription",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class GetUserDetailsCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,6 +32,10 @@ class GetUserDetailsCommand extends smithy_client_1.Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "CodeCatalyst",
|
|
37
|
+
operation: "GetUserDetails",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class ListAccessTokensCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,6 +32,10 @@ class ListAccessTokensCommand extends smithy_client_1.Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "CodeCatalyst",
|
|
37
|
+
operation: "ListAccessTokens",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class ListDevEnvironmentSessionsCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,6 +32,10 @@ class ListDevEnvironmentSessionsCommand extends smithy_client_1.Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "CodeCatalyst",
|
|
37
|
+
operation: "ListDevEnvironmentSessions",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class ListDevEnvironmentsCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,6 +32,10 @@ class ListDevEnvironmentsCommand extends smithy_client_1.Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "CodeCatalyst",
|
|
37
|
+
operation: "ListDevEnvironments",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class ListEventLogsCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,6 +32,10 @@ class ListEventLogsCommand extends smithy_client_1.Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "CodeCatalyst",
|
|
37
|
+
operation: "ListEventLogs",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class ListProjectsCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,6 +32,10 @@ class ListProjectsCommand extends smithy_client_1.Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "CodeCatalyst",
|
|
37
|
+
operation: "ListProjects",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class ListSourceRepositoriesCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,6 +32,10 @@ class ListSourceRepositoriesCommand extends smithy_client_1.Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "CodeCatalyst",
|
|
37
|
+
operation: "ListSourceRepositories",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class ListSourceRepositoryBranchesCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,6 +32,10 @@ class ListSourceRepositoryBranchesCommand extends smithy_client_1.Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "CodeCatalyst",
|
|
37
|
+
operation: "ListSourceRepositoryBranches",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class ListSpacesCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,6 +32,10 @@ class ListSpacesCommand extends smithy_client_1.Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "CodeCatalyst",
|
|
37
|
+
operation: "ListSpaces",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class StartDevEnvironmentCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,6 +32,10 @@ class StartDevEnvironmentCommand extends smithy_client_1.Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "CodeCatalyst",
|
|
37
|
+
operation: "StartDevEnvironment",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const models_0_1 = require("../models/models_0");
|
|
9
10
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
11
|
class StartDevEnvironmentSessionCommand extends smithy_client_1.Command {
|
|
@@ -32,6 +33,10 @@ class StartDevEnvironmentSessionCommand extends smithy_client_1.Command {
|
|
|
32
33
|
commandName,
|
|
33
34
|
inputFilterSensitiveLog: (_) => _,
|
|
34
35
|
outputFilterSensitiveLog: models_0_1.StartDevEnvironmentSessionResponseFilterSensitiveLog,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "CodeCatalyst",
|
|
38
|
+
operation: "StartDevEnvironmentSession",
|
|
39
|
+
},
|
|
35
40
|
};
|
|
36
41
|
const { requestHandler } = configuration;
|
|
37
42
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class StopDevEnvironmentCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,6 +32,10 @@ class StopDevEnvironmentCommand extends smithy_client_1.Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "CodeCatalyst",
|
|
37
|
+
operation: "StopDevEnvironment",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class StopDevEnvironmentSessionCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,6 +32,10 @@ class StopDevEnvironmentSessionCommand extends smithy_client_1.Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "CodeCatalyst",
|
|
37
|
+
operation: "StopDevEnvironmentSession",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|