@aws-sdk/client-pca-connector-scep 3.952.0 → 3.954.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +178 -122
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CreateChallengeCommand.js +2 -2
- package/dist-es/commands/CreateConnectorCommand.js +2 -2
- package/dist-es/commands/DeleteChallengeCommand.js +2 -2
- package/dist-es/commands/DeleteConnectorCommand.js +2 -2
- package/dist-es/commands/GetChallengeMetadataCommand.js +2 -2
- package/dist-es/commands/GetChallengePasswordCommand.js +2 -2
- package/dist-es/commands/GetConnectorCommand.js +2 -2
- package/dist-es/commands/ListChallengeMetadataCommand.js +2 -2
- package/dist-es/commands/ListConnectorsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +96 -89
- package/dist-types/PcaConnectorScepClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +50 -56
- package/dist-types/ts3.4/PcaConnectorScepClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +49 -57
- package/package.json +34 -34
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteConnector } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteConnector$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteConnectorCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteConnectorCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("PcaConnectorScep", "DeleteConnector", {})
|
|
13
13
|
.n("PcaConnectorScepClient", "DeleteConnectorCommand")
|
|
14
|
-
.sc(DeleteConnector)
|
|
14
|
+
.sc(DeleteConnector$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetChallengeMetadata } from "../schemas/schemas_0";
|
|
4
|
+
import { GetChallengeMetadata$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetChallengeMetadataCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetChallengeMetadataCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("PcaConnectorScep", "GetChallengeMetadata", {})
|
|
13
13
|
.n("PcaConnectorScepClient", "GetChallengeMetadataCommand")
|
|
14
|
-
.sc(GetChallengeMetadata)
|
|
14
|
+
.sc(GetChallengeMetadata$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetChallengePassword } from "../schemas/schemas_0";
|
|
4
|
+
import { GetChallengePassword$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetChallengePasswordCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetChallengePasswordCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("PcaConnectorScep", "GetChallengePassword", {})
|
|
13
13
|
.n("PcaConnectorScepClient", "GetChallengePasswordCommand")
|
|
14
|
-
.sc(GetChallengePassword)
|
|
14
|
+
.sc(GetChallengePassword$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetConnector } from "../schemas/schemas_0";
|
|
4
|
+
import { GetConnector$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetConnectorCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetConnectorCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("PcaConnectorScep", "GetConnector", {})
|
|
13
13
|
.n("PcaConnectorScepClient", "GetConnectorCommand")
|
|
14
|
-
.sc(GetConnector)
|
|
14
|
+
.sc(GetConnector$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListChallengeMetadata } from "../schemas/schemas_0";
|
|
4
|
+
import { ListChallengeMetadata$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListChallengeMetadataCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListChallengeMetadataCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("PcaConnectorScep", "ListChallengeMetadata", {})
|
|
13
13
|
.n("PcaConnectorScepClient", "ListChallengeMetadataCommand")
|
|
14
|
-
.sc(ListChallengeMetadata)
|
|
14
|
+
.sc(ListChallengeMetadata$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListConnectors } from "../schemas/schemas_0";
|
|
4
|
+
import { ListConnectors$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListConnectorsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListConnectorsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("PcaConnectorScep", "ListConnectors", {})
|
|
13
13
|
.n("PcaConnectorScepClient", "ListConnectorsCommand")
|
|
14
|
-
.sc(ListConnectors)
|
|
14
|
+
.sc(ListConnectors$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("PcaConnectorScep", "ListTagsForResource", {})
|
|
13
13
|
.n("PcaConnectorScepClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("PcaConnectorScep", "TagResource", {})
|
|
13
13
|
.n("PcaConnectorScepClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("PcaConnectorScep", "UntagResource", {})
|
|
13
13
|
.n("PcaConnectorScepClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.pcaconnectorscep",
|
|
29
|
+
version: "2018-05-10",
|
|
30
|
+
serviceTarget: "PcaConnectorScep",
|
|
31
|
+
},
|
|
27
32
|
serviceId: config?.serviceId ?? "Pca Connector Scep",
|
|
28
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
29
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
@@ -90,14 +90,14 @@ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.pcaconnectorscep";
|
|
|
90
90
|
const _tK = "tagKeys";
|
|
91
91
|
const n0 = "com.amazonaws.pcaconnectorscep";
|
|
92
92
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
93
|
-
import { AccessDeniedException
|
|
94
|
-
import { PcaConnectorScepServiceException
|
|
95
|
-
|
|
96
|
-
export var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
|
|
97
|
-
TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
98
|
-
export var BadRequestException = [-3, n0, _BRE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
|
|
99
|
-
TypeRegistry.for(n0).registerError(BadRequestException
|
|
100
|
-
export var Challenge = [
|
|
93
|
+
import { AccessDeniedException, BadRequestException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, } from "../models/errors";
|
|
94
|
+
import { PcaConnectorScepServiceException } from "../models/PcaConnectorScepServiceException";
|
|
95
|
+
var SensitiveString = [0, n0, _SS, 8, 0];
|
|
96
|
+
export var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
|
|
97
|
+
TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
98
|
+
export var BadRequestException$ = [-3, n0, _BRE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
|
|
99
|
+
TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
|
|
100
|
+
export var Challenge$ = [
|
|
101
101
|
3,
|
|
102
102
|
n0,
|
|
103
103
|
_C,
|
|
@@ -105,49 +105,56 @@ export var Challenge = [
|
|
|
105
105
|
[_A, _CA, _CAr, _UA, _P],
|
|
106
106
|
[0, 0, 4, 4, [() => SensitiveString, 0]],
|
|
107
107
|
];
|
|
108
|
-
export var ChallengeMetadata = [3, n0, _CM, 0, [_A, _CA, _CAr, _UA], [0, 0, 4, 4]];
|
|
109
|
-
export var ChallengeMetadataSummary = [3, n0, _CMS, 0, [_A, _CA, _CAr, _UA], [0, 0, 4, 4]];
|
|
110
|
-
export var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M, _RI, _RT], [0, 0, 0]];
|
|
111
|
-
TypeRegistry.for(n0).registerError(ConflictException
|
|
112
|
-
export var Connector = [
|
|
108
|
+
export var ChallengeMetadata$ = [3, n0, _CM, 0, [_A, _CA, _CAr, _UA], [0, 0, 4, 4]];
|
|
109
|
+
export var ChallengeMetadataSummary$ = [3, n0, _CMS, 0, [_A, _CA, _CAr, _UA], [0, 0, 4, 4]];
|
|
110
|
+
export var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M, _RI, _RT], [0, 0, 0]];
|
|
111
|
+
TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
112
|
+
export var Connector$ = [
|
|
113
113
|
3,
|
|
114
114
|
n0,
|
|
115
115
|
_Co,
|
|
116
116
|
0,
|
|
117
117
|
[_A, _CAA, _T, _MDM, _OIC, _S, _SR, _E, _CAr, _UA],
|
|
118
|
-
[0, 0, 0, () => MobileDeviceManagement
|
|
118
|
+
[0, 0, 0, () => MobileDeviceManagement$, () => OpenIdConfiguration$, 0, 0, 0, 4, 4],
|
|
119
119
|
];
|
|
120
|
-
export var ConnectorSummary = [
|
|
120
|
+
export var ConnectorSummary$ = [
|
|
121
121
|
3,
|
|
122
122
|
n0,
|
|
123
123
|
_CS,
|
|
124
124
|
0,
|
|
125
125
|
[_A, _CAA, _T, _MDM, _OIC, _S, _SR, _E, _CAr, _UA],
|
|
126
|
-
[0, 0, 0, () => MobileDeviceManagement
|
|
126
|
+
[0, 0, 0, () => MobileDeviceManagement$, () => OpenIdConfiguration$, 0, 0, 0, 4, 4],
|
|
127
127
|
];
|
|
128
|
-
export var CreateChallengeRequest = [3, n0, _CCR, 0, [_CA, _CT, _Ta], [0, [0, 4], 128 | 0]];
|
|
129
|
-
export var CreateChallengeResponse = [3, n0, _CCRr, 0, [_C], [[() => Challenge
|
|
130
|
-
export var CreateConnectorRequest = [
|
|
128
|
+
export var CreateChallengeRequest$ = [3, n0, _CCR, 0, [_CA, _CT, _Ta], [0, [0, 4], 128 | 0]];
|
|
129
|
+
export var CreateChallengeResponse$ = [3, n0, _CCRr, 0, [_C], [[() => Challenge$, 0]]];
|
|
130
|
+
export var CreateConnectorRequest$ = [
|
|
131
131
|
3,
|
|
132
132
|
n0,
|
|
133
133
|
_CCRre,
|
|
134
134
|
0,
|
|
135
135
|
[_CAA, _MDM, _CT, _Ta],
|
|
136
|
-
[0, () => MobileDeviceManagement
|
|
136
|
+
[0, () => MobileDeviceManagement$, [0, 4], 128 | 0],
|
|
137
137
|
];
|
|
138
|
-
export var CreateConnectorResponse = [3, n0, _CCRrea, 0, [_CA], [0]];
|
|
139
|
-
export var DeleteChallengeRequest = [3, n0, _DCR, 0, [_CAh], [[0, 1]]];
|
|
140
|
-
export var DeleteConnectorRequest = [3, n0, _DCRe, 0, [_CA], [[0, 1]]];
|
|
141
|
-
export var GetChallengeMetadataRequest = [3, n0, _GCMR, 0, [_CAh], [[0, 1]]];
|
|
142
|
-
export var GetChallengeMetadataResponse = [3, n0, _GCMRe, 0, [_CM], [() => ChallengeMetadata]];
|
|
143
|
-
export var GetChallengePasswordRequest = [3, n0, _GCPR, 0, [_CAh], [[0, 1]]];
|
|
144
|
-
export var GetChallengePasswordResponse = [
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
138
|
+
export var CreateConnectorResponse$ = [3, n0, _CCRrea, 0, [_CA], [0]];
|
|
139
|
+
export var DeleteChallengeRequest$ = [3, n0, _DCR, 0, [_CAh], [[0, 1]]];
|
|
140
|
+
export var DeleteConnectorRequest$ = [3, n0, _DCRe, 0, [_CA], [[0, 1]]];
|
|
141
|
+
export var GetChallengeMetadataRequest$ = [3, n0, _GCMR, 0, [_CAh], [[0, 1]]];
|
|
142
|
+
export var GetChallengeMetadataResponse$ = [3, n0, _GCMRe, 0, [_CM], [() => ChallengeMetadata$]];
|
|
143
|
+
export var GetChallengePasswordRequest$ = [3, n0, _GCPR, 0, [_CAh], [[0, 1]]];
|
|
144
|
+
export var GetChallengePasswordResponse$ = [
|
|
145
|
+
3,
|
|
146
|
+
n0,
|
|
147
|
+
_GCPRe,
|
|
148
|
+
0,
|
|
149
|
+
[_P],
|
|
150
|
+
[[() => SensitiveString, 0]],
|
|
151
|
+
];
|
|
152
|
+
export var GetConnectorRequest$ = [3, n0, _GCR, 0, [_CA], [[0, 1]]];
|
|
153
|
+
export var GetConnectorResponse$ = [3, n0, _GCRe, 0, [_Co], [() => Connector$]];
|
|
154
|
+
export var InternalServerException$ = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
|
|
155
|
+
TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
156
|
+
export var IntuneConfiguration$ = [3, n0, _IC, 0, [_AAI, _D], [0, 0]];
|
|
157
|
+
export var ListChallengeMetadataRequest$ = [
|
|
151
158
|
3,
|
|
152
159
|
n0,
|
|
153
160
|
_LCMR,
|
|
@@ -159,7 +166,7 @@ export var ListChallengeMetadataRequest = [
|
|
|
159
166
|
[0, { [_hQ]: _CA }],
|
|
160
167
|
],
|
|
161
168
|
];
|
|
162
|
-
export var ListChallengeMetadataResponse = [
|
|
169
|
+
export var ListChallengeMetadataResponse$ = [
|
|
163
170
|
3,
|
|
164
171
|
n0,
|
|
165
172
|
_LCMRi,
|
|
@@ -167,7 +174,7 @@ export var ListChallengeMetadataResponse = [
|
|
|
167
174
|
[_Ch, _NT],
|
|
168
175
|
[() => ChallengeMetadataList, 0],
|
|
169
176
|
];
|
|
170
|
-
export var ListConnectorsRequest = [
|
|
177
|
+
export var ListConnectorsRequest$ = [
|
|
171
178
|
3,
|
|
172
179
|
n0,
|
|
173
180
|
_LCR,
|
|
@@ -178,11 +185,11 @@ export var ListConnectorsRequest = [
|
|
|
178
185
|
[0, { [_hQ]: _NT }],
|
|
179
186
|
],
|
|
180
187
|
];
|
|
181
|
-
export var ListConnectorsResponse = [3, n0, _LCRi, 0, [_Con, _NT], [() => ConnectorList, 0]];
|
|
182
|
-
export var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RA], [[0, 1]]];
|
|
183
|
-
export var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_Ta], [128 | 0]];
|
|
184
|
-
export var OpenIdConfiguration = [3, n0, _OIC, 0, [_I, _Su, _Au], [0, 0, 0]];
|
|
185
|
-
export var ResourceNotFoundException = [
|
|
188
|
+
export var ListConnectorsResponse$ = [3, n0, _LCRi, 0, [_Con, _NT], [() => ConnectorList, 0]];
|
|
189
|
+
export var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_RA], [[0, 1]]];
|
|
190
|
+
export var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_Ta], [128 | 0]];
|
|
191
|
+
export var OpenIdConfiguration$ = [3, n0, _OIC, 0, [_I, _Su, _Au], [0, 0, 0]];
|
|
192
|
+
export var ResourceNotFoundException$ = [
|
|
186
193
|
-3,
|
|
187
194
|
n0,
|
|
188
195
|
_RNFE,
|
|
@@ -190,8 +197,8 @@ export var ResourceNotFoundException = [
|
|
|
190
197
|
[_M, _RI, _RT],
|
|
191
198
|
[0, 0, 0],
|
|
192
199
|
];
|
|
193
|
-
TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
194
|
-
export var ServiceQuotaExceededException = [
|
|
200
|
+
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
201
|
+
export var ServiceQuotaExceededException$ = [
|
|
195
202
|
-3,
|
|
196
203
|
n0,
|
|
197
204
|
_SQEE,
|
|
@@ -199,11 +206,11 @@ export var ServiceQuotaExceededException = [
|
|
|
199
206
|
[_M, _RT, _SC, _QC],
|
|
200
207
|
[0, 0, 0, 0],
|
|
201
208
|
];
|
|
202
|
-
TypeRegistry.for(n0).registerError(ServiceQuotaExceededException
|
|
203
|
-
export var TagResourceRequest = [3, n0, _TRR, 0, [_RA, _Ta], [[0, 1], 128 | 0]];
|
|
204
|
-
export var ThrottlingException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
|
|
205
|
-
TypeRegistry.for(n0).registerError(ThrottlingException
|
|
206
|
-
export var UntagResourceRequest = [
|
|
209
|
+
TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
210
|
+
export var TagResourceRequest$ = [3, n0, _TRR, 0, [_RA, _Ta], [[0, 1], 128 | 0]];
|
|
211
|
+
export var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
|
|
212
|
+
TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
213
|
+
export var UntagResourceRequest$ = [
|
|
207
214
|
3,
|
|
208
215
|
n0,
|
|
209
216
|
_URR,
|
|
@@ -214,10 +221,10 @@ export var UntagResourceRequest = [
|
|
|
214
221
|
[64 | 0, { [_hQ]: _tK }],
|
|
215
222
|
],
|
|
216
223
|
];
|
|
217
|
-
export var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_M, _R], [0, 0]];
|
|
218
|
-
TypeRegistry.for(n0).registerError(ValidationException
|
|
219
|
-
|
|
220
|
-
export var PcaConnectorScepServiceException = [
|
|
224
|
+
export var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_M, _R], [0, 0]];
|
|
225
|
+
TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
226
|
+
var __Unit = "unit";
|
|
227
|
+
export var PcaConnectorScepServiceException$ = [
|
|
221
228
|
-3,
|
|
222
229
|
_sm,
|
|
223
230
|
"PcaConnectorScepServiceException",
|
|
@@ -225,105 +232,105 @@ export var PcaConnectorScepServiceException = [
|
|
|
225
232
|
[],
|
|
226
233
|
[],
|
|
227
234
|
];
|
|
228
|
-
TypeRegistry.for(_sm).registerError(PcaConnectorScepServiceException
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
export var MobileDeviceManagement = [3, n0, _MDM, 0, [_In], [() => IntuneConfiguration]];
|
|
234
|
-
export var CreateChallenge = [
|
|
235
|
+
TypeRegistry.for(_sm).registerError(PcaConnectorScepServiceException$, PcaConnectorScepServiceException);
|
|
236
|
+
var ChallengeMetadataList = [1, n0, _CML, 0, () => ChallengeMetadataSummary$];
|
|
237
|
+
var ConnectorList = [1, n0, _CL, 0, () => ConnectorSummary$];
|
|
238
|
+
var TagKeyList = 64 | 0;
|
|
239
|
+
var Tags = 128 | 0;
|
|
240
|
+
export var MobileDeviceManagement$ = [3, n0, _MDM, 0, [_In], [() => IntuneConfiguration$]];
|
|
241
|
+
export var CreateChallenge$ = [
|
|
235
242
|
9,
|
|
236
243
|
n0,
|
|
237
244
|
_CC,
|
|
238
245
|
{ [_h]: ["POST", "/challenges", 202] },
|
|
239
|
-
() => CreateChallengeRequest
|
|
240
|
-
() => CreateChallengeResponse
|
|
246
|
+
() => CreateChallengeRequest$,
|
|
247
|
+
() => CreateChallengeResponse$,
|
|
241
248
|
];
|
|
242
|
-
export var CreateConnector = [
|
|
249
|
+
export var CreateConnector$ = [
|
|
243
250
|
9,
|
|
244
251
|
n0,
|
|
245
252
|
_CCr,
|
|
246
253
|
{ [_h]: ["POST", "/connectors", 202] },
|
|
247
|
-
() => CreateConnectorRequest
|
|
248
|
-
() => CreateConnectorResponse
|
|
254
|
+
() => CreateConnectorRequest$,
|
|
255
|
+
() => CreateConnectorResponse$,
|
|
249
256
|
];
|
|
250
|
-
export var DeleteChallenge = [
|
|
257
|
+
export var DeleteChallenge$ = [
|
|
251
258
|
9,
|
|
252
259
|
n0,
|
|
253
260
|
_DC,
|
|
254
261
|
{ [_h]: ["DELETE", "/challenges/{ChallengeArn}", 202] },
|
|
255
|
-
() => DeleteChallengeRequest
|
|
262
|
+
() => DeleteChallengeRequest$,
|
|
256
263
|
() => __Unit,
|
|
257
264
|
];
|
|
258
|
-
export var DeleteConnector = [
|
|
265
|
+
export var DeleteConnector$ = [
|
|
259
266
|
9,
|
|
260
267
|
n0,
|
|
261
268
|
_DCe,
|
|
262
269
|
{ [_h]: ["DELETE", "/connectors/{ConnectorArn}", 202] },
|
|
263
|
-
() => DeleteConnectorRequest
|
|
270
|
+
() => DeleteConnectorRequest$,
|
|
264
271
|
() => __Unit,
|
|
265
272
|
];
|
|
266
|
-
export var GetChallengeMetadata = [
|
|
273
|
+
export var GetChallengeMetadata$ = [
|
|
267
274
|
9,
|
|
268
275
|
n0,
|
|
269
276
|
_GCM,
|
|
270
277
|
{ [_h]: ["GET", "/challengeMetadata/{ChallengeArn}", 200] },
|
|
271
|
-
() => GetChallengeMetadataRequest
|
|
272
|
-
() => GetChallengeMetadataResponse
|
|
278
|
+
() => GetChallengeMetadataRequest$,
|
|
279
|
+
() => GetChallengeMetadataResponse$,
|
|
273
280
|
];
|
|
274
|
-
export var GetChallengePassword = [
|
|
281
|
+
export var GetChallengePassword$ = [
|
|
275
282
|
9,
|
|
276
283
|
n0,
|
|
277
284
|
_GCP,
|
|
278
285
|
{ [_h]: ["GET", "/challengePasswords/{ChallengeArn}", 200] },
|
|
279
|
-
() => GetChallengePasswordRequest
|
|
280
|
-
() => GetChallengePasswordResponse
|
|
286
|
+
() => GetChallengePasswordRequest$,
|
|
287
|
+
() => GetChallengePasswordResponse$,
|
|
281
288
|
];
|
|
282
|
-
export var GetConnector = [
|
|
289
|
+
export var GetConnector$ = [
|
|
283
290
|
9,
|
|
284
291
|
n0,
|
|
285
292
|
_GC,
|
|
286
293
|
{ [_h]: ["GET", "/connectors/{ConnectorArn}", 200] },
|
|
287
|
-
() => GetConnectorRequest
|
|
288
|
-
() => GetConnectorResponse
|
|
294
|
+
() => GetConnectorRequest$,
|
|
295
|
+
() => GetConnectorResponse$,
|
|
289
296
|
];
|
|
290
|
-
export var ListChallengeMetadata = [
|
|
297
|
+
export var ListChallengeMetadata$ = [
|
|
291
298
|
9,
|
|
292
299
|
n0,
|
|
293
300
|
_LCM,
|
|
294
301
|
{ [_h]: ["GET", "/challengeMetadata", 200] },
|
|
295
|
-
() => ListChallengeMetadataRequest
|
|
296
|
-
() => ListChallengeMetadataResponse
|
|
302
|
+
() => ListChallengeMetadataRequest$,
|
|
303
|
+
() => ListChallengeMetadataResponse$,
|
|
297
304
|
];
|
|
298
|
-
export var ListConnectors = [
|
|
305
|
+
export var ListConnectors$ = [
|
|
299
306
|
9,
|
|
300
307
|
n0,
|
|
301
308
|
_LC,
|
|
302
309
|
{ [_h]: ["GET", "/connectors", 200] },
|
|
303
|
-
() => ListConnectorsRequest
|
|
304
|
-
() => ListConnectorsResponse
|
|
310
|
+
() => ListConnectorsRequest$,
|
|
311
|
+
() => ListConnectorsResponse$,
|
|
305
312
|
];
|
|
306
|
-
export var ListTagsForResource = [
|
|
313
|
+
export var ListTagsForResource$ = [
|
|
307
314
|
9,
|
|
308
315
|
n0,
|
|
309
316
|
_LTFR,
|
|
310
317
|
{ [_h]: ["GET", "/tags/{ResourceArn}", 200] },
|
|
311
|
-
() => ListTagsForResourceRequest
|
|
312
|
-
() => ListTagsForResourceResponse
|
|
318
|
+
() => ListTagsForResourceRequest$,
|
|
319
|
+
() => ListTagsForResourceResponse$,
|
|
313
320
|
];
|
|
314
|
-
export var TagResource = [
|
|
321
|
+
export var TagResource$ = [
|
|
315
322
|
9,
|
|
316
323
|
n0,
|
|
317
324
|
_TR,
|
|
318
325
|
{ [_h]: ["POST", "/tags/{ResourceArn}", 204] },
|
|
319
|
-
() => TagResourceRequest
|
|
326
|
+
() => TagResourceRequest$,
|
|
320
327
|
() => __Unit,
|
|
321
328
|
];
|
|
322
|
-
export var UntagResource = [
|
|
329
|
+
export var UntagResource$ = [
|
|
323
330
|
9,
|
|
324
331
|
n0,
|
|
325
332
|
_UR,
|
|
326
333
|
{ [_h]: ["DELETE", "/tags/{ResourceArn}", 204] },
|
|
327
|
-
() => UntagResourceRequest
|
|
334
|
+
() => UntagResourceRequest$,
|
|
328
335
|
() => __Unit,
|
|
329
336
|
];
|
|
@@ -5,7 +5,7 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
|
|
|
5
5
|
import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
|
|
8
|
-
import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ChecksumConstructor as __ChecksumConstructor, type
|
|
8
|
+
import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ChecksumConstructor as __ChecksumConstructor, type Decoder as __Decoder, type Encoder as __Encoder, type HashConstructor as __HashConstructor, type HttpHandlerOptions as __HttpHandlerOptions, type Logger as __Logger, type Provider as __Provider, type StreamCollector as __StreamCollector, type UrlParser as __UrlParser, AwsCredentialIdentityProvider, Provider, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { CreateChallengeCommandInput, CreateChallengeCommandOutput } from "./commands/CreateChallengeCommand";
|
|
11
11
|
import { CreateConnectorCommandInput, CreateConnectorCommandOutput } from "./commands/CreateConnectorCommand";
|
|
@@ -153,15 +153,6 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
153
153
|
* Optional extensions
|
|
154
154
|
*/
|
|
155
155
|
extensions?: RuntimeExtension[];
|
|
156
|
-
/**
|
|
157
|
-
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
158
|
-
* may be overridden. A default will always be set by the client.
|
|
159
|
-
* Available options depend on the service's supported protocols and will not be validated by
|
|
160
|
-
* the client.
|
|
161
|
-
* @alpha
|
|
162
|
-
*
|
|
163
|
-
*/
|
|
164
|
-
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
165
156
|
/**
|
|
166
157
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
167
158
|
*/
|
package/dist-types/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
9
9
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
10
10
|
export type { PcaConnectorScepExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
12
|
+
export * from "./schemas/schemas_0";
|
|
12
13
|
export * from "./pagination";
|
|
13
14
|
export * from "./models/enums";
|
|
14
15
|
export * from "./models/errors";
|
|
@@ -17,8 +17,13 @@ export declare const getRuntimeConfig: (config: PcaConnectorScepClientConfig) =>
|
|
|
17
17
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
18
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
19
19
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
20
|
-
apiVersion: string;
|
|
21
20
|
cacheMiddleware?: boolean | undefined;
|
|
21
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
22
|
+
protocolSettings: {
|
|
23
|
+
defaultNamespace?: string;
|
|
24
|
+
[setting: string]: unknown;
|
|
25
|
+
};
|
|
26
|
+
apiVersion: string;
|
|
22
27
|
urlParser: import("@smithy/types").UrlParser;
|
|
23
28
|
base64Decoder: import("@smithy/types").Decoder;
|
|
24
29
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -29,7 +34,6 @@ export declare const getRuntimeConfig: (config: PcaConnectorScepClientConfig) =>
|
|
|
29
34
|
profile?: string;
|
|
30
35
|
logger: import("@smithy/types").Logger;
|
|
31
36
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
33
37
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
34
38
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
35
39
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -19,8 +19,13 @@ export declare const getRuntimeConfig: (config: PcaConnectorScepClientConfig) =>
|
|
|
19
19
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
20
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
22
|
-
apiVersion: string;
|
|
23
22
|
cacheMiddleware?: boolean | undefined;
|
|
23
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
24
|
+
protocolSettings: {
|
|
25
|
+
defaultNamespace?: string;
|
|
26
|
+
[setting: string]: unknown;
|
|
27
|
+
};
|
|
28
|
+
apiVersion: string;
|
|
24
29
|
urlParser: import("@smithy/types").UrlParser;
|
|
25
30
|
base64Decoder: import("@smithy/types").Decoder;
|
|
26
31
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -31,7 +36,6 @@ export declare const getRuntimeConfig: (config: PcaConnectorScepClientConfig) =>
|
|
|
31
36
|
profile?: string;
|
|
32
37
|
logger: import("@smithy/types").Logger;
|
|
33
38
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
35
39
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
36
40
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
37
41
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -6,8 +6,13 @@ export declare const getRuntimeConfig: (config: PcaConnectorScepClientConfig) =>
|
|
|
6
6
|
runtime: string;
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
8
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
|
-
apiVersion: string;
|
|
10
9
|
cacheMiddleware?: boolean;
|
|
10
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
11
|
+
protocolSettings: {
|
|
12
|
+
defaultNamespace?: string;
|
|
13
|
+
[setting: string]: unknown;
|
|
14
|
+
};
|
|
15
|
+
apiVersion: string;
|
|
11
16
|
urlParser: import("@smithy/types").UrlParser;
|
|
12
17
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
13
18
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -27,7 +32,6 @@ export declare const getRuntimeConfig: (config: PcaConnectorScepClientConfig) =>
|
|
|
27
32
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
33
|
logger: import("@smithy/types").Logger;
|
|
29
34
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
31
35
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
32
36
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
37
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
1
2
|
import type { PcaConnectorScepClientConfig } from "./PcaConnectorScepClient";
|
|
2
3
|
/**
|
|
3
4
|
* @internal
|
|
@@ -14,7 +15,11 @@ export declare const getRuntimeConfig: (config: PcaConnectorScepClientConfig) =>
|
|
|
14
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PcaConnectorScepHttpAuthSchemeProvider;
|
|
15
16
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
17
|
logger: import("@smithy/types").Logger;
|
|
17
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").
|
|
18
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof AwsRestJsonProtocol;
|
|
19
|
+
protocolSettings: {
|
|
20
|
+
[setting: string]: unknown;
|
|
21
|
+
defaultNamespace?: string;
|
|
22
|
+
};
|
|
18
23
|
serviceId: string;
|
|
19
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
20
25
|
utf8Decoder: import("@smithy/types").Decoder;
|