@aws-sdk/client-eks-auth 3.934.0 → 3.936.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-es/index.js +1 -1
- package/dist-es/models/errors.js +109 -0
- package/dist-es/models/models_0.js +1 -109
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +2 -1
- package/dist-types/models/errors.d.ts +115 -0
- package/dist-types/models/models_0.d.ts +0 -115
- package/dist-types/ts3.4/index.d.ts +2 -1
- package/dist-types/ts3.4/models/errors.d.ts +65 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -65
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
import { EKSAuthServiceException as __BaseException } from "./EKSAuthServiceException";
|
|
2
|
+
export class AccessDeniedException extends __BaseException {
|
|
3
|
+
name = "AccessDeniedException";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
constructor(opts) {
|
|
6
|
+
super({
|
|
7
|
+
name: "AccessDeniedException",
|
|
8
|
+
$fault: "client",
|
|
9
|
+
...opts,
|
|
10
|
+
});
|
|
11
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export class ExpiredTokenException extends __BaseException {
|
|
15
|
+
name = "ExpiredTokenException";
|
|
16
|
+
$fault = "client";
|
|
17
|
+
constructor(opts) {
|
|
18
|
+
super({
|
|
19
|
+
name: "ExpiredTokenException",
|
|
20
|
+
$fault: "client",
|
|
21
|
+
...opts,
|
|
22
|
+
});
|
|
23
|
+
Object.setPrototypeOf(this, ExpiredTokenException.prototype);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
export class InternalServerException extends __BaseException {
|
|
27
|
+
name = "InternalServerException";
|
|
28
|
+
$fault = "server";
|
|
29
|
+
constructor(opts) {
|
|
30
|
+
super({
|
|
31
|
+
name: "InternalServerException",
|
|
32
|
+
$fault: "server",
|
|
33
|
+
...opts,
|
|
34
|
+
});
|
|
35
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
export class InvalidParameterException extends __BaseException {
|
|
39
|
+
name = "InvalidParameterException";
|
|
40
|
+
$fault = "client";
|
|
41
|
+
constructor(opts) {
|
|
42
|
+
super({
|
|
43
|
+
name: "InvalidParameterException",
|
|
44
|
+
$fault: "client",
|
|
45
|
+
...opts,
|
|
46
|
+
});
|
|
47
|
+
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
export class InvalidRequestException extends __BaseException {
|
|
51
|
+
name = "InvalidRequestException";
|
|
52
|
+
$fault = "client";
|
|
53
|
+
constructor(opts) {
|
|
54
|
+
super({
|
|
55
|
+
name: "InvalidRequestException",
|
|
56
|
+
$fault: "client",
|
|
57
|
+
...opts,
|
|
58
|
+
});
|
|
59
|
+
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
export class InvalidTokenException extends __BaseException {
|
|
63
|
+
name = "InvalidTokenException";
|
|
64
|
+
$fault = "client";
|
|
65
|
+
constructor(opts) {
|
|
66
|
+
super({
|
|
67
|
+
name: "InvalidTokenException",
|
|
68
|
+
$fault: "client",
|
|
69
|
+
...opts,
|
|
70
|
+
});
|
|
71
|
+
Object.setPrototypeOf(this, InvalidTokenException.prototype);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
75
|
+
name = "ResourceNotFoundException";
|
|
76
|
+
$fault = "client";
|
|
77
|
+
constructor(opts) {
|
|
78
|
+
super({
|
|
79
|
+
name: "ResourceNotFoundException",
|
|
80
|
+
$fault: "client",
|
|
81
|
+
...opts,
|
|
82
|
+
});
|
|
83
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
export class ServiceUnavailableException extends __BaseException {
|
|
87
|
+
name = "ServiceUnavailableException";
|
|
88
|
+
$fault = "server";
|
|
89
|
+
constructor(opts) {
|
|
90
|
+
super({
|
|
91
|
+
name: "ServiceUnavailableException",
|
|
92
|
+
$fault: "server",
|
|
93
|
+
...opts,
|
|
94
|
+
});
|
|
95
|
+
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
export class ThrottlingException extends __BaseException {
|
|
99
|
+
name = "ThrottlingException";
|
|
100
|
+
$fault = "client";
|
|
101
|
+
constructor(opts) {
|
|
102
|
+
super({
|
|
103
|
+
name: "ThrottlingException",
|
|
104
|
+
$fault: "client",
|
|
105
|
+
...opts,
|
|
106
|
+
});
|
|
107
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
108
|
+
}
|
|
109
|
+
}
|
|
@@ -1,109 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export class AccessDeniedException extends __BaseException {
|
|
3
|
-
name = "AccessDeniedException";
|
|
4
|
-
$fault = "client";
|
|
5
|
-
constructor(opts) {
|
|
6
|
-
super({
|
|
7
|
-
name: "AccessDeniedException",
|
|
8
|
-
$fault: "client",
|
|
9
|
-
...opts,
|
|
10
|
-
});
|
|
11
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
export class ExpiredTokenException extends __BaseException {
|
|
15
|
-
name = "ExpiredTokenException";
|
|
16
|
-
$fault = "client";
|
|
17
|
-
constructor(opts) {
|
|
18
|
-
super({
|
|
19
|
-
name: "ExpiredTokenException",
|
|
20
|
-
$fault: "client",
|
|
21
|
-
...opts,
|
|
22
|
-
});
|
|
23
|
-
Object.setPrototypeOf(this, ExpiredTokenException.prototype);
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
export class InternalServerException extends __BaseException {
|
|
27
|
-
name = "InternalServerException";
|
|
28
|
-
$fault = "server";
|
|
29
|
-
constructor(opts) {
|
|
30
|
-
super({
|
|
31
|
-
name: "InternalServerException",
|
|
32
|
-
$fault: "server",
|
|
33
|
-
...opts,
|
|
34
|
-
});
|
|
35
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
export class InvalidParameterException extends __BaseException {
|
|
39
|
-
name = "InvalidParameterException";
|
|
40
|
-
$fault = "client";
|
|
41
|
-
constructor(opts) {
|
|
42
|
-
super({
|
|
43
|
-
name: "InvalidParameterException",
|
|
44
|
-
$fault: "client",
|
|
45
|
-
...opts,
|
|
46
|
-
});
|
|
47
|
-
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
export class InvalidRequestException extends __BaseException {
|
|
51
|
-
name = "InvalidRequestException";
|
|
52
|
-
$fault = "client";
|
|
53
|
-
constructor(opts) {
|
|
54
|
-
super({
|
|
55
|
-
name: "InvalidRequestException",
|
|
56
|
-
$fault: "client",
|
|
57
|
-
...opts,
|
|
58
|
-
});
|
|
59
|
-
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
export class InvalidTokenException extends __BaseException {
|
|
63
|
-
name = "InvalidTokenException";
|
|
64
|
-
$fault = "client";
|
|
65
|
-
constructor(opts) {
|
|
66
|
-
super({
|
|
67
|
-
name: "InvalidTokenException",
|
|
68
|
-
$fault: "client",
|
|
69
|
-
...opts,
|
|
70
|
-
});
|
|
71
|
-
Object.setPrototypeOf(this, InvalidTokenException.prototype);
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
75
|
-
name = "ResourceNotFoundException";
|
|
76
|
-
$fault = "client";
|
|
77
|
-
constructor(opts) {
|
|
78
|
-
super({
|
|
79
|
-
name: "ResourceNotFoundException",
|
|
80
|
-
$fault: "client",
|
|
81
|
-
...opts,
|
|
82
|
-
});
|
|
83
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
export class ServiceUnavailableException extends __BaseException {
|
|
87
|
-
name = "ServiceUnavailableException";
|
|
88
|
-
$fault = "server";
|
|
89
|
-
constructor(opts) {
|
|
90
|
-
super({
|
|
91
|
-
name: "ServiceUnavailableException",
|
|
92
|
-
$fault: "server",
|
|
93
|
-
...opts,
|
|
94
|
-
});
|
|
95
|
-
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
export class ThrottlingException extends __BaseException {
|
|
99
|
-
name = "ThrottlingException";
|
|
100
|
-
$fault = "client";
|
|
101
|
-
constructor(opts) {
|
|
102
|
-
super({
|
|
103
|
-
name: "ThrottlingException",
|
|
104
|
-
$fault: "client",
|
|
105
|
-
...opts,
|
|
106
|
-
});
|
|
107
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
108
|
-
}
|
|
109
|
-
}
|
|
1
|
+
export {};
|
|
@@ -42,7 +42,7 @@ const _t = "token";
|
|
|
42
42
|
const n0 = "com.amazonaws.eksauth";
|
|
43
43
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
44
44
|
import { EKSAuthServiceException as __EKSAuthServiceException } from "../models/EKSAuthServiceException";
|
|
45
|
-
import { AccessDeniedException as __AccessDeniedException, ExpiredTokenException as __ExpiredTokenException, InternalServerException as __InternalServerException, InvalidParameterException as __InvalidParameterException, InvalidRequestException as __InvalidRequestException, InvalidTokenException as __InvalidTokenException, ResourceNotFoundException as __ResourceNotFoundException, ServiceUnavailableException as __ServiceUnavailableException, ThrottlingException as __ThrottlingException, } from "../models/
|
|
45
|
+
import { AccessDeniedException as __AccessDeniedException, ExpiredTokenException as __ExpiredTokenException, InternalServerException as __InternalServerException, InvalidParameterException as __InvalidParameterException, InvalidRequestException as __InvalidRequestException, InvalidTokenException as __InvalidTokenException, ResourceNotFoundException as __ResourceNotFoundException, ServiceUnavailableException as __ServiceUnavailableException, ThrottlingException as __ThrottlingException, } from "../models/errors";
|
|
46
46
|
export var JwtToken = [0, n0, _JT, 8, 0];
|
|
47
47
|
export var AccessDeniedException = [
|
|
48
48
|
-3,
|
package/dist-types/index.d.ts
CHANGED
|
@@ -10,5 +10,6 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
10
10
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
11
11
|
export type { EKSAuthExtensionConfiguration } from "./extensionConfiguration";
|
|
12
12
|
export * from "./commands";
|
|
13
|
-
export * from "./models";
|
|
13
|
+
export * from "./models/errors";
|
|
14
|
+
export type * from "./models/models_0";
|
|
14
15
|
export { EKSAuthServiceException } from "./models/EKSAuthServiceException";
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { EKSAuthServiceException as __BaseException } from "./EKSAuthServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>You don't have permissions to perform the requested operation. The IAM principal
|
|
5
|
+
* making the request must have at least one IAM permissions policy attached
|
|
6
|
+
* that grants the required permissions. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access.html">Access
|
|
7
|
+
* management</a> in the <i>IAM User Guide</i>. </p>
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
11
|
+
readonly name: "AccessDeniedException";
|
|
12
|
+
readonly $fault: "client";
|
|
13
|
+
/**
|
|
14
|
+
* @internal
|
|
15
|
+
*/
|
|
16
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* <p>The specified Kubernetes service account token is expired.</p>
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
22
|
+
export declare class ExpiredTokenException extends __BaseException {
|
|
23
|
+
readonly name: "ExpiredTokenException";
|
|
24
|
+
readonly $fault: "client";
|
|
25
|
+
/**
|
|
26
|
+
* @internal
|
|
27
|
+
*/
|
|
28
|
+
constructor(opts: __ExceptionOptionType<ExpiredTokenException, __BaseException>);
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* <p>These errors are usually caused by a server-side issue.</p>
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
34
|
+
export declare class InternalServerException extends __BaseException {
|
|
35
|
+
readonly name: "InternalServerException";
|
|
36
|
+
readonly $fault: "server";
|
|
37
|
+
/**
|
|
38
|
+
* @internal
|
|
39
|
+
*/
|
|
40
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* <p>The specified parameter is invalid. Review the available parameters for the API
|
|
44
|
+
* request.</p>
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
export declare class InvalidParameterException extends __BaseException {
|
|
48
|
+
readonly name: "InvalidParameterException";
|
|
49
|
+
readonly $fault: "client";
|
|
50
|
+
/**
|
|
51
|
+
* @internal
|
|
52
|
+
*/
|
|
53
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning
|
|
57
|
+
* will depend on the API, and will be documented in the error message.</p>
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
60
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
61
|
+
readonly name: "InvalidRequestException";
|
|
62
|
+
readonly $fault: "client";
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
66
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* <p>The specified Kubernetes service account token is invalid.</p>
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
export declare class InvalidTokenException extends __BaseException {
|
|
73
|
+
readonly name: "InvalidTokenException";
|
|
74
|
+
readonly $fault: "client";
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
78
|
+
constructor(opts: __ExceptionOptionType<InvalidTokenException, __BaseException>);
|
|
79
|
+
}
|
|
80
|
+
/**
|
|
81
|
+
* <p>The specified resource could not be found.</p>
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
85
|
+
readonly name: "ResourceNotFoundException";
|
|
86
|
+
readonly $fault: "client";
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
90
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* <p>The service is unavailable. Back off and retry the operation.</p>
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
96
|
+
export declare class ServiceUnavailableException extends __BaseException {
|
|
97
|
+
readonly name: "ServiceUnavailableException";
|
|
98
|
+
readonly $fault: "server";
|
|
99
|
+
/**
|
|
100
|
+
* @internal
|
|
101
|
+
*/
|
|
102
|
+
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
103
|
+
}
|
|
104
|
+
/**
|
|
105
|
+
* <p>The request was denied because your request rate is too high. Reduce the frequency of requests.</p>
|
|
106
|
+
* @public
|
|
107
|
+
*/
|
|
108
|
+
export declare class ThrottlingException extends __BaseException {
|
|
109
|
+
readonly name: "ThrottlingException";
|
|
110
|
+
readonly $fault: "client";
|
|
111
|
+
/**
|
|
112
|
+
* @internal
|
|
113
|
+
*/
|
|
114
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
115
|
+
}
|
|
@@ -1,20 +1,3 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { EKSAuthServiceException as __BaseException } from "./EKSAuthServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* <p>You don't have permissions to perform the requested operation. The IAM principal
|
|
5
|
-
* making the request must have at least one IAM permissions policy attached
|
|
6
|
-
* that grants the required permissions. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access.html">Access
|
|
7
|
-
* management</a> in the <i>IAM User Guide</i>. </p>
|
|
8
|
-
* @public
|
|
9
|
-
*/
|
|
10
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
11
|
-
readonly name: "AccessDeniedException";
|
|
12
|
-
readonly $fault: "client";
|
|
13
|
-
/**
|
|
14
|
-
* @internal
|
|
15
|
-
*/
|
|
16
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
17
|
-
}
|
|
18
1
|
/**
|
|
19
2
|
* <p>An object with the permanent IAM role identity and the temporary session
|
|
20
3
|
* name.</p>
|
|
@@ -161,101 +144,3 @@ export interface AssumeRoleForPodIdentityResponse {
|
|
|
161
144
|
*/
|
|
162
145
|
credentials: Credentials | undefined;
|
|
163
146
|
}
|
|
164
|
-
/**
|
|
165
|
-
* <p>The specified Kubernetes service account token is expired.</p>
|
|
166
|
-
* @public
|
|
167
|
-
*/
|
|
168
|
-
export declare class ExpiredTokenException extends __BaseException {
|
|
169
|
-
readonly name: "ExpiredTokenException";
|
|
170
|
-
readonly $fault: "client";
|
|
171
|
-
/**
|
|
172
|
-
* @internal
|
|
173
|
-
*/
|
|
174
|
-
constructor(opts: __ExceptionOptionType<ExpiredTokenException, __BaseException>);
|
|
175
|
-
}
|
|
176
|
-
/**
|
|
177
|
-
* <p>These errors are usually caused by a server-side issue.</p>
|
|
178
|
-
* @public
|
|
179
|
-
*/
|
|
180
|
-
export declare class InternalServerException extends __BaseException {
|
|
181
|
-
readonly name: "InternalServerException";
|
|
182
|
-
readonly $fault: "server";
|
|
183
|
-
/**
|
|
184
|
-
* @internal
|
|
185
|
-
*/
|
|
186
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
187
|
-
}
|
|
188
|
-
/**
|
|
189
|
-
* <p>The specified parameter is invalid. Review the available parameters for the API
|
|
190
|
-
* request.</p>
|
|
191
|
-
* @public
|
|
192
|
-
*/
|
|
193
|
-
export declare class InvalidParameterException extends __BaseException {
|
|
194
|
-
readonly name: "InvalidParameterException";
|
|
195
|
-
readonly $fault: "client";
|
|
196
|
-
/**
|
|
197
|
-
* @internal
|
|
198
|
-
*/
|
|
199
|
-
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
200
|
-
}
|
|
201
|
-
/**
|
|
202
|
-
* <p>This exception is thrown if the request contains a semantic error. The precise meaning
|
|
203
|
-
* will depend on the API, and will be documented in the error message.</p>
|
|
204
|
-
* @public
|
|
205
|
-
*/
|
|
206
|
-
export declare class InvalidRequestException extends __BaseException {
|
|
207
|
-
readonly name: "InvalidRequestException";
|
|
208
|
-
readonly $fault: "client";
|
|
209
|
-
/**
|
|
210
|
-
* @internal
|
|
211
|
-
*/
|
|
212
|
-
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
213
|
-
}
|
|
214
|
-
/**
|
|
215
|
-
* <p>The specified Kubernetes service account token is invalid.</p>
|
|
216
|
-
* @public
|
|
217
|
-
*/
|
|
218
|
-
export declare class InvalidTokenException extends __BaseException {
|
|
219
|
-
readonly name: "InvalidTokenException";
|
|
220
|
-
readonly $fault: "client";
|
|
221
|
-
/**
|
|
222
|
-
* @internal
|
|
223
|
-
*/
|
|
224
|
-
constructor(opts: __ExceptionOptionType<InvalidTokenException, __BaseException>);
|
|
225
|
-
}
|
|
226
|
-
/**
|
|
227
|
-
* <p>The specified resource could not be found.</p>
|
|
228
|
-
* @public
|
|
229
|
-
*/
|
|
230
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
231
|
-
readonly name: "ResourceNotFoundException";
|
|
232
|
-
readonly $fault: "client";
|
|
233
|
-
/**
|
|
234
|
-
* @internal
|
|
235
|
-
*/
|
|
236
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
237
|
-
}
|
|
238
|
-
/**
|
|
239
|
-
* <p>The service is unavailable. Back off and retry the operation.</p>
|
|
240
|
-
* @public
|
|
241
|
-
*/
|
|
242
|
-
export declare class ServiceUnavailableException extends __BaseException {
|
|
243
|
-
readonly name: "ServiceUnavailableException";
|
|
244
|
-
readonly $fault: "server";
|
|
245
|
-
/**
|
|
246
|
-
* @internal
|
|
247
|
-
*/
|
|
248
|
-
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
249
|
-
}
|
|
250
|
-
/**
|
|
251
|
-
* <p>The request was denied because your request rate is too high. Reduce the frequency of requests.</p>
|
|
252
|
-
* @public
|
|
253
|
-
*/
|
|
254
|
-
export declare class ThrottlingException extends __BaseException {
|
|
255
|
-
readonly name: "ThrottlingException";
|
|
256
|
-
readonly $fault: "client";
|
|
257
|
-
/**
|
|
258
|
-
* @internal
|
|
259
|
-
*/
|
|
260
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
261
|
-
}
|
|
@@ -4,5 +4,6 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { EKSAuthExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
|
-
export * from "./models";
|
|
7
|
+
export * from "./models/errors";
|
|
8
|
+
export * from "./models/models_0";
|
|
8
9
|
export { EKSAuthServiceException } from "./models/EKSAuthServiceException";
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { EKSAuthServiceException as __BaseException } from "./EKSAuthServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
constructor(
|
|
7
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
+
);
|
|
9
|
+
}
|
|
10
|
+
export declare class ExpiredTokenException extends __BaseException {
|
|
11
|
+
readonly name: "ExpiredTokenException";
|
|
12
|
+
readonly $fault: "client";
|
|
13
|
+
constructor(
|
|
14
|
+
opts: __ExceptionOptionType<ExpiredTokenException, __BaseException>
|
|
15
|
+
);
|
|
16
|
+
}
|
|
17
|
+
export declare class InternalServerException extends __BaseException {
|
|
18
|
+
readonly name: "InternalServerException";
|
|
19
|
+
readonly $fault: "server";
|
|
20
|
+
constructor(
|
|
21
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
22
|
+
);
|
|
23
|
+
}
|
|
24
|
+
export declare class InvalidParameterException extends __BaseException {
|
|
25
|
+
readonly name: "InvalidParameterException";
|
|
26
|
+
readonly $fault: "client";
|
|
27
|
+
constructor(
|
|
28
|
+
opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
|
|
29
|
+
);
|
|
30
|
+
}
|
|
31
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
32
|
+
readonly name: "InvalidRequestException";
|
|
33
|
+
readonly $fault: "client";
|
|
34
|
+
constructor(
|
|
35
|
+
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
36
|
+
);
|
|
37
|
+
}
|
|
38
|
+
export declare class InvalidTokenException extends __BaseException {
|
|
39
|
+
readonly name: "InvalidTokenException";
|
|
40
|
+
readonly $fault: "client";
|
|
41
|
+
constructor(
|
|
42
|
+
opts: __ExceptionOptionType<InvalidTokenException, __BaseException>
|
|
43
|
+
);
|
|
44
|
+
}
|
|
45
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
46
|
+
readonly name: "ResourceNotFoundException";
|
|
47
|
+
readonly $fault: "client";
|
|
48
|
+
constructor(
|
|
49
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
50
|
+
);
|
|
51
|
+
}
|
|
52
|
+
export declare class ServiceUnavailableException extends __BaseException {
|
|
53
|
+
readonly name: "ServiceUnavailableException";
|
|
54
|
+
readonly $fault: "server";
|
|
55
|
+
constructor(
|
|
56
|
+
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
57
|
+
);
|
|
58
|
+
}
|
|
59
|
+
export declare class ThrottlingException extends __BaseException {
|
|
60
|
+
readonly name: "ThrottlingException";
|
|
61
|
+
readonly $fault: "client";
|
|
62
|
+
constructor(
|
|
63
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
64
|
+
);
|
|
65
|
+
}
|
|
@@ -1,12 +1,3 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { EKSAuthServiceException as __BaseException } from "./EKSAuthServiceException";
|
|
3
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
-
readonly name: "AccessDeniedException";
|
|
5
|
-
readonly $fault: "client";
|
|
6
|
-
constructor(
|
|
7
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
-
);
|
|
9
|
-
}
|
|
10
1
|
export interface AssumedRoleUser {
|
|
11
2
|
arn: string | undefined;
|
|
12
3
|
assumeRoleId: string | undefined;
|
|
@@ -36,59 +27,3 @@ export interface AssumeRoleForPodIdentityResponse {
|
|
|
36
27
|
assumedRoleUser: AssumedRoleUser | undefined;
|
|
37
28
|
credentials: Credentials | undefined;
|
|
38
29
|
}
|
|
39
|
-
export declare class ExpiredTokenException extends __BaseException {
|
|
40
|
-
readonly name: "ExpiredTokenException";
|
|
41
|
-
readonly $fault: "client";
|
|
42
|
-
constructor(
|
|
43
|
-
opts: __ExceptionOptionType<ExpiredTokenException, __BaseException>
|
|
44
|
-
);
|
|
45
|
-
}
|
|
46
|
-
export declare class InternalServerException extends __BaseException {
|
|
47
|
-
readonly name: "InternalServerException";
|
|
48
|
-
readonly $fault: "server";
|
|
49
|
-
constructor(
|
|
50
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
51
|
-
);
|
|
52
|
-
}
|
|
53
|
-
export declare class InvalidParameterException extends __BaseException {
|
|
54
|
-
readonly name: "InvalidParameterException";
|
|
55
|
-
readonly $fault: "client";
|
|
56
|
-
constructor(
|
|
57
|
-
opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
|
|
58
|
-
);
|
|
59
|
-
}
|
|
60
|
-
export declare class InvalidRequestException extends __BaseException {
|
|
61
|
-
readonly name: "InvalidRequestException";
|
|
62
|
-
readonly $fault: "client";
|
|
63
|
-
constructor(
|
|
64
|
-
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
65
|
-
);
|
|
66
|
-
}
|
|
67
|
-
export declare class InvalidTokenException extends __BaseException {
|
|
68
|
-
readonly name: "InvalidTokenException";
|
|
69
|
-
readonly $fault: "client";
|
|
70
|
-
constructor(
|
|
71
|
-
opts: __ExceptionOptionType<InvalidTokenException, __BaseException>
|
|
72
|
-
);
|
|
73
|
-
}
|
|
74
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
75
|
-
readonly name: "ResourceNotFoundException";
|
|
76
|
-
readonly $fault: "client";
|
|
77
|
-
constructor(
|
|
78
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
79
|
-
);
|
|
80
|
-
}
|
|
81
|
-
export declare class ServiceUnavailableException extends __BaseException {
|
|
82
|
-
readonly name: "ServiceUnavailableException";
|
|
83
|
-
readonly $fault: "server";
|
|
84
|
-
constructor(
|
|
85
|
-
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
86
|
-
);
|
|
87
|
-
}
|
|
88
|
-
export declare class ThrottlingException extends __BaseException {
|
|
89
|
-
readonly name: "ThrottlingException";
|
|
90
|
-
readonly $fault: "client";
|
|
91
|
-
constructor(
|
|
92
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
93
|
-
);
|
|
94
|
-
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-eks-auth",
|
|
3
3
|
"description": "AWS SDK for JavaScript Eks Auth Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.936.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-eks-auth",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.936.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.936.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.936.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
|
+
"@aws-sdk/types": "3.936.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.936.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|