@aws-sdk/client-codecatalyst 3.295.0 → 3.297.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/CodeCatalyst.d.ts +26 -0
- package/dist-types/CodeCatalystClient.d.ts +24 -4
- package/dist-types/commands/CreateAccessTokenCommand.d.ts +16 -0
- package/dist-types/commands/CreateDevEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/CreateProjectCommand.d.ts +16 -0
- package/dist-types/commands/CreateSourceRepositoryBranchCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAccessTokenCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDevEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/GetDevEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/GetProjectCommand.d.ts +16 -0
- package/dist-types/commands/GetSourceRepositoryCloneUrlsCommand.d.ts +16 -0
- package/dist-types/commands/GetSpaceCommand.d.ts +16 -0
- package/dist-types/commands/GetSubscriptionCommand.d.ts +16 -0
- package/dist-types/commands/GetUserDetailsCommand.d.ts +16 -0
- package/dist-types/commands/ListAccessTokensCommand.d.ts +16 -0
- package/dist-types/commands/ListDevEnvironmentsCommand.d.ts +16 -0
- package/dist-types/commands/ListEventLogsCommand.d.ts +16 -0
- package/dist-types/commands/ListProjectsCommand.d.ts +16 -0
- package/dist-types/commands/ListSourceRepositoriesCommand.d.ts +16 -0
- package/dist-types/commands/ListSourceRepositoryBranchesCommand.d.ts +16 -0
- package/dist-types/commands/ListSpacesCommand.d.ts +16 -0
- package/dist-types/commands/StartDevEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/StartDevEnvironmentSessionCommand.d.ts +16 -0
- package/dist-types/commands/StopDevEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/StopDevEnvironmentSessionCommand.d.ts +16 -0
- package/dist-types/commands/UpdateDevEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/VerifySessionCommand.d.ts +16 -0
- package/dist-types/models/CodeCatalystServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +199 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAccessTokensPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDevEnvironmentsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListEventLogsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListProjectsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSourceRepositoriesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSourceRepositoryBranchesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSpacesPaginator.d.ts +3 -0
- package/package.json +27 -27
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient";
|
|
5
5
|
import { StartDevEnvironmentSessionRequest, StartDevEnvironmentSessionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartDevEnvironmentSessionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartDevEnvironmentSessionCommandInput extends StartDevEnvironmentSessionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartDevEnvironmentSessionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartDevEnvironmentSessionCommandOutput extends StartDevEnvironmentSessionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Starts a session for a specified Dev Environment.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface StartDevEnvironmentSessionCommandOutput extends StartDevEnviron
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param StartDevEnvironmentSessionCommandInput - {@link StartDevEnvironmentSessionCommandInput}
|
|
34
|
+
* @returns {@link StartDevEnvironmentSessionCommandOutput}
|
|
28
35
|
* @see {@link StartDevEnvironmentSessionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link StartDevEnvironmentSessionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface StartDevEnvironmentSessionCommandOutput extends StartDevEnviron
|
|
|
54
61
|
export declare class StartDevEnvironmentSessionCommand extends $Command<StartDevEnvironmentSessionCommandInput, StartDevEnvironmentSessionCommandOutput, CodeCatalystClientResolvedConfig> {
|
|
55
62
|
readonly input: StartDevEnvironmentSessionCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: StartDevEnvironmentSessionCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeCatalystClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartDevEnvironmentSessionCommandInput, StartDevEnvironmentSessionCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient";
|
|
5
5
|
import { StopDevEnvironmentRequest, StopDevEnvironmentResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StopDevEnvironmentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StopDevEnvironmentCommandInput extends StopDevEnvironmentRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StopDevEnvironmentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StopDevEnvironmentCommandOutput extends StopDevEnvironmentResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Pauses a specified Dev Environment and places it in a non-running state. Stopped Dev Environments do not consume compute minutes.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface StopDevEnvironmentCommandOutput extends StopDevEnvironmentRespo
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param StopDevEnvironmentCommandInput - {@link StopDevEnvironmentCommandInput}
|
|
34
|
+
* @returns {@link StopDevEnvironmentCommandOutput}
|
|
28
35
|
* @see {@link StopDevEnvironmentCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link StopDevEnvironmentCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface StopDevEnvironmentCommandOutput extends StopDevEnvironmentRespo
|
|
|
54
61
|
export declare class StopDevEnvironmentCommand extends $Command<StopDevEnvironmentCommandInput, StopDevEnvironmentCommandOutput, CodeCatalystClientResolvedConfig> {
|
|
55
62
|
readonly input: StopDevEnvironmentCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: StopDevEnvironmentCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeCatalystClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopDevEnvironmentCommandInput, StopDevEnvironmentCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient";
|
|
5
5
|
import { StopDevEnvironmentSessionRequest, StopDevEnvironmentSessionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StopDevEnvironmentSessionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StopDevEnvironmentSessionCommandInput extends StopDevEnvironmentSessionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StopDevEnvironmentSessionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StopDevEnvironmentSessionCommandOutput extends StopDevEnvironmentSessionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Stops a session for a specified Dev Environment.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface StopDevEnvironmentSessionCommandOutput extends StopDevEnvironme
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param StopDevEnvironmentSessionCommandInput - {@link StopDevEnvironmentSessionCommandInput}
|
|
34
|
+
* @returns {@link StopDevEnvironmentSessionCommandOutput}
|
|
28
35
|
* @see {@link StopDevEnvironmentSessionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link StopDevEnvironmentSessionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface StopDevEnvironmentSessionCommandOutput extends StopDevEnvironme
|
|
|
54
61
|
export declare class StopDevEnvironmentSessionCommand extends $Command<StopDevEnvironmentSessionCommandInput, StopDevEnvironmentSessionCommandOutput, CodeCatalystClientResolvedConfig> {
|
|
55
62
|
readonly input: StopDevEnvironmentSessionCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: StopDevEnvironmentSessionCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeCatalystClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopDevEnvironmentSessionCommandInput, StopDevEnvironmentSessionCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient";
|
|
5
5
|
import { UpdateDevEnvironmentRequest, UpdateDevEnvironmentResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateDevEnvironmentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateDevEnvironmentCommandInput extends UpdateDevEnvironmentRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateDevEnvironmentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateDevEnvironmentCommandOutput extends UpdateDevEnvironmentResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Changes one or more values for a Dev Environment. Updating certain values of the Dev Environment will cause a restart.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UpdateDevEnvironmentCommandOutput extends UpdateDevEnvironmentR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateDevEnvironmentCommandInput - {@link UpdateDevEnvironmentCommandInput}
|
|
34
|
+
* @returns {@link UpdateDevEnvironmentCommandOutput}
|
|
28
35
|
* @see {@link UpdateDevEnvironmentCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateDevEnvironmentCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface UpdateDevEnvironmentCommandOutput extends UpdateDevEnvironmentR
|
|
|
54
61
|
export declare class UpdateDevEnvironmentCommand extends $Command<UpdateDevEnvironmentCommandInput, UpdateDevEnvironmentCommandOutput, CodeCatalystClientResolvedConfig> {
|
|
55
62
|
readonly input: UpdateDevEnvironmentCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: UpdateDevEnvironmentCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeCatalystClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateDevEnvironmentCommandInput, UpdateDevEnvironmentCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient";
|
|
5
5
|
import { VerifySessionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link VerifySessionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface VerifySessionCommandInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link VerifySessionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface VerifySessionCommandOutput extends VerifySessionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Verifies whether the calling user has a valid Amazon CodeCatalyst login and session. If successful, this returns the ID of the user in Amazon CodeCatalyst.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface VerifySessionCommandOutput extends VerifySessionResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param VerifySessionCommandInput - {@link VerifySessionCommandInput}
|
|
34
|
+
* @returns {@link VerifySessionCommandOutput}
|
|
28
35
|
* @see {@link VerifySessionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link VerifySessionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface VerifySessionCommandOutput extends VerifySessionResponse, __Met
|
|
|
54
61
|
export declare class VerifySessionCommand extends $Command<VerifySessionCommandInput, VerifySessionCommandOutput, CodeCatalystClientResolvedConfig> {
|
|
55
62
|
readonly input: VerifySessionCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: VerifySessionCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeCatalystClientResolvedConfig, options?: __HttpHandlerOptions): Handler<VerifySessionCommandInput, VerifySessionCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from CodeCatalyst service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class CodeCatalystServiceException extends __ServiceException {
|