@aws-sdk/client-codecatalyst 3.281.0 → 3.287.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 +12 -0
- package/dist-cjs/CodeCatalyst.js +15 -0
- package/dist-cjs/commands/StopDevEnvironmentSessionCommand.js +45 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/models/models_0.js +9 -1
- package/dist-cjs/pagination/ListAccessTokensPaginator.js +1 -8
- package/dist-cjs/pagination/ListDevEnvironmentsPaginator.js +1 -8
- package/dist-cjs/pagination/ListEventLogsPaginator.js +1 -8
- package/dist-cjs/pagination/ListProjectsPaginator.js +1 -8
- package/dist-cjs/pagination/ListSourceRepositoriesPaginator.js +1 -8
- package/dist-cjs/pagination/ListSourceRepositoryBranchesPaginator.js +1 -8
- package/dist-cjs/pagination/ListSpacesPaginator.js +1 -8
- package/dist-cjs/protocols/Aws_restJson1.js +83 -1
- package/dist-es/CodeCatalyst.js +15 -0
- package/dist-es/commands/StopDevEnvironmentSessionCommand.js +41 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +6 -0
- package/dist-es/pagination/ListAccessTokensPaginator.js +1 -8
- package/dist-es/pagination/ListDevEnvironmentsPaginator.js +1 -8
- package/dist-es/pagination/ListEventLogsPaginator.js +1 -8
- package/dist-es/pagination/ListProjectsPaginator.js +1 -8
- package/dist-es/pagination/ListSourceRepositoriesPaginator.js +1 -8
- package/dist-es/pagination/ListSourceRepositoryBranchesPaginator.js +1 -8
- package/dist-es/pagination/ListSpacesPaginator.js +1 -8
- package/dist-es/protocols/Aws_restJson1.js +80 -0
- package/dist-types/CodeCatalyst.d.ts +16 -1
- package/dist-types/CodeCatalystClient.d.ts +7 -2
- package/dist-types/commands/CreateDevEnvironmentCommand.d.ts +5 -1
- package/dist-types/commands/StopDevEnvironmentSessionCommand.d.ts +43 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +61 -11
- package/dist-types/pagination/Interfaces.d.ts +1 -2
- package/dist-types/protocols/Aws_restJson1.d.ts +3 -0
- package/dist-types/ts3.4/CodeCatalyst.d.ts +17 -0
- package/dist-types/ts3.4/CodeCatalystClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/StopDevEnvironmentSessionCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +22 -3
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +17 -17
|
@@ -18,8 +18,9 @@ export interface CreateAccessTokenRequest {
|
|
|
18
18
|
}
|
|
19
19
|
export interface CreateAccessTokenResponse {
|
|
20
20
|
secret: string | undefined;
|
|
21
|
-
name
|
|
22
|
-
expiresTime
|
|
21
|
+
name: string | undefined;
|
|
22
|
+
expiresTime: Date | undefined;
|
|
23
|
+
accessTokenId: string | undefined;
|
|
23
24
|
}
|
|
24
25
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
25
26
|
readonly name: "ResourceNotFoundException";
|
|
@@ -340,6 +341,18 @@ export interface StopDevEnvironmentResponse {
|
|
|
340
341
|
id: string | undefined;
|
|
341
342
|
status: DevEnvironmentStatus | string | undefined;
|
|
342
343
|
}
|
|
344
|
+
export interface StopDevEnvironmentSessionRequest {
|
|
345
|
+
spaceName: string | undefined;
|
|
346
|
+
projectName: string | undefined;
|
|
347
|
+
id: string | undefined;
|
|
348
|
+
sessionId: string | undefined;
|
|
349
|
+
}
|
|
350
|
+
export interface StopDevEnvironmentSessionResponse {
|
|
351
|
+
spaceName: string | undefined;
|
|
352
|
+
projectName: string | undefined;
|
|
353
|
+
id: string | undefined;
|
|
354
|
+
sessionId: string | undefined;
|
|
355
|
+
}
|
|
343
356
|
export interface UpdateDevEnvironmentRequest {
|
|
344
357
|
spaceName: string | undefined;
|
|
345
358
|
projectName: string | undefined;
|
|
@@ -453,7 +466,7 @@ export interface ListSourceRepositoryBranchesItem {
|
|
|
453
466
|
}
|
|
454
467
|
export interface ListSourceRepositoryBranchesResponse {
|
|
455
468
|
nextToken?: string;
|
|
456
|
-
items
|
|
469
|
+
items: ListSourceRepositoryBranchesItem[] | undefined;
|
|
457
470
|
}
|
|
458
471
|
export interface GetSubscriptionRequest {
|
|
459
472
|
spaceName: string | undefined;
|
|
@@ -597,6 +610,12 @@ export declare const StopDevEnvironmentRequestFilterSensitiveLog: (
|
|
|
597
610
|
export declare const StopDevEnvironmentResponseFilterSensitiveLog: (
|
|
598
611
|
obj: StopDevEnvironmentResponse
|
|
599
612
|
) => any;
|
|
613
|
+
export declare const StopDevEnvironmentSessionRequestFilterSensitiveLog: (
|
|
614
|
+
obj: StopDevEnvironmentSessionRequest
|
|
615
|
+
) => any;
|
|
616
|
+
export declare const StopDevEnvironmentSessionResponseFilterSensitiveLog: (
|
|
617
|
+
obj: StopDevEnvironmentSessionResponse
|
|
618
|
+
) => any;
|
|
600
619
|
export declare const UpdateDevEnvironmentRequestFilterSensitiveLog: (
|
|
601
620
|
obj: UpdateDevEnvironmentRequest
|
|
602
621
|
) => any;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { CodeCatalyst } from "../CodeCatalyst";
|
|
3
2
|
import { CodeCatalystClient } from "../CodeCatalystClient";
|
|
4
3
|
export interface CodeCatalystPaginationConfiguration
|
|
5
4
|
extends PaginationConfiguration {
|
|
6
|
-
client:
|
|
5
|
+
client: CodeCatalystClient;
|
|
7
6
|
}
|
|
@@ -91,6 +91,10 @@ import {
|
|
|
91
91
|
StopDevEnvironmentCommandInput,
|
|
92
92
|
StopDevEnvironmentCommandOutput,
|
|
93
93
|
} from "../commands/StopDevEnvironmentCommand";
|
|
94
|
+
import {
|
|
95
|
+
StopDevEnvironmentSessionCommandInput,
|
|
96
|
+
StopDevEnvironmentSessionCommandOutput,
|
|
97
|
+
} from "../commands/StopDevEnvironmentSessionCommand";
|
|
94
98
|
import {
|
|
95
99
|
UpdateDevEnvironmentCommandInput,
|
|
96
100
|
UpdateDevEnvironmentCommandOutput,
|
|
@@ -187,6 +191,10 @@ export declare const serializeAws_restJson1StopDevEnvironmentCommand: (
|
|
|
187
191
|
input: StopDevEnvironmentCommandInput,
|
|
188
192
|
context: __SerdeContext
|
|
189
193
|
) => Promise<__HttpRequest>;
|
|
194
|
+
export declare const serializeAws_restJson1StopDevEnvironmentSessionCommand: (
|
|
195
|
+
input: StopDevEnvironmentSessionCommandInput,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<__HttpRequest>;
|
|
190
198
|
export declare const serializeAws_restJson1UpdateDevEnvironmentCommand: (
|
|
191
199
|
input: UpdateDevEnvironmentCommandInput,
|
|
192
200
|
context: __SerdeContext
|
|
@@ -283,6 +291,10 @@ export declare const deserializeAws_restJson1StopDevEnvironmentCommand: (
|
|
|
283
291
|
output: __HttpResponse,
|
|
284
292
|
context: __SerdeContext
|
|
285
293
|
) => Promise<StopDevEnvironmentCommandOutput>;
|
|
294
|
+
export declare const deserializeAws_restJson1StopDevEnvironmentSessionCommand: (
|
|
295
|
+
output: __HttpResponse,
|
|
296
|
+
context: __SerdeContext
|
|
297
|
+
) => Promise<StopDevEnvironmentSessionCommandOutput>;
|
|
286
298
|
export declare const deserializeAws_restJson1UpdateDevEnvironmentCommand: (
|
|
287
299
|
output: __HttpResponse,
|
|
288
300
|
context: __SerdeContext
|
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.287.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",
|
|
@@ -20,23 +20,23 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
23
|
+
"@aws-sdk/config-resolver": "3.287.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.282.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.272.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.272.0",
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
29
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
30
|
-
"@aws-sdk/middleware-logger": "3.
|
|
31
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
32
|
-
"@aws-sdk/middleware-retry": "3.
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.282.0",
|
|
28
|
+
"@aws-sdk/middleware-endpoint": "3.282.0",
|
|
29
|
+
"@aws-sdk/middleware-host-header": "3.282.0",
|
|
30
|
+
"@aws-sdk/middleware-logger": "3.287.0",
|
|
31
|
+
"@aws-sdk/middleware-recursion-detection": "3.282.0",
|
|
32
|
+
"@aws-sdk/middleware-retry": "3.287.0",
|
|
33
33
|
"@aws-sdk/middleware-serde": "3.272.0",
|
|
34
34
|
"@aws-sdk/middleware-stack": "3.272.0",
|
|
35
|
-
"@aws-sdk/middleware-token": "3.
|
|
36
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
37
|
-
"@aws-sdk/node-config-provider": "3.
|
|
38
|
-
"@aws-sdk/node-http-handler": "3.
|
|
39
|
-
"@aws-sdk/protocol-http": "3.
|
|
35
|
+
"@aws-sdk/middleware-token": "3.287.0",
|
|
36
|
+
"@aws-sdk/middleware-user-agent": "3.282.0",
|
|
37
|
+
"@aws-sdk/node-config-provider": "3.287.0",
|
|
38
|
+
"@aws-sdk/node-http-handler": "3.282.0",
|
|
39
|
+
"@aws-sdk/protocol-http": "3.282.0",
|
|
40
40
|
"@aws-sdk/smithy-client": "3.279.0",
|
|
41
41
|
"@aws-sdk/types": "3.272.0",
|
|
42
42
|
"@aws-sdk/url-parser": "3.272.0",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-defaults-mode-browser": "3.279.0",
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.287.0",
|
|
48
48
|
"@aws-sdk/util-endpoints": "3.272.0",
|
|
49
49
|
"@aws-sdk/util-retry": "3.272.0",
|
|
50
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
51
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
50
|
+
"@aws-sdk/util-user-agent-browser": "3.282.0",
|
|
51
|
+
"@aws-sdk/util-user-agent-node": "3.287.0",
|
|
52
52
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
53
53
|
"tslib": "^2.3.1"
|
|
54
54
|
},
|