@aws-sdk/client-codestar-connections 3.533.0 → 3.535.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 +4 -1
- package/dist-types/CodeStarConnectionsClient.d.ts +1 -1
- package/dist-types/commands/CreateConnectionCommand.d.ts +2 -1
- package/dist-types/commands/CreateHostCommand.d.ts +2 -1
- package/dist-types/commands/CreateRepositoryLinkCommand.d.ts +2 -1
- package/dist-types/commands/CreateSyncConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/DeleteConnectionCommand.d.ts +2 -1
- package/dist-types/commands/DeleteHostCommand.d.ts +2 -1
- package/dist-types/commands/DeleteRepositoryLinkCommand.d.ts +2 -1
- package/dist-types/commands/DeleteSyncConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/GetConnectionCommand.d.ts +2 -1
- package/dist-types/commands/GetHostCommand.d.ts +2 -1
- package/dist-types/commands/GetRepositoryLinkCommand.d.ts +2 -1
- package/dist-types/commands/GetRepositorySyncStatusCommand.d.ts +2 -1
- package/dist-types/commands/GetResourceSyncStatusCommand.d.ts +2 -1
- package/dist-types/commands/GetSyncBlockerSummaryCommand.d.ts +2 -1
- package/dist-types/commands/GetSyncConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/ListConnectionsCommand.d.ts +2 -1
- package/dist-types/commands/ListHostsCommand.d.ts +2 -1
- package/dist-types/commands/ListRepositoryLinksCommand.d.ts +2 -1
- package/dist-types/commands/ListRepositorySyncDefinitionsCommand.d.ts +2 -1
- package/dist-types/commands/ListSyncConfigurationsCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateHostCommand.d.ts +2 -1
- package/dist-types/commands/UpdateRepositoryLinkCommand.d.ts +2 -1
- package/dist-types/commands/UpdateSyncBlockerCommand.d.ts +2 -1
- package/dist-types/commands/UpdateSyncConfigurationCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +220 -220
- package/dist-types/ts3.4/CodeStarConnections.d.ts +3 -0
- package/dist-types/ts3.4/commands/CreateConnectionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateHostCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateRepositoryLinkCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateSyncConfigurationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteHostCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteRepositoryLinkCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteSyncConfigurationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetHostCommand.d.ts +7 -0
- package/dist-types/ts3.4/commands/GetRepositoryLinkCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetRepositorySyncStatusCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetResourceSyncStatusCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetSyncBlockerSummaryCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetSyncConfigurationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListHostsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListRepositoryLinksCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListRepositorySyncDefinitionsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListSyncConfigurationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateHostCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateRepositoryLinkCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateSyncBlockerCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateSyncConfigurationCommand.d.ts +9 -0
- package/package.json +40 -40
|
@@ -121,18 +121,21 @@ export interface CodeStarConnections {
|
|
|
121
121
|
/**
|
|
122
122
|
* @see {@link ListConnectionsCommand}
|
|
123
123
|
*/
|
|
124
|
+
listConnections(): Promise<ListConnectionsCommandOutput>;
|
|
124
125
|
listConnections(args: ListConnectionsCommandInput, options?: __HttpHandlerOptions): Promise<ListConnectionsCommandOutput>;
|
|
125
126
|
listConnections(args: ListConnectionsCommandInput, cb: (err: any, data?: ListConnectionsCommandOutput) => void): void;
|
|
126
127
|
listConnections(args: ListConnectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConnectionsCommandOutput) => void): void;
|
|
127
128
|
/**
|
|
128
129
|
* @see {@link ListHostsCommand}
|
|
129
130
|
*/
|
|
131
|
+
listHosts(): Promise<ListHostsCommandOutput>;
|
|
130
132
|
listHosts(args: ListHostsCommandInput, options?: __HttpHandlerOptions): Promise<ListHostsCommandOutput>;
|
|
131
133
|
listHosts(args: ListHostsCommandInput, cb: (err: any, data?: ListHostsCommandOutput) => void): void;
|
|
132
134
|
listHosts(args: ListHostsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListHostsCommandOutput) => void): void;
|
|
133
135
|
/**
|
|
134
136
|
* @see {@link ListRepositoryLinksCommand}
|
|
135
137
|
*/
|
|
138
|
+
listRepositoryLinks(): Promise<ListRepositoryLinksCommandOutput>;
|
|
136
139
|
listRepositoryLinks(args: ListRepositoryLinksCommandInput, options?: __HttpHandlerOptions): Promise<ListRepositoryLinksCommandOutput>;
|
|
137
140
|
listRepositoryLinks(args: ListRepositoryLinksCommandInput, cb: (err: any, data?: ListRepositoryLinksCommandOutput) => void): void;
|
|
138
141
|
listRepositoryLinks(args: ListRepositoryLinksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRepositoryLinksCommandOutput) => void): void;
|
|
@@ -192,7 +195,6 @@ export interface CodeStarConnections {
|
|
|
192
195
|
updateSyncConfiguration(args: UpdateSyncConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSyncConfigurationCommandOutput) => void): void;
|
|
193
196
|
}
|
|
194
197
|
/**
|
|
195
|
-
* @public
|
|
196
198
|
* <fullname>AWS CodeStar Connections</fullname>
|
|
197
199
|
* <p>This Amazon Web Services CodeStar Connections API Reference provides descriptions and usage examples of
|
|
198
200
|
* the operations and data types for the Amazon Web Services CodeStar Connections API. You can use the
|
|
@@ -273,6 +275,7 @@ export interface CodeStarConnections {
|
|
|
273
275
|
* </ul>
|
|
274
276
|
* <p>For information about how to use Amazon Web Services CodeStar Connections, see the <a href="https://docs.aws.amazon.com/dtconsole/latest/userguide/welcome-connections.html">Developer Tools User
|
|
275
277
|
* Guide</a>.</p>
|
|
278
|
+
* @public
|
|
276
279
|
*/
|
|
277
280
|
export declare class CodeStarConnections extends CodeStarConnectionsClient implements CodeStarConnections {
|
|
278
281
|
}
|
|
@@ -178,7 +178,6 @@ export type CodeStarConnectionsClientResolvedConfigType = __SmithyResolvedConfig
|
|
|
178
178
|
export interface CodeStarConnectionsClientResolvedConfig extends CodeStarConnectionsClientResolvedConfigType {
|
|
179
179
|
}
|
|
180
180
|
/**
|
|
181
|
-
* @public
|
|
182
181
|
* <fullname>AWS CodeStar Connections</fullname>
|
|
183
182
|
* <p>This Amazon Web Services CodeStar Connections API Reference provides descriptions and usage examples of
|
|
184
183
|
* the operations and data types for the Amazon Web Services CodeStar Connections API. You can use the
|
|
@@ -259,6 +258,7 @@ export interface CodeStarConnectionsClientResolvedConfig extends CodeStarConnect
|
|
|
259
258
|
* </ul>
|
|
260
259
|
* <p>For information about how to use Amazon Web Services CodeStar Connections, see the <a href="https://docs.aws.amazon.com/dtconsole/latest/userguide/welcome-connections.html">Developer Tools User
|
|
261
260
|
* Guide</a>.</p>
|
|
261
|
+
* @public
|
|
262
262
|
*/
|
|
263
263
|
export declare class CodeStarConnectionsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, CodeStarConnectionsClientResolvedConfig> {
|
|
264
264
|
/**
|
|
@@ -22,10 +22,10 @@ export interface CreateConnectionCommandOutput extends CreateConnectionOutput, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateConnectionCommand_base: {
|
|
24
24
|
new (input: CreateConnectionCommandInput): import("@smithy/smithy-client").CommandImpl<CreateConnectionCommandInput, CreateConnectionCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateConnectionCommandInput): import("@smithy/smithy-client").CommandImpl<CreateConnectionCommandInput, CreateConnectionCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a connection that can then be given to other Amazon Web Services services like CodePipeline so
|
|
30
30
|
* that it can access third-party code repositories. The connection is in pending status until
|
|
31
31
|
* the third-party connection handshake is completed from the console.</p>
|
|
@@ -78,6 +78,7 @@ declare const CreateConnectionCommand_base: {
|
|
|
78
78
|
* @throws {@link CodeStarConnectionsServiceException}
|
|
79
79
|
* <p>Base exception class for all service exceptions from CodeStarConnections service.</p>
|
|
80
80
|
*
|
|
81
|
+
* @public
|
|
81
82
|
*/
|
|
82
83
|
export declare class CreateConnectionCommand extends CreateConnectionCommand_base {
|
|
83
84
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateHostCommandOutput extends CreateHostOutput, __MetadataBea
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateHostCommand_base: {
|
|
24
24
|
new (input: CreateHostCommandInput): import("@smithy/smithy-client").CommandImpl<CreateHostCommandInput, CreateHostCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateHostCommandInput): import("@smithy/smithy-client").CommandImpl<CreateHostCommandInput, CreateHostCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a resource that represents the infrastructure where a third-party provider is
|
|
30
30
|
* installed. The host is used when you create connections to an installed third-party provider
|
|
31
31
|
* type, such as GitHub Enterprise Server. You create one host for all connections to that
|
|
@@ -87,6 +87,7 @@ declare const CreateHostCommand_base: {
|
|
|
87
87
|
* @throws {@link CodeStarConnectionsServiceException}
|
|
88
88
|
* <p>Base exception class for all service exceptions from CodeStarConnections service.</p>
|
|
89
89
|
*
|
|
90
|
+
* @public
|
|
90
91
|
*/
|
|
91
92
|
export declare class CreateHostCommand extends CreateHostCommand_base {
|
|
92
93
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateRepositoryLinkCommandOutput extends CreateRepositoryLinkO
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateRepositoryLinkCommand_base: {
|
|
24
24
|
new (input: CreateRepositoryLinkCommandInput): import("@smithy/smithy-client").CommandImpl<CreateRepositoryLinkCommandInput, CreateRepositoryLinkCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateRepositoryLinkCommandInput): import("@smithy/smithy-client").CommandImpl<CreateRepositoryLinkCommandInput, CreateRepositoryLinkCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a link to a specified external Git repository. A repository link allows Git sync to monitor and sync changes to files in a specified Git repository.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -91,6 +91,7 @@ declare const CreateRepositoryLinkCommand_base: {
|
|
|
91
91
|
* @throws {@link CodeStarConnectionsServiceException}
|
|
92
92
|
* <p>Base exception class for all service exceptions from CodeStarConnections service.</p>
|
|
93
93
|
*
|
|
94
|
+
* @public
|
|
94
95
|
*/
|
|
95
96
|
export declare class CreateRepositoryLinkCommand extends CreateRepositoryLinkCommand_base {
|
|
96
97
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateSyncConfigurationCommandOutput extends CreateSyncConfigur
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateSyncConfigurationCommand_base: {
|
|
24
24
|
new (input: CreateSyncConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateSyncConfigurationCommandInput, CreateSyncConfigurationCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateSyncConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateSyncConfigurationCommandInput, CreateSyncConfigurationCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a sync configuration which allows Amazon Web Services to sync content from a Git
|
|
30
30
|
* repository to update a specified Amazon Web Services resource. Parameters for the sync
|
|
31
31
|
* configuration are determined by the sync type.</p>
|
|
@@ -95,6 +95,7 @@ declare const CreateSyncConfigurationCommand_base: {
|
|
|
95
95
|
* @throws {@link CodeStarConnectionsServiceException}
|
|
96
96
|
* <p>Base exception class for all service exceptions from CodeStarConnections service.</p>
|
|
97
97
|
*
|
|
98
|
+
* @public
|
|
98
99
|
*/
|
|
99
100
|
export declare class CreateSyncConfigurationCommand extends CreateSyncConfigurationCommand_base {
|
|
100
101
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteConnectionCommandOutput extends DeleteConnectionOutput, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteConnectionCommand_base: {
|
|
24
24
|
new (input: DeleteConnectionCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteConnectionCommandInput, DeleteConnectionCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteConnectionCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteConnectionCommandInput, DeleteConnectionCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>The connection to be deleted.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -54,6 +54,7 @@ declare const DeleteConnectionCommand_base: {
|
|
|
54
54
|
* @throws {@link CodeStarConnectionsServiceException}
|
|
55
55
|
* <p>Base exception class for all service exceptions from CodeStarConnections service.</p>
|
|
56
56
|
*
|
|
57
|
+
* @public
|
|
57
58
|
*/
|
|
58
59
|
export declare class DeleteConnectionCommand extends DeleteConnectionCommand_base {
|
|
59
60
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteHostCommandOutput extends DeleteHostOutput, __MetadataBea
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteHostCommand_base: {
|
|
24
24
|
new (input: DeleteHostCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteHostCommandInput, DeleteHostCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteHostCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteHostCommandInput, DeleteHostCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>The host to be deleted. Before you delete a host, all connections associated to the host must be deleted.</p>
|
|
30
30
|
* <note>
|
|
31
31
|
* <p>A host cannot be deleted if it is in the VPC_CONFIG_INITIALIZING or VPC_CONFIG_DELETING state.</p>
|
|
@@ -60,6 +60,7 @@ declare const DeleteHostCommand_base: {
|
|
|
60
60
|
* @throws {@link CodeStarConnectionsServiceException}
|
|
61
61
|
* <p>Base exception class for all service exceptions from CodeStarConnections service.</p>
|
|
62
62
|
*
|
|
63
|
+
* @public
|
|
63
64
|
*/
|
|
64
65
|
export declare class DeleteHostCommand extends DeleteHostCommand_base {
|
|
65
66
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteRepositoryLinkCommandOutput extends DeleteRepositoryLinkO
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteRepositoryLinkCommand_base: {
|
|
24
24
|
new (input: DeleteRepositoryLinkCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteRepositoryLinkCommandInput, DeleteRepositoryLinkCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteRepositoryLinkCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteRepositoryLinkCommandInput, DeleteRepositoryLinkCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes the association between your connection and a specified external Git repository.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -75,6 +75,7 @@ declare const DeleteRepositoryLinkCommand_base: {
|
|
|
75
75
|
* @throws {@link CodeStarConnectionsServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from CodeStarConnections service.</p>
|
|
77
77
|
*
|
|
78
|
+
* @public
|
|
78
79
|
*/
|
|
79
80
|
export declare class DeleteRepositoryLinkCommand extends DeleteRepositoryLinkCommand_base {
|
|
80
81
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteSyncConfigurationCommandOutput extends DeleteSyncConfigur
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteSyncConfigurationCommand_base: {
|
|
24
24
|
new (input: DeleteSyncConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteSyncConfigurationCommandInput, DeleteSyncConfigurationCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteSyncConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteSyncConfigurationCommandInput, DeleteSyncConfigurationCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes the sync configuration for a specified repository and connection.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -70,6 +70,7 @@ declare const DeleteSyncConfigurationCommand_base: {
|
|
|
70
70
|
* @throws {@link CodeStarConnectionsServiceException}
|
|
71
71
|
* <p>Base exception class for all service exceptions from CodeStarConnections service.</p>
|
|
72
72
|
*
|
|
73
|
+
* @public
|
|
73
74
|
*/
|
|
74
75
|
export declare class DeleteSyncConfigurationCommand extends DeleteSyncConfigurationCommand_base {
|
|
75
76
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetConnectionCommandOutput extends GetConnectionOutput, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetConnectionCommand_base: {
|
|
24
24
|
new (input: GetConnectionCommandInput): import("@smithy/smithy-client").CommandImpl<GetConnectionCommandInput, GetConnectionCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetConnectionCommandInput): import("@smithy/smithy-client").CommandImpl<GetConnectionCommandInput, GetConnectionCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns the connection ARN and details such as status, owner, and provider type.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -66,6 +66,7 @@ declare const GetConnectionCommand_base: {
|
|
|
66
66
|
* @throws {@link CodeStarConnectionsServiceException}
|
|
67
67
|
* <p>Base exception class for all service exceptions from CodeStarConnections service.</p>
|
|
68
68
|
*
|
|
69
|
+
* @public
|
|
69
70
|
*/
|
|
70
71
|
export declare class GetConnectionCommand extends GetConnectionCommand_base {
|
|
71
72
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetHostCommandOutput extends GetHostOutput, __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetHostCommand_base: {
|
|
24
24
|
new (input: GetHostCommandInput): import("@smithy/smithy-client").CommandImpl<GetHostCommandInput, GetHostCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetHostCommandInput): import("@smithy/smithy-client").CommandImpl<GetHostCommandInput, GetHostCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns the host ARN and details such as status, provider type, endpoint, and, if
|
|
30
30
|
* applicable, the VPC configuration.</p>
|
|
31
31
|
* @example
|
|
@@ -73,6 +73,7 @@ declare const GetHostCommand_base: {
|
|
|
73
73
|
* @throws {@link CodeStarConnectionsServiceException}
|
|
74
74
|
* <p>Base exception class for all service exceptions from CodeStarConnections service.</p>
|
|
75
75
|
*
|
|
76
|
+
* @public
|
|
76
77
|
*/
|
|
77
78
|
export declare class GetHostCommand extends GetHostCommand_base {
|
|
78
79
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetRepositoryLinkCommandOutput extends GetRepositoryLinkOutput,
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetRepositoryLinkCommand_base: {
|
|
24
24
|
new (input: GetRepositoryLinkCommandInput): import("@smithy/smithy-client").CommandImpl<GetRepositoryLinkCommandInput, GetRepositoryLinkCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetRepositoryLinkCommandInput): import("@smithy/smithy-client").CommandImpl<GetRepositoryLinkCommandInput, GetRepositoryLinkCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns details about a repository link. A repository link allows Git sync to monitor
|
|
30
30
|
* and sync changes from files in a specified Git repository.</p>
|
|
31
31
|
* @example
|
|
@@ -80,6 +80,7 @@ declare const GetRepositoryLinkCommand_base: {
|
|
|
80
80
|
* @throws {@link CodeStarConnectionsServiceException}
|
|
81
81
|
* <p>Base exception class for all service exceptions from CodeStarConnections service.</p>
|
|
82
82
|
*
|
|
83
|
+
* @public
|
|
83
84
|
*/
|
|
84
85
|
export declare class GetRepositoryLinkCommand extends GetRepositoryLinkCommand_base {
|
|
85
86
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetRepositorySyncStatusCommandOutput extends GetRepositorySyncS
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetRepositorySyncStatusCommand_base: {
|
|
24
24
|
new (input: GetRepositorySyncStatusCommandInput): import("@smithy/smithy-client").CommandImpl<GetRepositorySyncStatusCommandInput, GetRepositorySyncStatusCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetRepositorySyncStatusCommandInput): import("@smithy/smithy-client").CommandImpl<GetRepositorySyncStatusCommandInput, GetRepositorySyncStatusCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns details about the sync status for a repository. A repository sync uses Git sync
|
|
30
30
|
* to push and pull changes from your remote repository.</p>
|
|
31
31
|
* @example
|
|
@@ -82,6 +82,7 @@ declare const GetRepositorySyncStatusCommand_base: {
|
|
|
82
82
|
* @throws {@link CodeStarConnectionsServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from CodeStarConnections service.</p>
|
|
84
84
|
*
|
|
85
|
+
* @public
|
|
85
86
|
*/
|
|
86
87
|
export declare class GetRepositorySyncStatusCommand extends GetRepositorySyncStatusCommand_base {
|
|
87
88
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetResourceSyncStatusCommandOutput extends GetResourceSyncStatu
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetResourceSyncStatusCommand_base: {
|
|
24
24
|
new (input: GetResourceSyncStatusCommandInput): import("@smithy/smithy-client").CommandImpl<GetResourceSyncStatusCommandInput, GetResourceSyncStatusCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetResourceSyncStatusCommandInput): import("@smithy/smithy-client").CommandImpl<GetResourceSyncStatusCommandInput, GetResourceSyncStatusCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns the status of the sync with the Git repository for a specific Amazon Web Services
|
|
30
30
|
* resource.</p>
|
|
31
31
|
* @example
|
|
@@ -135,6 +135,7 @@ declare const GetResourceSyncStatusCommand_base: {
|
|
|
135
135
|
* @throws {@link CodeStarConnectionsServiceException}
|
|
136
136
|
* <p>Base exception class for all service exceptions from CodeStarConnections service.</p>
|
|
137
137
|
*
|
|
138
|
+
* @public
|
|
138
139
|
*/
|
|
139
140
|
export declare class GetResourceSyncStatusCommand extends GetResourceSyncStatusCommand_base {
|
|
140
141
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetSyncBlockerSummaryCommandOutput extends GetSyncBlockerSummar
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetSyncBlockerSummaryCommand_base: {
|
|
24
24
|
new (input: GetSyncBlockerSummaryCommandInput): import("@smithy/smithy-client").CommandImpl<GetSyncBlockerSummaryCommandInput, GetSyncBlockerSummaryCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetSyncBlockerSummaryCommandInput): import("@smithy/smithy-client").CommandImpl<GetSyncBlockerSummaryCommandInput, GetSyncBlockerSummaryCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of the most recent sync blockers.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -89,6 +89,7 @@ declare const GetSyncBlockerSummaryCommand_base: {
|
|
|
89
89
|
* @throws {@link CodeStarConnectionsServiceException}
|
|
90
90
|
* <p>Base exception class for all service exceptions from CodeStarConnections service.</p>
|
|
91
91
|
*
|
|
92
|
+
* @public
|
|
92
93
|
*/
|
|
93
94
|
export declare class GetSyncBlockerSummaryCommand extends GetSyncBlockerSummaryCommand_base {
|
|
94
95
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetSyncConfigurationCommandOutput extends GetSyncConfigurationO
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetSyncConfigurationCommand_base: {
|
|
24
24
|
new (input: GetSyncConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<GetSyncConfigurationCommandInput, GetSyncConfigurationCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetSyncConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<GetSyncConfigurationCommandInput, GetSyncConfigurationCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns details about a sync configuration, including the sync type and resource name. A sync configuration allows the configuration to sync (push and pull) changes from the remote repository for a specified branch in a Git repository.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -81,6 +81,7 @@ declare const GetSyncConfigurationCommand_base: {
|
|
|
81
81
|
* @throws {@link CodeStarConnectionsServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from CodeStarConnections service.</p>
|
|
83
83
|
*
|
|
84
|
+
* @public
|
|
84
85
|
*/
|
|
85
86
|
export declare class GetSyncConfigurationCommand extends GetSyncConfigurationCommand_base {
|
|
86
87
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListConnectionsCommandOutput extends ListConnectionsOutput, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListConnectionsCommand_base: {
|
|
24
24
|
new (input: ListConnectionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListConnectionsCommandInput, ListConnectionsCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListConnectionsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListConnectionsCommandInput, ListConnectionsCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists the connections associated with your account.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -69,6 +69,7 @@ declare const ListConnectionsCommand_base: {
|
|
|
69
69
|
* @throws {@link CodeStarConnectionsServiceException}
|
|
70
70
|
* <p>Base exception class for all service exceptions from CodeStarConnections service.</p>
|
|
71
71
|
*
|
|
72
|
+
* @public
|
|
72
73
|
*/
|
|
73
74
|
export declare class ListConnectionsCommand extends ListConnectionsCommand_base {
|
|
74
75
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListHostsCommandOutput extends ListHostsOutput, __MetadataBeare
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListHostsCommand_base: {
|
|
24
24
|
new (input: ListHostsCommandInput): import("@smithy/smithy-client").CommandImpl<ListHostsCommandInput, ListHostsCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListHostsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListHostsCommandInput, ListHostsCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists the hosts associated with your account.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -74,6 +74,7 @@ declare const ListHostsCommand_base: {
|
|
|
74
74
|
* @throws {@link CodeStarConnectionsServiceException}
|
|
75
75
|
* <p>Base exception class for all service exceptions from CodeStarConnections service.</p>
|
|
76
76
|
*
|
|
77
|
+
* @public
|
|
77
78
|
*/
|
|
78
79
|
export declare class ListHostsCommand extends ListHostsCommand_base {
|
|
79
80
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListRepositoryLinksCommandOutput extends ListRepositoryLinksOut
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListRepositoryLinksCommand_base: {
|
|
24
24
|
new (input: ListRepositoryLinksCommandInput): import("@smithy/smithy-client").CommandImpl<ListRepositoryLinksCommandInput, ListRepositoryLinksCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListRepositoryLinksCommandInput]): import("@smithy/smithy-client").CommandImpl<ListRepositoryLinksCommandInput, ListRepositoryLinksCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists the repository links created for connections in your account.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -83,6 +83,7 @@ declare const ListRepositoryLinksCommand_base: {
|
|
|
83
83
|
* @throws {@link CodeStarConnectionsServiceException}
|
|
84
84
|
* <p>Base exception class for all service exceptions from CodeStarConnections service.</p>
|
|
85
85
|
*
|
|
86
|
+
* @public
|
|
86
87
|
*/
|
|
87
88
|
export declare class ListRepositoryLinksCommand extends ListRepositoryLinksCommand_base {
|
|
88
89
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListRepositorySyncDefinitionsCommandOutput extends ListReposito
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListRepositorySyncDefinitionsCommand_base: {
|
|
24
24
|
new (input: ListRepositorySyncDefinitionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListRepositorySyncDefinitionsCommandInput, ListRepositorySyncDefinitionsCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListRepositorySyncDefinitionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListRepositorySyncDefinitionsCommandInput, ListRepositorySyncDefinitionsCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists the repository sync definitions for repository links in your account.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -77,6 +77,7 @@ declare const ListRepositorySyncDefinitionsCommand_base: {
|
|
|
77
77
|
* @throws {@link CodeStarConnectionsServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from CodeStarConnections service.</p>
|
|
79
79
|
*
|
|
80
|
+
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class ListRepositorySyncDefinitionsCommand extends ListRepositorySyncDefinitionsCommand_base {
|
|
82
83
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListSyncConfigurationsCommandOutput extends ListSyncConfigurati
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListSyncConfigurationsCommand_base: {
|
|
24
24
|
new (input: ListSyncConfigurationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListSyncConfigurationsCommandInput, ListSyncConfigurationsCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListSyncConfigurationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListSyncConfigurationsCommandInput, ListSyncConfigurationsCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of sync configurations for a specified repository.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -86,6 +86,7 @@ declare const ListSyncConfigurationsCommand_base: {
|
|
|
86
86
|
* @throws {@link CodeStarConnectionsServiceException}
|
|
87
87
|
* <p>Base exception class for all service exceptions from CodeStarConnections service.</p>
|
|
88
88
|
*
|
|
89
|
+
* @public
|
|
89
90
|
*/
|
|
90
91
|
export declare class ListSyncConfigurationsCommand extends ListSyncConfigurationsCommand_base {
|
|
91
92
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Gets the set of key-value pairs (metadata) that are used to manage the resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -61,6 +61,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
61
61
|
* @throws {@link CodeStarConnectionsServiceException}
|
|
62
62
|
* <p>Base exception class for all service exceptions from CodeStarConnections service.</p>
|
|
63
63
|
*
|
|
64
|
+
* @public
|
|
64
65
|
*/
|
|
65
66
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
66
67
|
}
|
|
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
22
22
|
}
|
|
23
23
|
declare const TagResourceCommand_base: {
|
|
24
24
|
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Adds to or modifies the tags of the given resource. Tags are metadata that can be used
|
|
30
30
|
* to manage a resource.</p>
|
|
31
31
|
* @example
|
|
@@ -64,6 +64,7 @@ declare const TagResourceCommand_base: {
|
|
|
64
64
|
* @throws {@link CodeStarConnectionsServiceException}
|
|
65
65
|
* <p>Base exception class for all service exceptions from CodeStarConnections service.</p>
|
|
66
66
|
*
|
|
67
|
+
* @public
|
|
67
68
|
*/
|
|
68
69
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
69
70
|
}
|
|
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const UntagResourceCommand_base: {
|
|
24
24
|
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Removes tags from an Amazon Web Services resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -57,6 +57,7 @@ declare const UntagResourceCommand_base: {
|
|
|
57
57
|
* @throws {@link CodeStarConnectionsServiceException}
|
|
58
58
|
* <p>Base exception class for all service exceptions from CodeStarConnections service.</p>
|
|
59
59
|
*
|
|
60
|
+
* @public
|
|
60
61
|
*/
|
|
61
62
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
62
63
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateHostCommandOutput extends UpdateHostOutput, __MetadataBea
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateHostCommand_base: {
|
|
24
24
|
new (input: UpdateHostCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateHostCommandInput, UpdateHostCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateHostCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateHostCommandInput, UpdateHostCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates a specified host with the provided configurations.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -74,6 +74,7 @@ declare const UpdateHostCommand_base: {
|
|
|
74
74
|
* @throws {@link CodeStarConnectionsServiceException}
|
|
75
75
|
* <p>Base exception class for all service exceptions from CodeStarConnections service.</p>
|
|
76
76
|
*
|
|
77
|
+
* @public
|
|
77
78
|
*/
|
|
78
79
|
export declare class UpdateHostCommand extends UpdateHostCommand_base {
|
|
79
80
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateRepositoryLinkCommandOutput extends UpdateRepositoryLinkO
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateRepositoryLinkCommand_base: {
|
|
24
24
|
new (input: UpdateRepositoryLinkCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateRepositoryLinkCommandInput, UpdateRepositoryLinkCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateRepositoryLinkCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateRepositoryLinkCommandInput, UpdateRepositoryLinkCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates the association between your connection and a specified external Git repository.
|
|
30
30
|
* A repository link allows Git sync to monitor and sync changes to files in a specified Git
|
|
31
31
|
* repository.</p>
|
|
@@ -86,6 +86,7 @@ declare const UpdateRepositoryLinkCommand_base: {
|
|
|
86
86
|
* @throws {@link CodeStarConnectionsServiceException}
|
|
87
87
|
* <p>Base exception class for all service exceptions from CodeStarConnections service.</p>
|
|
88
88
|
*
|
|
89
|
+
* @public
|
|
89
90
|
*/
|
|
90
91
|
export declare class UpdateRepositoryLinkCommand extends UpdateRepositoryLinkCommand_base {
|
|
91
92
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateSyncBlockerCommandOutput extends UpdateSyncBlockerOutput,
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateSyncBlockerCommand_base: {
|
|
24
24
|
new (input: UpdateSyncBlockerCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateSyncBlockerCommandInput, UpdateSyncBlockerCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateSyncBlockerCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateSyncBlockerCommandInput, UpdateSyncBlockerCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Allows you to update the status of a sync blocker, resolving the blocker and allowing syncing to continue.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -93,6 +93,7 @@ declare const UpdateSyncBlockerCommand_base: {
|
|
|
93
93
|
* @throws {@link CodeStarConnectionsServiceException}
|
|
94
94
|
* <p>Base exception class for all service exceptions from CodeStarConnections service.</p>
|
|
95
95
|
*
|
|
96
|
+
* @public
|
|
96
97
|
*/
|
|
97
98
|
export declare class UpdateSyncBlockerCommand extends UpdateSyncBlockerCommand_base {
|
|
98
99
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateSyncConfigurationCommandOutput extends UpdateSyncConfigur
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateSyncConfigurationCommand_base: {
|
|
24
24
|
new (input: UpdateSyncConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateSyncConfigurationCommandInput, UpdateSyncConfigurationCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateSyncConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateSyncConfigurationCommandInput, UpdateSyncConfigurationCommandOutput, CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates the sync configuration for your connection and a specified external Git repository.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -93,6 +93,7 @@ declare const UpdateSyncConfigurationCommand_base: {
|
|
|
93
93
|
* @throws {@link CodeStarConnectionsServiceException}
|
|
94
94
|
* <p>Base exception class for all service exceptions from CodeStarConnections service.</p>
|
|
95
95
|
*
|
|
96
|
+
* @public
|
|
96
97
|
*/
|
|
97
98
|
export declare class UpdateSyncConfigurationCommand extends UpdateSyncConfigurationCommand_base {
|
|
98
99
|
}
|