@aws-sdk/client-controlcatalog 3.551.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 (111) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +256 -0
  3. package/dist-cjs/ControlCatalog.js +17 -0
  4. package/dist-cjs/ControlCatalogClient.js +56 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/ListCommonControlsCommand.js +28 -0
  8. package/dist-cjs/commands/ListDomainsCommand.js +28 -0
  9. package/dist-cjs/commands/ListObjectivesCommand.js +28 -0
  10. package/dist-cjs/commands/index.js +6 -0
  11. package/dist-cjs/endpoint/EndpointParameters.js +18 -0
  12. package/dist-cjs/endpoint/endpointResolver.js +14 -0
  13. package/dist-cjs/endpoint/ruleset.js +7 -0
  14. package/dist-cjs/extensionConfiguration.js +2 -0
  15. package/dist-cjs/index.js +11 -0
  16. package/dist-cjs/models/ControlCatalogServiceException.js +12 -0
  17. package/dist-cjs/models/index.js +4 -0
  18. package/dist-cjs/models/models_0.js +64 -0
  19. package/dist-cjs/pagination/Interfaces.js +2 -0
  20. package/dist-cjs/pagination/ListCommonControlsPaginator.js +7 -0
  21. package/dist-cjs/pagination/ListDomainsPaginator.js +7 -0
  22. package/dist-cjs/pagination/ListObjectivesPaginator.js +7 -0
  23. package/dist-cjs/pagination/index.js +7 -0
  24. package/dist-cjs/protocols/Aws_restJson1.js +256 -0
  25. package/dist-cjs/runtimeConfig.browser.js +39 -0
  26. package/dist-cjs/runtimeConfig.js +49 -0
  27. package/dist-cjs/runtimeConfig.native.js +15 -0
  28. package/dist-cjs/runtimeConfig.shared.js +34 -0
  29. package/dist-cjs/runtimeExtensions.js +25 -0
  30. package/dist-es/ControlCatalog.js +13 -0
  31. package/dist-es/ControlCatalogClient.js +52 -0
  32. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  33. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  34. package/dist-es/commands/ListCommonControlsCommand.js +24 -0
  35. package/dist-es/commands/ListDomainsCommand.js +24 -0
  36. package/dist-es/commands/ListObjectivesCommand.js +24 -0
  37. package/dist-es/commands/index.js +3 -0
  38. package/dist-es/endpoint/EndpointParameters.js +14 -0
  39. package/dist-es/endpoint/endpointResolver.js +10 -0
  40. package/dist-es/endpoint/ruleset.js +4 -0
  41. package/dist-es/extensionConfiguration.js +1 -0
  42. package/dist-es/index.js +6 -0
  43. package/dist-es/models/ControlCatalogServiceException.js +8 -0
  44. package/dist-es/models/index.js +1 -0
  45. package/dist-es/models/models_0.js +57 -0
  46. package/dist-es/pagination/Interfaces.js +1 -0
  47. package/dist-es/pagination/ListCommonControlsPaginator.js +4 -0
  48. package/dist-es/pagination/ListDomainsPaginator.js +4 -0
  49. package/dist-es/pagination/ListObjectivesPaginator.js +4 -0
  50. package/dist-es/pagination/index.js +4 -0
  51. package/dist-es/protocols/Aws_restJson1.js +247 -0
  52. package/dist-es/runtimeConfig.browser.js +34 -0
  53. package/dist-es/runtimeConfig.js +44 -0
  54. package/dist-es/runtimeConfig.native.js +11 -0
  55. package/dist-es/runtimeConfig.shared.js +30 -0
  56. package/dist-es/runtimeExtensions.js +21 -0
  57. package/dist-types/ControlCatalog.d.ts +61 -0
  58. package/dist-types/ControlCatalogClient.d.ts +201 -0
  59. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  60. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  61. package/dist-types/commands/ListCommonControlsCommand.d.ts +99 -0
  62. package/dist-types/commands/ListDomainsCommand.d.ts +81 -0
  63. package/dist-types/commands/ListObjectivesCommand.d.ts +94 -0
  64. package/dist-types/commands/index.d.ts +3 -0
  65. package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  66. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  67. package/dist-types/endpoint/ruleset.d.ts +2 -0
  68. package/dist-types/extensionConfiguration.d.ts +9 -0
  69. package/dist-types/index.d.ts +41 -0
  70. package/dist-types/models/ControlCatalogServiceException.d.ts +13 -0
  71. package/dist-types/models/index.d.ts +1 -0
  72. package/dist-types/models/models_0.d.ts +350 -0
  73. package/dist-types/pagination/Interfaces.d.ts +8 -0
  74. package/dist-types/pagination/ListCommonControlsPaginator.d.ts +7 -0
  75. package/dist-types/pagination/ListDomainsPaginator.d.ts +7 -0
  76. package/dist-types/pagination/ListObjectivesPaginator.d.ts +7 -0
  77. package/dist-types/pagination/index.d.ts +4 -0
  78. package/dist-types/protocols/Aws_restJson1.d.ts +29 -0
  79. package/dist-types/runtimeConfig.browser.d.ts +45 -0
  80. package/dist-types/runtimeConfig.d.ts +45 -0
  81. package/dist-types/runtimeConfig.native.d.ts +44 -0
  82. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  83. package/dist-types/runtimeExtensions.d.ts +17 -0
  84. package/dist-types/ts3.4/ControlCatalog.d.ts +61 -0
  85. package/dist-types/ts3.4/ControlCatalogClient.d.ts +139 -0
  86. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  87. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  88. package/dist-types/ts3.4/commands/ListCommonControlsCommand.d.ts +39 -0
  89. package/dist-types/ts3.4/commands/ListDomainsCommand.d.ts +35 -0
  90. package/dist-types/ts3.4/commands/ListObjectivesCommand.d.ts +38 -0
  91. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  92. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  93. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  94. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  95. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  96. package/dist-types/ts3.4/index.d.ts +9 -0
  97. package/dist-types/ts3.4/models/ControlCatalogServiceException.d.ts +8 -0
  98. package/dist-types/ts3.4/models/index.d.ts +1 -0
  99. package/dist-types/ts3.4/models/models_0.d.ts +108 -0
  100. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  101. package/dist-types/ts3.4/pagination/ListCommonControlsPaginator.d.ts +11 -0
  102. package/dist-types/ts3.4/pagination/ListDomainsPaginator.d.ts +11 -0
  103. package/dist-types/ts3.4/pagination/ListObjectivesPaginator.d.ts +11 -0
  104. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  105. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +41 -0
  106. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +85 -0
  107. package/dist-types/ts3.4/runtimeConfig.d.ts +89 -0
  108. package/dist-types/ts3.4/runtimeConfig.native.d.ts +79 -0
  109. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
  110. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  111. package/package.json +101 -0
@@ -0,0 +1,51 @@
1
+ import {
2
+ Endpoint,
3
+ EndpointParameters as __EndpointParameters,
4
+ EndpointV2,
5
+ Provider,
6
+ } from "@smithy/types";
7
+ export interface ClientInputEndpointParameters {
8
+ region?: string | Provider<string>;
9
+ useDualstackEndpoint?: boolean | Provider<boolean>;
10
+ useFipsEndpoint?: boolean | Provider<boolean>;
11
+ endpoint?:
12
+ | string
13
+ | Provider<string>
14
+ | Endpoint
15
+ | Provider<Endpoint>
16
+ | EndpointV2
17
+ | Provider<EndpointV2>;
18
+ }
19
+ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
20
+ defaultSigningName: string;
21
+ };
22
+ export declare const resolveClientEndpointParameters: <T>(
23
+ options: T & ClientInputEndpointParameters
24
+ ) => T &
25
+ ClientInputEndpointParameters & {
26
+ defaultSigningName: string;
27
+ };
28
+ export declare const commonParams: {
29
+ readonly UseFIPS: {
30
+ readonly type: "builtInParams";
31
+ readonly name: "useFipsEndpoint";
32
+ };
33
+ readonly Endpoint: {
34
+ readonly type: "builtInParams";
35
+ readonly name: "endpoint";
36
+ };
37
+ readonly Region: {
38
+ readonly type: "builtInParams";
39
+ readonly name: "region";
40
+ };
41
+ readonly UseDualStack: {
42
+ readonly type: "builtInParams";
43
+ readonly name: "useDualstackEndpoint";
44
+ };
45
+ };
46
+ export interface EndpointParameters extends __EndpointParameters {
47
+ Region?: string;
48
+ UseDualStack?: boolean;
49
+ UseFIPS?: boolean;
50
+ Endpoint?: string;
51
+ }
@@ -0,0 +1,8 @@
1
+ import { EndpointV2, Logger } from "@smithy/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (
4
+ endpointParams: EndpointParameters,
5
+ context?: {
6
+ logger?: Logger;
7
+ }
8
+ ) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@smithy/types";
2
+ export declare const ruleSet: RuleSetObject;
@@ -0,0 +1,9 @@
1
+ import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
2
+ import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
3
+ import { DefaultExtensionConfiguration } from "@smithy/types";
4
+ import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
5
+ export interface ControlCatalogExtensionConfiguration
6
+ extends HttpHandlerExtensionConfiguration,
7
+ DefaultExtensionConfiguration,
8
+ AwsRegionExtensionConfiguration,
9
+ HttpAuthExtensionConfiguration {}
@@ -0,0 +1,9 @@
1
+ export * from "./ControlCatalogClient";
2
+ export * from "./ControlCatalog";
3
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
+ export { RuntimeExtension } from "./runtimeExtensions";
5
+ export { ControlCatalogExtensionConfiguration } from "./extensionConfiguration";
6
+ export * from "./commands";
7
+ export * from "./pagination";
8
+ export * from "./models";
9
+ export { ControlCatalogServiceException } from "./models/ControlCatalogServiceException";
@@ -0,0 +1,8 @@
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@smithy/smithy-client";
5
+ export { __ServiceException, __ServiceExceptionOptions };
6
+ export declare class ControlCatalogServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";
@@ -0,0 +1,108 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { ControlCatalogServiceException as __BaseException } from "./ControlCatalogServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ Message?: string;
7
+ constructor(
8
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
+ );
10
+ }
11
+ export interface AssociatedDomainSummary {
12
+ Arn?: string;
13
+ Name?: string;
14
+ }
15
+ export interface AssociatedObjectiveSummary {
16
+ Arn?: string;
17
+ Name?: string;
18
+ }
19
+ export interface ObjectiveResourceFilter {
20
+ Arn?: string;
21
+ }
22
+ export interface CommonControlFilter {
23
+ Objectives?: ObjectiveResourceFilter[];
24
+ }
25
+ export declare class InternalServerException extends __BaseException {
26
+ readonly name: "InternalServerException";
27
+ readonly $fault: "server";
28
+ $retryable: {};
29
+ Message?: string;
30
+ constructor(
31
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
32
+ );
33
+ }
34
+ export interface ListCommonControlsRequest {
35
+ MaxResults?: number;
36
+ NextToken?: string;
37
+ CommonControlFilter?: CommonControlFilter;
38
+ }
39
+ export interface CommonControlSummary {
40
+ Arn: string | undefined;
41
+ Name: string | undefined;
42
+ Description: string | undefined;
43
+ Domain: AssociatedDomainSummary | undefined;
44
+ Objective: AssociatedObjectiveSummary | undefined;
45
+ CreateTime: Date | undefined;
46
+ LastUpdateTime: Date | undefined;
47
+ }
48
+ export interface ListCommonControlsResponse {
49
+ CommonControls: CommonControlSummary[] | undefined;
50
+ NextToken?: string;
51
+ }
52
+ export declare class ThrottlingException extends __BaseException {
53
+ readonly name: "ThrottlingException";
54
+ readonly $fault: "client";
55
+ $retryable: {
56
+ throttling: boolean;
57
+ };
58
+ Message?: string;
59
+ constructor(
60
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
61
+ );
62
+ }
63
+ export declare class ValidationException extends __BaseException {
64
+ readonly name: "ValidationException";
65
+ readonly $fault: "client";
66
+ Message?: string;
67
+ constructor(
68
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
69
+ );
70
+ }
71
+ export interface ListDomainsRequest {
72
+ MaxResults?: number;
73
+ NextToken?: string;
74
+ }
75
+ export interface DomainSummary {
76
+ Arn: string | undefined;
77
+ Name: string | undefined;
78
+ Description: string | undefined;
79
+ CreateTime: Date | undefined;
80
+ LastUpdateTime: Date | undefined;
81
+ }
82
+ export interface ListDomainsResponse {
83
+ Domains: DomainSummary[] | undefined;
84
+ NextToken?: string;
85
+ }
86
+ export interface DomainResourceFilter {
87
+ Arn?: string;
88
+ }
89
+ export interface ObjectiveFilter {
90
+ Domains?: DomainResourceFilter[];
91
+ }
92
+ export interface ListObjectivesRequest {
93
+ MaxResults?: number;
94
+ NextToken?: string;
95
+ ObjectiveFilter?: ObjectiveFilter;
96
+ }
97
+ export interface ObjectiveSummary {
98
+ Arn: string | undefined;
99
+ Name: string | undefined;
100
+ Description: string | undefined;
101
+ Domain: AssociatedDomainSummary | undefined;
102
+ CreateTime: Date | undefined;
103
+ LastUpdateTime: Date | undefined;
104
+ }
105
+ export interface ListObjectivesResponse {
106
+ Objectives: ObjectiveSummary[] | undefined;
107
+ NextToken?: string;
108
+ }
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@smithy/types";
2
+ import { ControlCatalogClient } from "../ControlCatalogClient";
3
+ export interface ControlCatalogPaginationConfiguration
4
+ extends PaginationConfiguration {
5
+ client: ControlCatalogClient;
6
+ }
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListCommonControlsCommandInput,
4
+ ListCommonControlsCommandOutput,
5
+ } from "../commands/ListCommonControlsCommand";
6
+ import { ControlCatalogPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListCommonControls: (
8
+ config: ControlCatalogPaginationConfiguration,
9
+ input: ListCommonControlsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListCommonControlsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListDomainsCommandInput,
4
+ ListDomainsCommandOutput,
5
+ } from "../commands/ListDomainsCommand";
6
+ import { ControlCatalogPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListDomains: (
8
+ config: ControlCatalogPaginationConfiguration,
9
+ input: ListDomainsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListDomainsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListObjectivesCommandInput,
4
+ ListObjectivesCommandOutput,
5
+ } from "../commands/ListObjectivesCommand";
6
+ import { ControlCatalogPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListObjectives: (
8
+ config: ControlCatalogPaginationConfiguration,
9
+ input: ListObjectivesCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListObjectivesCommandOutput>;
@@ -0,0 +1,4 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListCommonControlsPaginator";
3
+ export * from "./ListDomainsPaginator";
4
+ export * from "./ListObjectivesPaginator";
@@ -0,0 +1,41 @@
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@smithy/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
6
+ import {
7
+ ListCommonControlsCommandInput,
8
+ ListCommonControlsCommandOutput,
9
+ } from "../commands/ListCommonControlsCommand";
10
+ import {
11
+ ListDomainsCommandInput,
12
+ ListDomainsCommandOutput,
13
+ } from "../commands/ListDomainsCommand";
14
+ import {
15
+ ListObjectivesCommandInput,
16
+ ListObjectivesCommandOutput,
17
+ } from "../commands/ListObjectivesCommand";
18
+ export declare const se_ListCommonControlsCommand: (
19
+ input: ListCommonControlsCommandInput,
20
+ context: __SerdeContext
21
+ ) => Promise<__HttpRequest>;
22
+ export declare const se_ListDomainsCommand: (
23
+ input: ListDomainsCommandInput,
24
+ context: __SerdeContext
25
+ ) => Promise<__HttpRequest>;
26
+ export declare const se_ListObjectivesCommand: (
27
+ input: ListObjectivesCommandInput,
28
+ context: __SerdeContext
29
+ ) => Promise<__HttpRequest>;
30
+ export declare const de_ListCommonControlsCommand: (
31
+ output: __HttpResponse,
32
+ context: __SerdeContext
33
+ ) => Promise<ListCommonControlsCommandOutput>;
34
+ export declare const de_ListDomainsCommand: (
35
+ output: __HttpResponse,
36
+ context: __SerdeContext
37
+ ) => Promise<ListDomainsCommandOutput>;
38
+ export declare const de_ListObjectivesCommand: (
39
+ output: __HttpResponse,
40
+ context: __SerdeContext
41
+ ) => Promise<ListObjectivesCommandOutput>;
@@ -0,0 +1,85 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { ControlCatalogClientConfig } from "./ControlCatalogClient";
3
+ export declare const getRuntimeConfig: (config: ControlCatalogClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@smithy/types").Provider<
6
+ import("@smithy/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
+ credentialDefaultProvider: (
10
+ input: any
11
+ ) => import("@smithy/types").AwsCredentialIdentityProvider;
12
+ defaultUserAgentProvider: import("@smithy/types").Provider<
13
+ import("@smithy/types").UserAgent
14
+ >;
15
+ maxAttempts: number | import("@smithy/types").Provider<number>;
16
+ region: string | import("@smithy/types").Provider<any>;
17
+ requestHandler:
18
+ | import("@smithy/protocol-http").HttpHandler<any>
19
+ | RequestHandler;
20
+ retryMode: string | import("@smithy/types").Provider<string>;
21
+ sha256: import("@smithy/types").HashConstructor;
22
+ streamCollector: import("@smithy/types").StreamCollector;
23
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
24
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
25
+ apiVersion: string;
26
+ urlParser: import("@smithy/types").UrlParser;
27
+ base64Decoder: import("@smithy/types").Decoder;
28
+ base64Encoder: (_input: string | Uint8Array) => string;
29
+ utf8Decoder: import("@smithy/types").Decoder;
30
+ utf8Encoder: (input: string | Uint8Array) => string;
31
+ disableHostPrefix: boolean;
32
+ serviceId: string;
33
+ logger: import("@smithy/types").Logger;
34
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
35
+ endpoint?:
36
+ | ((
37
+ | string
38
+ | import("@smithy/types").Endpoint
39
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
40
+ | import("@smithy/types").EndpointV2
41
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
42
+ ) &
43
+ (
44
+ | string
45
+ | import("@smithy/types").Provider<string>
46
+ | import("@smithy/types").Endpoint
47
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
48
+ | import("@smithy/types").EndpointV2
49
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
50
+ ))
51
+ | undefined;
52
+ endpointProvider: (
53
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
54
+ context?: {
55
+ logger?: import("@smithy/types").Logger | undefined;
56
+ }
57
+ ) => import("@smithy/types").EndpointV2;
58
+ tls?: boolean | undefined;
59
+ retryStrategy?:
60
+ | import("@smithy/types").RetryStrategy
61
+ | import("@smithy/types").RetryStrategyV2
62
+ | undefined;
63
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
64
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
65
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ControlCatalogHttpAuthSchemeProvider;
66
+ credentials?:
67
+ | import("@smithy/types").AwsCredentialIdentity
68
+ | import("@smithy/types").AwsCredentialIdentityProvider
69
+ | undefined;
70
+ signer?:
71
+ | import("@smithy/types").RequestSigner
72
+ | ((
73
+ authScheme?: import("@smithy/types").AuthScheme | undefined
74
+ ) => Promise<import("@smithy/types").RequestSigner>)
75
+ | undefined;
76
+ signingEscapePath?: boolean | undefined;
77
+ systemClockOffset?: number | undefined;
78
+ signingRegion?: string | undefined;
79
+ signerConstructor?:
80
+ | (new (
81
+ options: import("@smithy/signature-v4").SignatureV4Init &
82
+ import("@smithy/signature-v4").SignatureV4CryptoInit
83
+ ) => import("@smithy/types").RequestSigner)
84
+ | undefined;
85
+ };
@@ -0,0 +1,89 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { ControlCatalogClientConfig } from "./ControlCatalogClient";
3
+ export declare const getRuntimeConfig: (config: ControlCatalogClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@smithy/types").Provider<
6
+ import("@smithy/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
+ credentialDefaultProvider: (
10
+ init?:
11
+ | import("@aws-sdk/credential-provider-node").DefaultProviderInit
12
+ | undefined
13
+ ) => import("@smithy/types").MemoizedProvider<
14
+ import("@smithy/types").AwsCredentialIdentity
15
+ >;
16
+ defaultUserAgentProvider: import("@smithy/types").Provider<
17
+ import("@smithy/types").UserAgent
18
+ >;
19
+ maxAttempts: number | import("@smithy/types").Provider<number>;
20
+ region: string | import("@smithy/types").Provider<string>;
21
+ requestHandler:
22
+ | RequestHandler
23
+ | import("@smithy/protocol-http").HttpHandler<any>;
24
+ retryMode: string | import("@smithy/types").Provider<string>;
25
+ sha256: import("@smithy/types").HashConstructor;
26
+ streamCollector: import("@smithy/types").StreamCollector;
27
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
28
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
29
+ apiVersion: string;
30
+ urlParser: import("@smithy/types").UrlParser;
31
+ base64Decoder: import("@smithy/types").Decoder;
32
+ base64Encoder: (_input: string | Uint8Array) => string;
33
+ utf8Decoder: import("@smithy/types").Decoder;
34
+ utf8Encoder: (input: string | Uint8Array) => string;
35
+ disableHostPrefix: boolean;
36
+ serviceId: string;
37
+ logger: import("@smithy/types").Logger;
38
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
39
+ endpoint?:
40
+ | ((
41
+ | string
42
+ | import("@smithy/types").Endpoint
43
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
44
+ | import("@smithy/types").EndpointV2
45
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
46
+ ) &
47
+ (
48
+ | string
49
+ | import("@smithy/types").Provider<string>
50
+ | import("@smithy/types").Endpoint
51
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
52
+ | import("@smithy/types").EndpointV2
53
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
54
+ ))
55
+ | undefined;
56
+ endpointProvider: (
57
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
58
+ context?: {
59
+ logger?: import("@smithy/types").Logger | undefined;
60
+ }
61
+ ) => import("@smithy/types").EndpointV2;
62
+ tls?: boolean | undefined;
63
+ retryStrategy?:
64
+ | import("@smithy/types").RetryStrategy
65
+ | import("@smithy/types").RetryStrategyV2
66
+ | undefined;
67
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
68
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
69
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ControlCatalogHttpAuthSchemeProvider;
70
+ credentials?:
71
+ | import("@smithy/types").AwsCredentialIdentity
72
+ | import("@smithy/types").AwsCredentialIdentityProvider
73
+ | undefined;
74
+ signer?:
75
+ | import("@smithy/types").RequestSigner
76
+ | ((
77
+ authScheme?: import("@smithy/types").AuthScheme | undefined
78
+ ) => Promise<import("@smithy/types").RequestSigner>)
79
+ | undefined;
80
+ signingEscapePath?: boolean | undefined;
81
+ systemClockOffset?: number | undefined;
82
+ signingRegion?: string | undefined;
83
+ signerConstructor?:
84
+ | (new (
85
+ options: import("@smithy/signature-v4").SignatureV4Init &
86
+ import("@smithy/signature-v4").SignatureV4CryptoInit
87
+ ) => import("@smithy/types").RequestSigner)
88
+ | undefined;
89
+ };
@@ -0,0 +1,79 @@
1
+ import { ControlCatalogClientConfig } from "./ControlCatalogClient";
2
+ export declare const getRuntimeConfig: (config: ControlCatalogClientConfig) => {
3
+ runtime: string;
4
+ sha256: import("@smithy/types").HashConstructor;
5
+ requestHandler:
6
+ | import("@smithy/types").NodeHttpHandlerOptions
7
+ | import("@smithy/types").FetchHttpHandlerOptions
8
+ | Record<string, unknown>
9
+ | import("@smithy/protocol-http").HttpHandler<any>
10
+ | import("@smithy/fetch-http-handler").FetchHttpHandler;
11
+ apiVersion: string;
12
+ urlParser: import("@smithy/types").UrlParser;
13
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
14
+ streamCollector: import("@smithy/types").StreamCollector;
15
+ base64Decoder: import("@smithy/types").Decoder;
16
+ base64Encoder: (_input: string | Uint8Array) => string;
17
+ utf8Decoder: import("@smithy/types").Decoder;
18
+ utf8Encoder: (input: string | Uint8Array) => string;
19
+ disableHostPrefix: boolean;
20
+ serviceId: string;
21
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
23
+ defaultUserAgentProvider: import("@smithy/types").Provider<
24
+ import("@smithy/types").UserAgent
25
+ >;
26
+ region: string | import("@smithy/types").Provider<any>;
27
+ credentialDefaultProvider: (
28
+ input: any
29
+ ) => import("@smithy/types").AwsCredentialIdentityProvider;
30
+ maxAttempts: number | import("@smithy/types").Provider<number>;
31
+ retryMode: string | import("@smithy/types").Provider<string>;
32
+ logger: import("@smithy/types").Logger;
33
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
34
+ defaultsMode:
35
+ | import("@smithy/smithy-client").DefaultsMode
36
+ | import("@smithy/types").Provider<
37
+ import("@smithy/smithy-client").DefaultsMode
38
+ >;
39
+ endpoint?:
40
+ | string
41
+ | import("@smithy/types").Endpoint
42
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
43
+ | import("@smithy/types").EndpointV2
44
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
45
+ | undefined;
46
+ endpointProvider: (
47
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
48
+ context?: {
49
+ logger?: import("@smithy/types").Logger | undefined;
50
+ }
51
+ ) => import("@smithy/types").EndpointV2;
52
+ tls?: boolean | undefined;
53
+ retryStrategy?:
54
+ | import("@smithy/types").RetryStrategy
55
+ | import("@smithy/types").RetryStrategyV2
56
+ | undefined;
57
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
58
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
59
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ControlCatalogHttpAuthSchemeProvider;
60
+ credentials?:
61
+ | import("@smithy/types").AwsCredentialIdentity
62
+ | import("@smithy/types").AwsCredentialIdentityProvider
63
+ | undefined;
64
+ signer?:
65
+ | import("@smithy/types").RequestSigner
66
+ | ((
67
+ authScheme?: import("@smithy/types").AuthScheme | undefined
68
+ ) => Promise<import("@smithy/types").RequestSigner>)
69
+ | undefined;
70
+ signingEscapePath?: boolean | undefined;
71
+ systemClockOffset?: number | undefined;
72
+ signingRegion?: string | undefined;
73
+ signerConstructor?:
74
+ | (new (
75
+ options: import("@smithy/signature-v4").SignatureV4Init &
76
+ import("@smithy/signature-v4").SignatureV4CryptoInit
77
+ ) => import("@smithy/types").RequestSigner)
78
+ | undefined;
79
+ };
@@ -0,0 +1,21 @@
1
+ import { ControlCatalogClientConfig } from "./ControlCatalogClient";
2
+ export declare const getRuntimeConfig: (config: ControlCatalogClientConfig) => {
3
+ apiVersion: string;
4
+ base64Decoder: import("@smithy/types").Decoder;
5
+ base64Encoder: (_input: string | Uint8Array) => string;
6
+ disableHostPrefix: boolean;
7
+ endpointProvider: (
8
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
9
+ context?: {
10
+ logger?: import("@smithy/types").Logger | undefined;
11
+ }
12
+ ) => import("@smithy/types").EndpointV2;
13
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
14
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ControlCatalogHttpAuthSchemeProvider;
15
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
+ logger: import("@smithy/types").Logger;
17
+ serviceId: string;
18
+ urlParser: import("@smithy/types").UrlParser;
19
+ utf8Decoder: import("@smithy/types").Decoder;
20
+ utf8Encoder: (input: string | Uint8Array) => string;
21
+ };
@@ -0,0 +1,11 @@
1
+ import { ControlCatalogExtensionConfiguration } from "./extensionConfiguration";
2
+ export interface RuntimeExtension {
3
+ configure(extensionConfiguration: ControlCatalogExtensionConfiguration): void;
4
+ }
5
+ export interface RuntimeExtensionsConfig {
6
+ extensions: RuntimeExtension[];
7
+ }
8
+ export declare const resolveRuntimeExtensions: (
9
+ runtimeConfig: any,
10
+ extensions: RuntimeExtension[]
11
+ ) => any;