@aws-sdk/client-codestar-connections 3.1087.0 → 3.1088.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/index.js +1 -1
- package/dist-types/ts3.4/CodeStarConnections.d.ts +91 -115
- package/dist-types/ts3.4/CodeStarConnectionsClient.d.ts +11 -39
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -10
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CreateConnectionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateHostCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateRepositoryLinkCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateSyncConfigurationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteHostCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteRepositoryLinkCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteSyncConfigurationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetHostCommand.d.ts +6 -2
- package/dist-types/ts3.4/commands/GetRepositoryLinkCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetRepositorySyncStatusCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetResourceSyncStatusCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetSyncBlockerSummaryCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetSyncConfigurationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListHostsCommand.d.ts +4 -4
- package/dist-types/ts3.4/commands/ListRepositoryLinksCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListRepositorySyncDefinitionsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListSyncConfigurationsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateHostCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateRepositoryLinkCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateSyncBlockerCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateSyncConfigurationCommand.d.ts +5 -10
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +3 -6
- package/dist-types/ts3.4/models/errors.d.ts +16 -66
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListHostsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -8,16 +8,11 @@ export interface HttpAuthExtensionConfiguration {
|
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
10
|
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: CodeStarConnectionsHttpAuthSchemeProvider
|
|
11
|
+
httpAuthSchemeProvider: CodeStarConnectionsHttpAuthSchemeProvider,
|
|
12
12
|
): void;
|
|
13
13
|
httpAuthSchemeProvider(): CodeStarConnectionsHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
14
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
15
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
16
|
}
|
|
22
17
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
18
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +20,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
20
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
21
|
}>;
|
|
27
22
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
23
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
24
|
) => HttpAuthExtensionConfiguration;
|
|
30
25
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
26
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
27
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { CodeStarConnectionsClientResolvedConfig } from "../CodeStarConnectionsClient";
|
|
15
|
-
export interface CodeStarConnectionsHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface CodeStarConnectionsHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface CodeStarConnectionsHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface CodeStarConnectionsHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
CodeStarConnectionsClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
CodeStarConnectionsHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultCodeStarConnectionsHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: CodeStarConnectionsClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<CodeStarConnectionsHttpAuthSchemeParameters>;
|
|
31
|
-
export interface CodeStarConnectionsHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<CodeStarConnectionsHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface CodeStarConnectionsHttpAuthSchemeProvider extends HttpAuthSchemeProvider<CodeStarConnectionsHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultCodeStarConnectionsHttpAuthSchemeProvider: CodeStarConnectionsHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: CodeStarConnectionsHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: CodeStarConnectionsHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./CodeStarConnectionsClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
CodeStarConnectionsClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateConnectionInput,
|
|
4
|
-
CreateConnectionOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateConnectionInput, CreateConnectionOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CreateConnectionCommandInput extends CreateConnectionInput {}
|
|
8
|
-
export interface CreateConnectionCommandOutput
|
|
9
|
-
extends CreateConnectionOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateConnectionCommandOutput extends CreateConnectionOutput, __MetadataBearer {}
|
|
11
6
|
declare const CreateConnectionCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CreateConnectionCommandInput
|
|
8
|
+
input: CreateConnectionCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CreateConnectionCommandInput,
|
|
16
11
|
CreateConnectionCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CreateConnectionCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CreateConnectionCommandInput
|
|
17
|
+
input: CreateConnectionCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CreateConnectionCommandInput,
|
|
25
20
|
CreateConnectionCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { CreateHostInput, CreateHostOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface CreateHostCommandInput extends CreateHostInput {}
|
|
5
|
-
export interface CreateHostCommandOutput
|
|
6
|
-
extends CreateHostOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateHostCommandOutput extends CreateHostOutput, __MetadataBearer {}
|
|
8
6
|
declare const CreateHostCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: CreateHostCommandInput
|
|
8
|
+
input: CreateHostCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
CreateHostCommandInput,
|
|
13
11
|
CreateHostCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const CreateHostCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: CreateHostCommandInput
|
|
17
|
+
input: CreateHostCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
CreateHostCommandInput,
|
|
22
20
|
CreateHostCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateRepositoryLinkInput,
|
|
4
|
-
CreateRepositoryLinkOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateRepositoryLinkInput, CreateRepositoryLinkOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateRepositoryLinkCommandInput
|
|
8
|
-
extends CreateRepositoryLinkInput {}
|
|
4
|
+
export interface CreateRepositoryLinkCommandInput extends CreateRepositoryLinkInput {}
|
|
9
5
|
export interface CreateRepositoryLinkCommandOutput
|
|
10
|
-
extends CreateRepositoryLinkOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateRepositoryLinkOutput, __MetadataBearer {}
|
|
12
7
|
declare const CreateRepositoryLinkCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateRepositoryLinkCommandInput
|
|
9
|
+
input: CreateRepositoryLinkCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateRepositoryLinkCommandInput,
|
|
17
12
|
CreateRepositoryLinkCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateRepositoryLinkCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateRepositoryLinkCommandInput
|
|
18
|
+
input: CreateRepositoryLinkCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateRepositoryLinkCommandInput,
|
|
26
21
|
CreateRepositoryLinkCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateSyncConfigurationInput,
|
|
4
|
-
CreateSyncConfigurationOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateSyncConfigurationInput, CreateSyncConfigurationOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateSyncConfigurationCommandInput
|
|
8
|
-
extends CreateSyncConfigurationInput {}
|
|
4
|
+
export interface CreateSyncConfigurationCommandInput extends CreateSyncConfigurationInput {}
|
|
9
5
|
export interface CreateSyncConfigurationCommandOutput
|
|
10
|
-
extends CreateSyncConfigurationOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateSyncConfigurationOutput, __MetadataBearer {}
|
|
12
7
|
declare const CreateSyncConfigurationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateSyncConfigurationCommandInput
|
|
9
|
+
input: CreateSyncConfigurationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateSyncConfigurationCommandInput,
|
|
17
12
|
CreateSyncConfigurationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateSyncConfigurationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateSyncConfigurationCommandInput
|
|
18
|
+
input: CreateSyncConfigurationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateSyncConfigurationCommandInput,
|
|
26
21
|
CreateSyncConfigurationCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteConnectionInput,
|
|
4
|
-
DeleteConnectionOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteConnectionInput, DeleteConnectionOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DeleteConnectionCommandInput extends DeleteConnectionInput {}
|
|
8
|
-
export interface DeleteConnectionCommandOutput
|
|
9
|
-
extends DeleteConnectionOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteConnectionCommandOutput extends DeleteConnectionOutput, __MetadataBearer {}
|
|
11
6
|
declare const DeleteConnectionCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DeleteConnectionCommandInput
|
|
8
|
+
input: DeleteConnectionCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DeleteConnectionCommandInput,
|
|
16
11
|
DeleteConnectionCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DeleteConnectionCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DeleteConnectionCommandInput
|
|
17
|
+
input: DeleteConnectionCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DeleteConnectionCommandInput,
|
|
25
20
|
DeleteConnectionCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DeleteHostInput, DeleteHostOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DeleteHostCommandInput extends DeleteHostInput {}
|
|
5
|
-
export interface DeleteHostCommandOutput
|
|
6
|
-
extends DeleteHostOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteHostCommandOutput extends DeleteHostOutput, __MetadataBearer {}
|
|
8
6
|
declare const DeleteHostCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DeleteHostCommandInput
|
|
8
|
+
input: DeleteHostCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DeleteHostCommandInput,
|
|
13
11
|
DeleteHostCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DeleteHostCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DeleteHostCommandInput
|
|
17
|
+
input: DeleteHostCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DeleteHostCommandInput,
|
|
22
20
|
DeleteHostCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteRepositoryLinkInput,
|
|
4
|
-
DeleteRepositoryLinkOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteRepositoryLinkInput, DeleteRepositoryLinkOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteRepositoryLinkCommandInput
|
|
8
|
-
extends DeleteRepositoryLinkInput {}
|
|
4
|
+
export interface DeleteRepositoryLinkCommandInput extends DeleteRepositoryLinkInput {}
|
|
9
5
|
export interface DeleteRepositoryLinkCommandOutput
|
|
10
|
-
extends DeleteRepositoryLinkOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteRepositoryLinkOutput, __MetadataBearer {}
|
|
12
7
|
declare const DeleteRepositoryLinkCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteRepositoryLinkCommandInput
|
|
9
|
+
input: DeleteRepositoryLinkCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteRepositoryLinkCommandInput,
|
|
17
12
|
DeleteRepositoryLinkCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteRepositoryLinkCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteRepositoryLinkCommandInput
|
|
18
|
+
input: DeleteRepositoryLinkCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteRepositoryLinkCommandInput,
|
|
26
21
|
DeleteRepositoryLinkCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteSyncConfigurationInput,
|
|
4
|
-
DeleteSyncConfigurationOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteSyncConfigurationInput, DeleteSyncConfigurationOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteSyncConfigurationCommandInput
|
|
8
|
-
extends DeleteSyncConfigurationInput {}
|
|
4
|
+
export interface DeleteSyncConfigurationCommandInput extends DeleteSyncConfigurationInput {}
|
|
9
5
|
export interface DeleteSyncConfigurationCommandOutput
|
|
10
|
-
extends DeleteSyncConfigurationOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteSyncConfigurationOutput, __MetadataBearer {}
|
|
12
7
|
declare const DeleteSyncConfigurationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteSyncConfigurationCommandInput
|
|
9
|
+
input: DeleteSyncConfigurationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteSyncConfigurationCommandInput,
|
|
17
12
|
DeleteSyncConfigurationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteSyncConfigurationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteSyncConfigurationCommandInput
|
|
18
|
+
input: DeleteSyncConfigurationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteSyncConfigurationCommandInput,
|
|
26
21
|
DeleteSyncConfigurationCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetConnectionInput, GetConnectionOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetConnectionCommandInput extends GetConnectionInput {}
|
|
5
|
-
export interface GetConnectionCommandOutput
|
|
6
|
-
extends GetConnectionOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetConnectionCommandOutput extends GetConnectionOutput, __MetadataBearer {}
|
|
8
6
|
declare const GetConnectionCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetConnectionCommandInput
|
|
8
|
+
input: GetConnectionCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetConnectionCommandInput,
|
|
13
11
|
GetConnectionCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetConnectionCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetConnectionCommandInput
|
|
17
|
+
input: GetConnectionCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetConnectionCommandInput,
|
|
22
20
|
GetConnectionCommandOutput,
|
|
@@ -4,14 +4,18 @@ export { __MetadataBearer };
|
|
|
4
4
|
export interface GetHostCommandInput extends GetHostInput {}
|
|
5
5
|
export interface GetHostCommandOutput extends GetHostOutput, __MetadataBearer {}
|
|
6
6
|
declare const GetHostCommand_base: {
|
|
7
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: GetHostCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
8
10
|
GetHostCommandInput,
|
|
9
11
|
GetHostCommandOutput,
|
|
10
12
|
import("..").CodeStarConnectionsClientResolvedConfig,
|
|
11
13
|
import("..").ServiceInputTypes,
|
|
12
14
|
import("..").ServiceOutputTypes
|
|
13
15
|
>;
|
|
14
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: GetHostCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
15
19
|
GetHostCommandInput,
|
|
16
20
|
GetHostCommandOutput,
|
|
17
21
|
import("..").CodeStarConnectionsClientResolvedConfig,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetRepositoryLinkInput,
|
|
4
|
-
GetRepositoryLinkOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetRepositoryLinkInput, GetRepositoryLinkOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetRepositoryLinkCommandInput extends GetRepositoryLinkInput {}
|
|
8
|
-
export interface GetRepositoryLinkCommandOutput
|
|
9
|
-
extends GetRepositoryLinkOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetRepositoryLinkCommandOutput extends GetRepositoryLinkOutput, __MetadataBearer {}
|
|
11
6
|
declare const GetRepositoryLinkCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetRepositoryLinkCommandInput
|
|
8
|
+
input: GetRepositoryLinkCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetRepositoryLinkCommandInput,
|
|
16
11
|
GetRepositoryLinkCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetRepositoryLinkCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetRepositoryLinkCommandInput
|
|
17
|
+
input: GetRepositoryLinkCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetRepositoryLinkCommandInput,
|
|
25
20
|
GetRepositoryLinkCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetRepositorySyncStatusInput,
|
|
4
|
-
GetRepositorySyncStatusOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetRepositorySyncStatusInput, GetRepositorySyncStatusOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetRepositorySyncStatusCommandInput
|
|
8
|
-
extends GetRepositorySyncStatusInput {}
|
|
4
|
+
export interface GetRepositorySyncStatusCommandInput extends GetRepositorySyncStatusInput {}
|
|
9
5
|
export interface GetRepositorySyncStatusCommandOutput
|
|
10
|
-
extends GetRepositorySyncStatusOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetRepositorySyncStatusOutput, __MetadataBearer {}
|
|
12
7
|
declare const GetRepositorySyncStatusCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetRepositorySyncStatusCommandInput
|
|
9
|
+
input: GetRepositorySyncStatusCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetRepositorySyncStatusCommandInput,
|
|
17
12
|
GetRepositorySyncStatusCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetRepositorySyncStatusCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetRepositorySyncStatusCommandInput
|
|
18
|
+
input: GetRepositorySyncStatusCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetRepositorySyncStatusCommandInput,
|
|
26
21
|
GetRepositorySyncStatusCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetResourceSyncStatusInput,
|
|
4
|
-
GetResourceSyncStatusOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetResourceSyncStatusInput, GetResourceSyncStatusOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetResourceSyncStatusCommandInput
|
|
8
|
-
extends GetResourceSyncStatusInput {}
|
|
4
|
+
export interface GetResourceSyncStatusCommandInput extends GetResourceSyncStatusInput {}
|
|
9
5
|
export interface GetResourceSyncStatusCommandOutput
|
|
10
|
-
extends GetResourceSyncStatusOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetResourceSyncStatusOutput, __MetadataBearer {}
|
|
12
7
|
declare const GetResourceSyncStatusCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetResourceSyncStatusCommandInput
|
|
9
|
+
input: GetResourceSyncStatusCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetResourceSyncStatusCommandInput,
|
|
17
12
|
GetResourceSyncStatusCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetResourceSyncStatusCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetResourceSyncStatusCommandInput
|
|
18
|
+
input: GetResourceSyncStatusCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetResourceSyncStatusCommandInput,
|
|
26
21
|
GetResourceSyncStatusCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetSyncBlockerSummaryInput,
|
|
4
|
-
GetSyncBlockerSummaryOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetSyncBlockerSummaryInput, GetSyncBlockerSummaryOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetSyncBlockerSummaryCommandInput
|
|
8
|
-
extends GetSyncBlockerSummaryInput {}
|
|
4
|
+
export interface GetSyncBlockerSummaryCommandInput extends GetSyncBlockerSummaryInput {}
|
|
9
5
|
export interface GetSyncBlockerSummaryCommandOutput
|
|
10
|
-
extends GetSyncBlockerSummaryOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetSyncBlockerSummaryOutput, __MetadataBearer {}
|
|
12
7
|
declare const GetSyncBlockerSummaryCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetSyncBlockerSummaryCommandInput
|
|
9
|
+
input: GetSyncBlockerSummaryCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetSyncBlockerSummaryCommandInput,
|
|
17
12
|
GetSyncBlockerSummaryCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetSyncBlockerSummaryCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetSyncBlockerSummaryCommandInput
|
|
18
|
+
input: GetSyncBlockerSummaryCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetSyncBlockerSummaryCommandInput,
|
|
26
21
|
GetSyncBlockerSummaryCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetSyncConfigurationInput,
|
|
4
|
-
GetSyncConfigurationOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetSyncConfigurationInput, GetSyncConfigurationOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetSyncConfigurationCommandInput
|
|
8
|
-
extends GetSyncConfigurationInput {}
|
|
4
|
+
export interface GetSyncConfigurationCommandInput extends GetSyncConfigurationInput {}
|
|
9
5
|
export interface GetSyncConfigurationCommandOutput
|
|
10
|
-
extends GetSyncConfigurationOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetSyncConfigurationOutput, __MetadataBearer {}
|
|
12
7
|
declare const GetSyncConfigurationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetSyncConfigurationCommandInput
|
|
9
|
+
input: GetSyncConfigurationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetSyncConfigurationCommandInput,
|
|
17
12
|
GetSyncConfigurationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetSyncConfigurationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetSyncConfigurationCommandInput
|
|
18
|
+
input: GetSyncConfigurationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetSyncConfigurationCommandInput,
|
|
26
21
|
GetSyncConfigurationCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListConnectionsInput,
|
|
4
|
-
ListConnectionsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListConnectionsInput, ListConnectionsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListConnectionsCommandInput extends ListConnectionsInput {}
|
|
8
|
-
export interface ListConnectionsCommandOutput
|
|
9
|
-
extends ListConnectionsOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListConnectionsCommandOutput extends ListConnectionsOutput, __MetadataBearer {}
|
|
11
6
|
declare const ListConnectionsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListConnectionsCommandInput
|
|
8
|
+
input: ListConnectionsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListConnectionsCommandInput,
|
|
16
11
|
ListConnectionsCommandOutput,
|
|
@@ -2,11 +2,11 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListHostsInput, ListHostsOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListHostsCommandInput extends ListHostsInput {}
|
|
5
|
-
export interface ListHostsCommandOutput
|
|
6
|
-
extends ListHostsOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListHostsCommandOutput extends ListHostsOutput, __MetadataBearer {}
|
|
8
6
|
declare const ListHostsCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: ListHostsCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
ListHostsCommandInput,
|
|
11
11
|
ListHostsCommandOutput,
|
|
12
12
|
import("..").CodeStarConnectionsClientResolvedConfig,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListRepositoryLinksInput,
|
|
4
|
-
ListRepositoryLinksOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListRepositoryLinksInput, ListRepositoryLinksOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListRepositoryLinksCommandInput
|
|
8
|
-
extends ListRepositoryLinksInput {}
|
|
4
|
+
export interface ListRepositoryLinksCommandInput extends ListRepositoryLinksInput {}
|
|
9
5
|
export interface ListRepositoryLinksCommandOutput
|
|
10
|
-
extends ListRepositoryLinksOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListRepositoryLinksOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListRepositoryLinksCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListRepositoryLinksCommandInput
|
|
9
|
+
input: ListRepositoryLinksCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListRepositoryLinksCommandInput,
|
|
17
12
|
ListRepositoryLinksCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListRepositorySyncDefinitionsOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListRepositorySyncDefinitionsCommandInput
|
|
8
|
-
extends ListRepositorySyncDefinitionsInput {}
|
|
7
|
+
export interface ListRepositorySyncDefinitionsCommandInput extends ListRepositorySyncDefinitionsInput {}
|
|
9
8
|
export interface ListRepositorySyncDefinitionsCommandOutput
|
|
10
|
-
extends ListRepositorySyncDefinitionsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListRepositorySyncDefinitionsOutput, __MetadataBearer {}
|
|
12
10
|
declare const ListRepositorySyncDefinitionsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListRepositorySyncDefinitionsCommandInput
|
|
12
|
+
input: ListRepositorySyncDefinitionsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListRepositorySyncDefinitionsCommandInput,
|
|
17
15
|
ListRepositorySyncDefinitionsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListRepositorySyncDefinitionsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListRepositorySyncDefinitionsCommandInput
|
|
21
|
+
input: ListRepositorySyncDefinitionsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListRepositorySyncDefinitionsCommandInput,
|
|
26
24
|
ListRepositorySyncDefinitionsCommandOutput,
|