@aws-sdk/client-codeconnections 3.545.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/LICENSE +201 -0
- package/README.md +500 -0
- package/dist-cjs/CodeConnections.js +65 -0
- package/dist-cjs/CodeConnectionsClient.js +56 -0
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/commands/CreateConnectionCommand.js +28 -0
- package/dist-cjs/commands/CreateHostCommand.js +28 -0
- package/dist-cjs/commands/CreateRepositoryLinkCommand.js +28 -0
- package/dist-cjs/commands/CreateSyncConfigurationCommand.js +28 -0
- package/dist-cjs/commands/DeleteConnectionCommand.js +28 -0
- package/dist-cjs/commands/DeleteHostCommand.js +28 -0
- package/dist-cjs/commands/DeleteRepositoryLinkCommand.js +28 -0
- package/dist-cjs/commands/DeleteSyncConfigurationCommand.js +28 -0
- package/dist-cjs/commands/GetConnectionCommand.js +28 -0
- package/dist-cjs/commands/GetHostCommand.js +28 -0
- package/dist-cjs/commands/GetRepositoryLinkCommand.js +28 -0
- package/dist-cjs/commands/GetRepositorySyncStatusCommand.js +28 -0
- package/dist-cjs/commands/GetResourceSyncStatusCommand.js +28 -0
- package/dist-cjs/commands/GetSyncBlockerSummaryCommand.js +28 -0
- package/dist-cjs/commands/GetSyncConfigurationCommand.js +28 -0
- package/dist-cjs/commands/ListConnectionsCommand.js +28 -0
- package/dist-cjs/commands/ListHostsCommand.js +28 -0
- package/dist-cjs/commands/ListRepositoryLinksCommand.js +28 -0
- package/dist-cjs/commands/ListRepositorySyncDefinitionsCommand.js +28 -0
- package/dist-cjs/commands/ListSyncConfigurationsCommand.js +28 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +28 -0
- package/dist-cjs/commands/TagResourceCommand.js +28 -0
- package/dist-cjs/commands/UntagResourceCommand.js +28 -0
- package/dist-cjs/commands/UpdateHostCommand.js +28 -0
- package/dist-cjs/commands/UpdateRepositoryLinkCommand.js +28 -0
- package/dist-cjs/commands/UpdateSyncBlockerCommand.js +28 -0
- package/dist-cjs/commands/UpdateSyncConfigurationCommand.js +28 -0
- package/dist-cjs/commands/index.js +30 -0
- package/dist-cjs/endpoint/EndpointParameters.js +18 -0
- package/dist-cjs/endpoint/endpointResolver.js +14 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/CodeConnectionsServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +285 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListConnectionsPaginator.js +7 -0
- package/dist-cjs/pagination/ListHostsPaginator.js +7 -0
- package/dist-cjs/pagination/ListRepositoryLinksPaginator.js +7 -0
- package/dist-cjs/pagination/ListSyncConfigurationsPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +8 -0
- package/dist-cjs/protocols/Aws_json1_0.js +928 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +49 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +34 -0
- package/dist-cjs/runtimeExtensions.js +25 -0
- package/dist-es/CodeConnections.js +61 -0
- package/dist-es/CodeConnectionsClient.js +52 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/CreateConnectionCommand.js +24 -0
- package/dist-es/commands/CreateHostCommand.js +24 -0
- package/dist-es/commands/CreateRepositoryLinkCommand.js +24 -0
- package/dist-es/commands/CreateSyncConfigurationCommand.js +24 -0
- package/dist-es/commands/DeleteConnectionCommand.js +24 -0
- package/dist-es/commands/DeleteHostCommand.js +24 -0
- package/dist-es/commands/DeleteRepositoryLinkCommand.js +24 -0
- package/dist-es/commands/DeleteSyncConfigurationCommand.js +24 -0
- package/dist-es/commands/GetConnectionCommand.js +24 -0
- package/dist-es/commands/GetHostCommand.js +24 -0
- package/dist-es/commands/GetRepositoryLinkCommand.js +24 -0
- package/dist-es/commands/GetRepositorySyncStatusCommand.js +24 -0
- package/dist-es/commands/GetResourceSyncStatusCommand.js +24 -0
- package/dist-es/commands/GetSyncBlockerSummaryCommand.js +24 -0
- package/dist-es/commands/GetSyncConfigurationCommand.js +24 -0
- package/dist-es/commands/ListConnectionsCommand.js +24 -0
- package/dist-es/commands/ListHostsCommand.js +24 -0
- package/dist-es/commands/ListRepositoryLinksCommand.js +24 -0
- package/dist-es/commands/ListRepositorySyncDefinitionsCommand.js +24 -0
- package/dist-es/commands/ListSyncConfigurationsCommand.js +24 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +24 -0
- package/dist-es/commands/TagResourceCommand.js +24 -0
- package/dist-es/commands/UntagResourceCommand.js +24 -0
- package/dist-es/commands/UpdateHostCommand.js +24 -0
- package/dist-es/commands/UpdateRepositoryLinkCommand.js +24 -0
- package/dist-es/commands/UpdateSyncBlockerCommand.js +24 -0
- package/dist-es/commands/UpdateSyncConfigurationCommand.js +24 -0
- package/dist-es/commands/index.js +27 -0
- package/dist-es/endpoint/EndpointParameters.js +14 -0
- package/dist-es/endpoint/endpointResolver.js +10 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/CodeConnectionsServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +265 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListConnectionsPaginator.js +4 -0
- package/dist-es/pagination/ListHostsPaginator.js +4 -0
- package/dist-es/pagination/ListRepositoryLinksPaginator.js +4 -0
- package/dist-es/pagination/ListSyncConfigurationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +5 -0
- package/dist-es/protocols/Aws_json1_0.js +870 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +44 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +30 -0
- package/dist-es/runtimeExtensions.js +21 -0
- package/dist-types/CodeConnections.d.ts +280 -0
- package/dist-types/CodeConnectionsClient.d.ts +276 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist-types/commands/CreateConnectionCommand.d.ts +84 -0
- package/dist-types/commands/CreateHostCommand.d.ts +93 -0
- package/dist-types/commands/CreateRepositoryLinkCommand.d.ts +97 -0
- package/dist-types/commands/CreateSyncConfigurationCommand.d.ts +101 -0
- package/dist-types/commands/DeleteConnectionCommand.d.ts +60 -0
- package/dist-types/commands/DeleteHostCommand.d.ts +66 -0
- package/dist-types/commands/DeleteRepositoryLinkCommand.d.ts +81 -0
- package/dist-types/commands/DeleteSyncConfigurationCommand.d.ts +76 -0
- package/dist-types/commands/GetConnectionCommand.d.ts +72 -0
- package/dist-types/commands/GetHostCommand.d.ts +79 -0
- package/dist-types/commands/GetRepositoryLinkCommand.d.ts +86 -0
- package/dist-types/commands/GetRepositorySyncStatusCommand.d.ts +88 -0
- package/dist-types/commands/GetResourceSyncStatusCommand.d.ts +141 -0
- package/dist-types/commands/GetSyncBlockerSummaryCommand.d.ts +95 -0
- package/dist-types/commands/GetSyncConfigurationCommand.d.ts +87 -0
- package/dist-types/commands/ListConnectionsCommand.d.ts +75 -0
- package/dist-types/commands/ListHostsCommand.d.ts +80 -0
- package/dist-types/commands/ListRepositoryLinksCommand.d.ts +89 -0
- package/dist-types/commands/ListRepositorySyncDefinitionsCommand.d.ts +83 -0
- package/dist-types/commands/ListSyncConfigurationsCommand.d.ts +92 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +67 -0
- package/dist-types/commands/TagResourceCommand.d.ts +70 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +63 -0
- package/dist-types/commands/UpdateHostCommand.d.ts +80 -0
- package/dist-types/commands/UpdateRepositoryLinkCommand.d.ts +92 -0
- package/dist-types/commands/UpdateSyncBlockerCommand.d.ts +99 -0
- package/dist-types/commands/UpdateSyncConfigurationCommand.d.ts +99 -0
- package/dist-types/commands/index.d.ts +27 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +92 -0
- package/dist-types/models/CodeConnectionsServiceException.d.ts +13 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1735 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListConnectionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListHostsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRepositoryLinksPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSyncConfigurationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +5 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +245 -0
- package/dist-types/runtimeConfig.browser.d.ts +45 -0
- package/dist-types/runtimeConfig.d.ts +45 -0
- package/dist-types/runtimeConfig.native.d.ts +44 -0
- package/dist-types/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/CodeConnections.d.ts +469 -0
- package/dist-types/ts3.4/CodeConnectionsClient.d.ts +283 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist-types/ts3.4/commands/CreateConnectionCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateHostCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/CreateRepositoryLinkCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateSyncConfigurationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteHostCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DeleteRepositoryLinkCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteSyncConfigurationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetHostCommand.d.ts +29 -0
- package/dist-types/ts3.4/commands/GetRepositoryLinkCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetRepositorySyncStatusCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetResourceSyncStatusCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetSyncBlockerSummaryCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetSyncConfigurationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListHostsCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListRepositoryLinksCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListRepositorySyncDefinitionsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListSyncConfigurationsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpdateHostCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpdateRepositoryLinkCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateSyncBlockerCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateSyncConfigurationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +27 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +9 -0
- package/dist-types/ts3.4/models/CodeConnectionsServiceException.d.ts +8 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +531 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListConnectionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListHostsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRepositoryLinksPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSyncConfigurationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +5 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +329 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +87 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +81 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
- package/package.json +101 -0
|
@@ -0,0 +1,469 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
|
+
import { CodeConnectionsClient } from "./CodeConnectionsClient";
|
|
3
|
+
import {
|
|
4
|
+
CreateConnectionCommandInput,
|
|
5
|
+
CreateConnectionCommandOutput,
|
|
6
|
+
} from "./commands/CreateConnectionCommand";
|
|
7
|
+
import {
|
|
8
|
+
CreateHostCommandInput,
|
|
9
|
+
CreateHostCommandOutput,
|
|
10
|
+
} from "./commands/CreateHostCommand";
|
|
11
|
+
import {
|
|
12
|
+
CreateRepositoryLinkCommandInput,
|
|
13
|
+
CreateRepositoryLinkCommandOutput,
|
|
14
|
+
} from "./commands/CreateRepositoryLinkCommand";
|
|
15
|
+
import {
|
|
16
|
+
CreateSyncConfigurationCommandInput,
|
|
17
|
+
CreateSyncConfigurationCommandOutput,
|
|
18
|
+
} from "./commands/CreateSyncConfigurationCommand";
|
|
19
|
+
import {
|
|
20
|
+
DeleteConnectionCommandInput,
|
|
21
|
+
DeleteConnectionCommandOutput,
|
|
22
|
+
} from "./commands/DeleteConnectionCommand";
|
|
23
|
+
import {
|
|
24
|
+
DeleteHostCommandInput,
|
|
25
|
+
DeleteHostCommandOutput,
|
|
26
|
+
} from "./commands/DeleteHostCommand";
|
|
27
|
+
import {
|
|
28
|
+
DeleteRepositoryLinkCommandInput,
|
|
29
|
+
DeleteRepositoryLinkCommandOutput,
|
|
30
|
+
} from "./commands/DeleteRepositoryLinkCommand";
|
|
31
|
+
import {
|
|
32
|
+
DeleteSyncConfigurationCommandInput,
|
|
33
|
+
DeleteSyncConfigurationCommandOutput,
|
|
34
|
+
} from "./commands/DeleteSyncConfigurationCommand";
|
|
35
|
+
import {
|
|
36
|
+
GetConnectionCommandInput,
|
|
37
|
+
GetConnectionCommandOutput,
|
|
38
|
+
} from "./commands/GetConnectionCommand";
|
|
39
|
+
import {
|
|
40
|
+
GetHostCommandInput,
|
|
41
|
+
GetHostCommandOutput,
|
|
42
|
+
} from "./commands/GetHostCommand";
|
|
43
|
+
import {
|
|
44
|
+
GetRepositoryLinkCommandInput,
|
|
45
|
+
GetRepositoryLinkCommandOutput,
|
|
46
|
+
} from "./commands/GetRepositoryLinkCommand";
|
|
47
|
+
import {
|
|
48
|
+
GetRepositorySyncStatusCommandInput,
|
|
49
|
+
GetRepositorySyncStatusCommandOutput,
|
|
50
|
+
} from "./commands/GetRepositorySyncStatusCommand";
|
|
51
|
+
import {
|
|
52
|
+
GetResourceSyncStatusCommandInput,
|
|
53
|
+
GetResourceSyncStatusCommandOutput,
|
|
54
|
+
} from "./commands/GetResourceSyncStatusCommand";
|
|
55
|
+
import {
|
|
56
|
+
GetSyncBlockerSummaryCommandInput,
|
|
57
|
+
GetSyncBlockerSummaryCommandOutput,
|
|
58
|
+
} from "./commands/GetSyncBlockerSummaryCommand";
|
|
59
|
+
import {
|
|
60
|
+
GetSyncConfigurationCommandInput,
|
|
61
|
+
GetSyncConfigurationCommandOutput,
|
|
62
|
+
} from "./commands/GetSyncConfigurationCommand";
|
|
63
|
+
import {
|
|
64
|
+
ListConnectionsCommandInput,
|
|
65
|
+
ListConnectionsCommandOutput,
|
|
66
|
+
} from "./commands/ListConnectionsCommand";
|
|
67
|
+
import {
|
|
68
|
+
ListHostsCommandInput,
|
|
69
|
+
ListHostsCommandOutput,
|
|
70
|
+
} from "./commands/ListHostsCommand";
|
|
71
|
+
import {
|
|
72
|
+
ListRepositoryLinksCommandInput,
|
|
73
|
+
ListRepositoryLinksCommandOutput,
|
|
74
|
+
} from "./commands/ListRepositoryLinksCommand";
|
|
75
|
+
import {
|
|
76
|
+
ListRepositorySyncDefinitionsCommandInput,
|
|
77
|
+
ListRepositorySyncDefinitionsCommandOutput,
|
|
78
|
+
} from "./commands/ListRepositorySyncDefinitionsCommand";
|
|
79
|
+
import {
|
|
80
|
+
ListSyncConfigurationsCommandInput,
|
|
81
|
+
ListSyncConfigurationsCommandOutput,
|
|
82
|
+
} from "./commands/ListSyncConfigurationsCommand";
|
|
83
|
+
import {
|
|
84
|
+
ListTagsForResourceCommandInput,
|
|
85
|
+
ListTagsForResourceCommandOutput,
|
|
86
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
87
|
+
import {
|
|
88
|
+
TagResourceCommandInput,
|
|
89
|
+
TagResourceCommandOutput,
|
|
90
|
+
} from "./commands/TagResourceCommand";
|
|
91
|
+
import {
|
|
92
|
+
UntagResourceCommandInput,
|
|
93
|
+
UntagResourceCommandOutput,
|
|
94
|
+
} from "./commands/UntagResourceCommand";
|
|
95
|
+
import {
|
|
96
|
+
UpdateHostCommandInput,
|
|
97
|
+
UpdateHostCommandOutput,
|
|
98
|
+
} from "./commands/UpdateHostCommand";
|
|
99
|
+
import {
|
|
100
|
+
UpdateRepositoryLinkCommandInput,
|
|
101
|
+
UpdateRepositoryLinkCommandOutput,
|
|
102
|
+
} from "./commands/UpdateRepositoryLinkCommand";
|
|
103
|
+
import {
|
|
104
|
+
UpdateSyncBlockerCommandInput,
|
|
105
|
+
UpdateSyncBlockerCommandOutput,
|
|
106
|
+
} from "./commands/UpdateSyncBlockerCommand";
|
|
107
|
+
import {
|
|
108
|
+
UpdateSyncConfigurationCommandInput,
|
|
109
|
+
UpdateSyncConfigurationCommandOutput,
|
|
110
|
+
} from "./commands/UpdateSyncConfigurationCommand";
|
|
111
|
+
export interface CodeConnections {
|
|
112
|
+
createConnection(
|
|
113
|
+
args: CreateConnectionCommandInput,
|
|
114
|
+
options?: __HttpHandlerOptions
|
|
115
|
+
): Promise<CreateConnectionCommandOutput>;
|
|
116
|
+
createConnection(
|
|
117
|
+
args: CreateConnectionCommandInput,
|
|
118
|
+
cb: (err: any, data?: CreateConnectionCommandOutput) => void
|
|
119
|
+
): void;
|
|
120
|
+
createConnection(
|
|
121
|
+
args: CreateConnectionCommandInput,
|
|
122
|
+
options: __HttpHandlerOptions,
|
|
123
|
+
cb: (err: any, data?: CreateConnectionCommandOutput) => void
|
|
124
|
+
): void;
|
|
125
|
+
createHost(
|
|
126
|
+
args: CreateHostCommandInput,
|
|
127
|
+
options?: __HttpHandlerOptions
|
|
128
|
+
): Promise<CreateHostCommandOutput>;
|
|
129
|
+
createHost(
|
|
130
|
+
args: CreateHostCommandInput,
|
|
131
|
+
cb: (err: any, data?: CreateHostCommandOutput) => void
|
|
132
|
+
): void;
|
|
133
|
+
createHost(
|
|
134
|
+
args: CreateHostCommandInput,
|
|
135
|
+
options: __HttpHandlerOptions,
|
|
136
|
+
cb: (err: any, data?: CreateHostCommandOutput) => void
|
|
137
|
+
): void;
|
|
138
|
+
createRepositoryLink(
|
|
139
|
+
args: CreateRepositoryLinkCommandInput,
|
|
140
|
+
options?: __HttpHandlerOptions
|
|
141
|
+
): Promise<CreateRepositoryLinkCommandOutput>;
|
|
142
|
+
createRepositoryLink(
|
|
143
|
+
args: CreateRepositoryLinkCommandInput,
|
|
144
|
+
cb: (err: any, data?: CreateRepositoryLinkCommandOutput) => void
|
|
145
|
+
): void;
|
|
146
|
+
createRepositoryLink(
|
|
147
|
+
args: CreateRepositoryLinkCommandInput,
|
|
148
|
+
options: __HttpHandlerOptions,
|
|
149
|
+
cb: (err: any, data?: CreateRepositoryLinkCommandOutput) => void
|
|
150
|
+
): void;
|
|
151
|
+
createSyncConfiguration(
|
|
152
|
+
args: CreateSyncConfigurationCommandInput,
|
|
153
|
+
options?: __HttpHandlerOptions
|
|
154
|
+
): Promise<CreateSyncConfigurationCommandOutput>;
|
|
155
|
+
createSyncConfiguration(
|
|
156
|
+
args: CreateSyncConfigurationCommandInput,
|
|
157
|
+
cb: (err: any, data?: CreateSyncConfigurationCommandOutput) => void
|
|
158
|
+
): void;
|
|
159
|
+
createSyncConfiguration(
|
|
160
|
+
args: CreateSyncConfigurationCommandInput,
|
|
161
|
+
options: __HttpHandlerOptions,
|
|
162
|
+
cb: (err: any, data?: CreateSyncConfigurationCommandOutput) => void
|
|
163
|
+
): void;
|
|
164
|
+
deleteConnection(
|
|
165
|
+
args: DeleteConnectionCommandInput,
|
|
166
|
+
options?: __HttpHandlerOptions
|
|
167
|
+
): Promise<DeleteConnectionCommandOutput>;
|
|
168
|
+
deleteConnection(
|
|
169
|
+
args: DeleteConnectionCommandInput,
|
|
170
|
+
cb: (err: any, data?: DeleteConnectionCommandOutput) => void
|
|
171
|
+
): void;
|
|
172
|
+
deleteConnection(
|
|
173
|
+
args: DeleteConnectionCommandInput,
|
|
174
|
+
options: __HttpHandlerOptions,
|
|
175
|
+
cb: (err: any, data?: DeleteConnectionCommandOutput) => void
|
|
176
|
+
): void;
|
|
177
|
+
deleteHost(
|
|
178
|
+
args: DeleteHostCommandInput,
|
|
179
|
+
options?: __HttpHandlerOptions
|
|
180
|
+
): Promise<DeleteHostCommandOutput>;
|
|
181
|
+
deleteHost(
|
|
182
|
+
args: DeleteHostCommandInput,
|
|
183
|
+
cb: (err: any, data?: DeleteHostCommandOutput) => void
|
|
184
|
+
): void;
|
|
185
|
+
deleteHost(
|
|
186
|
+
args: DeleteHostCommandInput,
|
|
187
|
+
options: __HttpHandlerOptions,
|
|
188
|
+
cb: (err: any, data?: DeleteHostCommandOutput) => void
|
|
189
|
+
): void;
|
|
190
|
+
deleteRepositoryLink(
|
|
191
|
+
args: DeleteRepositoryLinkCommandInput,
|
|
192
|
+
options?: __HttpHandlerOptions
|
|
193
|
+
): Promise<DeleteRepositoryLinkCommandOutput>;
|
|
194
|
+
deleteRepositoryLink(
|
|
195
|
+
args: DeleteRepositoryLinkCommandInput,
|
|
196
|
+
cb: (err: any, data?: DeleteRepositoryLinkCommandOutput) => void
|
|
197
|
+
): void;
|
|
198
|
+
deleteRepositoryLink(
|
|
199
|
+
args: DeleteRepositoryLinkCommandInput,
|
|
200
|
+
options: __HttpHandlerOptions,
|
|
201
|
+
cb: (err: any, data?: DeleteRepositoryLinkCommandOutput) => void
|
|
202
|
+
): void;
|
|
203
|
+
deleteSyncConfiguration(
|
|
204
|
+
args: DeleteSyncConfigurationCommandInput,
|
|
205
|
+
options?: __HttpHandlerOptions
|
|
206
|
+
): Promise<DeleteSyncConfigurationCommandOutput>;
|
|
207
|
+
deleteSyncConfiguration(
|
|
208
|
+
args: DeleteSyncConfigurationCommandInput,
|
|
209
|
+
cb: (err: any, data?: DeleteSyncConfigurationCommandOutput) => void
|
|
210
|
+
): void;
|
|
211
|
+
deleteSyncConfiguration(
|
|
212
|
+
args: DeleteSyncConfigurationCommandInput,
|
|
213
|
+
options: __HttpHandlerOptions,
|
|
214
|
+
cb: (err: any, data?: DeleteSyncConfigurationCommandOutput) => void
|
|
215
|
+
): void;
|
|
216
|
+
getConnection(
|
|
217
|
+
args: GetConnectionCommandInput,
|
|
218
|
+
options?: __HttpHandlerOptions
|
|
219
|
+
): Promise<GetConnectionCommandOutput>;
|
|
220
|
+
getConnection(
|
|
221
|
+
args: GetConnectionCommandInput,
|
|
222
|
+
cb: (err: any, data?: GetConnectionCommandOutput) => void
|
|
223
|
+
): void;
|
|
224
|
+
getConnection(
|
|
225
|
+
args: GetConnectionCommandInput,
|
|
226
|
+
options: __HttpHandlerOptions,
|
|
227
|
+
cb: (err: any, data?: GetConnectionCommandOutput) => void
|
|
228
|
+
): void;
|
|
229
|
+
getHost(
|
|
230
|
+
args: GetHostCommandInput,
|
|
231
|
+
options?: __HttpHandlerOptions
|
|
232
|
+
): Promise<GetHostCommandOutput>;
|
|
233
|
+
getHost(
|
|
234
|
+
args: GetHostCommandInput,
|
|
235
|
+
cb: (err: any, data?: GetHostCommandOutput) => void
|
|
236
|
+
): void;
|
|
237
|
+
getHost(
|
|
238
|
+
args: GetHostCommandInput,
|
|
239
|
+
options: __HttpHandlerOptions,
|
|
240
|
+
cb: (err: any, data?: GetHostCommandOutput) => void
|
|
241
|
+
): void;
|
|
242
|
+
getRepositoryLink(
|
|
243
|
+
args: GetRepositoryLinkCommandInput,
|
|
244
|
+
options?: __HttpHandlerOptions
|
|
245
|
+
): Promise<GetRepositoryLinkCommandOutput>;
|
|
246
|
+
getRepositoryLink(
|
|
247
|
+
args: GetRepositoryLinkCommandInput,
|
|
248
|
+
cb: (err: any, data?: GetRepositoryLinkCommandOutput) => void
|
|
249
|
+
): void;
|
|
250
|
+
getRepositoryLink(
|
|
251
|
+
args: GetRepositoryLinkCommandInput,
|
|
252
|
+
options: __HttpHandlerOptions,
|
|
253
|
+
cb: (err: any, data?: GetRepositoryLinkCommandOutput) => void
|
|
254
|
+
): void;
|
|
255
|
+
getRepositorySyncStatus(
|
|
256
|
+
args: GetRepositorySyncStatusCommandInput,
|
|
257
|
+
options?: __HttpHandlerOptions
|
|
258
|
+
): Promise<GetRepositorySyncStatusCommandOutput>;
|
|
259
|
+
getRepositorySyncStatus(
|
|
260
|
+
args: GetRepositorySyncStatusCommandInput,
|
|
261
|
+
cb: (err: any, data?: GetRepositorySyncStatusCommandOutput) => void
|
|
262
|
+
): void;
|
|
263
|
+
getRepositorySyncStatus(
|
|
264
|
+
args: GetRepositorySyncStatusCommandInput,
|
|
265
|
+
options: __HttpHandlerOptions,
|
|
266
|
+
cb: (err: any, data?: GetRepositorySyncStatusCommandOutput) => void
|
|
267
|
+
): void;
|
|
268
|
+
getResourceSyncStatus(
|
|
269
|
+
args: GetResourceSyncStatusCommandInput,
|
|
270
|
+
options?: __HttpHandlerOptions
|
|
271
|
+
): Promise<GetResourceSyncStatusCommandOutput>;
|
|
272
|
+
getResourceSyncStatus(
|
|
273
|
+
args: GetResourceSyncStatusCommandInput,
|
|
274
|
+
cb: (err: any, data?: GetResourceSyncStatusCommandOutput) => void
|
|
275
|
+
): void;
|
|
276
|
+
getResourceSyncStatus(
|
|
277
|
+
args: GetResourceSyncStatusCommandInput,
|
|
278
|
+
options: __HttpHandlerOptions,
|
|
279
|
+
cb: (err: any, data?: GetResourceSyncStatusCommandOutput) => void
|
|
280
|
+
): void;
|
|
281
|
+
getSyncBlockerSummary(
|
|
282
|
+
args: GetSyncBlockerSummaryCommandInput,
|
|
283
|
+
options?: __HttpHandlerOptions
|
|
284
|
+
): Promise<GetSyncBlockerSummaryCommandOutput>;
|
|
285
|
+
getSyncBlockerSummary(
|
|
286
|
+
args: GetSyncBlockerSummaryCommandInput,
|
|
287
|
+
cb: (err: any, data?: GetSyncBlockerSummaryCommandOutput) => void
|
|
288
|
+
): void;
|
|
289
|
+
getSyncBlockerSummary(
|
|
290
|
+
args: GetSyncBlockerSummaryCommandInput,
|
|
291
|
+
options: __HttpHandlerOptions,
|
|
292
|
+
cb: (err: any, data?: GetSyncBlockerSummaryCommandOutput) => void
|
|
293
|
+
): void;
|
|
294
|
+
getSyncConfiguration(
|
|
295
|
+
args: GetSyncConfigurationCommandInput,
|
|
296
|
+
options?: __HttpHandlerOptions
|
|
297
|
+
): Promise<GetSyncConfigurationCommandOutput>;
|
|
298
|
+
getSyncConfiguration(
|
|
299
|
+
args: GetSyncConfigurationCommandInput,
|
|
300
|
+
cb: (err: any, data?: GetSyncConfigurationCommandOutput) => void
|
|
301
|
+
): void;
|
|
302
|
+
getSyncConfiguration(
|
|
303
|
+
args: GetSyncConfigurationCommandInput,
|
|
304
|
+
options: __HttpHandlerOptions,
|
|
305
|
+
cb: (err: any, data?: GetSyncConfigurationCommandOutput) => void
|
|
306
|
+
): void;
|
|
307
|
+
listConnections(): Promise<ListConnectionsCommandOutput>;
|
|
308
|
+
listConnections(
|
|
309
|
+
args: ListConnectionsCommandInput,
|
|
310
|
+
options?: __HttpHandlerOptions
|
|
311
|
+
): Promise<ListConnectionsCommandOutput>;
|
|
312
|
+
listConnections(
|
|
313
|
+
args: ListConnectionsCommandInput,
|
|
314
|
+
cb: (err: any, data?: ListConnectionsCommandOutput) => void
|
|
315
|
+
): void;
|
|
316
|
+
listConnections(
|
|
317
|
+
args: ListConnectionsCommandInput,
|
|
318
|
+
options: __HttpHandlerOptions,
|
|
319
|
+
cb: (err: any, data?: ListConnectionsCommandOutput) => void
|
|
320
|
+
): void;
|
|
321
|
+
listHosts(): Promise<ListHostsCommandOutput>;
|
|
322
|
+
listHosts(
|
|
323
|
+
args: ListHostsCommandInput,
|
|
324
|
+
options?: __HttpHandlerOptions
|
|
325
|
+
): Promise<ListHostsCommandOutput>;
|
|
326
|
+
listHosts(
|
|
327
|
+
args: ListHostsCommandInput,
|
|
328
|
+
cb: (err: any, data?: ListHostsCommandOutput) => void
|
|
329
|
+
): void;
|
|
330
|
+
listHosts(
|
|
331
|
+
args: ListHostsCommandInput,
|
|
332
|
+
options: __HttpHandlerOptions,
|
|
333
|
+
cb: (err: any, data?: ListHostsCommandOutput) => void
|
|
334
|
+
): void;
|
|
335
|
+
listRepositoryLinks(): Promise<ListRepositoryLinksCommandOutput>;
|
|
336
|
+
listRepositoryLinks(
|
|
337
|
+
args: ListRepositoryLinksCommandInput,
|
|
338
|
+
options?: __HttpHandlerOptions
|
|
339
|
+
): Promise<ListRepositoryLinksCommandOutput>;
|
|
340
|
+
listRepositoryLinks(
|
|
341
|
+
args: ListRepositoryLinksCommandInput,
|
|
342
|
+
cb: (err: any, data?: ListRepositoryLinksCommandOutput) => void
|
|
343
|
+
): void;
|
|
344
|
+
listRepositoryLinks(
|
|
345
|
+
args: ListRepositoryLinksCommandInput,
|
|
346
|
+
options: __HttpHandlerOptions,
|
|
347
|
+
cb: (err: any, data?: ListRepositoryLinksCommandOutput) => void
|
|
348
|
+
): void;
|
|
349
|
+
listRepositorySyncDefinitions(
|
|
350
|
+
args: ListRepositorySyncDefinitionsCommandInput,
|
|
351
|
+
options?: __HttpHandlerOptions
|
|
352
|
+
): Promise<ListRepositorySyncDefinitionsCommandOutput>;
|
|
353
|
+
listRepositorySyncDefinitions(
|
|
354
|
+
args: ListRepositorySyncDefinitionsCommandInput,
|
|
355
|
+
cb: (err: any, data?: ListRepositorySyncDefinitionsCommandOutput) => void
|
|
356
|
+
): void;
|
|
357
|
+
listRepositorySyncDefinitions(
|
|
358
|
+
args: ListRepositorySyncDefinitionsCommandInput,
|
|
359
|
+
options: __HttpHandlerOptions,
|
|
360
|
+
cb: (err: any, data?: ListRepositorySyncDefinitionsCommandOutput) => void
|
|
361
|
+
): void;
|
|
362
|
+
listSyncConfigurations(
|
|
363
|
+
args: ListSyncConfigurationsCommandInput,
|
|
364
|
+
options?: __HttpHandlerOptions
|
|
365
|
+
): Promise<ListSyncConfigurationsCommandOutput>;
|
|
366
|
+
listSyncConfigurations(
|
|
367
|
+
args: ListSyncConfigurationsCommandInput,
|
|
368
|
+
cb: (err: any, data?: ListSyncConfigurationsCommandOutput) => void
|
|
369
|
+
): void;
|
|
370
|
+
listSyncConfigurations(
|
|
371
|
+
args: ListSyncConfigurationsCommandInput,
|
|
372
|
+
options: __HttpHandlerOptions,
|
|
373
|
+
cb: (err: any, data?: ListSyncConfigurationsCommandOutput) => void
|
|
374
|
+
): void;
|
|
375
|
+
listTagsForResource(
|
|
376
|
+
args: ListTagsForResourceCommandInput,
|
|
377
|
+
options?: __HttpHandlerOptions
|
|
378
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
379
|
+
listTagsForResource(
|
|
380
|
+
args: ListTagsForResourceCommandInput,
|
|
381
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
382
|
+
): void;
|
|
383
|
+
listTagsForResource(
|
|
384
|
+
args: ListTagsForResourceCommandInput,
|
|
385
|
+
options: __HttpHandlerOptions,
|
|
386
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
387
|
+
): void;
|
|
388
|
+
tagResource(
|
|
389
|
+
args: TagResourceCommandInput,
|
|
390
|
+
options?: __HttpHandlerOptions
|
|
391
|
+
): Promise<TagResourceCommandOutput>;
|
|
392
|
+
tagResource(
|
|
393
|
+
args: TagResourceCommandInput,
|
|
394
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
395
|
+
): void;
|
|
396
|
+
tagResource(
|
|
397
|
+
args: TagResourceCommandInput,
|
|
398
|
+
options: __HttpHandlerOptions,
|
|
399
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
400
|
+
): void;
|
|
401
|
+
untagResource(
|
|
402
|
+
args: UntagResourceCommandInput,
|
|
403
|
+
options?: __HttpHandlerOptions
|
|
404
|
+
): Promise<UntagResourceCommandOutput>;
|
|
405
|
+
untagResource(
|
|
406
|
+
args: UntagResourceCommandInput,
|
|
407
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
408
|
+
): void;
|
|
409
|
+
untagResource(
|
|
410
|
+
args: UntagResourceCommandInput,
|
|
411
|
+
options: __HttpHandlerOptions,
|
|
412
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
413
|
+
): void;
|
|
414
|
+
updateHost(
|
|
415
|
+
args: UpdateHostCommandInput,
|
|
416
|
+
options?: __HttpHandlerOptions
|
|
417
|
+
): Promise<UpdateHostCommandOutput>;
|
|
418
|
+
updateHost(
|
|
419
|
+
args: UpdateHostCommandInput,
|
|
420
|
+
cb: (err: any, data?: UpdateHostCommandOutput) => void
|
|
421
|
+
): void;
|
|
422
|
+
updateHost(
|
|
423
|
+
args: UpdateHostCommandInput,
|
|
424
|
+
options: __HttpHandlerOptions,
|
|
425
|
+
cb: (err: any, data?: UpdateHostCommandOutput) => void
|
|
426
|
+
): void;
|
|
427
|
+
updateRepositoryLink(
|
|
428
|
+
args: UpdateRepositoryLinkCommandInput,
|
|
429
|
+
options?: __HttpHandlerOptions
|
|
430
|
+
): Promise<UpdateRepositoryLinkCommandOutput>;
|
|
431
|
+
updateRepositoryLink(
|
|
432
|
+
args: UpdateRepositoryLinkCommandInput,
|
|
433
|
+
cb: (err: any, data?: UpdateRepositoryLinkCommandOutput) => void
|
|
434
|
+
): void;
|
|
435
|
+
updateRepositoryLink(
|
|
436
|
+
args: UpdateRepositoryLinkCommandInput,
|
|
437
|
+
options: __HttpHandlerOptions,
|
|
438
|
+
cb: (err: any, data?: UpdateRepositoryLinkCommandOutput) => void
|
|
439
|
+
): void;
|
|
440
|
+
updateSyncBlocker(
|
|
441
|
+
args: UpdateSyncBlockerCommandInput,
|
|
442
|
+
options?: __HttpHandlerOptions
|
|
443
|
+
): Promise<UpdateSyncBlockerCommandOutput>;
|
|
444
|
+
updateSyncBlocker(
|
|
445
|
+
args: UpdateSyncBlockerCommandInput,
|
|
446
|
+
cb: (err: any, data?: UpdateSyncBlockerCommandOutput) => void
|
|
447
|
+
): void;
|
|
448
|
+
updateSyncBlocker(
|
|
449
|
+
args: UpdateSyncBlockerCommandInput,
|
|
450
|
+
options: __HttpHandlerOptions,
|
|
451
|
+
cb: (err: any, data?: UpdateSyncBlockerCommandOutput) => void
|
|
452
|
+
): void;
|
|
453
|
+
updateSyncConfiguration(
|
|
454
|
+
args: UpdateSyncConfigurationCommandInput,
|
|
455
|
+
options?: __HttpHandlerOptions
|
|
456
|
+
): Promise<UpdateSyncConfigurationCommandOutput>;
|
|
457
|
+
updateSyncConfiguration(
|
|
458
|
+
args: UpdateSyncConfigurationCommandInput,
|
|
459
|
+
cb: (err: any, data?: UpdateSyncConfigurationCommandOutput) => void
|
|
460
|
+
): void;
|
|
461
|
+
updateSyncConfiguration(
|
|
462
|
+
args: UpdateSyncConfigurationCommandInput,
|
|
463
|
+
options: __HttpHandlerOptions,
|
|
464
|
+
cb: (err: any, data?: UpdateSyncConfigurationCommandOutput) => void
|
|
465
|
+
): void;
|
|
466
|
+
}
|
|
467
|
+
export declare class CodeConnections
|
|
468
|
+
extends CodeConnectionsClient
|
|
469
|
+
implements CodeConnections {}
|