@aws-sdk/client-codecatalyst 3.306.0 → 3.309.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 +2 -2
- package/dist-cjs/commands/CreateDevEnvironmentCommand.js +2 -2
- package/dist-cjs/commands/CreateProjectCommand.js +2 -2
- package/dist-cjs/commands/CreateSourceRepositoryBranchCommand.js +2 -2
- package/dist-cjs/commands/DeleteAccessTokenCommand.js +2 -2
- package/dist-cjs/commands/DeleteDevEnvironmentCommand.js +2 -2
- package/dist-cjs/commands/GetDevEnvironmentCommand.js +2 -2
- package/dist-cjs/commands/GetProjectCommand.js +2 -2
- package/dist-cjs/commands/GetSourceRepositoryCloneUrlsCommand.js +2 -2
- package/dist-cjs/commands/GetSpaceCommand.js +2 -2
- package/dist-cjs/commands/GetSubscriptionCommand.js +2 -2
- package/dist-cjs/commands/GetUserDetailsCommand.js +2 -2
- package/dist-cjs/commands/ListAccessTokensCommand.js +2 -2
- package/dist-cjs/commands/ListDevEnvironmentsCommand.js +2 -2
- package/dist-cjs/commands/ListEventLogsCommand.js +2 -2
- package/dist-cjs/commands/ListProjectsCommand.js +2 -2
- package/dist-cjs/commands/ListSourceRepositoriesCommand.js +2 -2
- package/dist-cjs/commands/ListSourceRepositoryBranchesCommand.js +2 -2
- package/dist-cjs/commands/ListSpacesCommand.js +2 -2
- package/dist-cjs/commands/StartDevEnvironmentCommand.js +2 -2
- package/dist-cjs/commands/StartDevEnvironmentSessionCommand.js +2 -2
- package/dist-cjs/commands/StopDevEnvironmentCommand.js +2 -2
- package/dist-cjs/commands/StopDevEnvironmentSessionCommand.js +2 -2
- package/dist-cjs/commands/UpdateDevEnvironmentCommand.js +2 -2
- package/dist-cjs/commands/VerifySessionCommand.js +2 -2
- package/dist-cjs/protocols/Aws_restJson1.js +392 -402
- package/dist-es/commands/CreateAccessTokenCommand.js +3 -3
- package/dist-es/commands/CreateDevEnvironmentCommand.js +3 -3
- package/dist-es/commands/CreateProjectCommand.js +3 -3
- package/dist-es/commands/CreateSourceRepositoryBranchCommand.js +3 -3
- package/dist-es/commands/DeleteAccessTokenCommand.js +3 -3
- package/dist-es/commands/DeleteDevEnvironmentCommand.js +3 -3
- package/dist-es/commands/GetDevEnvironmentCommand.js +3 -3
- package/dist-es/commands/GetProjectCommand.js +3 -3
- package/dist-es/commands/GetSourceRepositoryCloneUrlsCommand.js +3 -3
- package/dist-es/commands/GetSpaceCommand.js +3 -3
- package/dist-es/commands/GetSubscriptionCommand.js +3 -3
- package/dist-es/commands/GetUserDetailsCommand.js +3 -3
- package/dist-es/commands/ListAccessTokensCommand.js +3 -3
- package/dist-es/commands/ListDevEnvironmentsCommand.js +3 -3
- package/dist-es/commands/ListEventLogsCommand.js +3 -3
- package/dist-es/commands/ListProjectsCommand.js +3 -3
- package/dist-es/commands/ListSourceRepositoriesCommand.js +3 -3
- package/dist-es/commands/ListSourceRepositoryBranchesCommand.js +3 -3
- package/dist-es/commands/ListSpacesCommand.js +3 -3
- package/dist-es/commands/StartDevEnvironmentCommand.js +3 -3
- package/dist-es/commands/StartDevEnvironmentSessionCommand.js +3 -3
- package/dist-es/commands/StopDevEnvironmentCommand.js +3 -3
- package/dist-es/commands/StopDevEnvironmentSessionCommand.js +3 -3
- package/dist-es/commands/UpdateDevEnvironmentCommand.js +3 -3
- package/dist-es/commands/VerifySessionCommand.js +3 -3
- package/dist-es/protocols/Aws_restJson1.js +341 -351
- package/dist-types/protocols/Aws_restJson1.d.ts +200 -50
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +50 -50
- package/package.json +5 -5
|
@@ -2,7 +2,7 @@ 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
4
|
import { CreateAccessTokenResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
|
-
import {
|
|
5
|
+
import { de_CreateAccessTokenCommand, se_CreateAccessTokenCommand } from "../protocols/Aws_restJson1";
|
|
6
6
|
export class CreateAccessTokenCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
8
8
|
return {
|
|
@@ -33,9 +33,9 @@ export class CreateAccessTokenCommand extends $Command {
|
|
|
33
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
34
34
|
}
|
|
35
35
|
serialize(input, context) {
|
|
36
|
-
return
|
|
36
|
+
return se_CreateAccessTokenCommand(input, context);
|
|
37
37
|
}
|
|
38
38
|
deserialize(output, context) {
|
|
39
|
-
return
|
|
39
|
+
return de_CreateAccessTokenCommand(output, context);
|
|
40
40
|
}
|
|
41
41
|
}
|
|
@@ -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 { de_CreateDevEnvironmentCommand, se_CreateDevEnvironmentCommand } from "../protocols/Aws_restJson1";
|
|
5
5
|
export class CreateDevEnvironmentCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -32,9 +32,9 @@ export class CreateDevEnvironmentCommand extends $Command {
|
|
|
32
32
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
33
33
|
}
|
|
34
34
|
serialize(input, context) {
|
|
35
|
-
return
|
|
35
|
+
return se_CreateDevEnvironmentCommand(input, context);
|
|
36
36
|
}
|
|
37
37
|
deserialize(output, context) {
|
|
38
|
-
return
|
|
38
|
+
return de_CreateDevEnvironmentCommand(output, context);
|
|
39
39
|
}
|
|
40
40
|
}
|
|
@@ -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 { de_CreateProjectCommand, se_CreateProjectCommand } from "../protocols/Aws_restJson1";
|
|
5
5
|
export class CreateProjectCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -32,9 +32,9 @@ export class CreateProjectCommand extends $Command {
|
|
|
32
32
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
33
33
|
}
|
|
34
34
|
serialize(input, context) {
|
|
35
|
-
return
|
|
35
|
+
return se_CreateProjectCommand(input, context);
|
|
36
36
|
}
|
|
37
37
|
deserialize(output, context) {
|
|
38
|
-
return
|
|
38
|
+
return de_CreateProjectCommand(output, context);
|
|
39
39
|
}
|
|
40
40
|
}
|
|
@@ -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 { de_CreateSourceRepositoryBranchCommand, se_CreateSourceRepositoryBranchCommand, } from "../protocols/Aws_restJson1";
|
|
5
5
|
export class CreateSourceRepositoryBranchCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -32,9 +32,9 @@ export class CreateSourceRepositoryBranchCommand extends $Command {
|
|
|
32
32
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
33
33
|
}
|
|
34
34
|
serialize(input, context) {
|
|
35
|
-
return
|
|
35
|
+
return se_CreateSourceRepositoryBranchCommand(input, context);
|
|
36
36
|
}
|
|
37
37
|
deserialize(output, context) {
|
|
38
|
-
return
|
|
38
|
+
return de_CreateSourceRepositoryBranchCommand(output, context);
|
|
39
39
|
}
|
|
40
40
|
}
|
|
@@ -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 { de_DeleteAccessTokenCommand, se_DeleteAccessTokenCommand } from "../protocols/Aws_restJson1";
|
|
5
5
|
export class DeleteAccessTokenCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -32,9 +32,9 @@ export class DeleteAccessTokenCommand extends $Command {
|
|
|
32
32
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
33
33
|
}
|
|
34
34
|
serialize(input, context) {
|
|
35
|
-
return
|
|
35
|
+
return se_DeleteAccessTokenCommand(input, context);
|
|
36
36
|
}
|
|
37
37
|
deserialize(output, context) {
|
|
38
|
-
return
|
|
38
|
+
return de_DeleteAccessTokenCommand(output, context);
|
|
39
39
|
}
|
|
40
40
|
}
|
|
@@ -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 { de_DeleteDevEnvironmentCommand, se_DeleteDevEnvironmentCommand } from "../protocols/Aws_restJson1";
|
|
5
5
|
export class DeleteDevEnvironmentCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -32,9 +32,9 @@ export class DeleteDevEnvironmentCommand extends $Command {
|
|
|
32
32
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
33
33
|
}
|
|
34
34
|
serialize(input, context) {
|
|
35
|
-
return
|
|
35
|
+
return se_DeleteDevEnvironmentCommand(input, context);
|
|
36
36
|
}
|
|
37
37
|
deserialize(output, context) {
|
|
38
|
-
return
|
|
38
|
+
return de_DeleteDevEnvironmentCommand(output, context);
|
|
39
39
|
}
|
|
40
40
|
}
|
|
@@ -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 { de_GetDevEnvironmentCommand, se_GetDevEnvironmentCommand } from "../protocols/Aws_restJson1";
|
|
5
5
|
export class GetDevEnvironmentCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -32,9 +32,9 @@ export class GetDevEnvironmentCommand extends $Command {
|
|
|
32
32
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
33
33
|
}
|
|
34
34
|
serialize(input, context) {
|
|
35
|
-
return
|
|
35
|
+
return se_GetDevEnvironmentCommand(input, context);
|
|
36
36
|
}
|
|
37
37
|
deserialize(output, context) {
|
|
38
|
-
return
|
|
38
|
+
return de_GetDevEnvironmentCommand(output, context);
|
|
39
39
|
}
|
|
40
40
|
}
|
|
@@ -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 { de_GetProjectCommand, se_GetProjectCommand } from "../protocols/Aws_restJson1";
|
|
5
5
|
export class GetProjectCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -32,9 +32,9 @@ export class GetProjectCommand extends $Command {
|
|
|
32
32
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
33
33
|
}
|
|
34
34
|
serialize(input, context) {
|
|
35
|
-
return
|
|
35
|
+
return se_GetProjectCommand(input, context);
|
|
36
36
|
}
|
|
37
37
|
deserialize(output, context) {
|
|
38
|
-
return
|
|
38
|
+
return de_GetProjectCommand(output, context);
|
|
39
39
|
}
|
|
40
40
|
}
|
|
@@ -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 { de_GetSourceRepositoryCloneUrlsCommand, se_GetSourceRepositoryCloneUrlsCommand, } from "../protocols/Aws_restJson1";
|
|
5
5
|
export class GetSourceRepositoryCloneUrlsCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -32,9 +32,9 @@ export class GetSourceRepositoryCloneUrlsCommand extends $Command {
|
|
|
32
32
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
33
33
|
}
|
|
34
34
|
serialize(input, context) {
|
|
35
|
-
return
|
|
35
|
+
return se_GetSourceRepositoryCloneUrlsCommand(input, context);
|
|
36
36
|
}
|
|
37
37
|
deserialize(output, context) {
|
|
38
|
-
return
|
|
38
|
+
return de_GetSourceRepositoryCloneUrlsCommand(output, context);
|
|
39
39
|
}
|
|
40
40
|
}
|
|
@@ -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 { de_GetSpaceCommand, se_GetSpaceCommand } from "../protocols/Aws_restJson1";
|
|
5
5
|
export class GetSpaceCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -32,9 +32,9 @@ export class GetSpaceCommand extends $Command {
|
|
|
32
32
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
33
33
|
}
|
|
34
34
|
serialize(input, context) {
|
|
35
|
-
return
|
|
35
|
+
return se_GetSpaceCommand(input, context);
|
|
36
36
|
}
|
|
37
37
|
deserialize(output, context) {
|
|
38
|
-
return
|
|
38
|
+
return de_GetSpaceCommand(output, context);
|
|
39
39
|
}
|
|
40
40
|
}
|
|
@@ -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 { de_GetSubscriptionCommand, se_GetSubscriptionCommand } from "../protocols/Aws_restJson1";
|
|
5
5
|
export class GetSubscriptionCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -32,9 +32,9 @@ export class GetSubscriptionCommand extends $Command {
|
|
|
32
32
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
33
33
|
}
|
|
34
34
|
serialize(input, context) {
|
|
35
|
-
return
|
|
35
|
+
return se_GetSubscriptionCommand(input, context);
|
|
36
36
|
}
|
|
37
37
|
deserialize(output, context) {
|
|
38
|
-
return
|
|
38
|
+
return de_GetSubscriptionCommand(output, context);
|
|
39
39
|
}
|
|
40
40
|
}
|
|
@@ -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 { de_GetUserDetailsCommand, se_GetUserDetailsCommand } from "../protocols/Aws_restJson1";
|
|
5
5
|
export class GetUserDetailsCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -32,9 +32,9 @@ export class GetUserDetailsCommand extends $Command {
|
|
|
32
32
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
33
33
|
}
|
|
34
34
|
serialize(input, context) {
|
|
35
|
-
return
|
|
35
|
+
return se_GetUserDetailsCommand(input, context);
|
|
36
36
|
}
|
|
37
37
|
deserialize(output, context) {
|
|
38
|
-
return
|
|
38
|
+
return de_GetUserDetailsCommand(output, context);
|
|
39
39
|
}
|
|
40
40
|
}
|
|
@@ -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 { de_ListAccessTokensCommand, se_ListAccessTokensCommand } from "../protocols/Aws_restJson1";
|
|
5
5
|
export class ListAccessTokensCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -32,9 +32,9 @@ export class ListAccessTokensCommand extends $Command {
|
|
|
32
32
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
33
33
|
}
|
|
34
34
|
serialize(input, context) {
|
|
35
|
-
return
|
|
35
|
+
return se_ListAccessTokensCommand(input, context);
|
|
36
36
|
}
|
|
37
37
|
deserialize(output, context) {
|
|
38
|
-
return
|
|
38
|
+
return de_ListAccessTokensCommand(output, context);
|
|
39
39
|
}
|
|
40
40
|
}
|
|
@@ -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 { de_ListDevEnvironmentsCommand, se_ListDevEnvironmentsCommand } from "../protocols/Aws_restJson1";
|
|
5
5
|
export class ListDevEnvironmentsCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -32,9 +32,9 @@ export class ListDevEnvironmentsCommand extends $Command {
|
|
|
32
32
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
33
33
|
}
|
|
34
34
|
serialize(input, context) {
|
|
35
|
-
return
|
|
35
|
+
return se_ListDevEnvironmentsCommand(input, context);
|
|
36
36
|
}
|
|
37
37
|
deserialize(output, context) {
|
|
38
|
-
return
|
|
38
|
+
return de_ListDevEnvironmentsCommand(output, context);
|
|
39
39
|
}
|
|
40
40
|
}
|
|
@@ -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 { de_ListEventLogsCommand, se_ListEventLogsCommand } from "../protocols/Aws_restJson1";
|
|
5
5
|
export class ListEventLogsCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -32,9 +32,9 @@ export class ListEventLogsCommand extends $Command {
|
|
|
32
32
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
33
33
|
}
|
|
34
34
|
serialize(input, context) {
|
|
35
|
-
return
|
|
35
|
+
return se_ListEventLogsCommand(input, context);
|
|
36
36
|
}
|
|
37
37
|
deserialize(output, context) {
|
|
38
|
-
return
|
|
38
|
+
return de_ListEventLogsCommand(output, context);
|
|
39
39
|
}
|
|
40
40
|
}
|
|
@@ -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 { de_ListProjectsCommand, se_ListProjectsCommand } from "../protocols/Aws_restJson1";
|
|
5
5
|
export class ListProjectsCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -32,9 +32,9 @@ export class ListProjectsCommand extends $Command {
|
|
|
32
32
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
33
33
|
}
|
|
34
34
|
serialize(input, context) {
|
|
35
|
-
return
|
|
35
|
+
return se_ListProjectsCommand(input, context);
|
|
36
36
|
}
|
|
37
37
|
deserialize(output, context) {
|
|
38
|
-
return
|
|
38
|
+
return de_ListProjectsCommand(output, context);
|
|
39
39
|
}
|
|
40
40
|
}
|
|
@@ -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 { de_ListSourceRepositoriesCommand, se_ListSourceRepositoriesCommand } from "../protocols/Aws_restJson1";
|
|
5
5
|
export class ListSourceRepositoriesCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -32,9 +32,9 @@ export class ListSourceRepositoriesCommand extends $Command {
|
|
|
32
32
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
33
33
|
}
|
|
34
34
|
serialize(input, context) {
|
|
35
|
-
return
|
|
35
|
+
return se_ListSourceRepositoriesCommand(input, context);
|
|
36
36
|
}
|
|
37
37
|
deserialize(output, context) {
|
|
38
|
-
return
|
|
38
|
+
return de_ListSourceRepositoriesCommand(output, context);
|
|
39
39
|
}
|
|
40
40
|
}
|
|
@@ -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 { de_ListSourceRepositoryBranchesCommand, se_ListSourceRepositoryBranchesCommand, } from "../protocols/Aws_restJson1";
|
|
5
5
|
export class ListSourceRepositoryBranchesCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -32,9 +32,9 @@ export class ListSourceRepositoryBranchesCommand extends $Command {
|
|
|
32
32
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
33
33
|
}
|
|
34
34
|
serialize(input, context) {
|
|
35
|
-
return
|
|
35
|
+
return se_ListSourceRepositoryBranchesCommand(input, context);
|
|
36
36
|
}
|
|
37
37
|
deserialize(output, context) {
|
|
38
|
-
return
|
|
38
|
+
return de_ListSourceRepositoryBranchesCommand(output, context);
|
|
39
39
|
}
|
|
40
40
|
}
|
|
@@ -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 { de_ListSpacesCommand, se_ListSpacesCommand } from "../protocols/Aws_restJson1";
|
|
5
5
|
export class ListSpacesCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -32,9 +32,9 @@ export class ListSpacesCommand extends $Command {
|
|
|
32
32
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
33
33
|
}
|
|
34
34
|
serialize(input, context) {
|
|
35
|
-
return
|
|
35
|
+
return se_ListSpacesCommand(input, context);
|
|
36
36
|
}
|
|
37
37
|
deserialize(output, context) {
|
|
38
|
-
return
|
|
38
|
+
return de_ListSpacesCommand(output, context);
|
|
39
39
|
}
|
|
40
40
|
}
|
|
@@ -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 { de_StartDevEnvironmentCommand, se_StartDevEnvironmentCommand } from "../protocols/Aws_restJson1";
|
|
5
5
|
export class StartDevEnvironmentCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -32,9 +32,9 @@ export class StartDevEnvironmentCommand extends $Command {
|
|
|
32
32
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
33
33
|
}
|
|
34
34
|
serialize(input, context) {
|
|
35
|
-
return
|
|
35
|
+
return se_StartDevEnvironmentCommand(input, context);
|
|
36
36
|
}
|
|
37
37
|
deserialize(output, context) {
|
|
38
|
-
return
|
|
38
|
+
return de_StartDevEnvironmentCommand(output, context);
|
|
39
39
|
}
|
|
40
40
|
}
|
|
@@ -2,7 +2,7 @@ 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
4
|
import { StartDevEnvironmentSessionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
|
-
import {
|
|
5
|
+
import { de_StartDevEnvironmentSessionCommand, se_StartDevEnvironmentSessionCommand } from "../protocols/Aws_restJson1";
|
|
6
6
|
export class StartDevEnvironmentSessionCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
8
8
|
return {
|
|
@@ -33,9 +33,9 @@ export class StartDevEnvironmentSessionCommand extends $Command {
|
|
|
33
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
34
34
|
}
|
|
35
35
|
serialize(input, context) {
|
|
36
|
-
return
|
|
36
|
+
return se_StartDevEnvironmentSessionCommand(input, context);
|
|
37
37
|
}
|
|
38
38
|
deserialize(output, context) {
|
|
39
|
-
return
|
|
39
|
+
return de_StartDevEnvironmentSessionCommand(output, context);
|
|
40
40
|
}
|
|
41
41
|
}
|
|
@@ -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 { de_StopDevEnvironmentCommand, se_StopDevEnvironmentCommand } from "../protocols/Aws_restJson1";
|
|
5
5
|
export class StopDevEnvironmentCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -32,9 +32,9 @@ export class StopDevEnvironmentCommand extends $Command {
|
|
|
32
32
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
33
33
|
}
|
|
34
34
|
serialize(input, context) {
|
|
35
|
-
return
|
|
35
|
+
return se_StopDevEnvironmentCommand(input, context);
|
|
36
36
|
}
|
|
37
37
|
deserialize(output, context) {
|
|
38
|
-
return
|
|
38
|
+
return de_StopDevEnvironmentCommand(output, context);
|
|
39
39
|
}
|
|
40
40
|
}
|
|
@@ -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 { de_StopDevEnvironmentSessionCommand, se_StopDevEnvironmentSessionCommand } from "../protocols/Aws_restJson1";
|
|
5
5
|
export class StopDevEnvironmentSessionCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -32,9 +32,9 @@ export class StopDevEnvironmentSessionCommand extends $Command {
|
|
|
32
32
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
33
33
|
}
|
|
34
34
|
serialize(input, context) {
|
|
35
|
-
return
|
|
35
|
+
return se_StopDevEnvironmentSessionCommand(input, context);
|
|
36
36
|
}
|
|
37
37
|
deserialize(output, context) {
|
|
38
|
-
return
|
|
38
|
+
return de_StopDevEnvironmentSessionCommand(output, context);
|
|
39
39
|
}
|
|
40
40
|
}
|
|
@@ -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 { de_UpdateDevEnvironmentCommand, se_UpdateDevEnvironmentCommand } from "../protocols/Aws_restJson1";
|
|
5
5
|
export class UpdateDevEnvironmentCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -32,9 +32,9 @@ export class UpdateDevEnvironmentCommand extends $Command {
|
|
|
32
32
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
33
33
|
}
|
|
34
34
|
serialize(input, context) {
|
|
35
|
-
return
|
|
35
|
+
return se_UpdateDevEnvironmentCommand(input, context);
|
|
36
36
|
}
|
|
37
37
|
deserialize(output, context) {
|
|
38
|
-
return
|
|
38
|
+
return de_UpdateDevEnvironmentCommand(output, context);
|
|
39
39
|
}
|
|
40
40
|
}
|
|
@@ -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 { de_VerifySessionCommand, se_VerifySessionCommand } from "../protocols/Aws_restJson1";
|
|
5
5
|
export class VerifySessionCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -32,9 +32,9 @@ export class VerifySessionCommand extends $Command {
|
|
|
32
32
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
33
33
|
}
|
|
34
34
|
serialize(input, context) {
|
|
35
|
-
return
|
|
35
|
+
return se_VerifySessionCommand(input, context);
|
|
36
36
|
}
|
|
37
37
|
deserialize(output, context) {
|
|
38
|
-
return
|
|
38
|
+
return de_VerifySessionCommand(output, context);
|
|
39
39
|
}
|
|
40
40
|
}
|