@aws-sdk/client-sso-oidc 3.51.0 → 3.54.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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/SSOOIDCServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +182 -1
- package/dist-cjs/protocols/Aws_restJson1.js +106 -246
- package/dist-es/index.js +1 -0
- package/dist-es/models/SSOOIDCServiceException.js +12 -0
- package/dist-es/models/models_0.js +170 -1
- package/dist-es/protocols/Aws_restJson1.js +127 -271
- package/dist-types/SSOOIDCClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/SSOOIDCServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +86 -37
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/SSOOIDCClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/SSOOIDCServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +62 -37
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +30 -30
|
@@ -1,4 +1,33 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { SSOOIDCServiceException as __BaseException } from "./SSOOIDCServiceException";
|
|
3
|
+
var AccessDeniedException = (function (_super) {
|
|
4
|
+
__extends(AccessDeniedException, _super);
|
|
5
|
+
function AccessDeniedException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "AccessDeniedException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
10
|
+
_this.error = opts.error;
|
|
11
|
+
_this.error_description = opts.error_description;
|
|
12
|
+
return _this;
|
|
13
|
+
}
|
|
14
|
+
return AccessDeniedException;
|
|
15
|
+
}(__BaseException));
|
|
16
|
+
export { AccessDeniedException };
|
|
17
|
+
var AuthorizationPendingException = (function (_super) {
|
|
18
|
+
__extends(AuthorizationPendingException, _super);
|
|
19
|
+
function AuthorizationPendingException(opts) {
|
|
20
|
+
var _this = _super.call(this, __assign({ name: "AuthorizationPendingException", $fault: "client" }, opts)) || this;
|
|
21
|
+
_this.name = "AuthorizationPendingException";
|
|
22
|
+
_this.$fault = "client";
|
|
23
|
+
Object.setPrototypeOf(_this, AuthorizationPendingException.prototype);
|
|
24
|
+
_this.error = opts.error;
|
|
25
|
+
_this.error_description = opts.error_description;
|
|
26
|
+
return _this;
|
|
27
|
+
}
|
|
28
|
+
return AuthorizationPendingException;
|
|
29
|
+
}(__BaseException));
|
|
30
|
+
export { AuthorizationPendingException };
|
|
2
31
|
export var CreateTokenRequest;
|
|
3
32
|
(function (CreateTokenRequest) {
|
|
4
33
|
CreateTokenRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -7,6 +36,146 @@ export var CreateTokenResponse;
|
|
|
7
36
|
(function (CreateTokenResponse) {
|
|
8
37
|
CreateTokenResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
9
38
|
})(CreateTokenResponse || (CreateTokenResponse = {}));
|
|
39
|
+
var ExpiredTokenException = (function (_super) {
|
|
40
|
+
__extends(ExpiredTokenException, _super);
|
|
41
|
+
function ExpiredTokenException(opts) {
|
|
42
|
+
var _this = _super.call(this, __assign({ name: "ExpiredTokenException", $fault: "client" }, opts)) || this;
|
|
43
|
+
_this.name = "ExpiredTokenException";
|
|
44
|
+
_this.$fault = "client";
|
|
45
|
+
Object.setPrototypeOf(_this, ExpiredTokenException.prototype);
|
|
46
|
+
_this.error = opts.error;
|
|
47
|
+
_this.error_description = opts.error_description;
|
|
48
|
+
return _this;
|
|
49
|
+
}
|
|
50
|
+
return ExpiredTokenException;
|
|
51
|
+
}(__BaseException));
|
|
52
|
+
export { ExpiredTokenException };
|
|
53
|
+
var InternalServerException = (function (_super) {
|
|
54
|
+
__extends(InternalServerException, _super);
|
|
55
|
+
function InternalServerException(opts) {
|
|
56
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
57
|
+
_this.name = "InternalServerException";
|
|
58
|
+
_this.$fault = "server";
|
|
59
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
60
|
+
_this.error = opts.error;
|
|
61
|
+
_this.error_description = opts.error_description;
|
|
62
|
+
return _this;
|
|
63
|
+
}
|
|
64
|
+
return InternalServerException;
|
|
65
|
+
}(__BaseException));
|
|
66
|
+
export { InternalServerException };
|
|
67
|
+
var InvalidClientException = (function (_super) {
|
|
68
|
+
__extends(InvalidClientException, _super);
|
|
69
|
+
function InvalidClientException(opts) {
|
|
70
|
+
var _this = _super.call(this, __assign({ name: "InvalidClientException", $fault: "client" }, opts)) || this;
|
|
71
|
+
_this.name = "InvalidClientException";
|
|
72
|
+
_this.$fault = "client";
|
|
73
|
+
Object.setPrototypeOf(_this, InvalidClientException.prototype);
|
|
74
|
+
_this.error = opts.error;
|
|
75
|
+
_this.error_description = opts.error_description;
|
|
76
|
+
return _this;
|
|
77
|
+
}
|
|
78
|
+
return InvalidClientException;
|
|
79
|
+
}(__BaseException));
|
|
80
|
+
export { InvalidClientException };
|
|
81
|
+
var InvalidGrantException = (function (_super) {
|
|
82
|
+
__extends(InvalidGrantException, _super);
|
|
83
|
+
function InvalidGrantException(opts) {
|
|
84
|
+
var _this = _super.call(this, __assign({ name: "InvalidGrantException", $fault: "client" }, opts)) || this;
|
|
85
|
+
_this.name = "InvalidGrantException";
|
|
86
|
+
_this.$fault = "client";
|
|
87
|
+
Object.setPrototypeOf(_this, InvalidGrantException.prototype);
|
|
88
|
+
_this.error = opts.error;
|
|
89
|
+
_this.error_description = opts.error_description;
|
|
90
|
+
return _this;
|
|
91
|
+
}
|
|
92
|
+
return InvalidGrantException;
|
|
93
|
+
}(__BaseException));
|
|
94
|
+
export { InvalidGrantException };
|
|
95
|
+
var InvalidRequestException = (function (_super) {
|
|
96
|
+
__extends(InvalidRequestException, _super);
|
|
97
|
+
function InvalidRequestException(opts) {
|
|
98
|
+
var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
|
|
99
|
+
_this.name = "InvalidRequestException";
|
|
100
|
+
_this.$fault = "client";
|
|
101
|
+
Object.setPrototypeOf(_this, InvalidRequestException.prototype);
|
|
102
|
+
_this.error = opts.error;
|
|
103
|
+
_this.error_description = opts.error_description;
|
|
104
|
+
return _this;
|
|
105
|
+
}
|
|
106
|
+
return InvalidRequestException;
|
|
107
|
+
}(__BaseException));
|
|
108
|
+
export { InvalidRequestException };
|
|
109
|
+
var InvalidScopeException = (function (_super) {
|
|
110
|
+
__extends(InvalidScopeException, _super);
|
|
111
|
+
function InvalidScopeException(opts) {
|
|
112
|
+
var _this = _super.call(this, __assign({ name: "InvalidScopeException", $fault: "client" }, opts)) || this;
|
|
113
|
+
_this.name = "InvalidScopeException";
|
|
114
|
+
_this.$fault = "client";
|
|
115
|
+
Object.setPrototypeOf(_this, InvalidScopeException.prototype);
|
|
116
|
+
_this.error = opts.error;
|
|
117
|
+
_this.error_description = opts.error_description;
|
|
118
|
+
return _this;
|
|
119
|
+
}
|
|
120
|
+
return InvalidScopeException;
|
|
121
|
+
}(__BaseException));
|
|
122
|
+
export { InvalidScopeException };
|
|
123
|
+
var SlowDownException = (function (_super) {
|
|
124
|
+
__extends(SlowDownException, _super);
|
|
125
|
+
function SlowDownException(opts) {
|
|
126
|
+
var _this = _super.call(this, __assign({ name: "SlowDownException", $fault: "client" }, opts)) || this;
|
|
127
|
+
_this.name = "SlowDownException";
|
|
128
|
+
_this.$fault = "client";
|
|
129
|
+
Object.setPrototypeOf(_this, SlowDownException.prototype);
|
|
130
|
+
_this.error = opts.error;
|
|
131
|
+
_this.error_description = opts.error_description;
|
|
132
|
+
return _this;
|
|
133
|
+
}
|
|
134
|
+
return SlowDownException;
|
|
135
|
+
}(__BaseException));
|
|
136
|
+
export { SlowDownException };
|
|
137
|
+
var UnauthorizedClientException = (function (_super) {
|
|
138
|
+
__extends(UnauthorizedClientException, _super);
|
|
139
|
+
function UnauthorizedClientException(opts) {
|
|
140
|
+
var _this = _super.call(this, __assign({ name: "UnauthorizedClientException", $fault: "client" }, opts)) || this;
|
|
141
|
+
_this.name = "UnauthorizedClientException";
|
|
142
|
+
_this.$fault = "client";
|
|
143
|
+
Object.setPrototypeOf(_this, UnauthorizedClientException.prototype);
|
|
144
|
+
_this.error = opts.error;
|
|
145
|
+
_this.error_description = opts.error_description;
|
|
146
|
+
return _this;
|
|
147
|
+
}
|
|
148
|
+
return UnauthorizedClientException;
|
|
149
|
+
}(__BaseException));
|
|
150
|
+
export { UnauthorizedClientException };
|
|
151
|
+
var UnsupportedGrantTypeException = (function (_super) {
|
|
152
|
+
__extends(UnsupportedGrantTypeException, _super);
|
|
153
|
+
function UnsupportedGrantTypeException(opts) {
|
|
154
|
+
var _this = _super.call(this, __assign({ name: "UnsupportedGrantTypeException", $fault: "client" }, opts)) || this;
|
|
155
|
+
_this.name = "UnsupportedGrantTypeException";
|
|
156
|
+
_this.$fault = "client";
|
|
157
|
+
Object.setPrototypeOf(_this, UnsupportedGrantTypeException.prototype);
|
|
158
|
+
_this.error = opts.error;
|
|
159
|
+
_this.error_description = opts.error_description;
|
|
160
|
+
return _this;
|
|
161
|
+
}
|
|
162
|
+
return UnsupportedGrantTypeException;
|
|
163
|
+
}(__BaseException));
|
|
164
|
+
export { UnsupportedGrantTypeException };
|
|
165
|
+
var InvalidClientMetadataException = (function (_super) {
|
|
166
|
+
__extends(InvalidClientMetadataException, _super);
|
|
167
|
+
function InvalidClientMetadataException(opts) {
|
|
168
|
+
var _this = _super.call(this, __assign({ name: "InvalidClientMetadataException", $fault: "client" }, opts)) || this;
|
|
169
|
+
_this.name = "InvalidClientMetadataException";
|
|
170
|
+
_this.$fault = "client";
|
|
171
|
+
Object.setPrototypeOf(_this, InvalidClientMetadataException.prototype);
|
|
172
|
+
_this.error = opts.error;
|
|
173
|
+
_this.error_description = opts.error_description;
|
|
174
|
+
return _this;
|
|
175
|
+
}
|
|
176
|
+
return InvalidClientMetadataException;
|
|
177
|
+
}(__BaseException));
|
|
178
|
+
export { InvalidClientMetadataException };
|
|
10
179
|
export var RegisterClientRequest;
|
|
11
180
|
(function (RegisterClientRequest) {
|
|
12
181
|
RegisterClientRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|