@aws-sdk/client-support-app 3.952.0 → 3.954.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +138 -99
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CreateSlackChannelConfigurationCommand.js +2 -2
- package/dist-es/commands/DeleteAccountAliasCommand.js +2 -2
- package/dist-es/commands/DeleteSlackChannelConfigurationCommand.js +2 -2
- package/dist-es/commands/DeleteSlackWorkspaceConfigurationCommand.js +2 -2
- package/dist-es/commands/GetAccountAliasCommand.js +2 -2
- package/dist-es/commands/ListSlackChannelConfigurationsCommand.js +2 -2
- package/dist-es/commands/ListSlackWorkspaceConfigurationsCommand.js +2 -2
- package/dist-es/commands/PutAccountAliasCommand.js +2 -2
- package/dist-es/commands/RegisterSlackWorkspaceForOrganizationCommand.js +2 -2
- package/dist-es/commands/UpdateSlackChannelConfigurationCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +70 -70
- package/dist-types/SupportAppClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +40 -42
- package/dist-types/ts3.4/SupportAppClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +39 -42
- package/package.json +34 -34
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateSlackChannelConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateSlackChannelConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateSlackChannelConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateSlackChannelConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SupportApp", "UpdateSlackChannelConfiguration", {})
|
|
13
13
|
.n("SupportAppClient", "UpdateSlackChannelConfigurationCommand")
|
|
14
|
-
.sc(UpdateSlackChannelConfiguration)
|
|
14
|
+
.sc(UpdateSlackChannelConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.supportapp",
|
|
29
|
+
version: "2021-08-20",
|
|
30
|
+
serviceTarget: "SupportApp",
|
|
31
|
+
},
|
|
27
32
|
serviceId: config?.serviceId ?? "Support App",
|
|
28
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
29
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
@@ -62,13 +62,13 @@ const _tI = "teamId";
|
|
|
62
62
|
const _tN = "teamName";
|
|
63
63
|
const n0 = "com.amazonaws.supportapp";
|
|
64
64
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
65
|
-
import { AccessDeniedException
|
|
66
|
-
import { SupportAppServiceException
|
|
67
|
-
export var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
68
|
-
TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
69
|
-
export var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
|
|
70
|
-
TypeRegistry.for(n0).registerError(ConflictException
|
|
71
|
-
export var CreateSlackChannelConfigurationRequest = [
|
|
65
|
+
import { AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ValidationException, } from "../models/errors";
|
|
66
|
+
import { SupportAppServiceException } from "../models/SupportAppServiceException";
|
|
67
|
+
export var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
68
|
+
TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
69
|
+
export var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
|
|
70
|
+
TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
71
|
+
export var CreateSlackChannelConfigurationRequest$ = [
|
|
72
72
|
3,
|
|
73
73
|
n0,
|
|
74
74
|
_CSCCR,
|
|
@@ -76,19 +76,19 @@ export var CreateSlackChannelConfigurationRequest = [
|
|
|
76
76
|
[_tI, _cI, _cN, _nOCORC, _nOACTC, _nORC, _nOCS, _cRA],
|
|
77
77
|
[0, 0, 0, 2, 2, 2, 0, 0],
|
|
78
78
|
];
|
|
79
|
-
export var CreateSlackChannelConfigurationResult = [3, n0, _CSCCRr, 0, [], []];
|
|
80
|
-
export var DeleteAccountAliasRequest = [3, n0, _DAAR, 0, [], []];
|
|
81
|
-
export var DeleteAccountAliasResult = [3, n0, _DAARe, 0, [], []];
|
|
82
|
-
export var DeleteSlackChannelConfigurationRequest = [3, n0, _DSCCR, 0, [_tI, _cI], [0, 0]];
|
|
83
|
-
export var DeleteSlackChannelConfigurationResult = [3, n0, _DSCCRe, 0, [], []];
|
|
84
|
-
export var DeleteSlackWorkspaceConfigurationRequest = [3, n0, _DSWCR, 0, [_tI], [0]];
|
|
85
|
-
export var DeleteSlackWorkspaceConfigurationResult = [3, n0, _DSWCRe, 0, [], []];
|
|
86
|
-
export var GetAccountAliasRequest = [3, n0, _GAAR, 0, [], []];
|
|
87
|
-
export var GetAccountAliasResult = [3, n0, _GAARe, 0, [_aA], [0]];
|
|
88
|
-
export var InternalServerException = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_m], [0]];
|
|
89
|
-
TypeRegistry.for(n0).registerError(InternalServerException
|
|
90
|
-
export var ListSlackChannelConfigurationsRequest = [3, n0, _LSCCR, 0, [_nT], [0]];
|
|
91
|
-
export var ListSlackChannelConfigurationsResult = [
|
|
79
|
+
export var CreateSlackChannelConfigurationResult$ = [3, n0, _CSCCRr, 0, [], []];
|
|
80
|
+
export var DeleteAccountAliasRequest$ = [3, n0, _DAAR, 0, [], []];
|
|
81
|
+
export var DeleteAccountAliasResult$ = [3, n0, _DAARe, 0, [], []];
|
|
82
|
+
export var DeleteSlackChannelConfigurationRequest$ = [3, n0, _DSCCR, 0, [_tI, _cI], [0, 0]];
|
|
83
|
+
export var DeleteSlackChannelConfigurationResult$ = [3, n0, _DSCCRe, 0, [], []];
|
|
84
|
+
export var DeleteSlackWorkspaceConfigurationRequest$ = [3, n0, _DSWCR, 0, [_tI], [0]];
|
|
85
|
+
export var DeleteSlackWorkspaceConfigurationResult$ = [3, n0, _DSWCRe, 0, [], []];
|
|
86
|
+
export var GetAccountAliasRequest$ = [3, n0, _GAAR, 0, [], []];
|
|
87
|
+
export var GetAccountAliasResult$ = [3, n0, _GAARe, 0, [_aA], [0]];
|
|
88
|
+
export var InternalServerException$ = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_m], [0]];
|
|
89
|
+
TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
90
|
+
export var ListSlackChannelConfigurationsRequest$ = [3, n0, _LSCCR, 0, [_nT], [0]];
|
|
91
|
+
export var ListSlackChannelConfigurationsResult$ = [
|
|
92
92
|
3,
|
|
93
93
|
n0,
|
|
94
94
|
_LSCCRi,
|
|
@@ -96,8 +96,8 @@ export var ListSlackChannelConfigurationsResult = [
|
|
|
96
96
|
[_nT, _sCC],
|
|
97
97
|
[0, () => slackChannelConfigurationList],
|
|
98
98
|
];
|
|
99
|
-
export var ListSlackWorkspaceConfigurationsRequest = [3, n0, _LSWCR, 0, [_nT], [0]];
|
|
100
|
-
export var ListSlackWorkspaceConfigurationsResult = [
|
|
99
|
+
export var ListSlackWorkspaceConfigurationsRequest$ = [3, n0, _LSWCR, 0, [_nT], [0]];
|
|
100
|
+
export var ListSlackWorkspaceConfigurationsResult$ = [
|
|
101
101
|
3,
|
|
102
102
|
n0,
|
|
103
103
|
_LSWCRi,
|
|
@@ -105,10 +105,10 @@ export var ListSlackWorkspaceConfigurationsResult = [
|
|
|
105
105
|
[_nT, _sWC],
|
|
106
106
|
[0, () => SlackWorkspaceConfigurationList],
|
|
107
107
|
];
|
|
108
|
-
export var PutAccountAliasRequest = [3, n0, _PAAR, 0, [_aA], [0]];
|
|
109
|
-
export var PutAccountAliasResult = [3, n0, _PAARu, 0, [], []];
|
|
110
|
-
export var RegisterSlackWorkspaceForOrganizationRequest = [3, n0, _RSWFOR, 0, [_tI], [0]];
|
|
111
|
-
export var RegisterSlackWorkspaceForOrganizationResult = [
|
|
108
|
+
export var PutAccountAliasRequest$ = [3, n0, _PAAR, 0, [_aA], [0]];
|
|
109
|
+
export var PutAccountAliasResult$ = [3, n0, _PAARu, 0, [], []];
|
|
110
|
+
export var RegisterSlackWorkspaceForOrganizationRequest$ = [3, n0, _RSWFOR, 0, [_tI], [0]];
|
|
111
|
+
export var RegisterSlackWorkspaceForOrganizationResult$ = [
|
|
112
112
|
3,
|
|
113
113
|
n0,
|
|
114
114
|
_RSWFORe,
|
|
@@ -116,11 +116,11 @@ export var RegisterSlackWorkspaceForOrganizationResult = [
|
|
|
116
116
|
[_tI, _tN, _aT],
|
|
117
117
|
[0, 0, 0],
|
|
118
118
|
];
|
|
119
|
-
export var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
|
|
120
|
-
TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
121
|
-
export var ServiceQuotaExceededException = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_m], [0]];
|
|
122
|
-
TypeRegistry.for(n0).registerError(ServiceQuotaExceededException
|
|
123
|
-
export var SlackChannelConfiguration = [
|
|
119
|
+
export var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
|
|
120
|
+
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
121
|
+
export var ServiceQuotaExceededException$ = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_m], [0]];
|
|
122
|
+
TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
123
|
+
export var SlackChannelConfiguration$ = [
|
|
124
124
|
3,
|
|
125
125
|
n0,
|
|
126
126
|
_SCC,
|
|
@@ -128,8 +128,8 @@ export var SlackChannelConfiguration = [
|
|
|
128
128
|
[_tI, _cI, _cN, _nOCORC, _nOACTC, _nORC, _nOCS, _cRA],
|
|
129
129
|
[0, 0, 0, 2, 2, 2, 0, 0],
|
|
130
130
|
];
|
|
131
|
-
export var SlackWorkspaceConfiguration = [3, n0, _SWC, 0, [_tI, _tN, _aOMA], [0, 0, 2]];
|
|
132
|
-
export var UpdateSlackChannelConfigurationRequest = [
|
|
131
|
+
export var SlackWorkspaceConfiguration$ = [3, n0, _SWC, 0, [_tI, _tN, _aOMA], [0, 0, 2]];
|
|
132
|
+
export var UpdateSlackChannelConfigurationRequest$ = [
|
|
133
133
|
3,
|
|
134
134
|
n0,
|
|
135
135
|
_USCCR,
|
|
@@ -137,7 +137,7 @@ export var UpdateSlackChannelConfigurationRequest = [
|
|
|
137
137
|
[_tI, _cI, _cN, _nOCORC, _nOACTC, _nORC, _nOCS, _cRA],
|
|
138
138
|
[0, 0, 0, 2, 2, 2, 0, 0],
|
|
139
139
|
];
|
|
140
|
-
export var UpdateSlackChannelConfigurationResult = [
|
|
140
|
+
export var UpdateSlackChannelConfigurationResult$ = [
|
|
141
141
|
3,
|
|
142
142
|
n0,
|
|
143
143
|
_USCCRp,
|
|
@@ -145,89 +145,89 @@ export var UpdateSlackChannelConfigurationResult = [
|
|
|
145
145
|
[_tI, _cI, _cN, _nOCORC, _nOACTC, _nORC, _nOCS, _cRA],
|
|
146
146
|
[0, 0, 0, 2, 2, 2, 0, 0],
|
|
147
147
|
];
|
|
148
|
-
export var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
149
|
-
TypeRegistry.for(n0).registerError(ValidationException
|
|
150
|
-
export var SupportAppServiceException = [-3, _sm, "SupportAppServiceException", 0, [], []];
|
|
151
|
-
TypeRegistry.for(_sm).registerError(SupportAppServiceException
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
export var CreateSlackChannelConfiguration = [
|
|
148
|
+
export var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
149
|
+
TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
150
|
+
export var SupportAppServiceException$ = [-3, _sm, "SupportAppServiceException", 0, [], []];
|
|
151
|
+
TypeRegistry.for(_sm).registerError(SupportAppServiceException$, SupportAppServiceException);
|
|
152
|
+
var slackChannelConfigurationList = [1, n0, _sCCL, 0, () => SlackChannelConfiguration$];
|
|
153
|
+
var SlackWorkspaceConfigurationList = [1, n0, _SWCL, 0, () => SlackWorkspaceConfiguration$];
|
|
154
|
+
export var CreateSlackChannelConfiguration$ = [
|
|
155
155
|
9,
|
|
156
156
|
n0,
|
|
157
157
|
_CSCC,
|
|
158
158
|
{ [_h]: ["POST", "/control/create-slack-channel-configuration", 200] },
|
|
159
|
-
() => CreateSlackChannelConfigurationRequest
|
|
160
|
-
() => CreateSlackChannelConfigurationResult
|
|
159
|
+
() => CreateSlackChannelConfigurationRequest$,
|
|
160
|
+
() => CreateSlackChannelConfigurationResult$,
|
|
161
161
|
];
|
|
162
|
-
export var DeleteAccountAlias = [
|
|
162
|
+
export var DeleteAccountAlias$ = [
|
|
163
163
|
9,
|
|
164
164
|
n0,
|
|
165
165
|
_DAA,
|
|
166
166
|
{ [_h]: ["POST", "/control/delete-account-alias", 200] },
|
|
167
|
-
() => DeleteAccountAliasRequest
|
|
168
|
-
() => DeleteAccountAliasResult
|
|
167
|
+
() => DeleteAccountAliasRequest$,
|
|
168
|
+
() => DeleteAccountAliasResult$,
|
|
169
169
|
];
|
|
170
|
-
export var DeleteSlackChannelConfiguration = [
|
|
170
|
+
export var DeleteSlackChannelConfiguration$ = [
|
|
171
171
|
9,
|
|
172
172
|
n0,
|
|
173
173
|
_DSCC,
|
|
174
174
|
{ [_h]: ["POST", "/control/delete-slack-channel-configuration", 200] },
|
|
175
|
-
() => DeleteSlackChannelConfigurationRequest
|
|
176
|
-
() => DeleteSlackChannelConfigurationResult
|
|
175
|
+
() => DeleteSlackChannelConfigurationRequest$,
|
|
176
|
+
() => DeleteSlackChannelConfigurationResult$,
|
|
177
177
|
];
|
|
178
|
-
export var DeleteSlackWorkspaceConfiguration = [
|
|
178
|
+
export var DeleteSlackWorkspaceConfiguration$ = [
|
|
179
179
|
9,
|
|
180
180
|
n0,
|
|
181
181
|
_DSWC,
|
|
182
182
|
{ [_h]: ["POST", "/control/delete-slack-workspace-configuration", 200] },
|
|
183
|
-
() => DeleteSlackWorkspaceConfigurationRequest
|
|
184
|
-
() => DeleteSlackWorkspaceConfigurationResult
|
|
183
|
+
() => DeleteSlackWorkspaceConfigurationRequest$,
|
|
184
|
+
() => DeleteSlackWorkspaceConfigurationResult$,
|
|
185
185
|
];
|
|
186
|
-
export var GetAccountAlias = [
|
|
186
|
+
export var GetAccountAlias$ = [
|
|
187
187
|
9,
|
|
188
188
|
n0,
|
|
189
189
|
_GAA,
|
|
190
190
|
{ [_h]: ["POST", "/control/get-account-alias", 200] },
|
|
191
|
-
() => GetAccountAliasRequest
|
|
192
|
-
() => GetAccountAliasResult
|
|
191
|
+
() => GetAccountAliasRequest$,
|
|
192
|
+
() => GetAccountAliasResult$,
|
|
193
193
|
];
|
|
194
|
-
export var ListSlackChannelConfigurations = [
|
|
194
|
+
export var ListSlackChannelConfigurations$ = [
|
|
195
195
|
9,
|
|
196
196
|
n0,
|
|
197
197
|
_LSCC,
|
|
198
198
|
{ [_h]: ["POST", "/control/list-slack-channel-configurations", 200] },
|
|
199
|
-
() => ListSlackChannelConfigurationsRequest
|
|
200
|
-
() => ListSlackChannelConfigurationsResult
|
|
199
|
+
() => ListSlackChannelConfigurationsRequest$,
|
|
200
|
+
() => ListSlackChannelConfigurationsResult$,
|
|
201
201
|
];
|
|
202
|
-
export var ListSlackWorkspaceConfigurations = [
|
|
202
|
+
export var ListSlackWorkspaceConfigurations$ = [
|
|
203
203
|
9,
|
|
204
204
|
n0,
|
|
205
205
|
_LSWC,
|
|
206
206
|
{ [_h]: ["POST", "/control/list-slack-workspace-configurations", 200] },
|
|
207
|
-
() => ListSlackWorkspaceConfigurationsRequest
|
|
208
|
-
() => ListSlackWorkspaceConfigurationsResult
|
|
207
|
+
() => ListSlackWorkspaceConfigurationsRequest$,
|
|
208
|
+
() => ListSlackWorkspaceConfigurationsResult$,
|
|
209
209
|
];
|
|
210
|
-
export var PutAccountAlias = [
|
|
210
|
+
export var PutAccountAlias$ = [
|
|
211
211
|
9,
|
|
212
212
|
n0,
|
|
213
213
|
_PAA,
|
|
214
214
|
{ [_h]: ["POST", "/control/put-account-alias", 200] },
|
|
215
|
-
() => PutAccountAliasRequest
|
|
216
|
-
() => PutAccountAliasResult
|
|
215
|
+
() => PutAccountAliasRequest$,
|
|
216
|
+
() => PutAccountAliasResult$,
|
|
217
217
|
];
|
|
218
|
-
export var RegisterSlackWorkspaceForOrganization = [
|
|
218
|
+
export var RegisterSlackWorkspaceForOrganization$ = [
|
|
219
219
|
9,
|
|
220
220
|
n0,
|
|
221
221
|
_RSWFO,
|
|
222
222
|
{ [_h]: ["POST", "/control/register-slack-workspace-for-organization", 200] },
|
|
223
|
-
() => RegisterSlackWorkspaceForOrganizationRequest
|
|
224
|
-
() => RegisterSlackWorkspaceForOrganizationResult
|
|
223
|
+
() => RegisterSlackWorkspaceForOrganizationRequest$,
|
|
224
|
+
() => RegisterSlackWorkspaceForOrganizationResult$,
|
|
225
225
|
];
|
|
226
|
-
export var UpdateSlackChannelConfiguration = [
|
|
226
|
+
export var UpdateSlackChannelConfiguration$ = [
|
|
227
227
|
9,
|
|
228
228
|
n0,
|
|
229
229
|
_USCC,
|
|
230
230
|
{ [_h]: ["POST", "/control/update-slack-channel-configuration", 200] },
|
|
231
|
-
() => UpdateSlackChannelConfigurationRequest
|
|
232
|
-
() => UpdateSlackChannelConfigurationResult
|
|
231
|
+
() => UpdateSlackChannelConfigurationRequest$,
|
|
232
|
+
() => UpdateSlackChannelConfigurationResult$,
|
|
233
233
|
];
|
|
@@ -5,7 +5,7 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
|
|
|
5
5
|
import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
|
|
8
|
-
import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ChecksumConstructor as __ChecksumConstructor, type
|
|
8
|
+
import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ChecksumConstructor as __ChecksumConstructor, type Decoder as __Decoder, type Encoder as __Encoder, type HashConstructor as __HashConstructor, type HttpHandlerOptions as __HttpHandlerOptions, type Logger as __Logger, type Provider as __Provider, type StreamCollector as __StreamCollector, type UrlParser as __UrlParser, AwsCredentialIdentityProvider, Provider, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { CreateSlackChannelConfigurationCommandInput, CreateSlackChannelConfigurationCommandOutput } from "./commands/CreateSlackChannelConfigurationCommand";
|
|
11
11
|
import { DeleteAccountAliasCommandInput, DeleteAccountAliasCommandOutput } from "./commands/DeleteAccountAliasCommand";
|
|
@@ -151,15 +151,6 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
151
151
|
* Optional extensions
|
|
152
152
|
*/
|
|
153
153
|
extensions?: RuntimeExtension[];
|
|
154
|
-
/**
|
|
155
|
-
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
156
|
-
* may be overridden. A default will always be set by the client.
|
|
157
|
-
* Available options depend on the service's supported protocols and will not be validated by
|
|
158
|
-
* the client.
|
|
159
|
-
* @alpha
|
|
160
|
-
*
|
|
161
|
-
*/
|
|
162
|
-
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
163
154
|
/**
|
|
164
155
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
165
156
|
*/
|
package/dist-types/index.d.ts
CHANGED
|
@@ -62,6 +62,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
62
62
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
63
63
|
export type { SupportAppExtensionConfiguration } from "./extensionConfiguration";
|
|
64
64
|
export * from "./commands";
|
|
65
|
+
export * from "./schemas/schemas_0";
|
|
65
66
|
export * from "./pagination";
|
|
66
67
|
export * from "./models/enums";
|
|
67
68
|
export * from "./models/errors";
|
|
@@ -17,8 +17,13 @@ export declare const getRuntimeConfig: (config: SupportAppClientConfig) => {
|
|
|
17
17
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
18
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
19
19
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
20
|
-
apiVersion: string;
|
|
21
20
|
cacheMiddleware?: boolean | undefined;
|
|
21
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
22
|
+
protocolSettings: {
|
|
23
|
+
defaultNamespace?: string;
|
|
24
|
+
[setting: string]: unknown;
|
|
25
|
+
};
|
|
26
|
+
apiVersion: string;
|
|
22
27
|
urlParser: import("@smithy/types").UrlParser;
|
|
23
28
|
base64Decoder: import("@smithy/types").Decoder;
|
|
24
29
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -29,7 +34,6 @@ export declare const getRuntimeConfig: (config: SupportAppClientConfig) => {
|
|
|
29
34
|
profile?: string;
|
|
30
35
|
logger: import("@smithy/types").Logger;
|
|
31
36
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
33
37
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
34
38
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
35
39
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -19,8 +19,13 @@ export declare const getRuntimeConfig: (config: SupportAppClientConfig) => {
|
|
|
19
19
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
20
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
22
|
-
apiVersion: string;
|
|
23
22
|
cacheMiddleware?: boolean | undefined;
|
|
23
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
24
|
+
protocolSettings: {
|
|
25
|
+
defaultNamespace?: string;
|
|
26
|
+
[setting: string]: unknown;
|
|
27
|
+
};
|
|
28
|
+
apiVersion: string;
|
|
24
29
|
urlParser: import("@smithy/types").UrlParser;
|
|
25
30
|
base64Decoder: import("@smithy/types").Decoder;
|
|
26
31
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -31,7 +36,6 @@ export declare const getRuntimeConfig: (config: SupportAppClientConfig) => {
|
|
|
31
36
|
profile?: string;
|
|
32
37
|
logger: import("@smithy/types").Logger;
|
|
33
38
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
35
39
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
36
40
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
37
41
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -6,8 +6,13 @@ export declare const getRuntimeConfig: (config: SupportAppClientConfig) => {
|
|
|
6
6
|
runtime: string;
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
8
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
|
-
apiVersion: string;
|
|
10
9
|
cacheMiddleware?: boolean;
|
|
10
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
11
|
+
protocolSettings: {
|
|
12
|
+
defaultNamespace?: string;
|
|
13
|
+
[setting: string]: unknown;
|
|
14
|
+
};
|
|
15
|
+
apiVersion: string;
|
|
11
16
|
urlParser: import("@smithy/types").UrlParser;
|
|
12
17
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
13
18
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -27,7 +32,6 @@ export declare const getRuntimeConfig: (config: SupportAppClientConfig) => {
|
|
|
27
32
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
33
|
logger: import("@smithy/types").Logger;
|
|
29
34
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
31
35
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
32
36
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
37
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
1
2
|
import type { SupportAppClientConfig } from "./SupportAppClient";
|
|
2
3
|
/**
|
|
3
4
|
* @internal
|
|
@@ -14,7 +15,11 @@ export declare const getRuntimeConfig: (config: SupportAppClientConfig) => {
|
|
|
14
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SupportAppHttpAuthSchemeProvider;
|
|
15
16
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
17
|
logger: import("@smithy/types").Logger;
|
|
17
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").
|
|
18
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof AwsRestJsonProtocol;
|
|
19
|
+
protocolSettings: {
|
|
20
|
+
[setting: string]: unknown;
|
|
21
|
+
defaultNamespace?: string;
|
|
22
|
+
};
|
|
18
23
|
serviceId: string;
|
|
19
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
20
25
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -1,42 +1,40 @@
|
|
|
1
|
-
import type { StaticErrorSchema,
|
|
2
|
-
export declare var AccessDeniedException
|
|
3
|
-
export declare var ConflictException
|
|
4
|
-
export declare var CreateSlackChannelConfigurationRequest
|
|
5
|
-
export declare var CreateSlackChannelConfigurationResult
|
|
6
|
-
export declare var DeleteAccountAliasRequest
|
|
7
|
-
export declare var DeleteAccountAliasResult
|
|
8
|
-
export declare var DeleteSlackChannelConfigurationRequest
|
|
9
|
-
export declare var DeleteSlackChannelConfigurationResult
|
|
10
|
-
export declare var DeleteSlackWorkspaceConfigurationRequest
|
|
11
|
-
export declare var DeleteSlackWorkspaceConfigurationResult
|
|
12
|
-
export declare var GetAccountAliasRequest
|
|
13
|
-
export declare var GetAccountAliasResult
|
|
14
|
-
export declare var InternalServerException
|
|
15
|
-
export declare var ListSlackChannelConfigurationsRequest
|
|
16
|
-
export declare var ListSlackChannelConfigurationsResult
|
|
17
|
-
export declare var ListSlackWorkspaceConfigurationsRequest
|
|
18
|
-
export declare var ListSlackWorkspaceConfigurationsResult
|
|
19
|
-
export declare var PutAccountAliasRequest
|
|
20
|
-
export declare var PutAccountAliasResult
|
|
21
|
-
export declare var RegisterSlackWorkspaceForOrganizationRequest
|
|
22
|
-
export declare var RegisterSlackWorkspaceForOrganizationResult
|
|
23
|
-
export declare var ResourceNotFoundException
|
|
24
|
-
export declare var ServiceQuotaExceededException
|
|
25
|
-
export declare var SlackChannelConfiguration
|
|
26
|
-
export declare var SlackWorkspaceConfiguration
|
|
27
|
-
export declare var UpdateSlackChannelConfigurationRequest
|
|
28
|
-
export declare var UpdateSlackChannelConfigurationResult
|
|
29
|
-
export declare var ValidationException
|
|
30
|
-
export declare var SupportAppServiceException
|
|
31
|
-
export declare var
|
|
32
|
-
export declare var
|
|
33
|
-
export declare var
|
|
34
|
-
export declare var
|
|
35
|
-
export declare var
|
|
36
|
-
export declare var
|
|
37
|
-
export declare var
|
|
38
|
-
export declare var
|
|
39
|
-
export declare var
|
|
40
|
-
export declare var
|
|
41
|
-
export declare var RegisterSlackWorkspaceForOrganization: StaticOperationSchema;
|
|
42
|
-
export declare var UpdateSlackChannelConfiguration: StaticOperationSchema;
|
|
1
|
+
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
3
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
4
|
+
export declare var CreateSlackChannelConfigurationRequest$: StaticStructureSchema;
|
|
5
|
+
export declare var CreateSlackChannelConfigurationResult$: StaticStructureSchema;
|
|
6
|
+
export declare var DeleteAccountAliasRequest$: StaticStructureSchema;
|
|
7
|
+
export declare var DeleteAccountAliasResult$: StaticStructureSchema;
|
|
8
|
+
export declare var DeleteSlackChannelConfigurationRequest$: StaticStructureSchema;
|
|
9
|
+
export declare var DeleteSlackChannelConfigurationResult$: StaticStructureSchema;
|
|
10
|
+
export declare var DeleteSlackWorkspaceConfigurationRequest$: StaticStructureSchema;
|
|
11
|
+
export declare var DeleteSlackWorkspaceConfigurationResult$: StaticStructureSchema;
|
|
12
|
+
export declare var GetAccountAliasRequest$: StaticStructureSchema;
|
|
13
|
+
export declare var GetAccountAliasResult$: StaticStructureSchema;
|
|
14
|
+
export declare var InternalServerException$: StaticErrorSchema;
|
|
15
|
+
export declare var ListSlackChannelConfigurationsRequest$: StaticStructureSchema;
|
|
16
|
+
export declare var ListSlackChannelConfigurationsResult$: StaticStructureSchema;
|
|
17
|
+
export declare var ListSlackWorkspaceConfigurationsRequest$: StaticStructureSchema;
|
|
18
|
+
export declare var ListSlackWorkspaceConfigurationsResult$: StaticStructureSchema;
|
|
19
|
+
export declare var PutAccountAliasRequest$: StaticStructureSchema;
|
|
20
|
+
export declare var PutAccountAliasResult$: StaticStructureSchema;
|
|
21
|
+
export declare var RegisterSlackWorkspaceForOrganizationRequest$: StaticStructureSchema;
|
|
22
|
+
export declare var RegisterSlackWorkspaceForOrganizationResult$: StaticStructureSchema;
|
|
23
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
24
|
+
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
25
|
+
export declare var SlackChannelConfiguration$: StaticStructureSchema;
|
|
26
|
+
export declare var SlackWorkspaceConfiguration$: StaticStructureSchema;
|
|
27
|
+
export declare var UpdateSlackChannelConfigurationRequest$: StaticStructureSchema;
|
|
28
|
+
export declare var UpdateSlackChannelConfigurationResult$: StaticStructureSchema;
|
|
29
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
30
|
+
export declare var SupportAppServiceException$: StaticErrorSchema;
|
|
31
|
+
export declare var CreateSlackChannelConfiguration$: StaticOperationSchema;
|
|
32
|
+
export declare var DeleteAccountAlias$: StaticOperationSchema;
|
|
33
|
+
export declare var DeleteSlackChannelConfiguration$: StaticOperationSchema;
|
|
34
|
+
export declare var DeleteSlackWorkspaceConfiguration$: StaticOperationSchema;
|
|
35
|
+
export declare var GetAccountAlias$: StaticOperationSchema;
|
|
36
|
+
export declare var ListSlackChannelConfigurations$: StaticOperationSchema;
|
|
37
|
+
export declare var ListSlackWorkspaceConfigurations$: StaticOperationSchema;
|
|
38
|
+
export declare var PutAccountAlias$: StaticOperationSchema;
|
|
39
|
+
export declare var RegisterSlackWorkspaceForOrganization$: StaticOperationSchema;
|
|
40
|
+
export declare var UpdateSlackChannelConfiguration$: StaticOperationSchema;
|
|
@@ -29,13 +29,10 @@ import {
|
|
|
29
29
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
30
30
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
31
31
|
ChecksumConstructor as __ChecksumConstructor,
|
|
32
|
-
ClientProtocol,
|
|
33
32
|
Decoder as __Decoder,
|
|
34
33
|
Encoder as __Encoder,
|
|
35
34
|
HashConstructor as __HashConstructor,
|
|
36
35
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
-
HttpRequest,
|
|
38
|
-
HttpResponse,
|
|
39
36
|
Logger as __Logger,
|
|
40
37
|
Provider as __Provider,
|
|
41
38
|
StreamCollector as __StreamCollector,
|
|
@@ -141,7 +138,6 @@ export interface ClientDefaults
|
|
|
141
138
|
retryMode?: string | __Provider<string>;
|
|
142
139
|
logger?: __Logger;
|
|
143
140
|
extensions?: RuntimeExtension[];
|
|
144
|
-
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
145
141
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
146
142
|
}
|
|
147
143
|
export type SupportAppClientConfigType = Partial<
|
|
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { SupportAppExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
|
+
export * from "./schemas/schemas_0";
|
|
7
8
|
export * from "./pagination";
|
|
8
9
|
export * from "./models/enums";
|
|
9
10
|
export * from "./models/errors";
|
|
@@ -26,8 +26,16 @@ export declare const getRuntimeConfig: (config: SupportAppClientConfig) => {
|
|
|
26
26
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
27
27
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
28
28
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
29
|
-
apiVersion: string;
|
|
30
29
|
cacheMiddleware?: boolean | undefined;
|
|
30
|
+
protocol:
|
|
31
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
32
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
33
|
+
| typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
34
|
+
protocolSettings: {
|
|
35
|
+
defaultNamespace?: string;
|
|
36
|
+
[setting: string]: unknown;
|
|
37
|
+
};
|
|
38
|
+
apiVersion: string;
|
|
31
39
|
urlParser: import("@smithy/types").UrlParser;
|
|
32
40
|
base64Decoder: import("@smithy/types").Decoder;
|
|
33
41
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -38,10 +46,6 @@ export declare const getRuntimeConfig: (config: SupportAppClientConfig) => {
|
|
|
38
46
|
profile?: string;
|
|
39
47
|
logger: import("@smithy/types").Logger;
|
|
40
48
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
-
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
-
import("@smithy/types").HttpRequest,
|
|
43
|
-
import("@smithy/types").HttpResponse
|
|
44
|
-
>;
|
|
45
49
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
46
50
|
userAgentAppId?:
|
|
47
51
|
| string
|
|
@@ -26,8 +26,16 @@ export declare const getRuntimeConfig: (config: SupportAppClientConfig) => {
|
|
|
26
26
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
27
27
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
28
28
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
29
|
-
apiVersion: string;
|
|
30
29
|
cacheMiddleware?: boolean | undefined;
|
|
30
|
+
protocol:
|
|
31
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
32
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
33
|
+
| typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
34
|
+
protocolSettings: {
|
|
35
|
+
defaultNamespace?: string;
|
|
36
|
+
[setting: string]: unknown;
|
|
37
|
+
};
|
|
38
|
+
apiVersion: string;
|
|
31
39
|
urlParser: import("@smithy/types").UrlParser;
|
|
32
40
|
base64Decoder: import("@smithy/types").Decoder;
|
|
33
41
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -38,10 +46,6 @@ export declare const getRuntimeConfig: (config: SupportAppClientConfig) => {
|
|
|
38
46
|
profile?: string;
|
|
39
47
|
logger: import("@smithy/types").Logger;
|
|
40
48
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
-
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
-
import("@smithy/types").HttpRequest,
|
|
43
|
-
import("@smithy/types").HttpResponse
|
|
44
|
-
>;
|
|
45
49
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
46
50
|
retryStrategy?:
|
|
47
51
|
| import("@smithy/types").RetryStrategy
|
|
@@ -8,8 +8,16 @@ export declare const getRuntimeConfig: (config: SupportAppClientConfig) => {
|
|
|
8
8
|
| Record<string, unknown>
|
|
9
9
|
| import("@smithy/protocol-http").HttpHandler<any>
|
|
10
10
|
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
11
|
-
apiVersion: string;
|
|
12
11
|
cacheMiddleware?: boolean;
|
|
12
|
+
protocol:
|
|
13
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
14
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
15
|
+
| typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
16
|
+
protocolSettings: {
|
|
17
|
+
defaultNamespace?: string;
|
|
18
|
+
[setting: string]: unknown;
|
|
19
|
+
};
|
|
20
|
+
apiVersion: string;
|
|
13
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
14
22
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
15
23
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -37,10 +45,6 @@ export declare const getRuntimeConfig: (config: SupportAppClientConfig) => {
|
|
|
37
45
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
46
|
logger: import("@smithy/types").Logger;
|
|
39
47
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
40
|
-
protocol: import("@smithy/types").ClientProtocol<
|
|
41
|
-
import("@smithy/types").HttpRequest,
|
|
42
|
-
import("@smithy/types").HttpResponse
|
|
43
|
-
>;
|
|
44
48
|
defaultsMode:
|
|
45
49
|
| import("@smithy/smithy-client").DefaultsMode
|
|
46
50
|
| import("@smithy/types").Provider<
|