@aws-sdk/client-route53profiles 3.975.0 → 3.978.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
CHANGED
|
@@ -871,6 +871,12 @@ class UpdateProfileResourceAssociationCommand extends smithyClient.Command
|
|
|
871
871
|
.build() {
|
|
872
872
|
}
|
|
873
873
|
|
|
874
|
+
const paginateListProfileAssociations = core.createPaginator(Route53ProfilesClient, ListProfileAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
875
|
+
|
|
876
|
+
const paginateListProfileResourceAssociations = core.createPaginator(Route53ProfilesClient, ListProfileResourceAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
877
|
+
|
|
878
|
+
const paginateListProfiles = core.createPaginator(Route53ProfilesClient, ListProfilesCommand, "NextToken", "NextToken", "MaxResults");
|
|
879
|
+
|
|
874
880
|
const commands = {
|
|
875
881
|
AssociateProfileCommand,
|
|
876
882
|
AssociateResourceToProfileCommand,
|
|
@@ -889,15 +895,14 @@ const commands = {
|
|
|
889
895
|
UntagResourceCommand,
|
|
890
896
|
UpdateProfileResourceAssociationCommand,
|
|
891
897
|
};
|
|
898
|
+
const paginators = {
|
|
899
|
+
paginateListProfileAssociations,
|
|
900
|
+
paginateListProfileResourceAssociations,
|
|
901
|
+
paginateListProfiles,
|
|
902
|
+
};
|
|
892
903
|
class Route53Profiles extends Route53ProfilesClient {
|
|
893
904
|
}
|
|
894
|
-
smithyClient.createAggregatedClient(commands, Route53Profiles);
|
|
895
|
-
|
|
896
|
-
const paginateListProfileAssociations = core.createPaginator(Route53ProfilesClient, ListProfileAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
897
|
-
|
|
898
|
-
const paginateListProfileResourceAssociations = core.createPaginator(Route53ProfilesClient, ListProfileResourceAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
899
|
-
|
|
900
|
-
const paginateListProfiles = core.createPaginator(Route53ProfilesClient, ListProfilesCommand, "NextToken", "NextToken", "MaxResults");
|
|
905
|
+
smithyClient.createAggregatedClient(commands, Route53Profiles, { paginators });
|
|
901
906
|
|
|
902
907
|
const ProfileStatus = {
|
|
903
908
|
COMPLETE: "COMPLETE",
|
|
@@ -15,6 +15,9 @@ import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceComma
|
|
|
15
15
|
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
16
16
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
17
17
|
import { UpdateProfileResourceAssociationCommand, } from "./commands/UpdateProfileResourceAssociationCommand";
|
|
18
|
+
import { paginateListProfileAssociations } from "./pagination/ListProfileAssociationsPaginator";
|
|
19
|
+
import { paginateListProfileResourceAssociations } from "./pagination/ListProfileResourceAssociationsPaginator";
|
|
20
|
+
import { paginateListProfiles } from "./pagination/ListProfilesPaginator";
|
|
18
21
|
import { Route53ProfilesClient } from "./Route53ProfilesClient";
|
|
19
22
|
const commands = {
|
|
20
23
|
AssociateProfileCommand,
|
|
@@ -34,6 +37,11 @@ const commands = {
|
|
|
34
37
|
UntagResourceCommand,
|
|
35
38
|
UpdateProfileResourceAssociationCommand,
|
|
36
39
|
};
|
|
40
|
+
const paginators = {
|
|
41
|
+
paginateListProfileAssociations,
|
|
42
|
+
paginateListProfileResourceAssociations,
|
|
43
|
+
paginateListProfiles,
|
|
44
|
+
};
|
|
37
45
|
export class Route53Profiles extends Route53ProfilesClient {
|
|
38
46
|
}
|
|
39
|
-
createAggregatedClient(commands, Route53Profiles);
|
|
47
|
+
createAggregatedClient(commands, Route53Profiles, { paginators });
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { AssociateProfileCommandInput, AssociateProfileCommandOutput } from "./commands/AssociateProfileCommand";
|
|
3
3
|
import { AssociateResourceToProfileCommandInput, AssociateResourceToProfileCommandOutput } from "./commands/AssociateResourceToProfileCommand";
|
|
4
4
|
import { CreateProfileCommandInput, CreateProfileCommandOutput } from "./commands/CreateProfileCommand";
|
|
@@ -115,6 +115,27 @@ export interface Route53Profiles {
|
|
|
115
115
|
updateProfileResourceAssociation(args: UpdateProfileResourceAssociationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProfileResourceAssociationCommandOutput>;
|
|
116
116
|
updateProfileResourceAssociation(args: UpdateProfileResourceAssociationCommandInput, cb: (err: any, data?: UpdateProfileResourceAssociationCommandOutput) => void): void;
|
|
117
117
|
updateProfileResourceAssociation(args: UpdateProfileResourceAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProfileResourceAssociationCommandOutput) => void): void;
|
|
118
|
+
/**
|
|
119
|
+
* @see {@link ListProfileAssociationsCommand}
|
|
120
|
+
* @param args - command input.
|
|
121
|
+
* @param paginationConfig - optional pagination config.
|
|
122
|
+
* @returns AsyncIterable of {@link ListProfileAssociationsCommandOutput}.
|
|
123
|
+
*/
|
|
124
|
+
paginateListProfileAssociations(args?: ListProfileAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListProfileAssociationsCommandOutput>;
|
|
125
|
+
/**
|
|
126
|
+
* @see {@link ListProfileResourceAssociationsCommand}
|
|
127
|
+
* @param args - command input.
|
|
128
|
+
* @param paginationConfig - optional pagination config.
|
|
129
|
+
* @returns AsyncIterable of {@link ListProfileResourceAssociationsCommandOutput}.
|
|
130
|
+
*/
|
|
131
|
+
paginateListProfileResourceAssociations(args: ListProfileResourceAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListProfileResourceAssociationsCommandOutput>;
|
|
132
|
+
/**
|
|
133
|
+
* @see {@link ListProfilesCommand}
|
|
134
|
+
* @param args - command input.
|
|
135
|
+
* @param paginationConfig - optional pagination config.
|
|
136
|
+
* @returns AsyncIterable of {@link ListProfilesCommandOutput}.
|
|
137
|
+
*/
|
|
138
|
+
paginateListProfiles(args?: ListProfilesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListProfilesCommandOutput>;
|
|
118
139
|
}
|
|
119
140
|
/**
|
|
120
141
|
* <p>
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import {
|
|
3
7
|
AssociateProfileCommandInput,
|
|
4
8
|
AssociateProfileCommandOutput,
|
|
@@ -275,6 +279,27 @@ export interface Route53Profiles {
|
|
|
275
279
|
options: __HttpHandlerOptions,
|
|
276
280
|
cb: (err: any, data?: UpdateProfileResourceAssociationCommandOutput) => void
|
|
277
281
|
): void;
|
|
282
|
+
paginateListProfileAssociations(
|
|
283
|
+
args?: ListProfileAssociationsCommandInput,
|
|
284
|
+
paginationConfig?: Pick<
|
|
285
|
+
PaginationConfiguration,
|
|
286
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
287
|
+
>
|
|
288
|
+
): Paginator<ListProfileAssociationsCommandOutput>;
|
|
289
|
+
paginateListProfileResourceAssociations(
|
|
290
|
+
args: ListProfileResourceAssociationsCommandInput,
|
|
291
|
+
paginationConfig?: Pick<
|
|
292
|
+
PaginationConfiguration,
|
|
293
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
294
|
+
>
|
|
295
|
+
): Paginator<ListProfileResourceAssociationsCommandOutput>;
|
|
296
|
+
paginateListProfiles(
|
|
297
|
+
args?: ListProfilesCommandInput,
|
|
298
|
+
paginationConfig?: Pick<
|
|
299
|
+
PaginationConfiguration,
|
|
300
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
301
|
+
>
|
|
302
|
+
): Paginator<ListProfilesCommandOutput>;
|
|
278
303
|
}
|
|
279
304
|
export declare class Route53Profiles
|
|
280
305
|
extends Route53ProfilesClient
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-route53profiles",
|
|
3
3
|
"description": "AWS SDK for JavaScript Route53profiles Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.978.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-route53profiles",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.973.4",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|