@aws-sdk/client-acm 3.1109.0 → 3.1111.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 (39) hide show
  1. package/README.md +7 -0
  2. package/dist-cjs/index.js +105 -9
  3. package/dist-es/ACM.js +4 -0
  4. package/dist-es/commands/ListCertificateDomainValidationsCommand.js +4 -0
  5. package/dist-es/commands/index.js +1 -0
  6. package/dist-es/models/enums.js +8 -0
  7. package/dist-es/pagination/ListCertificateDomainValidationsPaginator.js +4 -0
  8. package/dist-es/pagination/index.js +1 -0
  9. package/dist-es/schemas/schemas_0.js +75 -8
  10. package/dist-types/ACM.d.ts +14 -0
  11. package/dist-types/ACMClient.d.ts +3 -2
  12. package/dist-types/commands/DescribeCertificateCommand.d.ts +11 -0
  13. package/dist-types/commands/ListCertificateDomainValidationsCommand.d.ts +128 -0
  14. package/dist-types/commands/RequestCertificateCommand.d.ts +1 -0
  15. package/dist-types/commands/UpdateCertificateOptionsCommand.d.ts +5 -1
  16. package/dist-types/commands/index.d.ts +1 -0
  17. package/dist-types/models/enums.d.ts +24 -0
  18. package/dist-types/models/models_0.d.ts +209 -3
  19. package/dist-types/pagination/ListCertificateDomainValidationsPaginator.d.ts +7 -0
  20. package/dist-types/pagination/index.d.ts +1 -0
  21. package/dist-types/runtimeConfig.browser.d.ts +38 -38
  22. package/dist-types/runtimeConfig.d.ts +39 -39
  23. package/dist-types/runtimeConfig.native.d.ts +37 -37
  24. package/dist-types/runtimeConfig.shared.d.ts +2 -2
  25. package/dist-types/schemas/schemas_0.d.ts +10 -0
  26. package/dist-types/ts3.4/ACM.d.ts +24 -0
  27. package/dist-types/ts3.4/ACMClient.d.ts +6 -0
  28. package/dist-types/ts3.4/commands/ListCertificateDomainValidationsCommand.d.ts +42 -0
  29. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  30. package/dist-types/ts3.4/models/enums.d.ts +10 -0
  31. package/dist-types/ts3.4/models/models_0.d.ts +67 -0
  32. package/dist-types/ts3.4/pagination/ListCertificateDomainValidationsPaginator.d.ts +11 -0
  33. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  34. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +54 -56
  35. package/dist-types/ts3.4/runtimeConfig.d.ts +57 -57
  36. package/dist-types/ts3.4/runtimeConfig.native.d.ts +58 -60
  37. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +3 -3
  38. package/dist-types/ts3.4/schemas/schemas_0.d.ts +10 -0
  39. package/package.json +5 -5
@@ -1,81 +1,30 @@
1
1
  import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
2
  import { ACMClientConfig } from "./ACMClient";
3
3
  export declare const getRuntimeConfig: (config: ACMClientConfig) => {
4
- runtime: string;
5
- defaultsMode: import("@smithy/types").Provider<
6
- import("@smithy/core/client").ResolvedDefaultsMode
7
- >;
8
- bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
- credentialDefaultProvider:
10
- | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
11
- | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
12
- defaultUserAgentProvider: (
13
- config?: import("@aws-sdk/core/client").PreviouslyResolved,
14
- ) => Promise<import("@smithy/types").UserAgent>;
15
- maxAttempts: number | import("@smithy/types").Provider<number>;
16
- region: string | import("@smithy/types").Provider<any>;
17
- requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
18
- retryMode: string | import("@smithy/types").Provider<string>;
19
- streamCollector: (
20
- stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
21
- ) => Promise<Uint8Array>;
22
- useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
23
- (boolean | import("@smithy/types").Provider<boolean | undefined>);
24
- useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
25
- (boolean | import("@smithy/types").Provider<boolean | undefined>);
26
- cacheMiddleware?: boolean | undefined;
27
- protocol:
28
- | import("@smithy/types").ClientProtocol<any, any>
29
- | import("@smithy/types").ClientProtocolCtor<any, any>
30
- | typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
31
- protocolSettings: {
32
- defaultNamespace?: string;
33
- [setting: string]: unknown;
34
- };
35
- apiVersion: string;
36
- sha256: import("@smithy/types").HashConstructor;
37
- urlParser: import("@smithy/types").UrlParser;
38
- base64Decoder: import("@smithy/types").Decoder;
39
- base64Encoder: (_input: Uint8Array | string) => string;
40
- utf8Decoder: import("@smithy/types").Decoder;
41
- utf8Encoder: (input: Uint8Array | string) => string;
42
- disableHostPrefix: boolean;
43
- serviceId: string;
44
- profile?: string;
45
- logger: import("@smithy/types").Logger;
46
- extensions: import("./runtimeExtensions").RuntimeExtension[];
4
+ cacheMiddleware?: boolean;
47
5
  customUserAgent?: string | import("@smithy/types").UserAgent;
48
6
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
49
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
50
7
  endpoint?:
51
8
  | ((
52
9
  | string
53
10
  | import("@smithy/types").Endpoint
54
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
55
11
  | import("@smithy/types").EndpointV2
12
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
56
13
  | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
57
14
  ) &
58
15
  (
59
16
  | string
60
- | import("@smithy/types").Provider<string>
61
17
  | import("@smithy/types").Endpoint
62
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
63
18
  | import("@smithy/types").EndpointV2
19
+ | import("@smithy/types").Provider<string>
20
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
64
21
  | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
65
22
  ))
66
23
  | undefined;
67
- endpointProvider: (
68
- endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
69
- context?: {
70
- logger?: import("@smithy/types").Logger;
71
- },
72
- ) => import("@smithy/types").EndpointV2;
73
24
  tls?: boolean;
74
25
  ignoreConfiguredEndpointUrls?: boolean;
75
26
  serviceConfiguredEndpoint?: never;
76
- authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
77
- httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
78
- httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ACMHttpAuthSchemeProvider;
27
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
79
28
  credentials?:
80
29
  | import("@smithy/types").AwsCredentialIdentity
81
30
  | import("@smithy/types").AwsCredentialIdentityProvider;
@@ -92,8 +41,57 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
92
41
  import("@smithy/signature-v4").SignatureV4CryptoInit,
93
42
  ) => import("@smithy/types").RequestSigner;
94
43
  disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
44
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
95
45
  clientContextParams?: {
96
46
  serviceType?: string | undefined | import("@smithy/types").Provider<string | undefined>;
97
47
  };
98
48
  serviceType?: string | undefined | import("@smithy/types").Provider<string | undefined>;
49
+ apiVersion: string;
50
+ base64Decoder: import("@smithy/types").Decoder;
51
+ base64Encoder: (_input: Uint8Array | string) => string;
52
+ disableHostPrefix: boolean;
53
+ endpointProvider: (
54
+ params: import("./endpoint/EndpointParameters").EndpointParameters,
55
+ context?: {
56
+ logger?: import("@smithy/types").Logger;
57
+ },
58
+ ) => import("@smithy/types").EndpointV2;
59
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
60
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ACMHttpAuthSchemeProvider;
61
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
62
+ logger: import("@smithy/types").Logger;
63
+ protocol:
64
+ | import("@smithy/types").$ClientProtocol<any, any>
65
+ | import("@smithy/types").$ClientProtocolCtor<any, any>
66
+ | typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
67
+ protocolSettings: {
68
+ [setting: string]: unknown;
69
+ defaultNamespace?: string;
70
+ };
71
+ serviceId: string;
72
+ sha256: import("@smithy/types").HashConstructor;
73
+ urlParser: import("@smithy/types").UrlParser;
74
+ utf8Decoder: import("@smithy/types").Decoder;
75
+ utf8Encoder: (input: Uint8Array | string) => string;
76
+ profile?: string;
77
+ runtime: string;
78
+ defaultsMode: import("@smithy/types").Provider<
79
+ import("@smithy/core/client").ResolvedDefaultsMode
80
+ >;
81
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
82
+ credentialDefaultProvider:
83
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
84
+ | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
85
+ defaultUserAgentProvider: (
86
+ config?: import("@aws-sdk/core/client").PreviouslyResolved,
87
+ ) => Promise<import("@smithy/types").UserAgent>;
88
+ maxAttempts: number | import("@smithy/types").Provider<number>;
89
+ region: string | import("@smithy/types").Provider<any>;
90
+ requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
91
+ retryMode: string | import("@smithy/types").Provider<string>;
92
+ streamCollector: (
93
+ stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
94
+ ) => Promise<Uint8Array>;
95
+ useDualstackEndpoint: boolean | (() => Promise<boolean>);
96
+ useFipsEndpoint: boolean | (() => Promise<boolean>);
99
97
  };
@@ -1,81 +1,29 @@
1
1
  import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
2
  import { ACMClientConfig } from "./ACMClient";
3
3
  export declare const getRuntimeConfig: (config: ACMClientConfig) => {
4
- runtime: string;
5
- defaultsMode: import("@smithy/types").Provider<
6
- import("@smithy/core/client").ResolvedDefaultsMode
7
- >;
8
- authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
9
- bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
- credentialDefaultProvider:
11
- | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
12
- | ((
13
- init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
14
- ) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
15
- defaultUserAgentProvider: (
16
- config?: import("@aws-sdk/core/client").PreviouslyResolved,
17
- ) => Promise<import("@smithy/types").UserAgent>;
18
- maxAttempts: number | import("@smithy/types").Provider<number>;
19
- region: string | import("@smithy/types").Provider<string>;
20
- requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
21
- retryMode: string | import("@smithy/types").Provider<string>;
22
- streamCollector: (
23
- stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
24
- ) => Promise<Uint8Array>;
25
- useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
26
- useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
27
- userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
28
- cacheMiddleware?: boolean | undefined;
29
- protocol:
30
- | import("@smithy/types").ClientProtocol<any, any>
31
- | import("@smithy/types").ClientProtocolCtor<any, any>
32
- | typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
33
- protocolSettings: {
34
- defaultNamespace?: string;
35
- [setting: string]: unknown;
36
- };
37
- apiVersion: string;
38
- sha256: import("@smithy/types").HashConstructor;
39
- urlParser: import("@smithy/types").UrlParser;
40
- base64Decoder: import("@smithy/types").Decoder;
41
- base64Encoder: (_input: Uint8Array | string) => string;
42
- utf8Decoder: import("@smithy/types").Decoder;
43
- utf8Encoder: (input: Uint8Array | string) => string;
44
- disableHostPrefix: boolean;
45
- serviceId: string;
46
- profile?: string;
47
- logger: import("@smithy/types").Logger;
48
- extensions: import("./runtimeExtensions").RuntimeExtension[];
4
+ cacheMiddleware?: boolean;
49
5
  customUserAgent?: string | import("@smithy/types").UserAgent;
50
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
51
6
  endpoint?:
52
7
  | ((
53
8
  | string
54
9
  | import("@smithy/types").Endpoint
55
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
56
10
  | import("@smithy/types").EndpointV2
11
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
57
12
  | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
58
13
  ) &
59
14
  (
60
15
  | string
61
- | import("@smithy/types").Provider<string>
62
16
  | import("@smithy/types").Endpoint
63
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
64
17
  | import("@smithy/types").EndpointV2
18
+ | import("@smithy/types").Provider<string>
19
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
65
20
  | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
66
21
  ))
67
22
  | undefined;
68
- endpointProvider: (
69
- endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
70
- context?: {
71
- logger?: import("@smithy/types").Logger;
72
- },
73
- ) => import("@smithy/types").EndpointV2;
74
23
  tls?: boolean;
75
24
  ignoreConfiguredEndpointUrls?: boolean;
76
25
  serviceConfiguredEndpoint?: never;
77
- httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
78
- httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ACMHttpAuthSchemeProvider;
26
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
79
27
  credentials?:
80
28
  | import("@smithy/types").AwsCredentialIdentity
81
29
  | import("@smithy/types").AwsCredentialIdentityProvider;
@@ -96,4 +44,56 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
96
44
  serviceType?: string | undefined | import("@smithy/types").Provider<string | undefined>;
97
45
  };
98
46
  serviceType?: string | undefined | import("@smithy/types").Provider<string | undefined>;
47
+ apiVersion: string;
48
+ base64Decoder: import("@smithy/types").Decoder;
49
+ base64Encoder: (_input: Uint8Array | string) => string;
50
+ disableHostPrefix: boolean;
51
+ endpointProvider: (
52
+ params: import("./endpoint/EndpointParameters").EndpointParameters,
53
+ context?: {
54
+ logger?: import("@smithy/types").Logger;
55
+ },
56
+ ) => import("@smithy/types").EndpointV2;
57
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
58
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ACMHttpAuthSchemeProvider;
59
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
60
+ logger: import("@smithy/types").Logger;
61
+ protocol:
62
+ | import("@smithy/types").$ClientProtocol<any, any>
63
+ | import("@smithy/types").$ClientProtocolCtor<any, any>
64
+ | typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
65
+ protocolSettings: {
66
+ [setting: string]: unknown;
67
+ defaultNamespace?: string;
68
+ };
69
+ serviceId: string;
70
+ sha256: import("@smithy/types").HashConstructor;
71
+ urlParser: import("@smithy/types").UrlParser;
72
+ utf8Decoder: import("@smithy/types").Decoder;
73
+ utf8Encoder: (input: Uint8Array | string) => string;
74
+ runtime: string;
75
+ defaultsMode: import("@smithy/types").Provider<
76
+ import("@smithy/core/client").ResolvedDefaultsMode
77
+ >;
78
+ authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
79
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
80
+ credentialDefaultProvider:
81
+ | ((
82
+ init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
83
+ ) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider)
84
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider);
85
+ defaultUserAgentProvider: (
86
+ config?: import("@aws-sdk/core/client").PreviouslyResolved,
87
+ ) => Promise<import("@smithy/types").UserAgent>;
88
+ maxAttempts: number | import("@smithy/types").Provider<number>;
89
+ region: string | import("@smithy/types").Provider<string>;
90
+ requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
91
+ retryMode: string | import("@smithy/types").Provider<string>;
92
+ streamCollector: (
93
+ stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
94
+ ) => Promise<Uint8Array>;
95
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
96
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
97
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
98
+ profile?: string;
99
99
  };
@@ -1,85 +1,29 @@
1
1
  import { ACMClientConfig } from "./ACMClient";
2
2
  export declare const getRuntimeConfig: (config: ACMClientConfig) => {
3
- runtime: string;
4
- requestHandler:
5
- | import("@smithy/types").NodeHttpHandlerOptions
6
- | import("@smithy/types").FetchHttpHandlerOptions
7
- | Record<string, unknown>
8
- | import("@smithy/core/protocols").HttpHandler<any>
9
- | import("@smithy/fetch-http-handler").FetchHttpHandler;
10
3
  cacheMiddleware?: boolean;
11
- protocol:
12
- | import("@smithy/types").ClientProtocol<any, any>
13
- | import("@smithy/types").ClientProtocolCtor<any, any>
14
- | typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
15
- protocolSettings: {
16
- defaultNamespace?: string;
17
- [setting: string]: unknown;
18
- };
19
- apiVersion: string;
20
- sha256: import("@smithy/types").HashConstructor;
21
- urlParser: import("@smithy/types").UrlParser;
22
- bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
23
- streamCollector: (
24
- stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
25
- ) => Promise<Uint8Array>;
26
- base64Decoder: import("@smithy/types").Decoder;
27
- base64Encoder: (_input: Uint8Array | string) => string;
28
- utf8Decoder: import("@smithy/types").Decoder;
29
- utf8Encoder: (input: Uint8Array | string) => string;
30
- disableHostPrefix: boolean;
31
- serviceId: string;
32
- useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
33
- (boolean | import("@smithy/types").Provider<boolean | undefined>);
34
- useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
35
- (boolean | import("@smithy/types").Provider<boolean | undefined>);
36
- region: string | import("@smithy/types").Provider<any>;
37
- profile?: string;
38
- defaultUserAgentProvider: (
39
- config?: import("@aws-sdk/core/client").PreviouslyResolved,
40
- ) => Promise<import("@smithy/types").UserAgent>;
41
- credentialDefaultProvider:
42
- | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
43
- | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
44
- maxAttempts: number | import("@smithy/types").Provider<number>;
45
- retryMode: string | import("@smithy/types").Provider<string>;
46
- logger: import("@smithy/types").Logger;
47
- extensions: import("./runtimeExtensions").RuntimeExtension[];
48
- defaultsMode:
49
- | import("@smithy/core/client").DefaultsMode
50
- | import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
51
4
  customUserAgent?: string | import("@smithy/types").UserAgent;
52
5
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
53
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
54
6
  endpoint?:
55
7
  | ((
56
8
  | string
57
9
  | import("@smithy/types").Endpoint
58
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
59
10
  | import("@smithy/types").EndpointV2
11
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
60
12
  | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
61
13
  ) &
62
14
  (
63
15
  | string
64
- | import("@smithy/types").Provider<string>
65
16
  | import("@smithy/types").Endpoint
66
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
67
17
  | import("@smithy/types").EndpointV2
18
+ | import("@smithy/types").Provider<string>
19
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
68
20
  | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
69
21
  ))
70
22
  | undefined;
71
- endpointProvider: (
72
- endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
73
- context?: {
74
- logger?: import("@smithy/types").Logger;
75
- },
76
- ) => import("@smithy/types").EndpointV2;
77
23
  tls?: boolean;
78
24
  ignoreConfiguredEndpointUrls?: boolean;
79
25
  serviceConfiguredEndpoint?: never;
80
- authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
81
- httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
82
- httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ACMHttpAuthSchemeProvider;
26
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
83
27
  credentials?:
84
28
  | import("@smithy/types").AwsCredentialIdentity
85
29
  | import("@smithy/types").AwsCredentialIdentityProvider;
@@ -96,8 +40,62 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
96
40
  import("@smithy/signature-v4").SignatureV4CryptoInit,
97
41
  ) => import("@smithy/types").RequestSigner;
98
42
  disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
43
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
99
44
  clientContextParams?: {
100
45
  serviceType?: string | undefined | import("@smithy/types").Provider<string | undefined>;
101
46
  };
102
47
  serviceType?: string | undefined | import("@smithy/types").Provider<string | undefined>;
48
+ apiVersion: string;
49
+ base64Decoder: import("@smithy/types").Decoder;
50
+ base64Encoder: (_input: Uint8Array | string) => string;
51
+ disableHostPrefix: boolean;
52
+ endpointProvider: (
53
+ params: import("./endpoint/EndpointParameters").EndpointParameters,
54
+ context?: {
55
+ logger?: import("@smithy/types").Logger;
56
+ },
57
+ ) => import("@smithy/types").EndpointV2;
58
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
59
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ACMHttpAuthSchemeProvider;
60
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
61
+ logger: import("@smithy/types").Logger;
62
+ protocol:
63
+ | import("@smithy/types").$ClientProtocol<any, any>
64
+ | import("@smithy/types").$ClientProtocolCtor<any, any>
65
+ | typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
66
+ protocolSettings: {
67
+ [setting: string]: unknown;
68
+ defaultNamespace?: string;
69
+ };
70
+ serviceId: string;
71
+ sha256: import("@smithy/types").HashConstructor;
72
+ urlParser: import("@smithy/types").UrlParser;
73
+ utf8Decoder: import("@smithy/types").Decoder;
74
+ utf8Encoder: (input: Uint8Array | string) => string;
75
+ profile?: string;
76
+ defaultsMode:
77
+ | import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>
78
+ | import("@smithy/core/client").DefaultsMode;
79
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
80
+ credentialDefaultProvider:
81
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
82
+ | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
83
+ defaultUserAgentProvider: (
84
+ config?: import("@aws-sdk/core/client").PreviouslyResolved,
85
+ ) => Promise<import("@smithy/types").UserAgent>;
86
+ maxAttempts: number | import("@smithy/types").Provider<number>;
87
+ region: string | import("@smithy/types").Provider<any>;
88
+ requestHandler:
89
+ | import("@smithy/fetch-http-handler").FetchHttpHandler
90
+ | import("@smithy/types").FetchHttpHandlerOptions
91
+ | import("@smithy/types").NodeHttpHandlerOptions
92
+ | Record<string, unknown>
93
+ | import("@smithy/core/protocols").HttpHandler<any>;
94
+ retryMode: string | import("@smithy/types").Provider<string>;
95
+ streamCollector: (
96
+ stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
97
+ ) => Promise<Uint8Array>;
98
+ useDualstackEndpoint: boolean | (() => Promise<boolean>);
99
+ useFipsEndpoint: boolean | (() => Promise<boolean>);
100
+ runtime: string;
103
101
  };
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
6
6
  base64Encoder: (_input: Uint8Array | string) => string;
7
7
  disableHostPrefix: boolean;
8
8
  endpointProvider: (
9
- endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
9
+ params: import("./endpoint/EndpointParameters").EndpointParameters,
10
10
  context?: {
11
11
  logger?: import("@smithy/types").Logger;
12
12
  },
@@ -16,8 +16,8 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
16
16
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
17
17
  logger: import("@smithy/types").Logger;
18
18
  protocol:
19
- | import("@smithy/types").ClientProtocol<any, any>
20
- | import("@smithy/types").ClientProtocolCtor<any, any>
19
+ | import("@smithy/types").$ClientProtocol<any, any>
20
+ | import("@smithy/types").$ClientProtocolCtor<any, any>
21
21
  | typeof AwsJson1_1Protocol;
22
22
  protocolSettings: {
23
23
  [setting: string]: unknown;
@@ -65,9 +65,13 @@ export declare var DistinguishedName$: StaticStructureSchema;
65
65
  export declare var DnsNameFilter$: StaticStructureSchema;
66
66
  export declare var DnsPrevalidationDetails$: StaticStructureSchema;
67
67
  export declare var DnsPrevalidationOptions$: StaticStructureSchema;
68
+ export declare var DnsValidationChallenge$: StaticStructureSchema;
68
69
  export declare var DomainScope$: StaticStructureSchema;
69
70
  export declare var DomainValidation$: StaticStructureSchema;
71
+ export declare var DomainValidationMethodUpdateSummary$: StaticStructureSchema;
70
72
  export declare var DomainValidationOption$: StaticStructureSchema;
73
+ export declare var DomainValidationSummary$: StaticStructureSchema;
74
+ export declare var EmailValidationChallenge$: StaticStructureSchema;
71
75
  export declare var Expiration$: StaticStructureSchema;
72
76
  export declare var ExpiryEventsConfiguration$: StaticStructureSchema;
73
77
  export declare var ExportCertificateRequest$: StaticStructureSchema;
@@ -92,6 +96,8 @@ export declare var ListAcmeEndpointsRequest$: StaticStructureSchema;
92
96
  export declare var ListAcmeEndpointsResponse$: StaticStructureSchema;
93
97
  export declare var ListAcmeExternalAccountBindingsRequest$: StaticStructureSchema;
94
98
  export declare var ListAcmeExternalAccountBindingsResponse$: StaticStructureSchema;
99
+ export declare var ListCertificateDomainValidationsRequest$: StaticStructureSchema;
100
+ export declare var ListCertificateDomainValidationsResponse$: StaticStructureSchema;
95
101
  export declare var ListCertificatesRequest$: StaticStructureSchema;
96
102
  export declare var ListCertificatesResponse$: StaticStructureSchema;
97
103
  export declare var ListTagsForCertificateRequest$: StaticStructureSchema;
@@ -122,6 +128,8 @@ export declare var UntagResourceRequest$: StaticStructureSchema;
122
128
  export declare var UpdateAcmeDomainValidationRequest$: StaticStructureSchema;
123
129
  export declare var UpdateAcmeEndpointRequest$: StaticStructureSchema;
124
130
  export declare var UpdateCertificateOptionsRequest$: StaticStructureSchema;
131
+ export declare var UpdateSummary$: StaticStructureSchema;
132
+ export declare var ValidationConfiguration$: StaticStructureSchema;
125
133
  export declare var X509Attributes$: StaticStructureSchema;
126
134
  export declare var AcmCertificateMetadataFilter$: StaticUnionSchema;
127
135
  export declare var CertificateAuthority$: StaticUnionSchema;
@@ -133,6 +141,7 @@ export declare var PrevalidationDetails$: StaticUnionSchema;
133
141
  export declare var PrevalidationOptions$: StaticUnionSchema;
134
142
  export declare var SubjectAlternativeNameFilter$: StaticUnionSchema;
135
143
  export declare var SubjectFilter$: StaticUnionSchema;
144
+ export declare var ValidationChallenge$: StaticUnionSchema;
136
145
  export declare var X509AttributeFilter$: StaticUnionSchema;
137
146
  export declare var AddTagsToCertificate$: StaticOperationSchema;
138
147
  export declare var CreateAcmeDomainValidation$: StaticOperationSchema;
@@ -156,6 +165,7 @@ export declare var ListAcmeAccounts$: StaticOperationSchema;
156
165
  export declare var ListAcmeDomainValidations$: StaticOperationSchema;
157
166
  export declare var ListAcmeEndpoints$: StaticOperationSchema;
158
167
  export declare var ListAcmeExternalAccountBindings$: StaticOperationSchema;
168
+ export declare var ListCertificateDomainValidations$: StaticOperationSchema;
159
169
  export declare var ListCertificates$: StaticOperationSchema;
160
170
  export declare var ListTagsForCertificate$: StaticOperationSchema;
161
171
  export declare var ListTagsForResource$: StaticOperationSchema;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-acm",
3
- "version": "3.1109.0",
3
+ "version": "3.1111.0",
4
4
  "description": "AWS SDK for JavaScript Acm Client for Node.js, Browser and React Native",
5
5
  "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-acm",
6
6
  "license": "Apache-2.0",
@@ -48,9 +48,9 @@
48
48
  "test:index": "tsc -p tsconfig.test.json && node ./test/index-objects.spec.mjs"
49
49
  },
50
50
  "dependencies": {
51
- "@aws-sdk/core": "^3.977.7",
52
- "@aws-sdk/credential-provider-node": "^3.972.79",
53
- "@aws-sdk/types": "^3.974.3",
51
+ "@aws-sdk/core": "^3.977.8",
52
+ "@aws-sdk/credential-provider-node": "^3.972.80",
53
+ "@aws-sdk/types": "^3.974.4",
54
54
  "@smithy/core": "^3.31.1",
55
55
  "@smithy/fetch-http-handler": "^5.6.13",
56
56
  "@smithy/node-http-handler": "^4.9.13",
@@ -63,7 +63,7 @@
63
63
  "concurrently": "7.0.0",
64
64
  "downlevel-dts": "0.10.1",
65
65
  "premove": "4.0.0",
66
- "typescript": "~6.0.3"
66
+ "typescript": "~7.0.2"
67
67
  },
68
68
  "engines": {
69
69
  "node": ">=20.0.0"