@aws-sdk/client-acm 3.1076.0 → 3.1077.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 (166) hide show
  1. package/README.md +161 -7
  2. package/dist-cjs/index.js +1406 -152
  3. package/dist-es/ACM.js +60 -0
  4. package/dist-es/commands/AddTagsToCertificateCommand.js +4 -1
  5. package/dist-es/commands/CreateAcmeDomainValidationCommand.js +19 -0
  6. package/dist-es/commands/CreateAcmeEndpointCommand.js +19 -0
  7. package/dist-es/commands/CreateAcmeExternalAccountBindingCommand.js +19 -0
  8. package/dist-es/commands/DeleteAcmeDomainValidationCommand.js +19 -0
  9. package/dist-es/commands/DeleteAcmeEndpointCommand.js +19 -0
  10. package/dist-es/commands/DeleteAcmeExternalAccountBindingCommand.js +19 -0
  11. package/dist-es/commands/DeleteCertificateCommand.js +4 -1
  12. package/dist-es/commands/DescribeAcmeAccountCommand.js +19 -0
  13. package/dist-es/commands/DescribeAcmeDomainValidationCommand.js +19 -0
  14. package/dist-es/commands/DescribeAcmeEndpointCommand.js +19 -0
  15. package/dist-es/commands/DescribeAcmeExternalAccountBindingCommand.js +19 -0
  16. package/dist-es/commands/DescribeCertificateCommand.js +4 -1
  17. package/dist-es/commands/ExportCertificateCommand.js +4 -1
  18. package/dist-es/commands/GetAccountConfigurationCommand.js +4 -1
  19. package/dist-es/commands/GetAcmeExternalAccountBindingCredentialsCommand.js +19 -0
  20. package/dist-es/commands/GetCertificateCommand.js +4 -1
  21. package/dist-es/commands/ImportCertificateCommand.js +4 -1
  22. package/dist-es/commands/ListAcmeAccountsCommand.js +19 -0
  23. package/dist-es/commands/ListAcmeDomainValidationsCommand.js +19 -0
  24. package/dist-es/commands/ListAcmeEndpointsCommand.js +19 -0
  25. package/dist-es/commands/ListAcmeExternalAccountBindingsCommand.js +19 -0
  26. package/dist-es/commands/ListCertificatesCommand.js +4 -1
  27. package/dist-es/commands/ListTagsForCertificateCommand.js +4 -1
  28. package/dist-es/commands/ListTagsForResourceCommand.js +19 -0
  29. package/dist-es/commands/PutAccountConfigurationCommand.js +4 -1
  30. package/dist-es/commands/RemoveTagsFromCertificateCommand.js +4 -1
  31. package/dist-es/commands/RenewCertificateCommand.js +4 -1
  32. package/dist-es/commands/RequestCertificateCommand.js +4 -1
  33. package/dist-es/commands/ResendValidationEmailCommand.js +4 -1
  34. package/dist-es/commands/RevokeAcmeAccountCommand.js +19 -0
  35. package/dist-es/commands/RevokeAcmeExternalAccountBindingCommand.js +19 -0
  36. package/dist-es/commands/RevokeCertificateCommand.js +4 -1
  37. package/dist-es/commands/SearchCertificatesCommand.js +4 -1
  38. package/dist-es/commands/TagResourceCommand.js +19 -0
  39. package/dist-es/commands/UntagResourceCommand.js +19 -0
  40. package/dist-es/commands/UpdateAcmeDomainValidationCommand.js +19 -0
  41. package/dist-es/commands/UpdateAcmeEndpointCommand.js +19 -0
  42. package/dist-es/commands/UpdateCertificateOptionsCommand.js +4 -1
  43. package/dist-es/commands/index.js +22 -0
  44. package/dist-es/endpoint/EndpointParameters.js +4 -1
  45. package/dist-es/endpoint/bdd.js +27 -35
  46. package/dist-es/endpoint/endpointResolver.js +1 -1
  47. package/dist-es/models/enums.js +60 -0
  48. package/dist-es/models/errors.js +37 -12
  49. package/dist-es/pagination/ListAcmeAccountsPaginator.js +4 -0
  50. package/dist-es/pagination/ListAcmeDomainValidationsPaginator.js +4 -0
  51. package/dist-es/pagination/ListAcmeEndpointsPaginator.js +4 -0
  52. package/dist-es/pagination/ListAcmeExternalAccountBindingsPaginator.js +4 -0
  53. package/dist-es/pagination/index.js +4 -0
  54. package/dist-es/runtimeConfig.browser.js +0 -2
  55. package/dist-es/runtimeConfig.js +1 -2
  56. package/dist-es/runtimeConfig.native.js +0 -2
  57. package/dist-es/runtimeConfig.shared.js +2 -0
  58. package/dist-es/schemas/schemas_0.js +512 -39
  59. package/dist-es/waiters/index.js +4 -0
  60. package/dist-es/waiters/waitForAcmeDomainValidationDeleted.js +34 -0
  61. package/dist-es/waiters/waitForAcmeDomainValidationValidated.js +49 -0
  62. package/dist-es/waiters/waitForAcmeEndpointActive.js +49 -0
  63. package/dist-es/waiters/waitForAcmeEndpointDeleted.js +34 -0
  64. package/dist-types/ACM.d.ts +208 -0
  65. package/dist-types/ACMClient.d.ts +24 -2
  66. package/dist-types/commands/AddTagsToCertificateCommand.d.ts +4 -1
  67. package/dist-types/commands/CreateAcmeDomainValidationCommand.d.ts +115 -0
  68. package/dist-types/commands/CreateAcmeEndpointCommand.d.ts +115 -0
  69. package/dist-types/commands/CreateAcmeExternalAccountBindingCommand.d.ts +118 -0
  70. package/dist-types/commands/DeleteAcmeDomainValidationCommand.d.ts +89 -0
  71. package/dist-types/commands/DeleteAcmeEndpointCommand.d.ts +89 -0
  72. package/dist-types/commands/DeleteAcmeExternalAccountBindingCommand.d.ts +86 -0
  73. package/dist-types/commands/DeleteCertificateCommand.d.ts +4 -1
  74. package/dist-types/commands/DescribeAcmeAccountCommand.d.ts +101 -0
  75. package/dist-types/commands/DescribeAcmeDomainValidationCommand.d.ts +118 -0
  76. package/dist-types/commands/DescribeAcmeEndpointCommand.d.ts +113 -0
  77. package/dist-types/commands/DescribeAcmeExternalAccountBindingCommand.d.ts +100 -0
  78. package/dist-types/commands/DescribeCertificateCommand.d.ts +6 -0
  79. package/dist-types/commands/ExportCertificateCommand.d.ts +3 -0
  80. package/dist-types/commands/GetAcmeExternalAccountBindingCredentialsCommand.d.ts +92 -0
  81. package/dist-types/commands/GetCertificateCommand.d.ts +3 -0
  82. package/dist-types/commands/ImportCertificateCommand.d.ts +3 -0
  83. package/dist-types/commands/ListAcmeAccountsCommand.d.ts +105 -0
  84. package/dist-types/commands/ListAcmeDomainValidationsCommand.d.ts +123 -0
  85. package/dist-types/commands/ListAcmeEndpointsCommand.d.ts +114 -0
  86. package/dist-types/commands/ListAcmeExternalAccountBindingsCommand.d.ts +105 -0
  87. package/dist-types/commands/ListCertificatesCommand.d.ts +5 -1
  88. package/dist-types/commands/ListTagsForCertificateCommand.d.ts +4 -1
  89. package/dist-types/commands/ListTagsForResourceCommand.d.ts +87 -0
  90. package/dist-types/commands/RemoveTagsFromCertificateCommand.d.ts +4 -1
  91. package/dist-types/commands/RenewCertificateCommand.d.ts +3 -0
  92. package/dist-types/commands/ResendValidationEmailCommand.d.ts +3 -0
  93. package/dist-types/commands/RevokeAcmeAccountCommand.d.ts +93 -0
  94. package/dist-types/commands/RevokeAcmeExternalAccountBindingCommand.d.ts +92 -0
  95. package/dist-types/commands/RevokeCertificateCommand.d.ts +3 -0
  96. package/dist-types/commands/SearchCertificatesCommand.d.ts +10 -1
  97. package/dist-types/commands/TagResourceCommand.d.ts +89 -0
  98. package/dist-types/commands/UntagResourceCommand.d.ts +83 -0
  99. package/dist-types/commands/UpdateAcmeDomainValidationCommand.d.ts +102 -0
  100. package/dist-types/commands/UpdateAcmeEndpointCommand.d.ts +101 -0
  101. package/dist-types/commands/UpdateCertificateOptionsCommand.d.ts +3 -0
  102. package/dist-types/commands/index.d.ts +22 -0
  103. package/dist-types/endpoint/EndpointParameters.d.ts +14 -5
  104. package/dist-types/models/enums.d.ts +148 -0
  105. package/dist-types/models/errors.d.ts +37 -12
  106. package/dist-types/models/models_0.d.ts +1284 -67
  107. package/dist-types/pagination/ListAcmeAccountsPaginator.d.ts +7 -0
  108. package/dist-types/pagination/ListAcmeDomainValidationsPaginator.d.ts +7 -0
  109. package/dist-types/pagination/ListAcmeEndpointsPaginator.d.ts +7 -0
  110. package/dist-types/pagination/ListAcmeExternalAccountBindingsPaginator.d.ts +7 -0
  111. package/dist-types/pagination/index.d.ts +4 -0
  112. package/dist-types/runtimeConfig.browser.d.ts +5 -1
  113. package/dist-types/runtimeConfig.d.ts +5 -1
  114. package/dist-types/runtimeConfig.native.d.ts +5 -1
  115. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  116. package/dist-types/schemas/schemas_0.d.ts +76 -0
  117. package/dist-types/ts3.4/ACM.d.ts +452 -0
  118. package/dist-types/ts3.4/ACMClient.d.ts +132 -0
  119. package/dist-types/ts3.4/commands/CreateAcmeDomainValidationCommand.d.ts +53 -0
  120. package/dist-types/ts3.4/commands/CreateAcmeEndpointCommand.d.ts +53 -0
  121. package/dist-types/ts3.4/commands/CreateAcmeExternalAccountBindingCommand.d.ts +53 -0
  122. package/dist-types/ts3.4/commands/DeleteAcmeDomainValidationCommand.d.ts +49 -0
  123. package/dist-types/ts3.4/commands/DeleteAcmeEndpointCommand.d.ts +48 -0
  124. package/dist-types/ts3.4/commands/DeleteAcmeExternalAccountBindingCommand.d.ts +49 -0
  125. package/dist-types/ts3.4/commands/DescribeAcmeAccountCommand.d.ts +53 -0
  126. package/dist-types/ts3.4/commands/DescribeAcmeDomainValidationCommand.d.ts +53 -0
  127. package/dist-types/ts3.4/commands/DescribeAcmeEndpointCommand.d.ts +53 -0
  128. package/dist-types/ts3.4/commands/DescribeAcmeExternalAccountBindingCommand.d.ts +53 -0
  129. package/dist-types/ts3.4/commands/GetAcmeExternalAccountBindingCredentialsCommand.d.ts +53 -0
  130. package/dist-types/ts3.4/commands/ListAcmeAccountsCommand.d.ts +52 -0
  131. package/dist-types/ts3.4/commands/ListAcmeDomainValidationsCommand.d.ts +53 -0
  132. package/dist-types/ts3.4/commands/ListAcmeEndpointsCommand.d.ts +53 -0
  133. package/dist-types/ts3.4/commands/ListAcmeExternalAccountBindingsCommand.d.ts +53 -0
  134. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +53 -0
  135. package/dist-types/ts3.4/commands/RevokeAcmeAccountCommand.d.ts +48 -0
  136. package/dist-types/ts3.4/commands/RevokeAcmeExternalAccountBindingCommand.d.ts +49 -0
  137. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  138. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +47 -0
  139. package/dist-types/ts3.4/commands/UpdateAcmeDomainValidationCommand.d.ts +49 -0
  140. package/dist-types/ts3.4/commands/UpdateAcmeEndpointCommand.d.ts +48 -0
  141. package/dist-types/ts3.4/commands/index.d.ts +22 -0
  142. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +14 -5
  143. package/dist-types/ts3.4/models/enums.d.ts +80 -0
  144. package/dist-types/ts3.4/models/errors.d.ts +22 -7
  145. package/dist-types/ts3.4/models/models_0.d.ts +395 -5
  146. package/dist-types/ts3.4/pagination/ListAcmeAccountsPaginator.d.ts +11 -0
  147. package/dist-types/ts3.4/pagination/ListAcmeDomainValidationsPaginator.d.ts +11 -0
  148. package/dist-types/ts3.4/pagination/ListAcmeEndpointsPaginator.d.ts +11 -0
  149. package/dist-types/ts3.4/pagination/ListAcmeExternalAccountBindingsPaginator.d.ts +11 -0
  150. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  151. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +11 -1
  152. package/dist-types/ts3.4/runtimeConfig.d.ts +11 -1
  153. package/dist-types/ts3.4/runtimeConfig.native.d.ts +11 -1
  154. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  155. package/dist-types/ts3.4/schemas/schemas_0.d.ts +76 -0
  156. package/dist-types/ts3.4/waiters/index.d.ts +4 -0
  157. package/dist-types/ts3.4/waiters/waitForAcmeDomainValidationDeleted.d.ts +18 -0
  158. package/dist-types/ts3.4/waiters/waitForAcmeDomainValidationValidated.d.ts +17 -0
  159. package/dist-types/ts3.4/waiters/waitForAcmeEndpointActive.d.ts +17 -0
  160. package/dist-types/ts3.4/waiters/waitForAcmeEndpointDeleted.d.ts +18 -0
  161. package/dist-types/waiters/index.d.ts +4 -0
  162. package/dist-types/waiters/waitForAcmeDomainValidationDeleted.d.ts +16 -0
  163. package/dist-types/waiters/waitForAcmeDomainValidationValidated.d.ts +15 -0
  164. package/dist-types/waiters/waitForAcmeEndpointActive.d.ts +15 -0
  165. package/dist-types/waiters/waitForAcmeEndpointDeleted.d.ts +16 -0
  166. package/package.json +6 -8
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListAcmeAccountsCommandInput, ListAcmeAccountsCommandOutput } from "../commands/ListAcmeAccountsCommand";
3
+ import type { ACMPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListAcmeAccounts: (config: ACMPaginationConfiguration, input: ListAcmeAccountsCommandInput, ...rest: any[]) => Paginator<ListAcmeAccountsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListAcmeDomainValidationsCommandInput, ListAcmeDomainValidationsCommandOutput } from "../commands/ListAcmeDomainValidationsCommand";
3
+ import type { ACMPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListAcmeDomainValidations: (config: ACMPaginationConfiguration, input: ListAcmeDomainValidationsCommandInput, ...rest: any[]) => Paginator<ListAcmeDomainValidationsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListAcmeEndpointsCommandInput, ListAcmeEndpointsCommandOutput } from "../commands/ListAcmeEndpointsCommand";
3
+ import type { ACMPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListAcmeEndpoints: (config: ACMPaginationConfiguration, input: ListAcmeEndpointsCommandInput, ...rest: any[]) => Paginator<ListAcmeEndpointsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListAcmeExternalAccountBindingsCommandInput, ListAcmeExternalAccountBindingsCommandOutput } from "../commands/ListAcmeExternalAccountBindingsCommand";
3
+ import type { ACMPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListAcmeExternalAccountBindings: (config: ACMPaginationConfiguration, input: ListAcmeExternalAccountBindingsCommandInput, ...rest: any[]) => Paginator<ListAcmeExternalAccountBindingsCommandOutput>;
@@ -1,3 +1,7 @@
1
1
  export * from "./Interfaces";
2
+ export * from "./ListAcmeAccountsPaginator";
3
+ export * from "./ListAcmeDomainValidationsPaginator";
4
+ export * from "./ListAcmeEndpointsPaginator";
5
+ export * from "./ListAcmeExternalAccountBindingsPaginator";
2
6
  export * from "./ListCertificatesPaginator";
3
7
  export * from "./SearchCertificatesPaginator";
@@ -13,7 +13,6 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
13
13
  region: string | import("@smithy/types").Provider<any>;
14
14
  requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
15
15
  retryMode: string | import("@smithy/types").Provider<string>;
16
- sha256: import("@smithy/types").HashConstructor;
17
16
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
18
17
  useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
19
18
  useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
@@ -24,6 +23,7 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
24
23
  [setting: string]: unknown;
25
24
  };
26
25
  apiVersion: string;
26
+ sha256: import("@smithy/types").HashConstructor;
27
27
  urlParser: import("@smithy/types").UrlParser;
28
28
  base64Decoder: import("@smithy/types").Decoder;
29
29
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -52,4 +52,8 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
52
52
  systemClockOffset?: number;
53
53
  signingRegion?: string;
54
54
  signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
55
+ clientContextParams?: {
56
+ serviceType?: string | undefined | import("@smithy/types").Provider<string | undefined>;
57
+ };
58
+ serviceType?: string | undefined | import("@smithy/types").Provider<string | undefined>;
55
59
  };
@@ -14,7 +14,6 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
14
14
  region: string | import("@smithy/types").Provider<string>;
15
15
  requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
16
16
  retryMode: string | import("@smithy/types").Provider<string>;
17
- sha256: import("@smithy/types").HashConstructor;
18
17
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
19
18
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
19
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
@@ -26,6 +25,7 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
26
25
  [setting: string]: unknown;
27
26
  };
28
27
  apiVersion: string;
28
+ sha256: import("@smithy/types").HashConstructor;
29
29
  urlParser: import("@smithy/types").UrlParser;
30
30
  base64Decoder: import("@smithy/types").Decoder;
31
31
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -52,4 +52,8 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
52
52
  systemClockOffset?: number;
53
53
  signingRegion?: string;
54
54
  signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
55
+ clientContextParams?: {
56
+ serviceType?: string | undefined | import("@smithy/types").Provider<string | undefined>;
57
+ };
58
+ serviceType?: string | undefined | import("@smithy/types").Provider<string | undefined>;
55
59
  };
@@ -4,7 +4,6 @@ import type { ACMClientConfig } from "./ACMClient";
4
4
  */
5
5
  export declare const getRuntimeConfig: (config: ACMClientConfig) => {
6
6
  runtime: string;
7
- sha256: import("@smithy/types").HashConstructor;
8
7
  requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
8
  cacheMiddleware?: boolean;
10
9
  protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
@@ -13,6 +12,7 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
13
12
  [setting: string]: unknown;
14
13
  };
15
14
  apiVersion: string;
15
+ sha256: import("@smithy/types").HashConstructor;
16
16
  urlParser: import("@smithy/types").UrlParser;
17
17
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
18
18
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
@@ -51,4 +51,8 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
51
51
  systemClockOffset?: number;
52
52
  signingRegion?: string;
53
53
  signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
54
+ clientContextParams?: {
55
+ serviceType?: string | undefined | import("@smithy/types").Provider<string | undefined>;
56
+ };
57
+ serviceType?: string | undefined | import("@smithy/types").Provider<string | undefined>;
54
58
  };
@@ -21,6 +21,7 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
21
21
  defaultNamespace?: string;
22
22
  };
23
23
  serviceId: string;
24
+ sha256: import("@smithy/types").HashConstructor;
24
25
  urlParser: import("@smithy/types").UrlParser;
25
26
  utf8Decoder: import("@smithy/types").Decoder;
26
27
  utf8Encoder: (input: Uint8Array | string) => string;
@@ -3,6 +3,7 @@ import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema, S
3
3
  export declare var ACMServiceException$: StaticErrorSchema;
4
4
  export declare var AccessDeniedException$: StaticErrorSchema;
5
5
  export declare var ConflictException$: StaticErrorSchema;
6
+ export declare var InternalServerException$: StaticErrorSchema;
6
7
  export declare var InvalidArgsException$: StaticErrorSchema;
7
8
  export declare var InvalidArnException$: StaticErrorSchema;
8
9
  export declare var InvalidDomainValidationOptionsException$: StaticErrorSchema;
@@ -13,6 +14,7 @@ export declare var LimitExceededException$: StaticErrorSchema;
13
14
  export declare var RequestInProgressException$: StaticErrorSchema;
14
15
  export declare var ResourceInUseException$: StaticErrorSchema;
15
16
  export declare var ResourceNotFoundException$: StaticErrorSchema;
17
+ export declare var ServiceQuotaExceededException$: StaticErrorSchema;
16
18
  export declare var TagPolicyException$: StaticErrorSchema;
17
19
  export declare var ThrottlingException$: StaticErrorSchema;
18
20
  export declare var TooManyTagsException$: StaticErrorSchema;
@@ -24,37 +26,80 @@ export declare var ValidationException$: StaticErrorSchema;
24
26
  */
25
27
  export declare const errorTypeRegistries: TypeRegistry[];
26
28
  export declare var AcmCertificateMetadata$: StaticStructureSchema;
29
+ export declare var AcmeAccount$: StaticStructureSchema;
30
+ export declare var AcmeAccountSummary$: StaticStructureSchema;
31
+ export declare var AcmeDomainValidation$: StaticStructureSchema;
32
+ export declare var AcmeDomainValidationSummary$: StaticStructureSchema;
33
+ export declare var AcmeEndpoint$: StaticStructureSchema;
34
+ export declare var AcmeEndpointSummary$: StaticStructureSchema;
35
+ export declare var AcmeExternalAccountBinding$: StaticStructureSchema;
36
+ export declare var AcmeExternalAccountBindingSummary$: StaticStructureSchema;
27
37
  export declare var AddTagsToCertificateRequest$: StaticStructureSchema;
28
38
  export declare var CertificateDetail$: StaticStructureSchema;
29
39
  export declare var CertificateOptions$: StaticStructureSchema;
30
40
  export declare var CertificateSearchResult$: StaticStructureSchema;
31
41
  export declare var CertificateSummary$: StaticStructureSchema;
32
42
  export declare var CommonNameFilter$: StaticStructureSchema;
43
+ export declare var CreateAcmeDomainValidationRequest$: StaticStructureSchema;
44
+ export declare var CreateAcmeDomainValidationResponse$: StaticStructureSchema;
45
+ export declare var CreateAcmeEndpointRequest$: StaticStructureSchema;
46
+ export declare var CreateAcmeEndpointResponse$: StaticStructureSchema;
47
+ export declare var CreateAcmeExternalAccountBindingRequest$: StaticStructureSchema;
48
+ export declare var CreateAcmeExternalAccountBindingResponse$: StaticStructureSchema;
33
49
  export declare var CustomAttribute$: StaticStructureSchema;
50
+ export declare var DeleteAcmeDomainValidationRequest$: StaticStructureSchema;
51
+ export declare var DeleteAcmeEndpointRequest$: StaticStructureSchema;
52
+ export declare var DeleteAcmeExternalAccountBindingRequest$: StaticStructureSchema;
34
53
  export declare var DeleteCertificateRequest$: StaticStructureSchema;
54
+ export declare var DescribeAcmeAccountRequest$: StaticStructureSchema;
55
+ export declare var DescribeAcmeAccountResponse$: StaticStructureSchema;
56
+ export declare var DescribeAcmeDomainValidationRequest$: StaticStructureSchema;
57
+ export declare var DescribeAcmeDomainValidationResponse$: StaticStructureSchema;
58
+ export declare var DescribeAcmeEndpointRequest$: StaticStructureSchema;
59
+ export declare var DescribeAcmeEndpointResponse$: StaticStructureSchema;
60
+ export declare var DescribeAcmeExternalAccountBindingRequest$: StaticStructureSchema;
61
+ export declare var DescribeAcmeExternalAccountBindingResponse$: StaticStructureSchema;
35
62
  export declare var DescribeCertificateRequest$: StaticStructureSchema;
36
63
  export declare var DescribeCertificateResponse$: StaticStructureSchema;
37
64
  export declare var DistinguishedName$: StaticStructureSchema;
38
65
  export declare var DnsNameFilter$: StaticStructureSchema;
66
+ export declare var DnsPrevalidationDetails$: StaticStructureSchema;
67
+ export declare var DnsPrevalidationOptions$: StaticStructureSchema;
68
+ export declare var DomainScope$: StaticStructureSchema;
39
69
  export declare var DomainValidation$: StaticStructureSchema;
40
70
  export declare var DomainValidationOption$: StaticStructureSchema;
71
+ export declare var Expiration$: StaticStructureSchema;
41
72
  export declare var ExpiryEventsConfiguration$: StaticStructureSchema;
42
73
  export declare var ExportCertificateRequest$: StaticStructureSchema;
43
74
  export declare var ExportCertificateResponse$: StaticStructureSchema;
44
75
  export declare var ExtendedKeyUsage$: StaticStructureSchema;
76
+ export declare var FailureDetails$: StaticStructureSchema;
45
77
  export declare var Filters$: StaticStructureSchema;
46
78
  export declare var GetAccountConfigurationResponse$: StaticStructureSchema;
79
+ export declare var GetAcmeExternalAccountBindingCredentialsRequest$: StaticStructureSchema;
80
+ export declare var GetAcmeExternalAccountBindingCredentialsResponse$: StaticStructureSchema;
47
81
  export declare var GetCertificateRequest$: StaticStructureSchema;
48
82
  export declare var GetCertificateResponse$: StaticStructureSchema;
49
83
  export declare var HttpRedirect$: StaticStructureSchema;
50
84
  export declare var ImportCertificateRequest$: StaticStructureSchema;
51
85
  export declare var ImportCertificateResponse$: StaticStructureSchema;
52
86
  export declare var KeyUsage$: StaticStructureSchema;
87
+ export declare var ListAcmeAccountsRequest$: StaticStructureSchema;
88
+ export declare var ListAcmeAccountsResponse$: StaticStructureSchema;
89
+ export declare var ListAcmeDomainValidationsRequest$: StaticStructureSchema;
90
+ export declare var ListAcmeDomainValidationsResponse$: StaticStructureSchema;
91
+ export declare var ListAcmeEndpointsRequest$: StaticStructureSchema;
92
+ export declare var ListAcmeEndpointsResponse$: StaticStructureSchema;
93
+ export declare var ListAcmeExternalAccountBindingsRequest$: StaticStructureSchema;
94
+ export declare var ListAcmeExternalAccountBindingsResponse$: StaticStructureSchema;
53
95
  export declare var ListCertificatesRequest$: StaticStructureSchema;
54
96
  export declare var ListCertificatesResponse$: StaticStructureSchema;
55
97
  export declare var ListTagsForCertificateRequest$: StaticStructureSchema;
56
98
  export declare var ListTagsForCertificateResponse$: StaticStructureSchema;
99
+ export declare var ListTagsForResourceRequest$: StaticStructureSchema;
100
+ export declare var ListTagsForResourceResponse$: StaticStructureSchema;
57
101
  export declare var OtherName$: StaticStructureSchema;
102
+ export declare var PublicCertificateAuthority$: StaticStructureSchema;
58
103
  export declare var PutAccountConfigurationRequest$: StaticStructureSchema;
59
104
  export declare var RemoveTagsFromCertificateRequest$: StaticStructureSchema;
60
105
  export declare var RenewalSummary$: StaticStructureSchema;
@@ -63,37 +108,68 @@ export declare var RequestCertificateRequest$: StaticStructureSchema;
63
108
  export declare var RequestCertificateResponse$: StaticStructureSchema;
64
109
  export declare var ResendValidationEmailRequest$: StaticStructureSchema;
65
110
  export declare var ResourceRecord$: StaticStructureSchema;
111
+ export declare var RevokeAcmeAccountRequest$: StaticStructureSchema;
112
+ export declare var RevokeAcmeExternalAccountBindingRequest$: StaticStructureSchema;
66
113
  export declare var RevokeCertificateRequest$: StaticStructureSchema;
67
114
  export declare var RevokeCertificateResponse$: StaticStructureSchema;
68
115
  export declare var SearchCertificatesRequest$: StaticStructureSchema;
69
116
  export declare var SearchCertificatesResponse$: StaticStructureSchema;
70
117
  export declare var Tag$: StaticStructureSchema;
118
+ export declare var TagResourceRequest$: StaticStructureSchema;
71
119
  export declare var ThrottlingReason$: StaticStructureSchema;
72
120
  export declare var TimestampRange$: StaticStructureSchema;
121
+ export declare var UntagResourceRequest$: StaticStructureSchema;
122
+ export declare var UpdateAcmeDomainValidationRequest$: StaticStructureSchema;
123
+ export declare var UpdateAcmeEndpointRequest$: StaticStructureSchema;
73
124
  export declare var UpdateCertificateOptionsRequest$: StaticStructureSchema;
74
125
  export declare var X509Attributes$: StaticStructureSchema;
75
126
  export declare var AcmCertificateMetadataFilter$: StaticUnionSchema;
127
+ export declare var CertificateAuthority$: StaticUnionSchema;
76
128
  export declare var CertificateFilter$: StaticUnionSchema;
77
129
  export declare var CertificateFilterStatement$: StaticUnionSchema;
78
130
  export declare var CertificateMetadata$: StaticUnionSchema;
79
131
  export declare var GeneralName$: StaticUnionSchema;
132
+ export declare var PrevalidationDetails$: StaticUnionSchema;
133
+ export declare var PrevalidationOptions$: StaticUnionSchema;
80
134
  export declare var SubjectAlternativeNameFilter$: StaticUnionSchema;
81
135
  export declare var SubjectFilter$: StaticUnionSchema;
82
136
  export declare var X509AttributeFilter$: StaticUnionSchema;
83
137
  export declare var AddTagsToCertificate$: StaticOperationSchema;
138
+ export declare var CreateAcmeDomainValidation$: StaticOperationSchema;
139
+ export declare var CreateAcmeEndpoint$: StaticOperationSchema;
140
+ export declare var CreateAcmeExternalAccountBinding$: StaticOperationSchema;
141
+ export declare var DeleteAcmeDomainValidation$: StaticOperationSchema;
142
+ export declare var DeleteAcmeEndpoint$: StaticOperationSchema;
143
+ export declare var DeleteAcmeExternalAccountBinding$: StaticOperationSchema;
84
144
  export declare var DeleteCertificate$: StaticOperationSchema;
145
+ export declare var DescribeAcmeAccount$: StaticOperationSchema;
146
+ export declare var DescribeAcmeDomainValidation$: StaticOperationSchema;
147
+ export declare var DescribeAcmeEndpoint$: StaticOperationSchema;
148
+ export declare var DescribeAcmeExternalAccountBinding$: StaticOperationSchema;
85
149
  export declare var DescribeCertificate$: StaticOperationSchema;
86
150
  export declare var ExportCertificate$: StaticOperationSchema;
87
151
  export declare var GetAccountConfiguration$: StaticOperationSchema;
152
+ export declare var GetAcmeExternalAccountBindingCredentials$: StaticOperationSchema;
88
153
  export declare var GetCertificate$: StaticOperationSchema;
89
154
  export declare var ImportCertificate$: StaticOperationSchema;
155
+ export declare var ListAcmeAccounts$: StaticOperationSchema;
156
+ export declare var ListAcmeDomainValidations$: StaticOperationSchema;
157
+ export declare var ListAcmeEndpoints$: StaticOperationSchema;
158
+ export declare var ListAcmeExternalAccountBindings$: StaticOperationSchema;
90
159
  export declare var ListCertificates$: StaticOperationSchema;
91
160
  export declare var ListTagsForCertificate$: StaticOperationSchema;
161
+ export declare var ListTagsForResource$: StaticOperationSchema;
92
162
  export declare var PutAccountConfiguration$: StaticOperationSchema;
93
163
  export declare var RemoveTagsFromCertificate$: StaticOperationSchema;
94
164
  export declare var RenewCertificate$: StaticOperationSchema;
95
165
  export declare var RequestCertificate$: StaticOperationSchema;
96
166
  export declare var ResendValidationEmail$: StaticOperationSchema;
167
+ export declare var RevokeAcmeAccount$: StaticOperationSchema;
168
+ export declare var RevokeAcmeExternalAccountBinding$: StaticOperationSchema;
97
169
  export declare var RevokeCertificate$: StaticOperationSchema;
98
170
  export declare var SearchCertificates$: StaticOperationSchema;
171
+ export declare var TagResource$: StaticOperationSchema;
172
+ export declare var UntagResource$: StaticOperationSchema;
173
+ export declare var UpdateAcmeDomainValidation$: StaticOperationSchema;
174
+ export declare var UpdateAcmeEndpoint$: StaticOperationSchema;
99
175
  export declare var UpdateCertificateOptions$: StaticOperationSchema;