@aws-sdk/client-acm 3.750.0 → 3.772.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 +21 -21
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -19,8 +19,8 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
19
19
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
20
|
|
|
21
21
|
// src/index.ts
|
|
22
|
-
var
|
|
23
|
-
__export(
|
|
22
|
+
var index_exports = {};
|
|
23
|
+
__export(index_exports, {
|
|
24
24
|
ACM: () => ACM,
|
|
25
25
|
ACMClient: () => ACMClient,
|
|
26
26
|
ACMServiceException: () => ACMServiceException,
|
|
@@ -78,7 +78,7 @@ __export(src_exports, {
|
|
|
78
78
|
waitForCertificateValidated: () => waitForCertificateValidated,
|
|
79
79
|
waitUntilCertificateValidated: () => waitUntilCertificateValidated
|
|
80
80
|
});
|
|
81
|
-
module.exports = __toCommonJS(
|
|
81
|
+
module.exports = __toCommonJS(index_exports);
|
|
82
82
|
|
|
83
83
|
// src/ACMClient.ts
|
|
84
84
|
var import_middleware_host_header = require("@aws-sdk/middleware-host-header");
|
|
@@ -205,9 +205,9 @@ var ACMClient = class extends import_smithy_client.Client {
|
|
|
205
205
|
this.middlewareStack.use(
|
|
206
206
|
(0, import_core.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
|
|
207
207
|
httpAuthSchemeParametersProvider: import_httpAuthSchemeProvider.defaultACMHttpAuthSchemeParametersProvider,
|
|
208
|
-
identityProviderConfigProvider: async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
208
|
+
identityProviderConfigProvider: /* @__PURE__ */ __name(async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
209
209
|
"aws.auth#sigv4": config.credentials
|
|
210
|
-
})
|
|
210
|
+
}), "identityProviderConfigProvider")
|
|
211
211
|
})
|
|
212
212
|
);
|
|
213
213
|
this.middlewareStack.use((0, import_core.getHttpSigningPlugin)(this.config));
|
|
@@ -1160,24 +1160,24 @@ var de_CertificateDetail = /* @__PURE__ */ __name((output, context) => {
|
|
|
1160
1160
|
return (0, import_smithy_client.take)(output, {
|
|
1161
1161
|
CertificateArn: import_smithy_client.expectString,
|
|
1162
1162
|
CertificateAuthorityArn: import_smithy_client.expectString,
|
|
1163
|
-
CreatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1163
|
+
CreatedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreatedAt"),
|
|
1164
1164
|
DomainName: import_smithy_client.expectString,
|
|
1165
1165
|
DomainValidationOptions: import_smithy_client._json,
|
|
1166
1166
|
ExtendedKeyUsages: import_smithy_client._json,
|
|
1167
1167
|
FailureReason: import_smithy_client.expectString,
|
|
1168
|
-
ImportedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1168
|
+
ImportedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ImportedAt"),
|
|
1169
1169
|
InUseBy: import_smithy_client._json,
|
|
1170
|
-
IssuedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1170
|
+
IssuedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "IssuedAt"),
|
|
1171
1171
|
Issuer: import_smithy_client.expectString,
|
|
1172
1172
|
KeyAlgorithm: import_smithy_client.expectString,
|
|
1173
1173
|
KeyUsages: import_smithy_client._json,
|
|
1174
|
-
NotAfter: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1175
|
-
NotBefore: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1174
|
+
NotAfter: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "NotAfter"),
|
|
1175
|
+
NotBefore: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "NotBefore"),
|
|
1176
1176
|
Options: import_smithy_client._json,
|
|
1177
1177
|
RenewalEligibility: import_smithy_client.expectString,
|
|
1178
|
-
RenewalSummary: (_) => de_RenewalSummary(_, context),
|
|
1178
|
+
RenewalSummary: /* @__PURE__ */ __name((_) => de_RenewalSummary(_, context), "RenewalSummary"),
|
|
1179
1179
|
RevocationReason: import_smithy_client.expectString,
|
|
1180
|
-
RevokedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1180
|
+
RevokedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "RevokedAt"),
|
|
1181
1181
|
Serial: import_smithy_client.expectString,
|
|
1182
1182
|
SignatureAlgorithm: import_smithy_client.expectString,
|
|
1183
1183
|
Status: import_smithy_client.expectString,
|
|
@@ -1189,20 +1189,20 @@ var de_CertificateDetail = /* @__PURE__ */ __name((output, context) => {
|
|
|
1189
1189
|
var de_CertificateSummary = /* @__PURE__ */ __name((output, context) => {
|
|
1190
1190
|
return (0, import_smithy_client.take)(output, {
|
|
1191
1191
|
CertificateArn: import_smithy_client.expectString,
|
|
1192
|
-
CreatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1192
|
+
CreatedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreatedAt"),
|
|
1193
1193
|
DomainName: import_smithy_client.expectString,
|
|
1194
1194
|
Exported: import_smithy_client.expectBoolean,
|
|
1195
1195
|
ExtendedKeyUsages: import_smithy_client._json,
|
|
1196
1196
|
HasAdditionalSubjectAlternativeNames: import_smithy_client.expectBoolean,
|
|
1197
|
-
ImportedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1197
|
+
ImportedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ImportedAt"),
|
|
1198
1198
|
InUse: import_smithy_client.expectBoolean,
|
|
1199
|
-
IssuedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1199
|
+
IssuedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "IssuedAt"),
|
|
1200
1200
|
KeyAlgorithm: import_smithy_client.expectString,
|
|
1201
1201
|
KeyUsages: import_smithy_client._json,
|
|
1202
|
-
NotAfter: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1203
|
-
NotBefore: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1202
|
+
NotAfter: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "NotAfter"),
|
|
1203
|
+
NotBefore: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "NotBefore"),
|
|
1204
1204
|
RenewalEligibility: import_smithy_client.expectString,
|
|
1205
|
-
RevokedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1205
|
+
RevokedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "RevokedAt"),
|
|
1206
1206
|
Status: import_smithy_client.expectString,
|
|
1207
1207
|
SubjectAlternativeNameSummaries: import_smithy_client._json,
|
|
1208
1208
|
Type: import_smithy_client.expectString
|
|
@@ -1216,12 +1216,12 @@ var de_CertificateSummaryList = /* @__PURE__ */ __name((output, context) => {
|
|
|
1216
1216
|
}, "de_CertificateSummaryList");
|
|
1217
1217
|
var de_DescribeCertificateResponse = /* @__PURE__ */ __name((output, context) => {
|
|
1218
1218
|
return (0, import_smithy_client.take)(output, {
|
|
1219
|
-
Certificate: (_) => de_CertificateDetail(_, context)
|
|
1219
|
+
Certificate: /* @__PURE__ */ __name((_) => de_CertificateDetail(_, context), "Certificate")
|
|
1220
1220
|
});
|
|
1221
1221
|
}, "de_DescribeCertificateResponse");
|
|
1222
1222
|
var de_ListCertificatesResponse = /* @__PURE__ */ __name((output, context) => {
|
|
1223
1223
|
return (0, import_smithy_client.take)(output, {
|
|
1224
|
-
CertificateSummaryList: (_) => de_CertificateSummaryList(_, context),
|
|
1224
|
+
CertificateSummaryList: /* @__PURE__ */ __name((_) => de_CertificateSummaryList(_, context), "CertificateSummaryList"),
|
|
1225
1225
|
NextToken: import_smithy_client.expectString
|
|
1226
1226
|
});
|
|
1227
1227
|
}, "de_ListCertificatesResponse");
|
|
@@ -1230,7 +1230,7 @@ var de_RenewalSummary = /* @__PURE__ */ __name((output, context) => {
|
|
|
1230
1230
|
DomainValidationOptions: import_smithy_client._json,
|
|
1231
1231
|
RenewalStatus: import_smithy_client.expectString,
|
|
1232
1232
|
RenewalStatusReason: import_smithy_client.expectString,
|
|
1233
|
-
UpdatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_)))
|
|
1233
|
+
UpdatedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "UpdatedAt")
|
|
1234
1234
|
});
|
|
1235
1235
|
}, "de_RenewalSummary");
|
|
1236
1236
|
var deserializeMetadata = /* @__PURE__ */ __name((output) => ({
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-acm",
|
|
3
3
|
"description": "AWS SDK for JavaScript Acm Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.772.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-acm",
|
|
@@ -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.
|
|
23
|
+
"@aws-sdk/core": "3.758.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.772.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.734.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.734.0",
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.772.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.758.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.734.0",
|
|
30
30
|
"@aws-sdk/types": "3.734.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.743.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.734.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.758.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.0.1",
|
|
35
|
-
"@smithy/core": "^3.1.
|
|
35
|
+
"@smithy/core": "^3.1.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.0.1",
|
|
37
37
|
"@smithy/hash-node": "^4.0.1",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.0.1",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.0.1",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.0.
|
|
41
|
-
"@smithy/middleware-retry": "^4.0.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.0.6",
|
|
41
|
+
"@smithy/middleware-retry": "^4.0.7",
|
|
42
42
|
"@smithy/middleware-serde": "^4.0.2",
|
|
43
43
|
"@smithy/middleware-stack": "^4.0.1",
|
|
44
44
|
"@smithy/node-config-provider": "^4.0.1",
|
|
45
|
-
"@smithy/node-http-handler": "^4.0.
|
|
45
|
+
"@smithy/node-http-handler": "^4.0.3",
|
|
46
46
|
"@smithy/protocol-http": "^5.0.1",
|
|
47
|
-
"@smithy/smithy-client": "^4.1.
|
|
47
|
+
"@smithy/smithy-client": "^4.1.6",
|
|
48
48
|
"@smithy/types": "^4.1.0",
|
|
49
49
|
"@smithy/url-parser": "^4.0.1",
|
|
50
50
|
"@smithy/util-base64": "^4.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.7",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.7",
|
|
55
55
|
"@smithy/util-endpoints": "^3.0.1",
|
|
56
56
|
"@smithy/util-middleware": "^4.0.1",
|
|
57
57
|
"@smithy/util-retry": "^4.0.1",
|