@aws-sdk/client-signin 3.1065.0 → 3.1067.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/README.md +56 -7
- package/dist-cjs/endpoint/bdd.js +70 -35
- package/dist-cjs/endpoint/endpointResolver.js +1 -1
- package/dist-cjs/index.js +133 -2
- package/dist-cjs/models/errors.js +46 -1
- package/dist-cjs/schemas/schemas_0.js +202 -1
- package/dist-es/Signin.js +19 -1
- package/dist-es/commands/CreateOAuth2TokenCommand.js +4 -1
- package/dist-es/commands/DeleteConsoleAuthorizationConfigurationCommand.js +19 -0
- package/dist-es/commands/DeleteResourcePermissionStatementCommand.js +19 -0
- package/dist-es/commands/GetConsoleAuthorizationConfigurationCommand.js +19 -0
- package/dist-es/commands/GetResourcePolicyCommand.js +19 -0
- package/dist-es/commands/ListResourcePermissionStatementsCommand.js +19 -0
- package/dist-es/commands/PutConsoleAuthorizationConfigurationCommand.js +19 -0
- package/dist-es/commands/PutResourcePermissionStatementCommand.js +19 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/endpoint/bdd.js +70 -35
- package/dist-es/endpoint/endpointResolver.js +1 -1
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +3 -0
- package/dist-es/models/errors.js +42 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListResourcePermissionStatementsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +202 -1
- package/dist-types/Signin.d.ts +63 -1
- package/dist-types/SigninClient.d.ts +9 -2
- package/dist-types/commands/CreateOAuth2TokenCommand.d.ts +3 -3
- package/dist-types/commands/DeleteConsoleAuthorizationConfigurationCommand.d.ts +124 -0
- package/dist-types/commands/DeleteResourcePermissionStatementCommand.d.ts +121 -0
- package/dist-types/commands/GetConsoleAuthorizationConfigurationCommand.d.ts +124 -0
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +133 -0
- package/dist-types/commands/ListResourcePermissionStatementsCommand.d.ts +135 -0
- package/dist-types/commands/PutConsoleAuthorizationConfigurationCommand.d.ts +131 -0
- package/dist-types/commands/PutResourcePermissionStatementCommand.d.ts +136 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +12 -0
- package/dist-types/models/errors.d.ts +66 -0
- package/dist-types/models/models_0.d.ts +288 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListResourcePermissionStatementsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/schemas/schemas_0.d.ts +27 -0
- package/dist-types/ts3.4/Signin.d.ts +161 -1
- package/dist-types/ts3.4/SigninClient.d.ts +46 -2
- package/dist-types/ts3.4/commands/CreateOAuth2TokenCommand.d.ts +9 -5
- package/dist-types/ts3.4/commands/DeleteConsoleAuthorizationConfigurationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DeleteResourcePermissionStatementCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetConsoleAuthorizationConfigurationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/ListResourcePermissionStatementsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/PutConsoleAuthorizationConfigurationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/PutResourcePermissionStatementCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +3 -0
- package/dist-types/ts3.4/models/errors.d.ts +22 -0
- package/dist-types/ts3.4/models/models_0.d.ts +69 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
- package/dist-types/ts3.4/pagination/ListResourcePermissionStatementsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +27 -0
- package/package.json +4 -4
package/dist-es/models/errors.js
CHANGED
|
@@ -13,6 +13,20 @@ export class AccessDeniedException extends __BaseException {
|
|
|
13
13
|
this.error = opts.error;
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
|
+
export class ConflictException extends __BaseException {
|
|
17
|
+
name = "ConflictException";
|
|
18
|
+
$fault = "client";
|
|
19
|
+
error;
|
|
20
|
+
constructor(opts) {
|
|
21
|
+
super({
|
|
22
|
+
name: "ConflictException",
|
|
23
|
+
$fault: "client",
|
|
24
|
+
...opts,
|
|
25
|
+
});
|
|
26
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
27
|
+
this.error = opts.error;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
16
30
|
export class InternalServerException extends __BaseException {
|
|
17
31
|
name = "InternalServerException";
|
|
18
32
|
$fault = "server";
|
|
@@ -55,3 +69,31 @@ export class ValidationException extends __BaseException {
|
|
|
55
69
|
this.error = opts.error;
|
|
56
70
|
}
|
|
57
71
|
}
|
|
72
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
73
|
+
name = "ResourceNotFoundException";
|
|
74
|
+
$fault = "client";
|
|
75
|
+
error;
|
|
76
|
+
constructor(opts) {
|
|
77
|
+
super({
|
|
78
|
+
name: "ResourceNotFoundException",
|
|
79
|
+
$fault: "client",
|
|
80
|
+
...opts,
|
|
81
|
+
});
|
|
82
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
83
|
+
this.error = opts.error;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
export class ServiceQuotaExceededException extends __BaseException {
|
|
87
|
+
name = "ServiceQuotaExceededException";
|
|
88
|
+
$fault = "client";
|
|
89
|
+
error;
|
|
90
|
+
constructor(opts) {
|
|
91
|
+
super({
|
|
92
|
+
name: "ServiceQuotaExceededException",
|
|
93
|
+
$fault: "client",
|
|
94
|
+
...opts,
|
|
95
|
+
});
|
|
96
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
97
|
+
this.error = opts.error;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListResourcePermissionStatementsCommand, } from "../commands/ListResourcePermissionStatementsCommand";
|
|
3
|
+
import { SigninClient } from "../SigninClient";
|
|
4
|
+
export const paginateListResourcePermissionStatements = createPaginator(SigninClient, ListResourcePermissionStatementsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -1,40 +1,101 @@
|
|
|
1
|
+
const _A = "Action";
|
|
1
2
|
const _ADE = "AccessDeniedException";
|
|
2
3
|
const _AT = "AccessToken";
|
|
4
|
+
const _C = "Condition";
|
|
5
|
+
const _CB = "ConditionBlock";
|
|
6
|
+
const _CE = "ConflictException";
|
|
3
7
|
const _COAT = "CreateOAuth2Token";
|
|
4
8
|
const _COATR = "CreateOAuth2TokenRequest";
|
|
5
9
|
const _COATRB = "CreateOAuth2TokenRequestBody";
|
|
6
10
|
const _COATRBr = "CreateOAuth2TokenResponseBody";
|
|
7
11
|
const _COATRr = "CreateOAuth2TokenResponse";
|
|
12
|
+
const _DCAC = "DeleteConsoleAuthorizationConfiguration";
|
|
13
|
+
const _DCACI = "DeleteConsoleAuthorizationConfigurationInput";
|
|
14
|
+
const _DCACO = "DeleteConsoleAuthorizationConfigurationOutput";
|
|
15
|
+
const _DRPS = "DeleteResourcePermissionStatement";
|
|
16
|
+
const _DRPSI = "DeleteResourcePermissionStatementInput";
|
|
17
|
+
const _DRPSO = "DeleteResourcePermissionStatementOutput";
|
|
18
|
+
const _E = "Effect";
|
|
19
|
+
const _GCAC = "GetConsoleAuthorizationConfiguration";
|
|
20
|
+
const _GCACI = "GetConsoleAuthorizationConfigurationInput";
|
|
21
|
+
const _GCACO = "GetConsoleAuthorizationConfigurationOutput";
|
|
22
|
+
const _GRP = "GetResourcePolicy";
|
|
23
|
+
const _GRPI = "GetResourcePolicyInput";
|
|
24
|
+
const _GRPO = "GetResourcePolicyOutput";
|
|
8
25
|
const _ISE = "InternalServerException";
|
|
26
|
+
const _LRPS = "ListResourcePermissionStatements";
|
|
27
|
+
const _LRPSI = "ListResourcePermissionStatementsInput";
|
|
28
|
+
const _LRPSO = "ListResourcePermissionStatementsOutput";
|
|
29
|
+
const _P = "Principal";
|
|
30
|
+
const _PCAC = "PutConsoleAuthorizationConfiguration";
|
|
31
|
+
const _PCACI = "PutConsoleAuthorizationConfigurationInput";
|
|
32
|
+
const _PCACO = "PutConsoleAuthorizationConfigurationOutput";
|
|
33
|
+
const _PRPS = "PutResourcePermissionStatement";
|
|
34
|
+
const _PRPSI = "PutResourcePermissionStatementInput";
|
|
35
|
+
const _PRPSO = "PutResourcePermissionStatementOutput";
|
|
36
|
+
const _PS = "PolicyStatement";
|
|
37
|
+
const _PSS = "PermissionStatementSummary";
|
|
38
|
+
const _PSSe = "PermissionStatementSummaries";
|
|
39
|
+
const _PSo = "PolicyStatements";
|
|
40
|
+
const _R = "Resource";
|
|
41
|
+
const _RNFE = "ResourceNotFoundException";
|
|
9
42
|
const _RT = "RefreshToken";
|
|
43
|
+
const _S = "Statement";
|
|
44
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
45
|
+
const _SRBP = "SigninResourceBasedPolicy";
|
|
10
46
|
const _TMRE = "TooManyRequestsError";
|
|
47
|
+
const _V = "Version";
|
|
11
48
|
const _VE = "ValidationException";
|
|
49
|
+
const _a = "action";
|
|
12
50
|
const _aKI = "accessKeyId";
|
|
13
51
|
const _aT = "accessToken";
|
|
14
52
|
const _c = "client";
|
|
53
|
+
const _cAE = "consoleAuthorizationEnabled";
|
|
15
54
|
const _cI = "clientId";
|
|
55
|
+
const _cSV = "consoleSourceVpce";
|
|
56
|
+
const _cT = "clientToken";
|
|
16
57
|
const _cV = "codeVerifier";
|
|
17
58
|
const _co = "code";
|
|
59
|
+
const _con = "condition";
|
|
18
60
|
const _e = "error";
|
|
19
61
|
const _eI = "expiresIn";
|
|
62
|
+
const _eP = "excludedPrincipal";
|
|
63
|
+
const _ef = "effect";
|
|
20
64
|
const _gT = "grantType";
|
|
21
65
|
const _h = "http";
|
|
22
66
|
const _hE = "httpError";
|
|
23
67
|
const _iT = "idToken";
|
|
24
68
|
const _jN = "jsonName";
|
|
25
69
|
const _m = "message";
|
|
70
|
+
const _mR = "maxResults";
|
|
71
|
+
const _nT = "nextToken";
|
|
72
|
+
const _p = "principal";
|
|
73
|
+
const _pS = "permissionStatements";
|
|
74
|
+
const _r = "resource";
|
|
75
|
+
const _rR = "requestedRegion";
|
|
26
76
|
const _rT = "refreshToken";
|
|
27
77
|
const _rU = "redirectUri";
|
|
28
78
|
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.signin";
|
|
29
79
|
const _sAK = "secretAccessKey";
|
|
80
|
+
const _sI = "statementId";
|
|
81
|
+
const _sIo = "sourceIp";
|
|
82
|
+
const _sRBP = "signinResourceBasedPolicy";
|
|
83
|
+
const _sSV = "signinSourceVpce";
|
|
30
84
|
const _sT = "sessionToken";
|
|
85
|
+
const _sV = "sourceVpc";
|
|
86
|
+
const _sc = "scope";
|
|
31
87
|
const _se = "server";
|
|
88
|
+
const _si = "sid";
|
|
89
|
+
const _st = "statement";
|
|
32
90
|
const _tI = "tokenInput";
|
|
91
|
+
const _tIa = "targetId";
|
|
33
92
|
const _tO = "tokenOutput";
|
|
34
93
|
const _tT = "tokenType";
|
|
94
|
+
const _v = "version";
|
|
95
|
+
const _vSI = "vpcSourceIp";
|
|
35
96
|
const n0 = "com.amazonaws.signin";
|
|
36
97
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
37
|
-
import { AccessDeniedException, InternalServerException, TooManyRequestsError, ValidationException, } from "../models/errors";
|
|
98
|
+
import { AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, TooManyRequestsError, ValidationException, } from "../models/errors";
|
|
38
99
|
import { SigninServiceException } from "../models/SigninServiceException";
|
|
39
100
|
const _s_registry = TypeRegistry.for(_s);
|
|
40
101
|
export var SigninServiceException$ = [-3, _s, "SigninServiceException", 0, [], []];
|
|
@@ -46,12 +107,30 @@ export var AccessDeniedException$ = [-3, n0, _ADE,
|
|
|
46
107
|
[0, 0], 2
|
|
47
108
|
];
|
|
48
109
|
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
110
|
+
export var ConflictException$ = [-3, n0, _CE,
|
|
111
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
112
|
+
[_e, _m],
|
|
113
|
+
[0, 0], 2
|
|
114
|
+
];
|
|
115
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
49
116
|
export var InternalServerException$ = [-3, n0, _ISE,
|
|
50
117
|
{ [_e]: _se, [_hE]: 500 },
|
|
51
118
|
[_e, _m],
|
|
52
119
|
[0, 0], 2
|
|
53
120
|
];
|
|
54
121
|
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
122
|
+
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
123
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
124
|
+
[_e, _m],
|
|
125
|
+
[0, 0], 2
|
|
126
|
+
];
|
|
127
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
128
|
+
export var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
129
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
130
|
+
[_e, _m],
|
|
131
|
+
[0, 0], 2
|
|
132
|
+
];
|
|
133
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
55
134
|
export var TooManyRequestsError$ = [-3, n0, _TMRE,
|
|
56
135
|
{ [_e]: _c, [_hE]: 429 },
|
|
57
136
|
[_e, _m],
|
|
@@ -94,6 +173,128 @@ export var CreateOAuth2TokenResponseBody$ = [3, n0, _COATRBr,
|
|
|
94
173
|
[_aT, _tT, _eI, _rT, _iT],
|
|
95
174
|
[[() => AccessToken$, { [_jN]: _aT }], [0, { [_jN]: _tT }], [1, { [_jN]: _eI }], [() => RefreshToken, { [_jN]: _rT }], [0, { [_jN]: _iT }]], 4
|
|
96
175
|
];
|
|
176
|
+
export var DeleteConsoleAuthorizationConfigurationInput$ = [3, n0, _DCACI,
|
|
177
|
+
0,
|
|
178
|
+
[_tIa],
|
|
179
|
+
[0]
|
|
180
|
+
];
|
|
181
|
+
export var DeleteConsoleAuthorizationConfigurationOutput$ = [3, n0, _DCACO,
|
|
182
|
+
0,
|
|
183
|
+
[_tIa, _sc, _cAE],
|
|
184
|
+
[0, 0, 2], 3
|
|
185
|
+
];
|
|
186
|
+
export var DeleteResourcePermissionStatementInput$ = [3, n0, _DRPSI,
|
|
187
|
+
0,
|
|
188
|
+
[_sI, _cT],
|
|
189
|
+
[0, [0, 4]], 1
|
|
190
|
+
];
|
|
191
|
+
export var DeleteResourcePermissionStatementOutput$ = [3, n0, _DRPSO,
|
|
192
|
+
0,
|
|
193
|
+
[],
|
|
194
|
+
[]
|
|
195
|
+
];
|
|
196
|
+
export var GetConsoleAuthorizationConfigurationInput$ = [3, n0, _GCACI,
|
|
197
|
+
0,
|
|
198
|
+
[_tIa],
|
|
199
|
+
[0]
|
|
200
|
+
];
|
|
201
|
+
export var GetConsoleAuthorizationConfigurationOutput$ = [3, n0, _GCACO,
|
|
202
|
+
0,
|
|
203
|
+
[_tIa, _sc, _cAE],
|
|
204
|
+
[0, 0, 2], 3
|
|
205
|
+
];
|
|
206
|
+
export var GetResourcePolicyInput$ = [3, n0, _GRPI,
|
|
207
|
+
0,
|
|
208
|
+
[],
|
|
209
|
+
[]
|
|
210
|
+
];
|
|
211
|
+
export var GetResourcePolicyOutput$ = [3, n0, _GRPO,
|
|
212
|
+
0,
|
|
213
|
+
[_sRBP],
|
|
214
|
+
[[() => SigninResourceBasedPolicy$, 0]], 1
|
|
215
|
+
];
|
|
216
|
+
export var ListResourcePermissionStatementsInput$ = [3, n0, _LRPSI,
|
|
217
|
+
0,
|
|
218
|
+
[_mR, _nT],
|
|
219
|
+
[1, 0]
|
|
220
|
+
];
|
|
221
|
+
export var ListResourcePermissionStatementsOutput$ = [3, n0, _LRPSO,
|
|
222
|
+
0,
|
|
223
|
+
[_pS, _nT],
|
|
224
|
+
[() => PermissionStatementSummaries, 0], 1
|
|
225
|
+
];
|
|
226
|
+
export var PermissionStatementSummary$ = [3, n0, _PSS,
|
|
227
|
+
0,
|
|
228
|
+
[_si, _con],
|
|
229
|
+
[0, [2, n0, _CB, 0, 0, [2, n0, _C, 0, 0, 64 | 0]]], 1
|
|
230
|
+
];
|
|
231
|
+
export var PolicyStatement$ = [3, n0, _PS,
|
|
232
|
+
0,
|
|
233
|
+
[_ef, _p, _a, _r, _con],
|
|
234
|
+
[[0, { [_jN]: _E }], [128 | 0, { [_jN]: _P }], [64 | 0, { [_jN]: _A }], [0, { [_jN]: _R }], [[2, n0, _CB, 0, 0, [2, n0, _C, 0, 0, 64 | 0]], { [_jN]: _C }]]
|
|
235
|
+
];
|
|
236
|
+
export var PutConsoleAuthorizationConfigurationInput$ = [3, n0, _PCACI,
|
|
237
|
+
0,
|
|
238
|
+
[_tIa],
|
|
239
|
+
[0]
|
|
240
|
+
];
|
|
241
|
+
export var PutConsoleAuthorizationConfigurationOutput$ = [3, n0, _PCACO,
|
|
242
|
+
0,
|
|
243
|
+
[_tIa, _sc, _cAE],
|
|
244
|
+
[0, 0, 2], 3
|
|
245
|
+
];
|
|
246
|
+
export var PutResourcePermissionStatementInput$ = [3, n0, _PRPSI,
|
|
247
|
+
0,
|
|
248
|
+
[_sV, _sSV, _cSV, _vSI, _sIo, _rR, _eP, _cT],
|
|
249
|
+
[0, 0, 0, 0, 0, 0, 0, [0, 4]]
|
|
250
|
+
];
|
|
251
|
+
export var PutResourcePermissionStatementOutput$ = [3, n0, _PRPSO,
|
|
252
|
+
0,
|
|
253
|
+
[_sI],
|
|
254
|
+
[0], 1
|
|
255
|
+
];
|
|
256
|
+
export var SigninResourceBasedPolicy$ = [3, n0, _SRBP,
|
|
257
|
+
0,
|
|
258
|
+
[_v, _st],
|
|
259
|
+
[[0, { [_jN]: _V }], [() => PolicyStatements, { [_jN]: _S }]]
|
|
260
|
+
];
|
|
261
|
+
var ConditionValues = 64 | 0;
|
|
262
|
+
var PermissionStatementSummaries = [1, n0, _PSSe,
|
|
263
|
+
0, () => PermissionStatementSummary$
|
|
264
|
+
];
|
|
265
|
+
var PolicyActions = 64 | 0;
|
|
266
|
+
var PolicyStatements = [1, n0, _PSo,
|
|
267
|
+
0, [() => PolicyStatement$,
|
|
268
|
+
0]
|
|
269
|
+
];
|
|
270
|
+
var Condition = [2, n0, _C,
|
|
271
|
+
0, 0, 64 | 0
|
|
272
|
+
];
|
|
273
|
+
var ConditionBlock = [2, n0, _CB,
|
|
274
|
+
0, 0, [2, n0, _C, 0, 0, 64 | 0]
|
|
275
|
+
];
|
|
276
|
+
var Principal = 128 | 0;
|
|
97
277
|
export var CreateOAuth2Token$ = [9, n0, _COAT,
|
|
98
278
|
{ [_h]: ["POST", "/v1/token", 200] }, () => CreateOAuth2TokenRequest$, () => CreateOAuth2TokenResponse$
|
|
99
279
|
];
|
|
280
|
+
export var DeleteConsoleAuthorizationConfiguration$ = [9, n0, _DCAC,
|
|
281
|
+
{ [_h]: ["POST", "/delete-console-authorization-configuration", 200] }, () => DeleteConsoleAuthorizationConfigurationInput$, () => DeleteConsoleAuthorizationConfigurationOutput$
|
|
282
|
+
];
|
|
283
|
+
export var DeleteResourcePermissionStatement$ = [9, n0, _DRPS,
|
|
284
|
+
{ [_h]: ["POST", "/delete-resource-permission-statement", 200] }, () => DeleteResourcePermissionStatementInput$, () => DeleteResourcePermissionStatementOutput$
|
|
285
|
+
];
|
|
286
|
+
export var GetConsoleAuthorizationConfiguration$ = [9, n0, _GCAC,
|
|
287
|
+
{ [_h]: ["POST", "/get-console-authorization-configuration", 200] }, () => GetConsoleAuthorizationConfigurationInput$, () => GetConsoleAuthorizationConfigurationOutput$
|
|
288
|
+
];
|
|
289
|
+
export var GetResourcePolicy$ = [9, n0, _GRP,
|
|
290
|
+
{ [_h]: ["POST", "/get-resource-policy", 200] }, () => GetResourcePolicyInput$, () => GetResourcePolicyOutput$
|
|
291
|
+
];
|
|
292
|
+
export var ListResourcePermissionStatements$ = [9, n0, _LRPS,
|
|
293
|
+
{ [_h]: ["POST", "/list-resource-permission-statements", 200] }, () => ListResourcePermissionStatementsInput$, () => ListResourcePermissionStatementsOutput$
|
|
294
|
+
];
|
|
295
|
+
export var PutConsoleAuthorizationConfiguration$ = [9, n0, _PCAC,
|
|
296
|
+
{ [_h]: ["POST", "/put-console-authorization-configuration", 200] }, () => PutConsoleAuthorizationConfigurationInput$, () => PutConsoleAuthorizationConfigurationOutput$
|
|
297
|
+
];
|
|
298
|
+
export var PutResourcePermissionStatement$ = [9, n0, _PRPS,
|
|
299
|
+
{ [_h]: ["POST", "/put-resource-permission-statement", 200] }, () => PutResourcePermissionStatementInput$, () => PutResourcePermissionStatementOutput$
|
|
300
|
+
];
|
package/dist-types/Signin.d.ts
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { type CreateOAuth2TokenCommandInput, type CreateOAuth2TokenCommandOutput } from "./commands/CreateOAuth2TokenCommand";
|
|
3
|
+
import { type DeleteConsoleAuthorizationConfigurationCommandInput, type DeleteConsoleAuthorizationConfigurationCommandOutput } from "./commands/DeleteConsoleAuthorizationConfigurationCommand";
|
|
4
|
+
import { type DeleteResourcePermissionStatementCommandInput, type DeleteResourcePermissionStatementCommandOutput } from "./commands/DeleteResourcePermissionStatementCommand";
|
|
5
|
+
import { type GetConsoleAuthorizationConfigurationCommandInput, type GetConsoleAuthorizationConfigurationCommandOutput } from "./commands/GetConsoleAuthorizationConfigurationCommand";
|
|
6
|
+
import { type GetResourcePolicyCommandInput, type GetResourcePolicyCommandOutput } from "./commands/GetResourcePolicyCommand";
|
|
7
|
+
import { type ListResourcePermissionStatementsCommandInput, type ListResourcePermissionStatementsCommandOutput } from "./commands/ListResourcePermissionStatementsCommand";
|
|
8
|
+
import { type PutConsoleAuthorizationConfigurationCommandInput, type PutConsoleAuthorizationConfigurationCommandOutput } from "./commands/PutConsoleAuthorizationConfigurationCommand";
|
|
9
|
+
import { type PutResourcePermissionStatementCommandInput, type PutResourcePermissionStatementCommandOutput } from "./commands/PutResourcePermissionStatementCommand";
|
|
3
10
|
import { SigninClient } from "./SigninClient";
|
|
4
11
|
export interface Signin {
|
|
5
12
|
/**
|
|
@@ -8,6 +15,61 @@ export interface Signin {
|
|
|
8
15
|
createOAuth2Token(args: CreateOAuth2TokenCommandInput, options?: __HttpHandlerOptions): Promise<CreateOAuth2TokenCommandOutput>;
|
|
9
16
|
createOAuth2Token(args: CreateOAuth2TokenCommandInput, cb: (err: any, data?: CreateOAuth2TokenCommandOutput) => void): void;
|
|
10
17
|
createOAuth2Token(args: CreateOAuth2TokenCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateOAuth2TokenCommandOutput) => void): void;
|
|
18
|
+
/**
|
|
19
|
+
* @see {@link DeleteConsoleAuthorizationConfigurationCommand}
|
|
20
|
+
*/
|
|
21
|
+
deleteConsoleAuthorizationConfiguration(): Promise<DeleteConsoleAuthorizationConfigurationCommandOutput>;
|
|
22
|
+
deleteConsoleAuthorizationConfiguration(args: DeleteConsoleAuthorizationConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConsoleAuthorizationConfigurationCommandOutput>;
|
|
23
|
+
deleteConsoleAuthorizationConfiguration(args: DeleteConsoleAuthorizationConfigurationCommandInput, cb: (err: any, data?: DeleteConsoleAuthorizationConfigurationCommandOutput) => void): void;
|
|
24
|
+
deleteConsoleAuthorizationConfiguration(args: DeleteConsoleAuthorizationConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConsoleAuthorizationConfigurationCommandOutput) => void): void;
|
|
25
|
+
/**
|
|
26
|
+
* @see {@link DeleteResourcePermissionStatementCommand}
|
|
27
|
+
*/
|
|
28
|
+
deleteResourcePermissionStatement(args: DeleteResourcePermissionStatementCommandInput, options?: __HttpHandlerOptions): Promise<DeleteResourcePermissionStatementCommandOutput>;
|
|
29
|
+
deleteResourcePermissionStatement(args: DeleteResourcePermissionStatementCommandInput, cb: (err: any, data?: DeleteResourcePermissionStatementCommandOutput) => void): void;
|
|
30
|
+
deleteResourcePermissionStatement(args: DeleteResourcePermissionStatementCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteResourcePermissionStatementCommandOutput) => void): void;
|
|
31
|
+
/**
|
|
32
|
+
* @see {@link GetConsoleAuthorizationConfigurationCommand}
|
|
33
|
+
*/
|
|
34
|
+
getConsoleAuthorizationConfiguration(): Promise<GetConsoleAuthorizationConfigurationCommandOutput>;
|
|
35
|
+
getConsoleAuthorizationConfiguration(args: GetConsoleAuthorizationConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetConsoleAuthorizationConfigurationCommandOutput>;
|
|
36
|
+
getConsoleAuthorizationConfiguration(args: GetConsoleAuthorizationConfigurationCommandInput, cb: (err: any, data?: GetConsoleAuthorizationConfigurationCommandOutput) => void): void;
|
|
37
|
+
getConsoleAuthorizationConfiguration(args: GetConsoleAuthorizationConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConsoleAuthorizationConfigurationCommandOutput) => void): void;
|
|
38
|
+
/**
|
|
39
|
+
* @see {@link GetResourcePolicyCommand}
|
|
40
|
+
*/
|
|
41
|
+
getResourcePolicy(): Promise<GetResourcePolicyCommandOutput>;
|
|
42
|
+
getResourcePolicy(args: GetResourcePolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetResourcePolicyCommandOutput>;
|
|
43
|
+
getResourcePolicy(args: GetResourcePolicyCommandInput, cb: (err: any, data?: GetResourcePolicyCommandOutput) => void): void;
|
|
44
|
+
getResourcePolicy(args: GetResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourcePolicyCommandOutput) => void): void;
|
|
45
|
+
/**
|
|
46
|
+
* @see {@link ListResourcePermissionStatementsCommand}
|
|
47
|
+
*/
|
|
48
|
+
listResourcePermissionStatements(): Promise<ListResourcePermissionStatementsCommandOutput>;
|
|
49
|
+
listResourcePermissionStatements(args: ListResourcePermissionStatementsCommandInput, options?: __HttpHandlerOptions): Promise<ListResourcePermissionStatementsCommandOutput>;
|
|
50
|
+
listResourcePermissionStatements(args: ListResourcePermissionStatementsCommandInput, cb: (err: any, data?: ListResourcePermissionStatementsCommandOutput) => void): void;
|
|
51
|
+
listResourcePermissionStatements(args: ListResourcePermissionStatementsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResourcePermissionStatementsCommandOutput) => void): void;
|
|
52
|
+
/**
|
|
53
|
+
* @see {@link PutConsoleAuthorizationConfigurationCommand}
|
|
54
|
+
*/
|
|
55
|
+
putConsoleAuthorizationConfiguration(): Promise<PutConsoleAuthorizationConfigurationCommandOutput>;
|
|
56
|
+
putConsoleAuthorizationConfiguration(args: PutConsoleAuthorizationConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutConsoleAuthorizationConfigurationCommandOutput>;
|
|
57
|
+
putConsoleAuthorizationConfiguration(args: PutConsoleAuthorizationConfigurationCommandInput, cb: (err: any, data?: PutConsoleAuthorizationConfigurationCommandOutput) => void): void;
|
|
58
|
+
putConsoleAuthorizationConfiguration(args: PutConsoleAuthorizationConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutConsoleAuthorizationConfigurationCommandOutput) => void): void;
|
|
59
|
+
/**
|
|
60
|
+
* @see {@link PutResourcePermissionStatementCommand}
|
|
61
|
+
*/
|
|
62
|
+
putResourcePermissionStatement(): Promise<PutResourcePermissionStatementCommandOutput>;
|
|
63
|
+
putResourcePermissionStatement(args: PutResourcePermissionStatementCommandInput, options?: __HttpHandlerOptions): Promise<PutResourcePermissionStatementCommandOutput>;
|
|
64
|
+
putResourcePermissionStatement(args: PutResourcePermissionStatementCommandInput, cb: (err: any, data?: PutResourcePermissionStatementCommandOutput) => void): void;
|
|
65
|
+
putResourcePermissionStatement(args: PutResourcePermissionStatementCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutResourcePermissionStatementCommandOutput) => void): void;
|
|
66
|
+
/**
|
|
67
|
+
* @see {@link ListResourcePermissionStatementsCommand}
|
|
68
|
+
* @param args - command input.
|
|
69
|
+
* @param paginationConfig - optional pagination config.
|
|
70
|
+
* @returns AsyncIterable of {@link ListResourcePermissionStatementsCommandOutput}.
|
|
71
|
+
*/
|
|
72
|
+
paginateListResourcePermissionStatements(args?: ListResourcePermissionStatementsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListResourcePermissionStatementsCommandOutput>;
|
|
11
73
|
}
|
|
12
74
|
/**
|
|
13
75
|
* AWS Sign-In manages authentication for AWS services. This service provides
|
|
@@ -7,17 +7,24 @@ import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/core/re
|
|
|
7
7
|
import type { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
8
|
import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
9
9
|
import type { CreateOAuth2TokenCommandInput, CreateOAuth2TokenCommandOutput } from "./commands/CreateOAuth2TokenCommand";
|
|
10
|
+
import type { DeleteConsoleAuthorizationConfigurationCommandInput, DeleteConsoleAuthorizationConfigurationCommandOutput } from "./commands/DeleteConsoleAuthorizationConfigurationCommand";
|
|
11
|
+
import type { DeleteResourcePermissionStatementCommandInput, DeleteResourcePermissionStatementCommandOutput } from "./commands/DeleteResourcePermissionStatementCommand";
|
|
12
|
+
import type { GetConsoleAuthorizationConfigurationCommandInput, GetConsoleAuthorizationConfigurationCommandOutput } from "./commands/GetConsoleAuthorizationConfigurationCommand";
|
|
13
|
+
import type { GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput } from "./commands/GetResourcePolicyCommand";
|
|
14
|
+
import type { ListResourcePermissionStatementsCommandInput, ListResourcePermissionStatementsCommandOutput } from "./commands/ListResourcePermissionStatementsCommand";
|
|
15
|
+
import type { PutConsoleAuthorizationConfigurationCommandInput, PutConsoleAuthorizationConfigurationCommandOutput } from "./commands/PutConsoleAuthorizationConfigurationCommand";
|
|
16
|
+
import type { PutResourcePermissionStatementCommandInput, PutResourcePermissionStatementCommandOutput } from "./commands/PutResourcePermissionStatementCommand";
|
|
10
17
|
import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
|
|
11
18
|
import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
12
19
|
export { __Client };
|
|
13
20
|
/**
|
|
14
21
|
* @public
|
|
15
22
|
*/
|
|
16
|
-
export type ServiceInputTypes = CreateOAuth2TokenCommandInput;
|
|
23
|
+
export type ServiceInputTypes = CreateOAuth2TokenCommandInput | DeleteConsoleAuthorizationConfigurationCommandInput | DeleteResourcePermissionStatementCommandInput | GetConsoleAuthorizationConfigurationCommandInput | GetResourcePolicyCommandInput | ListResourcePermissionStatementsCommandInput | PutConsoleAuthorizationConfigurationCommandInput | PutResourcePermissionStatementCommandInput;
|
|
17
24
|
/**
|
|
18
25
|
* @public
|
|
19
26
|
*/
|
|
20
|
-
export type ServiceOutputTypes = CreateOAuth2TokenCommandOutput;
|
|
27
|
+
export type ServiceOutputTypes = CreateOAuth2TokenCommandOutput | DeleteConsoleAuthorizationConfigurationCommandOutput | DeleteResourcePermissionStatementCommandOutput | GetConsoleAuthorizationConfigurationCommandOutput | GetResourcePolicyCommandOutput | ListResourcePermissionStatementsCommandOutput | PutConsoleAuthorizationConfigurationCommandOutput | PutResourcePermissionStatementCommandOutput;
|
|
21
28
|
/**
|
|
22
29
|
* @public
|
|
23
30
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { CreateOAuth2TokenRequest, CreateOAuth2TokenResponse } from "../models/models_0";
|
|
4
|
-
import type { SigninClientResolvedConfig } from "../SigninClient";
|
|
4
|
+
import type { ServiceInputTypes, ServiceOutputTypes, SigninClientResolvedConfig } from "../SigninClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -22,8 +22,8 @@ export interface CreateOAuth2TokenCommandInput extends CreateOAuth2TokenRequest
|
|
|
22
22
|
export interface CreateOAuth2TokenCommandOutput extends CreateOAuth2TokenResponse, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const CreateOAuth2TokenCommand_base: {
|
|
25
|
-
new (input: CreateOAuth2TokenCommandInput): import("@smithy/core/client").CommandImpl<CreateOAuth2TokenCommandInput, CreateOAuth2TokenCommandOutput, SigninClientResolvedConfig,
|
|
26
|
-
new (input: CreateOAuth2TokenCommandInput): import("@smithy/core/client").CommandImpl<CreateOAuth2TokenCommandInput, CreateOAuth2TokenCommandOutput, SigninClientResolvedConfig,
|
|
25
|
+
new (input: CreateOAuth2TokenCommandInput): import("@smithy/core/client").CommandImpl<CreateOAuth2TokenCommandInput, CreateOAuth2TokenCommandOutput, SigninClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: CreateOAuth2TokenCommandInput): import("@smithy/core/client").CommandImpl<CreateOAuth2TokenCommandInput, CreateOAuth2TokenCommandOutput, SigninClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
27
|
getEndpointParameterInstructions(): {
|
|
28
28
|
[x: string]: unknown;
|
|
29
29
|
};
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { DeleteConsoleAuthorizationConfigurationInput, DeleteConsoleAuthorizationConfigurationOutput } from "../models/models_0";
|
|
4
|
+
import type { ServiceInputTypes, ServiceOutputTypes, SigninClientResolvedConfig } from "../SigninClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteConsoleAuthorizationConfigurationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteConsoleAuthorizationConfigurationCommandInput extends DeleteConsoleAuthorizationConfigurationInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteConsoleAuthorizationConfigurationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteConsoleAuthorizationConfigurationCommandOutput extends DeleteConsoleAuthorizationConfigurationOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteConsoleAuthorizationConfigurationCommand_base: {
|
|
25
|
+
new (input: DeleteConsoleAuthorizationConfigurationCommandInput): import("@smithy/core/client").CommandImpl<DeleteConsoleAuthorizationConfigurationCommandInput, DeleteConsoleAuthorizationConfigurationCommandOutput, SigninClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [DeleteConsoleAuthorizationConfigurationCommandInput]): import("@smithy/core/client").CommandImpl<DeleteConsoleAuthorizationConfigurationCommandInput, DeleteConsoleAuthorizationConfigurationCommandOutput, SigninClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* Delete console authorization configuration with automatic scope detection
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { SigninClient, DeleteConsoleAuthorizationConfigurationCommand } from "@aws-sdk/client-signin"; // ES Modules import
|
|
37
|
+
* // const { SigninClient, DeleteConsoleAuthorizationConfigurationCommand } = require("@aws-sdk/client-signin"); // CommonJS import
|
|
38
|
+
* // import type { SigninClientConfig } from "@aws-sdk/client-signin";
|
|
39
|
+
* const config = {}; // type is SigninClientConfig
|
|
40
|
+
* const client = new SigninClient(config);
|
|
41
|
+
* const input = { // DeleteConsoleAuthorizationConfigurationInput
|
|
42
|
+
* targetId: "STRING_VALUE",
|
|
43
|
+
* };
|
|
44
|
+
* const command = new DeleteConsoleAuthorizationConfigurationCommand(input);
|
|
45
|
+
* const response = await client.send(command);
|
|
46
|
+
* // { // DeleteConsoleAuthorizationConfigurationOutput
|
|
47
|
+
* // targetId: "STRING_VALUE", // required
|
|
48
|
+
* // scope: "STRING_VALUE", // required
|
|
49
|
+
* // consoleAuthorizationEnabled: true || false, // required
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
52
|
+
* ```
|
|
53
|
+
*
|
|
54
|
+
* @param DeleteConsoleAuthorizationConfigurationCommandInput - {@link DeleteConsoleAuthorizationConfigurationCommandInput}
|
|
55
|
+
* @returns {@link DeleteConsoleAuthorizationConfigurationCommandOutput}
|
|
56
|
+
* @see {@link DeleteConsoleAuthorizationConfigurationCommandInput} for command's `input` shape.
|
|
57
|
+
* @see {@link DeleteConsoleAuthorizationConfigurationCommandOutput} for command's `response` shape.
|
|
58
|
+
* @see {@link SigninClientResolvedConfig | config} for SigninClient's `config` shape.
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
61
|
+
* Error thrown for access denied scenarios with flexible HTTP status mapping
|
|
62
|
+
*
|
|
63
|
+
* Runtime HTTP Status Code Mapping:
|
|
64
|
+
* - HTTP 401 (Unauthorized): TOKEN_EXPIRED, AUTHCODE_EXPIRED
|
|
65
|
+
* - HTTP 403 (Forbidden): USER_CREDENTIALS_CHANGED, INSUFFICIENT_PERMISSIONS
|
|
66
|
+
*
|
|
67
|
+
* The specific HTTP status code is determined at runtime based on the error enum value.
|
|
68
|
+
* Consumers should use the error field to determine the specific access denial reason.
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link InternalServerException} (server fault)
|
|
71
|
+
* Error thrown when an internal server error occurs
|
|
72
|
+
*
|
|
73
|
+
* HTTP Status Code: 500 Internal Server Error
|
|
74
|
+
*
|
|
75
|
+
* Used for unexpected server-side errors that prevent request processing.
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
78
|
+
* Error thrown when requested resource is not found
|
|
79
|
+
*
|
|
80
|
+
* HTTP Status Code: 404 Not Found
|
|
81
|
+
*
|
|
82
|
+
* Used when the specified resource does not exist
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link TooManyRequestsError} (client fault)
|
|
85
|
+
* Error thrown when rate limit is exceeded
|
|
86
|
+
*
|
|
87
|
+
* HTTP Status Code: 429 Too Many Requests
|
|
88
|
+
*
|
|
89
|
+
* Possible OAuth2ErrorCode values:
|
|
90
|
+
* - INVALID_REQUEST: Rate limiting, too many requests, abuse prevention
|
|
91
|
+
*
|
|
92
|
+
* Possible causes:
|
|
93
|
+
* - Too many token requests from the same client
|
|
94
|
+
* - Rate limiting based on client_id or IP address
|
|
95
|
+
* - Abuse prevention mechanisms triggered
|
|
96
|
+
* - Service protection against excessive token generation
|
|
97
|
+
*
|
|
98
|
+
* @throws {@link ValidationException} (client fault)
|
|
99
|
+
* Error thrown when request validation fails
|
|
100
|
+
*
|
|
101
|
+
* HTTP Status Code: 400 Bad Request
|
|
102
|
+
*
|
|
103
|
+
* Used for request validation errors such as malformed parameters,
|
|
104
|
+
* missing required fields, or invalid parameter values.
|
|
105
|
+
*
|
|
106
|
+
* @throws {@link SigninServiceException}
|
|
107
|
+
* <p>Base exception class for all service exceptions from Signin service.</p>
|
|
108
|
+
*
|
|
109
|
+
*
|
|
110
|
+
* @public
|
|
111
|
+
*/
|
|
112
|
+
export declare class DeleteConsoleAuthorizationConfigurationCommand extends DeleteConsoleAuthorizationConfigurationCommand_base {
|
|
113
|
+
/** @internal type navigation helper, not in runtime. */
|
|
114
|
+
protected static __types: {
|
|
115
|
+
api: {
|
|
116
|
+
input: DeleteConsoleAuthorizationConfigurationInput;
|
|
117
|
+
output: DeleteConsoleAuthorizationConfigurationOutput;
|
|
118
|
+
};
|
|
119
|
+
sdk: {
|
|
120
|
+
input: DeleteConsoleAuthorizationConfigurationCommandInput;
|
|
121
|
+
output: DeleteConsoleAuthorizationConfigurationCommandOutput;
|
|
122
|
+
};
|
|
123
|
+
};
|
|
124
|
+
}
|