@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,329 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@smithy/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
CreateConnectionCommandInput,
|
|
8
|
+
CreateConnectionCommandOutput,
|
|
9
|
+
} from "../commands/CreateConnectionCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateHostCommandInput,
|
|
12
|
+
CreateHostCommandOutput,
|
|
13
|
+
} from "../commands/CreateHostCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateRepositoryLinkCommandInput,
|
|
16
|
+
CreateRepositoryLinkCommandOutput,
|
|
17
|
+
} from "../commands/CreateRepositoryLinkCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateSyncConfigurationCommandInput,
|
|
20
|
+
CreateSyncConfigurationCommandOutput,
|
|
21
|
+
} from "../commands/CreateSyncConfigurationCommand";
|
|
22
|
+
import {
|
|
23
|
+
DeleteConnectionCommandInput,
|
|
24
|
+
DeleteConnectionCommandOutput,
|
|
25
|
+
} from "../commands/DeleteConnectionCommand";
|
|
26
|
+
import {
|
|
27
|
+
DeleteHostCommandInput,
|
|
28
|
+
DeleteHostCommandOutput,
|
|
29
|
+
} from "../commands/DeleteHostCommand";
|
|
30
|
+
import {
|
|
31
|
+
DeleteRepositoryLinkCommandInput,
|
|
32
|
+
DeleteRepositoryLinkCommandOutput,
|
|
33
|
+
} from "../commands/DeleteRepositoryLinkCommand";
|
|
34
|
+
import {
|
|
35
|
+
DeleteSyncConfigurationCommandInput,
|
|
36
|
+
DeleteSyncConfigurationCommandOutput,
|
|
37
|
+
} from "../commands/DeleteSyncConfigurationCommand";
|
|
38
|
+
import {
|
|
39
|
+
GetConnectionCommandInput,
|
|
40
|
+
GetConnectionCommandOutput,
|
|
41
|
+
} from "../commands/GetConnectionCommand";
|
|
42
|
+
import {
|
|
43
|
+
GetHostCommandInput,
|
|
44
|
+
GetHostCommandOutput,
|
|
45
|
+
} from "../commands/GetHostCommand";
|
|
46
|
+
import {
|
|
47
|
+
GetRepositoryLinkCommandInput,
|
|
48
|
+
GetRepositoryLinkCommandOutput,
|
|
49
|
+
} from "../commands/GetRepositoryLinkCommand";
|
|
50
|
+
import {
|
|
51
|
+
GetRepositorySyncStatusCommandInput,
|
|
52
|
+
GetRepositorySyncStatusCommandOutput,
|
|
53
|
+
} from "../commands/GetRepositorySyncStatusCommand";
|
|
54
|
+
import {
|
|
55
|
+
GetResourceSyncStatusCommandInput,
|
|
56
|
+
GetResourceSyncStatusCommandOutput,
|
|
57
|
+
} from "../commands/GetResourceSyncStatusCommand";
|
|
58
|
+
import {
|
|
59
|
+
GetSyncBlockerSummaryCommandInput,
|
|
60
|
+
GetSyncBlockerSummaryCommandOutput,
|
|
61
|
+
} from "../commands/GetSyncBlockerSummaryCommand";
|
|
62
|
+
import {
|
|
63
|
+
GetSyncConfigurationCommandInput,
|
|
64
|
+
GetSyncConfigurationCommandOutput,
|
|
65
|
+
} from "../commands/GetSyncConfigurationCommand";
|
|
66
|
+
import {
|
|
67
|
+
ListConnectionsCommandInput,
|
|
68
|
+
ListConnectionsCommandOutput,
|
|
69
|
+
} from "../commands/ListConnectionsCommand";
|
|
70
|
+
import {
|
|
71
|
+
ListHostsCommandInput,
|
|
72
|
+
ListHostsCommandOutput,
|
|
73
|
+
} from "../commands/ListHostsCommand";
|
|
74
|
+
import {
|
|
75
|
+
ListRepositoryLinksCommandInput,
|
|
76
|
+
ListRepositoryLinksCommandOutput,
|
|
77
|
+
} from "../commands/ListRepositoryLinksCommand";
|
|
78
|
+
import {
|
|
79
|
+
ListRepositorySyncDefinitionsCommandInput,
|
|
80
|
+
ListRepositorySyncDefinitionsCommandOutput,
|
|
81
|
+
} from "../commands/ListRepositorySyncDefinitionsCommand";
|
|
82
|
+
import {
|
|
83
|
+
ListSyncConfigurationsCommandInput,
|
|
84
|
+
ListSyncConfigurationsCommandOutput,
|
|
85
|
+
} from "../commands/ListSyncConfigurationsCommand";
|
|
86
|
+
import {
|
|
87
|
+
ListTagsForResourceCommandInput,
|
|
88
|
+
ListTagsForResourceCommandOutput,
|
|
89
|
+
} from "../commands/ListTagsForResourceCommand";
|
|
90
|
+
import {
|
|
91
|
+
TagResourceCommandInput,
|
|
92
|
+
TagResourceCommandOutput,
|
|
93
|
+
} from "../commands/TagResourceCommand";
|
|
94
|
+
import {
|
|
95
|
+
UntagResourceCommandInput,
|
|
96
|
+
UntagResourceCommandOutput,
|
|
97
|
+
} from "../commands/UntagResourceCommand";
|
|
98
|
+
import {
|
|
99
|
+
UpdateHostCommandInput,
|
|
100
|
+
UpdateHostCommandOutput,
|
|
101
|
+
} from "../commands/UpdateHostCommand";
|
|
102
|
+
import {
|
|
103
|
+
UpdateRepositoryLinkCommandInput,
|
|
104
|
+
UpdateRepositoryLinkCommandOutput,
|
|
105
|
+
} from "../commands/UpdateRepositoryLinkCommand";
|
|
106
|
+
import {
|
|
107
|
+
UpdateSyncBlockerCommandInput,
|
|
108
|
+
UpdateSyncBlockerCommandOutput,
|
|
109
|
+
} from "../commands/UpdateSyncBlockerCommand";
|
|
110
|
+
import {
|
|
111
|
+
UpdateSyncConfigurationCommandInput,
|
|
112
|
+
UpdateSyncConfigurationCommandOutput,
|
|
113
|
+
} from "../commands/UpdateSyncConfigurationCommand";
|
|
114
|
+
export declare const se_CreateConnectionCommand: (
|
|
115
|
+
input: CreateConnectionCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const se_CreateHostCommand: (
|
|
119
|
+
input: CreateHostCommandInput,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const se_CreateRepositoryLinkCommand: (
|
|
123
|
+
input: CreateRepositoryLinkCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const se_CreateSyncConfigurationCommand: (
|
|
127
|
+
input: CreateSyncConfigurationCommandInput,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const se_DeleteConnectionCommand: (
|
|
131
|
+
input: DeleteConnectionCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const se_DeleteHostCommand: (
|
|
135
|
+
input: DeleteHostCommandInput,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<__HttpRequest>;
|
|
138
|
+
export declare const se_DeleteRepositoryLinkCommand: (
|
|
139
|
+
input: DeleteRepositoryLinkCommandInput,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<__HttpRequest>;
|
|
142
|
+
export declare const se_DeleteSyncConfigurationCommand: (
|
|
143
|
+
input: DeleteSyncConfigurationCommandInput,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<__HttpRequest>;
|
|
146
|
+
export declare const se_GetConnectionCommand: (
|
|
147
|
+
input: GetConnectionCommandInput,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const se_GetHostCommand: (
|
|
151
|
+
input: GetHostCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
154
|
+
export declare const se_GetRepositoryLinkCommand: (
|
|
155
|
+
input: GetRepositoryLinkCommandInput,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const se_GetRepositorySyncStatusCommand: (
|
|
159
|
+
input: GetRepositorySyncStatusCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
162
|
+
export declare const se_GetResourceSyncStatusCommand: (
|
|
163
|
+
input: GetResourceSyncStatusCommandInput,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<__HttpRequest>;
|
|
166
|
+
export declare const se_GetSyncBlockerSummaryCommand: (
|
|
167
|
+
input: GetSyncBlockerSummaryCommandInput,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const se_GetSyncConfigurationCommand: (
|
|
171
|
+
input: GetSyncConfigurationCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const se_ListConnectionsCommand: (
|
|
175
|
+
input: ListConnectionsCommandInput,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<__HttpRequest>;
|
|
178
|
+
export declare const se_ListHostsCommand: (
|
|
179
|
+
input: ListHostsCommandInput,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<__HttpRequest>;
|
|
182
|
+
export declare const se_ListRepositoryLinksCommand: (
|
|
183
|
+
input: ListRepositoryLinksCommandInput,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<__HttpRequest>;
|
|
186
|
+
export declare const se_ListRepositorySyncDefinitionsCommand: (
|
|
187
|
+
input: ListRepositorySyncDefinitionsCommandInput,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<__HttpRequest>;
|
|
190
|
+
export declare const se_ListSyncConfigurationsCommand: (
|
|
191
|
+
input: ListSyncConfigurationsCommandInput,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<__HttpRequest>;
|
|
194
|
+
export declare const se_ListTagsForResourceCommand: (
|
|
195
|
+
input: ListTagsForResourceCommandInput,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<__HttpRequest>;
|
|
198
|
+
export declare const se_TagResourceCommand: (
|
|
199
|
+
input: TagResourceCommandInput,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<__HttpRequest>;
|
|
202
|
+
export declare const se_UntagResourceCommand: (
|
|
203
|
+
input: UntagResourceCommandInput,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<__HttpRequest>;
|
|
206
|
+
export declare const se_UpdateHostCommand: (
|
|
207
|
+
input: UpdateHostCommandInput,
|
|
208
|
+
context: __SerdeContext
|
|
209
|
+
) => Promise<__HttpRequest>;
|
|
210
|
+
export declare const se_UpdateRepositoryLinkCommand: (
|
|
211
|
+
input: UpdateRepositoryLinkCommandInput,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<__HttpRequest>;
|
|
214
|
+
export declare const se_UpdateSyncBlockerCommand: (
|
|
215
|
+
input: UpdateSyncBlockerCommandInput,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<__HttpRequest>;
|
|
218
|
+
export declare const se_UpdateSyncConfigurationCommand: (
|
|
219
|
+
input: UpdateSyncConfigurationCommandInput,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<__HttpRequest>;
|
|
222
|
+
export declare const de_CreateConnectionCommand: (
|
|
223
|
+
output: __HttpResponse,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<CreateConnectionCommandOutput>;
|
|
226
|
+
export declare const de_CreateHostCommand: (
|
|
227
|
+
output: __HttpResponse,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<CreateHostCommandOutput>;
|
|
230
|
+
export declare const de_CreateRepositoryLinkCommand: (
|
|
231
|
+
output: __HttpResponse,
|
|
232
|
+
context: __SerdeContext
|
|
233
|
+
) => Promise<CreateRepositoryLinkCommandOutput>;
|
|
234
|
+
export declare const de_CreateSyncConfigurationCommand: (
|
|
235
|
+
output: __HttpResponse,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<CreateSyncConfigurationCommandOutput>;
|
|
238
|
+
export declare const de_DeleteConnectionCommand: (
|
|
239
|
+
output: __HttpResponse,
|
|
240
|
+
context: __SerdeContext
|
|
241
|
+
) => Promise<DeleteConnectionCommandOutput>;
|
|
242
|
+
export declare const de_DeleteHostCommand: (
|
|
243
|
+
output: __HttpResponse,
|
|
244
|
+
context: __SerdeContext
|
|
245
|
+
) => Promise<DeleteHostCommandOutput>;
|
|
246
|
+
export declare const de_DeleteRepositoryLinkCommand: (
|
|
247
|
+
output: __HttpResponse,
|
|
248
|
+
context: __SerdeContext
|
|
249
|
+
) => Promise<DeleteRepositoryLinkCommandOutput>;
|
|
250
|
+
export declare const de_DeleteSyncConfigurationCommand: (
|
|
251
|
+
output: __HttpResponse,
|
|
252
|
+
context: __SerdeContext
|
|
253
|
+
) => Promise<DeleteSyncConfigurationCommandOutput>;
|
|
254
|
+
export declare const de_GetConnectionCommand: (
|
|
255
|
+
output: __HttpResponse,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<GetConnectionCommandOutput>;
|
|
258
|
+
export declare const de_GetHostCommand: (
|
|
259
|
+
output: __HttpResponse,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<GetHostCommandOutput>;
|
|
262
|
+
export declare const de_GetRepositoryLinkCommand: (
|
|
263
|
+
output: __HttpResponse,
|
|
264
|
+
context: __SerdeContext
|
|
265
|
+
) => Promise<GetRepositoryLinkCommandOutput>;
|
|
266
|
+
export declare const de_GetRepositorySyncStatusCommand: (
|
|
267
|
+
output: __HttpResponse,
|
|
268
|
+
context: __SerdeContext
|
|
269
|
+
) => Promise<GetRepositorySyncStatusCommandOutput>;
|
|
270
|
+
export declare const de_GetResourceSyncStatusCommand: (
|
|
271
|
+
output: __HttpResponse,
|
|
272
|
+
context: __SerdeContext
|
|
273
|
+
) => Promise<GetResourceSyncStatusCommandOutput>;
|
|
274
|
+
export declare const de_GetSyncBlockerSummaryCommand: (
|
|
275
|
+
output: __HttpResponse,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<GetSyncBlockerSummaryCommandOutput>;
|
|
278
|
+
export declare const de_GetSyncConfigurationCommand: (
|
|
279
|
+
output: __HttpResponse,
|
|
280
|
+
context: __SerdeContext
|
|
281
|
+
) => Promise<GetSyncConfigurationCommandOutput>;
|
|
282
|
+
export declare const de_ListConnectionsCommand: (
|
|
283
|
+
output: __HttpResponse,
|
|
284
|
+
context: __SerdeContext
|
|
285
|
+
) => Promise<ListConnectionsCommandOutput>;
|
|
286
|
+
export declare const de_ListHostsCommand: (
|
|
287
|
+
output: __HttpResponse,
|
|
288
|
+
context: __SerdeContext
|
|
289
|
+
) => Promise<ListHostsCommandOutput>;
|
|
290
|
+
export declare const de_ListRepositoryLinksCommand: (
|
|
291
|
+
output: __HttpResponse,
|
|
292
|
+
context: __SerdeContext
|
|
293
|
+
) => Promise<ListRepositoryLinksCommandOutput>;
|
|
294
|
+
export declare const de_ListRepositorySyncDefinitionsCommand: (
|
|
295
|
+
output: __HttpResponse,
|
|
296
|
+
context: __SerdeContext
|
|
297
|
+
) => Promise<ListRepositorySyncDefinitionsCommandOutput>;
|
|
298
|
+
export declare const de_ListSyncConfigurationsCommand: (
|
|
299
|
+
output: __HttpResponse,
|
|
300
|
+
context: __SerdeContext
|
|
301
|
+
) => Promise<ListSyncConfigurationsCommandOutput>;
|
|
302
|
+
export declare const de_ListTagsForResourceCommand: (
|
|
303
|
+
output: __HttpResponse,
|
|
304
|
+
context: __SerdeContext
|
|
305
|
+
) => Promise<ListTagsForResourceCommandOutput>;
|
|
306
|
+
export declare const de_TagResourceCommand: (
|
|
307
|
+
output: __HttpResponse,
|
|
308
|
+
context: __SerdeContext
|
|
309
|
+
) => Promise<TagResourceCommandOutput>;
|
|
310
|
+
export declare const de_UntagResourceCommand: (
|
|
311
|
+
output: __HttpResponse,
|
|
312
|
+
context: __SerdeContext
|
|
313
|
+
) => Promise<UntagResourceCommandOutput>;
|
|
314
|
+
export declare const de_UpdateHostCommand: (
|
|
315
|
+
output: __HttpResponse,
|
|
316
|
+
context: __SerdeContext
|
|
317
|
+
) => Promise<UpdateHostCommandOutput>;
|
|
318
|
+
export declare const de_UpdateRepositoryLinkCommand: (
|
|
319
|
+
output: __HttpResponse,
|
|
320
|
+
context: __SerdeContext
|
|
321
|
+
) => Promise<UpdateRepositoryLinkCommandOutput>;
|
|
322
|
+
export declare const de_UpdateSyncBlockerCommand: (
|
|
323
|
+
output: __HttpResponse,
|
|
324
|
+
context: __SerdeContext
|
|
325
|
+
) => Promise<UpdateSyncBlockerCommandOutput>;
|
|
326
|
+
export declare const de_UpdateSyncConfigurationCommand: (
|
|
327
|
+
output: __HttpResponse,
|
|
328
|
+
context: __SerdeContext
|
|
329
|
+
) => Promise<UpdateSyncConfigurationCommandOutput>;
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
+
import { CodeConnectionsClientConfig } from "./CodeConnectionsClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: CodeConnectionsClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
8
|
+
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider: (
|
|
12
|
+
input: any
|
|
13
|
+
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
14
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<
|
|
15
|
+
import("@smithy/types").UserAgent
|
|
16
|
+
>;
|
|
17
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
19
|
+
requestHandler:
|
|
20
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
|
21
|
+
| RequestHandler;
|
|
22
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
23
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
24
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
25
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
26
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
27
|
+
apiVersion: string;
|
|
28
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
29
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
30
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
31
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
32
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
33
|
+
disableHostPrefix: boolean;
|
|
34
|
+
serviceId: string;
|
|
35
|
+
logger: import("@smithy/types").Logger;
|
|
36
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
37
|
+
endpoint?:
|
|
38
|
+
| ((
|
|
39
|
+
| string
|
|
40
|
+
| import("@smithy/types").Endpoint
|
|
41
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
42
|
+
| import("@smithy/types").EndpointV2
|
|
43
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
44
|
+
) &
|
|
45
|
+
(
|
|
46
|
+
| string
|
|
47
|
+
| import("@smithy/types").Provider<string>
|
|
48
|
+
| import("@smithy/types").Endpoint
|
|
49
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
50
|
+
| import("@smithy/types").EndpointV2
|
|
51
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
52
|
+
))
|
|
53
|
+
| undefined;
|
|
54
|
+
endpointProvider: (
|
|
55
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
56
|
+
context?: {
|
|
57
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
58
|
+
}
|
|
59
|
+
) => import("@smithy/types").EndpointV2;
|
|
60
|
+
tls?: boolean | undefined;
|
|
61
|
+
retryStrategy?:
|
|
62
|
+
| import("@smithy/types").RetryStrategy
|
|
63
|
+
| import("@smithy/types").RetryStrategyV2
|
|
64
|
+
| undefined;
|
|
65
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
66
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
67
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeConnectionsHttpAuthSchemeProvider;
|
|
68
|
+
credentials?:
|
|
69
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
70
|
+
| import("@smithy/types").AwsCredentialIdentityProvider
|
|
71
|
+
| undefined;
|
|
72
|
+
signer?:
|
|
73
|
+
| import("@smithy/types").RequestSigner
|
|
74
|
+
| ((
|
|
75
|
+
authScheme?: import("@smithy/types").AuthScheme | undefined
|
|
76
|
+
) => Promise<import("@smithy/types").RequestSigner>)
|
|
77
|
+
| undefined;
|
|
78
|
+
signingEscapePath?: boolean | undefined;
|
|
79
|
+
systemClockOffset?: number | undefined;
|
|
80
|
+
signingRegion?: string | undefined;
|
|
81
|
+
signerConstructor?:
|
|
82
|
+
| (new (
|
|
83
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
84
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
85
|
+
) => import("@smithy/types").RequestSigner)
|
|
86
|
+
| undefined;
|
|
87
|
+
};
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
|
+
import { CodeConnectionsClientConfig } from "./CodeConnectionsClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: CodeConnectionsClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
8
|
+
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider: (
|
|
12
|
+
init?:
|
|
13
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
| undefined
|
|
15
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
16
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
17
|
+
>;
|
|
18
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<
|
|
19
|
+
import("@smithy/types").UserAgent
|
|
20
|
+
>;
|
|
21
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
22
|
+
region: string | import("@smithy/types").Provider<string>;
|
|
23
|
+
requestHandler:
|
|
24
|
+
| RequestHandler
|
|
25
|
+
| import("@smithy/protocol-http").HttpHandler<any>;
|
|
26
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
27
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
28
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
29
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
30
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
31
|
+
apiVersion: string;
|
|
32
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
33
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
34
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
35
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
36
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
37
|
+
disableHostPrefix: boolean;
|
|
38
|
+
serviceId: string;
|
|
39
|
+
logger: import("@smithy/types").Logger;
|
|
40
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
endpoint?:
|
|
42
|
+
| ((
|
|
43
|
+
| string
|
|
44
|
+
| import("@smithy/types").Endpoint
|
|
45
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
46
|
+
| import("@smithy/types").EndpointV2
|
|
47
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
48
|
+
) &
|
|
49
|
+
(
|
|
50
|
+
| string
|
|
51
|
+
| import("@smithy/types").Provider<string>
|
|
52
|
+
| import("@smithy/types").Endpoint
|
|
53
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
54
|
+
| import("@smithy/types").EndpointV2
|
|
55
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
56
|
+
))
|
|
57
|
+
| undefined;
|
|
58
|
+
endpointProvider: (
|
|
59
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
60
|
+
context?: {
|
|
61
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
62
|
+
}
|
|
63
|
+
) => import("@smithy/types").EndpointV2;
|
|
64
|
+
tls?: boolean | undefined;
|
|
65
|
+
retryStrategy?:
|
|
66
|
+
| import("@smithy/types").RetryStrategy
|
|
67
|
+
| import("@smithy/types").RetryStrategyV2
|
|
68
|
+
| undefined;
|
|
69
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
70
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
71
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeConnectionsHttpAuthSchemeProvider;
|
|
72
|
+
credentials?:
|
|
73
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
74
|
+
| import("@smithy/types").AwsCredentialIdentityProvider
|
|
75
|
+
| undefined;
|
|
76
|
+
signer?:
|
|
77
|
+
| import("@smithy/types").RequestSigner
|
|
78
|
+
| ((
|
|
79
|
+
authScheme?: import("@smithy/types").AuthScheme | undefined
|
|
80
|
+
) => Promise<import("@smithy/types").RequestSigner>)
|
|
81
|
+
| undefined;
|
|
82
|
+
signingEscapePath?: boolean | undefined;
|
|
83
|
+
systemClockOffset?: number | undefined;
|
|
84
|
+
signingRegion?: string | undefined;
|
|
85
|
+
signerConstructor?:
|
|
86
|
+
| (new (
|
|
87
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
88
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
89
|
+
) => import("@smithy/types").RequestSigner)
|
|
90
|
+
| undefined;
|
|
91
|
+
};
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { CodeConnectionsClientConfig } from "./CodeConnectionsClient";
|
|
2
|
+
export declare const getRuntimeConfig: (
|
|
3
|
+
config: CodeConnectionsClientConfig
|
|
4
|
+
) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
7
|
+
requestHandler:
|
|
8
|
+
| import("@smithy/types").NodeHttpHandlerOptions
|
|
9
|
+
| import("@smithy/types").FetchHttpHandlerOptions
|
|
10
|
+
| Record<string, unknown>
|
|
11
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
|
12
|
+
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
13
|
+
apiVersion: string;
|
|
14
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
15
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
16
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
17
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
18
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
19
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
20
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
21
|
+
disableHostPrefix: boolean;
|
|
22
|
+
serviceId: string;
|
|
23
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
25
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<
|
|
26
|
+
import("@smithy/types").UserAgent
|
|
27
|
+
>;
|
|
28
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
29
|
+
credentialDefaultProvider: (
|
|
30
|
+
input: any
|
|
31
|
+
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
32
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
33
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
34
|
+
logger: import("@smithy/types").Logger;
|
|
35
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
36
|
+
defaultsMode:
|
|
37
|
+
| import("@smithy/smithy-client").DefaultsMode
|
|
38
|
+
| import("@smithy/types").Provider<
|
|
39
|
+
import("@smithy/smithy-client").DefaultsMode
|
|
40
|
+
>;
|
|
41
|
+
endpoint?:
|
|
42
|
+
| string
|
|
43
|
+
| import("@smithy/types").Endpoint
|
|
44
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
45
|
+
| import("@smithy/types").EndpointV2
|
|
46
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
47
|
+
| undefined;
|
|
48
|
+
endpointProvider: (
|
|
49
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
50
|
+
context?: {
|
|
51
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
52
|
+
}
|
|
53
|
+
) => import("@smithy/types").EndpointV2;
|
|
54
|
+
tls?: boolean | undefined;
|
|
55
|
+
retryStrategy?:
|
|
56
|
+
| import("@smithy/types").RetryStrategy
|
|
57
|
+
| import("@smithy/types").RetryStrategyV2
|
|
58
|
+
| undefined;
|
|
59
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
60
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
61
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeConnectionsHttpAuthSchemeProvider;
|
|
62
|
+
credentials?:
|
|
63
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
64
|
+
| import("@smithy/types").AwsCredentialIdentityProvider
|
|
65
|
+
| undefined;
|
|
66
|
+
signer?:
|
|
67
|
+
| import("@smithy/types").RequestSigner
|
|
68
|
+
| ((
|
|
69
|
+
authScheme?: import("@smithy/types").AuthScheme | undefined
|
|
70
|
+
) => Promise<import("@smithy/types").RequestSigner>)
|
|
71
|
+
| undefined;
|
|
72
|
+
signingEscapePath?: boolean | undefined;
|
|
73
|
+
systemClockOffset?: number | undefined;
|
|
74
|
+
signingRegion?: string | undefined;
|
|
75
|
+
signerConstructor?:
|
|
76
|
+
| (new (
|
|
77
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
78
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
79
|
+
) => import("@smithy/types").RequestSigner)
|
|
80
|
+
| undefined;
|
|
81
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { CodeConnectionsClientConfig } from "./CodeConnectionsClient";
|
|
2
|
+
export declare const getRuntimeConfig: (
|
|
3
|
+
config: CodeConnectionsClientConfig
|
|
4
|
+
) => {
|
|
5
|
+
apiVersion: string;
|
|
6
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
7
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
8
|
+
disableHostPrefix: boolean;
|
|
9
|
+
endpointProvider: (
|
|
10
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
11
|
+
context?: {
|
|
12
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
13
|
+
}
|
|
14
|
+
) => import("@smithy/types").EndpointV2;
|
|
15
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
16
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeConnectionsHttpAuthSchemeProvider;
|
|
17
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
18
|
+
logger: import("@smithy/types").Logger;
|
|
19
|
+
serviceId: string;
|
|
20
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
21
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
22
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
23
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { CodeConnectionsExtensionConfiguration } from "./extensionConfiguration";
|
|
2
|
+
export interface RuntimeExtension {
|
|
3
|
+
configure(
|
|
4
|
+
extensionConfiguration: CodeConnectionsExtensionConfiguration
|
|
5
|
+
): void;
|
|
6
|
+
}
|
|
7
|
+
export interface RuntimeExtensionsConfig {
|
|
8
|
+
extensions: RuntimeExtension[];
|
|
9
|
+
}
|
|
10
|
+
export declare const resolveRuntimeExtensions: (
|
|
11
|
+
runtimeConfig: any,
|
|
12
|
+
extensions: RuntimeExtension[]
|
|
13
|
+
) => any;
|