@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,8 @@
1
+ import { PaginationConfiguration } from "@smithy/types";
2
+ import { Route53ProfilesClient } from "../Route53ProfilesClient";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface Route53ProfilesPaginationConfiguration extends PaginationConfiguration {
7
+ client: Route53ProfilesClient;
8
+ }
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListProfileAssociationsCommandInput, ListProfileAssociationsCommandOutput } from "../commands/ListProfileAssociationsCommand";
3
+ import { Route53ProfilesPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListProfileAssociations: (config: Route53ProfilesPaginationConfiguration, input: ListProfileAssociationsCommandInput, ...rest: any[]) => Paginator<ListProfileAssociationsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListProfileResourceAssociationsCommandInput, ListProfileResourceAssociationsCommandOutput } from "../commands/ListProfileResourceAssociationsCommand";
3
+ import { Route53ProfilesPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListProfileResourceAssociations: (config: Route53ProfilesPaginationConfiguration, input: ListProfileResourceAssociationsCommandInput, ...rest: any[]) => Paginator<ListProfileResourceAssociationsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListProfilesCommandInput, ListProfilesCommandOutput } from "../commands/ListProfilesCommand";
3
+ import { Route53ProfilesPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListProfiles: (config: Route53ProfilesPaginationConfiguration, input: ListProfilesCommandInput, ...rest: any[]) => Paginator<ListProfilesCommandOutput>;
@@ -0,0 +1,4 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListProfileAssociationsPaginator";
3
+ export * from "./ListProfileResourceAssociationsPaginator";
4
+ export * from "./ListProfilesPaginator";
@@ -0,0 +1,146 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
3
+ import { AssociateProfileCommandInput, AssociateProfileCommandOutput } from "../commands/AssociateProfileCommand";
4
+ import { AssociateResourceToProfileCommandInput, AssociateResourceToProfileCommandOutput } from "../commands/AssociateResourceToProfileCommand";
5
+ import { CreateProfileCommandInput, CreateProfileCommandOutput } from "../commands/CreateProfileCommand";
6
+ import { DeleteProfileCommandInput, DeleteProfileCommandOutput } from "../commands/DeleteProfileCommand";
7
+ import { DisassociateProfileCommandInput, DisassociateProfileCommandOutput } from "../commands/DisassociateProfileCommand";
8
+ import { DisassociateResourceFromProfileCommandInput, DisassociateResourceFromProfileCommandOutput } from "../commands/DisassociateResourceFromProfileCommand";
9
+ import { GetProfileAssociationCommandInput, GetProfileAssociationCommandOutput } from "../commands/GetProfileAssociationCommand";
10
+ import { GetProfileCommandInput, GetProfileCommandOutput } from "../commands/GetProfileCommand";
11
+ import { GetProfileResourceAssociationCommandInput, GetProfileResourceAssociationCommandOutput } from "../commands/GetProfileResourceAssociationCommand";
12
+ import { ListProfileAssociationsCommandInput, ListProfileAssociationsCommandOutput } from "../commands/ListProfileAssociationsCommand";
13
+ import { ListProfileResourceAssociationsCommandInput, ListProfileResourceAssociationsCommandOutput } from "../commands/ListProfileResourceAssociationsCommand";
14
+ import { ListProfilesCommandInput, ListProfilesCommandOutput } from "../commands/ListProfilesCommand";
15
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
16
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
17
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
18
+ import { UpdateProfileResourceAssociationCommandInput, UpdateProfileResourceAssociationCommandOutput } from "../commands/UpdateProfileResourceAssociationCommand";
19
+ /**
20
+ * serializeAws_restJson1AssociateProfileCommand
21
+ */
22
+ export declare const se_AssociateProfileCommand: (input: AssociateProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
+ /**
24
+ * serializeAws_restJson1AssociateResourceToProfileCommand
25
+ */
26
+ export declare const se_AssociateResourceToProfileCommand: (input: AssociateResourceToProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
+ /**
28
+ * serializeAws_restJson1CreateProfileCommand
29
+ */
30
+ export declare const se_CreateProfileCommand: (input: CreateProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
+ /**
32
+ * serializeAws_restJson1DeleteProfileCommand
33
+ */
34
+ export declare const se_DeleteProfileCommand: (input: DeleteProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
+ /**
36
+ * serializeAws_restJson1DisassociateProfileCommand
37
+ */
38
+ export declare const se_DisassociateProfileCommand: (input: DisassociateProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
+ /**
40
+ * serializeAws_restJson1DisassociateResourceFromProfileCommand
41
+ */
42
+ export declare const se_DisassociateResourceFromProfileCommand: (input: DisassociateResourceFromProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
+ /**
44
+ * serializeAws_restJson1GetProfileCommand
45
+ */
46
+ export declare const se_GetProfileCommand: (input: GetProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
+ /**
48
+ * serializeAws_restJson1GetProfileAssociationCommand
49
+ */
50
+ export declare const se_GetProfileAssociationCommand: (input: GetProfileAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
+ /**
52
+ * serializeAws_restJson1GetProfileResourceAssociationCommand
53
+ */
54
+ export declare const se_GetProfileResourceAssociationCommand: (input: GetProfileResourceAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
+ /**
56
+ * serializeAws_restJson1ListProfileAssociationsCommand
57
+ */
58
+ export declare const se_ListProfileAssociationsCommand: (input: ListProfileAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
59
+ /**
60
+ * serializeAws_restJson1ListProfileResourceAssociationsCommand
61
+ */
62
+ export declare const se_ListProfileResourceAssociationsCommand: (input: ListProfileResourceAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
63
+ /**
64
+ * serializeAws_restJson1ListProfilesCommand
65
+ */
66
+ export declare const se_ListProfilesCommand: (input: ListProfilesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
67
+ /**
68
+ * serializeAws_restJson1ListTagsForResourceCommand
69
+ */
70
+ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
71
+ /**
72
+ * serializeAws_restJson1TagResourceCommand
73
+ */
74
+ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
75
+ /**
76
+ * serializeAws_restJson1UntagResourceCommand
77
+ */
78
+ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
79
+ /**
80
+ * serializeAws_restJson1UpdateProfileResourceAssociationCommand
81
+ */
82
+ export declare const se_UpdateProfileResourceAssociationCommand: (input: UpdateProfileResourceAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
83
+ /**
84
+ * deserializeAws_restJson1AssociateProfileCommand
85
+ */
86
+ export declare const de_AssociateProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateProfileCommandOutput>;
87
+ /**
88
+ * deserializeAws_restJson1AssociateResourceToProfileCommand
89
+ */
90
+ export declare const de_AssociateResourceToProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateResourceToProfileCommandOutput>;
91
+ /**
92
+ * deserializeAws_restJson1CreateProfileCommand
93
+ */
94
+ export declare const de_CreateProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateProfileCommandOutput>;
95
+ /**
96
+ * deserializeAws_restJson1DeleteProfileCommand
97
+ */
98
+ export declare const de_DeleteProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteProfileCommandOutput>;
99
+ /**
100
+ * deserializeAws_restJson1DisassociateProfileCommand
101
+ */
102
+ export declare const de_DisassociateProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateProfileCommandOutput>;
103
+ /**
104
+ * deserializeAws_restJson1DisassociateResourceFromProfileCommand
105
+ */
106
+ export declare const de_DisassociateResourceFromProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateResourceFromProfileCommandOutput>;
107
+ /**
108
+ * deserializeAws_restJson1GetProfileCommand
109
+ */
110
+ export declare const de_GetProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetProfileCommandOutput>;
111
+ /**
112
+ * deserializeAws_restJson1GetProfileAssociationCommand
113
+ */
114
+ export declare const de_GetProfileAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetProfileAssociationCommandOutput>;
115
+ /**
116
+ * deserializeAws_restJson1GetProfileResourceAssociationCommand
117
+ */
118
+ export declare const de_GetProfileResourceAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetProfileResourceAssociationCommandOutput>;
119
+ /**
120
+ * deserializeAws_restJson1ListProfileAssociationsCommand
121
+ */
122
+ export declare const de_ListProfileAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListProfileAssociationsCommandOutput>;
123
+ /**
124
+ * deserializeAws_restJson1ListProfileResourceAssociationsCommand
125
+ */
126
+ export declare const de_ListProfileResourceAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListProfileResourceAssociationsCommandOutput>;
127
+ /**
128
+ * deserializeAws_restJson1ListProfilesCommand
129
+ */
130
+ export declare const de_ListProfilesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListProfilesCommandOutput>;
131
+ /**
132
+ * deserializeAws_restJson1ListTagsForResourceCommand
133
+ */
134
+ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
135
+ /**
136
+ * deserializeAws_restJson1TagResourceCommand
137
+ */
138
+ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
139
+ /**
140
+ * deserializeAws_restJson1UntagResourceCommand
141
+ */
142
+ export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
143
+ /**
144
+ * deserializeAws_restJson1UpdateProfileResourceAssociationCommand
145
+ */
146
+ export declare const de_UpdateProfileResourceAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateProfileResourceAssociationCommandOutput>;
@@ -0,0 +1,45 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { Route53ProfilesClientConfig } from "./Route53ProfilesClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: Route53ProfilesClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
11
+ defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<any>;
14
+ requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
15
+ retryMode: string | import("@smithy/types").Provider<string>;
16
+ sha256: import("@smithy/types").HashConstructor;
17
+ streamCollector: import("@smithy/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ apiVersion: string;
21
+ urlParser: import("@smithy/types").UrlParser;
22
+ base64Decoder: import("@smithy/types").Decoder;
23
+ base64Encoder: (_input: string | Uint8Array) => string;
24
+ utf8Decoder: import("@smithy/types").Decoder;
25
+ utf8Encoder: (input: string | Uint8Array) => string;
26
+ disableHostPrefix: boolean;
27
+ serviceId: string;
28
+ logger: import("@smithy/types").Logger;
29
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
31
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
32
+ logger?: import("@smithy/types").Logger | undefined;
33
+ }) => import("@smithy/types").EndpointV2;
34
+ tls?: boolean | undefined;
35
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
36
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
37
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
38
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").Route53ProfilesHttpAuthSchemeProvider;
39
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
40
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
41
+ signingEscapePath?: boolean | undefined;
42
+ systemClockOffset?: number | undefined;
43
+ signingRegion?: string | undefined;
44
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
45
+ };
@@ -0,0 +1,45 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { Route53ProfilesClientConfig } from "./Route53ProfilesClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: Route53ProfilesClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>;
11
+ defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<string>;
14
+ requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
15
+ retryMode: string | import("@smithy/types").Provider<string>;
16
+ sha256: import("@smithy/types").HashConstructor;
17
+ streamCollector: import("@smithy/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ apiVersion: string;
21
+ urlParser: import("@smithy/types").UrlParser;
22
+ base64Decoder: import("@smithy/types").Decoder;
23
+ base64Encoder: (_input: string | Uint8Array) => string;
24
+ utf8Decoder: import("@smithy/types").Decoder;
25
+ utf8Encoder: (input: string | Uint8Array) => string;
26
+ disableHostPrefix: boolean;
27
+ serviceId: string;
28
+ logger: import("@smithy/types").Logger;
29
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
31
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
32
+ logger?: import("@smithy/types").Logger | undefined;
33
+ }) => import("@smithy/types").EndpointV2;
34
+ tls?: boolean | undefined;
35
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
36
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
37
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
38
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").Route53ProfilesHttpAuthSchemeProvider;
39
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
40
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
41
+ signingEscapePath?: boolean | undefined;
42
+ systemClockOffset?: number | undefined;
43
+ signingRegion?: string | undefined;
44
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
45
+ };
@@ -0,0 +1,44 @@
1
+ import { Route53ProfilesClientConfig } from "./Route53ProfilesClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: Route53ProfilesClientConfig) => {
6
+ runtime: string;
7
+ sha256: import("@smithy/types").HashConstructor;
8
+ requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
+ apiVersion: string;
10
+ urlParser: import("@smithy/types").UrlParser;
11
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
12
+ streamCollector: import("@smithy/types").StreamCollector;
13
+ base64Decoder: import("@smithy/types").Decoder;
14
+ base64Encoder: (_input: string | Uint8Array) => string;
15
+ utf8Decoder: import("@smithy/types").Decoder;
16
+ utf8Encoder: (input: string | Uint8Array) => string;
17
+ disableHostPrefix: boolean;
18
+ serviceId: string;
19
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
+ defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
22
+ region: string | import("@smithy/types").Provider<any>;
23
+ credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
24
+ maxAttempts: number | import("@smithy/types").Provider<number>;
25
+ retryMode: string | import("@smithy/types").Provider<string>;
26
+ logger: import("@smithy/types").Logger;
27
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
28
+ defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
29
+ endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
30
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
31
+ logger?: import("@smithy/types").Logger | undefined;
32
+ }) => import("@smithy/types").EndpointV2;
33
+ tls?: boolean | undefined;
34
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
35
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
36
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
37
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").Route53ProfilesHttpAuthSchemeProvider;
38
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
39
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
40
+ signingEscapePath?: boolean | undefined;
41
+ systemClockOffset?: number | undefined;
42
+ signingRegion?: string | undefined;
43
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
44
+ };
@@ -0,0 +1,21 @@
1
+ import { Route53ProfilesClientConfig } from "./Route53ProfilesClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: Route53ProfilesClientConfig) => {
6
+ apiVersion: string;
7
+ base64Decoder: import("@smithy/types").Decoder;
8
+ base64Encoder: (_input: string | Uint8Array) => string;
9
+ disableHostPrefix: boolean;
10
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
11
+ logger?: import("@smithy/types").Logger | undefined;
12
+ }) => import("@smithy/types").EndpointV2;
13
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
14
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").Route53ProfilesHttpAuthSchemeProvider;
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,17 @@
1
+ import { Route53ProfilesExtensionConfiguration } from "./extensionConfiguration";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface RuntimeExtension {
6
+ configure(extensionConfiguration: Route53ProfilesExtensionConfiguration): void;
7
+ }
8
+ /**
9
+ * @public
10
+ */
11
+ export interface RuntimeExtensionsConfig {
12
+ extensions: RuntimeExtension[];
13
+ }
14
+ /**
15
+ * @internal
16
+ */
17
+ export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;
@@ -0,0 +1,281 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import {
3
+ AssociateProfileCommandInput,
4
+ AssociateProfileCommandOutput,
5
+ } from "./commands/AssociateProfileCommand";
6
+ import {
7
+ AssociateResourceToProfileCommandInput,
8
+ AssociateResourceToProfileCommandOutput,
9
+ } from "./commands/AssociateResourceToProfileCommand";
10
+ import {
11
+ CreateProfileCommandInput,
12
+ CreateProfileCommandOutput,
13
+ } from "./commands/CreateProfileCommand";
14
+ import {
15
+ DeleteProfileCommandInput,
16
+ DeleteProfileCommandOutput,
17
+ } from "./commands/DeleteProfileCommand";
18
+ import {
19
+ DisassociateProfileCommandInput,
20
+ DisassociateProfileCommandOutput,
21
+ } from "./commands/DisassociateProfileCommand";
22
+ import {
23
+ DisassociateResourceFromProfileCommandInput,
24
+ DisassociateResourceFromProfileCommandOutput,
25
+ } from "./commands/DisassociateResourceFromProfileCommand";
26
+ import {
27
+ GetProfileAssociationCommandInput,
28
+ GetProfileAssociationCommandOutput,
29
+ } from "./commands/GetProfileAssociationCommand";
30
+ import {
31
+ GetProfileCommandInput,
32
+ GetProfileCommandOutput,
33
+ } from "./commands/GetProfileCommand";
34
+ import {
35
+ GetProfileResourceAssociationCommandInput,
36
+ GetProfileResourceAssociationCommandOutput,
37
+ } from "./commands/GetProfileResourceAssociationCommand";
38
+ import {
39
+ ListProfileAssociationsCommandInput,
40
+ ListProfileAssociationsCommandOutput,
41
+ } from "./commands/ListProfileAssociationsCommand";
42
+ import {
43
+ ListProfileResourceAssociationsCommandInput,
44
+ ListProfileResourceAssociationsCommandOutput,
45
+ } from "./commands/ListProfileResourceAssociationsCommand";
46
+ import {
47
+ ListProfilesCommandInput,
48
+ ListProfilesCommandOutput,
49
+ } from "./commands/ListProfilesCommand";
50
+ import {
51
+ ListTagsForResourceCommandInput,
52
+ ListTagsForResourceCommandOutput,
53
+ } from "./commands/ListTagsForResourceCommand";
54
+ import {
55
+ TagResourceCommandInput,
56
+ TagResourceCommandOutput,
57
+ } from "./commands/TagResourceCommand";
58
+ import {
59
+ UntagResourceCommandInput,
60
+ UntagResourceCommandOutput,
61
+ } from "./commands/UntagResourceCommand";
62
+ import {
63
+ UpdateProfileResourceAssociationCommandInput,
64
+ UpdateProfileResourceAssociationCommandOutput,
65
+ } from "./commands/UpdateProfileResourceAssociationCommand";
66
+ import { Route53ProfilesClient } from "./Route53ProfilesClient";
67
+ export interface Route53Profiles {
68
+ associateProfile(
69
+ args: AssociateProfileCommandInput,
70
+ options?: __HttpHandlerOptions
71
+ ): Promise<AssociateProfileCommandOutput>;
72
+ associateProfile(
73
+ args: AssociateProfileCommandInput,
74
+ cb: (err: any, data?: AssociateProfileCommandOutput) => void
75
+ ): void;
76
+ associateProfile(
77
+ args: AssociateProfileCommandInput,
78
+ options: __HttpHandlerOptions,
79
+ cb: (err: any, data?: AssociateProfileCommandOutput) => void
80
+ ): void;
81
+ associateResourceToProfile(
82
+ args: AssociateResourceToProfileCommandInput,
83
+ options?: __HttpHandlerOptions
84
+ ): Promise<AssociateResourceToProfileCommandOutput>;
85
+ associateResourceToProfile(
86
+ args: AssociateResourceToProfileCommandInput,
87
+ cb: (err: any, data?: AssociateResourceToProfileCommandOutput) => void
88
+ ): void;
89
+ associateResourceToProfile(
90
+ args: AssociateResourceToProfileCommandInput,
91
+ options: __HttpHandlerOptions,
92
+ cb: (err: any, data?: AssociateResourceToProfileCommandOutput) => void
93
+ ): void;
94
+ createProfile(
95
+ args: CreateProfileCommandInput,
96
+ options?: __HttpHandlerOptions
97
+ ): Promise<CreateProfileCommandOutput>;
98
+ createProfile(
99
+ args: CreateProfileCommandInput,
100
+ cb: (err: any, data?: CreateProfileCommandOutput) => void
101
+ ): void;
102
+ createProfile(
103
+ args: CreateProfileCommandInput,
104
+ options: __HttpHandlerOptions,
105
+ cb: (err: any, data?: CreateProfileCommandOutput) => void
106
+ ): void;
107
+ deleteProfile(
108
+ args: DeleteProfileCommandInput,
109
+ options?: __HttpHandlerOptions
110
+ ): Promise<DeleteProfileCommandOutput>;
111
+ deleteProfile(
112
+ args: DeleteProfileCommandInput,
113
+ cb: (err: any, data?: DeleteProfileCommandOutput) => void
114
+ ): void;
115
+ deleteProfile(
116
+ args: DeleteProfileCommandInput,
117
+ options: __HttpHandlerOptions,
118
+ cb: (err: any, data?: DeleteProfileCommandOutput) => void
119
+ ): void;
120
+ disassociateProfile(
121
+ args: DisassociateProfileCommandInput,
122
+ options?: __HttpHandlerOptions
123
+ ): Promise<DisassociateProfileCommandOutput>;
124
+ disassociateProfile(
125
+ args: DisassociateProfileCommandInput,
126
+ cb: (err: any, data?: DisassociateProfileCommandOutput) => void
127
+ ): void;
128
+ disassociateProfile(
129
+ args: DisassociateProfileCommandInput,
130
+ options: __HttpHandlerOptions,
131
+ cb: (err: any, data?: DisassociateProfileCommandOutput) => void
132
+ ): void;
133
+ disassociateResourceFromProfile(
134
+ args: DisassociateResourceFromProfileCommandInput,
135
+ options?: __HttpHandlerOptions
136
+ ): Promise<DisassociateResourceFromProfileCommandOutput>;
137
+ disassociateResourceFromProfile(
138
+ args: DisassociateResourceFromProfileCommandInput,
139
+ cb: (err: any, data?: DisassociateResourceFromProfileCommandOutput) => void
140
+ ): void;
141
+ disassociateResourceFromProfile(
142
+ args: DisassociateResourceFromProfileCommandInput,
143
+ options: __HttpHandlerOptions,
144
+ cb: (err: any, data?: DisassociateResourceFromProfileCommandOutput) => void
145
+ ): void;
146
+ getProfile(
147
+ args: GetProfileCommandInput,
148
+ options?: __HttpHandlerOptions
149
+ ): Promise<GetProfileCommandOutput>;
150
+ getProfile(
151
+ args: GetProfileCommandInput,
152
+ cb: (err: any, data?: GetProfileCommandOutput) => void
153
+ ): void;
154
+ getProfile(
155
+ args: GetProfileCommandInput,
156
+ options: __HttpHandlerOptions,
157
+ cb: (err: any, data?: GetProfileCommandOutput) => void
158
+ ): void;
159
+ getProfileAssociation(
160
+ args: GetProfileAssociationCommandInput,
161
+ options?: __HttpHandlerOptions
162
+ ): Promise<GetProfileAssociationCommandOutput>;
163
+ getProfileAssociation(
164
+ args: GetProfileAssociationCommandInput,
165
+ cb: (err: any, data?: GetProfileAssociationCommandOutput) => void
166
+ ): void;
167
+ getProfileAssociation(
168
+ args: GetProfileAssociationCommandInput,
169
+ options: __HttpHandlerOptions,
170
+ cb: (err: any, data?: GetProfileAssociationCommandOutput) => void
171
+ ): void;
172
+ getProfileResourceAssociation(
173
+ args: GetProfileResourceAssociationCommandInput,
174
+ options?: __HttpHandlerOptions
175
+ ): Promise<GetProfileResourceAssociationCommandOutput>;
176
+ getProfileResourceAssociation(
177
+ args: GetProfileResourceAssociationCommandInput,
178
+ cb: (err: any, data?: GetProfileResourceAssociationCommandOutput) => void
179
+ ): void;
180
+ getProfileResourceAssociation(
181
+ args: GetProfileResourceAssociationCommandInput,
182
+ options: __HttpHandlerOptions,
183
+ cb: (err: any, data?: GetProfileResourceAssociationCommandOutput) => void
184
+ ): void;
185
+ listProfileAssociations(): Promise<ListProfileAssociationsCommandOutput>;
186
+ listProfileAssociations(
187
+ args: ListProfileAssociationsCommandInput,
188
+ options?: __HttpHandlerOptions
189
+ ): Promise<ListProfileAssociationsCommandOutput>;
190
+ listProfileAssociations(
191
+ args: ListProfileAssociationsCommandInput,
192
+ cb: (err: any, data?: ListProfileAssociationsCommandOutput) => void
193
+ ): void;
194
+ listProfileAssociations(
195
+ args: ListProfileAssociationsCommandInput,
196
+ options: __HttpHandlerOptions,
197
+ cb: (err: any, data?: ListProfileAssociationsCommandOutput) => void
198
+ ): void;
199
+ listProfileResourceAssociations(
200
+ args: ListProfileResourceAssociationsCommandInput,
201
+ options?: __HttpHandlerOptions
202
+ ): Promise<ListProfileResourceAssociationsCommandOutput>;
203
+ listProfileResourceAssociations(
204
+ args: ListProfileResourceAssociationsCommandInput,
205
+ cb: (err: any, data?: ListProfileResourceAssociationsCommandOutput) => void
206
+ ): void;
207
+ listProfileResourceAssociations(
208
+ args: ListProfileResourceAssociationsCommandInput,
209
+ options: __HttpHandlerOptions,
210
+ cb: (err: any, data?: ListProfileResourceAssociationsCommandOutput) => void
211
+ ): void;
212
+ listProfiles(): Promise<ListProfilesCommandOutput>;
213
+ listProfiles(
214
+ args: ListProfilesCommandInput,
215
+ options?: __HttpHandlerOptions
216
+ ): Promise<ListProfilesCommandOutput>;
217
+ listProfiles(
218
+ args: ListProfilesCommandInput,
219
+ cb: (err: any, data?: ListProfilesCommandOutput) => void
220
+ ): void;
221
+ listProfiles(
222
+ args: ListProfilesCommandInput,
223
+ options: __HttpHandlerOptions,
224
+ cb: (err: any, data?: ListProfilesCommandOutput) => void
225
+ ): void;
226
+ listTagsForResource(
227
+ args: ListTagsForResourceCommandInput,
228
+ options?: __HttpHandlerOptions
229
+ ): Promise<ListTagsForResourceCommandOutput>;
230
+ listTagsForResource(
231
+ args: ListTagsForResourceCommandInput,
232
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
233
+ ): void;
234
+ listTagsForResource(
235
+ args: ListTagsForResourceCommandInput,
236
+ options: __HttpHandlerOptions,
237
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
238
+ ): void;
239
+ tagResource(
240
+ args: TagResourceCommandInput,
241
+ options?: __HttpHandlerOptions
242
+ ): Promise<TagResourceCommandOutput>;
243
+ tagResource(
244
+ args: TagResourceCommandInput,
245
+ cb: (err: any, data?: TagResourceCommandOutput) => void
246
+ ): void;
247
+ tagResource(
248
+ args: TagResourceCommandInput,
249
+ options: __HttpHandlerOptions,
250
+ cb: (err: any, data?: TagResourceCommandOutput) => void
251
+ ): void;
252
+ untagResource(
253
+ args: UntagResourceCommandInput,
254
+ options?: __HttpHandlerOptions
255
+ ): Promise<UntagResourceCommandOutput>;
256
+ untagResource(
257
+ args: UntagResourceCommandInput,
258
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
259
+ ): void;
260
+ untagResource(
261
+ args: UntagResourceCommandInput,
262
+ options: __HttpHandlerOptions,
263
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
264
+ ): void;
265
+ updateProfileResourceAssociation(
266
+ args: UpdateProfileResourceAssociationCommandInput,
267
+ options?: __HttpHandlerOptions
268
+ ): Promise<UpdateProfileResourceAssociationCommandOutput>;
269
+ updateProfileResourceAssociation(
270
+ args: UpdateProfileResourceAssociationCommandInput,
271
+ cb: (err: any, data?: UpdateProfileResourceAssociationCommandOutput) => void
272
+ ): void;
273
+ updateProfileResourceAssociation(
274
+ args: UpdateProfileResourceAssociationCommandInput,
275
+ options: __HttpHandlerOptions,
276
+ cb: (err: any, data?: UpdateProfileResourceAssociationCommandOutput) => void
277
+ ): void;
278
+ }
279
+ export declare class Route53Profiles
280
+ extends Route53ProfilesClient
281
+ implements Route53Profiles {}