@aws-sdk/client-route53profiles 3.560.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 (163) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +335 -0
  3. package/dist-cjs/Route53Profiles.js +43 -0
  4. package/dist-cjs/Route53ProfilesClient.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/AssociateProfileCommand.js +28 -0
  8. package/dist-cjs/commands/AssociateResourceToProfileCommand.js +28 -0
  9. package/dist-cjs/commands/CreateProfileCommand.js +28 -0
  10. package/dist-cjs/commands/DeleteProfileCommand.js +28 -0
  11. package/dist-cjs/commands/DisassociateProfileCommand.js +28 -0
  12. package/dist-cjs/commands/DisassociateResourceFromProfileCommand.js +28 -0
  13. package/dist-cjs/commands/GetProfileAssociationCommand.js +28 -0
  14. package/dist-cjs/commands/GetProfileCommand.js +28 -0
  15. package/dist-cjs/commands/GetProfileResourceAssociationCommand.js +28 -0
  16. package/dist-cjs/commands/ListProfileAssociationsCommand.js +28 -0
  17. package/dist-cjs/commands/ListProfileResourceAssociationsCommand.js +28 -0
  18. package/dist-cjs/commands/ListProfilesCommand.js +28 -0
  19. package/dist-cjs/commands/ListTagsForResourceCommand.js +28 -0
  20. package/dist-cjs/commands/TagResourceCommand.js +28 -0
  21. package/dist-cjs/commands/UntagResourceCommand.js +28 -0
  22. package/dist-cjs/commands/UpdateProfileResourceAssociationCommand.js +28 -0
  23. package/dist-cjs/commands/index.js +19 -0
  24. package/dist-cjs/endpoint/EndpointParameters.js +18 -0
  25. package/dist-cjs/endpoint/endpointResolver.js +14 -0
  26. package/dist-cjs/endpoint/ruleset.js +7 -0
  27. package/dist-cjs/extensionConfiguration.js +2 -0
  28. package/dist-cjs/index.js +11 -0
  29. package/dist-cjs/models/Route53ProfilesServiceException.js +12 -0
  30. package/dist-cjs/models/index.js +4 -0
  31. package/dist-cjs/models/models_0.js +161 -0
  32. package/dist-cjs/pagination/Interfaces.js +2 -0
  33. package/dist-cjs/pagination/ListProfileAssociationsPaginator.js +7 -0
  34. package/dist-cjs/pagination/ListProfileResourceAssociationsPaginator.js +7 -0
  35. package/dist-cjs/pagination/ListProfilesPaginator.js +7 -0
  36. package/dist-cjs/pagination/index.js +7 -0
  37. package/dist-cjs/protocols/Aws_restJson1.js +719 -0
  38. package/dist-cjs/runtimeConfig.browser.js +39 -0
  39. package/dist-cjs/runtimeConfig.js +49 -0
  40. package/dist-cjs/runtimeConfig.native.js +15 -0
  41. package/dist-cjs/runtimeConfig.shared.js +34 -0
  42. package/dist-cjs/runtimeExtensions.js +25 -0
  43. package/dist-es/Route53Profiles.js +39 -0
  44. package/dist-es/Route53ProfilesClient.js +52 -0
  45. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  46. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  47. package/dist-es/commands/AssociateProfileCommand.js +24 -0
  48. package/dist-es/commands/AssociateResourceToProfileCommand.js +24 -0
  49. package/dist-es/commands/CreateProfileCommand.js +24 -0
  50. package/dist-es/commands/DeleteProfileCommand.js +24 -0
  51. package/dist-es/commands/DisassociateProfileCommand.js +24 -0
  52. package/dist-es/commands/DisassociateResourceFromProfileCommand.js +24 -0
  53. package/dist-es/commands/GetProfileAssociationCommand.js +24 -0
  54. package/dist-es/commands/GetProfileCommand.js +24 -0
  55. package/dist-es/commands/GetProfileResourceAssociationCommand.js +24 -0
  56. package/dist-es/commands/ListProfileAssociationsCommand.js +24 -0
  57. package/dist-es/commands/ListProfileResourceAssociationsCommand.js +24 -0
  58. package/dist-es/commands/ListProfilesCommand.js +24 -0
  59. package/dist-es/commands/ListTagsForResourceCommand.js +24 -0
  60. package/dist-es/commands/TagResourceCommand.js +24 -0
  61. package/dist-es/commands/UntagResourceCommand.js +24 -0
  62. package/dist-es/commands/UpdateProfileResourceAssociationCommand.js +24 -0
  63. package/dist-es/commands/index.js +16 -0
  64. package/dist-es/endpoint/EndpointParameters.js +14 -0
  65. package/dist-es/endpoint/endpointResolver.js +10 -0
  66. package/dist-es/endpoint/ruleset.js +4 -0
  67. package/dist-es/extensionConfiguration.js +1 -0
  68. package/dist-es/index.js +6 -0
  69. package/dist-es/models/Route53ProfilesServiceException.js +8 -0
  70. package/dist-es/models/index.js +1 -0
  71. package/dist-es/models/models_0.js +148 -0
  72. package/dist-es/pagination/Interfaces.js +1 -0
  73. package/dist-es/pagination/ListProfileAssociationsPaginator.js +4 -0
  74. package/dist-es/pagination/ListProfileResourceAssociationsPaginator.js +4 -0
  75. package/dist-es/pagination/ListProfilesPaginator.js +4 -0
  76. package/dist-es/pagination/index.js +4 -0
  77. package/dist-es/protocols/Aws_restJson1.js +684 -0
  78. package/dist-es/runtimeConfig.browser.js +34 -0
  79. package/dist-es/runtimeConfig.js +44 -0
  80. package/dist-es/runtimeConfig.native.js +11 -0
  81. package/dist-es/runtimeConfig.shared.js +30 -0
  82. package/dist-es/runtimeExtensions.js +21 -0
  83. package/dist-types/Route53Profiles.d.ts +126 -0
  84. package/dist-types/Route53ProfilesClient.d.ts +189 -0
  85. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  86. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  87. package/dist-types/commands/AssociateProfileCommand.d.ts +119 -0
  88. package/dist-types/commands/AssociateResourceToProfileCommand.d.ts +116 -0
  89. package/dist-types/commands/CreateProfileCommand.d.ts +104 -0
  90. package/dist-types/commands/DeleteProfileCommand.d.ts +97 -0
  91. package/dist-types/commands/DisassociateProfileCommand.d.ts +102 -0
  92. package/dist-types/commands/DisassociateResourceFromProfileCommand.d.ts +114 -0
  93. package/dist-types/commands/GetProfileAssociationCommand.d.ts +91 -0
  94. package/dist-types/commands/GetProfileCommand.d.ts +92 -0
  95. package/dist-types/commands/GetProfileResourceAssociationCommand.d.ts +98 -0
  96. package/dist-types/commands/ListProfileAssociationsCommand.d.ts +102 -0
  97. package/dist-types/commands/ListProfileResourceAssociationsCommand.d.ts +114 -0
  98. package/dist-types/commands/ListProfilesCommand.d.ts +95 -0
  99. package/dist-types/commands/ListTagsForResourceCommand.d.ts +88 -0
  100. package/dist-types/commands/TagResourceCommand.d.ts +82 -0
  101. package/dist-types/commands/UntagResourceCommand.d.ts +87 -0
  102. package/dist-types/commands/UpdateProfileResourceAssociationCommand.d.ts +115 -0
  103. package/dist-types/commands/index.d.ts +16 -0
  104. package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  105. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  106. package/dist-types/endpoint/ruleset.d.ts +2 -0
  107. package/dist-types/extensionConfiguration.d.ts +9 -0
  108. package/dist-types/index.d.ts +16 -0
  109. package/dist-types/models/Route53ProfilesServiceException.d.ts +13 -0
  110. package/dist-types/models/index.d.ts +1 -0
  111. package/dist-types/models/models_0.d.ts +1067 -0
  112. package/dist-types/pagination/Interfaces.d.ts +8 -0
  113. package/dist-types/pagination/ListProfileAssociationsPaginator.d.ts +7 -0
  114. package/dist-types/pagination/ListProfileResourceAssociationsPaginator.d.ts +7 -0
  115. package/dist-types/pagination/ListProfilesPaginator.d.ts +7 -0
  116. package/dist-types/pagination/index.d.ts +4 -0
  117. package/dist-types/protocols/Aws_restJson1.d.ts +146 -0
  118. package/dist-types/runtimeConfig.browser.d.ts +45 -0
  119. package/dist-types/runtimeConfig.d.ts +45 -0
  120. package/dist-types/runtimeConfig.native.d.ts +44 -0
  121. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  122. package/dist-types/runtimeExtensions.d.ts +17 -0
  123. package/dist-types/ts3.4/Route53Profiles.d.ts +281 -0
  124. package/dist-types/ts3.4/Route53ProfilesClient.d.ts +217 -0
  125. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  126. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  127. package/dist-types/ts3.4/commands/AssociateProfileCommand.d.ts +38 -0
  128. package/dist-types/ts3.4/commands/AssociateResourceToProfileCommand.d.ts +39 -0
  129. package/dist-types/ts3.4/commands/CreateProfileCommand.d.ts +38 -0
  130. package/dist-types/ts3.4/commands/DeleteProfileCommand.d.ts +38 -0
  131. package/dist-types/ts3.4/commands/DisassociateProfileCommand.d.ts +39 -0
  132. package/dist-types/ts3.4/commands/DisassociateResourceFromProfileCommand.d.ts +39 -0
  133. package/dist-types/ts3.4/commands/GetProfileAssociationCommand.d.ts +39 -0
  134. package/dist-types/ts3.4/commands/GetProfileCommand.d.ts +35 -0
  135. package/dist-types/ts3.4/commands/GetProfileResourceAssociationCommand.d.ts +39 -0
  136. package/dist-types/ts3.4/commands/ListProfileAssociationsCommand.d.ts +39 -0
  137. package/dist-types/ts3.4/commands/ListProfileResourceAssociationsCommand.d.ts +39 -0
  138. package/dist-types/ts3.4/commands/ListProfilesCommand.d.ts +35 -0
  139. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
  140. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
  141. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
  142. package/dist-types/ts3.4/commands/UpdateProfileResourceAssociationCommand.d.ts +39 -0
  143. package/dist-types/ts3.4/commands/index.d.ts +16 -0
  144. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  145. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  146. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  147. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  148. package/dist-types/ts3.4/index.d.ts +9 -0
  149. package/dist-types/ts3.4/models/Route53ProfilesServiceException.d.ts +8 -0
  150. package/dist-types/ts3.4/models/index.d.ts +1 -0
  151. package/dist-types/ts3.4/models/models_0.d.ts +261 -0
  152. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  153. package/dist-types/ts3.4/pagination/ListProfileAssociationsPaginator.d.ts +11 -0
  154. package/dist-types/ts3.4/pagination/ListProfileResourceAssociationsPaginator.d.ts +11 -0
  155. package/dist-types/ts3.4/pagination/ListProfilesPaginator.d.ts +11 -0
  156. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  157. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +197 -0
  158. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +87 -0
  159. package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
  160. package/dist-types/ts3.4/runtimeConfig.native.d.ts +81 -0
  161. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
  162. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  163. package/package.json +103 -0
@@ -0,0 +1,217 @@
1
+ import {
2
+ HostHeaderInputConfig,
3
+ HostHeaderResolvedConfig,
4
+ } from "@aws-sdk/middleware-host-header";
5
+ import {
6
+ UserAgentInputConfig,
7
+ UserAgentResolvedConfig,
8
+ } from "@aws-sdk/middleware-user-agent";
9
+ import {
10
+ RegionInputConfig,
11
+ RegionResolvedConfig,
12
+ } from "@smithy/config-resolver";
13
+ import {
14
+ EndpointInputConfig,
15
+ EndpointResolvedConfig,
16
+ } from "@smithy/middleware-endpoint";
17
+ import {
18
+ RetryInputConfig,
19
+ RetryResolvedConfig,
20
+ } from "@smithy/middleware-retry";
21
+ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
22
+ import {
23
+ Client as __Client,
24
+ DefaultsMode as __DefaultsMode,
25
+ SmithyConfiguration as __SmithyConfiguration,
26
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
27
+ } from "@smithy/smithy-client";
28
+ import {
29
+ AwsCredentialIdentityProvider,
30
+ BodyLengthCalculator as __BodyLengthCalculator,
31
+ CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
+ ChecksumConstructor as __ChecksumConstructor,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ StreamCollector as __StreamCollector,
41
+ UrlParser as __UrlParser,
42
+ UserAgent as __UserAgent,
43
+ } from "@smithy/types";
44
+ import {
45
+ HttpAuthSchemeInputConfig,
46
+ HttpAuthSchemeResolvedConfig,
47
+ } from "./auth/httpAuthSchemeProvider";
48
+ import {
49
+ AssociateProfileCommandInput,
50
+ AssociateProfileCommandOutput,
51
+ } from "./commands/AssociateProfileCommand";
52
+ import {
53
+ AssociateResourceToProfileCommandInput,
54
+ AssociateResourceToProfileCommandOutput,
55
+ } from "./commands/AssociateResourceToProfileCommand";
56
+ import {
57
+ CreateProfileCommandInput,
58
+ CreateProfileCommandOutput,
59
+ } from "./commands/CreateProfileCommand";
60
+ import {
61
+ DeleteProfileCommandInput,
62
+ DeleteProfileCommandOutput,
63
+ } from "./commands/DeleteProfileCommand";
64
+ import {
65
+ DisassociateProfileCommandInput,
66
+ DisassociateProfileCommandOutput,
67
+ } from "./commands/DisassociateProfileCommand";
68
+ import {
69
+ DisassociateResourceFromProfileCommandInput,
70
+ DisassociateResourceFromProfileCommandOutput,
71
+ } from "./commands/DisassociateResourceFromProfileCommand";
72
+ import {
73
+ GetProfileAssociationCommandInput,
74
+ GetProfileAssociationCommandOutput,
75
+ } from "./commands/GetProfileAssociationCommand";
76
+ import {
77
+ GetProfileCommandInput,
78
+ GetProfileCommandOutput,
79
+ } from "./commands/GetProfileCommand";
80
+ import {
81
+ GetProfileResourceAssociationCommandInput,
82
+ GetProfileResourceAssociationCommandOutput,
83
+ } from "./commands/GetProfileResourceAssociationCommand";
84
+ import {
85
+ ListProfileAssociationsCommandInput,
86
+ ListProfileAssociationsCommandOutput,
87
+ } from "./commands/ListProfileAssociationsCommand";
88
+ import {
89
+ ListProfileResourceAssociationsCommandInput,
90
+ ListProfileResourceAssociationsCommandOutput,
91
+ } from "./commands/ListProfileResourceAssociationsCommand";
92
+ import {
93
+ ListProfilesCommandInput,
94
+ ListProfilesCommandOutput,
95
+ } from "./commands/ListProfilesCommand";
96
+ import {
97
+ ListTagsForResourceCommandInput,
98
+ ListTagsForResourceCommandOutput,
99
+ } from "./commands/ListTagsForResourceCommand";
100
+ import {
101
+ TagResourceCommandInput,
102
+ TagResourceCommandOutput,
103
+ } from "./commands/TagResourceCommand";
104
+ import {
105
+ UntagResourceCommandInput,
106
+ UntagResourceCommandOutput,
107
+ } from "./commands/UntagResourceCommand";
108
+ import {
109
+ UpdateProfileResourceAssociationCommandInput,
110
+ UpdateProfileResourceAssociationCommandOutput,
111
+ } from "./commands/UpdateProfileResourceAssociationCommand";
112
+ import {
113
+ ClientInputEndpointParameters,
114
+ ClientResolvedEndpointParameters,
115
+ EndpointParameters,
116
+ } from "./endpoint/EndpointParameters";
117
+ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
118
+ export { __Client };
119
+ export type ServiceInputTypes =
120
+ | AssociateProfileCommandInput
121
+ | AssociateResourceToProfileCommandInput
122
+ | CreateProfileCommandInput
123
+ | DeleteProfileCommandInput
124
+ | DisassociateProfileCommandInput
125
+ | DisassociateResourceFromProfileCommandInput
126
+ | GetProfileAssociationCommandInput
127
+ | GetProfileCommandInput
128
+ | GetProfileResourceAssociationCommandInput
129
+ | ListProfileAssociationsCommandInput
130
+ | ListProfileResourceAssociationsCommandInput
131
+ | ListProfilesCommandInput
132
+ | ListTagsForResourceCommandInput
133
+ | TagResourceCommandInput
134
+ | UntagResourceCommandInput
135
+ | UpdateProfileResourceAssociationCommandInput;
136
+ export type ServiceOutputTypes =
137
+ | AssociateProfileCommandOutput
138
+ | AssociateResourceToProfileCommandOutput
139
+ | CreateProfileCommandOutput
140
+ | DeleteProfileCommandOutput
141
+ | DisassociateProfileCommandOutput
142
+ | DisassociateResourceFromProfileCommandOutput
143
+ | GetProfileAssociationCommandOutput
144
+ | GetProfileCommandOutput
145
+ | GetProfileResourceAssociationCommandOutput
146
+ | ListProfileAssociationsCommandOutput
147
+ | ListProfileResourceAssociationsCommandOutput
148
+ | ListProfilesCommandOutput
149
+ | ListTagsForResourceCommandOutput
150
+ | TagResourceCommandOutput
151
+ | UntagResourceCommandOutput
152
+ | UpdateProfileResourceAssociationCommandOutput;
153
+ export interface ClientDefaults
154
+ extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
155
+ requestHandler?: __HttpHandlerUserInput;
156
+ sha256?: __ChecksumConstructor | __HashConstructor;
157
+ urlParser?: __UrlParser;
158
+ bodyLengthChecker?: __BodyLengthCalculator;
159
+ streamCollector?: __StreamCollector;
160
+ base64Decoder?: __Decoder;
161
+ base64Encoder?: __Encoder;
162
+ utf8Decoder?: __Decoder;
163
+ utf8Encoder?: __Encoder;
164
+ runtime?: string;
165
+ disableHostPrefix?: boolean;
166
+ serviceId?: string;
167
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
168
+ useFipsEndpoint?: boolean | __Provider<boolean>;
169
+ defaultUserAgentProvider?: Provider<__UserAgent>;
170
+ region?: string | __Provider<string>;
171
+ credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
172
+ maxAttempts?: number | __Provider<number>;
173
+ retryMode?: string | __Provider<string>;
174
+ logger?: __Logger;
175
+ extensions?: RuntimeExtension[];
176
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
177
+ }
178
+ export type Route53ProfilesClientConfigType = Partial<
179
+ __SmithyConfiguration<__HttpHandlerOptions>
180
+ > &
181
+ ClientDefaults &
182
+ RegionInputConfig &
183
+ EndpointInputConfig<EndpointParameters> &
184
+ RetryInputConfig &
185
+ HostHeaderInputConfig &
186
+ UserAgentInputConfig &
187
+ HttpAuthSchemeInputConfig &
188
+ ClientInputEndpointParameters;
189
+ export interface Route53ProfilesClientConfig
190
+ extends Route53ProfilesClientConfigType {}
191
+ export type Route53ProfilesClientResolvedConfigType =
192
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
193
+ Required<ClientDefaults> &
194
+ RuntimeExtensionsConfig &
195
+ RegionResolvedConfig &
196
+ EndpointResolvedConfig<EndpointParameters> &
197
+ RetryResolvedConfig &
198
+ HostHeaderResolvedConfig &
199
+ UserAgentResolvedConfig &
200
+ HttpAuthSchemeResolvedConfig &
201
+ ClientResolvedEndpointParameters;
202
+ export interface Route53ProfilesClientResolvedConfig
203
+ extends Route53ProfilesClientResolvedConfigType {}
204
+ export declare class Route53ProfilesClient extends __Client<
205
+ __HttpHandlerOptions,
206
+ ServiceInputTypes,
207
+ ServiceOutputTypes,
208
+ Route53ProfilesClientResolvedConfig
209
+ > {
210
+ readonly config: Route53ProfilesClientResolvedConfig;
211
+ constructor(
212
+ ...[configuration]: __CheckOptionalClientConfig<Route53ProfilesClientConfig>
213
+ );
214
+ destroy(): void;
215
+ private getDefaultHttpAuthSchemeParametersProvider;
216
+ private getIdentityProviderConfigProvider;
217
+ }
@@ -0,0 +1,32 @@
1
+ import {
2
+ AwsCredentialIdentity,
3
+ AwsCredentialIdentityProvider,
4
+ HttpAuthScheme,
5
+ } from "@smithy/types";
6
+ import { Route53ProfilesHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
+ export interface HttpAuthExtensionConfiguration {
8
+ setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
+ httpAuthSchemes(): HttpAuthScheme[];
10
+ setHttpAuthSchemeProvider(
11
+ httpAuthSchemeProvider: Route53ProfilesHttpAuthSchemeProvider
12
+ ): void;
13
+ httpAuthSchemeProvider(): Route53ProfilesHttpAuthSchemeProvider;
14
+ setCredentials(
15
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
+ ): void;
17
+ credentials():
18
+ | AwsCredentialIdentity
19
+ | AwsCredentialIdentityProvider
20
+ | undefined;
21
+ }
22
+ export type HttpAuthRuntimeConfig = Partial<{
23
+ httpAuthSchemes: HttpAuthScheme[];
24
+ httpAuthSchemeProvider: Route53ProfilesHttpAuthSchemeProvider;
25
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
+ }>;
27
+ export declare const getHttpAuthExtensionConfiguration: (
28
+ runtimeConfig: HttpAuthRuntimeConfig
29
+ ) => HttpAuthExtensionConfiguration;
30
+ export declare const resolveHttpAuthRuntimeConfig: (
31
+ config: HttpAuthExtensionConfiguration
32
+ ) => HttpAuthRuntimeConfig;
@@ -0,0 +1,44 @@
1
+ import {
2
+ AwsSdkSigV4AuthInputConfig,
3
+ AwsSdkSigV4AuthResolvedConfig,
4
+ AwsSdkSigV4PreviouslyResolved,
5
+ } from "@aws-sdk/core";
6
+ import {
7
+ HandlerExecutionContext,
8
+ HttpAuthScheme,
9
+ HttpAuthSchemeParameters,
10
+ HttpAuthSchemeParametersProvider,
11
+ HttpAuthSchemeProvider,
12
+ } from "@smithy/types";
13
+ import { Route53ProfilesClientResolvedConfig } from "../Route53ProfilesClient";
14
+ export interface Route53ProfilesHttpAuthSchemeParameters
15
+ extends HttpAuthSchemeParameters {
16
+ region?: string;
17
+ }
18
+ export interface Route53ProfilesHttpAuthSchemeParametersProvider
19
+ extends HttpAuthSchemeParametersProvider<
20
+ Route53ProfilesClientResolvedConfig,
21
+ HandlerExecutionContext,
22
+ Route53ProfilesHttpAuthSchemeParameters,
23
+ object
24
+ > {}
25
+ export declare const defaultRoute53ProfilesHttpAuthSchemeParametersProvider: (
26
+ config: Route53ProfilesClientResolvedConfig,
27
+ context: HandlerExecutionContext,
28
+ input: object
29
+ ) => Promise<Route53ProfilesHttpAuthSchemeParameters>;
30
+ export interface Route53ProfilesHttpAuthSchemeProvider
31
+ extends HttpAuthSchemeProvider<Route53ProfilesHttpAuthSchemeParameters> {}
32
+ export declare const defaultRoute53ProfilesHttpAuthSchemeProvider: Route53ProfilesHttpAuthSchemeProvider;
33
+ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
34
+ httpAuthSchemes?: HttpAuthScheme[];
35
+ httpAuthSchemeProvider?: Route53ProfilesHttpAuthSchemeProvider;
36
+ }
37
+ export interface HttpAuthSchemeResolvedConfig
38
+ extends AwsSdkSigV4AuthResolvedConfig {
39
+ readonly httpAuthSchemes: HttpAuthScheme[];
40
+ readonly httpAuthSchemeProvider: Route53ProfilesHttpAuthSchemeProvider;
41
+ }
42
+ export declare const resolveHttpAuthSchemeConfig: <T>(
43
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
44
+ ) => T & HttpAuthSchemeResolvedConfig;
@@ -0,0 +1,38 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ AssociateProfileRequest,
5
+ AssociateProfileResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ Route53ProfilesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../Route53ProfilesClient";
12
+ export { __MetadataBearer, $Command };
13
+ export interface AssociateProfileCommandInput extends AssociateProfileRequest {}
14
+ export interface AssociateProfileCommandOutput
15
+ extends AssociateProfileResponse,
16
+ __MetadataBearer {}
17
+ declare const AssociateProfileCommand_base: {
18
+ new (
19
+ input: AssociateProfileCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ AssociateProfileCommandInput,
22
+ AssociateProfileCommandOutput,
23
+ Route53ProfilesClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ new (
28
+ __0_0: AssociateProfileCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ AssociateProfileCommandInput,
31
+ AssociateProfileCommandOutput,
32
+ Route53ProfilesClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
36
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
37
+ };
38
+ export declare class AssociateProfileCommand extends AssociateProfileCommand_base {}
@@ -0,0 +1,39 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ AssociateResourceToProfileRequest,
5
+ AssociateResourceToProfileResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ Route53ProfilesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../Route53ProfilesClient";
12
+ export { __MetadataBearer, $Command };
13
+ export interface AssociateResourceToProfileCommandInput
14
+ extends AssociateResourceToProfileRequest {}
15
+ export interface AssociateResourceToProfileCommandOutput
16
+ extends AssociateResourceToProfileResponse,
17
+ __MetadataBearer {}
18
+ declare const AssociateResourceToProfileCommand_base: {
19
+ new (
20
+ input: AssociateResourceToProfileCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ AssociateResourceToProfileCommandInput,
23
+ AssociateResourceToProfileCommandOutput,
24
+ Route53ProfilesClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: AssociateResourceToProfileCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ AssociateResourceToProfileCommandInput,
32
+ AssociateResourceToProfileCommandOutput,
33
+ Route53ProfilesClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class AssociateResourceToProfileCommand extends AssociateResourceToProfileCommand_base {}
@@ -0,0 +1,38 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CreateProfileRequest,
5
+ CreateProfileResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ Route53ProfilesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../Route53ProfilesClient";
12
+ export { __MetadataBearer, $Command };
13
+ export interface CreateProfileCommandInput extends CreateProfileRequest {}
14
+ export interface CreateProfileCommandOutput
15
+ extends CreateProfileResponse,
16
+ __MetadataBearer {}
17
+ declare const CreateProfileCommand_base: {
18
+ new (
19
+ input: CreateProfileCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ CreateProfileCommandInput,
22
+ CreateProfileCommandOutput,
23
+ Route53ProfilesClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ new (
28
+ __0_0: CreateProfileCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ CreateProfileCommandInput,
31
+ CreateProfileCommandOutput,
32
+ Route53ProfilesClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
36
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
37
+ };
38
+ export declare class CreateProfileCommand extends CreateProfileCommand_base {}
@@ -0,0 +1,38 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DeleteProfileRequest,
5
+ DeleteProfileResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ Route53ProfilesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../Route53ProfilesClient";
12
+ export { __MetadataBearer, $Command };
13
+ export interface DeleteProfileCommandInput extends DeleteProfileRequest {}
14
+ export interface DeleteProfileCommandOutput
15
+ extends DeleteProfileResponse,
16
+ __MetadataBearer {}
17
+ declare const DeleteProfileCommand_base: {
18
+ new (
19
+ input: DeleteProfileCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ DeleteProfileCommandInput,
22
+ DeleteProfileCommandOutput,
23
+ Route53ProfilesClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ new (
28
+ __0_0: DeleteProfileCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ DeleteProfileCommandInput,
31
+ DeleteProfileCommandOutput,
32
+ Route53ProfilesClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
36
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
37
+ };
38
+ export declare class DeleteProfileCommand extends DeleteProfileCommand_base {}
@@ -0,0 +1,39 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DisassociateProfileRequest,
5
+ DisassociateProfileResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ Route53ProfilesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../Route53ProfilesClient";
12
+ export { __MetadataBearer, $Command };
13
+ export interface DisassociateProfileCommandInput
14
+ extends DisassociateProfileRequest {}
15
+ export interface DisassociateProfileCommandOutput
16
+ extends DisassociateProfileResponse,
17
+ __MetadataBearer {}
18
+ declare const DisassociateProfileCommand_base: {
19
+ new (
20
+ input: DisassociateProfileCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ DisassociateProfileCommandInput,
23
+ DisassociateProfileCommandOutput,
24
+ Route53ProfilesClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: DisassociateProfileCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DisassociateProfileCommandInput,
32
+ DisassociateProfileCommandOutput,
33
+ Route53ProfilesClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class DisassociateProfileCommand extends DisassociateProfileCommand_base {}
@@ -0,0 +1,39 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DisassociateResourceFromProfileRequest,
5
+ DisassociateResourceFromProfileResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ Route53ProfilesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../Route53ProfilesClient";
12
+ export { __MetadataBearer, $Command };
13
+ export interface DisassociateResourceFromProfileCommandInput
14
+ extends DisassociateResourceFromProfileRequest {}
15
+ export interface DisassociateResourceFromProfileCommandOutput
16
+ extends DisassociateResourceFromProfileResponse,
17
+ __MetadataBearer {}
18
+ declare const DisassociateResourceFromProfileCommand_base: {
19
+ new (
20
+ input: DisassociateResourceFromProfileCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ DisassociateResourceFromProfileCommandInput,
23
+ DisassociateResourceFromProfileCommandOutput,
24
+ Route53ProfilesClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: DisassociateResourceFromProfileCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DisassociateResourceFromProfileCommandInput,
32
+ DisassociateResourceFromProfileCommandOutput,
33
+ Route53ProfilesClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class DisassociateResourceFromProfileCommand extends DisassociateResourceFromProfileCommand_base {}
@@ -0,0 +1,39 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ GetProfileAssociationRequest,
5
+ GetProfileAssociationResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ Route53ProfilesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../Route53ProfilesClient";
12
+ export { __MetadataBearer, $Command };
13
+ export interface GetProfileAssociationCommandInput
14
+ extends GetProfileAssociationRequest {}
15
+ export interface GetProfileAssociationCommandOutput
16
+ extends GetProfileAssociationResponse,
17
+ __MetadataBearer {}
18
+ declare const GetProfileAssociationCommand_base: {
19
+ new (
20
+ input: GetProfileAssociationCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ GetProfileAssociationCommandInput,
23
+ GetProfileAssociationCommandOutput,
24
+ Route53ProfilesClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: GetProfileAssociationCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetProfileAssociationCommandInput,
32
+ GetProfileAssociationCommandOutput,
33
+ Route53ProfilesClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class GetProfileAssociationCommand extends GetProfileAssociationCommand_base {}
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetProfileRequest, GetProfileResponse } from "../models/models_0";
4
+ import {
5
+ Route53ProfilesClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../Route53ProfilesClient";
9
+ export { __MetadataBearer, $Command };
10
+ export interface GetProfileCommandInput extends GetProfileRequest {}
11
+ export interface GetProfileCommandOutput
12
+ extends GetProfileResponse,
13
+ __MetadataBearer {}
14
+ declare const GetProfileCommand_base: {
15
+ new (
16
+ input: GetProfileCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ GetProfileCommandInput,
19
+ GetProfileCommandOutput,
20
+ Route53ProfilesClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ new (
25
+ __0_0: GetProfileCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ GetProfileCommandInput,
28
+ GetProfileCommandOutput,
29
+ Route53ProfilesClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
33
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
34
+ };
35
+ export declare class GetProfileCommand extends GetProfileCommand_base {}
@@ -0,0 +1,39 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ GetProfileResourceAssociationRequest,
5
+ GetProfileResourceAssociationResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ Route53ProfilesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../Route53ProfilesClient";
12
+ export { __MetadataBearer, $Command };
13
+ export interface GetProfileResourceAssociationCommandInput
14
+ extends GetProfileResourceAssociationRequest {}
15
+ export interface GetProfileResourceAssociationCommandOutput
16
+ extends GetProfileResourceAssociationResponse,
17
+ __MetadataBearer {}
18
+ declare const GetProfileResourceAssociationCommand_base: {
19
+ new (
20
+ input: GetProfileResourceAssociationCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ GetProfileResourceAssociationCommandInput,
23
+ GetProfileResourceAssociationCommandOutput,
24
+ Route53ProfilesClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: GetProfileResourceAssociationCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetProfileResourceAssociationCommandInput,
32
+ GetProfileResourceAssociationCommandOutput,
33
+ Route53ProfilesClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class GetProfileResourceAssociationCommand extends GetProfileResourceAssociationCommand_base {}
@@ -0,0 +1,39 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListProfileAssociationsRequest,
5
+ ListProfileAssociationsResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ Route53ProfilesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../Route53ProfilesClient";
12
+ export { __MetadataBearer, $Command };
13
+ export interface ListProfileAssociationsCommandInput
14
+ extends ListProfileAssociationsRequest {}
15
+ export interface ListProfileAssociationsCommandOutput
16
+ extends ListProfileAssociationsResponse,
17
+ __MetadataBearer {}
18
+ declare const ListProfileAssociationsCommand_base: {
19
+ new (
20
+ input: ListProfileAssociationsCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListProfileAssociationsCommandInput,
23
+ ListProfileAssociationsCommandOutput,
24
+ Route53ProfilesClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ ...[input]: [] | [ListProfileAssociationsCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListProfileAssociationsCommandInput,
32
+ ListProfileAssociationsCommandOutput,
33
+ Route53ProfilesClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListProfileAssociationsCommand extends ListProfileAssociationsCommand_base {}