@aws-sdk/client-acm 3.948.0 → 3.953.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 +260 -190
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/AddTagsToCertificateCommand.js +2 -2
- package/dist-es/commands/DeleteCertificateCommand.js +2 -2
- package/dist-es/commands/DescribeCertificateCommand.js +2 -2
- package/dist-es/commands/ExportCertificateCommand.js +2 -2
- package/dist-es/commands/GetAccountConfigurationCommand.js +2 -2
- package/dist-es/commands/GetCertificateCommand.js +2 -2
- package/dist-es/commands/ImportCertificateCommand.js +2 -2
- package/dist-es/commands/ListCertificatesCommand.js +2 -2
- package/dist-es/commands/ListTagsForCertificateCommand.js +2 -2
- package/dist-es/commands/PutAccountConfigurationCommand.js +2 -2
- package/dist-es/commands/RemoveTagsFromCertificateCommand.js +2 -2
- package/dist-es/commands/RenewCertificateCommand.js +2 -2
- package/dist-es/commands/RequestCertificateCommand.js +2 -2
- package/dist-es/commands/ResendValidationEmailCommand.js +2 -2
- package/dist-es/commands/RevokeCertificateCommand.js +2 -2
- package/dist-es/commands/UpdateCertificateOptionsCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +138 -138
- package/dist-types/ACMClient.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 +71 -90
- package/dist-types/ts3.4/ACMClient.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 +70 -91
- package/package.json +35 -35
|
@@ -26,12 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_1Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.acm",
|
|
32
|
+
version: "2015-12-08",
|
|
33
|
+
serviceTarget: "CertificateManager",
|
|
34
|
+
},
|
|
35
35
|
serviceId: config?.serviceId ?? "ACM",
|
|
36
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -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 { AddTagsToCertificate } from "../schemas/schemas_0";
|
|
4
|
+
import { AddTagsToCertificate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AddTagsToCertificateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AddTagsToCertificateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CertificateManager", "AddTagsToCertificate", {})
|
|
13
13
|
.n("ACMClient", "AddTagsToCertificateCommand")
|
|
14
|
-
.sc(AddTagsToCertificate)
|
|
14
|
+
.sc(AddTagsToCertificate$)
|
|
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 { DeleteCertificate } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteCertificate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteCertificateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteCertificateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CertificateManager", "DeleteCertificate", {})
|
|
13
13
|
.n("ACMClient", "DeleteCertificateCommand")
|
|
14
|
-
.sc(DeleteCertificate)
|
|
14
|
+
.sc(DeleteCertificate$)
|
|
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 { DescribeCertificate } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeCertificate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeCertificateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeCertificateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CertificateManager", "DescribeCertificate", {})
|
|
13
13
|
.n("ACMClient", "DescribeCertificateCommand")
|
|
14
|
-
.sc(DescribeCertificate)
|
|
14
|
+
.sc(DescribeCertificate$)
|
|
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 { ExportCertificate } from "../schemas/schemas_0";
|
|
4
|
+
import { ExportCertificate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ExportCertificateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ExportCertificateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CertificateManager", "ExportCertificate", {})
|
|
13
13
|
.n("ACMClient", "ExportCertificateCommand")
|
|
14
|
-
.sc(ExportCertificate)
|
|
14
|
+
.sc(ExportCertificate$)
|
|
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 { GetAccountConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { GetAccountConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetAccountConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetAccountConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CertificateManager", "GetAccountConfiguration", {})
|
|
13
13
|
.n("ACMClient", "GetAccountConfigurationCommand")
|
|
14
|
-
.sc(GetAccountConfiguration)
|
|
14
|
+
.sc(GetAccountConfiguration$)
|
|
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 { GetCertificate } from "../schemas/schemas_0";
|
|
4
|
+
import { GetCertificate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetCertificateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetCertificateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CertificateManager", "GetCertificate", {})
|
|
13
13
|
.n("ACMClient", "GetCertificateCommand")
|
|
14
|
-
.sc(GetCertificate)
|
|
14
|
+
.sc(GetCertificate$)
|
|
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 { ImportCertificate } from "../schemas/schemas_0";
|
|
4
|
+
import { ImportCertificate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ImportCertificateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ImportCertificateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CertificateManager", "ImportCertificate", {})
|
|
13
13
|
.n("ACMClient", "ImportCertificateCommand")
|
|
14
|
-
.sc(ImportCertificate)
|
|
14
|
+
.sc(ImportCertificate$)
|
|
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 { ListCertificates } from "../schemas/schemas_0";
|
|
4
|
+
import { ListCertificates$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListCertificatesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListCertificatesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CertificateManager", "ListCertificates", {})
|
|
13
13
|
.n("ACMClient", "ListCertificatesCommand")
|
|
14
|
-
.sc(ListCertificates)
|
|
14
|
+
.sc(ListCertificates$)
|
|
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 { ListTagsForCertificate } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForCertificate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForCertificateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForCertificateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CertificateManager", "ListTagsForCertificate", {})
|
|
13
13
|
.n("ACMClient", "ListTagsForCertificateCommand")
|
|
14
|
-
.sc(ListTagsForCertificate)
|
|
14
|
+
.sc(ListTagsForCertificate$)
|
|
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 { PutAccountConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { PutAccountConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutAccountConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutAccountConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CertificateManager", "PutAccountConfiguration", {})
|
|
13
13
|
.n("ACMClient", "PutAccountConfigurationCommand")
|
|
14
|
-
.sc(PutAccountConfiguration)
|
|
14
|
+
.sc(PutAccountConfiguration$)
|
|
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 { RemoveTagsFromCertificate } from "../schemas/schemas_0";
|
|
4
|
+
import { RemoveTagsFromCertificate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RemoveTagsFromCertificateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RemoveTagsFromCertificateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CertificateManager", "RemoveTagsFromCertificate", {})
|
|
13
13
|
.n("ACMClient", "RemoveTagsFromCertificateCommand")
|
|
14
|
-
.sc(RemoveTagsFromCertificate)
|
|
14
|
+
.sc(RemoveTagsFromCertificate$)
|
|
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 { RenewCertificate } from "../schemas/schemas_0";
|
|
4
|
+
import { RenewCertificate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RenewCertificateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RenewCertificateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CertificateManager", "RenewCertificate", {})
|
|
13
13
|
.n("ACMClient", "RenewCertificateCommand")
|
|
14
|
-
.sc(RenewCertificate)
|
|
14
|
+
.sc(RenewCertificate$)
|
|
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 { RequestCertificate } from "../schemas/schemas_0";
|
|
4
|
+
import { RequestCertificate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RequestCertificateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RequestCertificateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CertificateManager", "RequestCertificate", {})
|
|
13
13
|
.n("ACMClient", "RequestCertificateCommand")
|
|
14
|
-
.sc(RequestCertificate)
|
|
14
|
+
.sc(RequestCertificate$)
|
|
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 { ResendValidationEmail } from "../schemas/schemas_0";
|
|
4
|
+
import { ResendValidationEmail$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ResendValidationEmailCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ResendValidationEmailCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CertificateManager", "ResendValidationEmail", {})
|
|
13
13
|
.n("ACMClient", "ResendValidationEmailCommand")
|
|
14
|
-
.sc(ResendValidationEmail)
|
|
14
|
+
.sc(ResendValidationEmail$)
|
|
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 { RevokeCertificate } from "../schemas/schemas_0";
|
|
4
|
+
import { RevokeCertificate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RevokeCertificateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RevokeCertificateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CertificateManager", "RevokeCertificate", {})
|
|
13
13
|
.n("ACMClient", "RevokeCertificateCommand")
|
|
14
|
-
.sc(RevokeCertificate)
|
|
14
|
+
.sc(RevokeCertificate$)
|
|
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 { UpdateCertificateOptions } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateCertificateOptions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateCertificateOptionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateCertificateOptionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CertificateManager", "UpdateCertificateOptions", {})
|
|
13
13
|
.n("ACMClient", "UpdateCertificateOptionsCommand")
|
|
14
|
-
.sc(UpdateCertificateOptions)
|
|
14
|
+
.sc(UpdateCertificateOptions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,12 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
26
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.acm",
|
|
29
|
+
version: "2015-12-08",
|
|
30
|
+
serviceTarget: "CertificateManager",
|
|
31
|
+
},
|
|
32
32
|
serviceId: config?.serviceId ?? "ACM",
|
|
33
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
34
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|