@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.
Files changed (36) hide show
  1. package/dist-cjs/index.js +260 -190
  2. package/dist-cjs/runtimeConfig.shared.js +6 -6
  3. package/dist-es/commands/AddTagsToCertificateCommand.js +2 -2
  4. package/dist-es/commands/DeleteCertificateCommand.js +2 -2
  5. package/dist-es/commands/DescribeCertificateCommand.js +2 -2
  6. package/dist-es/commands/ExportCertificateCommand.js +2 -2
  7. package/dist-es/commands/GetAccountConfigurationCommand.js +2 -2
  8. package/dist-es/commands/GetCertificateCommand.js +2 -2
  9. package/dist-es/commands/ImportCertificateCommand.js +2 -2
  10. package/dist-es/commands/ListCertificatesCommand.js +2 -2
  11. package/dist-es/commands/ListTagsForCertificateCommand.js +2 -2
  12. package/dist-es/commands/PutAccountConfigurationCommand.js +2 -2
  13. package/dist-es/commands/RemoveTagsFromCertificateCommand.js +2 -2
  14. package/dist-es/commands/RenewCertificateCommand.js +2 -2
  15. package/dist-es/commands/RequestCertificateCommand.js +2 -2
  16. package/dist-es/commands/ResendValidationEmailCommand.js +2 -2
  17. package/dist-es/commands/RevokeCertificateCommand.js +2 -2
  18. package/dist-es/commands/UpdateCertificateOptionsCommand.js +2 -2
  19. package/dist-es/index.js +1 -0
  20. package/dist-es/runtimeConfig.shared.js +6 -6
  21. package/dist-es/schemas/schemas_0.js +138 -138
  22. package/dist-types/ACMClient.d.ts +1 -10
  23. package/dist-types/index.d.ts +1 -0
  24. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  25. package/dist-types/runtimeConfig.d.ts +6 -2
  26. package/dist-types/runtimeConfig.native.d.ts +6 -2
  27. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  28. package/dist-types/schemas/schemas_0.d.ts +71 -90
  29. package/dist-types/ts3.4/ACMClient.d.ts +0 -4
  30. package/dist-types/ts3.4/index.d.ts +1 -0
  31. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  32. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  33. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  34. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  35. package/dist-types/ts3.4/schemas/schemas_0.d.ts +70 -91
  36. 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
- new protocols_1.AwsJson1_1Protocol({
31
- defaultNamespace: "com.amazonaws.acm",
32
- serviceTarget: "CertificateManager",
33
- awsQueryCompatible: false,
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
@@ -1,6 +1,7 @@
1
1
  export * from "./ACMClient";
2
2
  export * from "./ACM";
3
3
  export * from "./commands";
4
+ export * from "./schemas/schemas_0";
4
5
  export * from "./pagination";
5
6
  export * from "./waiters";
6
7
  export * from "./models/enums";
@@ -23,12 +23,12 @@ export const getRuntimeConfig = (config) => {
23
23
  },
24
24
  ],
25
25
  logger: config?.logger ?? new NoOpLogger(),
26
- protocol: config?.protocol ??
27
- new AwsJson1_1Protocol({
28
- defaultNamespace: "com.amazonaws.acm",
29
- serviceTarget: "CertificateManager",
30
- awsQueryCompatible: false,
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,