@aws-sdk/client-codestar-connections 3.533.0 → 3.540.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-cjs/endpoint/endpointResolver.js +4 -2
- package/dist-cjs/index.js +0 -3
- package/dist-es/endpoint/endpointResolver.js +3 -1
- package/dist-es/index.js +0 -1
- 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/index.d.ts +0 -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/dist-types/ts3.4/index.d.ts +0 -1
- package/package.json +40 -40
|
@@ -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
|
}
|
package/dist-types/index.d.ts
CHANGED
|
@@ -90,5 +90,4 @@ export { CodeStarConnectionsExtensionConfiguration } from "./extensionConfigurat
|
|
|
90
90
|
export * from "./commands";
|
|
91
91
|
export * from "./pagination";
|
|
92
92
|
export * from "./models";
|
|
93
|
-
import "@aws-sdk/util-endpoints";
|
|
94
93
|
export { CodeStarConnectionsServiceException } from "./models/CodeStarConnectionsServiceException";
|