@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.
- package/dist-cjs/index.js +27 -165
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/AssociateProfileCommand.js +2 -14
- package/dist-es/commands/AssociateResourceToProfileCommand.js +2 -14
- package/dist-es/commands/CreateProfileCommand.js +2 -14
- package/dist-es/commands/DeleteProfileCommand.js +2 -14
- package/dist-es/commands/DisassociateProfileCommand.js +2 -14
- package/dist-es/commands/DisassociateResourceFromProfileCommand.js +2 -14
- package/dist-es/commands/GetProfileAssociationCommand.js +2 -14
- package/dist-es/commands/GetProfileCommand.js +2 -14
- package/dist-es/commands/GetProfileResourceAssociationCommand.js +2 -14
- package/dist-es/commands/ListProfileAssociationsCommand.js +2 -14
- package/dist-es/commands/ListProfileResourceAssociationsCommand.js +2 -14
- package/dist-es/commands/ListProfilesCommand.js +2 -14
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -14
- package/dist-es/commands/TagResourceCommand.js +2 -14
- package/dist-es/commands/UntagResourceCommand.js +2 -14
- package/dist-es/commands/UpdateProfileResourceAssociationCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/AssociateProfileCommand.d.ts +3 -8
- package/dist-types/commands/AssociateResourceToProfileCommand.d.ts +3 -8
- package/dist-types/commands/CreateProfileCommand.d.ts +3 -8
- package/dist-types/commands/DeleteProfileCommand.d.ts +3 -8
- package/dist-types/commands/DisassociateProfileCommand.d.ts +3 -8
- package/dist-types/commands/DisassociateResourceFromProfileCommand.d.ts +3 -8
- package/dist-types/commands/GetProfileAssociationCommand.d.ts +3 -8
- package/dist-types/commands/GetProfileCommand.d.ts +3 -8
- package/dist-types/commands/GetProfileResourceAssociationCommand.d.ts +3 -8
- package/dist-types/commands/ListProfileAssociationsCommand.d.ts +3 -8
- package/dist-types/commands/ListProfileResourceAssociationsCommand.d.ts +3 -8
- package/dist-types/commands/ListProfilesCommand.d.ts +3 -8
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
- package/dist-types/commands/TagResourceCommand.d.ts +3 -8
- package/dist-types/commands/UntagResourceCommand.d.ts +3 -8
- package/dist-types/commands/UpdateProfileResourceAssociationCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/commands/AssociateProfileCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/AssociateResourceToProfileCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateProfileCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteProfileCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DisassociateProfileCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DisassociateResourceFromProfileCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetProfileAssociationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetProfileCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetProfileResourceAssociationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListProfileAssociationsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListProfileResourceAssociationsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListProfilesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UpdateProfileResourceAssociationCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
AssociateProfileRequest,
|
|
5
4
|
AssociateProfileResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
Route53ProfilesClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../Route53ProfilesClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface AssociateProfileCommandInput extends AssociateProfileRequest {}
|
|
15
8
|
export interface AssociateProfileCommandOutput
|
|
16
9
|
extends AssociateProfileResponse,
|
|
@@ -21,22 +14,20 @@ declare const AssociateProfileCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
AssociateProfileCommandInput,
|
|
23
16
|
AssociateProfileCommandOutput,
|
|
24
|
-
Route53ProfilesClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").Route53ProfilesClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: AssociateProfileCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
AssociateProfileCommandInput,
|
|
32
25
|
AssociateProfileCommandOutput,
|
|
33
|
-
Route53ProfilesClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").Route53ProfilesClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class AssociateProfileCommand extends AssociateProfileCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
AssociateResourceToProfileRequest,
|
|
5
4
|
AssociateResourceToProfileResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
Route53ProfilesClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../Route53ProfilesClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface AssociateResourceToProfileCommandInput
|
|
15
8
|
extends AssociateResourceToProfileRequest {}
|
|
16
9
|
export interface AssociateResourceToProfileCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const AssociateResourceToProfileCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
AssociateResourceToProfileCommandInput,
|
|
24
17
|
AssociateResourceToProfileCommandOutput,
|
|
25
|
-
Route53ProfilesClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").Route53ProfilesClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: AssociateResourceToProfileCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
AssociateResourceToProfileCommandInput,
|
|
33
26
|
AssociateResourceToProfileCommandOutput,
|
|
34
|
-
Route53ProfilesClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").Route53ProfilesClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class AssociateResourceToProfileCommand extends AssociateResourceToProfileCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
CreateProfileRequest,
|
|
5
4
|
CreateProfileResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
Route53ProfilesClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../Route53ProfilesClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface CreateProfileCommandInput extends CreateProfileRequest {}
|
|
15
8
|
export interface CreateProfileCommandOutput
|
|
16
9
|
extends CreateProfileResponse,
|
|
@@ -21,22 +14,20 @@ declare const CreateProfileCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
CreateProfileCommandInput,
|
|
23
16
|
CreateProfileCommandOutput,
|
|
24
|
-
Route53ProfilesClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").Route53ProfilesClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: CreateProfileCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
CreateProfileCommandInput,
|
|
32
25
|
CreateProfileCommandOutput,
|
|
33
|
-
Route53ProfilesClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").Route53ProfilesClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class CreateProfileCommand extends CreateProfileCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
DeleteProfileRequest,
|
|
5
4
|
DeleteProfileResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
Route53ProfilesClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../Route53ProfilesClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface DeleteProfileCommandInput extends DeleteProfileRequest {}
|
|
15
8
|
export interface DeleteProfileCommandOutput
|
|
16
9
|
extends DeleteProfileResponse,
|
|
@@ -21,22 +14,20 @@ declare const DeleteProfileCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
DeleteProfileCommandInput,
|
|
23
16
|
DeleteProfileCommandOutput,
|
|
24
|
-
Route53ProfilesClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").Route53ProfilesClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: DeleteProfileCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
DeleteProfileCommandInput,
|
|
32
25
|
DeleteProfileCommandOutput,
|
|
33
|
-
Route53ProfilesClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").Route53ProfilesClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class DeleteProfileCommand extends DeleteProfileCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
DisassociateProfileRequest,
|
|
5
4
|
DisassociateProfileResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
Route53ProfilesClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../Route53ProfilesClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface DisassociateProfileCommandInput
|
|
15
8
|
extends DisassociateProfileRequest {}
|
|
16
9
|
export interface DisassociateProfileCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const DisassociateProfileCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
DisassociateProfileCommandInput,
|
|
24
17
|
DisassociateProfileCommandOutput,
|
|
25
|
-
Route53ProfilesClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").Route53ProfilesClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: DisassociateProfileCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
DisassociateProfileCommandInput,
|
|
33
26
|
DisassociateProfileCommandOutput,
|
|
34
|
-
Route53ProfilesClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").Route53ProfilesClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class DisassociateProfileCommand extends DisassociateProfileCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
DisassociateResourceFromProfileRequest,
|
|
5
4
|
DisassociateResourceFromProfileResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
Route53ProfilesClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../Route53ProfilesClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface DisassociateResourceFromProfileCommandInput
|
|
15
8
|
extends DisassociateResourceFromProfileRequest {}
|
|
16
9
|
export interface DisassociateResourceFromProfileCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const DisassociateResourceFromProfileCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
DisassociateResourceFromProfileCommandInput,
|
|
24
17
|
DisassociateResourceFromProfileCommandOutput,
|
|
25
|
-
Route53ProfilesClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").Route53ProfilesClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: DisassociateResourceFromProfileCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
DisassociateResourceFromProfileCommandInput,
|
|
33
26
|
DisassociateResourceFromProfileCommandOutput,
|
|
34
|
-
Route53ProfilesClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").Route53ProfilesClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class DisassociateResourceFromProfileCommand extends DisassociateResourceFromProfileCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
GetProfileAssociationRequest,
|
|
5
4
|
GetProfileAssociationResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
Route53ProfilesClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../Route53ProfilesClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetProfileAssociationCommandInput
|
|
15
8
|
extends GetProfileAssociationRequest {}
|
|
16
9
|
export interface GetProfileAssociationCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const GetProfileAssociationCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
GetProfileAssociationCommandInput,
|
|
24
17
|
GetProfileAssociationCommandOutput,
|
|
25
|
-
Route53ProfilesClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").Route53ProfilesClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: GetProfileAssociationCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
GetProfileAssociationCommandInput,
|
|
33
26
|
GetProfileAssociationCommandOutput,
|
|
34
|
-
Route53ProfilesClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").Route53ProfilesClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class GetProfileAssociationCommand extends GetProfileAssociationCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import { GetProfileRequest, GetProfileResponse } from "../models/models_0";
|
|
4
|
-
import {
|
|
5
|
-
Route53ProfilesClientResolvedConfig,
|
|
6
|
-
ServiceInputTypes,
|
|
7
|
-
ServiceOutputTypes,
|
|
8
|
-
} from "../Route53ProfilesClient";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface GetProfileCommandInput extends GetProfileRequest {}
|
|
12
5
|
export interface GetProfileCommandOutput
|
|
13
6
|
extends GetProfileResponse,
|
|
@@ -18,22 +11,20 @@ declare const GetProfileCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
GetProfileCommandInput,
|
|
20
13
|
GetProfileCommandOutput,
|
|
21
|
-
Route53ProfilesClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").Route53ProfilesClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: GetProfileCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
GetProfileCommandInput,
|
|
29
22
|
GetProfileCommandOutput,
|
|
30
|
-
Route53ProfilesClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").Route53ProfilesClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class GetProfileCommand extends GetProfileCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
GetProfileResourceAssociationRequest,
|
|
5
4
|
GetProfileResourceAssociationResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
Route53ProfilesClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../Route53ProfilesClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetProfileResourceAssociationCommandInput
|
|
15
8
|
extends GetProfileResourceAssociationRequest {}
|
|
16
9
|
export interface GetProfileResourceAssociationCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const GetProfileResourceAssociationCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
GetProfileResourceAssociationCommandInput,
|
|
24
17
|
GetProfileResourceAssociationCommandOutput,
|
|
25
|
-
Route53ProfilesClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").Route53ProfilesClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: GetProfileResourceAssociationCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
GetProfileResourceAssociationCommandInput,
|
|
33
26
|
GetProfileResourceAssociationCommandOutput,
|
|
34
|
-
Route53ProfilesClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").Route53ProfilesClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class GetProfileResourceAssociationCommand extends GetProfileResourceAssociationCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
ListProfileAssociationsRequest,
|
|
5
4
|
ListProfileAssociationsResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
Route53ProfilesClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../Route53ProfilesClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListProfileAssociationsCommandInput
|
|
15
8
|
extends ListProfileAssociationsRequest {}
|
|
16
9
|
export interface ListProfileAssociationsCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const ListProfileAssociationsCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
ListProfileAssociationsCommandInput,
|
|
24
17
|
ListProfileAssociationsCommandOutput,
|
|
25
|
-
Route53ProfilesClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").Route53ProfilesClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
...[input]: [] | [ListProfileAssociationsCommandInput]
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
ListProfileAssociationsCommandInput,
|
|
33
26
|
ListProfileAssociationsCommandOutput,
|
|
34
|
-
Route53ProfilesClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").Route53ProfilesClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class ListProfileAssociationsCommand extends ListProfileAssociationsCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
ListProfileResourceAssociationsRequest,
|
|
5
4
|
ListProfileResourceAssociationsResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
Route53ProfilesClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../Route53ProfilesClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListProfileResourceAssociationsCommandInput
|
|
15
8
|
extends ListProfileResourceAssociationsRequest {}
|
|
16
9
|
export interface ListProfileResourceAssociationsCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const ListProfileResourceAssociationsCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
ListProfileResourceAssociationsCommandInput,
|
|
24
17
|
ListProfileResourceAssociationsCommandOutput,
|
|
25
|
-
Route53ProfilesClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").Route53ProfilesClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: ListProfileResourceAssociationsCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
ListProfileResourceAssociationsCommandInput,
|
|
33
26
|
ListProfileResourceAssociationsCommandOutput,
|
|
34
|
-
Route53ProfilesClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").Route53ProfilesClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class ListProfileResourceAssociationsCommand extends ListProfileResourceAssociationsCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import { ListProfilesRequest, ListProfilesResponse } from "../models/models_0";
|
|
4
|
-
import {
|
|
5
|
-
Route53ProfilesClientResolvedConfig,
|
|
6
|
-
ServiceInputTypes,
|
|
7
|
-
ServiceOutputTypes,
|
|
8
|
-
} from "../Route53ProfilesClient";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface ListProfilesCommandInput extends ListProfilesRequest {}
|
|
12
5
|
export interface ListProfilesCommandOutput
|
|
13
6
|
extends ListProfilesResponse,
|
|
@@ -18,22 +11,20 @@ declare const ListProfilesCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
ListProfilesCommandInput,
|
|
20
13
|
ListProfilesCommandOutput,
|
|
21
|
-
Route53ProfilesClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").Route53ProfilesClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
...[input]: [] | [ListProfilesCommandInput]
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
ListProfilesCommandInput,
|
|
29
22
|
ListProfilesCommandOutput,
|
|
30
|
-
Route53ProfilesClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").Route53ProfilesClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class ListProfilesCommand extends ListProfilesCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
ListTagsForResourceRequest,
|
|
5
4
|
ListTagsForResourceResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
Route53ProfilesClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../Route53ProfilesClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListTagsForResourceCommandInput
|
|
15
8
|
extends ListTagsForResourceRequest {}
|
|
16
9
|
export interface ListTagsForResourceCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
ListTagsForResourceCommandInput,
|
|
24
17
|
ListTagsForResourceCommandOutput,
|
|
25
|
-
Route53ProfilesClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").Route53ProfilesClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: ListTagsForResourceCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
ListTagsForResourceCommandInput,
|
|
33
26
|
ListTagsForResourceCommandOutput,
|
|
34
|
-
Route53ProfilesClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").Route53ProfilesClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
4
|
-
import {
|
|
5
|
-
Route53ProfilesClientResolvedConfig,
|
|
6
|
-
ServiceInputTypes,
|
|
7
|
-
ServiceOutputTypes,
|
|
8
|
-
} from "../Route53ProfilesClient";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
12
5
|
export interface TagResourceCommandOutput
|
|
13
6
|
extends TagResourceResponse,
|
|
@@ -18,22 +11,20 @@ declare const TagResourceCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
TagResourceCommandInput,
|
|
20
13
|
TagResourceCommandOutput,
|
|
21
|
-
Route53ProfilesClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").Route53ProfilesClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: TagResourceCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
TagResourceCommandInput,
|
|
29
22
|
TagResourceCommandOutput,
|
|
30
|
-
Route53ProfilesClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").Route53ProfilesClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
39
30
|
protected static __types: {
|