@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,39 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListProfileResourceAssociationsRequest,
5
+ ListProfileResourceAssociationsResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ Route53ProfilesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../Route53ProfilesClient";
12
+ export { __MetadataBearer, $Command };
13
+ export interface ListProfileResourceAssociationsCommandInput
14
+ extends ListProfileResourceAssociationsRequest {}
15
+ export interface ListProfileResourceAssociationsCommandOutput
16
+ extends ListProfileResourceAssociationsResponse,
17
+ __MetadataBearer {}
18
+ declare const ListProfileResourceAssociationsCommand_base: {
19
+ new (
20
+ input: ListProfileResourceAssociationsCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListProfileResourceAssociationsCommandInput,
23
+ ListProfileResourceAssociationsCommandOutput,
24
+ Route53ProfilesClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: ListProfileResourceAssociationsCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListProfileResourceAssociationsCommandInput,
32
+ ListProfileResourceAssociationsCommandOutput,
33
+ Route53ProfilesClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListProfileResourceAssociationsCommand extends ListProfileResourceAssociationsCommand_base {}
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ListProfilesRequest, ListProfilesResponse } from "../models/models_0";
4
+ import {
5
+ Route53ProfilesClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../Route53ProfilesClient";
9
+ export { __MetadataBearer, $Command };
10
+ export interface ListProfilesCommandInput extends ListProfilesRequest {}
11
+ export interface ListProfilesCommandOutput
12
+ extends ListProfilesResponse,
13
+ __MetadataBearer {}
14
+ declare const ListProfilesCommand_base: {
15
+ new (
16
+ input: ListProfilesCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ ListProfilesCommandInput,
19
+ ListProfilesCommandOutput,
20
+ Route53ProfilesClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ new (
25
+ ...[input]: [] | [ListProfilesCommandInput]
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ ListProfilesCommandInput,
28
+ ListProfilesCommandOutput,
29
+ Route53ProfilesClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
33
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
34
+ };
35
+ export declare class ListProfilesCommand extends ListProfilesCommand_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
+ ListTagsForResourceRequest,
5
+ ListTagsForResourceResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ Route53ProfilesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../Route53ProfilesClient";
12
+ export { __MetadataBearer, $Command };
13
+ export interface ListTagsForResourceCommandInput
14
+ extends ListTagsForResourceRequest {}
15
+ export interface ListTagsForResourceCommandOutput
16
+ extends ListTagsForResourceResponse,
17
+ __MetadataBearer {}
18
+ declare const ListTagsForResourceCommand_base: {
19
+ new (
20
+ input: ListTagsForResourceCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListTagsForResourceCommandInput,
23
+ ListTagsForResourceCommandOutput,
24
+ Route53ProfilesClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: ListTagsForResourceCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListTagsForResourceCommandInput,
32
+ ListTagsForResourceCommandOutput,
33
+ Route53ProfilesClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {}
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
4
+ import {
5
+ Route53ProfilesClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../Route53ProfilesClient";
9
+ export { __MetadataBearer, $Command };
10
+ export interface TagResourceCommandInput extends TagResourceRequest {}
11
+ export interface TagResourceCommandOutput
12
+ extends TagResourceResponse,
13
+ __MetadataBearer {}
14
+ declare const TagResourceCommand_base: {
15
+ new (
16
+ input: TagResourceCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ TagResourceCommandInput,
19
+ TagResourceCommandOutput,
20
+ Route53ProfilesClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ new (
25
+ __0_0: TagResourceCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ TagResourceCommandInput,
28
+ TagResourceCommandOutput,
29
+ Route53ProfilesClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
33
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
34
+ };
35
+ export declare class TagResourceCommand extends TagResourceCommand_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
+ UntagResourceRequest,
5
+ UntagResourceResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ Route53ProfilesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../Route53ProfilesClient";
12
+ export { __MetadataBearer, $Command };
13
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
14
+ export interface UntagResourceCommandOutput
15
+ extends UntagResourceResponse,
16
+ __MetadataBearer {}
17
+ declare const UntagResourceCommand_base: {
18
+ new (
19
+ input: UntagResourceCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ UntagResourceCommandInput,
22
+ UntagResourceCommandOutput,
23
+ Route53ProfilesClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ new (
28
+ __0_0: UntagResourceCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ UntagResourceCommandInput,
31
+ UntagResourceCommandOutput,
32
+ Route53ProfilesClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
36
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
37
+ };
38
+ export declare class UntagResourceCommand extends UntagResourceCommand_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
+ UpdateProfileResourceAssociationRequest,
5
+ UpdateProfileResourceAssociationResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ Route53ProfilesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../Route53ProfilesClient";
12
+ export { __MetadataBearer, $Command };
13
+ export interface UpdateProfileResourceAssociationCommandInput
14
+ extends UpdateProfileResourceAssociationRequest {}
15
+ export interface UpdateProfileResourceAssociationCommandOutput
16
+ extends UpdateProfileResourceAssociationResponse,
17
+ __MetadataBearer {}
18
+ declare const UpdateProfileResourceAssociationCommand_base: {
19
+ new (
20
+ input: UpdateProfileResourceAssociationCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ UpdateProfileResourceAssociationCommandInput,
23
+ UpdateProfileResourceAssociationCommandOutput,
24
+ Route53ProfilesClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: UpdateProfileResourceAssociationCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ UpdateProfileResourceAssociationCommandInput,
32
+ UpdateProfileResourceAssociationCommandOutput,
33
+ Route53ProfilesClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class UpdateProfileResourceAssociationCommand extends UpdateProfileResourceAssociationCommand_base {}
@@ -0,0 +1,16 @@
1
+ export * from "./AssociateProfileCommand";
2
+ export * from "./AssociateResourceToProfileCommand";
3
+ export * from "./CreateProfileCommand";
4
+ export * from "./DeleteProfileCommand";
5
+ export * from "./DisassociateProfileCommand";
6
+ export * from "./DisassociateResourceFromProfileCommand";
7
+ export * from "./GetProfileAssociationCommand";
8
+ export * from "./GetProfileCommand";
9
+ export * from "./GetProfileResourceAssociationCommand";
10
+ export * from "./ListProfileAssociationsCommand";
11
+ export * from "./ListProfileResourceAssociationsCommand";
12
+ export * from "./ListProfilesCommand";
13
+ export * from "./ListTagsForResourceCommand";
14
+ export * from "./TagResourceCommand";
15
+ export * from "./UntagResourceCommand";
16
+ export * from "./UpdateProfileResourceAssociationCommand";
@@ -0,0 +1,51 @@
1
+ import {
2
+ Endpoint,
3
+ EndpointParameters as __EndpointParameters,
4
+ EndpointV2,
5
+ Provider,
6
+ } from "@smithy/types";
7
+ export interface ClientInputEndpointParameters {
8
+ region?: string | Provider<string>;
9
+ useDualstackEndpoint?: boolean | Provider<boolean>;
10
+ useFipsEndpoint?: boolean | Provider<boolean>;
11
+ endpoint?:
12
+ | string
13
+ | Provider<string>
14
+ | Endpoint
15
+ | Provider<Endpoint>
16
+ | EndpointV2
17
+ | Provider<EndpointV2>;
18
+ }
19
+ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
20
+ defaultSigningName: string;
21
+ };
22
+ export declare const resolveClientEndpointParameters: <T>(
23
+ options: T & ClientInputEndpointParameters
24
+ ) => T &
25
+ ClientInputEndpointParameters & {
26
+ defaultSigningName: string;
27
+ };
28
+ export declare const commonParams: {
29
+ readonly UseFIPS: {
30
+ readonly type: "builtInParams";
31
+ readonly name: "useFipsEndpoint";
32
+ };
33
+ readonly Endpoint: {
34
+ readonly type: "builtInParams";
35
+ readonly name: "endpoint";
36
+ };
37
+ readonly Region: {
38
+ readonly type: "builtInParams";
39
+ readonly name: "region";
40
+ };
41
+ readonly UseDualStack: {
42
+ readonly type: "builtInParams";
43
+ readonly name: "useDualstackEndpoint";
44
+ };
45
+ };
46
+ export interface EndpointParameters extends __EndpointParameters {
47
+ Region?: string;
48
+ UseDualStack?: boolean;
49
+ UseFIPS?: boolean;
50
+ Endpoint?: string;
51
+ }
@@ -0,0 +1,8 @@
1
+ import { EndpointV2, Logger } from "@smithy/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (
4
+ endpointParams: EndpointParameters,
5
+ context?: {
6
+ logger?: Logger;
7
+ }
8
+ ) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@smithy/types";
2
+ export declare const ruleSet: RuleSetObject;
@@ -0,0 +1,9 @@
1
+ import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
2
+ import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
3
+ import { DefaultExtensionConfiguration } from "@smithy/types";
4
+ import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
5
+ export interface Route53ProfilesExtensionConfiguration
6
+ extends HttpHandlerExtensionConfiguration,
7
+ DefaultExtensionConfiguration,
8
+ AwsRegionExtensionConfiguration,
9
+ HttpAuthExtensionConfiguration {}
@@ -0,0 +1,9 @@
1
+ export * from "./Route53ProfilesClient";
2
+ export * from "./Route53Profiles";
3
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
+ export { RuntimeExtension } from "./runtimeExtensions";
5
+ export { Route53ProfilesExtensionConfiguration } from "./extensionConfiguration";
6
+ export * from "./commands";
7
+ export * from "./pagination";
8
+ export * from "./models";
9
+ export { Route53ProfilesServiceException } from "./models/Route53ProfilesServiceException";
@@ -0,0 +1,8 @@
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@smithy/smithy-client";
5
+ export { __ServiceException, __ServiceExceptionOptions };
6
+ export declare class Route53ProfilesServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";
@@ -0,0 +1,261 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { Route53ProfilesServiceException as __BaseException } from "./Route53ProfilesServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ Message?: string;
7
+ constructor(
8
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
+ );
10
+ }
11
+ export interface Tag {
12
+ Key: string | undefined;
13
+ Value: string | undefined;
14
+ }
15
+ export interface AssociateProfileRequest {
16
+ ProfileId: string | undefined;
17
+ ResourceId: string | undefined;
18
+ Name: string | undefined;
19
+ Tags?: Tag[];
20
+ }
21
+ export declare const ProfileStatus: {
22
+ readonly COMPLETE: "COMPLETE";
23
+ readonly CREATING: "CREATING";
24
+ readonly DELETED: "DELETED";
25
+ readonly DELETING: "DELETING";
26
+ readonly FAILED: "FAILED";
27
+ readonly UPDATING: "UPDATING";
28
+ };
29
+ export type ProfileStatus = (typeof ProfileStatus)[keyof typeof ProfileStatus];
30
+ export interface ProfileAssociation {
31
+ Id?: string;
32
+ Name?: string;
33
+ OwnerId?: string;
34
+ ProfileId?: string;
35
+ ResourceId?: string;
36
+ Status?: ProfileStatus;
37
+ StatusMessage?: string;
38
+ CreationTime?: Date;
39
+ ModificationTime?: Date;
40
+ }
41
+ export interface AssociateProfileResponse {
42
+ ProfileAssociation?: ProfileAssociation;
43
+ }
44
+ export declare class ConflictException extends __BaseException {
45
+ readonly name: "ConflictException";
46
+ readonly $fault: "client";
47
+ Message?: string;
48
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
49
+ }
50
+ export declare class InvalidParameterException extends __BaseException {
51
+ readonly name: "InvalidParameterException";
52
+ readonly $fault: "client";
53
+ Message: string | undefined;
54
+ FieldName?: string;
55
+ constructor(
56
+ opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
57
+ );
58
+ }
59
+ export declare class LimitExceededException extends __BaseException {
60
+ readonly name: "LimitExceededException";
61
+ readonly $fault: "client";
62
+ Message?: string;
63
+ ResourceType?: string;
64
+ constructor(
65
+ opts: __ExceptionOptionType<LimitExceededException, __BaseException>
66
+ );
67
+ }
68
+ export declare class ResourceExistsException extends __BaseException {
69
+ readonly name: "ResourceExistsException";
70
+ readonly $fault: "client";
71
+ Message?: string;
72
+ ResourceType?: string;
73
+ constructor(
74
+ opts: __ExceptionOptionType<ResourceExistsException, __BaseException>
75
+ );
76
+ }
77
+ export declare class ResourceNotFoundException extends __BaseException {
78
+ readonly name: "ResourceNotFoundException";
79
+ readonly $fault: "client";
80
+ Message?: string;
81
+ ResourceType?: string;
82
+ constructor(
83
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
84
+ );
85
+ }
86
+ export declare class ThrottlingException extends __BaseException {
87
+ readonly name: "ThrottlingException";
88
+ readonly $fault: "client";
89
+ Message?: string;
90
+ constructor(
91
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
92
+ );
93
+ }
94
+ export declare class ValidationException extends __BaseException {
95
+ readonly name: "ValidationException";
96
+ readonly $fault: "client";
97
+ Message?: string;
98
+ constructor(
99
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
100
+ );
101
+ }
102
+ export interface AssociateResourceToProfileRequest {
103
+ ProfileId: string | undefined;
104
+ ResourceArn: string | undefined;
105
+ Name: string | undefined;
106
+ ResourceProperties?: string;
107
+ }
108
+ export interface ProfileResourceAssociation {
109
+ Id?: string;
110
+ Name?: string;
111
+ OwnerId?: string;
112
+ ProfileId?: string;
113
+ ResourceArn?: string;
114
+ ResourceType?: string;
115
+ ResourceProperties?: string;
116
+ Status?: ProfileStatus;
117
+ StatusMessage?: string;
118
+ CreationTime?: Date;
119
+ ModificationTime?: Date;
120
+ }
121
+ export interface AssociateResourceToProfileResponse {
122
+ ProfileResourceAssociation?: ProfileResourceAssociation;
123
+ }
124
+ export declare class InternalServiceErrorException extends __BaseException {
125
+ readonly name: "InternalServiceErrorException";
126
+ readonly $fault: "client";
127
+ Message?: string;
128
+ constructor(
129
+ opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>
130
+ );
131
+ }
132
+ export interface CreateProfileRequest {
133
+ Name: string | undefined;
134
+ ClientToken?: string;
135
+ Tags?: Tag[];
136
+ }
137
+ export declare const ShareStatus: {
138
+ readonly NOT_SHARED: "NOT_SHARED";
139
+ readonly SHARED_BY_ME: "SHARED_BY_ME";
140
+ readonly SHARED_WITH_ME: "SHARED_WITH_ME";
141
+ };
142
+ export type ShareStatus = (typeof ShareStatus)[keyof typeof ShareStatus];
143
+ export interface Profile {
144
+ Id?: string;
145
+ Arn?: string;
146
+ Name?: string;
147
+ OwnerId?: string;
148
+ Status?: ProfileStatus;
149
+ StatusMessage?: string;
150
+ ShareStatus?: ShareStatus;
151
+ CreationTime?: Date;
152
+ ModificationTime?: Date;
153
+ ClientToken?: string;
154
+ }
155
+ export interface CreateProfileResponse {
156
+ Profile?: Profile;
157
+ }
158
+ export interface DeleteProfileRequest {
159
+ ProfileId: string | undefined;
160
+ }
161
+ export interface DeleteProfileResponse {
162
+ Profile?: Profile;
163
+ }
164
+ export interface DisassociateProfileRequest {
165
+ ProfileId: string | undefined;
166
+ ResourceId: string | undefined;
167
+ }
168
+ export interface DisassociateProfileResponse {
169
+ ProfileAssociation?: ProfileAssociation;
170
+ }
171
+ export interface DisassociateResourceFromProfileRequest {
172
+ ProfileId: string | undefined;
173
+ ResourceArn: string | undefined;
174
+ }
175
+ export interface DisassociateResourceFromProfileResponse {
176
+ ProfileResourceAssociation?: ProfileResourceAssociation;
177
+ }
178
+ export interface GetProfileRequest {
179
+ ProfileId: string | undefined;
180
+ }
181
+ export interface GetProfileResponse {
182
+ Profile?: Profile;
183
+ }
184
+ export interface GetProfileAssociationRequest {
185
+ ProfileAssociationId: string | undefined;
186
+ }
187
+ export interface GetProfileAssociationResponse {
188
+ ProfileAssociation?: ProfileAssociation;
189
+ }
190
+ export interface GetProfileResourceAssociationRequest {
191
+ ProfileResourceAssociationId: string | undefined;
192
+ }
193
+ export interface GetProfileResourceAssociationResponse {
194
+ ProfileResourceAssociation?: ProfileResourceAssociation;
195
+ }
196
+ export declare class InvalidNextTokenException extends __BaseException {
197
+ readonly name: "InvalidNextTokenException";
198
+ readonly $fault: "client";
199
+ Message?: string;
200
+ constructor(
201
+ opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
202
+ );
203
+ }
204
+ export interface ListProfileAssociationsRequest {
205
+ ResourceId?: string;
206
+ ProfileId?: string;
207
+ MaxResults?: number;
208
+ NextToken?: string;
209
+ }
210
+ export interface ListProfileAssociationsResponse {
211
+ ProfileAssociations?: ProfileAssociation[];
212
+ NextToken?: string;
213
+ }
214
+ export interface ListProfileResourceAssociationsRequest {
215
+ ProfileId: string | undefined;
216
+ ResourceType?: string;
217
+ MaxResults?: number;
218
+ NextToken?: string;
219
+ }
220
+ export interface ListProfileResourceAssociationsResponse {
221
+ ProfileResourceAssociations?: ProfileResourceAssociation[];
222
+ NextToken?: string;
223
+ }
224
+ export interface ListProfilesRequest {
225
+ MaxResults?: number;
226
+ NextToken?: string;
227
+ }
228
+ export interface ProfileSummary {
229
+ Id?: string;
230
+ Arn?: string;
231
+ Name?: string;
232
+ ShareStatus?: ShareStatus;
233
+ }
234
+ export interface ListProfilesResponse {
235
+ ProfileSummaries?: ProfileSummary[];
236
+ NextToken?: string;
237
+ }
238
+ export interface ListTagsForResourceRequest {
239
+ ResourceArn: string | undefined;
240
+ }
241
+ export interface ListTagsForResourceResponse {
242
+ Tags: Record<string, string> | undefined;
243
+ }
244
+ export interface TagResourceRequest {
245
+ ResourceArn: string | undefined;
246
+ Tags: Record<string, string> | undefined;
247
+ }
248
+ export interface TagResourceResponse {}
249
+ export interface UntagResourceRequest {
250
+ ResourceArn: string | undefined;
251
+ TagKeys: string[] | undefined;
252
+ }
253
+ export interface UntagResourceResponse {}
254
+ export interface UpdateProfileResourceAssociationRequest {
255
+ ProfileResourceAssociationId: string | undefined;
256
+ Name?: string;
257
+ ResourceProperties?: string;
258
+ }
259
+ export interface UpdateProfileResourceAssociationResponse {
260
+ ProfileResourceAssociation?: ProfileResourceAssociation;
261
+ }
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@smithy/types";
2
+ import { Route53ProfilesClient } from "../Route53ProfilesClient";
3
+ export interface Route53ProfilesPaginationConfiguration
4
+ extends PaginationConfiguration {
5
+ client: Route53ProfilesClient;
6
+ }
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListProfileAssociationsCommandInput,
4
+ ListProfileAssociationsCommandOutput,
5
+ } from "../commands/ListProfileAssociationsCommand";
6
+ import { Route53ProfilesPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListProfileAssociations: (
8
+ config: Route53ProfilesPaginationConfiguration,
9
+ input: ListProfileAssociationsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListProfileAssociationsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListProfileResourceAssociationsCommandInput,
4
+ ListProfileResourceAssociationsCommandOutput,
5
+ } from "../commands/ListProfileResourceAssociationsCommand";
6
+ import { Route53ProfilesPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListProfileResourceAssociations: (
8
+ config: Route53ProfilesPaginationConfiguration,
9
+ input: ListProfileResourceAssociationsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListProfileResourceAssociationsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListProfilesCommandInput,
4
+ ListProfilesCommandOutput,
5
+ } from "../commands/ListProfilesCommand";
6
+ import { Route53ProfilesPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListProfiles: (
8
+ config: Route53ProfilesPaginationConfiguration,
9
+ input: ListProfilesCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListProfilesCommandOutput>;
@@ -0,0 +1,4 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListProfileAssociationsPaginator";
3
+ export * from "./ListProfileResourceAssociationsPaginator";
4
+ export * from "./ListProfilesPaginator";