@aws-sdk/client-proton 3.282.0 → 3.287.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/ListComponentOutputsPaginator.js +1 -8
- package/dist-cjs/pagination/ListComponentProvisionedResourcesPaginator.js +1 -8
- package/dist-cjs/pagination/ListComponentsPaginator.js +1 -8
- package/dist-cjs/pagination/ListEnvironmentAccountConnectionsPaginator.js +1 -8
- package/dist-cjs/pagination/ListEnvironmentOutputsPaginator.js +1 -8
- package/dist-cjs/pagination/ListEnvironmentProvisionedResourcesPaginator.js +1 -8
- package/dist-cjs/pagination/ListEnvironmentTemplateVersionsPaginator.js +1 -8
- package/dist-cjs/pagination/ListEnvironmentTemplatesPaginator.js +1 -8
- package/dist-cjs/pagination/ListEnvironmentsPaginator.js +1 -8
- package/dist-cjs/pagination/ListRepositoriesPaginator.js +1 -8
- package/dist-cjs/pagination/ListRepositorySyncDefinitionsPaginator.js +1 -8
- package/dist-cjs/pagination/ListServiceInstanceOutputsPaginator.js +1 -8
- package/dist-cjs/pagination/ListServiceInstanceProvisionedResourcesPaginator.js +1 -8
- package/dist-cjs/pagination/ListServiceInstancesPaginator.js +1 -8
- package/dist-cjs/pagination/ListServicePipelineOutputsPaginator.js +1 -8
- package/dist-cjs/pagination/ListServicePipelineProvisionedResourcesPaginator.js +1 -8
- package/dist-cjs/pagination/ListServiceTemplateVersionsPaginator.js +1 -8
- package/dist-cjs/pagination/ListServiceTemplatesPaginator.js +1 -8
- package/dist-cjs/pagination/ListServicesPaginator.js +1 -8
- package/dist-cjs/pagination/ListTagsForResourcePaginator.js +1 -8
- package/dist-es/pagination/ListComponentOutputsPaginator.js +1 -8
- package/dist-es/pagination/ListComponentProvisionedResourcesPaginator.js +1 -8
- package/dist-es/pagination/ListComponentsPaginator.js +1 -8
- package/dist-es/pagination/ListEnvironmentAccountConnectionsPaginator.js +1 -8
- package/dist-es/pagination/ListEnvironmentOutputsPaginator.js +1 -8
- package/dist-es/pagination/ListEnvironmentProvisionedResourcesPaginator.js +1 -8
- package/dist-es/pagination/ListEnvironmentTemplateVersionsPaginator.js +1 -8
- package/dist-es/pagination/ListEnvironmentTemplatesPaginator.js +1 -8
- package/dist-es/pagination/ListEnvironmentsPaginator.js +1 -8
- package/dist-es/pagination/ListRepositoriesPaginator.js +1 -8
- package/dist-es/pagination/ListRepositorySyncDefinitionsPaginator.js +1 -8
- package/dist-es/pagination/ListServiceInstanceOutputsPaginator.js +1 -8
- package/dist-es/pagination/ListServiceInstanceProvisionedResourcesPaginator.js +1 -8
- package/dist-es/pagination/ListServiceInstancesPaginator.js +1 -8
- package/dist-es/pagination/ListServicePipelineOutputsPaginator.js +1 -8
- package/dist-es/pagination/ListServicePipelineProvisionedResourcesPaginator.js +1 -8
- package/dist-es/pagination/ListServiceTemplateVersionsPaginator.js +1 -8
- package/dist-es/pagination/ListServiceTemplatesPaginator.js +1 -8
- package/dist-es/pagination/ListServicesPaginator.js +1 -8
- package/dist-es/pagination/ListTagsForResourcePaginator.js +1 -8
- package/dist-types/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/package.json +9 -9
|
@@ -2,24 +2,17 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListComponentOutputs = void 0;
|
|
4
4
|
const ListComponentOutputsCommand_1 = require("../commands/ListComponentOutputsCommand");
|
|
5
|
-
const Proton_1 = require("../Proton");
|
|
6
5
|
const ProtonClient_1 = require("../ProtonClient");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListComponentOutputsCommand_1.ListComponentOutputsCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listComponentOutputs(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListComponentOutputs(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
16
12
|
let page;
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.nextToken = token;
|
|
19
|
-
if (config.client instanceof
|
|
20
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
21
|
-
}
|
|
22
|
-
else if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
15
|
+
if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
23
16
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
24
17
|
}
|
|
25
18
|
else {
|
|
@@ -2,24 +2,17 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListComponentProvisionedResources = void 0;
|
|
4
4
|
const ListComponentProvisionedResourcesCommand_1 = require("../commands/ListComponentProvisionedResourcesCommand");
|
|
5
|
-
const Proton_1 = require("../Proton");
|
|
6
5
|
const ProtonClient_1 = require("../ProtonClient");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListComponentProvisionedResourcesCommand_1.ListComponentProvisionedResourcesCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listComponentProvisionedResources(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListComponentProvisionedResources(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
16
12
|
let page;
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.nextToken = token;
|
|
19
|
-
if (config.client instanceof
|
|
20
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
21
|
-
}
|
|
22
|
-
else if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
15
|
+
if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
23
16
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
24
17
|
}
|
|
25
18
|
else {
|
|
@@ -2,14 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListComponents = void 0;
|
|
4
4
|
const ListComponentsCommand_1 = require("../commands/ListComponentsCommand");
|
|
5
|
-
const Proton_1 = require("../Proton");
|
|
6
5
|
const ProtonClient_1 = require("../ProtonClient");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListComponentsCommand_1.ListComponentsCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listComponents(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListComponents(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListComponents(config, input, ...additionalArguments) {
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.nextToken = token;
|
|
19
15
|
input["maxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
16
|
+
if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -2,14 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListEnvironmentAccountConnections = void 0;
|
|
4
4
|
const ListEnvironmentAccountConnectionsCommand_1 = require("../commands/ListEnvironmentAccountConnectionsCommand");
|
|
5
|
-
const Proton_1 = require("../Proton");
|
|
6
5
|
const ProtonClient_1 = require("../ProtonClient");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListEnvironmentAccountConnectionsCommand_1.ListEnvironmentAccountConnectionsCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listEnvironmentAccountConnections(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListEnvironmentAccountConnections(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListEnvironmentAccountConnections(config, input, ...addi
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.nextToken = token;
|
|
19
15
|
input["maxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
16
|
+
if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -2,24 +2,17 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListEnvironmentOutputs = void 0;
|
|
4
4
|
const ListEnvironmentOutputsCommand_1 = require("../commands/ListEnvironmentOutputsCommand");
|
|
5
|
-
const Proton_1 = require("../Proton");
|
|
6
5
|
const ProtonClient_1 = require("../ProtonClient");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListEnvironmentOutputsCommand_1.ListEnvironmentOutputsCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listEnvironmentOutputs(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListEnvironmentOutputs(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
16
12
|
let page;
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.nextToken = token;
|
|
19
|
-
if (config.client instanceof
|
|
20
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
21
|
-
}
|
|
22
|
-
else if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
15
|
+
if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
23
16
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
24
17
|
}
|
|
25
18
|
else {
|
|
@@ -2,24 +2,17 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListEnvironmentProvisionedResources = void 0;
|
|
4
4
|
const ListEnvironmentProvisionedResourcesCommand_1 = require("../commands/ListEnvironmentProvisionedResourcesCommand");
|
|
5
|
-
const Proton_1 = require("../Proton");
|
|
6
5
|
const ProtonClient_1 = require("../ProtonClient");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListEnvironmentProvisionedResourcesCommand_1.ListEnvironmentProvisionedResourcesCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listEnvironmentProvisionedResources(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListEnvironmentProvisionedResources(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
16
12
|
let page;
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.nextToken = token;
|
|
19
|
-
if (config.client instanceof
|
|
20
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
21
|
-
}
|
|
22
|
-
else if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
15
|
+
if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
23
16
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
24
17
|
}
|
|
25
18
|
else {
|
|
@@ -2,14 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListEnvironmentTemplateVersions = void 0;
|
|
4
4
|
const ListEnvironmentTemplateVersionsCommand_1 = require("../commands/ListEnvironmentTemplateVersionsCommand");
|
|
5
|
-
const Proton_1 = require("../Proton");
|
|
6
5
|
const ProtonClient_1 = require("../ProtonClient");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListEnvironmentTemplateVersionsCommand_1.ListEnvironmentTemplateVersionsCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listEnvironmentTemplateVersions(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListEnvironmentTemplateVersions(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListEnvironmentTemplateVersions(config, input, ...additi
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.nextToken = token;
|
|
19
15
|
input["maxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
16
|
+
if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -2,14 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListEnvironmentTemplates = void 0;
|
|
4
4
|
const ListEnvironmentTemplatesCommand_1 = require("../commands/ListEnvironmentTemplatesCommand");
|
|
5
|
-
const Proton_1 = require("../Proton");
|
|
6
5
|
const ProtonClient_1 = require("../ProtonClient");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListEnvironmentTemplatesCommand_1.ListEnvironmentTemplatesCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listEnvironmentTemplates(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListEnvironmentTemplates(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListEnvironmentTemplates(config, input, ...additionalArg
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.nextToken = token;
|
|
19
15
|
input["maxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
16
|
+
if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -2,14 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListEnvironments = void 0;
|
|
4
4
|
const ListEnvironmentsCommand_1 = require("../commands/ListEnvironmentsCommand");
|
|
5
|
-
const Proton_1 = require("../Proton");
|
|
6
5
|
const ProtonClient_1 = require("../ProtonClient");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListEnvironmentsCommand_1.ListEnvironmentsCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listEnvironments(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListEnvironments(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListEnvironments(config, input, ...additionalArguments)
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.nextToken = token;
|
|
19
15
|
input["maxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
16
|
+
if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -2,14 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListRepositories = void 0;
|
|
4
4
|
const ListRepositoriesCommand_1 = require("../commands/ListRepositoriesCommand");
|
|
5
|
-
const Proton_1 = require("../Proton");
|
|
6
5
|
const ProtonClient_1 = require("../ProtonClient");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListRepositoriesCommand_1.ListRepositoriesCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listRepositories(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListRepositories(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListRepositories(config, input, ...additionalArguments)
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.nextToken = token;
|
|
19
15
|
input["maxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
16
|
+
if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -2,24 +2,17 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListRepositorySyncDefinitions = void 0;
|
|
4
4
|
const ListRepositorySyncDefinitionsCommand_1 = require("../commands/ListRepositorySyncDefinitionsCommand");
|
|
5
|
-
const Proton_1 = require("../Proton");
|
|
6
5
|
const ProtonClient_1 = require("../ProtonClient");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListRepositorySyncDefinitionsCommand_1.ListRepositorySyncDefinitionsCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listRepositorySyncDefinitions(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListRepositorySyncDefinitions(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
16
12
|
let page;
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.nextToken = token;
|
|
19
|
-
if (config.client instanceof
|
|
20
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
21
|
-
}
|
|
22
|
-
else if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
15
|
+
if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
23
16
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
24
17
|
}
|
|
25
18
|
else {
|
|
@@ -2,24 +2,17 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListServiceInstanceOutputs = void 0;
|
|
4
4
|
const ListServiceInstanceOutputsCommand_1 = require("../commands/ListServiceInstanceOutputsCommand");
|
|
5
|
-
const Proton_1 = require("../Proton");
|
|
6
5
|
const ProtonClient_1 = require("../ProtonClient");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListServiceInstanceOutputsCommand_1.ListServiceInstanceOutputsCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listServiceInstanceOutputs(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListServiceInstanceOutputs(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
16
12
|
let page;
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.nextToken = token;
|
|
19
|
-
if (config.client instanceof
|
|
20
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
21
|
-
}
|
|
22
|
-
else if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
15
|
+
if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
23
16
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
24
17
|
}
|
|
25
18
|
else {
|
|
@@ -2,24 +2,17 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListServiceInstanceProvisionedResources = void 0;
|
|
4
4
|
const ListServiceInstanceProvisionedResourcesCommand_1 = require("../commands/ListServiceInstanceProvisionedResourcesCommand");
|
|
5
|
-
const Proton_1 = require("../Proton");
|
|
6
5
|
const ProtonClient_1 = require("../ProtonClient");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListServiceInstanceProvisionedResourcesCommand_1.ListServiceInstanceProvisionedResourcesCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listServiceInstanceProvisionedResources(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListServiceInstanceProvisionedResources(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
16
12
|
let page;
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.nextToken = token;
|
|
19
|
-
if (config.client instanceof
|
|
20
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
21
|
-
}
|
|
22
|
-
else if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
15
|
+
if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
23
16
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
24
17
|
}
|
|
25
18
|
else {
|
|
@@ -2,14 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListServiceInstances = void 0;
|
|
4
4
|
const ListServiceInstancesCommand_1 = require("../commands/ListServiceInstancesCommand");
|
|
5
|
-
const Proton_1 = require("../Proton");
|
|
6
5
|
const ProtonClient_1 = require("../ProtonClient");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListServiceInstancesCommand_1.ListServiceInstancesCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listServiceInstances(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListServiceInstances(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListServiceInstances(config, input, ...additionalArgumen
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.nextToken = token;
|
|
19
15
|
input["maxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
16
|
+
if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -2,24 +2,17 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListServicePipelineOutputs = void 0;
|
|
4
4
|
const ListServicePipelineOutputsCommand_1 = require("../commands/ListServicePipelineOutputsCommand");
|
|
5
|
-
const Proton_1 = require("../Proton");
|
|
6
5
|
const ProtonClient_1 = require("../ProtonClient");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListServicePipelineOutputsCommand_1.ListServicePipelineOutputsCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listServicePipelineOutputs(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListServicePipelineOutputs(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
16
12
|
let page;
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.nextToken = token;
|
|
19
|
-
if (config.client instanceof
|
|
20
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
21
|
-
}
|
|
22
|
-
else if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
15
|
+
if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
23
16
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
24
17
|
}
|
|
25
18
|
else {
|
|
@@ -2,24 +2,17 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListServicePipelineProvisionedResources = void 0;
|
|
4
4
|
const ListServicePipelineProvisionedResourcesCommand_1 = require("../commands/ListServicePipelineProvisionedResourcesCommand");
|
|
5
|
-
const Proton_1 = require("../Proton");
|
|
6
5
|
const ProtonClient_1 = require("../ProtonClient");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListServicePipelineProvisionedResourcesCommand_1.ListServicePipelineProvisionedResourcesCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listServicePipelineProvisionedResources(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListServicePipelineProvisionedResources(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
16
12
|
let page;
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.nextToken = token;
|
|
19
|
-
if (config.client instanceof
|
|
20
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
21
|
-
}
|
|
22
|
-
else if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
15
|
+
if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
23
16
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
24
17
|
}
|
|
25
18
|
else {
|
|
@@ -2,14 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListServiceTemplateVersions = void 0;
|
|
4
4
|
const ListServiceTemplateVersionsCommand_1 = require("../commands/ListServiceTemplateVersionsCommand");
|
|
5
|
-
const Proton_1 = require("../Proton");
|
|
6
5
|
const ProtonClient_1 = require("../ProtonClient");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListServiceTemplateVersionsCommand_1.ListServiceTemplateVersionsCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listServiceTemplateVersions(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListServiceTemplateVersions(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListServiceTemplateVersions(config, input, ...additional
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.nextToken = token;
|
|
19
15
|
input["maxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
16
|
+
if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -2,14 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListServiceTemplates = void 0;
|
|
4
4
|
const ListServiceTemplatesCommand_1 = require("../commands/ListServiceTemplatesCommand");
|
|
5
|
-
const Proton_1 = require("../Proton");
|
|
6
5
|
const ProtonClient_1 = require("../ProtonClient");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListServiceTemplatesCommand_1.ListServiceTemplatesCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listServiceTemplates(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListServiceTemplates(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListServiceTemplates(config, input, ...additionalArgumen
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.nextToken = token;
|
|
19
15
|
input["maxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
16
|
+
if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -2,14 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListServices = void 0;
|
|
4
4
|
const ListServicesCommand_1 = require("../commands/ListServicesCommand");
|
|
5
|
-
const Proton_1 = require("../Proton");
|
|
6
5
|
const ProtonClient_1 = require("../ProtonClient");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListServicesCommand_1.ListServicesCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listServices(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListServices(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListServices(config, input, ...additionalArguments) {
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.nextToken = token;
|
|
19
15
|
input["maxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
16
|
+
if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -2,14 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListTagsForResource = void 0;
|
|
4
4
|
const ListTagsForResourceCommand_1 = require("../commands/ListTagsForResourceCommand");
|
|
5
|
-
const Proton_1 = require("../Proton");
|
|
6
5
|
const ProtonClient_1 = require("../ProtonClient");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListTagsForResourceCommand_1.ListTagsForResourceCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listTagsForResource(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListTagsForResource(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListTagsForResource(config, input, ...additionalArgument
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.nextToken = token;
|
|
19
15
|
input["maxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
16
|
+
if (config.client instanceof ProtonClient_1.ProtonClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -1,22 +1,15 @@
|
|
|
1
1
|
import { ListComponentOutputsCommand, } from "../commands/ListComponentOutputsCommand";
|
|
2
|
-
import { Proton } from "../Proton";
|
|
3
2
|
import { ProtonClient } from "../ProtonClient";
|
|
4
3
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
5
4
|
return await client.send(new ListComponentOutputsCommand(input), ...args);
|
|
6
5
|
};
|
|
7
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
8
|
-
return await client.listComponentOutputs(input, ...args);
|
|
9
|
-
};
|
|
10
6
|
export async function* paginateListComponentOutputs(config, input, ...additionalArguments) {
|
|
11
7
|
let token = config.startingToken || undefined;
|
|
12
8
|
let hasNext = true;
|
|
13
9
|
let page;
|
|
14
10
|
while (hasNext) {
|
|
15
11
|
input.nextToken = token;
|
|
16
|
-
if (config.client instanceof
|
|
17
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else if (config.client instanceof ProtonClient) {
|
|
12
|
+
if (config.client instanceof ProtonClient) {
|
|
20
13
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
21
14
|
}
|
|
22
15
|
else {
|
|
@@ -1,22 +1,15 @@
|
|
|
1
1
|
import { ListComponentProvisionedResourcesCommand, } from "../commands/ListComponentProvisionedResourcesCommand";
|
|
2
|
-
import { Proton } from "../Proton";
|
|
3
2
|
import { ProtonClient } from "../ProtonClient";
|
|
4
3
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
5
4
|
return await client.send(new ListComponentProvisionedResourcesCommand(input), ...args);
|
|
6
5
|
};
|
|
7
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
8
|
-
return await client.listComponentProvisionedResources(input, ...args);
|
|
9
|
-
};
|
|
10
6
|
export async function* paginateListComponentProvisionedResources(config, input, ...additionalArguments) {
|
|
11
7
|
let token = config.startingToken || undefined;
|
|
12
8
|
let hasNext = true;
|
|
13
9
|
let page;
|
|
14
10
|
while (hasNext) {
|
|
15
11
|
input.nextToken = token;
|
|
16
|
-
if (config.client instanceof
|
|
17
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else if (config.client instanceof ProtonClient) {
|
|
12
|
+
if (config.client instanceof ProtonClient) {
|
|
20
13
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
21
14
|
}
|
|
22
15
|
else {
|
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
import { ListComponentsCommand, } from "../commands/ListComponentsCommand";
|
|
2
|
-
import { Proton } from "../Proton";
|
|
3
2
|
import { ProtonClient } from "../ProtonClient";
|
|
4
3
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
5
4
|
return await client.send(new ListComponentsCommand(input), ...args);
|
|
6
5
|
};
|
|
7
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
8
|
-
return await client.listComponents(input, ...args);
|
|
9
|
-
};
|
|
10
6
|
export async function* paginateListComponents(config, input, ...additionalArguments) {
|
|
11
7
|
let token = config.startingToken || undefined;
|
|
12
8
|
let hasNext = true;
|
|
@@ -14,10 +10,7 @@ export async function* paginateListComponents(config, input, ...additionalArgume
|
|
|
14
10
|
while (hasNext) {
|
|
15
11
|
input.nextToken = token;
|
|
16
12
|
input["maxResults"] = config.pageSize;
|
|
17
|
-
if (config.client instanceof
|
|
18
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
19
|
-
}
|
|
20
|
-
else if (config.client instanceof ProtonClient) {
|
|
13
|
+
if (config.client instanceof ProtonClient) {
|
|
21
14
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
22
15
|
}
|
|
23
16
|
else {
|
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
import { ListEnvironmentAccountConnectionsCommand, } from "../commands/ListEnvironmentAccountConnectionsCommand";
|
|
2
|
-
import { Proton } from "../Proton";
|
|
3
2
|
import { ProtonClient } from "../ProtonClient";
|
|
4
3
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
5
4
|
return await client.send(new ListEnvironmentAccountConnectionsCommand(input), ...args);
|
|
6
5
|
};
|
|
7
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
8
|
-
return await client.listEnvironmentAccountConnections(input, ...args);
|
|
9
|
-
};
|
|
10
6
|
export async function* paginateListEnvironmentAccountConnections(config, input, ...additionalArguments) {
|
|
11
7
|
let token = config.startingToken || undefined;
|
|
12
8
|
let hasNext = true;
|
|
@@ -14,10 +10,7 @@ export async function* paginateListEnvironmentAccountConnections(config, input,
|
|
|
14
10
|
while (hasNext) {
|
|
15
11
|
input.nextToken = token;
|
|
16
12
|
input["maxResults"] = config.pageSize;
|
|
17
|
-
if (config.client instanceof
|
|
18
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
19
|
-
}
|
|
20
|
-
else if (config.client instanceof ProtonClient) {
|
|
13
|
+
if (config.client instanceof ProtonClient) {
|
|
21
14
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
22
15
|
}
|
|
23
16
|
else {
|
|
@@ -1,22 +1,15 @@
|
|
|
1
1
|
import { ListEnvironmentOutputsCommand, } from "../commands/ListEnvironmentOutputsCommand";
|
|
2
|
-
import { Proton } from "../Proton";
|
|
3
2
|
import { ProtonClient } from "../ProtonClient";
|
|
4
3
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
5
4
|
return await client.send(new ListEnvironmentOutputsCommand(input), ...args);
|
|
6
5
|
};
|
|
7
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
8
|
-
return await client.listEnvironmentOutputs(input, ...args);
|
|
9
|
-
};
|
|
10
6
|
export async function* paginateListEnvironmentOutputs(config, input, ...additionalArguments) {
|
|
11
7
|
let token = config.startingToken || undefined;
|
|
12
8
|
let hasNext = true;
|
|
13
9
|
let page;
|
|
14
10
|
while (hasNext) {
|
|
15
11
|
input.nextToken = token;
|
|
16
|
-
if (config.client instanceof
|
|
17
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else if (config.client instanceof ProtonClient) {
|
|
12
|
+
if (config.client instanceof ProtonClient) {
|
|
20
13
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
21
14
|
}
|
|
22
15
|
else {
|
|
@@ -1,22 +1,15 @@
|
|
|
1
1
|
import { ListEnvironmentProvisionedResourcesCommand, } from "../commands/ListEnvironmentProvisionedResourcesCommand";
|
|
2
|
-
import { Proton } from "../Proton";
|
|
3
2
|
import { ProtonClient } from "../ProtonClient";
|
|
4
3
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
5
4
|
return await client.send(new ListEnvironmentProvisionedResourcesCommand(input), ...args);
|
|
6
5
|
};
|
|
7
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
8
|
-
return await client.listEnvironmentProvisionedResources(input, ...args);
|
|
9
|
-
};
|
|
10
6
|
export async function* paginateListEnvironmentProvisionedResources(config, input, ...additionalArguments) {
|
|
11
7
|
let token = config.startingToken || undefined;
|
|
12
8
|
let hasNext = true;
|
|
13
9
|
let page;
|
|
14
10
|
while (hasNext) {
|
|
15
11
|
input.nextToken = token;
|
|
16
|
-
if (config.client instanceof
|
|
17
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else if (config.client instanceof ProtonClient) {
|
|
12
|
+
if (config.client instanceof ProtonClient) {
|
|
20
13
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
21
14
|
}
|
|
22
15
|
else {
|
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
import { ListEnvironmentTemplateVersionsCommand, } from "../commands/ListEnvironmentTemplateVersionsCommand";
|
|
2
|
-
import { Proton } from "../Proton";
|
|
3
2
|
import { ProtonClient } from "../ProtonClient";
|
|
4
3
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
5
4
|
return await client.send(new ListEnvironmentTemplateVersionsCommand(input), ...args);
|
|
6
5
|
};
|
|
7
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
8
|
-
return await client.listEnvironmentTemplateVersions(input, ...args);
|
|
9
|
-
};
|
|
10
6
|
export async function* paginateListEnvironmentTemplateVersions(config, input, ...additionalArguments) {
|
|
11
7
|
let token = config.startingToken || undefined;
|
|
12
8
|
let hasNext = true;
|
|
@@ -14,10 +10,7 @@ export async function* paginateListEnvironmentTemplateVersions(config, input, ..
|
|
|
14
10
|
while (hasNext) {
|
|
15
11
|
input.nextToken = token;
|
|
16
12
|
input["maxResults"] = config.pageSize;
|
|
17
|
-
if (config.client instanceof
|
|
18
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
19
|
-
}
|
|
20
|
-
else if (config.client instanceof ProtonClient) {
|
|
13
|
+
if (config.client instanceof ProtonClient) {
|
|
21
14
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
22
15
|
}
|
|
23
16
|
else {
|
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
import { ListEnvironmentTemplatesCommand, } from "../commands/ListEnvironmentTemplatesCommand";
|
|
2
|
-
import { Proton } from "../Proton";
|
|
3
2
|
import { ProtonClient } from "../ProtonClient";
|
|
4
3
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
5
4
|
return await client.send(new ListEnvironmentTemplatesCommand(input), ...args);
|
|
6
5
|
};
|
|
7
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
8
|
-
return await client.listEnvironmentTemplates(input, ...args);
|
|
9
|
-
};
|
|
10
6
|
export async function* paginateListEnvironmentTemplates(config, input, ...additionalArguments) {
|
|
11
7
|
let token = config.startingToken || undefined;
|
|
12
8
|
let hasNext = true;
|
|
@@ -14,10 +10,7 @@ export async function* paginateListEnvironmentTemplates(config, input, ...additi
|
|
|
14
10
|
while (hasNext) {
|
|
15
11
|
input.nextToken = token;
|
|
16
12
|
input["maxResults"] = config.pageSize;
|
|
17
|
-
if (config.client instanceof
|
|
18
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
19
|
-
}
|
|
20
|
-
else if (config.client instanceof ProtonClient) {
|
|
13
|
+
if (config.client instanceof ProtonClient) {
|
|
21
14
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
22
15
|
}
|
|
23
16
|
else {
|
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
import { ListEnvironmentsCommand, } from "../commands/ListEnvironmentsCommand";
|
|
2
|
-
import { Proton } from "../Proton";
|
|
3
2
|
import { ProtonClient } from "../ProtonClient";
|
|
4
3
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
5
4
|
return await client.send(new ListEnvironmentsCommand(input), ...args);
|
|
6
5
|
};
|
|
7
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
8
|
-
return await client.listEnvironments(input, ...args);
|
|
9
|
-
};
|
|
10
6
|
export async function* paginateListEnvironments(config, input, ...additionalArguments) {
|
|
11
7
|
let token = config.startingToken || undefined;
|
|
12
8
|
let hasNext = true;
|
|
@@ -14,10 +10,7 @@ export async function* paginateListEnvironments(config, input, ...additionalArgu
|
|
|
14
10
|
while (hasNext) {
|
|
15
11
|
input.nextToken = token;
|
|
16
12
|
input["maxResults"] = config.pageSize;
|
|
17
|
-
if (config.client instanceof
|
|
18
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
19
|
-
}
|
|
20
|
-
else if (config.client instanceof ProtonClient) {
|
|
13
|
+
if (config.client instanceof ProtonClient) {
|
|
21
14
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
22
15
|
}
|
|
23
16
|
else {
|
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
import { ListRepositoriesCommand, } from "../commands/ListRepositoriesCommand";
|
|
2
|
-
import { Proton } from "../Proton";
|
|
3
2
|
import { ProtonClient } from "../ProtonClient";
|
|
4
3
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
5
4
|
return await client.send(new ListRepositoriesCommand(input), ...args);
|
|
6
5
|
};
|
|
7
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
8
|
-
return await client.listRepositories(input, ...args);
|
|
9
|
-
};
|
|
10
6
|
export async function* paginateListRepositories(config, input, ...additionalArguments) {
|
|
11
7
|
let token = config.startingToken || undefined;
|
|
12
8
|
let hasNext = true;
|
|
@@ -14,10 +10,7 @@ export async function* paginateListRepositories(config, input, ...additionalArgu
|
|
|
14
10
|
while (hasNext) {
|
|
15
11
|
input.nextToken = token;
|
|
16
12
|
input["maxResults"] = config.pageSize;
|
|
17
|
-
if (config.client instanceof
|
|
18
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
19
|
-
}
|
|
20
|
-
else if (config.client instanceof ProtonClient) {
|
|
13
|
+
if (config.client instanceof ProtonClient) {
|
|
21
14
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
22
15
|
}
|
|
23
16
|
else {
|
|
@@ -1,22 +1,15 @@
|
|
|
1
1
|
import { ListRepositorySyncDefinitionsCommand, } from "../commands/ListRepositorySyncDefinitionsCommand";
|
|
2
|
-
import { Proton } from "../Proton";
|
|
3
2
|
import { ProtonClient } from "../ProtonClient";
|
|
4
3
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
5
4
|
return await client.send(new ListRepositorySyncDefinitionsCommand(input), ...args);
|
|
6
5
|
};
|
|
7
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
8
|
-
return await client.listRepositorySyncDefinitions(input, ...args);
|
|
9
|
-
};
|
|
10
6
|
export async function* paginateListRepositorySyncDefinitions(config, input, ...additionalArguments) {
|
|
11
7
|
let token = config.startingToken || undefined;
|
|
12
8
|
let hasNext = true;
|
|
13
9
|
let page;
|
|
14
10
|
while (hasNext) {
|
|
15
11
|
input.nextToken = token;
|
|
16
|
-
if (config.client instanceof
|
|
17
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else if (config.client instanceof ProtonClient) {
|
|
12
|
+
if (config.client instanceof ProtonClient) {
|
|
20
13
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
21
14
|
}
|
|
22
15
|
else {
|
|
@@ -1,22 +1,15 @@
|
|
|
1
1
|
import { ListServiceInstanceOutputsCommand, } from "../commands/ListServiceInstanceOutputsCommand";
|
|
2
|
-
import { Proton } from "../Proton";
|
|
3
2
|
import { ProtonClient } from "../ProtonClient";
|
|
4
3
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
5
4
|
return await client.send(new ListServiceInstanceOutputsCommand(input), ...args);
|
|
6
5
|
};
|
|
7
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
8
|
-
return await client.listServiceInstanceOutputs(input, ...args);
|
|
9
|
-
};
|
|
10
6
|
export async function* paginateListServiceInstanceOutputs(config, input, ...additionalArguments) {
|
|
11
7
|
let token = config.startingToken || undefined;
|
|
12
8
|
let hasNext = true;
|
|
13
9
|
let page;
|
|
14
10
|
while (hasNext) {
|
|
15
11
|
input.nextToken = token;
|
|
16
|
-
if (config.client instanceof
|
|
17
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else if (config.client instanceof ProtonClient) {
|
|
12
|
+
if (config.client instanceof ProtonClient) {
|
|
20
13
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
21
14
|
}
|
|
22
15
|
else {
|
|
@@ -1,22 +1,15 @@
|
|
|
1
1
|
import { ListServiceInstanceProvisionedResourcesCommand, } from "../commands/ListServiceInstanceProvisionedResourcesCommand";
|
|
2
|
-
import { Proton } from "../Proton";
|
|
3
2
|
import { ProtonClient } from "../ProtonClient";
|
|
4
3
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
5
4
|
return await client.send(new ListServiceInstanceProvisionedResourcesCommand(input), ...args);
|
|
6
5
|
};
|
|
7
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
8
|
-
return await client.listServiceInstanceProvisionedResources(input, ...args);
|
|
9
|
-
};
|
|
10
6
|
export async function* paginateListServiceInstanceProvisionedResources(config, input, ...additionalArguments) {
|
|
11
7
|
let token = config.startingToken || undefined;
|
|
12
8
|
let hasNext = true;
|
|
13
9
|
let page;
|
|
14
10
|
while (hasNext) {
|
|
15
11
|
input.nextToken = token;
|
|
16
|
-
if (config.client instanceof
|
|
17
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else if (config.client instanceof ProtonClient) {
|
|
12
|
+
if (config.client instanceof ProtonClient) {
|
|
20
13
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
21
14
|
}
|
|
22
15
|
else {
|
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
import { ListServiceInstancesCommand, } from "../commands/ListServiceInstancesCommand";
|
|
2
|
-
import { Proton } from "../Proton";
|
|
3
2
|
import { ProtonClient } from "../ProtonClient";
|
|
4
3
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
5
4
|
return await client.send(new ListServiceInstancesCommand(input), ...args);
|
|
6
5
|
};
|
|
7
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
8
|
-
return await client.listServiceInstances(input, ...args);
|
|
9
|
-
};
|
|
10
6
|
export async function* paginateListServiceInstances(config, input, ...additionalArguments) {
|
|
11
7
|
let token = config.startingToken || undefined;
|
|
12
8
|
let hasNext = true;
|
|
@@ -14,10 +10,7 @@ export async function* paginateListServiceInstances(config, input, ...additional
|
|
|
14
10
|
while (hasNext) {
|
|
15
11
|
input.nextToken = token;
|
|
16
12
|
input["maxResults"] = config.pageSize;
|
|
17
|
-
if (config.client instanceof
|
|
18
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
19
|
-
}
|
|
20
|
-
else if (config.client instanceof ProtonClient) {
|
|
13
|
+
if (config.client instanceof ProtonClient) {
|
|
21
14
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
22
15
|
}
|
|
23
16
|
else {
|
|
@@ -1,22 +1,15 @@
|
|
|
1
1
|
import { ListServicePipelineOutputsCommand, } from "../commands/ListServicePipelineOutputsCommand";
|
|
2
|
-
import { Proton } from "../Proton";
|
|
3
2
|
import { ProtonClient } from "../ProtonClient";
|
|
4
3
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
5
4
|
return await client.send(new ListServicePipelineOutputsCommand(input), ...args);
|
|
6
5
|
};
|
|
7
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
8
|
-
return await client.listServicePipelineOutputs(input, ...args);
|
|
9
|
-
};
|
|
10
6
|
export async function* paginateListServicePipelineOutputs(config, input, ...additionalArguments) {
|
|
11
7
|
let token = config.startingToken || undefined;
|
|
12
8
|
let hasNext = true;
|
|
13
9
|
let page;
|
|
14
10
|
while (hasNext) {
|
|
15
11
|
input.nextToken = token;
|
|
16
|
-
if (config.client instanceof
|
|
17
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else if (config.client instanceof ProtonClient) {
|
|
12
|
+
if (config.client instanceof ProtonClient) {
|
|
20
13
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
21
14
|
}
|
|
22
15
|
else {
|
|
@@ -1,22 +1,15 @@
|
|
|
1
1
|
import { ListServicePipelineProvisionedResourcesCommand, } from "../commands/ListServicePipelineProvisionedResourcesCommand";
|
|
2
|
-
import { Proton } from "../Proton";
|
|
3
2
|
import { ProtonClient } from "../ProtonClient";
|
|
4
3
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
5
4
|
return await client.send(new ListServicePipelineProvisionedResourcesCommand(input), ...args);
|
|
6
5
|
};
|
|
7
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
8
|
-
return await client.listServicePipelineProvisionedResources(input, ...args);
|
|
9
|
-
};
|
|
10
6
|
export async function* paginateListServicePipelineProvisionedResources(config, input, ...additionalArguments) {
|
|
11
7
|
let token = config.startingToken || undefined;
|
|
12
8
|
let hasNext = true;
|
|
13
9
|
let page;
|
|
14
10
|
while (hasNext) {
|
|
15
11
|
input.nextToken = token;
|
|
16
|
-
if (config.client instanceof
|
|
17
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else if (config.client instanceof ProtonClient) {
|
|
12
|
+
if (config.client instanceof ProtonClient) {
|
|
20
13
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
21
14
|
}
|
|
22
15
|
else {
|
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
import { ListServiceTemplateVersionsCommand, } from "../commands/ListServiceTemplateVersionsCommand";
|
|
2
|
-
import { Proton } from "../Proton";
|
|
3
2
|
import { ProtonClient } from "../ProtonClient";
|
|
4
3
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
5
4
|
return await client.send(new ListServiceTemplateVersionsCommand(input), ...args);
|
|
6
5
|
};
|
|
7
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
8
|
-
return await client.listServiceTemplateVersions(input, ...args);
|
|
9
|
-
};
|
|
10
6
|
export async function* paginateListServiceTemplateVersions(config, input, ...additionalArguments) {
|
|
11
7
|
let token = config.startingToken || undefined;
|
|
12
8
|
let hasNext = true;
|
|
@@ -14,10 +10,7 @@ export async function* paginateListServiceTemplateVersions(config, input, ...add
|
|
|
14
10
|
while (hasNext) {
|
|
15
11
|
input.nextToken = token;
|
|
16
12
|
input["maxResults"] = config.pageSize;
|
|
17
|
-
if (config.client instanceof
|
|
18
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
19
|
-
}
|
|
20
|
-
else if (config.client instanceof ProtonClient) {
|
|
13
|
+
if (config.client instanceof ProtonClient) {
|
|
21
14
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
22
15
|
}
|
|
23
16
|
else {
|
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
import { ListServiceTemplatesCommand, } from "../commands/ListServiceTemplatesCommand";
|
|
2
|
-
import { Proton } from "../Proton";
|
|
3
2
|
import { ProtonClient } from "../ProtonClient";
|
|
4
3
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
5
4
|
return await client.send(new ListServiceTemplatesCommand(input), ...args);
|
|
6
5
|
};
|
|
7
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
8
|
-
return await client.listServiceTemplates(input, ...args);
|
|
9
|
-
};
|
|
10
6
|
export async function* paginateListServiceTemplates(config, input, ...additionalArguments) {
|
|
11
7
|
let token = config.startingToken || undefined;
|
|
12
8
|
let hasNext = true;
|
|
@@ -14,10 +10,7 @@ export async function* paginateListServiceTemplates(config, input, ...additional
|
|
|
14
10
|
while (hasNext) {
|
|
15
11
|
input.nextToken = token;
|
|
16
12
|
input["maxResults"] = config.pageSize;
|
|
17
|
-
if (config.client instanceof
|
|
18
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
19
|
-
}
|
|
20
|
-
else if (config.client instanceof ProtonClient) {
|
|
13
|
+
if (config.client instanceof ProtonClient) {
|
|
21
14
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
22
15
|
}
|
|
23
16
|
else {
|
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
import { ListServicesCommand, } from "../commands/ListServicesCommand";
|
|
2
|
-
import { Proton } from "../Proton";
|
|
3
2
|
import { ProtonClient } from "../ProtonClient";
|
|
4
3
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
5
4
|
return await client.send(new ListServicesCommand(input), ...args);
|
|
6
5
|
};
|
|
7
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
8
|
-
return await client.listServices(input, ...args);
|
|
9
|
-
};
|
|
10
6
|
export async function* paginateListServices(config, input, ...additionalArguments) {
|
|
11
7
|
let token = config.startingToken || undefined;
|
|
12
8
|
let hasNext = true;
|
|
@@ -14,10 +10,7 @@ export async function* paginateListServices(config, input, ...additionalArgument
|
|
|
14
10
|
while (hasNext) {
|
|
15
11
|
input.nextToken = token;
|
|
16
12
|
input["maxResults"] = config.pageSize;
|
|
17
|
-
if (config.client instanceof
|
|
18
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
19
|
-
}
|
|
20
|
-
else if (config.client instanceof ProtonClient) {
|
|
13
|
+
if (config.client instanceof ProtonClient) {
|
|
21
14
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
22
15
|
}
|
|
23
16
|
else {
|
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
import { ListTagsForResourceCommand, } from "../commands/ListTagsForResourceCommand";
|
|
2
|
-
import { Proton } from "../Proton";
|
|
3
2
|
import { ProtonClient } from "../ProtonClient";
|
|
4
3
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
5
4
|
return await client.send(new ListTagsForResourceCommand(input), ...args);
|
|
6
5
|
};
|
|
7
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
8
|
-
return await client.listTagsForResource(input, ...args);
|
|
9
|
-
};
|
|
10
6
|
export async function* paginateListTagsForResource(config, input, ...additionalArguments) {
|
|
11
7
|
let token = config.startingToken || undefined;
|
|
12
8
|
let hasNext = true;
|
|
@@ -14,10 +10,7 @@ export async function* paginateListTagsForResource(config, input, ...additionalA
|
|
|
14
10
|
while (hasNext) {
|
|
15
11
|
input.nextToken = token;
|
|
16
12
|
input["maxResults"] = config.pageSize;
|
|
17
|
-
if (config.client instanceof
|
|
18
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
19
|
-
}
|
|
20
|
-
else if (config.client instanceof ProtonClient) {
|
|
13
|
+
if (config.client instanceof ProtonClient) {
|
|
21
14
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
22
15
|
}
|
|
23
16
|
else {
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { Proton } from "../Proton";
|
|
3
2
|
import { ProtonClient } from "../ProtonClient";
|
|
4
3
|
export interface ProtonPaginationConfiguration extends PaginationConfiguration {
|
|
5
|
-
client:
|
|
4
|
+
client: ProtonClient;
|
|
6
5
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { Proton } from "../Proton";
|
|
3
2
|
import { ProtonClient } from "../ProtonClient";
|
|
4
3
|
export interface ProtonPaginationConfiguration extends PaginationConfiguration {
|
|
5
|
-
client:
|
|
4
|
+
client: ProtonClient;
|
|
6
5
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-proton",
|
|
3
3
|
"description": "AWS SDK for JavaScript Proton Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.287.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,23 +20,23 @@
|
|
|
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.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.287.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.287.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.287.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.282.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.272.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.272.0",
|
|
29
29
|
"@aws-sdk/middleware-content-length": "3.282.0",
|
|
30
30
|
"@aws-sdk/middleware-endpoint": "3.282.0",
|
|
31
31
|
"@aws-sdk/middleware-host-header": "3.282.0",
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.287.0",
|
|
33
33
|
"@aws-sdk/middleware-recursion-detection": "3.282.0",
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.287.0",
|
|
35
35
|
"@aws-sdk/middleware-serde": "3.272.0",
|
|
36
36
|
"@aws-sdk/middleware-signing": "3.282.0",
|
|
37
37
|
"@aws-sdk/middleware-stack": "3.272.0",
|
|
38
38
|
"@aws-sdk/middleware-user-agent": "3.282.0",
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.287.0",
|
|
40
40
|
"@aws-sdk/node-http-handler": "3.282.0",
|
|
41
41
|
"@aws-sdk/protocol-http": "3.282.0",
|
|
42
42
|
"@aws-sdk/smithy-client": "3.279.0",
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
48
|
"@aws-sdk/util-defaults-mode-browser": "3.279.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.287.0",
|
|
50
50
|
"@aws-sdk/util-endpoints": "3.272.0",
|
|
51
51
|
"@aws-sdk/util-retry": "3.272.0",
|
|
52
52
|
"@aws-sdk/util-user-agent-browser": "3.282.0",
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.287.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
55
|
"@aws-sdk/util-waiter": "3.272.0",
|
|
56
56
|
"tslib": "^2.3.1",
|