@aws-sdk/client-codeconnections 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.
Files changed (47) hide show
  1. package/dist-cjs/index.js +1 -1
  2. package/dist-types/ts3.4/CodeConnections.d.ts +92 -118
  3. package/dist-types/ts3.4/CodeConnectionsClient.d.ts +12 -40
  4. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
  5. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
  6. package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
  7. package/dist-types/ts3.4/commands/CreateConnectionCommand.d.ts +4 -9
  8. package/dist-types/ts3.4/commands/CreateHostCommand.d.ts +3 -5
  9. package/dist-types/ts3.4/commands/CreateRepositoryLinkCommand.d.ts +5 -10
  10. package/dist-types/ts3.4/commands/CreateSyncConfigurationCommand.d.ts +5 -10
  11. package/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +4 -9
  12. package/dist-types/ts3.4/commands/DeleteHostCommand.d.ts +3 -5
  13. package/dist-types/ts3.4/commands/DeleteRepositoryLinkCommand.d.ts +5 -10
  14. package/dist-types/ts3.4/commands/DeleteSyncConfigurationCommand.d.ts +5 -10
  15. package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +3 -5
  16. package/dist-types/ts3.4/commands/GetHostCommand.d.ts +6 -2
  17. package/dist-types/ts3.4/commands/GetRepositoryLinkCommand.d.ts +4 -9
  18. package/dist-types/ts3.4/commands/GetRepositorySyncStatusCommand.d.ts +5 -10
  19. package/dist-types/ts3.4/commands/GetResourceSyncStatusCommand.d.ts +5 -10
  20. package/dist-types/ts3.4/commands/GetSyncBlockerSummaryCommand.d.ts +5 -10
  21. package/dist-types/ts3.4/commands/GetSyncConfigurationCommand.d.ts +5 -10
  22. package/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +3 -8
  23. package/dist-types/ts3.4/commands/ListHostsCommand.d.ts +4 -4
  24. package/dist-types/ts3.4/commands/ListRepositoryLinksCommand.d.ts +4 -9
  25. package/dist-types/ts3.4/commands/ListRepositorySyncDefinitionsCommand.d.ts +4 -6
  26. package/dist-types/ts3.4/commands/ListSyncConfigurationsCommand.d.ts +5 -10
  27. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
  28. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
  29. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +3 -5
  30. package/dist-types/ts3.4/commands/UpdateHostCommand.d.ts +3 -5
  31. package/dist-types/ts3.4/commands/UpdateRepositoryLinkCommand.d.ts +5 -10
  32. package/dist-types/ts3.4/commands/UpdateSyncBlockerCommand.d.ts +4 -9
  33. package/dist-types/ts3.4/commands/UpdateSyncConfigurationCommand.d.ts +5 -10
  34. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  35. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
  36. package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
  37. package/dist-types/ts3.4/models/enums.d.ts +4 -8
  38. package/dist-types/ts3.4/models/errors.d.ts +16 -66
  39. package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
  40. package/dist-types/ts3.4/pagination/ListHostsPaginator.d.ts +1 -4
  41. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
  42. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
  43. package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
  44. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
  45. package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
  46. package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
  47. package/package.json +38 -38
@@ -7,17 +7,10 @@ import { CodeConnectionsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"
7
7
  export interface HttpAuthExtensionConfiguration {
8
8
  setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
9
  httpAuthSchemes(): HttpAuthScheme[];
10
- setHttpAuthSchemeProvider(
11
- httpAuthSchemeProvider: CodeConnectionsHttpAuthSchemeProvider
12
- ): void;
10
+ setHttpAuthSchemeProvider(httpAuthSchemeProvider: CodeConnectionsHttpAuthSchemeProvider): void;
13
11
  httpAuthSchemeProvider(): CodeConnectionsHttpAuthSchemeProvider;
14
- setCredentials(
15
- credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
- ): void;
17
- credentials():
18
- | AwsCredentialIdentity
19
- | AwsCredentialIdentityProvider
20
- | undefined;
12
+ setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
13
+ credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
21
14
  }
22
15
  export type HttpAuthRuntimeConfig = Partial<{
23
16
  httpAuthSchemes: HttpAuthScheme[];
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
25
18
  credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
19
  }>;
27
20
  export declare const getHttpAuthExtensionConfiguration: (
28
- runtimeConfig: HttpAuthRuntimeConfig
21
+ runtimeConfig: HttpAuthRuntimeConfig,
29
22
  ) => HttpAuthExtensionConfiguration;
30
23
  export declare const resolveHttpAuthRuntimeConfig: (
31
- config: HttpAuthExtensionConfiguration
24
+ config: HttpAuthExtensionConfiguration,
32
25
  ) => HttpAuthRuntimeConfig;
@@ -12,36 +12,32 @@ import {
12
12
  Provider,
13
13
  } from "@smithy/types";
14
14
  import { CodeConnectionsClientResolvedConfig } from "../CodeConnectionsClient";
15
- export interface CodeConnectionsHttpAuthSchemeParameters
16
- extends HttpAuthSchemeParameters {
15
+ export interface CodeConnectionsHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
17
16
  region?: string;
18
17
  }
19
- export interface CodeConnectionsHttpAuthSchemeParametersProvider
20
- extends HttpAuthSchemeParametersProvider<
21
- CodeConnectionsClientResolvedConfig,
22
- HandlerExecutionContext,
23
- CodeConnectionsHttpAuthSchemeParameters,
24
- object
25
- > {}
18
+ export interface CodeConnectionsHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
19
+ CodeConnectionsClientResolvedConfig,
20
+ HandlerExecutionContext,
21
+ CodeConnectionsHttpAuthSchemeParameters,
22
+ object
23
+ > {}
26
24
  export declare const defaultCodeConnectionsHttpAuthSchemeParametersProvider: (
27
25
  config: CodeConnectionsClientResolvedConfig,
28
26
  context: HandlerExecutionContext,
29
- input: object
27
+ input: object,
30
28
  ) => Promise<CodeConnectionsHttpAuthSchemeParameters>;
31
- export interface CodeConnectionsHttpAuthSchemeProvider
32
- extends HttpAuthSchemeProvider<CodeConnectionsHttpAuthSchemeParameters> {}
29
+ export interface CodeConnectionsHttpAuthSchemeProvider extends HttpAuthSchemeProvider<CodeConnectionsHttpAuthSchemeParameters> {}
33
30
  export declare const defaultCodeConnectionsHttpAuthSchemeProvider: CodeConnectionsHttpAuthSchemeProvider;
34
31
  export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
35
32
  authSchemePreference?: string[] | Provider<string[]>;
36
33
  httpAuthSchemes?: HttpAuthScheme[];
37
34
  httpAuthSchemeProvider?: CodeConnectionsHttpAuthSchemeProvider;
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: CodeConnectionsHttpAuthSchemeProvider;
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 "./CodeConnectionsClient";
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 (input: I): import("@smithy/core/client").CommandImpl<
19
+ new (
20
+ input: I,
21
+ ): import("@smithy/core/client").CommandImpl<
23
22
  I,
24
23
  O,
25
24
  CodeConnectionsClientResolvedConfig,
@@ -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 (input: GetHostCommandInput): import("@smithy/core/client").CommandImpl<
7
+ new (
8
+ input: GetHostCommandInput,
9
+ ): import("@smithy/core/client").CommandImpl<
8
10
  GetHostCommandInput,
9
11
  GetHostCommandOutput,
10
12
  import("..").CodeConnectionsClientResolvedConfig,
11
13
  import("..").ServiceInputTypes,
12
14
  import("..").ServiceOutputTypes
13
15
  >;
14
- new (input: GetHostCommandInput): import("@smithy/core/client").CommandImpl<
16
+ new (
17
+ input: GetHostCommandInput,
18
+ ): import("@smithy/core/client").CommandImpl<
15
19
  GetHostCommandInput,
16
20
  GetHostCommandOutput,
17
21
  import("..").CodeConnectionsClientResolvedConfig,
@@ -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 (input: ListHostsCommandInput): import("@smithy/core/client").CommandImpl<
7
+ new (
8
+ input: ListHostsCommandInput,
9
+ ): import("@smithy/core/client").CommandImpl<
10
10
  ListHostsCommandInput,
11
11
  ListHostsCommandOutput,
12
12
  import("..").CodeConnectionsClientResolvedConfig,
@@ -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,