@aws-sdk/client-auto-scaling 3.477.0 → 3.478.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/pagination/DescribeAutoScalingGroupsPaginator.js +2 -24
- package/dist-cjs/pagination/DescribeAutoScalingInstancesPaginator.js +2 -24
- package/dist-cjs/pagination/DescribeInstanceRefreshesPaginator.js +2 -24
- package/dist-cjs/pagination/DescribeLaunchConfigurationsPaginator.js +2 -24
- package/dist-cjs/pagination/DescribeLoadBalancerTargetGroupsPaginator.js +2 -24
- package/dist-cjs/pagination/DescribeLoadBalancersPaginator.js +2 -24
- package/dist-cjs/pagination/DescribeNotificationConfigurationsPaginator.js +2 -24
- package/dist-cjs/pagination/DescribePoliciesPaginator.js +2 -24
- package/dist-cjs/pagination/DescribeScalingActivitiesPaginator.js +2 -24
- package/dist-cjs/pagination/DescribeScheduledActionsPaginator.js +2 -24
- package/dist-cjs/pagination/DescribeTagsPaginator.js +2 -24
- package/dist-cjs/pagination/DescribeTrafficSourcesPaginator.js +2 -24
- package/dist-cjs/pagination/DescribeWarmPoolPaginator.js +2 -24
- package/dist-es/pagination/DescribeAutoScalingGroupsPaginator.js +2 -23
- package/dist-es/pagination/DescribeAutoScalingInstancesPaginator.js +2 -23
- package/dist-es/pagination/DescribeInstanceRefreshesPaginator.js +2 -23
- package/dist-es/pagination/DescribeLaunchConfigurationsPaginator.js +2 -23
- package/dist-es/pagination/DescribeLoadBalancerTargetGroupsPaginator.js +2 -23
- package/dist-es/pagination/DescribeLoadBalancersPaginator.js +2 -23
- package/dist-es/pagination/DescribeNotificationConfigurationsPaginator.js +2 -23
- package/dist-es/pagination/DescribePoliciesPaginator.js +2 -23
- package/dist-es/pagination/DescribeScalingActivitiesPaginator.js +2 -23
- package/dist-es/pagination/DescribeScheduledActionsPaginator.js +2 -23
- package/dist-es/pagination/DescribeTagsPaginator.js +2 -23
- package/dist-es/pagination/DescribeTrafficSourcesPaginator.js +2 -23
- package/dist-es/pagination/DescribeWarmPoolPaginator.js +2 -23
- package/dist-types/pagination/DescribeAutoScalingGroupsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeAutoScalingInstancesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeInstanceRefreshesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeLaunchConfigurationsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeLoadBalancerTargetGroupsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeLoadBalancersPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeNotificationConfigurationsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribePoliciesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeScalingActivitiesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeScheduledActionsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeTagsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeTrafficSourcesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeWarmPoolPaginator.d.ts +1 -1
- package/dist-types/ts3.4/pagination/DescribeAutoScalingGroupsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribeAutoScalingInstancesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribeInstanceRefreshesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribeLaunchConfigurationsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribeLoadBalancerTargetGroupsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribeLoadBalancersPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribeNotificationConfigurationsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribePoliciesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribeScalingActivitiesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribeScheduledActionsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribeTagsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribeTrafficSourcesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribeWarmPoolPaginator.d.ts +3 -3
- package/package.json +6 -5
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateDescribeAutoScalingGroups = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const AutoScalingClient_1 = require("../AutoScalingClient");
|
|
5
6
|
const DescribeAutoScalingGroupsCommand_1 = require("../commands/DescribeAutoScalingGroupsCommand");
|
|
6
|
-
|
|
7
|
-
return await client.send(new DescribeAutoScalingGroupsCommand_1.DescribeAutoScalingGroupsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateDescribeAutoScalingGroups(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxRecords"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof AutoScalingClient_1.AutoScalingClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected AutoScaling | AutoScalingClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateDescribeAutoScalingGroups = paginateDescribeAutoScalingGroups;
|
|
7
|
+
exports.paginateDescribeAutoScalingGroups = (0, core_1.createPaginator)(AutoScalingClient_1.AutoScalingClient, DescribeAutoScalingGroupsCommand_1.DescribeAutoScalingGroupsCommand, "NextToken", "NextToken", "MaxRecords");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateDescribeAutoScalingInstances = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const AutoScalingClient_1 = require("../AutoScalingClient");
|
|
5
6
|
const DescribeAutoScalingInstancesCommand_1 = require("../commands/DescribeAutoScalingInstancesCommand");
|
|
6
|
-
|
|
7
|
-
return await client.send(new DescribeAutoScalingInstancesCommand_1.DescribeAutoScalingInstancesCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateDescribeAutoScalingInstances(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxRecords"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof AutoScalingClient_1.AutoScalingClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected AutoScaling | AutoScalingClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateDescribeAutoScalingInstances = paginateDescribeAutoScalingInstances;
|
|
7
|
+
exports.paginateDescribeAutoScalingInstances = (0, core_1.createPaginator)(AutoScalingClient_1.AutoScalingClient, DescribeAutoScalingInstancesCommand_1.DescribeAutoScalingInstancesCommand, "NextToken", "NextToken", "MaxRecords");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateDescribeInstanceRefreshes = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const AutoScalingClient_1 = require("../AutoScalingClient");
|
|
5
6
|
const DescribeInstanceRefreshesCommand_1 = require("../commands/DescribeInstanceRefreshesCommand");
|
|
6
|
-
|
|
7
|
-
return await client.send(new DescribeInstanceRefreshesCommand_1.DescribeInstanceRefreshesCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateDescribeInstanceRefreshes(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxRecords"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof AutoScalingClient_1.AutoScalingClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected AutoScaling | AutoScalingClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateDescribeInstanceRefreshes = paginateDescribeInstanceRefreshes;
|
|
7
|
+
exports.paginateDescribeInstanceRefreshes = (0, core_1.createPaginator)(AutoScalingClient_1.AutoScalingClient, DescribeInstanceRefreshesCommand_1.DescribeInstanceRefreshesCommand, "NextToken", "NextToken", "MaxRecords");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateDescribeLaunchConfigurations = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const AutoScalingClient_1 = require("../AutoScalingClient");
|
|
5
6
|
const DescribeLaunchConfigurationsCommand_1 = require("../commands/DescribeLaunchConfigurationsCommand");
|
|
6
|
-
|
|
7
|
-
return await client.send(new DescribeLaunchConfigurationsCommand_1.DescribeLaunchConfigurationsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateDescribeLaunchConfigurations(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxRecords"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof AutoScalingClient_1.AutoScalingClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected AutoScaling | AutoScalingClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateDescribeLaunchConfigurations = paginateDescribeLaunchConfigurations;
|
|
7
|
+
exports.paginateDescribeLaunchConfigurations = (0, core_1.createPaginator)(AutoScalingClient_1.AutoScalingClient, DescribeLaunchConfigurationsCommand_1.DescribeLaunchConfigurationsCommand, "NextToken", "NextToken", "MaxRecords");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateDescribeLoadBalancerTargetGroups = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const AutoScalingClient_1 = require("../AutoScalingClient");
|
|
5
6
|
const DescribeLoadBalancerTargetGroupsCommand_1 = require("../commands/DescribeLoadBalancerTargetGroupsCommand");
|
|
6
|
-
|
|
7
|
-
return await client.send(new DescribeLoadBalancerTargetGroupsCommand_1.DescribeLoadBalancerTargetGroupsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateDescribeLoadBalancerTargetGroups(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxRecords"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof AutoScalingClient_1.AutoScalingClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected AutoScaling | AutoScalingClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateDescribeLoadBalancerTargetGroups = paginateDescribeLoadBalancerTargetGroups;
|
|
7
|
+
exports.paginateDescribeLoadBalancerTargetGroups = (0, core_1.createPaginator)(AutoScalingClient_1.AutoScalingClient, DescribeLoadBalancerTargetGroupsCommand_1.DescribeLoadBalancerTargetGroupsCommand, "NextToken", "NextToken", "MaxRecords");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateDescribeLoadBalancers = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const AutoScalingClient_1 = require("../AutoScalingClient");
|
|
5
6
|
const DescribeLoadBalancersCommand_1 = require("../commands/DescribeLoadBalancersCommand");
|
|
6
|
-
|
|
7
|
-
return await client.send(new DescribeLoadBalancersCommand_1.DescribeLoadBalancersCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateDescribeLoadBalancers(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxRecords"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof AutoScalingClient_1.AutoScalingClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected AutoScaling | AutoScalingClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateDescribeLoadBalancers = paginateDescribeLoadBalancers;
|
|
7
|
+
exports.paginateDescribeLoadBalancers = (0, core_1.createPaginator)(AutoScalingClient_1.AutoScalingClient, DescribeLoadBalancersCommand_1.DescribeLoadBalancersCommand, "NextToken", "NextToken", "MaxRecords");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateDescribeNotificationConfigurations = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const AutoScalingClient_1 = require("../AutoScalingClient");
|
|
5
6
|
const DescribeNotificationConfigurationsCommand_1 = require("../commands/DescribeNotificationConfigurationsCommand");
|
|
6
|
-
|
|
7
|
-
return await client.send(new DescribeNotificationConfigurationsCommand_1.DescribeNotificationConfigurationsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateDescribeNotificationConfigurations(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxRecords"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof AutoScalingClient_1.AutoScalingClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected AutoScaling | AutoScalingClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateDescribeNotificationConfigurations = paginateDescribeNotificationConfigurations;
|
|
7
|
+
exports.paginateDescribeNotificationConfigurations = (0, core_1.createPaginator)(AutoScalingClient_1.AutoScalingClient, DescribeNotificationConfigurationsCommand_1.DescribeNotificationConfigurationsCommand, "NextToken", "NextToken", "MaxRecords");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateDescribePolicies = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const AutoScalingClient_1 = require("../AutoScalingClient");
|
|
5
6
|
const DescribePoliciesCommand_1 = require("../commands/DescribePoliciesCommand");
|
|
6
|
-
|
|
7
|
-
return await client.send(new DescribePoliciesCommand_1.DescribePoliciesCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateDescribePolicies(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxRecords"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof AutoScalingClient_1.AutoScalingClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected AutoScaling | AutoScalingClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateDescribePolicies = paginateDescribePolicies;
|
|
7
|
+
exports.paginateDescribePolicies = (0, core_1.createPaginator)(AutoScalingClient_1.AutoScalingClient, DescribePoliciesCommand_1.DescribePoliciesCommand, "NextToken", "NextToken", "MaxRecords");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateDescribeScalingActivities = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const AutoScalingClient_1 = require("../AutoScalingClient");
|
|
5
6
|
const DescribeScalingActivitiesCommand_1 = require("../commands/DescribeScalingActivitiesCommand");
|
|
6
|
-
|
|
7
|
-
return await client.send(new DescribeScalingActivitiesCommand_1.DescribeScalingActivitiesCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateDescribeScalingActivities(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxRecords"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof AutoScalingClient_1.AutoScalingClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected AutoScaling | AutoScalingClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateDescribeScalingActivities = paginateDescribeScalingActivities;
|
|
7
|
+
exports.paginateDescribeScalingActivities = (0, core_1.createPaginator)(AutoScalingClient_1.AutoScalingClient, DescribeScalingActivitiesCommand_1.DescribeScalingActivitiesCommand, "NextToken", "NextToken", "MaxRecords");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateDescribeScheduledActions = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const AutoScalingClient_1 = require("../AutoScalingClient");
|
|
5
6
|
const DescribeScheduledActionsCommand_1 = require("../commands/DescribeScheduledActionsCommand");
|
|
6
|
-
|
|
7
|
-
return await client.send(new DescribeScheduledActionsCommand_1.DescribeScheduledActionsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateDescribeScheduledActions(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxRecords"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof AutoScalingClient_1.AutoScalingClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected AutoScaling | AutoScalingClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateDescribeScheduledActions = paginateDescribeScheduledActions;
|
|
7
|
+
exports.paginateDescribeScheduledActions = (0, core_1.createPaginator)(AutoScalingClient_1.AutoScalingClient, DescribeScheduledActionsCommand_1.DescribeScheduledActionsCommand, "NextToken", "NextToken", "MaxRecords");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateDescribeTags = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const AutoScalingClient_1 = require("../AutoScalingClient");
|
|
5
6
|
const DescribeTagsCommand_1 = require("../commands/DescribeTagsCommand");
|
|
6
|
-
|
|
7
|
-
return await client.send(new DescribeTagsCommand_1.DescribeTagsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateDescribeTags(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxRecords"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof AutoScalingClient_1.AutoScalingClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected AutoScaling | AutoScalingClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateDescribeTags = paginateDescribeTags;
|
|
7
|
+
exports.paginateDescribeTags = (0, core_1.createPaginator)(AutoScalingClient_1.AutoScalingClient, DescribeTagsCommand_1.DescribeTagsCommand, "NextToken", "NextToken", "MaxRecords");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateDescribeTrafficSources = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const AutoScalingClient_1 = require("../AutoScalingClient");
|
|
5
6
|
const DescribeTrafficSourcesCommand_1 = require("../commands/DescribeTrafficSourcesCommand");
|
|
6
|
-
|
|
7
|
-
return await client.send(new DescribeTrafficSourcesCommand_1.DescribeTrafficSourcesCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateDescribeTrafficSources(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxRecords"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof AutoScalingClient_1.AutoScalingClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected AutoScaling | AutoScalingClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateDescribeTrafficSources = paginateDescribeTrafficSources;
|
|
7
|
+
exports.paginateDescribeTrafficSources = (0, core_1.createPaginator)(AutoScalingClient_1.AutoScalingClient, DescribeTrafficSourcesCommand_1.DescribeTrafficSourcesCommand, "NextToken", "NextToken", "MaxRecords");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateDescribeWarmPool = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const AutoScalingClient_1 = require("../AutoScalingClient");
|
|
5
6
|
const DescribeWarmPoolCommand_1 = require("../commands/DescribeWarmPoolCommand");
|
|
6
|
-
|
|
7
|
-
return await client.send(new DescribeWarmPoolCommand_1.DescribeWarmPoolCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateDescribeWarmPool(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxRecords"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof AutoScalingClient_1.AutoScalingClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected AutoScaling | AutoScalingClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateDescribeWarmPool = paginateDescribeWarmPool;
|
|
7
|
+
exports.paginateDescribeWarmPool = (0, core_1.createPaginator)(AutoScalingClient_1.AutoScalingClient, DescribeWarmPoolCommand_1.DescribeWarmPoolCommand, "NextToken", "NextToken", "MaxRecords");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { AutoScalingClient } from "../AutoScalingClient";
|
|
2
3
|
import { DescribeAutoScalingGroupsCommand, } from "../commands/DescribeAutoScalingGroupsCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new DescribeAutoScalingGroupsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateDescribeAutoScalingGroups(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxRecords"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof AutoScalingClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected AutoScaling | AutoScalingClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateDescribeAutoScalingGroups = createPaginator(AutoScalingClient, DescribeAutoScalingGroupsCommand, "NextToken", "NextToken", "MaxRecords");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { AutoScalingClient } from "../AutoScalingClient";
|
|
2
3
|
import { DescribeAutoScalingInstancesCommand, } from "../commands/DescribeAutoScalingInstancesCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new DescribeAutoScalingInstancesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateDescribeAutoScalingInstances(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxRecords"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof AutoScalingClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected AutoScaling | AutoScalingClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateDescribeAutoScalingInstances = createPaginator(AutoScalingClient, DescribeAutoScalingInstancesCommand, "NextToken", "NextToken", "MaxRecords");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { AutoScalingClient } from "../AutoScalingClient";
|
|
2
3
|
import { DescribeInstanceRefreshesCommand, } from "../commands/DescribeInstanceRefreshesCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new DescribeInstanceRefreshesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateDescribeInstanceRefreshes(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxRecords"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof AutoScalingClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected AutoScaling | AutoScalingClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateDescribeInstanceRefreshes = createPaginator(AutoScalingClient, DescribeInstanceRefreshesCommand, "NextToken", "NextToken", "MaxRecords");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { AutoScalingClient } from "../AutoScalingClient";
|
|
2
3
|
import { DescribeLaunchConfigurationsCommand, } from "../commands/DescribeLaunchConfigurationsCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new DescribeLaunchConfigurationsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateDescribeLaunchConfigurations(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxRecords"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof AutoScalingClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected AutoScaling | AutoScalingClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateDescribeLaunchConfigurations = createPaginator(AutoScalingClient, DescribeLaunchConfigurationsCommand, "NextToken", "NextToken", "MaxRecords");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { AutoScalingClient } from "../AutoScalingClient";
|
|
2
3
|
import { DescribeLoadBalancerTargetGroupsCommand, } from "../commands/DescribeLoadBalancerTargetGroupsCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new DescribeLoadBalancerTargetGroupsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateDescribeLoadBalancerTargetGroups(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxRecords"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof AutoScalingClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected AutoScaling | AutoScalingClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateDescribeLoadBalancerTargetGroups = createPaginator(AutoScalingClient, DescribeLoadBalancerTargetGroupsCommand, "NextToken", "NextToken", "MaxRecords");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { AutoScalingClient } from "../AutoScalingClient";
|
|
2
3
|
import { DescribeLoadBalancersCommand, } from "../commands/DescribeLoadBalancersCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new DescribeLoadBalancersCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateDescribeLoadBalancers(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxRecords"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof AutoScalingClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected AutoScaling | AutoScalingClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateDescribeLoadBalancers = createPaginator(AutoScalingClient, DescribeLoadBalancersCommand, "NextToken", "NextToken", "MaxRecords");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { AutoScalingClient } from "../AutoScalingClient";
|
|
2
3
|
import { DescribeNotificationConfigurationsCommand, } from "../commands/DescribeNotificationConfigurationsCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new DescribeNotificationConfigurationsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateDescribeNotificationConfigurations(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxRecords"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof AutoScalingClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected AutoScaling | AutoScalingClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateDescribeNotificationConfigurations = createPaginator(AutoScalingClient, DescribeNotificationConfigurationsCommand, "NextToken", "NextToken", "MaxRecords");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { AutoScalingClient } from "../AutoScalingClient";
|
|
2
3
|
import { DescribePoliciesCommand, } from "../commands/DescribePoliciesCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new DescribePoliciesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateDescribePolicies(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxRecords"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof AutoScalingClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected AutoScaling | AutoScalingClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateDescribePolicies = createPaginator(AutoScalingClient, DescribePoliciesCommand, "NextToken", "NextToken", "MaxRecords");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { AutoScalingClient } from "../AutoScalingClient";
|
|
2
3
|
import { DescribeScalingActivitiesCommand, } from "../commands/DescribeScalingActivitiesCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new DescribeScalingActivitiesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateDescribeScalingActivities(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxRecords"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof AutoScalingClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected AutoScaling | AutoScalingClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateDescribeScalingActivities = createPaginator(AutoScalingClient, DescribeScalingActivitiesCommand, "NextToken", "NextToken", "MaxRecords");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { AutoScalingClient } from "../AutoScalingClient";
|
|
2
3
|
import { DescribeScheduledActionsCommand, } from "../commands/DescribeScheduledActionsCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new DescribeScheduledActionsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateDescribeScheduledActions(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxRecords"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof AutoScalingClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected AutoScaling | AutoScalingClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateDescribeScheduledActions = createPaginator(AutoScalingClient, DescribeScheduledActionsCommand, "NextToken", "NextToken", "MaxRecords");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { AutoScalingClient } from "../AutoScalingClient";
|
|
2
3
|
import { DescribeTagsCommand, } from "../commands/DescribeTagsCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new DescribeTagsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateDescribeTags(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxRecords"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof AutoScalingClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected AutoScaling | AutoScalingClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateDescribeTags = createPaginator(AutoScalingClient, DescribeTagsCommand, "NextToken", "NextToken", "MaxRecords");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { AutoScalingClient } from "../AutoScalingClient";
|
|
2
3
|
import { DescribeTrafficSourcesCommand, } from "../commands/DescribeTrafficSourcesCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new DescribeTrafficSourcesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateDescribeTrafficSources(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxRecords"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof AutoScalingClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected AutoScaling | AutoScalingClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateDescribeTrafficSources = createPaginator(AutoScalingClient, DescribeTrafficSourcesCommand, "NextToken", "NextToken", "MaxRecords");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { AutoScalingClient } from "../AutoScalingClient";
|
|
2
3
|
import { DescribeWarmPoolCommand, } from "../commands/DescribeWarmPoolCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new DescribeWarmPoolCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateDescribeWarmPool(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxRecords"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof AutoScalingClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected AutoScaling | AutoScalingClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateDescribeWarmPool = createPaginator(AutoScalingClient, DescribeWarmPoolCommand, "NextToken", "NextToken", "MaxRecords");
|
|
@@ -4,4 +4,4 @@ import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeAutoScalingGroups: (config: AutoScalingPaginationConfiguration, input: DescribeAutoScalingGroupsCommandInput, ...rest: any[]) => Paginator<DescribeAutoScalingGroupsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeAutoScalingInstances: (config: AutoScalingPaginationConfiguration, input: DescribeAutoScalingInstancesCommandInput, ...rest: any[]) => Paginator<DescribeAutoScalingInstancesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeInstanceRefreshes: (config: AutoScalingPaginationConfiguration, input: DescribeInstanceRefreshesCommandInput, ...rest: any[]) => Paginator<DescribeInstanceRefreshesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeLaunchConfigurations: (config: AutoScalingPaginationConfiguration, input: DescribeLaunchConfigurationsCommandInput, ...rest: any[]) => Paginator<DescribeLaunchConfigurationsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeLoadBalancerTargetGroups: (config: AutoScalingPaginationConfiguration, input: DescribeLoadBalancerTargetGroupsCommandInput, ...rest: any[]) => Paginator<DescribeLoadBalancerTargetGroupsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeLoadBalancers: (config: AutoScalingPaginationConfiguration, input: DescribeLoadBalancersCommandInput, ...rest: any[]) => Paginator<DescribeLoadBalancersCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeNotificationConfigurations: (config: AutoScalingPaginationConfiguration, input: DescribeNotificationConfigurationsCommandInput, ...rest: any[]) => Paginator<DescribeNotificationConfigurationsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribePolicies: (config: AutoScalingPaginationConfiguration, input: DescribePoliciesCommandInput, ...rest: any[]) => Paginator<DescribePoliciesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeScalingActivities: (config: AutoScalingPaginationConfiguration, input: DescribeScalingActivitiesCommandInput, ...rest: any[]) => Paginator<DescribeScalingActivitiesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeScheduledActions: (config: AutoScalingPaginationConfiguration, input: DescribeScheduledActionsCommandInput, ...rest: any[]) => Paginator<DescribeScheduledActionsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeTags: (config: AutoScalingPaginationConfiguration, input: DescribeTagsCommandInput, ...rest: any[]) => Paginator<DescribeTagsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeTrafficSources: (config: AutoScalingPaginationConfiguration, input: DescribeTrafficSourcesCommandInput, ...rest: any[]) => Paginator<DescribeTrafficSourcesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeWarmPool: (config: AutoScalingPaginationConfiguration, input: DescribeWarmPoolCommandInput, ...rest: any[]) => Paginator<DescribeWarmPoolCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeAutoScalingGroupsCommandOutput,
|
|
5
5
|
} from "../commands/DescribeAutoScalingGroupsCommand";
|
|
6
6
|
import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeAutoScalingGroups: (
|
|
8
8
|
config: AutoScalingPaginationConfiguration,
|
|
9
9
|
input: DescribeAutoScalingGroupsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeAutoScalingGroupsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeAutoScalingInstancesCommandOutput,
|
|
5
5
|
} from "../commands/DescribeAutoScalingInstancesCommand";
|
|
6
6
|
import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeAutoScalingInstances: (
|
|
8
8
|
config: AutoScalingPaginationConfiguration,
|
|
9
9
|
input: DescribeAutoScalingInstancesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeAutoScalingInstancesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeInstanceRefreshesCommandOutput,
|
|
5
5
|
} from "../commands/DescribeInstanceRefreshesCommand";
|
|
6
6
|
import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeInstanceRefreshes: (
|
|
8
8
|
config: AutoScalingPaginationConfiguration,
|
|
9
9
|
input: DescribeInstanceRefreshesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeInstanceRefreshesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeLaunchConfigurationsCommandOutput,
|
|
5
5
|
} from "../commands/DescribeLaunchConfigurationsCommand";
|
|
6
6
|
import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeLaunchConfigurations: (
|
|
8
8
|
config: AutoScalingPaginationConfiguration,
|
|
9
9
|
input: DescribeLaunchConfigurationsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeLaunchConfigurationsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeLoadBalancerTargetGroupsCommandOutput,
|
|
5
5
|
} from "../commands/DescribeLoadBalancerTargetGroupsCommand";
|
|
6
6
|
import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeLoadBalancerTargetGroups: (
|
|
8
8
|
config: AutoScalingPaginationConfiguration,
|
|
9
9
|
input: DescribeLoadBalancerTargetGroupsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeLoadBalancerTargetGroupsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeLoadBalancersCommandOutput,
|
|
5
5
|
} from "../commands/DescribeLoadBalancersCommand";
|
|
6
6
|
import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeLoadBalancers: (
|
|
8
8
|
config: AutoScalingPaginationConfiguration,
|
|
9
9
|
input: DescribeLoadBalancersCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeLoadBalancersCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeNotificationConfigurationsCommandOutput,
|
|
5
5
|
} from "../commands/DescribeNotificationConfigurationsCommand";
|
|
6
6
|
import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeNotificationConfigurations: (
|
|
8
8
|
config: AutoScalingPaginationConfiguration,
|
|
9
9
|
input: DescribeNotificationConfigurationsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeNotificationConfigurationsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribePoliciesCommandOutput,
|
|
5
5
|
} from "../commands/DescribePoliciesCommand";
|
|
6
6
|
import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribePolicies: (
|
|
8
8
|
config: AutoScalingPaginationConfiguration,
|
|
9
9
|
input: DescribePoliciesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribePoliciesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeScalingActivitiesCommandOutput,
|
|
5
5
|
} from "../commands/DescribeScalingActivitiesCommand";
|
|
6
6
|
import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeScalingActivities: (
|
|
8
8
|
config: AutoScalingPaginationConfiguration,
|
|
9
9
|
input: DescribeScalingActivitiesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeScalingActivitiesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeScheduledActionsCommandOutput,
|
|
5
5
|
} from "../commands/DescribeScheduledActionsCommand";
|
|
6
6
|
import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeScheduledActions: (
|
|
8
8
|
config: AutoScalingPaginationConfiguration,
|
|
9
9
|
input: DescribeScheduledActionsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeScheduledActionsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeTagsCommandOutput,
|
|
5
5
|
} from "../commands/DescribeTagsCommand";
|
|
6
6
|
import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeTags: (
|
|
8
8
|
config: AutoScalingPaginationConfiguration,
|
|
9
9
|
input: DescribeTagsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeTagsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeTrafficSourcesCommandOutput,
|
|
5
5
|
} from "../commands/DescribeTrafficSourcesCommand";
|
|
6
6
|
import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeTrafficSources: (
|
|
8
8
|
config: AutoScalingPaginationConfiguration,
|
|
9
9
|
input: DescribeTrafficSourcesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeTrafficSourcesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeWarmPoolCommandOutput,
|
|
5
5
|
} from "../commands/DescribeWarmPoolCommand";
|
|
6
6
|
import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeWarmPool: (
|
|
8
8
|
config: AutoScalingPaginationConfiguration,
|
|
9
9
|
input: DescribeWarmPoolCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeWarmPoolCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-auto-scaling",
|
|
3
3
|
"description": "AWS SDK for JavaScript Auto Scaling Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.478.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,20 +20,21 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.478.0",
|
|
24
24
|
"@aws-sdk/core": "3.477.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.478.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.468.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.468.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.468.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.468.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.478.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.470.0",
|
|
32
32
|
"@aws-sdk/types": "3.468.0",
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.478.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.468.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.470.0",
|
|
36
36
|
"@smithy/config-resolver": "^2.0.21",
|
|
37
|
+
"@smithy/core": "^1.2.0",
|
|
37
38
|
"@smithy/fetch-http-handler": "^2.3.1",
|
|
38
39
|
"@smithy/hash-node": "^2.0.17",
|
|
39
40
|
"@smithy/invalid-dependency": "^2.0.15",
|