@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.
- package/LICENSE +201 -0
- package/README.md +335 -0
- package/dist-cjs/Route53Profiles.js +43 -0
- package/dist-cjs/Route53ProfilesClient.js +56 -0
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/commands/AssociateProfileCommand.js +28 -0
- package/dist-cjs/commands/AssociateResourceToProfileCommand.js +28 -0
- package/dist-cjs/commands/CreateProfileCommand.js +28 -0
- package/dist-cjs/commands/DeleteProfileCommand.js +28 -0
- package/dist-cjs/commands/DisassociateProfileCommand.js +28 -0
- package/dist-cjs/commands/DisassociateResourceFromProfileCommand.js +28 -0
- package/dist-cjs/commands/GetProfileAssociationCommand.js +28 -0
- package/dist-cjs/commands/GetProfileCommand.js +28 -0
- package/dist-cjs/commands/GetProfileResourceAssociationCommand.js +28 -0
- package/dist-cjs/commands/ListProfileAssociationsCommand.js +28 -0
- package/dist-cjs/commands/ListProfileResourceAssociationsCommand.js +28 -0
- package/dist-cjs/commands/ListProfilesCommand.js +28 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +28 -0
- package/dist-cjs/commands/TagResourceCommand.js +28 -0
- package/dist-cjs/commands/UntagResourceCommand.js +28 -0
- package/dist-cjs/commands/UpdateProfileResourceAssociationCommand.js +28 -0
- package/dist-cjs/commands/index.js +19 -0
- package/dist-cjs/endpoint/EndpointParameters.js +18 -0
- package/dist-cjs/endpoint/endpointResolver.js +14 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/Route53ProfilesServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +161 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListProfileAssociationsPaginator.js +7 -0
- package/dist-cjs/pagination/ListProfileResourceAssociationsPaginator.js +7 -0
- package/dist-cjs/pagination/ListProfilesPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +7 -0
- package/dist-cjs/protocols/Aws_restJson1.js +719 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +49 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +34 -0
- package/dist-cjs/runtimeExtensions.js +25 -0
- package/dist-es/Route53Profiles.js +39 -0
- package/dist-es/Route53ProfilesClient.js +52 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/AssociateProfileCommand.js +24 -0
- package/dist-es/commands/AssociateResourceToProfileCommand.js +24 -0
- package/dist-es/commands/CreateProfileCommand.js +24 -0
- package/dist-es/commands/DeleteProfileCommand.js +24 -0
- package/dist-es/commands/DisassociateProfileCommand.js +24 -0
- package/dist-es/commands/DisassociateResourceFromProfileCommand.js +24 -0
- package/dist-es/commands/GetProfileAssociationCommand.js +24 -0
- package/dist-es/commands/GetProfileCommand.js +24 -0
- package/dist-es/commands/GetProfileResourceAssociationCommand.js +24 -0
- package/dist-es/commands/ListProfileAssociationsCommand.js +24 -0
- package/dist-es/commands/ListProfileResourceAssociationsCommand.js +24 -0
- package/dist-es/commands/ListProfilesCommand.js +24 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +24 -0
- package/dist-es/commands/TagResourceCommand.js +24 -0
- package/dist-es/commands/UntagResourceCommand.js +24 -0
- package/dist-es/commands/UpdateProfileResourceAssociationCommand.js +24 -0
- package/dist-es/commands/index.js +16 -0
- package/dist-es/endpoint/EndpointParameters.js +14 -0
- package/dist-es/endpoint/endpointResolver.js +10 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/Route53ProfilesServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +148 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListProfileAssociationsPaginator.js +4 -0
- package/dist-es/pagination/ListProfileResourceAssociationsPaginator.js +4 -0
- package/dist-es/pagination/ListProfilesPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +684 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +44 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +30 -0
- package/dist-es/runtimeExtensions.js +21 -0
- package/dist-types/Route53Profiles.d.ts +126 -0
- package/dist-types/Route53ProfilesClient.d.ts +189 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist-types/commands/AssociateProfileCommand.d.ts +119 -0
- package/dist-types/commands/AssociateResourceToProfileCommand.d.ts +116 -0
- package/dist-types/commands/CreateProfileCommand.d.ts +104 -0
- package/dist-types/commands/DeleteProfileCommand.d.ts +97 -0
- package/dist-types/commands/DisassociateProfileCommand.d.ts +102 -0
- package/dist-types/commands/DisassociateResourceFromProfileCommand.d.ts +114 -0
- package/dist-types/commands/GetProfileAssociationCommand.d.ts +91 -0
- package/dist-types/commands/GetProfileCommand.d.ts +92 -0
- package/dist-types/commands/GetProfileResourceAssociationCommand.d.ts +98 -0
- package/dist-types/commands/ListProfileAssociationsCommand.d.ts +102 -0
- package/dist-types/commands/ListProfileResourceAssociationsCommand.d.ts +114 -0
- package/dist-types/commands/ListProfilesCommand.d.ts +95 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +88 -0
- package/dist-types/commands/TagResourceCommand.d.ts +82 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +87 -0
- package/dist-types/commands/UpdateProfileResourceAssociationCommand.d.ts +115 -0
- package/dist-types/commands/index.d.ts +16 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +16 -0
- package/dist-types/models/Route53ProfilesServiceException.d.ts +13 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1067 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListProfileAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListProfileResourceAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListProfilesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +146 -0
- package/dist-types/runtimeConfig.browser.d.ts +45 -0
- package/dist-types/runtimeConfig.d.ts +45 -0
- package/dist-types/runtimeConfig.native.d.ts +44 -0
- package/dist-types/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/Route53Profiles.d.ts +281 -0
- package/dist-types/ts3.4/Route53ProfilesClient.d.ts +217 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist-types/ts3.4/commands/AssociateProfileCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/AssociateResourceToProfileCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateProfileCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteProfileCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DisassociateProfileCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DisassociateResourceFromProfileCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetProfileAssociationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetProfileCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetProfileResourceAssociationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListProfileAssociationsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListProfileResourceAssociationsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListProfilesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateProfileResourceAssociationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +16 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +9 -0
- package/dist-types/ts3.4/models/Route53ProfilesServiceException.d.ts +8 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +261 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListProfileAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListProfileResourceAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListProfilesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +197 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +87 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +81 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
- package/package.json +103 -0
|
@@ -0,0 +1,197 @@
|
|
|
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
|
+
AssociateProfileCommandInput,
|
|
8
|
+
AssociateProfileCommandOutput,
|
|
9
|
+
} from "../commands/AssociateProfileCommand";
|
|
10
|
+
import {
|
|
11
|
+
AssociateResourceToProfileCommandInput,
|
|
12
|
+
AssociateResourceToProfileCommandOutput,
|
|
13
|
+
} from "../commands/AssociateResourceToProfileCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateProfileCommandInput,
|
|
16
|
+
CreateProfileCommandOutput,
|
|
17
|
+
} from "../commands/CreateProfileCommand";
|
|
18
|
+
import {
|
|
19
|
+
DeleteProfileCommandInput,
|
|
20
|
+
DeleteProfileCommandOutput,
|
|
21
|
+
} from "../commands/DeleteProfileCommand";
|
|
22
|
+
import {
|
|
23
|
+
DisassociateProfileCommandInput,
|
|
24
|
+
DisassociateProfileCommandOutput,
|
|
25
|
+
} from "../commands/DisassociateProfileCommand";
|
|
26
|
+
import {
|
|
27
|
+
DisassociateResourceFromProfileCommandInput,
|
|
28
|
+
DisassociateResourceFromProfileCommandOutput,
|
|
29
|
+
} from "../commands/DisassociateResourceFromProfileCommand";
|
|
30
|
+
import {
|
|
31
|
+
GetProfileAssociationCommandInput,
|
|
32
|
+
GetProfileAssociationCommandOutput,
|
|
33
|
+
} from "../commands/GetProfileAssociationCommand";
|
|
34
|
+
import {
|
|
35
|
+
GetProfileCommandInput,
|
|
36
|
+
GetProfileCommandOutput,
|
|
37
|
+
} from "../commands/GetProfileCommand";
|
|
38
|
+
import {
|
|
39
|
+
GetProfileResourceAssociationCommandInput,
|
|
40
|
+
GetProfileResourceAssociationCommandOutput,
|
|
41
|
+
} from "../commands/GetProfileResourceAssociationCommand";
|
|
42
|
+
import {
|
|
43
|
+
ListProfileAssociationsCommandInput,
|
|
44
|
+
ListProfileAssociationsCommandOutput,
|
|
45
|
+
} from "../commands/ListProfileAssociationsCommand";
|
|
46
|
+
import {
|
|
47
|
+
ListProfileResourceAssociationsCommandInput,
|
|
48
|
+
ListProfileResourceAssociationsCommandOutput,
|
|
49
|
+
} from "../commands/ListProfileResourceAssociationsCommand";
|
|
50
|
+
import {
|
|
51
|
+
ListProfilesCommandInput,
|
|
52
|
+
ListProfilesCommandOutput,
|
|
53
|
+
} from "../commands/ListProfilesCommand";
|
|
54
|
+
import {
|
|
55
|
+
ListTagsForResourceCommandInput,
|
|
56
|
+
ListTagsForResourceCommandOutput,
|
|
57
|
+
} from "../commands/ListTagsForResourceCommand";
|
|
58
|
+
import {
|
|
59
|
+
TagResourceCommandInput,
|
|
60
|
+
TagResourceCommandOutput,
|
|
61
|
+
} from "../commands/TagResourceCommand";
|
|
62
|
+
import {
|
|
63
|
+
UntagResourceCommandInput,
|
|
64
|
+
UntagResourceCommandOutput,
|
|
65
|
+
} from "../commands/UntagResourceCommand";
|
|
66
|
+
import {
|
|
67
|
+
UpdateProfileResourceAssociationCommandInput,
|
|
68
|
+
UpdateProfileResourceAssociationCommandOutput,
|
|
69
|
+
} from "../commands/UpdateProfileResourceAssociationCommand";
|
|
70
|
+
export declare const se_AssociateProfileCommand: (
|
|
71
|
+
input: AssociateProfileCommandInput,
|
|
72
|
+
context: __SerdeContext
|
|
73
|
+
) => Promise<__HttpRequest>;
|
|
74
|
+
export declare const se_AssociateResourceToProfileCommand: (
|
|
75
|
+
input: AssociateResourceToProfileCommandInput,
|
|
76
|
+
context: __SerdeContext
|
|
77
|
+
) => Promise<__HttpRequest>;
|
|
78
|
+
export declare const se_CreateProfileCommand: (
|
|
79
|
+
input: CreateProfileCommandInput,
|
|
80
|
+
context: __SerdeContext
|
|
81
|
+
) => Promise<__HttpRequest>;
|
|
82
|
+
export declare const se_DeleteProfileCommand: (
|
|
83
|
+
input: DeleteProfileCommandInput,
|
|
84
|
+
context: __SerdeContext
|
|
85
|
+
) => Promise<__HttpRequest>;
|
|
86
|
+
export declare const se_DisassociateProfileCommand: (
|
|
87
|
+
input: DisassociateProfileCommandInput,
|
|
88
|
+
context: __SerdeContext
|
|
89
|
+
) => Promise<__HttpRequest>;
|
|
90
|
+
export declare const se_DisassociateResourceFromProfileCommand: (
|
|
91
|
+
input: DisassociateResourceFromProfileCommandInput,
|
|
92
|
+
context: __SerdeContext
|
|
93
|
+
) => Promise<__HttpRequest>;
|
|
94
|
+
export declare const se_GetProfileCommand: (
|
|
95
|
+
input: GetProfileCommandInput,
|
|
96
|
+
context: __SerdeContext
|
|
97
|
+
) => Promise<__HttpRequest>;
|
|
98
|
+
export declare const se_GetProfileAssociationCommand: (
|
|
99
|
+
input: GetProfileAssociationCommandInput,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<__HttpRequest>;
|
|
102
|
+
export declare const se_GetProfileResourceAssociationCommand: (
|
|
103
|
+
input: GetProfileResourceAssociationCommandInput,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<__HttpRequest>;
|
|
106
|
+
export declare const se_ListProfileAssociationsCommand: (
|
|
107
|
+
input: ListProfileAssociationsCommandInput,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<__HttpRequest>;
|
|
110
|
+
export declare const se_ListProfileResourceAssociationsCommand: (
|
|
111
|
+
input: ListProfileResourceAssociationsCommandInput,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const se_ListProfilesCommand: (
|
|
115
|
+
input: ListProfilesCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const se_ListTagsForResourceCommand: (
|
|
119
|
+
input: ListTagsForResourceCommandInput,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const se_TagResourceCommand: (
|
|
123
|
+
input: TagResourceCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const se_UntagResourceCommand: (
|
|
127
|
+
input: UntagResourceCommandInput,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const se_UpdateProfileResourceAssociationCommand: (
|
|
131
|
+
input: UpdateProfileResourceAssociationCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const de_AssociateProfileCommand: (
|
|
135
|
+
output: __HttpResponse,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<AssociateProfileCommandOutput>;
|
|
138
|
+
export declare const de_AssociateResourceToProfileCommand: (
|
|
139
|
+
output: __HttpResponse,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<AssociateResourceToProfileCommandOutput>;
|
|
142
|
+
export declare const de_CreateProfileCommand: (
|
|
143
|
+
output: __HttpResponse,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<CreateProfileCommandOutput>;
|
|
146
|
+
export declare const de_DeleteProfileCommand: (
|
|
147
|
+
output: __HttpResponse,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<DeleteProfileCommandOutput>;
|
|
150
|
+
export declare const de_DisassociateProfileCommand: (
|
|
151
|
+
output: __HttpResponse,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<DisassociateProfileCommandOutput>;
|
|
154
|
+
export declare const de_DisassociateResourceFromProfileCommand: (
|
|
155
|
+
output: __HttpResponse,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<DisassociateResourceFromProfileCommandOutput>;
|
|
158
|
+
export declare const de_GetProfileCommand: (
|
|
159
|
+
output: __HttpResponse,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<GetProfileCommandOutput>;
|
|
162
|
+
export declare const de_GetProfileAssociationCommand: (
|
|
163
|
+
output: __HttpResponse,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<GetProfileAssociationCommandOutput>;
|
|
166
|
+
export declare const de_GetProfileResourceAssociationCommand: (
|
|
167
|
+
output: __HttpResponse,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<GetProfileResourceAssociationCommandOutput>;
|
|
170
|
+
export declare const de_ListProfileAssociationsCommand: (
|
|
171
|
+
output: __HttpResponse,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<ListProfileAssociationsCommandOutput>;
|
|
174
|
+
export declare const de_ListProfileResourceAssociationsCommand: (
|
|
175
|
+
output: __HttpResponse,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<ListProfileResourceAssociationsCommandOutput>;
|
|
178
|
+
export declare const de_ListProfilesCommand: (
|
|
179
|
+
output: __HttpResponse,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<ListProfilesCommandOutput>;
|
|
182
|
+
export declare const de_ListTagsForResourceCommand: (
|
|
183
|
+
output: __HttpResponse,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<ListTagsForResourceCommandOutput>;
|
|
186
|
+
export declare const de_TagResourceCommand: (
|
|
187
|
+
output: __HttpResponse,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<TagResourceCommandOutput>;
|
|
190
|
+
export declare const de_UntagResourceCommand: (
|
|
191
|
+
output: __HttpResponse,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<UntagResourceCommandOutput>;
|
|
194
|
+
export declare const de_UpdateProfileResourceAssociationCommand: (
|
|
195
|
+
output: __HttpResponse,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<UpdateProfileResourceAssociationCommandOutput>;
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
+
import { Route53ProfilesClientConfig } from "./Route53ProfilesClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: Route53ProfilesClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
8
|
+
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider: (
|
|
12
|
+
input: any
|
|
13
|
+
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
14
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<
|
|
15
|
+
import("@smithy/types").UserAgent
|
|
16
|
+
>;
|
|
17
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
19
|
+
requestHandler:
|
|
20
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
|
21
|
+
| RequestHandler;
|
|
22
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
23
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
24
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
25
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
26
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
27
|
+
apiVersion: string;
|
|
28
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
29
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
30
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
31
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
32
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
33
|
+
disableHostPrefix: boolean;
|
|
34
|
+
serviceId: string;
|
|
35
|
+
logger: import("@smithy/types").Logger;
|
|
36
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
37
|
+
endpoint?:
|
|
38
|
+
| ((
|
|
39
|
+
| string
|
|
40
|
+
| import("@smithy/types").Endpoint
|
|
41
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
42
|
+
| import("@smithy/types").EndpointV2
|
|
43
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
44
|
+
) &
|
|
45
|
+
(
|
|
46
|
+
| string
|
|
47
|
+
| import("@smithy/types").Provider<string>
|
|
48
|
+
| import("@smithy/types").Endpoint
|
|
49
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
50
|
+
| import("@smithy/types").EndpointV2
|
|
51
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
52
|
+
))
|
|
53
|
+
| undefined;
|
|
54
|
+
endpointProvider: (
|
|
55
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
56
|
+
context?: {
|
|
57
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
58
|
+
}
|
|
59
|
+
) => import("@smithy/types").EndpointV2;
|
|
60
|
+
tls?: boolean | undefined;
|
|
61
|
+
retryStrategy?:
|
|
62
|
+
| import("@smithy/types").RetryStrategy
|
|
63
|
+
| import("@smithy/types").RetryStrategyV2
|
|
64
|
+
| undefined;
|
|
65
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
66
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
67
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").Route53ProfilesHttpAuthSchemeProvider;
|
|
68
|
+
credentials?:
|
|
69
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
70
|
+
| import("@smithy/types").AwsCredentialIdentityProvider
|
|
71
|
+
| undefined;
|
|
72
|
+
signer?:
|
|
73
|
+
| import("@smithy/types").RequestSigner
|
|
74
|
+
| ((
|
|
75
|
+
authScheme?: import("@smithy/types").AuthScheme | undefined
|
|
76
|
+
) => Promise<import("@smithy/types").RequestSigner>)
|
|
77
|
+
| undefined;
|
|
78
|
+
signingEscapePath?: boolean | undefined;
|
|
79
|
+
systemClockOffset?: number | undefined;
|
|
80
|
+
signingRegion?: string | undefined;
|
|
81
|
+
signerConstructor?:
|
|
82
|
+
| (new (
|
|
83
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
84
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
85
|
+
) => import("@smithy/types").RequestSigner)
|
|
86
|
+
| undefined;
|
|
87
|
+
};
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
|
+
import { Route53ProfilesClientConfig } from "./Route53ProfilesClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: Route53ProfilesClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
8
|
+
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider: (
|
|
12
|
+
init?:
|
|
13
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
| undefined
|
|
15
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
16
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
17
|
+
>;
|
|
18
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<
|
|
19
|
+
import("@smithy/types").UserAgent
|
|
20
|
+
>;
|
|
21
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
22
|
+
region: string | import("@smithy/types").Provider<string>;
|
|
23
|
+
requestHandler:
|
|
24
|
+
| RequestHandler
|
|
25
|
+
| import("@smithy/protocol-http").HttpHandler<any>;
|
|
26
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
27
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
28
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
29
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
30
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
31
|
+
apiVersion: string;
|
|
32
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
33
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
34
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
35
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
36
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
37
|
+
disableHostPrefix: boolean;
|
|
38
|
+
serviceId: string;
|
|
39
|
+
logger: import("@smithy/types").Logger;
|
|
40
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
endpoint?:
|
|
42
|
+
| ((
|
|
43
|
+
| string
|
|
44
|
+
| import("@smithy/types").Endpoint
|
|
45
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
46
|
+
| import("@smithy/types").EndpointV2
|
|
47
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
48
|
+
) &
|
|
49
|
+
(
|
|
50
|
+
| string
|
|
51
|
+
| import("@smithy/types").Provider<string>
|
|
52
|
+
| import("@smithy/types").Endpoint
|
|
53
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
54
|
+
| import("@smithy/types").EndpointV2
|
|
55
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
56
|
+
))
|
|
57
|
+
| undefined;
|
|
58
|
+
endpointProvider: (
|
|
59
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
60
|
+
context?: {
|
|
61
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
62
|
+
}
|
|
63
|
+
) => import("@smithy/types").EndpointV2;
|
|
64
|
+
tls?: boolean | undefined;
|
|
65
|
+
retryStrategy?:
|
|
66
|
+
| import("@smithy/types").RetryStrategy
|
|
67
|
+
| import("@smithy/types").RetryStrategyV2
|
|
68
|
+
| undefined;
|
|
69
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
70
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
71
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").Route53ProfilesHttpAuthSchemeProvider;
|
|
72
|
+
credentials?:
|
|
73
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
74
|
+
| import("@smithy/types").AwsCredentialIdentityProvider
|
|
75
|
+
| undefined;
|
|
76
|
+
signer?:
|
|
77
|
+
| import("@smithy/types").RequestSigner
|
|
78
|
+
| ((
|
|
79
|
+
authScheme?: import("@smithy/types").AuthScheme | undefined
|
|
80
|
+
) => Promise<import("@smithy/types").RequestSigner>)
|
|
81
|
+
| undefined;
|
|
82
|
+
signingEscapePath?: boolean | undefined;
|
|
83
|
+
systemClockOffset?: number | undefined;
|
|
84
|
+
signingRegion?: string | undefined;
|
|
85
|
+
signerConstructor?:
|
|
86
|
+
| (new (
|
|
87
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
88
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
89
|
+
) => import("@smithy/types").RequestSigner)
|
|
90
|
+
| undefined;
|
|
91
|
+
};
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { Route53ProfilesClientConfig } from "./Route53ProfilesClient";
|
|
2
|
+
export declare const getRuntimeConfig: (
|
|
3
|
+
config: Route53ProfilesClientConfig
|
|
4
|
+
) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
7
|
+
requestHandler:
|
|
8
|
+
| import("@smithy/types").NodeHttpHandlerOptions
|
|
9
|
+
| import("@smithy/types").FetchHttpHandlerOptions
|
|
10
|
+
| Record<string, unknown>
|
|
11
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
|
12
|
+
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
13
|
+
apiVersion: string;
|
|
14
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
15
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
16
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
17
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
18
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
19
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
20
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
21
|
+
disableHostPrefix: boolean;
|
|
22
|
+
serviceId: string;
|
|
23
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
25
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<
|
|
26
|
+
import("@smithy/types").UserAgent
|
|
27
|
+
>;
|
|
28
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
29
|
+
credentialDefaultProvider: (
|
|
30
|
+
input: any
|
|
31
|
+
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
32
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
33
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
34
|
+
logger: import("@smithy/types").Logger;
|
|
35
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
36
|
+
defaultsMode:
|
|
37
|
+
| import("@smithy/smithy-client").DefaultsMode
|
|
38
|
+
| import("@smithy/types").Provider<
|
|
39
|
+
import("@smithy/smithy-client").DefaultsMode
|
|
40
|
+
>;
|
|
41
|
+
endpoint?:
|
|
42
|
+
| string
|
|
43
|
+
| import("@smithy/types").Endpoint
|
|
44
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
45
|
+
| import("@smithy/types").EndpointV2
|
|
46
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
47
|
+
| undefined;
|
|
48
|
+
endpointProvider: (
|
|
49
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
50
|
+
context?: {
|
|
51
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
52
|
+
}
|
|
53
|
+
) => import("@smithy/types").EndpointV2;
|
|
54
|
+
tls?: boolean | undefined;
|
|
55
|
+
retryStrategy?:
|
|
56
|
+
| import("@smithy/types").RetryStrategy
|
|
57
|
+
| import("@smithy/types").RetryStrategyV2
|
|
58
|
+
| undefined;
|
|
59
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
60
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
61
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").Route53ProfilesHttpAuthSchemeProvider;
|
|
62
|
+
credentials?:
|
|
63
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
64
|
+
| import("@smithy/types").AwsCredentialIdentityProvider
|
|
65
|
+
| undefined;
|
|
66
|
+
signer?:
|
|
67
|
+
| import("@smithy/types").RequestSigner
|
|
68
|
+
| ((
|
|
69
|
+
authScheme?: import("@smithy/types").AuthScheme | undefined
|
|
70
|
+
) => Promise<import("@smithy/types").RequestSigner>)
|
|
71
|
+
| undefined;
|
|
72
|
+
signingEscapePath?: boolean | undefined;
|
|
73
|
+
systemClockOffset?: number | undefined;
|
|
74
|
+
signingRegion?: string | undefined;
|
|
75
|
+
signerConstructor?:
|
|
76
|
+
| (new (
|
|
77
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
78
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
79
|
+
) => import("@smithy/types").RequestSigner)
|
|
80
|
+
| undefined;
|
|
81
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Route53ProfilesClientConfig } from "./Route53ProfilesClient";
|
|
2
|
+
export declare const getRuntimeConfig: (
|
|
3
|
+
config: Route53ProfilesClientConfig
|
|
4
|
+
) => {
|
|
5
|
+
apiVersion: string;
|
|
6
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
7
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
8
|
+
disableHostPrefix: boolean;
|
|
9
|
+
endpointProvider: (
|
|
10
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
11
|
+
context?: {
|
|
12
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
13
|
+
}
|
|
14
|
+
) => import("@smithy/types").EndpointV2;
|
|
15
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
16
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").Route53ProfilesHttpAuthSchemeProvider;
|
|
17
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
18
|
+
logger: import("@smithy/types").Logger;
|
|
19
|
+
serviceId: string;
|
|
20
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
21
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
22
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
23
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Route53ProfilesExtensionConfiguration } from "./extensionConfiguration";
|
|
2
|
+
export interface RuntimeExtension {
|
|
3
|
+
configure(
|
|
4
|
+
extensionConfiguration: Route53ProfilesExtensionConfiguration
|
|
5
|
+
): void;
|
|
6
|
+
}
|
|
7
|
+
export interface RuntimeExtensionsConfig {
|
|
8
|
+
extensions: RuntimeExtension[];
|
|
9
|
+
}
|
|
10
|
+
export declare const resolveRuntimeExtensions: (
|
|
11
|
+
runtimeConfig: any,
|
|
12
|
+
extensions: RuntimeExtension[]
|
|
13
|
+
) => any;
|
package/package.json
ADDED
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@aws-sdk/client-route53profiles",
|
|
3
|
+
"description": "AWS SDK for JavaScript Route53profiles Client for Node.js, Browser and React Native",
|
|
4
|
+
"version": "3.560.0",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
|
+
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
8
|
+
"build:es": "tsc -p tsconfig.es.json",
|
|
9
|
+
"build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
|
|
10
|
+
"build:types": "tsc -p tsconfig.types.json",
|
|
11
|
+
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo || exit 0",
|
|
13
|
+
"extract:docs": "api-extractor run --local",
|
|
14
|
+
"generate:client": "node ../../scripts/generate-clients/single-service --solo route53profiles"
|
|
15
|
+
},
|
|
16
|
+
"main": "./dist-cjs/index.js",
|
|
17
|
+
"types": "./dist-types/index.d.ts",
|
|
18
|
+
"module": "./dist-es/index.js",
|
|
19
|
+
"sideEffects": false,
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
|
+
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
+
"@aws-sdk/client-sts": "3.556.0",
|
|
24
|
+
"@aws-sdk/core": "3.556.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.556.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.535.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.535.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.535.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.540.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.535.0",
|
|
31
|
+
"@aws-sdk/types": "3.535.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.540.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.535.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.535.0",
|
|
35
|
+
"@smithy/config-resolver": "^2.2.0",
|
|
36
|
+
"@smithy/core": "^1.4.2",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.5.0",
|
|
38
|
+
"@smithy/hash-node": "^2.2.0",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.2.0",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.2.0",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.5.1",
|
|
42
|
+
"@smithy/middleware-retry": "^2.3.1",
|
|
43
|
+
"@smithy/middleware-serde": "^2.3.0",
|
|
44
|
+
"@smithy/middleware-stack": "^2.2.0",
|
|
45
|
+
"@smithy/node-config-provider": "^2.3.0",
|
|
46
|
+
"@smithy/node-http-handler": "^2.5.0",
|
|
47
|
+
"@smithy/protocol-http": "^3.3.0",
|
|
48
|
+
"@smithy/smithy-client": "^2.5.1",
|
|
49
|
+
"@smithy/types": "^2.12.0",
|
|
50
|
+
"@smithy/url-parser": "^2.2.0",
|
|
51
|
+
"@smithy/util-base64": "^2.3.0",
|
|
52
|
+
"@smithy/util-body-length-browser": "^2.2.0",
|
|
53
|
+
"@smithy/util-body-length-node": "^2.3.0",
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.2.1",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.3.1",
|
|
56
|
+
"@smithy/util-endpoints": "^1.2.0",
|
|
57
|
+
"@smithy/util-middleware": "^2.2.0",
|
|
58
|
+
"@smithy/util-retry": "^2.2.0",
|
|
59
|
+
"@smithy/util-utf8": "^2.3.0",
|
|
60
|
+
"tslib": "^2.6.2",
|
|
61
|
+
"uuid": "^9.0.1"
|
|
62
|
+
},
|
|
63
|
+
"devDependencies": {
|
|
64
|
+
"@smithy/service-client-documentation-generator": "^2.2.0",
|
|
65
|
+
"@tsconfig/node14": "1.0.3",
|
|
66
|
+
"@types/node": "^14.14.31",
|
|
67
|
+
"@types/uuid": "^9.0.4",
|
|
68
|
+
"concurrently": "7.0.0",
|
|
69
|
+
"downlevel-dts": "0.10.1",
|
|
70
|
+
"rimraf": "3.0.2",
|
|
71
|
+
"typescript": "~4.9.5"
|
|
72
|
+
},
|
|
73
|
+
"engines": {
|
|
74
|
+
"node": ">=14.0.0"
|
|
75
|
+
},
|
|
76
|
+
"typesVersions": {
|
|
77
|
+
"<4.0": {
|
|
78
|
+
"dist-types/*": [
|
|
79
|
+
"dist-types/ts3.4/*"
|
|
80
|
+
]
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"files": [
|
|
84
|
+
"dist-*/**"
|
|
85
|
+
],
|
|
86
|
+
"author": {
|
|
87
|
+
"name": "AWS SDK for JavaScript Team",
|
|
88
|
+
"url": "https://aws.amazon.com/javascript/"
|
|
89
|
+
},
|
|
90
|
+
"license": "Apache-2.0",
|
|
91
|
+
"browser": {
|
|
92
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
93
|
+
},
|
|
94
|
+
"react-native": {
|
|
95
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
96
|
+
},
|
|
97
|
+
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-route53profiles",
|
|
98
|
+
"repository": {
|
|
99
|
+
"type": "git",
|
|
100
|
+
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
101
|
+
"directory": "clients/client-route53profiles"
|
|
102
|
+
}
|
|
103
|
+
}
|