@aws-sdk/client-service-catalog-appregistry 3.975.0 → 3.978.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js
CHANGED
|
@@ -1061,6 +1061,16 @@ class UpdateAttributeGroupCommand extends smithyClient.Command
|
|
|
1061
1061
|
.build() {
|
|
1062
1062
|
}
|
|
1063
1063
|
|
|
1064
|
+
const paginateListApplications = core.createPaginator(ServiceCatalogAppRegistryClient, ListApplicationsCommand, "nextToken", "nextToken", "maxResults");
|
|
1065
|
+
|
|
1066
|
+
const paginateListAssociatedAttributeGroups = core.createPaginator(ServiceCatalogAppRegistryClient, ListAssociatedAttributeGroupsCommand, "nextToken", "nextToken", "maxResults");
|
|
1067
|
+
|
|
1068
|
+
const paginateListAssociatedResources = core.createPaginator(ServiceCatalogAppRegistryClient, ListAssociatedResourcesCommand, "nextToken", "nextToken", "maxResults");
|
|
1069
|
+
|
|
1070
|
+
const paginateListAttributeGroupsForApplication = core.createPaginator(ServiceCatalogAppRegistryClient, ListAttributeGroupsForApplicationCommand, "nextToken", "nextToken", "maxResults");
|
|
1071
|
+
|
|
1072
|
+
const paginateListAttributeGroups = core.createPaginator(ServiceCatalogAppRegistryClient, ListAttributeGroupsCommand, "nextToken", "nextToken", "maxResults");
|
|
1073
|
+
|
|
1064
1074
|
const commands = {
|
|
1065
1075
|
AssociateAttributeGroupCommand,
|
|
1066
1076
|
AssociateResourceCommand,
|
|
@@ -1087,19 +1097,16 @@ const commands = {
|
|
|
1087
1097
|
UpdateApplicationCommand,
|
|
1088
1098
|
UpdateAttributeGroupCommand,
|
|
1089
1099
|
};
|
|
1100
|
+
const paginators = {
|
|
1101
|
+
paginateListApplications,
|
|
1102
|
+
paginateListAssociatedAttributeGroups,
|
|
1103
|
+
paginateListAssociatedResources,
|
|
1104
|
+
paginateListAttributeGroups,
|
|
1105
|
+
paginateListAttributeGroupsForApplication,
|
|
1106
|
+
};
|
|
1090
1107
|
class ServiceCatalogAppRegistry extends ServiceCatalogAppRegistryClient {
|
|
1091
1108
|
}
|
|
1092
|
-
smithyClient.createAggregatedClient(commands, ServiceCatalogAppRegistry);
|
|
1093
|
-
|
|
1094
|
-
const paginateListApplications = core.createPaginator(ServiceCatalogAppRegistryClient, ListApplicationsCommand, "nextToken", "nextToken", "maxResults");
|
|
1095
|
-
|
|
1096
|
-
const paginateListAssociatedAttributeGroups = core.createPaginator(ServiceCatalogAppRegistryClient, ListAssociatedAttributeGroupsCommand, "nextToken", "nextToken", "maxResults");
|
|
1097
|
-
|
|
1098
|
-
const paginateListAssociatedResources = core.createPaginator(ServiceCatalogAppRegistryClient, ListAssociatedResourcesCommand, "nextToken", "nextToken", "maxResults");
|
|
1099
|
-
|
|
1100
|
-
const paginateListAttributeGroups = core.createPaginator(ServiceCatalogAppRegistryClient, ListAttributeGroupsCommand, "nextToken", "nextToken", "maxResults");
|
|
1101
|
-
|
|
1102
|
-
const paginateListAttributeGroupsForApplication = core.createPaginator(ServiceCatalogAppRegistryClient, ListAttributeGroupsForApplicationCommand, "nextToken", "nextToken", "maxResults");
|
|
1109
|
+
smithyClient.createAggregatedClient(commands, ServiceCatalogAppRegistry, { paginators });
|
|
1103
1110
|
|
|
1104
1111
|
const ApplicationTagStatus = {
|
|
1105
1112
|
FAILURE: "FAILURE",
|
|
@@ -23,6 +23,11 @@ import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
|
23
23
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
24
24
|
import { UpdateApplicationCommand, } from "./commands/UpdateApplicationCommand";
|
|
25
25
|
import { UpdateAttributeGroupCommand, } from "./commands/UpdateAttributeGroupCommand";
|
|
26
|
+
import { paginateListApplications } from "./pagination/ListApplicationsPaginator";
|
|
27
|
+
import { paginateListAssociatedAttributeGroups } from "./pagination/ListAssociatedAttributeGroupsPaginator";
|
|
28
|
+
import { paginateListAssociatedResources } from "./pagination/ListAssociatedResourcesPaginator";
|
|
29
|
+
import { paginateListAttributeGroupsForApplication } from "./pagination/ListAttributeGroupsForApplicationPaginator";
|
|
30
|
+
import { paginateListAttributeGroups } from "./pagination/ListAttributeGroupsPaginator";
|
|
26
31
|
import { ServiceCatalogAppRegistryClient } from "./ServiceCatalogAppRegistryClient";
|
|
27
32
|
const commands = {
|
|
28
33
|
AssociateAttributeGroupCommand,
|
|
@@ -50,6 +55,13 @@ const commands = {
|
|
|
50
55
|
UpdateApplicationCommand,
|
|
51
56
|
UpdateAttributeGroupCommand,
|
|
52
57
|
};
|
|
58
|
+
const paginators = {
|
|
59
|
+
paginateListApplications,
|
|
60
|
+
paginateListAssociatedAttributeGroups,
|
|
61
|
+
paginateListAssociatedResources,
|
|
62
|
+
paginateListAttributeGroups,
|
|
63
|
+
paginateListAttributeGroupsForApplication,
|
|
64
|
+
};
|
|
53
65
|
export class ServiceCatalogAppRegistry extends ServiceCatalogAppRegistryClient {
|
|
54
66
|
}
|
|
55
|
-
createAggregatedClient(commands, ServiceCatalogAppRegistry);
|
|
67
|
+
createAggregatedClient(commands, ServiceCatalogAppRegistry, { paginators });
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { AssociateAttributeGroupCommandInput, AssociateAttributeGroupCommandOutput } from "./commands/AssociateAttributeGroupCommand";
|
|
3
3
|
import { AssociateResourceCommandInput, AssociateResourceCommandOutput } from "./commands/AssociateResourceCommand";
|
|
4
4
|
import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
|
|
@@ -172,6 +172,41 @@ export interface ServiceCatalogAppRegistry {
|
|
|
172
172
|
updateAttributeGroup(args: UpdateAttributeGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAttributeGroupCommandOutput>;
|
|
173
173
|
updateAttributeGroup(args: UpdateAttributeGroupCommandInput, cb: (err: any, data?: UpdateAttributeGroupCommandOutput) => void): void;
|
|
174
174
|
updateAttributeGroup(args: UpdateAttributeGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAttributeGroupCommandOutput) => void): void;
|
|
175
|
+
/**
|
|
176
|
+
* @see {@link ListApplicationsCommand}
|
|
177
|
+
* @param args - command input.
|
|
178
|
+
* @param paginationConfig - optional pagination config.
|
|
179
|
+
* @returns AsyncIterable of {@link ListApplicationsCommandOutput}.
|
|
180
|
+
*/
|
|
181
|
+
paginateListApplications(args?: ListApplicationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListApplicationsCommandOutput>;
|
|
182
|
+
/**
|
|
183
|
+
* @see {@link ListAssociatedAttributeGroupsCommand}
|
|
184
|
+
* @param args - command input.
|
|
185
|
+
* @param paginationConfig - optional pagination config.
|
|
186
|
+
* @returns AsyncIterable of {@link ListAssociatedAttributeGroupsCommandOutput}.
|
|
187
|
+
*/
|
|
188
|
+
paginateListAssociatedAttributeGroups(args: ListAssociatedAttributeGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAssociatedAttributeGroupsCommandOutput>;
|
|
189
|
+
/**
|
|
190
|
+
* @see {@link ListAssociatedResourcesCommand}
|
|
191
|
+
* @param args - command input.
|
|
192
|
+
* @param paginationConfig - optional pagination config.
|
|
193
|
+
* @returns AsyncIterable of {@link ListAssociatedResourcesCommandOutput}.
|
|
194
|
+
*/
|
|
195
|
+
paginateListAssociatedResources(args: ListAssociatedResourcesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAssociatedResourcesCommandOutput>;
|
|
196
|
+
/**
|
|
197
|
+
* @see {@link ListAttributeGroupsCommand}
|
|
198
|
+
* @param args - command input.
|
|
199
|
+
* @param paginationConfig - optional pagination config.
|
|
200
|
+
* @returns AsyncIterable of {@link ListAttributeGroupsCommandOutput}.
|
|
201
|
+
*/
|
|
202
|
+
paginateListAttributeGroups(args?: ListAttributeGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAttributeGroupsCommandOutput>;
|
|
203
|
+
/**
|
|
204
|
+
* @see {@link ListAttributeGroupsForApplicationCommand}
|
|
205
|
+
* @param args - command input.
|
|
206
|
+
* @param paginationConfig - optional pagination config.
|
|
207
|
+
* @returns AsyncIterable of {@link ListAttributeGroupsForApplicationCommandOutput}.
|
|
208
|
+
*/
|
|
209
|
+
paginateListAttributeGroupsForApplication(args: ListAttributeGroupsForApplicationCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAttributeGroupsForApplicationCommandOutput>;
|
|
175
210
|
}
|
|
176
211
|
/**
|
|
177
212
|
* <p> Amazon Web Services Service Catalog AppRegistry enables organizations to understand the application context of their Amazon Web Services resources. AppRegistry provides a repository of your applications, their resources, and the application metadata that you use within your enterprise.</p>
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import {
|
|
3
7
|
AssociateAttributeGroupCommandInput,
|
|
4
8
|
AssociateAttributeGroupCommandOutput,
|
|
@@ -418,6 +422,41 @@ export interface ServiceCatalogAppRegistry {
|
|
|
418
422
|
options: __HttpHandlerOptions,
|
|
419
423
|
cb: (err: any, data?: UpdateAttributeGroupCommandOutput) => void
|
|
420
424
|
): void;
|
|
425
|
+
paginateListApplications(
|
|
426
|
+
args?: ListApplicationsCommandInput,
|
|
427
|
+
paginationConfig?: Pick<
|
|
428
|
+
PaginationConfiguration,
|
|
429
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
430
|
+
>
|
|
431
|
+
): Paginator<ListApplicationsCommandOutput>;
|
|
432
|
+
paginateListAssociatedAttributeGroups(
|
|
433
|
+
args: ListAssociatedAttributeGroupsCommandInput,
|
|
434
|
+
paginationConfig?: Pick<
|
|
435
|
+
PaginationConfiguration,
|
|
436
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
437
|
+
>
|
|
438
|
+
): Paginator<ListAssociatedAttributeGroupsCommandOutput>;
|
|
439
|
+
paginateListAssociatedResources(
|
|
440
|
+
args: ListAssociatedResourcesCommandInput,
|
|
441
|
+
paginationConfig?: Pick<
|
|
442
|
+
PaginationConfiguration,
|
|
443
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
444
|
+
>
|
|
445
|
+
): Paginator<ListAssociatedResourcesCommandOutput>;
|
|
446
|
+
paginateListAttributeGroups(
|
|
447
|
+
args?: ListAttributeGroupsCommandInput,
|
|
448
|
+
paginationConfig?: Pick<
|
|
449
|
+
PaginationConfiguration,
|
|
450
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
451
|
+
>
|
|
452
|
+
): Paginator<ListAttributeGroupsCommandOutput>;
|
|
453
|
+
paginateListAttributeGroupsForApplication(
|
|
454
|
+
args: ListAttributeGroupsForApplicationCommandInput,
|
|
455
|
+
paginationConfig?: Pick<
|
|
456
|
+
PaginationConfiguration,
|
|
457
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
458
|
+
>
|
|
459
|
+
): Paginator<ListAttributeGroupsForApplicationCommandOutput>;
|
|
421
460
|
}
|
|
422
461
|
export declare class ServiceCatalogAppRegistry
|
|
423
462
|
extends ServiceCatalogAppRegistryClient
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-service-catalog-appregistry",
|
|
3
3
|
"description": "AWS SDK for JavaScript Service Catalog Appregistry Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.978.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-service-catalog-appregistry",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.973.4",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|