@aws-sdk/client-codecatalyst 3.298.0 → 3.300.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-types/commands/CreateAccessTokenCommand.d.ts +4 -0
- package/dist-types/commands/CreateDevEnvironmentCommand.d.ts +23 -0
- package/dist-types/commands/CreateProjectCommand.d.ts +5 -0
- package/dist-types/commands/CreateSourceRepositoryBranchCommand.d.ts +7 -0
- package/dist-types/commands/DeleteAccessTokenCommand.d.ts +3 -0
- package/dist-types/commands/DeleteDevEnvironmentCommand.d.ts +5 -0
- package/dist-types/commands/GetDevEnvironmentCommand.d.ts +5 -0
- package/dist-types/commands/GetProjectCommand.d.ts +4 -0
- package/dist-types/commands/GetSourceRepositoryCloneUrlsCommand.d.ts +5 -0
- package/dist-types/commands/GetSpaceCommand.d.ts +3 -0
- package/dist-types/commands/GetSubscriptionCommand.d.ts +3 -0
- package/dist-types/commands/GetUserDetailsCommand.d.ts +4 -0
- package/dist-types/commands/ListAccessTokensCommand.d.ts +4 -0
- package/dist-types/commands/ListDevEnvironmentsCommand.d.ts +15 -0
- package/dist-types/commands/ListEventLogsCommand.d.ts +8 -0
- package/dist-types/commands/ListProjectsCommand.d.ts +14 -0
- package/dist-types/commands/ListSourceRepositoriesCommand.d.ts +6 -0
- package/dist-types/commands/ListSourceRepositoryBranchesCommand.d.ts +7 -0
- package/dist-types/commands/ListSpacesCommand.d.ts +3 -0
- package/dist-types/commands/StartDevEnvironmentCommand.d.ts +13 -0
- package/dist-types/commands/StartDevEnvironmentSessionCommand.d.ts +14 -0
- package/dist-types/commands/StopDevEnvironmentCommand.d.ts +5 -0
- package/dist-types/commands/StopDevEnvironmentSessionCommand.d.ts +6 -0
- package/dist-types/commands/UpdateDevEnvironmentCommand.d.ts +15 -0
- package/dist-types/commands/VerifySessionCommand.d.ts +1 -0
- package/package.json +10 -10
|
@@ -29,6 +29,10 @@ export interface CreateAccessTokenCommandOutput extends CreateAccessTokenRespons
|
|
|
29
29
|
* import { CodeCatalystClient, CreateAccessTokenCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
|
|
30
30
|
* // const { CodeCatalystClient, CreateAccessTokenCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
|
|
31
31
|
* const client = new CodeCatalystClient(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* name: "STRING_VALUE", // required
|
|
34
|
+
* expiresTime: new Date("TIMESTAMP"),
|
|
35
|
+
* };
|
|
32
36
|
* const command = new CreateAccessTokenCommand(input);
|
|
33
37
|
* const response = await client.send(command);
|
|
34
38
|
* ```
|
|
@@ -31,6 +31,29 @@ export interface CreateDevEnvironmentCommandOutput extends CreateDevEnvironmentR
|
|
|
31
31
|
* import { CodeCatalystClient, CreateDevEnvironmentCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
|
|
32
32
|
* // const { CodeCatalystClient, CreateDevEnvironmentCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
|
|
33
33
|
* const client = new CodeCatalystClient(config);
|
|
34
|
+
* const input = {
|
|
35
|
+
* spaceName: "STRING_VALUE", // required
|
|
36
|
+
* projectName: "STRING_VALUE", // required
|
|
37
|
+
* repositories: [
|
|
38
|
+
* {
|
|
39
|
+
* repositoryName: "STRING_VALUE", // required
|
|
40
|
+
* branchName: "STRING_VALUE",
|
|
41
|
+
* },
|
|
42
|
+
* ],
|
|
43
|
+
* clientToken: "STRING_VALUE",
|
|
44
|
+
* alias: "STRING_VALUE",
|
|
45
|
+
* ides: [
|
|
46
|
+
* {
|
|
47
|
+
* runtime: "STRING_VALUE",
|
|
48
|
+
* name: "STRING_VALUE",
|
|
49
|
+
* },
|
|
50
|
+
* ],
|
|
51
|
+
* instanceType: "STRING_VALUE", // required
|
|
52
|
+
* inactivityTimeoutMinutes: Number("int"),
|
|
53
|
+
* persistentStorage: {
|
|
54
|
+
* sizeInGiB: Number("int"), // required
|
|
55
|
+
* },
|
|
56
|
+
* };
|
|
34
57
|
* const command = new CreateDevEnvironmentCommand(input);
|
|
35
58
|
* const response = await client.send(command);
|
|
36
59
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface CreateProjectCommandOutput extends CreateProjectResponse, __Met
|
|
|
26
26
|
* import { CodeCatalystClient, CreateProjectCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
|
|
27
27
|
* // const { CodeCatalystClient, CreateProjectCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
|
|
28
28
|
* const client = new CodeCatalystClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* spaceName: "STRING_VALUE", // required
|
|
31
|
+
* displayName: "STRING_VALUE", // required
|
|
32
|
+
* description: "STRING_VALUE",
|
|
33
|
+
* };
|
|
29
34
|
* const command = new CreateProjectCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -29,6 +29,13 @@ export interface CreateSourceRepositoryBranchCommandOutput extends CreateSourceR
|
|
|
29
29
|
* import { CodeCatalystClient, CreateSourceRepositoryBranchCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
|
|
30
30
|
* // const { CodeCatalystClient, CreateSourceRepositoryBranchCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
|
|
31
31
|
* const client = new CodeCatalystClient(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* spaceName: "STRING_VALUE", // required
|
|
34
|
+
* projectName: "STRING_VALUE", // required
|
|
35
|
+
* sourceRepositoryName: "STRING_VALUE", // required
|
|
36
|
+
* name: "STRING_VALUE", // required
|
|
37
|
+
* headCommitId: "STRING_VALUE",
|
|
38
|
+
* };
|
|
32
39
|
* const command = new CreateSourceRepositoryBranchCommand(input);
|
|
33
40
|
* const response = await client.send(command);
|
|
34
41
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteAccessTokenCommandOutput extends DeleteAccessTokenRespons
|
|
|
26
26
|
* import { CodeCatalystClient, DeleteAccessTokenCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
|
|
27
27
|
* // const { CodeCatalystClient, DeleteAccessTokenCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
|
|
28
28
|
* const client = new CodeCatalystClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteAccessTokenCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface DeleteDevEnvironmentCommandOutput extends DeleteDevEnvironmentR
|
|
|
26
26
|
* import { CodeCatalystClient, DeleteDevEnvironmentCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
|
|
27
27
|
* // const { CodeCatalystClient, DeleteDevEnvironmentCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
|
|
28
28
|
* const client = new CodeCatalystClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* spaceName: "STRING_VALUE", // required
|
|
31
|
+
* projectName: "STRING_VALUE", // required
|
|
32
|
+
* id: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
29
34
|
* const command = new DeleteDevEnvironmentCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface GetDevEnvironmentCommandOutput extends GetDevEnvironmentRespons
|
|
|
26
26
|
* import { CodeCatalystClient, GetDevEnvironmentCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
|
|
27
27
|
* // const { CodeCatalystClient, GetDevEnvironmentCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
|
|
28
28
|
* const client = new CodeCatalystClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* spaceName: "STRING_VALUE", // required
|
|
31
|
+
* projectName: "STRING_VALUE", // required
|
|
32
|
+
* id: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
29
34
|
* const command = new GetDevEnvironmentCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface GetProjectCommandOutput extends GetProjectResponse, __MetadataB
|
|
|
26
26
|
* import { CodeCatalystClient, GetProjectCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
|
|
27
27
|
* // const { CodeCatalystClient, GetProjectCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
|
|
28
28
|
* const client = new CodeCatalystClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* spaceName: "STRING_VALUE", // required
|
|
31
|
+
* name: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new GetProjectCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -27,6 +27,11 @@ export interface GetSourceRepositoryCloneUrlsCommandOutput extends GetSourceRepo
|
|
|
27
27
|
* import { CodeCatalystClient, GetSourceRepositoryCloneUrlsCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
|
|
28
28
|
* // const { CodeCatalystClient, GetSourceRepositoryCloneUrlsCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
|
|
29
29
|
* const client = new CodeCatalystClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* spaceName: "STRING_VALUE", // required
|
|
32
|
+
* projectName: "STRING_VALUE", // required
|
|
33
|
+
* sourceRepositoryName: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
30
35
|
* const command = new GetSourceRepositoryCloneUrlsCommand(input);
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetSpaceCommandOutput extends GetSpaceResponse, __MetadataBeare
|
|
|
26
26
|
* import { CodeCatalystClient, GetSpaceCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
|
|
27
27
|
* // const { CodeCatalystClient, GetSpaceCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
|
|
28
28
|
* const client = new CodeCatalystClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* name: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetSpaceCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -27,6 +27,9 @@ export interface GetSubscriptionCommandOutput extends GetSubscriptionResponse, _
|
|
|
27
27
|
* import { CodeCatalystClient, GetSubscriptionCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
|
|
28
28
|
* // const { CodeCatalystClient, GetSubscriptionCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
|
|
29
29
|
* const client = new CodeCatalystClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* spaceName: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
30
33
|
* const command = new GetSubscriptionCommand(input);
|
|
31
34
|
* const response = await client.send(command);
|
|
32
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface GetUserDetailsCommandOutput extends GetUserDetailsResponse, __M
|
|
|
26
26
|
* import { CodeCatalystClient, GetUserDetailsCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
|
|
27
27
|
* // const { CodeCatalystClient, GetUserDetailsCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
|
|
28
28
|
* const client = new CodeCatalystClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE",
|
|
31
|
+
* userName: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new GetUserDetailsCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListAccessTokensCommandOutput extends ListAccessTokensResponse,
|
|
|
26
26
|
* import { CodeCatalystClient, ListAccessTokensCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
|
|
27
27
|
* // const { CodeCatalystClient, ListAccessTokensCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
|
|
28
28
|
* const client = new CodeCatalystClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* maxResults: Number("int"),
|
|
31
|
+
* nextToken: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListAccessTokensCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,21 @@ export interface ListDevEnvironmentsCommandOutput extends ListDevEnvironmentsRes
|
|
|
26
26
|
* import { CodeCatalystClient, ListDevEnvironmentsCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
|
|
27
27
|
* // const { CodeCatalystClient, ListDevEnvironmentsCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
|
|
28
28
|
* const client = new CodeCatalystClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* spaceName: "STRING_VALUE", // required
|
|
31
|
+
* projectName: "STRING_VALUE", // required
|
|
32
|
+
* filters: [
|
|
33
|
+
* {
|
|
34
|
+
* key: "STRING_VALUE", // required
|
|
35
|
+
* values: [ // required
|
|
36
|
+
* "STRING_VALUE",
|
|
37
|
+
* ],
|
|
38
|
+
* comparisonOperator: "STRING_VALUE",
|
|
39
|
+
* },
|
|
40
|
+
* ],
|
|
41
|
+
* nextToken: "STRING_VALUE",
|
|
42
|
+
* maxResults: Number("int"),
|
|
43
|
+
* };
|
|
29
44
|
* const command = new ListDevEnvironmentsCommand(input);
|
|
30
45
|
* const response = await client.send(command);
|
|
31
46
|
* ```
|
|
@@ -26,6 +26,14 @@ export interface ListEventLogsCommandOutput extends ListEventLogsResponse, __Met
|
|
|
26
26
|
* import { CodeCatalystClient, ListEventLogsCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
|
|
27
27
|
* // const { CodeCatalystClient, ListEventLogsCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
|
|
28
28
|
* const client = new CodeCatalystClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* spaceName: "STRING_VALUE", // required
|
|
31
|
+
* startTime: new Date("TIMESTAMP"), // required
|
|
32
|
+
* endTime: new Date("TIMESTAMP"), // required
|
|
33
|
+
* eventName: "STRING_VALUE",
|
|
34
|
+
* nextToken: "STRING_VALUE",
|
|
35
|
+
* maxResults: Number("int"),
|
|
36
|
+
* };
|
|
29
37
|
* const command = new ListEventLogsCommand(input);
|
|
30
38
|
* const response = await client.send(command);
|
|
31
39
|
* ```
|
|
@@ -26,6 +26,20 @@ export interface ListProjectsCommandOutput extends ListProjectsResponse, __Metad
|
|
|
26
26
|
* import { CodeCatalystClient, ListProjectsCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
|
|
27
27
|
* // const { CodeCatalystClient, ListProjectsCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
|
|
28
28
|
* const client = new CodeCatalystClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* spaceName: "STRING_VALUE", // required
|
|
31
|
+
* nextToken: "STRING_VALUE",
|
|
32
|
+
* maxResults: Number("int"),
|
|
33
|
+
* filters: [
|
|
34
|
+
* {
|
|
35
|
+
* key: "STRING_VALUE", // required
|
|
36
|
+
* values: [ // required
|
|
37
|
+
* "STRING_VALUE",
|
|
38
|
+
* ],
|
|
39
|
+
* comparisonOperator: "STRING_VALUE",
|
|
40
|
+
* },
|
|
41
|
+
* ],
|
|
42
|
+
* };
|
|
29
43
|
* const command = new ListProjectsCommand(input);
|
|
30
44
|
* const response = await client.send(command);
|
|
31
45
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface ListSourceRepositoriesCommandOutput extends ListSourceRepositor
|
|
|
26
26
|
* import { CodeCatalystClient, ListSourceRepositoriesCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
|
|
27
27
|
* // const { CodeCatalystClient, ListSourceRepositoriesCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
|
|
28
28
|
* const client = new CodeCatalystClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* spaceName: "STRING_VALUE", // required
|
|
31
|
+
* projectName: "STRING_VALUE", // required
|
|
32
|
+
* nextToken: "STRING_VALUE",
|
|
33
|
+
* maxResults: Number("int"),
|
|
34
|
+
* };
|
|
29
35
|
* const command = new ListSourceRepositoriesCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,13 @@ export interface ListSourceRepositoryBranchesCommandOutput extends ListSourceRep
|
|
|
26
26
|
* import { CodeCatalystClient, ListSourceRepositoryBranchesCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
|
|
27
27
|
* // const { CodeCatalystClient, ListSourceRepositoryBranchesCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
|
|
28
28
|
* const client = new CodeCatalystClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* spaceName: "STRING_VALUE", // required
|
|
31
|
+
* projectName: "STRING_VALUE", // required
|
|
32
|
+
* sourceRepositoryName: "STRING_VALUE", // required
|
|
33
|
+
* nextToken: "STRING_VALUE",
|
|
34
|
+
* maxResults: Number("int"),
|
|
35
|
+
* };
|
|
29
36
|
* const command = new ListSourceRepositoryBranchesCommand(input);
|
|
30
37
|
* const response = await client.send(command);
|
|
31
38
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface ListSpacesCommandOutput extends ListSpacesResponse, __MetadataB
|
|
|
26
26
|
* import { CodeCatalystClient, ListSpacesCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
|
|
27
27
|
* // const { CodeCatalystClient, ListSpacesCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
|
|
28
28
|
* const client = new CodeCatalystClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* nextToken: "STRING_VALUE",
|
|
31
|
+
* };
|
|
29
32
|
* const command = new ListSpacesCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,19 @@ export interface StartDevEnvironmentCommandOutput extends StartDevEnvironmentRes
|
|
|
26
26
|
* import { CodeCatalystClient, StartDevEnvironmentCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
|
|
27
27
|
* // const { CodeCatalystClient, StartDevEnvironmentCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
|
|
28
28
|
* const client = new CodeCatalystClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* spaceName: "STRING_VALUE", // required
|
|
31
|
+
* projectName: "STRING_VALUE", // required
|
|
32
|
+
* id: "STRING_VALUE", // required
|
|
33
|
+
* ides: [
|
|
34
|
+
* {
|
|
35
|
+
* runtime: "STRING_VALUE",
|
|
36
|
+
* name: "STRING_VALUE",
|
|
37
|
+
* },
|
|
38
|
+
* ],
|
|
39
|
+
* instanceType: "STRING_VALUE",
|
|
40
|
+
* inactivityTimeoutMinutes: Number("int"),
|
|
41
|
+
* };
|
|
29
42
|
* const command = new StartDevEnvironmentCommand(input);
|
|
30
43
|
* const response = await client.send(command);
|
|
31
44
|
* ```
|
|
@@ -26,6 +26,20 @@ export interface StartDevEnvironmentSessionCommandOutput extends StartDevEnviron
|
|
|
26
26
|
* import { CodeCatalystClient, StartDevEnvironmentSessionCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
|
|
27
27
|
* // const { CodeCatalystClient, StartDevEnvironmentSessionCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
|
|
28
28
|
* const client = new CodeCatalystClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* spaceName: "STRING_VALUE", // required
|
|
31
|
+
* projectName: "STRING_VALUE", // required
|
|
32
|
+
* id: "STRING_VALUE", // required
|
|
33
|
+
* sessionConfiguration: {
|
|
34
|
+
* sessionType: "STRING_VALUE", // required
|
|
35
|
+
* executeCommandSessionConfiguration: {
|
|
36
|
+
* command: "STRING_VALUE", // required
|
|
37
|
+
* arguments: [
|
|
38
|
+
* "STRING_VALUE",
|
|
39
|
+
* ],
|
|
40
|
+
* },
|
|
41
|
+
* },
|
|
42
|
+
* };
|
|
29
43
|
* const command = new StartDevEnvironmentSessionCommand(input);
|
|
30
44
|
* const response = await client.send(command);
|
|
31
45
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface StopDevEnvironmentCommandOutput extends StopDevEnvironmentRespo
|
|
|
26
26
|
* import { CodeCatalystClient, StopDevEnvironmentCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
|
|
27
27
|
* // const { CodeCatalystClient, StopDevEnvironmentCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
|
|
28
28
|
* const client = new CodeCatalystClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* spaceName: "STRING_VALUE", // required
|
|
31
|
+
* projectName: "STRING_VALUE", // required
|
|
32
|
+
* id: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
29
34
|
* const command = new StopDevEnvironmentCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface StopDevEnvironmentSessionCommandOutput extends StopDevEnvironme
|
|
|
26
26
|
* import { CodeCatalystClient, StopDevEnvironmentSessionCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
|
|
27
27
|
* // const { CodeCatalystClient, StopDevEnvironmentSessionCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
|
|
28
28
|
* const client = new CodeCatalystClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* spaceName: "STRING_VALUE", // required
|
|
31
|
+
* projectName: "STRING_VALUE", // required
|
|
32
|
+
* id: "STRING_VALUE", // required
|
|
33
|
+
* sessionId: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
29
35
|
* const command = new StopDevEnvironmentSessionCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,21 @@ export interface UpdateDevEnvironmentCommandOutput extends UpdateDevEnvironmentR
|
|
|
26
26
|
* import { CodeCatalystClient, UpdateDevEnvironmentCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
|
|
27
27
|
* // const { CodeCatalystClient, UpdateDevEnvironmentCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
|
|
28
28
|
* const client = new CodeCatalystClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* spaceName: "STRING_VALUE", // required
|
|
31
|
+
* projectName: "STRING_VALUE", // required
|
|
32
|
+
* id: "STRING_VALUE", // required
|
|
33
|
+
* alias: "STRING_VALUE",
|
|
34
|
+
* ides: [
|
|
35
|
+
* {
|
|
36
|
+
* runtime: "STRING_VALUE",
|
|
37
|
+
* name: "STRING_VALUE",
|
|
38
|
+
* },
|
|
39
|
+
* ],
|
|
40
|
+
* instanceType: "STRING_VALUE",
|
|
41
|
+
* inactivityTimeoutMinutes: Number("int"),
|
|
42
|
+
* clientToken: "STRING_VALUE",
|
|
43
|
+
* };
|
|
29
44
|
* const command = new UpdateDevEnvironmentCommand(input);
|
|
30
45
|
* const response = await client.send(command);
|
|
31
46
|
* ```
|
|
@@ -26,6 +26,7 @@ export interface VerifySessionCommandOutput extends VerifySessionResponse, __Met
|
|
|
26
26
|
* import { CodeCatalystClient, VerifySessionCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
|
|
27
27
|
* // const { CodeCatalystClient, VerifySessionCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
|
|
28
28
|
* const client = new CodeCatalystClient(config);
|
|
29
|
+
* const input = {};
|
|
29
30
|
* const command = new VerifySessionCommand(input);
|
|
30
31
|
* const response = await client.send(command);
|
|
31
32
|
* ```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codecatalyst",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codecatalyst Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.300.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,21 +21,21 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
25
25
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
26
26
|
"@aws-sdk/hash-node": "3.296.0",
|
|
27
27
|
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
28
28
|
"@aws-sdk/middleware-content-length": "3.296.0",
|
|
29
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
29
|
+
"@aws-sdk/middleware-endpoint": "3.299.0",
|
|
30
30
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
31
31
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
32
32
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
34
34
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
35
35
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
36
|
-
"@aws-sdk/middleware-token": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
+
"@aws-sdk/middleware-token": "3.300.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
39
39
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
40
40
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
41
41
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -45,11 +45,11 @@
|
|
|
45
45
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
46
46
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
47
47
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
49
49
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
50
50
|
"@aws-sdk/util-retry": "3.296.0",
|
|
51
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
51
|
+
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
53
53
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
54
54
|
"tslib": "^2.5.0"
|
|
55
55
|
},
|