@aws-sdk/client-codestar-connections 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/CodeStarConnections.d.ts +13 -0
- package/dist-types/CodeStarConnectionsClient.d.ts +24 -4
- package/dist-types/commands/CreateConnectionCommand.d.ts +16 -0
- package/dist-types/commands/CreateHostCommand.d.ts +16 -0
- package/dist-types/commands/DeleteConnectionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteHostCommand.d.ts +16 -0
- package/dist-types/commands/GetConnectionCommand.d.ts +16 -0
- package/dist-types/commands/GetHostCommand.d.ts +16 -0
- package/dist-types/commands/ListConnectionsCommand.d.ts +16 -0
- package/dist-types/commands/ListHostsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateHostCommand.d.ts +16 -0
- package/dist-types/models/CodeStarConnectionsServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +87 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListConnectionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListHostsPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -13,6 +13,7 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
|
|
|
13
13
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
14
14
|
import { UpdateHostCommandInput, UpdateHostCommandOutput } from "./commands/UpdateHostCommand";
|
|
15
15
|
/**
|
|
16
|
+
* @public
|
|
16
17
|
* <fullname>AWS CodeStar Connections</fullname>
|
|
17
18
|
* <p>This AWS CodeStar Connections API Reference provides descriptions and usage examples of
|
|
18
19
|
* the operations and data types for the AWS CodeStar Connections API. You can use the
|
|
@@ -96,6 +97,7 @@ import { UpdateHostCommandInput, UpdateHostCommandOutput } from "./commands/Upda
|
|
|
96
97
|
*/
|
|
97
98
|
export declare class CodeStarConnections extends CodeStarConnectionsClient {
|
|
98
99
|
/**
|
|
100
|
+
* @public
|
|
99
101
|
* <p>Creates a connection that can then be given to other AWS services like CodePipeline so
|
|
100
102
|
* that it can access third-party code repositories. The connection is in pending status until
|
|
101
103
|
* the third-party connection handshake is completed from the console.</p>
|
|
@@ -104,6 +106,7 @@ export declare class CodeStarConnections extends CodeStarConnectionsClient {
|
|
|
104
106
|
createConnection(args: CreateConnectionCommandInput, cb: (err: any, data?: CreateConnectionCommandOutput) => void): void;
|
|
105
107
|
createConnection(args: CreateConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConnectionCommandOutput) => void): void;
|
|
106
108
|
/**
|
|
109
|
+
* @public
|
|
107
110
|
* <p>Creates a resource that represents the infrastructure where a third-party provider is
|
|
108
111
|
* installed. The host is used when you create connections to an installed third-party provider
|
|
109
112
|
* type, such as GitHub Enterprise Server. You create one host for all connections to that
|
|
@@ -117,12 +120,14 @@ export declare class CodeStarConnections extends CodeStarConnectionsClient {
|
|
|
117
120
|
createHost(args: CreateHostCommandInput, cb: (err: any, data?: CreateHostCommandOutput) => void): void;
|
|
118
121
|
createHost(args: CreateHostCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateHostCommandOutput) => void): void;
|
|
119
122
|
/**
|
|
123
|
+
* @public
|
|
120
124
|
* <p>The connection to be deleted.</p>
|
|
121
125
|
*/
|
|
122
126
|
deleteConnection(args: DeleteConnectionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConnectionCommandOutput>;
|
|
123
127
|
deleteConnection(args: DeleteConnectionCommandInput, cb: (err: any, data?: DeleteConnectionCommandOutput) => void): void;
|
|
124
128
|
deleteConnection(args: DeleteConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConnectionCommandOutput) => void): void;
|
|
125
129
|
/**
|
|
130
|
+
* @public
|
|
126
131
|
* <p>The host to be deleted. Before you delete a host, all connections associated to the host must be deleted.</p>
|
|
127
132
|
* <note>
|
|
128
133
|
* <p>A host cannot be deleted if it is in the VPC_CONFIG_INITIALIZING or VPC_CONFIG_DELETING state.</p>
|
|
@@ -132,12 +137,14 @@ export declare class CodeStarConnections extends CodeStarConnectionsClient {
|
|
|
132
137
|
deleteHost(args: DeleteHostCommandInput, cb: (err: any, data?: DeleteHostCommandOutput) => void): void;
|
|
133
138
|
deleteHost(args: DeleteHostCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteHostCommandOutput) => void): void;
|
|
134
139
|
/**
|
|
140
|
+
* @public
|
|
135
141
|
* <p>Returns the connection ARN and details such as status, owner, and provider type.</p>
|
|
136
142
|
*/
|
|
137
143
|
getConnection(args: GetConnectionCommandInput, options?: __HttpHandlerOptions): Promise<GetConnectionCommandOutput>;
|
|
138
144
|
getConnection(args: GetConnectionCommandInput, cb: (err: any, data?: GetConnectionCommandOutput) => void): void;
|
|
139
145
|
getConnection(args: GetConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConnectionCommandOutput) => void): void;
|
|
140
146
|
/**
|
|
147
|
+
* @public
|
|
141
148
|
* <p>Returns the host ARN and details such as status, provider type, endpoint, and, if
|
|
142
149
|
* applicable, the VPC configuration.</p>
|
|
143
150
|
*/
|
|
@@ -145,24 +152,28 @@ export declare class CodeStarConnections extends CodeStarConnectionsClient {
|
|
|
145
152
|
getHost(args: GetHostCommandInput, cb: (err: any, data?: GetHostCommandOutput) => void): void;
|
|
146
153
|
getHost(args: GetHostCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetHostCommandOutput) => void): void;
|
|
147
154
|
/**
|
|
155
|
+
* @public
|
|
148
156
|
* <p>Lists the connections associated with your account.</p>
|
|
149
157
|
*/
|
|
150
158
|
listConnections(args: ListConnectionsCommandInput, options?: __HttpHandlerOptions): Promise<ListConnectionsCommandOutput>;
|
|
151
159
|
listConnections(args: ListConnectionsCommandInput, cb: (err: any, data?: ListConnectionsCommandOutput) => void): void;
|
|
152
160
|
listConnections(args: ListConnectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConnectionsCommandOutput) => void): void;
|
|
153
161
|
/**
|
|
162
|
+
* @public
|
|
154
163
|
* <p>Lists the hosts associated with your account.</p>
|
|
155
164
|
*/
|
|
156
165
|
listHosts(args: ListHostsCommandInput, options?: __HttpHandlerOptions): Promise<ListHostsCommandOutput>;
|
|
157
166
|
listHosts(args: ListHostsCommandInput, cb: (err: any, data?: ListHostsCommandOutput) => void): void;
|
|
158
167
|
listHosts(args: ListHostsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListHostsCommandOutput) => void): void;
|
|
159
168
|
/**
|
|
169
|
+
* @public
|
|
160
170
|
* <p>Gets the set of key-value pairs (metadata) that are used to manage the resource.</p>
|
|
161
171
|
*/
|
|
162
172
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
163
173
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
164
174
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
165
175
|
/**
|
|
176
|
+
* @public
|
|
166
177
|
* <p>Adds to or modifies the tags of the given resource. Tags are metadata that can be used
|
|
167
178
|
* to manage a resource.</p>
|
|
168
179
|
*/
|
|
@@ -170,12 +181,14 @@ export declare class CodeStarConnections extends CodeStarConnectionsClient {
|
|
|
170
181
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
171
182
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
172
183
|
/**
|
|
184
|
+
* @public
|
|
173
185
|
* <p>Removes tags from an AWS resource.</p>
|
|
174
186
|
*/
|
|
175
187
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
176
188
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
177
189
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
178
190
|
/**
|
|
191
|
+
* @public
|
|
179
192
|
* <p>Updates a specified host with the provided configurations.</p>
|
|
180
193
|
*/
|
|
181
194
|
updateHost(args: UpdateHostCommandInput, options?: __HttpHandlerOptions): Promise<UpdateHostCommandOutput>;
|
|
@@ -20,15 +20,24 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
|
|
|
20
20
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
21
21
|
import { UpdateHostCommandInput, UpdateHostCommandOutput } from "./commands/UpdateHostCommand";
|
|
22
22
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
23
|
+
/**
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
23
26
|
export type ServiceInputTypes = CreateConnectionCommandInput | CreateHostCommandInput | DeleteConnectionCommandInput | DeleteHostCommandInput | GetConnectionCommandInput | GetHostCommandInput | ListConnectionsCommandInput | ListHostsCommandInput | ListTagsForResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateHostCommandInput;
|
|
27
|
+
/**
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
24
30
|
export type ServiceOutputTypes = CreateConnectionCommandOutput | CreateHostCommandOutput | DeleteConnectionCommandOutput | DeleteHostCommandOutput | GetConnectionCommandOutput | GetHostCommandOutput | ListConnectionsCommandOutput | ListHostsCommandOutput | ListTagsForResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateHostCommandOutput;
|
|
31
|
+
/**
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
25
34
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
26
35
|
/**
|
|
27
36
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
28
37
|
*/
|
|
29
38
|
requestHandler?: __HttpHandler;
|
|
30
39
|
/**
|
|
31
|
-
* A constructor for a class implementing the {@link
|
|
40
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
32
41
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
33
42
|
* @internal
|
|
34
43
|
*/
|
|
@@ -118,23 +127,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
118
127
|
*/
|
|
119
128
|
logger?: __Logger;
|
|
120
129
|
/**
|
|
121
|
-
* The {@link
|
|
130
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
122
131
|
*/
|
|
123
132
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
124
133
|
}
|
|
134
|
+
/**
|
|
135
|
+
* @public
|
|
136
|
+
*/
|
|
125
137
|
type CodeStarConnectionsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
126
138
|
/**
|
|
127
|
-
*
|
|
139
|
+
* @public
|
|
140
|
+
*
|
|
141
|
+
* The configuration interface of CodeStarConnectionsClient class constructor that set the region, credentials and other options.
|
|
128
142
|
*/
|
|
129
143
|
export interface CodeStarConnectionsClientConfig extends CodeStarConnectionsClientConfigType {
|
|
130
144
|
}
|
|
145
|
+
/**
|
|
146
|
+
* @public
|
|
147
|
+
*/
|
|
131
148
|
type CodeStarConnectionsClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
132
149
|
/**
|
|
133
|
-
*
|
|
150
|
+
* @public
|
|
151
|
+
*
|
|
152
|
+
* The resolved configuration interface of CodeStarConnectionsClient class. This is resolved and normalized from the {@link CodeStarConnectionsClientConfig | constructor configuration interface}.
|
|
134
153
|
*/
|
|
135
154
|
export interface CodeStarConnectionsClientResolvedConfig extends CodeStarConnectionsClientResolvedConfigType {
|
|
136
155
|
}
|
|
137
156
|
/**
|
|
157
|
+
* @public
|
|
138
158
|
* <fullname>AWS CodeStar Connections</fullname>
|
|
139
159
|
* <p>This AWS CodeStar Connections API Reference provides descriptions and usage examples of
|
|
140
160
|
* the operations and data types for the AWS CodeStar Connections API. You can use the
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeStarConnectionsClient";
|
|
5
5
|
import { CreateConnectionInput, CreateConnectionOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateConnectionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateConnectionCommandInput extends CreateConnectionInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateConnectionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateConnectionCommandOutput extends CreateConnectionOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a connection that can then be given to other AWS services like CodePipeline so
|
|
18
23
|
* that it can access third-party code repositories. The connection is in pending status until
|
|
19
24
|
* the third-party connection handshake is completed from the console.</p>
|
|
@@ -27,6 +32,8 @@ export interface CreateConnectionCommandOutput extends CreateConnectionOutput, _
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param CreateConnectionCommandInput - {@link CreateConnectionCommandInput}
|
|
36
|
+
* @returns {@link CreateConnectionCommandOutput}
|
|
30
37
|
* @see {@link CreateConnectionCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link CreateConnectionCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link CodeStarConnectionsClientResolvedConfig | config} for CodeStarConnectionsClient's `config` shape.
|
|
@@ -45,11 +52,20 @@ export interface CreateConnectionCommandOutput extends CreateConnectionOutput, _
|
|
|
45
52
|
export declare class CreateConnectionCommand extends $Command<CreateConnectionCommandInput, CreateConnectionCommandOutput, CodeStarConnectionsClientResolvedConfig> {
|
|
46
53
|
readonly input: CreateConnectionCommandInput;
|
|
47
54
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
48
58
|
constructor(input: CreateConnectionCommandInput);
|
|
49
59
|
/**
|
|
50
60
|
* @internal
|
|
51
61
|
*/
|
|
52
62
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeStarConnectionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateConnectionCommandInput, CreateConnectionCommandOutput>;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
53
66
|
private serialize;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
54
70
|
private deserialize;
|
|
55
71
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeStarConnectionsClient";
|
|
5
5
|
import { CreateHostInput, CreateHostOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateHostCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateHostCommandInput extends CreateHostInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateHostCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateHostCommandOutput extends CreateHostOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a resource that represents the infrastructure where a third-party provider is
|
|
18
23
|
* installed. The host is used when you create connections to an installed third-party provider
|
|
19
24
|
* type, such as GitHub Enterprise Server. You create one host for all connections to that
|
|
@@ -32,6 +37,8 @@ export interface CreateHostCommandOutput extends CreateHostOutput, __MetadataBea
|
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
34
39
|
*
|
|
40
|
+
* @param CreateHostCommandInput - {@link CreateHostCommandInput}
|
|
41
|
+
* @returns {@link CreateHostCommandOutput}
|
|
35
42
|
* @see {@link CreateHostCommandInput} for command's `input` shape.
|
|
36
43
|
* @see {@link CreateHostCommandOutput} for command's `response` shape.
|
|
37
44
|
* @see {@link CodeStarConnectionsClientResolvedConfig | config} for CodeStarConnectionsClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface CreateHostCommandOutput extends CreateHostOutput, __MetadataBea
|
|
|
44
51
|
export declare class CreateHostCommand extends $Command<CreateHostCommandInput, CreateHostCommandOutput, CodeStarConnectionsClientResolvedConfig> {
|
|
45
52
|
readonly input: CreateHostCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: CreateHostCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeStarConnectionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateHostCommandInput, CreateHostCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeStarConnectionsClient";
|
|
5
5
|
import { DeleteConnectionInput, DeleteConnectionOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteConnectionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteConnectionCommandInput extends DeleteConnectionInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteConnectionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteConnectionCommandOutput extends DeleteConnectionOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>The connection to be deleted.</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 DeleteConnectionCommandOutput extends DeleteConnectionOutput, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteConnectionCommandInput - {@link DeleteConnectionCommandInput}
|
|
34
|
+
* @returns {@link DeleteConnectionCommandOutput}
|
|
28
35
|
* @see {@link DeleteConnectionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteConnectionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeStarConnectionsClientResolvedConfig | config} for CodeStarConnectionsClient's `config` shape.
|
|
@@ -37,11 +44,20 @@ export interface DeleteConnectionCommandOutput extends DeleteConnectionOutput, _
|
|
|
37
44
|
export declare class DeleteConnectionCommand extends $Command<DeleteConnectionCommandInput, DeleteConnectionCommandOutput, CodeStarConnectionsClientResolvedConfig> {
|
|
38
45
|
readonly input: DeleteConnectionCommandInput;
|
|
39
46
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
40
50
|
constructor(input: DeleteConnectionCommandInput);
|
|
41
51
|
/**
|
|
42
52
|
* @internal
|
|
43
53
|
*/
|
|
44
54
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeStarConnectionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteConnectionCommandInput, DeleteConnectionCommandOutput>;
|
|
55
|
+
/**
|
|
56
|
+
* @internal
|
|
57
|
+
*/
|
|
45
58
|
private serialize;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
46
62
|
private deserialize;
|
|
47
63
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeStarConnectionsClient";
|
|
5
5
|
import { DeleteHostInput, DeleteHostOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteHostCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteHostCommandInput extends DeleteHostInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteHostCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteHostCommandOutput extends DeleteHostOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>The host to be deleted. Before you delete a host, all connections associated to the host must be deleted.</p>
|
|
18
23
|
* <note>
|
|
19
24
|
* <p>A host cannot be deleted if it is in the VPC_CONFIG_INITIALIZING or VPC_CONFIG_DELETING state.</p>
|
|
@@ -28,6 +33,8 @@ export interface DeleteHostCommandOutput extends DeleteHostOutput, __MetadataBea
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param DeleteHostCommandInput - {@link DeleteHostCommandInput}
|
|
37
|
+
* @returns {@link DeleteHostCommandOutput}
|
|
31
38
|
* @see {@link DeleteHostCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link DeleteHostCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link CodeStarConnectionsClientResolvedConfig | config} for CodeStarConnectionsClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DeleteHostCommandOutput extends DeleteHostOutput, __MetadataBea
|
|
|
43
50
|
export declare class DeleteHostCommand extends $Command<DeleteHostCommandInput, DeleteHostCommandOutput, CodeStarConnectionsClientResolvedConfig> {
|
|
44
51
|
readonly input: DeleteHostCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DeleteHostCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeStarConnectionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteHostCommandInput, DeleteHostCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeStarConnectionsClient";
|
|
5
5
|
import { GetConnectionInput, GetConnectionOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetConnectionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetConnectionCommandInput extends GetConnectionInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetConnectionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetConnectionCommandOutput extends GetConnectionOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the connection ARN and details such as status, owner, and provider type.</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 GetConnectionCommandOutput extends GetConnectionOutput, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetConnectionCommandInput - {@link GetConnectionCommandInput}
|
|
34
|
+
* @returns {@link GetConnectionCommandOutput}
|
|
28
35
|
* @see {@link GetConnectionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetConnectionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeStarConnectionsClientResolvedConfig | config} for CodeStarConnectionsClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface GetConnectionCommandOutput extends GetConnectionOutput, __Metad
|
|
|
40
47
|
export declare class GetConnectionCommand extends $Command<GetConnectionCommandInput, GetConnectionCommandOutput, CodeStarConnectionsClientResolvedConfig> {
|
|
41
48
|
readonly input: GetConnectionCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: GetConnectionCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeStarConnectionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetConnectionCommandInput, GetConnectionCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeStarConnectionsClient";
|
|
5
5
|
import { GetHostInput, GetHostOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetHostCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetHostCommandInput extends GetHostInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetHostCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetHostCommandOutput extends GetHostOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the host ARN and details such as status, provider type, endpoint, and, if
|
|
18
23
|
* applicable, the VPC configuration.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetHostCommandOutput extends GetHostOutput, __MetadataBearer {
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetHostCommandInput - {@link GetHostCommandInput}
|
|
35
|
+
* @returns {@link GetHostCommandOutput}
|
|
29
36
|
* @see {@link GetHostCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetHostCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CodeStarConnectionsClientResolvedConfig | config} for CodeStarConnectionsClient's `config` shape.
|
|
@@ -41,11 +48,20 @@ export interface GetHostCommandOutput extends GetHostOutput, __MetadataBearer {
|
|
|
41
48
|
export declare class GetHostCommand extends $Command<GetHostCommandInput, GetHostCommandOutput, CodeStarConnectionsClientResolvedConfig> {
|
|
42
49
|
readonly input: GetHostCommandInput;
|
|
43
50
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
44
54
|
constructor(input: GetHostCommandInput);
|
|
45
55
|
/**
|
|
46
56
|
* @internal
|
|
47
57
|
*/
|
|
48
58
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeStarConnectionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetHostCommandInput, GetHostCommandOutput>;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
49
62
|
private serialize;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
50
66
|
private deserialize;
|
|
51
67
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeStarConnectionsClient";
|
|
5
5
|
import { ListConnectionsInput, ListConnectionsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListConnectionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListConnectionsCommandInput extends ListConnectionsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListConnectionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListConnectionsCommandOutput extends ListConnectionsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the connections associated with your 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 ListConnectionsCommandOutput extends ListConnectionsOutput, __M
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListConnectionsCommandInput - {@link ListConnectionsCommandInput}
|
|
34
|
+
* @returns {@link ListConnectionsCommandOutput}
|
|
28
35
|
* @see {@link ListConnectionsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListConnectionsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeStarConnectionsClientResolvedConfig | config} for CodeStarConnectionsClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface ListConnectionsCommandOutput extends ListConnectionsOutput, __M
|
|
|
34
41
|
export declare class ListConnectionsCommand extends $Command<ListConnectionsCommandInput, ListConnectionsCommandOutput, CodeStarConnectionsClientResolvedConfig> {
|
|
35
42
|
readonly input: ListConnectionsCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: ListConnectionsCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeStarConnectionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListConnectionsCommandInput, ListConnectionsCommandOutput>;
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
42
55
|
private serialize;
|
|
56
|
+
/**
|
|
57
|
+
* @internal
|
|
58
|
+
*/
|
|
43
59
|
private deserialize;
|
|
44
60
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeStarConnectionsClient";
|
|
5
5
|
import { ListHostsInput, ListHostsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListHostsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListHostsCommandInput extends ListHostsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListHostsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListHostsCommandOutput extends ListHostsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the hosts associated with your 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 ListHostsCommandOutput extends ListHostsOutput, __MetadataBeare
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListHostsCommandInput - {@link ListHostsCommandInput}
|
|
34
|
+
* @returns {@link ListHostsCommandOutput}
|
|
28
35
|
* @see {@link ListHostsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListHostsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeStarConnectionsClientResolvedConfig | config} for CodeStarConnectionsClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface ListHostsCommandOutput extends ListHostsOutput, __MetadataBeare
|
|
|
34
41
|
export declare class ListHostsCommand extends $Command<ListHostsCommandInput, ListHostsCommandOutput, CodeStarConnectionsClientResolvedConfig> {
|
|
35
42
|
readonly input: ListHostsCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: ListHostsCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeStarConnectionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListHostsCommandInput, ListHostsCommandOutput>;
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
42
55
|
private serialize;
|
|
56
|
+
/**
|
|
57
|
+
* @internal
|
|
58
|
+
*/
|
|
43
59
|
private deserialize;
|
|
44
60
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeStarConnectionsClient";
|
|
5
5
|
import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the set of key-value pairs (metadata) that are used to manage the resource.</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 ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
34
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
28
35
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeStarConnectionsClientResolvedConfig | config} for CodeStarConnectionsClient's `config` shape.
|
|
@@ -37,11 +44,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
37
44
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CodeStarConnectionsClientResolvedConfig> {
|
|
38
45
|
readonly input: ListTagsForResourceCommandInput;
|
|
39
46
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
40
50
|
constructor(input: ListTagsForResourceCommandInput);
|
|
41
51
|
/**
|
|
42
52
|
* @internal
|
|
43
53
|
*/
|
|
44
54
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeStarConnectionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
55
|
+
/**
|
|
56
|
+
* @internal
|
|
57
|
+
*/
|
|
45
58
|
private serialize;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
46
62
|
private deserialize;
|
|
47
63
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeStarConnectionsClient";
|
|
5
5
|
import { TagResourceInput, TagResourceOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TagResourceCommandInput extends TagResourceInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds to or modifies the tags of the given resource. Tags are metadata that can be used
|
|
18
23
|
* to manage a resource.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
35
|
+
* @returns {@link TagResourceCommandOutput}
|
|
29
36
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CodeStarConnectionsClientResolvedConfig | config} for CodeStarConnectionsClient's `config` shape.
|
|
@@ -41,11 +48,20 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
41
48
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, CodeStarConnectionsClientResolvedConfig> {
|
|
42
49
|
readonly input: TagResourceCommandInput;
|
|
43
50
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
44
54
|
constructor(input: TagResourceCommandInput);
|
|
45
55
|
/**
|
|
46
56
|
* @internal
|
|
47
57
|
*/
|
|
48
58
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeStarConnectionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
49
62
|
private serialize;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
50
66
|
private deserialize;
|
|
51
67
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeStarConnectionsClient";
|
|
5
5
|
import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UntagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UntagResourceCommandInput extends UntagResourceInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UntagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UntagResourceCommandOutput extends UntagResourceOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes tags from an AWS resource.</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 UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
34
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
28
35
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeStarConnectionsClientResolvedConfig | config} for CodeStarConnectionsClient's `config` shape.
|
|
@@ -37,11 +44,20 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
37
44
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, CodeStarConnectionsClientResolvedConfig> {
|
|
38
45
|
readonly input: UntagResourceCommandInput;
|
|
39
46
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
40
50
|
constructor(input: UntagResourceCommandInput);
|
|
41
51
|
/**
|
|
42
52
|
* @internal
|
|
43
53
|
*/
|
|
44
54
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeStarConnectionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
55
|
+
/**
|
|
56
|
+
* @internal
|
|
57
|
+
*/
|
|
45
58
|
private serialize;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
46
62
|
private deserialize;
|
|
47
63
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeStarConnectionsClient";
|
|
5
5
|
import { UpdateHostInput, UpdateHostOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateHostCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateHostCommandInput extends UpdateHostInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateHostCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateHostCommandOutput extends UpdateHostOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates a specified host with the provided configurations.</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 UpdateHostCommandOutput extends UpdateHostOutput, __MetadataBea
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateHostCommandInput - {@link UpdateHostCommandInput}
|
|
34
|
+
* @returns {@link UpdateHostCommandOutput}
|
|
28
35
|
* @see {@link UpdateHostCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateHostCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeStarConnectionsClientResolvedConfig | config} for CodeStarConnectionsClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface UpdateHostCommandOutput extends UpdateHostOutput, __MetadataBea
|
|
|
46
53
|
export declare class UpdateHostCommand extends $Command<UpdateHostCommandInput, UpdateHostCommandOutput, CodeStarConnectionsClientResolvedConfig> {
|
|
47
54
|
readonly input: UpdateHostCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: UpdateHostCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeStarConnectionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateHostCommandInput, UpdateHostCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -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 CodeStarConnections service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class CodeStarConnectionsServiceException extends __ServiceException {
|
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { CodeStarConnectionsServiceException as __BaseException } from "./CodeStarConnectionsServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
3
6
|
export declare enum ProviderType {
|
|
4
7
|
BITBUCKET = "Bitbucket",
|
|
5
8
|
GITHUB = "GitHub",
|
|
6
9
|
GITHUB_ENTERPRISE_SERVER = "GitHubEnterpriseServer"
|
|
7
10
|
}
|
|
8
11
|
/**
|
|
12
|
+
* @public
|
|
9
13
|
* <p>A tag is a key-value pair that is used to manage the resource.</p>
|
|
10
14
|
* <p>This tag is available for use by AWS services that support tags.</p>
|
|
11
15
|
*/
|
|
@@ -19,6 +23,9 @@ export interface Tag {
|
|
|
19
23
|
*/
|
|
20
24
|
Value: string | undefined;
|
|
21
25
|
}
|
|
26
|
+
/**
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
22
29
|
export interface CreateConnectionInput {
|
|
23
30
|
/**
|
|
24
31
|
* <p>The name of the external provider where your third-party code repository is
|
|
@@ -39,6 +46,9 @@ export interface CreateConnectionInput {
|
|
|
39
46
|
*/
|
|
40
47
|
HostArn?: string;
|
|
41
48
|
}
|
|
49
|
+
/**
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
42
52
|
export interface CreateConnectionOutput {
|
|
43
53
|
/**
|
|
44
54
|
* <p>The Amazon Resource Name (ARN) of the connection to be created. The ARN is used as the
|
|
@@ -54,6 +64,7 @@ export interface CreateConnectionOutput {
|
|
|
54
64
|
Tags?: Tag[];
|
|
55
65
|
}
|
|
56
66
|
/**
|
|
67
|
+
* @public
|
|
57
68
|
* <p>Exceeded the maximum limit for connections.</p>
|
|
58
69
|
*/
|
|
59
70
|
export declare class LimitExceededException extends __BaseException {
|
|
@@ -66,6 +77,7 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
66
77
|
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
67
78
|
}
|
|
68
79
|
/**
|
|
80
|
+
* @public
|
|
69
81
|
* <p>Resource not found. Verify the connection resource ARN and try again.</p>
|
|
70
82
|
*/
|
|
71
83
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -78,6 +90,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
78
90
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
79
91
|
}
|
|
80
92
|
/**
|
|
93
|
+
* @public
|
|
81
94
|
* <p>Resource not found. Verify the ARN for the host resource and try again.</p>
|
|
82
95
|
*/
|
|
83
96
|
export declare class ResourceUnavailableException extends __BaseException {
|
|
@@ -90,6 +103,7 @@ export declare class ResourceUnavailableException extends __BaseException {
|
|
|
90
103
|
constructor(opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>);
|
|
91
104
|
}
|
|
92
105
|
/**
|
|
106
|
+
* @public
|
|
93
107
|
* <p>The VPC configuration provisioned for the host.</p>
|
|
94
108
|
*/
|
|
95
109
|
export interface VpcConfiguration {
|
|
@@ -113,6 +127,9 @@ export interface VpcConfiguration {
|
|
|
113
127
|
*/
|
|
114
128
|
TlsCertificate?: string;
|
|
115
129
|
}
|
|
130
|
+
/**
|
|
131
|
+
* @public
|
|
132
|
+
*/
|
|
116
133
|
export interface CreateHostInput {
|
|
117
134
|
/**
|
|
118
135
|
* <p>The name of the host to be created. The name must be unique in the calling AWS
|
|
@@ -137,6 +154,9 @@ export interface CreateHostInput {
|
|
|
137
154
|
VpcConfiguration?: VpcConfiguration;
|
|
138
155
|
Tags?: Tag[];
|
|
139
156
|
}
|
|
157
|
+
/**
|
|
158
|
+
* @public
|
|
159
|
+
*/
|
|
140
160
|
export interface CreateHostOutput {
|
|
141
161
|
/**
|
|
142
162
|
* <p>The Amazon Resource Name (ARN) of the host to be created.</p>
|
|
@@ -144,6 +164,9 @@ export interface CreateHostOutput {
|
|
|
144
164
|
HostArn?: string;
|
|
145
165
|
Tags?: Tag[];
|
|
146
166
|
}
|
|
167
|
+
/**
|
|
168
|
+
* @public
|
|
169
|
+
*/
|
|
147
170
|
export interface DeleteConnectionInput {
|
|
148
171
|
/**
|
|
149
172
|
* <p>The Amazon Resource Name (ARN) of the connection to be deleted.</p>
|
|
@@ -153,28 +176,44 @@ export interface DeleteConnectionInput {
|
|
|
153
176
|
*/
|
|
154
177
|
ConnectionArn: string | undefined;
|
|
155
178
|
}
|
|
179
|
+
/**
|
|
180
|
+
* @public
|
|
181
|
+
*/
|
|
156
182
|
export interface DeleteConnectionOutput {
|
|
157
183
|
}
|
|
184
|
+
/**
|
|
185
|
+
* @public
|
|
186
|
+
*/
|
|
158
187
|
export interface DeleteHostInput {
|
|
159
188
|
/**
|
|
160
189
|
* <p>The Amazon Resource Name (ARN) of the host to be deleted.</p>
|
|
161
190
|
*/
|
|
162
191
|
HostArn: string | undefined;
|
|
163
192
|
}
|
|
193
|
+
/**
|
|
194
|
+
* @public
|
|
195
|
+
*/
|
|
164
196
|
export interface DeleteHostOutput {
|
|
165
197
|
}
|
|
198
|
+
/**
|
|
199
|
+
* @public
|
|
200
|
+
*/
|
|
166
201
|
export interface GetConnectionInput {
|
|
167
202
|
/**
|
|
168
203
|
* <p>The Amazon Resource Name (ARN) of a connection.</p>
|
|
169
204
|
*/
|
|
170
205
|
ConnectionArn: string | undefined;
|
|
171
206
|
}
|
|
207
|
+
/**
|
|
208
|
+
* @public
|
|
209
|
+
*/
|
|
172
210
|
export declare enum ConnectionStatus {
|
|
173
211
|
AVAILABLE = "AVAILABLE",
|
|
174
212
|
ERROR = "ERROR",
|
|
175
213
|
PENDING = "PENDING"
|
|
176
214
|
}
|
|
177
215
|
/**
|
|
216
|
+
* @public
|
|
178
217
|
* <p>A resource that is used to connect third-party source providers with services like AWS CodePipeline.</p>
|
|
179
218
|
* <p>Note: A connection created through CloudFormation, the CLI, or the SDK is in `PENDING` status by default. You can make its status `AVAILABLE` by updating the
|
|
180
219
|
* connection in the console.</p>
|
|
@@ -211,18 +250,27 @@ export interface Connection {
|
|
|
211
250
|
*/
|
|
212
251
|
HostArn?: string;
|
|
213
252
|
}
|
|
253
|
+
/**
|
|
254
|
+
* @public
|
|
255
|
+
*/
|
|
214
256
|
export interface GetConnectionOutput {
|
|
215
257
|
/**
|
|
216
258
|
* <p>The connection details, such as status, owner, and provider type.</p>
|
|
217
259
|
*/
|
|
218
260
|
Connection?: Connection;
|
|
219
261
|
}
|
|
262
|
+
/**
|
|
263
|
+
* @public
|
|
264
|
+
*/
|
|
220
265
|
export interface GetHostInput {
|
|
221
266
|
/**
|
|
222
267
|
* <p>The Amazon Resource Name (ARN) of the requested host.</p>
|
|
223
268
|
*/
|
|
224
269
|
HostArn: string | undefined;
|
|
225
270
|
}
|
|
271
|
+
/**
|
|
272
|
+
* @public
|
|
273
|
+
*/
|
|
226
274
|
export interface GetHostOutput {
|
|
227
275
|
/**
|
|
228
276
|
* <p>The name of the requested host.</p>
|
|
@@ -245,6 +293,9 @@ export interface GetHostOutput {
|
|
|
245
293
|
*/
|
|
246
294
|
VpcConfiguration?: VpcConfiguration;
|
|
247
295
|
}
|
|
296
|
+
/**
|
|
297
|
+
* @public
|
|
298
|
+
*/
|
|
248
299
|
export interface ListConnectionsInput {
|
|
249
300
|
/**
|
|
250
301
|
* <p>Filters the list of connections to those associated with a specified provider, such as
|
|
@@ -266,6 +317,9 @@ export interface ListConnectionsInput {
|
|
|
266
317
|
*/
|
|
267
318
|
NextToken?: string;
|
|
268
319
|
}
|
|
320
|
+
/**
|
|
321
|
+
* @public
|
|
322
|
+
*/
|
|
269
323
|
export interface ListConnectionsOutput {
|
|
270
324
|
/**
|
|
271
325
|
* <p>A list of connections and the details for each connection, such as status, owner, and
|
|
@@ -279,6 +333,9 @@ export interface ListConnectionsOutput {
|
|
|
279
333
|
*/
|
|
280
334
|
NextToken?: string;
|
|
281
335
|
}
|
|
336
|
+
/**
|
|
337
|
+
* @public
|
|
338
|
+
*/
|
|
282
339
|
export interface ListHostsInput {
|
|
283
340
|
/**
|
|
284
341
|
* <p>The maximum number of results to return in a single call. To retrieve the remaining
|
|
@@ -292,6 +349,7 @@ export interface ListHostsInput {
|
|
|
292
349
|
NextToken?: string;
|
|
293
350
|
}
|
|
294
351
|
/**
|
|
352
|
+
* @public
|
|
295
353
|
* <p>A resource that represents the infrastructure where a third-party provider is installed.
|
|
296
354
|
* The host is used when you create connections to an installed third-party provider type, such
|
|
297
355
|
* as GitHub Enterprise Server. You create one host for all connections to that provider.</p>
|
|
@@ -332,6 +390,9 @@ export interface Host {
|
|
|
332
390
|
*/
|
|
333
391
|
StatusMessage?: string;
|
|
334
392
|
}
|
|
393
|
+
/**
|
|
394
|
+
* @public
|
|
395
|
+
*/
|
|
335
396
|
export interface ListHostsOutput {
|
|
336
397
|
/**
|
|
337
398
|
* <p>A list of hosts and the details for each host, such as status, endpoint, and provider
|
|
@@ -345,18 +406,27 @@ export interface ListHostsOutput {
|
|
|
345
406
|
*/
|
|
346
407
|
NextToken?: string;
|
|
347
408
|
}
|
|
409
|
+
/**
|
|
410
|
+
* @public
|
|
411
|
+
*/
|
|
348
412
|
export interface ListTagsForResourceInput {
|
|
349
413
|
/**
|
|
350
414
|
* <p>The Amazon Resource Name (ARN) of the resource for which you want to get information about tags, if any.</p>
|
|
351
415
|
*/
|
|
352
416
|
ResourceArn: string | undefined;
|
|
353
417
|
}
|
|
418
|
+
/**
|
|
419
|
+
* @public
|
|
420
|
+
*/
|
|
354
421
|
export interface ListTagsForResourceOutput {
|
|
355
422
|
/**
|
|
356
423
|
* <p>A list of tag key and value pairs associated with the specified resource.</p>
|
|
357
424
|
*/
|
|
358
425
|
Tags?: Tag[];
|
|
359
426
|
}
|
|
427
|
+
/**
|
|
428
|
+
* @public
|
|
429
|
+
*/
|
|
360
430
|
export interface TagResourceInput {
|
|
361
431
|
/**
|
|
362
432
|
* <p>The Amazon Resource Name (ARN) of the resource to which you want to add or update tags.</p>
|
|
@@ -367,8 +437,14 @@ export interface TagResourceInput {
|
|
|
367
437
|
*/
|
|
368
438
|
Tags: Tag[] | undefined;
|
|
369
439
|
}
|
|
440
|
+
/**
|
|
441
|
+
* @public
|
|
442
|
+
*/
|
|
370
443
|
export interface TagResourceOutput {
|
|
371
444
|
}
|
|
445
|
+
/**
|
|
446
|
+
* @public
|
|
447
|
+
*/
|
|
372
448
|
export interface UntagResourceInput {
|
|
373
449
|
/**
|
|
374
450
|
* <p>The Amazon Resource Name (ARN) of the resource to remove tags from.</p>
|
|
@@ -379,9 +455,13 @@ export interface UntagResourceInput {
|
|
|
379
455
|
*/
|
|
380
456
|
TagKeys: string[] | undefined;
|
|
381
457
|
}
|
|
458
|
+
/**
|
|
459
|
+
* @public
|
|
460
|
+
*/
|
|
382
461
|
export interface UntagResourceOutput {
|
|
383
462
|
}
|
|
384
463
|
/**
|
|
464
|
+
* @public
|
|
385
465
|
* <p>Two conflicting operations have been made on the same resource.</p>
|
|
386
466
|
*/
|
|
387
467
|
export declare class ConflictException extends __BaseException {
|
|
@@ -394,6 +474,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
394
474
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
395
475
|
}
|
|
396
476
|
/**
|
|
477
|
+
* @public
|
|
397
478
|
* <p>The operation is not supported. Check the connection status and try again.</p>
|
|
398
479
|
*/
|
|
399
480
|
export declare class UnsupportedOperationException extends __BaseException {
|
|
@@ -405,6 +486,9 @@ export declare class UnsupportedOperationException extends __BaseException {
|
|
|
405
486
|
*/
|
|
406
487
|
constructor(opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>);
|
|
407
488
|
}
|
|
489
|
+
/**
|
|
490
|
+
* @public
|
|
491
|
+
*/
|
|
408
492
|
export interface UpdateHostInput {
|
|
409
493
|
/**
|
|
410
494
|
* <p>The Amazon Resource Name (ARN) of the host to be updated.</p>
|
|
@@ -420,6 +504,9 @@ export interface UpdateHostInput {
|
|
|
420
504
|
*/
|
|
421
505
|
VpcConfiguration?: VpcConfiguration;
|
|
422
506
|
}
|
|
507
|
+
/**
|
|
508
|
+
* @public
|
|
509
|
+
*/
|
|
423
510
|
export interface UpdateHostOutput {
|
|
424
511
|
}
|
|
425
512
|
/**
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
2
|
import { CodeStarConnectionsClient } from "../CodeStarConnectionsClient";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
3
6
|
export interface CodeStarConnectionsPaginationConfiguration extends PaginationConfiguration {
|
|
4
7
|
client: CodeStarConnectionsClient;
|
|
5
8
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListConnectionsCommandInput, ListConnectionsCommandOutput } from "../commands/ListConnectionsCommand";
|
|
3
3
|
import { CodeStarConnectionsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListConnections(config: CodeStarConnectionsPaginationConfiguration, input: ListConnectionsCommandInput, ...additionalArguments: any): Paginator<ListConnectionsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListHostsCommandInput, ListHostsCommandOutput } from "../commands/ListHostsCommand";
|
|
3
3
|
import { CodeStarConnectionsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListHosts(config: CodeStarConnectionsPaginationConfiguration, input: ListHostsCommandInput, ...additionalArguments: any): Paginator<ListHostsCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codestar-connections",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codestar Connections Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.297.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,37 +20,37 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.297.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.297.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.296.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.296.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.296.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.296.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.296.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.296.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.296.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.296.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.296.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.296.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.296.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.296.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.296.0",
|
|
43
|
+
"@aws-sdk/types": "3.296.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.296.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.295.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.296.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.296.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.296.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.296.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.296.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
55
55
|
"tslib": "^2.5.0"
|
|
56
56
|
},
|