@aws-sdk/client-route-53-domains 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 +15 -9
- package/dist-es/Route53Domains.js +11 -1
- package/dist-types/Route53Domains.d.ts +29 -1
- package/dist-types/ts3.4/Route53Domains.d.ts +33 -1
- package/package.json +17 -17
package/dist-cjs/index.js
CHANGED
|
@@ -1466,6 +1466,14 @@ class ViewBillingCommand extends smithyClient.Command
|
|
|
1466
1466
|
.build() {
|
|
1467
1467
|
}
|
|
1468
1468
|
|
|
1469
|
+
const paginateListDomains = core.createPaginator(Route53DomainsClient, ListDomainsCommand, "Marker", "NextPageMarker", "MaxItems");
|
|
1470
|
+
|
|
1471
|
+
const paginateListOperations = core.createPaginator(Route53DomainsClient, ListOperationsCommand, "Marker", "NextPageMarker", "MaxItems");
|
|
1472
|
+
|
|
1473
|
+
const paginateListPrices = core.createPaginator(Route53DomainsClient, ListPricesCommand, "Marker", "NextPageMarker", "MaxItems");
|
|
1474
|
+
|
|
1475
|
+
const paginateViewBilling = core.createPaginator(Route53DomainsClient, ViewBillingCommand, "Marker", "NextPageMarker", "MaxItems");
|
|
1476
|
+
|
|
1469
1477
|
const commands = {
|
|
1470
1478
|
AcceptDomainTransferFromAnotherAwsAccountCommand,
|
|
1471
1479
|
AssociateDelegationSignerToDomainCommand,
|
|
@@ -1502,17 +1510,15 @@ const commands = {
|
|
|
1502
1510
|
UpdateTagsForDomainCommand,
|
|
1503
1511
|
ViewBillingCommand,
|
|
1504
1512
|
};
|
|
1513
|
+
const paginators = {
|
|
1514
|
+
paginateListDomains,
|
|
1515
|
+
paginateListOperations,
|
|
1516
|
+
paginateListPrices,
|
|
1517
|
+
paginateViewBilling,
|
|
1518
|
+
};
|
|
1505
1519
|
class Route53Domains extends Route53DomainsClient {
|
|
1506
1520
|
}
|
|
1507
|
-
smithyClient.createAggregatedClient(commands, Route53Domains);
|
|
1508
|
-
|
|
1509
|
-
const paginateListDomains = core.createPaginator(Route53DomainsClient, ListDomainsCommand, "Marker", "NextPageMarker", "MaxItems");
|
|
1510
|
-
|
|
1511
|
-
const paginateListOperations = core.createPaginator(Route53DomainsClient, ListOperationsCommand, "Marker", "NextPageMarker", "MaxItems");
|
|
1512
|
-
|
|
1513
|
-
const paginateListPrices = core.createPaginator(Route53DomainsClient, ListPricesCommand, "Marker", "NextPageMarker", "MaxItems");
|
|
1514
|
-
|
|
1515
|
-
const paginateViewBilling = core.createPaginator(Route53DomainsClient, ViewBillingCommand, "Marker", "NextPageMarker", "MaxItems");
|
|
1521
|
+
smithyClient.createAggregatedClient(commands, Route53Domains, { paginators });
|
|
1516
1522
|
|
|
1517
1523
|
const OperationType = {
|
|
1518
1524
|
ADD_DNSSEC: "ADD_DNSSEC",
|
|
@@ -33,6 +33,10 @@ import { UpdateDomainContactPrivacyCommand, } from "./commands/UpdateDomainConta
|
|
|
33
33
|
import { UpdateDomainNameserversCommand, } from "./commands/UpdateDomainNameserversCommand";
|
|
34
34
|
import { UpdateTagsForDomainCommand, } from "./commands/UpdateTagsForDomainCommand";
|
|
35
35
|
import { ViewBillingCommand } from "./commands/ViewBillingCommand";
|
|
36
|
+
import { paginateListDomains } from "./pagination/ListDomainsPaginator";
|
|
37
|
+
import { paginateListOperations } from "./pagination/ListOperationsPaginator";
|
|
38
|
+
import { paginateListPrices } from "./pagination/ListPricesPaginator";
|
|
39
|
+
import { paginateViewBilling } from "./pagination/ViewBillingPaginator";
|
|
36
40
|
import { Route53DomainsClient } from "./Route53DomainsClient";
|
|
37
41
|
const commands = {
|
|
38
42
|
AcceptDomainTransferFromAnotherAwsAccountCommand,
|
|
@@ -70,6 +74,12 @@ const commands = {
|
|
|
70
74
|
UpdateTagsForDomainCommand,
|
|
71
75
|
ViewBillingCommand,
|
|
72
76
|
};
|
|
77
|
+
const paginators = {
|
|
78
|
+
paginateListDomains,
|
|
79
|
+
paginateListOperations,
|
|
80
|
+
paginateListPrices,
|
|
81
|
+
paginateViewBilling,
|
|
82
|
+
};
|
|
73
83
|
export class Route53Domains extends Route53DomainsClient {
|
|
74
84
|
}
|
|
75
|
-
createAggregatedClient(commands, Route53Domains);
|
|
85
|
+
createAggregatedClient(commands, Route53Domains, { 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 { AcceptDomainTransferFromAnotherAwsAccountCommandInput, AcceptDomainTransferFromAnotherAwsAccountCommandOutput } from "./commands/AcceptDomainTransferFromAnotherAwsAccountCommand";
|
|
3
3
|
import { AssociateDelegationSignerToDomainCommandInput, AssociateDelegationSignerToDomainCommandOutput } from "./commands/AssociateDelegationSignerToDomainCommand";
|
|
4
4
|
import { CancelDomainTransferToAnotherAwsAccountCommandInput, CancelDomainTransferToAnotherAwsAccountCommandOutput } from "./commands/CancelDomainTransferToAnotherAwsAccountCommand";
|
|
@@ -245,6 +245,34 @@ export interface Route53Domains {
|
|
|
245
245
|
viewBilling(args: ViewBillingCommandInput, options?: __HttpHandlerOptions): Promise<ViewBillingCommandOutput>;
|
|
246
246
|
viewBilling(args: ViewBillingCommandInput, cb: (err: any, data?: ViewBillingCommandOutput) => void): void;
|
|
247
247
|
viewBilling(args: ViewBillingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ViewBillingCommandOutput) => void): void;
|
|
248
|
+
/**
|
|
249
|
+
* @see {@link ListDomainsCommand}
|
|
250
|
+
* @param args - command input.
|
|
251
|
+
* @param paginationConfig - optional pagination config.
|
|
252
|
+
* @returns AsyncIterable of {@link ListDomainsCommandOutput}.
|
|
253
|
+
*/
|
|
254
|
+
paginateListDomains(args?: ListDomainsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDomainsCommandOutput>;
|
|
255
|
+
/**
|
|
256
|
+
* @see {@link ListOperationsCommand}
|
|
257
|
+
* @param args - command input.
|
|
258
|
+
* @param paginationConfig - optional pagination config.
|
|
259
|
+
* @returns AsyncIterable of {@link ListOperationsCommandOutput}.
|
|
260
|
+
*/
|
|
261
|
+
paginateListOperations(args?: ListOperationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListOperationsCommandOutput>;
|
|
262
|
+
/**
|
|
263
|
+
* @see {@link ListPricesCommand}
|
|
264
|
+
* @param args - command input.
|
|
265
|
+
* @param paginationConfig - optional pagination config.
|
|
266
|
+
* @returns AsyncIterable of {@link ListPricesCommandOutput}.
|
|
267
|
+
*/
|
|
268
|
+
paginateListPrices(args?: ListPricesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListPricesCommandOutput>;
|
|
269
|
+
/**
|
|
270
|
+
* @see {@link ViewBillingCommand}
|
|
271
|
+
* @param args - command input.
|
|
272
|
+
* @param paginationConfig - optional pagination config.
|
|
273
|
+
* @returns AsyncIterable of {@link ViewBillingCommandOutput}.
|
|
274
|
+
*/
|
|
275
|
+
paginateViewBilling(args?: ViewBillingCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ViewBillingCommandOutput>;
|
|
248
276
|
}
|
|
249
277
|
/**
|
|
250
278
|
* <p>Amazon Route 53 API actions let you register domain names and perform related
|
|
@@ -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
|
AcceptDomainTransferFromAnotherAwsAccountCommandInput,
|
|
4
8
|
AcceptDomainTransferFromAnotherAwsAccountCommandOutput,
|
|
@@ -621,6 +625,34 @@ export interface Route53Domains {
|
|
|
621
625
|
options: __HttpHandlerOptions,
|
|
622
626
|
cb: (err: any, data?: ViewBillingCommandOutput) => void
|
|
623
627
|
): void;
|
|
628
|
+
paginateListDomains(
|
|
629
|
+
args?: ListDomainsCommandInput,
|
|
630
|
+
paginationConfig?: Pick<
|
|
631
|
+
PaginationConfiguration,
|
|
632
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
633
|
+
>
|
|
634
|
+
): Paginator<ListDomainsCommandOutput>;
|
|
635
|
+
paginateListOperations(
|
|
636
|
+
args?: ListOperationsCommandInput,
|
|
637
|
+
paginationConfig?: Pick<
|
|
638
|
+
PaginationConfiguration,
|
|
639
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
640
|
+
>
|
|
641
|
+
): Paginator<ListOperationsCommandOutput>;
|
|
642
|
+
paginateListPrices(
|
|
643
|
+
args?: ListPricesCommandInput,
|
|
644
|
+
paginationConfig?: Pick<
|
|
645
|
+
PaginationConfiguration,
|
|
646
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
647
|
+
>
|
|
648
|
+
): Paginator<ListPricesCommandOutput>;
|
|
649
|
+
paginateViewBilling(
|
|
650
|
+
args?: ViewBillingCommandInput,
|
|
651
|
+
paginationConfig?: Pick<
|
|
652
|
+
PaginationConfiguration,
|
|
653
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
654
|
+
>
|
|
655
|
+
): Paginator<ViewBillingCommandOutput>;
|
|
624
656
|
}
|
|
625
657
|
export declare class Route53Domains
|
|
626
658
|
extends Route53DomainsClient
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-route-53-domains",
|
|
3
3
|
"description": "AWS SDK for JavaScript Route 53 Domains 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-route-53-domains",
|
|
@@ -23,38 +23,38 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
26
|
-
"@aws-sdk/core": "^3.973.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
30
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
32
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
33
|
-
"@aws-sdk/types": "^3.973.
|
|
26
|
+
"@aws-sdk/core": "^3.973.4",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
29
|
+
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
32
|
+
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
33
|
+
"@aws-sdk/types": "^3.973.1",
|
|
34
34
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
35
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
37
37
|
"@smithy/config-resolver": "^4.4.6",
|
|
38
|
-
"@smithy/core": "^3.
|
|
38
|
+
"@smithy/core": "^3.22.0",
|
|
39
39
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
40
40
|
"@smithy/hash-node": "^4.2.8",
|
|
41
41
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
42
42
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
43
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
44
|
-
"@smithy/middleware-retry": "^4.4.
|
|
43
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
44
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
45
45
|
"@smithy/middleware-serde": "^4.2.9",
|
|
46
46
|
"@smithy/middleware-stack": "^4.2.8",
|
|
47
47
|
"@smithy/node-config-provider": "^4.3.8",
|
|
48
48
|
"@smithy/node-http-handler": "^4.4.8",
|
|
49
49
|
"@smithy/protocol-http": "^5.3.8",
|
|
50
|
-
"@smithy/smithy-client": "^4.
|
|
50
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
51
51
|
"@smithy/types": "^4.12.0",
|
|
52
52
|
"@smithy/url-parser": "^4.2.8",
|
|
53
53
|
"@smithy/util-base64": "^4.3.0",
|
|
54
54
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
55
55
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
56
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
57
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
56
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
57
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
58
58
|
"@smithy/util-endpoints": "^3.2.8",
|
|
59
59
|
"@smithy/util-middleware": "^4.2.8",
|
|
60
60
|
"@smithy/util-retry": "^4.2.8",
|