@aws-sdk/client-route53profiles 3.1076.0 → 3.1078.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 (68) hide show
  1. package/dist-cjs/index.js +27 -165
  2. package/dist-es/commandBuilder.js +6 -0
  3. package/dist-es/commands/AssociateProfileCommand.js +2 -14
  4. package/dist-es/commands/AssociateResourceToProfileCommand.js +2 -14
  5. package/dist-es/commands/CreateProfileCommand.js +2 -14
  6. package/dist-es/commands/DeleteProfileCommand.js +2 -14
  7. package/dist-es/commands/DisassociateProfileCommand.js +2 -14
  8. package/dist-es/commands/DisassociateResourceFromProfileCommand.js +2 -14
  9. package/dist-es/commands/GetProfileAssociationCommand.js +2 -14
  10. package/dist-es/commands/GetProfileCommand.js +2 -14
  11. package/dist-es/commands/GetProfileResourceAssociationCommand.js +2 -14
  12. package/dist-es/commands/ListProfileAssociationsCommand.js +2 -14
  13. package/dist-es/commands/ListProfileResourceAssociationsCommand.js +2 -14
  14. package/dist-es/commands/ListProfilesCommand.js +2 -14
  15. package/dist-es/commands/ListTagsForResourceCommand.js +2 -14
  16. package/dist-es/commands/TagResourceCommand.js +2 -14
  17. package/dist-es/commands/UntagResourceCommand.js +2 -14
  18. package/dist-es/commands/UpdateProfileResourceAssociationCommand.js +2 -14
  19. package/dist-es/index.js +1 -0
  20. package/dist-es/runtimeConfig.browser.js +0 -2
  21. package/dist-es/runtimeConfig.js +1 -2
  22. package/dist-es/runtimeConfig.native.js +0 -2
  23. package/dist-es/runtimeConfig.shared.js +2 -0
  24. package/dist-types/commandBuilder.d.ts +18 -0
  25. package/dist-types/commands/AssociateProfileCommand.d.ts +3 -8
  26. package/dist-types/commands/AssociateResourceToProfileCommand.d.ts +3 -8
  27. package/dist-types/commands/CreateProfileCommand.d.ts +3 -8
  28. package/dist-types/commands/DeleteProfileCommand.d.ts +3 -8
  29. package/dist-types/commands/DisassociateProfileCommand.d.ts +3 -8
  30. package/dist-types/commands/DisassociateResourceFromProfileCommand.d.ts +3 -8
  31. package/dist-types/commands/GetProfileAssociationCommand.d.ts +3 -8
  32. package/dist-types/commands/GetProfileCommand.d.ts +3 -8
  33. package/dist-types/commands/GetProfileResourceAssociationCommand.d.ts +3 -8
  34. package/dist-types/commands/ListProfileAssociationsCommand.d.ts +3 -8
  35. package/dist-types/commands/ListProfileResourceAssociationsCommand.d.ts +3 -8
  36. package/dist-types/commands/ListProfilesCommand.d.ts +3 -8
  37. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
  38. package/dist-types/commands/TagResourceCommand.d.ts +3 -8
  39. package/dist-types/commands/UntagResourceCommand.d.ts +3 -8
  40. package/dist-types/commands/UpdateProfileResourceAssociationCommand.d.ts +3 -8
  41. package/dist-types/index.d.ts +1 -0
  42. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  43. package/dist-types/runtimeConfig.d.ts +1 -1
  44. package/dist-types/runtimeConfig.native.d.ts +1 -1
  45. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  46. package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  47. package/dist-types/ts3.4/commands/AssociateProfileCommand.d.ts +7 -16
  48. package/dist-types/ts3.4/commands/AssociateResourceToProfileCommand.d.ts +7 -16
  49. package/dist-types/ts3.4/commands/CreateProfileCommand.d.ts +7 -16
  50. package/dist-types/ts3.4/commands/DeleteProfileCommand.d.ts +7 -16
  51. package/dist-types/ts3.4/commands/DisassociateProfileCommand.d.ts +7 -16
  52. package/dist-types/ts3.4/commands/DisassociateResourceFromProfileCommand.d.ts +7 -16
  53. package/dist-types/ts3.4/commands/GetProfileAssociationCommand.d.ts +7 -16
  54. package/dist-types/ts3.4/commands/GetProfileCommand.d.ts +7 -16
  55. package/dist-types/ts3.4/commands/GetProfileResourceAssociationCommand.d.ts +7 -16
  56. package/dist-types/ts3.4/commands/ListProfileAssociationsCommand.d.ts +7 -16
  57. package/dist-types/ts3.4/commands/ListProfileResourceAssociationsCommand.d.ts +7 -16
  58. package/dist-types/ts3.4/commands/ListProfilesCommand.d.ts +7 -16
  59. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
  60. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
  61. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
  62. package/dist-types/ts3.4/commands/UpdateProfileResourceAssociationCommand.d.ts +7 -16
  63. package/dist-types/ts3.4/index.d.ts +1 -0
  64. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  65. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  66. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  67. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  68. package/package.json +8 -10
@@ -1,5 +1,6 @@
1
1
  import { AwsSdkSigV4Signer } from "@aws-sdk/core/httpAuthSchemes";
2
2
  import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
3
+ import { Sha256 } from "@smithy/core/checksum";
3
4
  import { NoOpLogger } from "@smithy/core/client";
4
5
  import { parseUrl } from "@smithy/core/protocols";
5
6
  import { fromBase64, fromUtf8, toBase64, toUtf8 } from "@smithy/core/serde";
@@ -31,6 +32,7 @@ export const getRuntimeConfig = (config) => {
31
32
  serviceTarget: "Route53Profiles",
32
33
  },
33
34
  serviceId: config?.serviceId ?? "Route53Profiles",
35
+ sha256: config?.sha256 ?? Sha256,
34
36
  urlParser: config?.urlParser ?? parseUrl,
35
37
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,
36
38
  utf8Encoder: config?.utf8Encoder ?? toUtf8,
@@ -0,0 +1,18 @@
1
+ import type { EndpointParameterInstructions } from "@smithy/types";
2
+ import type { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./Route53ProfilesClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
7
+ new (input: I): import("@smithy/core/client").CommandImpl<I, O, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
8
+ new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
9
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
10
+ };
11
+ /**
12
+ * @internal
13
+ */
14
+ export declare const _ep0: EndpointParameterInstructions;
15
+ /**
16
+ * @internal
17
+ */
18
+ export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { AssociateProfileRequest, AssociateProfileResponse } from "../models/models_0";
4
- import type { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface AssociateProfileCommandInput extends AssociateProfileRequest {
22
19
  export interface AssociateProfileCommandOutput extends AssociateProfileResponse, __MetadataBearer {
23
20
  }
24
21
  declare const AssociateProfileCommand_base: {
25
- new (input: AssociateProfileCommandInput): import("@smithy/core/client").CommandImpl<AssociateProfileCommandInput, AssociateProfileCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: AssociateProfileCommandInput): import("@smithy/core/client").CommandImpl<AssociateProfileCommandInput, AssociateProfileCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: AssociateProfileCommandInput): import("@smithy/core/client").CommandImpl<AssociateProfileCommandInput, AssociateProfileCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: AssociateProfileCommandInput): import("@smithy/core/client").CommandImpl<AssociateProfileCommandInput, AssociateProfileCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { AssociateResourceToProfileRequest, AssociateResourceToProfileResponse } from "../models/models_0";
4
- import type { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface AssociateResourceToProfileCommandInput extends AssociateResourc
22
19
  export interface AssociateResourceToProfileCommandOutput extends AssociateResourceToProfileResponse, __MetadataBearer {
23
20
  }
24
21
  declare const AssociateResourceToProfileCommand_base: {
25
- new (input: AssociateResourceToProfileCommandInput): import("@smithy/core/client").CommandImpl<AssociateResourceToProfileCommandInput, AssociateResourceToProfileCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: AssociateResourceToProfileCommandInput): import("@smithy/core/client").CommandImpl<AssociateResourceToProfileCommandInput, AssociateResourceToProfileCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: AssociateResourceToProfileCommandInput): import("@smithy/core/client").CommandImpl<AssociateResourceToProfileCommandInput, AssociateResourceToProfileCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: AssociateResourceToProfileCommandInput): import("@smithy/core/client").CommandImpl<AssociateResourceToProfileCommandInput, AssociateResourceToProfileCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { CreateProfileRequest, CreateProfileResponse } from "../models/models_0";
4
- import type { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface CreateProfileCommandInput extends CreateProfileRequest {
22
19
  export interface CreateProfileCommandOutput extends CreateProfileResponse, __MetadataBearer {
23
20
  }
24
21
  declare const CreateProfileCommand_base: {
25
- new (input: CreateProfileCommandInput): import("@smithy/core/client").CommandImpl<CreateProfileCommandInput, CreateProfileCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: CreateProfileCommandInput): import("@smithy/core/client").CommandImpl<CreateProfileCommandInput, CreateProfileCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: CreateProfileCommandInput): import("@smithy/core/client").CommandImpl<CreateProfileCommandInput, CreateProfileCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: CreateProfileCommandInput): import("@smithy/core/client").CommandImpl<CreateProfileCommandInput, CreateProfileCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { DeleteProfileRequest, DeleteProfileResponse } from "../models/models_0";
4
- import type { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface DeleteProfileCommandInput extends DeleteProfileRequest {
22
19
  export interface DeleteProfileCommandOutput extends DeleteProfileResponse, __MetadataBearer {
23
20
  }
24
21
  declare const DeleteProfileCommand_base: {
25
- new (input: DeleteProfileCommandInput): import("@smithy/core/client").CommandImpl<DeleteProfileCommandInput, DeleteProfileCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DeleteProfileCommandInput): import("@smithy/core/client").CommandImpl<DeleteProfileCommandInput, DeleteProfileCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DeleteProfileCommandInput): import("@smithy/core/client").CommandImpl<DeleteProfileCommandInput, DeleteProfileCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DeleteProfileCommandInput): import("@smithy/core/client").CommandImpl<DeleteProfileCommandInput, DeleteProfileCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { DisassociateProfileRequest, DisassociateProfileResponse } from "../models/models_0";
4
- import type { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface DisassociateProfileCommandInput extends DisassociateProfileRequ
22
19
  export interface DisassociateProfileCommandOutput extends DisassociateProfileResponse, __MetadataBearer {
23
20
  }
24
21
  declare const DisassociateProfileCommand_base: {
25
- new (input: DisassociateProfileCommandInput): import("@smithy/core/client").CommandImpl<DisassociateProfileCommandInput, DisassociateProfileCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DisassociateProfileCommandInput): import("@smithy/core/client").CommandImpl<DisassociateProfileCommandInput, DisassociateProfileCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DisassociateProfileCommandInput): import("@smithy/core/client").CommandImpl<DisassociateProfileCommandInput, DisassociateProfileCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DisassociateProfileCommandInput): import("@smithy/core/client").CommandImpl<DisassociateProfileCommandInput, DisassociateProfileCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { DisassociateResourceFromProfileRequest, DisassociateResourceFromProfileResponse } from "../models/models_0";
4
- import type { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface DisassociateResourceFromProfileCommandInput extends Disassociat
22
19
  export interface DisassociateResourceFromProfileCommandOutput extends DisassociateResourceFromProfileResponse, __MetadataBearer {
23
20
  }
24
21
  declare const DisassociateResourceFromProfileCommand_base: {
25
- new (input: DisassociateResourceFromProfileCommandInput): import("@smithy/core/client").CommandImpl<DisassociateResourceFromProfileCommandInput, DisassociateResourceFromProfileCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DisassociateResourceFromProfileCommandInput): import("@smithy/core/client").CommandImpl<DisassociateResourceFromProfileCommandInput, DisassociateResourceFromProfileCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DisassociateResourceFromProfileCommandInput): import("@smithy/core/client").CommandImpl<DisassociateResourceFromProfileCommandInput, DisassociateResourceFromProfileCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DisassociateResourceFromProfileCommandInput): import("@smithy/core/client").CommandImpl<DisassociateResourceFromProfileCommandInput, DisassociateResourceFromProfileCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { GetProfileAssociationRequest, GetProfileAssociationResponse } from "../models/models_0";
4
- import type { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetProfileAssociationCommandInput extends GetProfileAssociation
22
19
  export interface GetProfileAssociationCommandOutput extends GetProfileAssociationResponse, __MetadataBearer {
23
20
  }
24
21
  declare const GetProfileAssociationCommand_base: {
25
- new (input: GetProfileAssociationCommandInput): import("@smithy/core/client").CommandImpl<GetProfileAssociationCommandInput, GetProfileAssociationCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetProfileAssociationCommandInput): import("@smithy/core/client").CommandImpl<GetProfileAssociationCommandInput, GetProfileAssociationCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetProfileAssociationCommandInput): import("@smithy/core/client").CommandImpl<GetProfileAssociationCommandInput, GetProfileAssociationCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: GetProfileAssociationCommandInput): import("@smithy/core/client").CommandImpl<GetProfileAssociationCommandInput, GetProfileAssociationCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { GetProfileRequest, GetProfileResponse } from "../models/models_0";
4
- import type { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetProfileCommandInput extends GetProfileRequest {
22
19
  export interface GetProfileCommandOutput extends GetProfileResponse, __MetadataBearer {
23
20
  }
24
21
  declare const GetProfileCommand_base: {
25
- new (input: GetProfileCommandInput): import("@smithy/core/client").CommandImpl<GetProfileCommandInput, GetProfileCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetProfileCommandInput): import("@smithy/core/client").CommandImpl<GetProfileCommandInput, GetProfileCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetProfileCommandInput): import("@smithy/core/client").CommandImpl<GetProfileCommandInput, GetProfileCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: GetProfileCommandInput): import("@smithy/core/client").CommandImpl<GetProfileCommandInput, GetProfileCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { GetProfileResourceAssociationRequest, GetProfileResourceAssociationResponse } from "../models/models_0";
4
- import type { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetProfileResourceAssociationCommandInput extends GetProfileRes
22
19
  export interface GetProfileResourceAssociationCommandOutput extends GetProfileResourceAssociationResponse, __MetadataBearer {
23
20
  }
24
21
  declare const GetProfileResourceAssociationCommand_base: {
25
- new (input: GetProfileResourceAssociationCommandInput): import("@smithy/core/client").CommandImpl<GetProfileResourceAssociationCommandInput, GetProfileResourceAssociationCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetProfileResourceAssociationCommandInput): import("@smithy/core/client").CommandImpl<GetProfileResourceAssociationCommandInput, GetProfileResourceAssociationCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetProfileResourceAssociationCommandInput): import("@smithy/core/client").CommandImpl<GetProfileResourceAssociationCommandInput, GetProfileResourceAssociationCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: GetProfileResourceAssociationCommandInput): import("@smithy/core/client").CommandImpl<GetProfileResourceAssociationCommandInput, GetProfileResourceAssociationCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListProfileAssociationsRequest, ListProfileAssociationsResponse } from "../models/models_0";
4
- import type { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListProfileAssociationsCommandInput extends ListProfileAssociat
22
19
  export interface ListProfileAssociationsCommandOutput extends ListProfileAssociationsResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ListProfileAssociationsCommand_base: {
25
- new (input: ListProfileAssociationsCommandInput): import("@smithy/core/client").CommandImpl<ListProfileAssociationsCommandInput, ListProfileAssociationsCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListProfileAssociationsCommandInput]): import("@smithy/core/client").CommandImpl<ListProfileAssociationsCommandInput, ListProfileAssociationsCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListProfileAssociationsCommandInput): import("@smithy/core/client").CommandImpl<ListProfileAssociationsCommandInput, ListProfileAssociationsCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [ListProfileAssociationsCommandInput]): import("@smithy/core/client").CommandImpl<ListProfileAssociationsCommandInput, ListProfileAssociationsCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListProfileResourceAssociationsRequest, ListProfileResourceAssociationsResponse } from "../models/models_0";
4
- import type { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListProfileResourceAssociationsCommandInput extends ListProfile
22
19
  export interface ListProfileResourceAssociationsCommandOutput extends ListProfileResourceAssociationsResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ListProfileResourceAssociationsCommand_base: {
25
- new (input: ListProfileResourceAssociationsCommandInput): import("@smithy/core/client").CommandImpl<ListProfileResourceAssociationsCommandInput, ListProfileResourceAssociationsCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ListProfileResourceAssociationsCommandInput): import("@smithy/core/client").CommandImpl<ListProfileResourceAssociationsCommandInput, ListProfileResourceAssociationsCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListProfileResourceAssociationsCommandInput): import("@smithy/core/client").CommandImpl<ListProfileResourceAssociationsCommandInput, ListProfileResourceAssociationsCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListProfileResourceAssociationsCommandInput): import("@smithy/core/client").CommandImpl<ListProfileResourceAssociationsCommandInput, ListProfileResourceAssociationsCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListProfilesRequest, ListProfilesResponse } from "../models/models_0";
4
- import type { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListProfilesCommandInput extends ListProfilesRequest {
22
19
  export interface ListProfilesCommandOutput extends ListProfilesResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ListProfilesCommand_base: {
25
- new (input: ListProfilesCommandInput): import("@smithy/core/client").CommandImpl<ListProfilesCommandInput, ListProfilesCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListProfilesCommandInput]): import("@smithy/core/client").CommandImpl<ListProfilesCommandInput, ListProfilesCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListProfilesCommandInput): import("@smithy/core/client").CommandImpl<ListProfilesCommandInput, ListProfilesCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [ListProfilesCommandInput]): import("@smithy/core/client").CommandImpl<ListProfilesCommandInput, ListProfilesCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
4
- import type { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequ
22
19
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ListTagsForResourceCommand_base: {
25
- new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { TagResourceRequest, TagResourceResponse } from "../models/models_0";
4
- import type { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface TagResourceCommandInput extends TagResourceRequest {
22
19
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
23
20
  }
24
21
  declare const TagResourceCommand_base: {
25
- new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
4
- import type { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {
22
19
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
23
20
  }
24
21
  declare const UntagResourceCommand_base: {
25
- new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { UpdateProfileResourceAssociationRequest, UpdateProfileResourceAssociationResponse } from "../models/models_0";
4
- import type { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface UpdateProfileResourceAssociationCommandInput extends UpdateProf
22
19
  export interface UpdateProfileResourceAssociationCommandOutput extends UpdateProfileResourceAssociationResponse, __MetadataBearer {
23
20
  }
24
21
  declare const UpdateProfileResourceAssociationCommand_base: {
25
- new (input: UpdateProfileResourceAssociationCommandInput): import("@smithy/core/client").CommandImpl<UpdateProfileResourceAssociationCommandInput, UpdateProfileResourceAssociationCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: UpdateProfileResourceAssociationCommandInput): import("@smithy/core/client").CommandImpl<UpdateProfileResourceAssociationCommandInput, UpdateProfileResourceAssociationCommandOutput, Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: UpdateProfileResourceAssociationCommandInput): import("@smithy/core/client").CommandImpl<UpdateProfileResourceAssociationCommandInput, UpdateProfileResourceAssociationCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UpdateProfileResourceAssociationCommandInput): import("@smithy/core/client").CommandImpl<UpdateProfileResourceAssociationCommandInput, UpdateProfileResourceAssociationCommandOutput, import("..").Route53ProfilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>
@@ -11,6 +11,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
11
11
  export type { RuntimeExtension } from "./runtimeExtensions";
12
12
  export type { Route53ProfilesExtensionConfiguration } from "./extensionConfiguration";
13
13
  export * from "./commands";
14
+ export { Command as $Command } from "@smithy/core/client";
14
15
  export * from "./schemas/schemas_0";
15
16
  export * from "./pagination";
16
17
  export * from "./models/enums";
@@ -13,7 +13,6 @@ export declare const getRuntimeConfig: (config: Route53ProfilesClientConfig) =>
13
13
  region: string | import("@smithy/types").Provider<any>;
14
14
  requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
15
15
  retryMode: string | import("@smithy/types").Provider<string>;
16
- sha256: import("@smithy/types").HashConstructor;
17
16
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
18
17
  useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
19
18
  useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
@@ -24,6 +23,7 @@ export declare const getRuntimeConfig: (config: Route53ProfilesClientConfig) =>
24
23
  [setting: string]: unknown;
25
24
  };
26
25
  apiVersion: string;
26
+ sha256: import("@smithy/types").HashConstructor;
27
27
  urlParser: import("@smithy/types").UrlParser;
28
28
  base64Decoder: import("@smithy/types").Decoder;
29
29
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -14,7 +14,6 @@ export declare const getRuntimeConfig: (config: Route53ProfilesClientConfig) =>
14
14
  region: string | import("@smithy/types").Provider<string>;
15
15
  requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
16
16
  retryMode: string | import("@smithy/types").Provider<string>;
17
- sha256: import("@smithy/types").HashConstructor;
18
17
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
19
18
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
19
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
@@ -26,6 +25,7 @@ export declare const getRuntimeConfig: (config: Route53ProfilesClientConfig) =>
26
25
  [setting: string]: unknown;
27
26
  };
28
27
  apiVersion: string;
28
+ sha256: import("@smithy/types").HashConstructor;
29
29
  urlParser: import("@smithy/types").UrlParser;
30
30
  base64Decoder: import("@smithy/types").Decoder;
31
31
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -4,7 +4,6 @@ import type { Route53ProfilesClientConfig } from "./Route53ProfilesClient";
4
4
  */
5
5
  export declare const getRuntimeConfig: (config: Route53ProfilesClientConfig) => {
6
6
  runtime: string;
7
- sha256: import("@smithy/types").HashConstructor;
8
7
  requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
8
  cacheMiddleware?: boolean;
10
9
  protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
@@ -13,6 +12,7 @@ export declare const getRuntimeConfig: (config: Route53ProfilesClientConfig) =>
13
12
  [setting: string]: unknown;
14
13
  };
15
14
  apiVersion: string;
15
+ sha256: import("@smithy/types").HashConstructor;
16
16
  urlParser: import("@smithy/types").UrlParser;
17
17
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
18
18
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
@@ -21,6 +21,7 @@ export declare const getRuntimeConfig: (config: Route53ProfilesClientConfig) =>
21
21
  defaultNamespace?: string;
22
22
  };
23
23
  serviceId: string;
24
+ sha256: import("@smithy/types").HashConstructor;
24
25
  urlParser: import("@smithy/types").UrlParser;
25
26
  utf8Decoder: import("@smithy/types").Decoder;
26
27
  utf8Encoder: (input: Uint8Array | string) => string;
@@ -0,0 +1,46 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import {
3
+ Route53ProfilesClientResolvedConfig,
4
+ ServiceInputTypes,
5
+ ServiceOutputTypes,
6
+ } from "./Route53ProfilesClient";
7
+ export declare const command: <
8
+ I extends ServiceInputTypes,
9
+ O extends ServiceOutputTypes
10
+ >(
11
+ added: EndpointParameterInstructions,
12
+ plugins: (
13
+ CommandCtor: any,
14
+ clientStack: any,
15
+ config: any,
16
+ options: any
17
+ ) => import("@smithy/types").Pluggable<any, any>[],
18
+ op: string,
19
+ $: import("@smithy/types").StaticOperationSchema,
20
+ smithyContext?: Record<string, unknown>
21
+ ) => {
22
+ new (input: I): import("@smithy/core/client").CommandImpl<
23
+ I,
24
+ O,
25
+ Route53ProfilesClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: import("@smithy/types").OptionalParameter<I>
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ I,
33
+ O,
34
+ Route53ProfilesClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
39
+ };
40
+ export declare const _ep0: EndpointParameterInstructions;
41
+ export declare const _mw0: (
42
+ Command: any,
43
+ cs: any,
44
+ config: any,
45
+ o: any
46
+ ) => never[];