@aws-sdk/client-codecatalyst 3.296.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 +2 -2
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient";
|
|
5
5
|
import { GetProjectRequest, GetProjectResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetProjectCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetProjectCommandInput extends GetProjectRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetProjectCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetProjectCommandOutput extends GetProjectResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about a project.</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 GetProjectCommandOutput extends GetProjectResponse, __MetadataB
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetProjectCommandInput - {@link GetProjectCommandInput}
|
|
34
|
+
* @returns {@link GetProjectCommandOutput}
|
|
28
35
|
* @see {@link GetProjectCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetProjectCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface GetProjectCommandOutput extends GetProjectResponse, __MetadataB
|
|
|
54
61
|
export declare class GetProjectCommand extends $Command<GetProjectCommandInput, GetProjectCommandOutput, CodeCatalystClientResolvedConfig> {
|
|
55
62
|
readonly input: GetProjectCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: GetProjectCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeCatalystClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetProjectCommandInput, GetProjectCommandOutput>;
|
|
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 { GetSourceRepositoryCloneUrlsRequest, GetSourceRepositoryCloneUrlsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetSourceRepositoryCloneUrlsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetSourceRepositoryCloneUrlsCommandInput extends GetSourceRepositoryCloneUrlsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetSourceRepositoryCloneUrlsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetSourceRepositoryCloneUrlsCommandOutput extends GetSourceRepositoryCloneUrlsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about the URLs that can be used with a Git client to clone a source
|
|
18
23
|
* repository.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetSourceRepositoryCloneUrlsCommandOutput extends GetSourceRepo
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetSourceRepositoryCloneUrlsCommandInput - {@link GetSourceRepositoryCloneUrlsCommandInput}
|
|
35
|
+
* @returns {@link GetSourceRepositoryCloneUrlsCommandOutput}
|
|
29
36
|
* @see {@link GetSourceRepositoryCloneUrlsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetSourceRepositoryCloneUrlsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface GetSourceRepositoryCloneUrlsCommandOutput extends GetSourceRepo
|
|
|
55
62
|
export declare class GetSourceRepositoryCloneUrlsCommand extends $Command<GetSourceRepositoryCloneUrlsCommandInput, GetSourceRepositoryCloneUrlsCommandOutput, CodeCatalystClientResolvedConfig> {
|
|
56
63
|
readonly input: GetSourceRepositoryCloneUrlsCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: GetSourceRepositoryCloneUrlsCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeCatalystClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSourceRepositoryCloneUrlsCommandInput, GetSourceRepositoryCloneUrlsCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient";
|
|
5
5
|
import { GetSpaceRequest, GetSpaceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetSpaceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetSpaceCommandInput extends GetSpaceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetSpaceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetSpaceCommandOutput extends GetSpaceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about an space.</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 GetSpaceCommandOutput extends GetSpaceResponse, __MetadataBeare
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetSpaceCommandInput - {@link GetSpaceCommandInput}
|
|
34
|
+
* @returns {@link GetSpaceCommandOutput}
|
|
28
35
|
* @see {@link GetSpaceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetSpaceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface GetSpaceCommandOutput extends GetSpaceResponse, __MetadataBeare
|
|
|
54
61
|
export declare class GetSpaceCommand extends $Command<GetSpaceCommandInput, GetSpaceCommandOutput, CodeCatalystClientResolvedConfig> {
|
|
55
62
|
readonly input: GetSpaceCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: GetSpaceCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeCatalystClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSpaceCommandInput, GetSpaceCommandOutput>;
|
|
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 { GetSubscriptionRequest, GetSubscriptionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetSubscriptionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetSubscriptionCommandInput extends GetSubscriptionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetSubscriptionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetSubscriptionCommandOutput extends GetSubscriptionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about the Amazon Web Services account used for billing purposes
|
|
18
23
|
* and the billing plan for the space.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetSubscriptionCommandOutput extends GetSubscriptionResponse, _
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetSubscriptionCommandInput - {@link GetSubscriptionCommandInput}
|
|
35
|
+
* @returns {@link GetSubscriptionCommandOutput}
|
|
29
36
|
* @see {@link GetSubscriptionCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetSubscriptionCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface GetSubscriptionCommandOutput extends GetSubscriptionResponse, _
|
|
|
55
62
|
export declare class GetSubscriptionCommand extends $Command<GetSubscriptionCommandInput, GetSubscriptionCommandOutput, CodeCatalystClientResolvedConfig> {
|
|
56
63
|
readonly input: GetSubscriptionCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: GetSubscriptionCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeCatalystClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSubscriptionCommandInput, GetSubscriptionCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient";
|
|
5
5
|
import { GetUserDetailsRequest, GetUserDetailsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetUserDetailsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetUserDetailsCommandInput extends GetUserDetailsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetUserDetailsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetUserDetailsCommandOutput extends GetUserDetailsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about a user. </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 GetUserDetailsCommandOutput extends GetUserDetailsResponse, __M
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetUserDetailsCommandInput - {@link GetUserDetailsCommandInput}
|
|
34
|
+
* @returns {@link GetUserDetailsCommandOutput}
|
|
28
35
|
* @see {@link GetUserDetailsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetUserDetailsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface GetUserDetailsCommandOutput extends GetUserDetailsResponse, __M
|
|
|
54
61
|
export declare class GetUserDetailsCommand extends $Command<GetUserDetailsCommandInput, GetUserDetailsCommandOutput, CodeCatalystClientResolvedConfig> {
|
|
55
62
|
readonly input: GetUserDetailsCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: GetUserDetailsCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeCatalystClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetUserDetailsCommandInput, GetUserDetailsCommandOutput>;
|
|
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 { ListAccessTokensRequest, ListAccessTokensResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListAccessTokensCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListAccessTokensCommandInput extends ListAccessTokensRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListAccessTokensCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListAccessTokensCommandOutput extends ListAccessTokensResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all personal access tokens (PATs) associated with the user who calls the API. You can only list PATs associated with your user account.</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 ListAccessTokensCommandOutput extends ListAccessTokensResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListAccessTokensCommandInput - {@link ListAccessTokensCommandInput}
|
|
34
|
+
* @returns {@link ListAccessTokensCommandOutput}
|
|
28
35
|
* @see {@link ListAccessTokensCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListAccessTokensCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface ListAccessTokensCommandOutput extends ListAccessTokensResponse,
|
|
|
54
61
|
export declare class ListAccessTokensCommand extends $Command<ListAccessTokensCommandInput, ListAccessTokensCommandOutput, CodeCatalystClientResolvedConfig> {
|
|
55
62
|
readonly input: ListAccessTokensCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: ListAccessTokensCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeCatalystClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAccessTokensCommandInput, ListAccessTokensCommandOutput>;
|
|
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 { ListDevEnvironmentsRequest, ListDevEnvironmentsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListDevEnvironmentsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListDevEnvironmentsCommandInput extends ListDevEnvironmentsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListDevEnvironmentsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListDevEnvironmentsCommandOutput extends ListDevEnvironmentsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrives a list of Dev Environments in a project.</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 ListDevEnvironmentsCommandOutput extends ListDevEnvironmentsRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListDevEnvironmentsCommandInput - {@link ListDevEnvironmentsCommandInput}
|
|
34
|
+
* @returns {@link ListDevEnvironmentsCommandOutput}
|
|
28
35
|
* @see {@link ListDevEnvironmentsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListDevEnvironmentsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface ListDevEnvironmentsCommandOutput extends ListDevEnvironmentsRes
|
|
|
54
61
|
export declare class ListDevEnvironmentsCommand extends $Command<ListDevEnvironmentsCommandInput, ListDevEnvironmentsCommandOutput, CodeCatalystClientResolvedConfig> {
|
|
55
62
|
readonly input: ListDevEnvironmentsCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: ListDevEnvironmentsCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeCatalystClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDevEnvironmentsCommandInput, ListDevEnvironmentsCommandOutput>;
|
|
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 { ListEventLogsRequest, ListEventLogsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListEventLogsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListEventLogsCommandInput extends ListEventLogsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListEventLogsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListEventLogsCommandOutput extends ListEventLogsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a list of events that occurred during a specified time period in a space. You can use these events to audit user and system activity in a space.</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 ListEventLogsCommandOutput extends ListEventLogsResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListEventLogsCommandInput - {@link ListEventLogsCommandInput}
|
|
34
|
+
* @returns {@link ListEventLogsCommandOutput}
|
|
28
35
|
* @see {@link ListEventLogsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListEventLogsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface ListEventLogsCommandOutput extends ListEventLogsResponse, __Met
|
|
|
54
61
|
export declare class ListEventLogsCommand extends $Command<ListEventLogsCommandInput, ListEventLogsCommandOutput, CodeCatalystClientResolvedConfig> {
|
|
55
62
|
readonly input: ListEventLogsCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: ListEventLogsCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeCatalystClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListEventLogsCommandInput, ListEventLogsCommandOutput>;
|
|
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 { ListProjectsRequest, ListProjectsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListProjectsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListProjectsCommandInput extends ListProjectsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListProjectsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListProjectsCommandOutput extends ListProjectsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a list of projects.</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 ListProjectsCommandOutput extends ListProjectsResponse, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListProjectsCommandInput - {@link ListProjectsCommandInput}
|
|
34
|
+
* @returns {@link ListProjectsCommandOutput}
|
|
28
35
|
* @see {@link ListProjectsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListProjectsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface ListProjectsCommandOutput extends ListProjectsResponse, __Metad
|
|
|
54
61
|
export declare class ListProjectsCommand extends $Command<ListProjectsCommandInput, ListProjectsCommandOutput, CodeCatalystClientResolvedConfig> {
|
|
55
62
|
readonly input: ListProjectsCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: ListProjectsCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeCatalystClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListProjectsCommandInput, ListProjectsCommandOutput>;
|
|
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 { ListSourceRepositoriesRequest, ListSourceRepositoriesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListSourceRepositoriesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListSourceRepositoriesCommandInput extends ListSourceRepositoriesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListSourceRepositoriesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListSourceRepositoriesCommandOutput extends ListSourceRepositoriesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a list of source repositories in a project.</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 ListSourceRepositoriesCommandOutput extends ListSourceRepositor
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListSourceRepositoriesCommandInput - {@link ListSourceRepositoriesCommandInput}
|
|
34
|
+
* @returns {@link ListSourceRepositoriesCommandOutput}
|
|
28
35
|
* @see {@link ListSourceRepositoriesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListSourceRepositoriesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface ListSourceRepositoriesCommandOutput extends ListSourceRepositor
|
|
|
54
61
|
export declare class ListSourceRepositoriesCommand extends $Command<ListSourceRepositoriesCommandInput, ListSourceRepositoriesCommandOutput, CodeCatalystClientResolvedConfig> {
|
|
55
62
|
readonly input: ListSourceRepositoriesCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: ListSourceRepositoriesCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeCatalystClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSourceRepositoriesCommandInput, ListSourceRepositoriesCommandOutput>;
|
|
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 { ListSourceRepositoryBranchesRequest, ListSourceRepositoryBranchesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListSourceRepositoryBranchesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListSourceRepositoryBranchesCommandInput extends ListSourceRepositoryBranchesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListSourceRepositoryBranchesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListSourceRepositoryBranchesCommandOutput extends ListSourceRepositoryBranchesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a list of branches in a specified source repository.</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 ListSourceRepositoryBranchesCommandOutput extends ListSourceRep
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListSourceRepositoryBranchesCommandInput - {@link ListSourceRepositoryBranchesCommandInput}
|
|
34
|
+
* @returns {@link ListSourceRepositoryBranchesCommandOutput}
|
|
28
35
|
* @see {@link ListSourceRepositoryBranchesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListSourceRepositoryBranchesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface ListSourceRepositoryBranchesCommandOutput extends ListSourceRep
|
|
|
54
61
|
export declare class ListSourceRepositoryBranchesCommand extends $Command<ListSourceRepositoryBranchesCommandInput, ListSourceRepositoryBranchesCommandOutput, CodeCatalystClientResolvedConfig> {
|
|
55
62
|
readonly input: ListSourceRepositoryBranchesCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: ListSourceRepositoryBranchesCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeCatalystClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSourceRepositoryBranchesCommandInput, ListSourceRepositoryBranchesCommandOutput>;
|
|
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 { ListSpacesRequest, ListSpacesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListSpacesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListSpacesCommandInput extends ListSpacesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListSpacesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListSpacesCommandOutput extends ListSpacesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a list of spaces.</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 ListSpacesCommandOutput extends ListSpacesResponse, __MetadataB
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListSpacesCommandInput - {@link ListSpacesCommandInput}
|
|
34
|
+
* @returns {@link ListSpacesCommandOutput}
|
|
28
35
|
* @see {@link ListSpacesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListSpacesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface ListSpacesCommandOutput extends ListSpacesResponse, __MetadataB
|
|
|
54
61
|
export declare class ListSpacesCommand extends $Command<ListSpacesCommandInput, ListSpacesCommandOutput, CodeCatalystClientResolvedConfig> {
|
|
55
62
|
readonly input: ListSpacesCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: ListSpacesCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeCatalystClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSpacesCommandInput, ListSpacesCommandOutput>;
|
|
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 { StartDevEnvironmentRequest, StartDevEnvironmentResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartDevEnvironmentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartDevEnvironmentCommandInput extends StartDevEnvironmentRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartDevEnvironmentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartDevEnvironmentCommandOutput extends StartDevEnvironmentResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Starts a specified Dev Environment and puts it into an active state. </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 StartDevEnvironmentCommandOutput extends StartDevEnvironmentRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param StartDevEnvironmentCommandInput - {@link StartDevEnvironmentCommandInput}
|
|
34
|
+
* @returns {@link StartDevEnvironmentCommandOutput}
|
|
28
35
|
* @see {@link StartDevEnvironmentCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link StartDevEnvironmentCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface StartDevEnvironmentCommandOutput extends StartDevEnvironmentRes
|
|
|
54
61
|
export declare class StartDevEnvironmentCommand extends $Command<StartDevEnvironmentCommandInput, StartDevEnvironmentCommandOutput, CodeCatalystClientResolvedConfig> {
|
|
55
62
|
readonly input: StartDevEnvironmentCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: StartDevEnvironmentCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeCatalystClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartDevEnvironmentCommandInput, StartDevEnvironmentCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|