@aws-sdk/client-pca-connector-scep 3.721.0 → 3.723.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/PcaConnectorScepClient.js +1 -0
- package/dist-cjs/models/models_0.js +37 -21
- package/dist-es/PcaConnectorScepClient.js +1 -0
- package/dist-es/models/models_0.js +36 -20
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
|
@@ -17,6 +17,7 @@ const EndpointParameters_1 = require("./endpoint/EndpointParameters");
|
|
|
17
17
|
const runtimeConfig_1 = require("./runtimeConfig");
|
|
18
18
|
const runtimeExtensions_1 = require("./runtimeExtensions");
|
|
19
19
|
class PcaConnectorScepClient extends smithy_client_1.Client {
|
|
20
|
+
config;
|
|
20
21
|
constructor(...[configuration]) {
|
|
21
22
|
const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {});
|
|
22
23
|
const _config_1 = (0, EndpointParameters_1.resolveClientEndpointParameters)(_config_0);
|
|
@@ -4,42 +4,47 @@ exports.GetChallengePasswordResponseFilterSensitiveLog = exports.CreateChallenge
|
|
|
4
4
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
5
|
const PcaConnectorScepServiceException_1 = require("./PcaConnectorScepServiceException");
|
|
6
6
|
class AccessDeniedException extends PcaConnectorScepServiceException_1.PcaConnectorScepServiceException {
|
|
7
|
+
name = "AccessDeniedException";
|
|
8
|
+
$fault = "client";
|
|
9
|
+
Message;
|
|
7
10
|
constructor(opts) {
|
|
8
11
|
super({
|
|
9
12
|
name: "AccessDeniedException",
|
|
10
13
|
$fault: "client",
|
|
11
14
|
...opts,
|
|
12
15
|
});
|
|
13
|
-
this.name = "AccessDeniedException";
|
|
14
|
-
this.$fault = "client";
|
|
15
16
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
16
17
|
this.Message = opts.Message;
|
|
17
18
|
}
|
|
18
19
|
}
|
|
19
20
|
exports.AccessDeniedException = AccessDeniedException;
|
|
20
21
|
class BadRequestException extends PcaConnectorScepServiceException_1.PcaConnectorScepServiceException {
|
|
22
|
+
name = "BadRequestException";
|
|
23
|
+
$fault = "client";
|
|
24
|
+
Message;
|
|
21
25
|
constructor(opts) {
|
|
22
26
|
super({
|
|
23
27
|
name: "BadRequestException",
|
|
24
28
|
$fault: "client",
|
|
25
29
|
...opts,
|
|
26
30
|
});
|
|
27
|
-
this.name = "BadRequestException";
|
|
28
|
-
this.$fault = "client";
|
|
29
31
|
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
30
32
|
this.Message = opts.Message;
|
|
31
33
|
}
|
|
32
34
|
}
|
|
33
35
|
exports.BadRequestException = BadRequestException;
|
|
34
36
|
class ConflictException extends PcaConnectorScepServiceException_1.PcaConnectorScepServiceException {
|
|
37
|
+
name = "ConflictException";
|
|
38
|
+
$fault = "client";
|
|
39
|
+
Message;
|
|
40
|
+
ResourceId;
|
|
41
|
+
ResourceType;
|
|
35
42
|
constructor(opts) {
|
|
36
43
|
super({
|
|
37
44
|
name: "ConflictException",
|
|
38
45
|
$fault: "client",
|
|
39
46
|
...opts,
|
|
40
47
|
});
|
|
41
|
-
this.name = "ConflictException";
|
|
42
|
-
this.$fault = "client";
|
|
43
48
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
44
49
|
this.Message = opts.Message;
|
|
45
50
|
this.ResourceId = opts.ResourceId;
|
|
@@ -48,29 +53,33 @@ class ConflictException extends PcaConnectorScepServiceException_1.PcaConnectorS
|
|
|
48
53
|
}
|
|
49
54
|
exports.ConflictException = ConflictException;
|
|
50
55
|
class InternalServerException extends PcaConnectorScepServiceException_1.PcaConnectorScepServiceException {
|
|
56
|
+
name = "InternalServerException";
|
|
57
|
+
$fault = "server";
|
|
58
|
+
$retryable = {};
|
|
59
|
+
Message;
|
|
51
60
|
constructor(opts) {
|
|
52
61
|
super({
|
|
53
62
|
name: "InternalServerException",
|
|
54
63
|
$fault: "server",
|
|
55
64
|
...opts,
|
|
56
65
|
});
|
|
57
|
-
this.name = "InternalServerException";
|
|
58
|
-
this.$fault = "server";
|
|
59
|
-
this.$retryable = {};
|
|
60
66
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
61
67
|
this.Message = opts.Message;
|
|
62
68
|
}
|
|
63
69
|
}
|
|
64
70
|
exports.InternalServerException = InternalServerException;
|
|
65
71
|
class ResourceNotFoundException extends PcaConnectorScepServiceException_1.PcaConnectorScepServiceException {
|
|
72
|
+
name = "ResourceNotFoundException";
|
|
73
|
+
$fault = "client";
|
|
74
|
+
Message;
|
|
75
|
+
ResourceId;
|
|
76
|
+
ResourceType;
|
|
66
77
|
constructor(opts) {
|
|
67
78
|
super({
|
|
68
79
|
name: "ResourceNotFoundException",
|
|
69
80
|
$fault: "client",
|
|
70
81
|
...opts,
|
|
71
82
|
});
|
|
72
|
-
this.name = "ResourceNotFoundException";
|
|
73
|
-
this.$fault = "client";
|
|
74
83
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
75
84
|
this.Message = opts.Message;
|
|
76
85
|
this.ResourceId = opts.ResourceId;
|
|
@@ -79,14 +88,18 @@ class ResourceNotFoundException extends PcaConnectorScepServiceException_1.PcaCo
|
|
|
79
88
|
}
|
|
80
89
|
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
81
90
|
class ServiceQuotaExceededException extends PcaConnectorScepServiceException_1.PcaConnectorScepServiceException {
|
|
91
|
+
name = "ServiceQuotaExceededException";
|
|
92
|
+
$fault = "client";
|
|
93
|
+
Message;
|
|
94
|
+
ResourceType;
|
|
95
|
+
ServiceCode;
|
|
96
|
+
QuotaCode;
|
|
82
97
|
constructor(opts) {
|
|
83
98
|
super({
|
|
84
99
|
name: "ServiceQuotaExceededException",
|
|
85
100
|
$fault: "client",
|
|
86
101
|
...opts,
|
|
87
102
|
});
|
|
88
|
-
this.name = "ServiceQuotaExceededException";
|
|
89
|
-
this.$fault = "client";
|
|
90
103
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
91
104
|
this.Message = opts.Message;
|
|
92
105
|
this.ResourceType = opts.ResourceType;
|
|
@@ -96,17 +109,18 @@ class ServiceQuotaExceededException extends PcaConnectorScepServiceException_1.P
|
|
|
96
109
|
}
|
|
97
110
|
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
98
111
|
class ThrottlingException extends PcaConnectorScepServiceException_1.PcaConnectorScepServiceException {
|
|
112
|
+
name = "ThrottlingException";
|
|
113
|
+
$fault = "client";
|
|
114
|
+
$retryable = {
|
|
115
|
+
throttling: true,
|
|
116
|
+
};
|
|
117
|
+
Message;
|
|
99
118
|
constructor(opts) {
|
|
100
119
|
super({
|
|
101
120
|
name: "ThrottlingException",
|
|
102
121
|
$fault: "client",
|
|
103
122
|
...opts,
|
|
104
123
|
});
|
|
105
|
-
this.name = "ThrottlingException";
|
|
106
|
-
this.$fault = "client";
|
|
107
|
-
this.$retryable = {
|
|
108
|
-
throttling: true,
|
|
109
|
-
};
|
|
110
124
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
111
125
|
this.Message = opts.Message;
|
|
112
126
|
}
|
|
@@ -122,14 +136,16 @@ exports.ValidationExceptionReason = {
|
|
|
122
136
|
UNKNOWN_OPERATION: "UNKNOWN_OPERATION",
|
|
123
137
|
};
|
|
124
138
|
class ValidationException extends PcaConnectorScepServiceException_1.PcaConnectorScepServiceException {
|
|
139
|
+
name = "ValidationException";
|
|
140
|
+
$fault = "client";
|
|
141
|
+
Message;
|
|
142
|
+
Reason;
|
|
125
143
|
constructor(opts) {
|
|
126
144
|
super({
|
|
127
145
|
name: "ValidationException",
|
|
128
146
|
$fault: "client",
|
|
129
147
|
...opts,
|
|
130
148
|
});
|
|
131
|
-
this.name = "ValidationException";
|
|
132
|
-
this.$fault = "client";
|
|
133
149
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
134
150
|
this.Message = opts.Message;
|
|
135
151
|
this.Reason = opts.Reason;
|
|
@@ -143,7 +159,7 @@ var MobileDeviceManagement;
|
|
|
143
159
|
return visitor.Intune(value.Intune);
|
|
144
160
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
145
161
|
};
|
|
146
|
-
})(MobileDeviceManagement
|
|
162
|
+
})(MobileDeviceManagement || (exports.MobileDeviceManagement = MobileDeviceManagement = {}));
|
|
147
163
|
exports.ConnectorStatus = {
|
|
148
164
|
ACTIVE: "ACTIVE",
|
|
149
165
|
CREATING: "CREATING",
|
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class PcaConnectorScepClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -1,40 +1,45 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { PcaConnectorScepServiceException as __BaseException } from "./PcaConnectorScepServiceException";
|
|
3
3
|
export class AccessDeniedException extends __BaseException {
|
|
4
|
+
name = "AccessDeniedException";
|
|
5
|
+
$fault = "client";
|
|
6
|
+
Message;
|
|
4
7
|
constructor(opts) {
|
|
5
8
|
super({
|
|
6
9
|
name: "AccessDeniedException",
|
|
7
10
|
$fault: "client",
|
|
8
11
|
...opts,
|
|
9
12
|
});
|
|
10
|
-
this.name = "AccessDeniedException";
|
|
11
|
-
this.$fault = "client";
|
|
12
13
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
14
|
this.Message = opts.Message;
|
|
14
15
|
}
|
|
15
16
|
}
|
|
16
17
|
export class BadRequestException extends __BaseException {
|
|
18
|
+
name = "BadRequestException";
|
|
19
|
+
$fault = "client";
|
|
20
|
+
Message;
|
|
17
21
|
constructor(opts) {
|
|
18
22
|
super({
|
|
19
23
|
name: "BadRequestException",
|
|
20
24
|
$fault: "client",
|
|
21
25
|
...opts,
|
|
22
26
|
});
|
|
23
|
-
this.name = "BadRequestException";
|
|
24
|
-
this.$fault = "client";
|
|
25
27
|
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
26
28
|
this.Message = opts.Message;
|
|
27
29
|
}
|
|
28
30
|
}
|
|
29
31
|
export class ConflictException extends __BaseException {
|
|
32
|
+
name = "ConflictException";
|
|
33
|
+
$fault = "client";
|
|
34
|
+
Message;
|
|
35
|
+
ResourceId;
|
|
36
|
+
ResourceType;
|
|
30
37
|
constructor(opts) {
|
|
31
38
|
super({
|
|
32
39
|
name: "ConflictException",
|
|
33
40
|
$fault: "client",
|
|
34
41
|
...opts,
|
|
35
42
|
});
|
|
36
|
-
this.name = "ConflictException";
|
|
37
|
-
this.$fault = "client";
|
|
38
43
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
39
44
|
this.Message = opts.Message;
|
|
40
45
|
this.ResourceId = opts.ResourceId;
|
|
@@ -42,28 +47,32 @@ export class ConflictException extends __BaseException {
|
|
|
42
47
|
}
|
|
43
48
|
}
|
|
44
49
|
export class InternalServerException extends __BaseException {
|
|
50
|
+
name = "InternalServerException";
|
|
51
|
+
$fault = "server";
|
|
52
|
+
$retryable = {};
|
|
53
|
+
Message;
|
|
45
54
|
constructor(opts) {
|
|
46
55
|
super({
|
|
47
56
|
name: "InternalServerException",
|
|
48
57
|
$fault: "server",
|
|
49
58
|
...opts,
|
|
50
59
|
});
|
|
51
|
-
this.name = "InternalServerException";
|
|
52
|
-
this.$fault = "server";
|
|
53
|
-
this.$retryable = {};
|
|
54
60
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
55
61
|
this.Message = opts.Message;
|
|
56
62
|
}
|
|
57
63
|
}
|
|
58
64
|
export class ResourceNotFoundException extends __BaseException {
|
|
65
|
+
name = "ResourceNotFoundException";
|
|
66
|
+
$fault = "client";
|
|
67
|
+
Message;
|
|
68
|
+
ResourceId;
|
|
69
|
+
ResourceType;
|
|
59
70
|
constructor(opts) {
|
|
60
71
|
super({
|
|
61
72
|
name: "ResourceNotFoundException",
|
|
62
73
|
$fault: "client",
|
|
63
74
|
...opts,
|
|
64
75
|
});
|
|
65
|
-
this.name = "ResourceNotFoundException";
|
|
66
|
-
this.$fault = "client";
|
|
67
76
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
68
77
|
this.Message = opts.Message;
|
|
69
78
|
this.ResourceId = opts.ResourceId;
|
|
@@ -71,14 +80,18 @@ export class ResourceNotFoundException extends __BaseException {
|
|
|
71
80
|
}
|
|
72
81
|
}
|
|
73
82
|
export class ServiceQuotaExceededException extends __BaseException {
|
|
83
|
+
name = "ServiceQuotaExceededException";
|
|
84
|
+
$fault = "client";
|
|
85
|
+
Message;
|
|
86
|
+
ResourceType;
|
|
87
|
+
ServiceCode;
|
|
88
|
+
QuotaCode;
|
|
74
89
|
constructor(opts) {
|
|
75
90
|
super({
|
|
76
91
|
name: "ServiceQuotaExceededException",
|
|
77
92
|
$fault: "client",
|
|
78
93
|
...opts,
|
|
79
94
|
});
|
|
80
|
-
this.name = "ServiceQuotaExceededException";
|
|
81
|
-
this.$fault = "client";
|
|
82
95
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
83
96
|
this.Message = opts.Message;
|
|
84
97
|
this.ResourceType = opts.ResourceType;
|
|
@@ -87,17 +100,18 @@ export class ServiceQuotaExceededException extends __BaseException {
|
|
|
87
100
|
}
|
|
88
101
|
}
|
|
89
102
|
export class ThrottlingException extends __BaseException {
|
|
103
|
+
name = "ThrottlingException";
|
|
104
|
+
$fault = "client";
|
|
105
|
+
$retryable = {
|
|
106
|
+
throttling: true,
|
|
107
|
+
};
|
|
108
|
+
Message;
|
|
90
109
|
constructor(opts) {
|
|
91
110
|
super({
|
|
92
111
|
name: "ThrottlingException",
|
|
93
112
|
$fault: "client",
|
|
94
113
|
...opts,
|
|
95
114
|
});
|
|
96
|
-
this.name = "ThrottlingException";
|
|
97
|
-
this.$fault = "client";
|
|
98
|
-
this.$retryable = {
|
|
99
|
-
throttling: true,
|
|
100
|
-
};
|
|
101
115
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
102
116
|
this.Message = opts.Message;
|
|
103
117
|
}
|
|
@@ -112,14 +126,16 @@ export const ValidationExceptionReason = {
|
|
|
112
126
|
UNKNOWN_OPERATION: "UNKNOWN_OPERATION",
|
|
113
127
|
};
|
|
114
128
|
export class ValidationException extends __BaseException {
|
|
129
|
+
name = "ValidationException";
|
|
130
|
+
$fault = "client";
|
|
131
|
+
Message;
|
|
132
|
+
Reason;
|
|
115
133
|
constructor(opts) {
|
|
116
134
|
super({
|
|
117
135
|
name: "ValidationException",
|
|
118
136
|
$fault: "client",
|
|
119
137
|
...opts,
|
|
120
138
|
});
|
|
121
|
-
this.name = "ValidationException";
|
|
122
|
-
this.$fault = "client";
|
|
123
139
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
124
140
|
this.Message = opts.Message;
|
|
125
141
|
this.Reason = opts.Reason;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: PcaConnectorScepClientConfig) =>
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: PcaConnectorScepClientConfig) =>
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: PcaConnectorScepClientConfig) =>
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: PcaConnectorScepClientConfig) =>
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
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> | undefined;
|
|
34
|
+
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;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -8,9 +8,11 @@ export declare const getRuntimeConfig: (
|
|
|
8
8
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider:
|
|
12
|
-
input: any
|
|
13
|
-
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
_: unknown
|
|
15
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
16
|
defaultUserAgentProvider: (
|
|
15
17
|
config?:
|
|
16
18
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -8,13 +8,15 @@ export declare const getRuntimeConfig: (
|
|
|
8
8
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
init?:
|
|
15
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
16
|
+
| undefined
|
|
17
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
18
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
19
|
+
>);
|
|
18
20
|
defaultUserAgentProvider: (
|
|
19
21
|
config?:
|
|
20
22
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -30,9 +30,11 @@ export declare const getRuntimeConfig: (
|
|
|
30
30
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
31
31
|
| undefined
|
|
32
32
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
33
|
-
credentialDefaultProvider:
|
|
34
|
-
input: any
|
|
35
|
-
|
|
33
|
+
credentialDefaultProvider:
|
|
34
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
35
|
+
| ((
|
|
36
|
+
_: unknown
|
|
37
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
36
38
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
37
39
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
40
|
logger: import("@smithy/types").Logger;
|
|
@@ -52,11 +54,21 @@ export declare const getRuntimeConfig: (
|
|
|
52
54
|
| import("@smithy/types").RetryStrategyV2
|
|
53
55
|
| undefined;
|
|
54
56
|
endpoint?:
|
|
55
|
-
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
57
|
+
| ((
|
|
58
|
+
| string
|
|
59
|
+
| import("@smithy/types").Endpoint
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
61
|
+
| import("@smithy/types").EndpointV2
|
|
62
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
63
|
+
) &
|
|
64
|
+
(
|
|
65
|
+
| string
|
|
66
|
+
| import("@smithy/types").Provider<string>
|
|
67
|
+
| import("@smithy/types").Endpoint
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
69
|
+
| import("@smithy/types").EndpointV2
|
|
70
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
71
|
+
))
|
|
60
72
|
| undefined;
|
|
61
73
|
endpointProvider: (
|
|
62
74
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-pca-connector-scep",
|
|
3
3
|
"description": "AWS SDK for JavaScript Pca Connector Scep Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.723.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,58 +20,58 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.723.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.723.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.723.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.723.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.723.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.723.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
61
61
|
"@types/uuid": "^9.0.1",
|
|
62
62
|
"tslib": "^2.6.2",
|
|
63
63
|
"uuid": "^9.0.1"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@tsconfig/
|
|
67
|
-
"@types/node": "^
|
|
66
|
+
"@tsconfig/node18": "18.2.4",
|
|
67
|
+
"@types/node": "^18.19.69",
|
|
68
68
|
"concurrently": "7.0.0",
|
|
69
69
|
"downlevel-dts": "0.10.1",
|
|
70
70
|
"rimraf": "3.0.2",
|
|
71
|
-
"typescript": "~
|
|
71
|
+
"typescript": "~5.2.2"
|
|
72
72
|
},
|
|
73
73
|
"engines": {
|
|
74
|
-
"node": ">=
|
|
74
|
+
"node": ">=18.0.0"
|
|
75
75
|
},
|
|
76
76
|
"typesVersions": {
|
|
77
77
|
"<4.0": {
|