@aws-sdk/client-service-catalog-appregistry 3.110.0 → 3.111.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/CHANGELOG.md +11 -0
- package/dist-cjs/ServiceCatalogAppRegistry.js +15 -0
- package/dist-cjs/commands/ListAttributeGroupsForApplicationCommand.js +36 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/models/models_0.js +33 -15
- package/dist-cjs/pagination/ListAttributeGroupsForApplicationPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +119 -1
- package/dist-es/ServiceCatalogAppRegistry.js +15 -0
- package/dist-es/commands/ListAttributeGroupsForApplicationCommand.js +39 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +24 -12
- package/dist-es/pagination/ListAttributeGroupsForApplicationPaginator.js +75 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +192 -44
- package/dist-types/ServiceCatalogAppRegistry.d.ts +7 -0
- package/dist-types/ServiceCatalogAppRegistryClient.d.ts +3 -2
- package/dist-types/commands/ListAttributeGroupsForApplicationCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +75 -15
- package/dist-types/pagination/ListAttributeGroupsForApplicationPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +3 -0
- package/dist-types/ts3.4/ServiceCatalogAppRegistry.d.ts +5 -0
- package/dist-types/ts3.4/ServiceCatalogAppRegistryClient.d.ts +3 -2
- package/dist-types/ts3.4/commands/ListAttributeGroupsForApplicationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +42 -7
- package/dist-types/ts3.4/pagination/ListAttributeGroupsForApplicationPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +3 -0
- package/package.json +1 -1
|
@@ -21,14 +21,15 @@ import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "./c
|
|
|
21
21
|
import { ListAssociatedAttributeGroupsCommandInput, ListAssociatedAttributeGroupsCommandOutput } from "./commands/ListAssociatedAttributeGroupsCommand";
|
|
22
22
|
import { ListAssociatedResourcesCommandInput, ListAssociatedResourcesCommandOutput } from "./commands/ListAssociatedResourcesCommand";
|
|
23
23
|
import { ListAttributeGroupsCommandInput, ListAttributeGroupsCommandOutput } from "./commands/ListAttributeGroupsCommand";
|
|
24
|
+
import { ListAttributeGroupsForApplicationCommandInput, ListAttributeGroupsForApplicationCommandOutput } from "./commands/ListAttributeGroupsForApplicationCommand";
|
|
24
25
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
25
26
|
import { SyncResourceCommandInput, SyncResourceCommandOutput } from "./commands/SyncResourceCommand";
|
|
26
27
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
27
28
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
28
29
|
import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
|
|
29
30
|
import { UpdateAttributeGroupCommandInput, UpdateAttributeGroupCommandOutput } from "./commands/UpdateAttributeGroupCommand";
|
|
30
|
-
export declare type ServiceInputTypes = AssociateAttributeGroupCommandInput | AssociateResourceCommandInput | CreateApplicationCommandInput | CreateAttributeGroupCommandInput | DeleteApplicationCommandInput | DeleteAttributeGroupCommandInput | DisassociateAttributeGroupCommandInput | DisassociateResourceCommandInput | GetApplicationCommandInput | GetAssociatedResourceCommandInput | GetAttributeGroupCommandInput | ListApplicationsCommandInput | ListAssociatedAttributeGroupsCommandInput | ListAssociatedResourcesCommandInput | ListAttributeGroupsCommandInput | ListTagsForResourceCommandInput | SyncResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateApplicationCommandInput | UpdateAttributeGroupCommandInput;
|
|
31
|
-
export declare type ServiceOutputTypes = AssociateAttributeGroupCommandOutput | AssociateResourceCommandOutput | CreateApplicationCommandOutput | CreateAttributeGroupCommandOutput | DeleteApplicationCommandOutput | DeleteAttributeGroupCommandOutput | DisassociateAttributeGroupCommandOutput | DisassociateResourceCommandOutput | GetApplicationCommandOutput | GetAssociatedResourceCommandOutput | GetAttributeGroupCommandOutput | ListApplicationsCommandOutput | ListAssociatedAttributeGroupsCommandOutput | ListAssociatedResourcesCommandOutput | ListAttributeGroupsCommandOutput | ListTagsForResourceCommandOutput | SyncResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateApplicationCommandOutput | UpdateAttributeGroupCommandOutput;
|
|
31
|
+
export declare type ServiceInputTypes = AssociateAttributeGroupCommandInput | AssociateResourceCommandInput | CreateApplicationCommandInput | CreateAttributeGroupCommandInput | DeleteApplicationCommandInput | DeleteAttributeGroupCommandInput | DisassociateAttributeGroupCommandInput | DisassociateResourceCommandInput | GetApplicationCommandInput | GetAssociatedResourceCommandInput | GetAttributeGroupCommandInput | ListApplicationsCommandInput | ListAssociatedAttributeGroupsCommandInput | ListAssociatedResourcesCommandInput | ListAttributeGroupsCommandInput | ListAttributeGroupsForApplicationCommandInput | ListTagsForResourceCommandInput | SyncResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateApplicationCommandInput | UpdateAttributeGroupCommandInput;
|
|
32
|
+
export declare type ServiceOutputTypes = AssociateAttributeGroupCommandOutput | AssociateResourceCommandOutput | CreateApplicationCommandOutput | CreateAttributeGroupCommandOutput | DeleteApplicationCommandOutput | DeleteAttributeGroupCommandOutput | DisassociateAttributeGroupCommandOutput | DisassociateResourceCommandOutput | GetApplicationCommandOutput | GetAssociatedResourceCommandOutput | GetAttributeGroupCommandOutput | ListApplicationsCommandOutput | ListAssociatedAttributeGroupsCommandOutput | ListAssociatedResourcesCommandOutput | ListAttributeGroupsCommandOutput | ListAttributeGroupsForApplicationCommandOutput | ListTagsForResourceCommandOutput | SyncResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateApplicationCommandOutput | UpdateAttributeGroupCommandOutput;
|
|
32
33
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
33
34
|
|
|
34
35
|
requestHandler?: __HttpHandler;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ListAttributeGroupsForApplicationRequest, ListAttributeGroupsForApplicationResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
|
|
5
|
+
export interface ListAttributeGroupsForApplicationCommandInput extends ListAttributeGroupsForApplicationRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListAttributeGroupsForApplicationCommandOutput extends ListAttributeGroupsForApplicationResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListAttributeGroupsForApplicationCommand extends $Command<ListAttributeGroupsForApplicationCommandInput, ListAttributeGroupsForApplicationCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
11
|
+
readonly input: ListAttributeGroupsForApplicationCommandInput;
|
|
12
|
+
constructor(input: ListAttributeGroupsForApplicationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAttributeGroupsForApplicationCommandInput, ListAttributeGroupsForApplicationCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -13,6 +13,7 @@ export * from "./ListApplicationsCommand";
|
|
|
13
13
|
export * from "./ListAssociatedAttributeGroupsCommand";
|
|
14
14
|
export * from "./ListAssociatedResourcesCommand";
|
|
15
15
|
export * from "./ListAttributeGroupsCommand";
|
|
16
|
+
export * from "./ListAttributeGroupsForApplicationCommand";
|
|
16
17
|
export * from "./ListTagsForResourceCommand";
|
|
17
18
|
export * from "./SyncResourceCommand";
|
|
18
19
|
export * from "./TagResourceCommand";
|
|
@@ -61,6 +61,13 @@ export declare namespace AssociateAttributeGroupResponse {
|
|
|
61
61
|
const filterSensitiveLog: (obj: AssociateAttributeGroupResponse) => any;
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
+
export declare class ConflictException extends __BaseException {
|
|
65
|
+
readonly name: "ConflictException";
|
|
66
|
+
readonly $fault: "client";
|
|
67
|
+
|
|
68
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
69
|
+
}
|
|
70
|
+
|
|
64
71
|
export declare class InternalServerException extends __BaseException {
|
|
65
72
|
readonly name: "InternalServerException";
|
|
66
73
|
readonly $fault: "server";
|
|
@@ -114,13 +121,6 @@ export declare namespace AssociateResourceResponse {
|
|
|
114
121
|
const filterSensitiveLog: (obj: AssociateResourceResponse) => any;
|
|
115
122
|
}
|
|
116
123
|
|
|
117
|
-
export declare class ConflictException extends __BaseException {
|
|
118
|
-
readonly name: "ConflictException";
|
|
119
|
-
readonly $fault: "client";
|
|
120
|
-
|
|
121
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
122
|
-
}
|
|
123
|
-
|
|
124
124
|
export interface AttributeGroup {
|
|
125
125
|
|
|
126
126
|
id?: string;
|
|
@@ -142,6 +142,19 @@ export declare namespace AttributeGroup {
|
|
|
142
142
|
const filterSensitiveLog: (obj: AttributeGroup) => any;
|
|
143
143
|
}
|
|
144
144
|
|
|
145
|
+
export interface AttributeGroupDetails {
|
|
146
|
+
|
|
147
|
+
id?: string;
|
|
148
|
+
|
|
149
|
+
arn?: string;
|
|
150
|
+
|
|
151
|
+
name?: string;
|
|
152
|
+
}
|
|
153
|
+
export declare namespace AttributeGroupDetails {
|
|
154
|
+
|
|
155
|
+
const filterSensitiveLog: (obj: AttributeGroupDetails) => any;
|
|
156
|
+
}
|
|
157
|
+
|
|
145
158
|
export interface AttributeGroupSummary {
|
|
146
159
|
|
|
147
160
|
id?: string;
|
|
@@ -511,6 +524,28 @@ export declare namespace ListAttributeGroupsResponse {
|
|
|
511
524
|
|
|
512
525
|
const filterSensitiveLog: (obj: ListAttributeGroupsResponse) => any;
|
|
513
526
|
}
|
|
527
|
+
export interface ListAttributeGroupsForApplicationRequest {
|
|
528
|
+
|
|
529
|
+
application: string | undefined;
|
|
530
|
+
|
|
531
|
+
nextToken?: string;
|
|
532
|
+
|
|
533
|
+
maxResults?: number;
|
|
534
|
+
}
|
|
535
|
+
export declare namespace ListAttributeGroupsForApplicationRequest {
|
|
536
|
+
|
|
537
|
+
const filterSensitiveLog: (obj: ListAttributeGroupsForApplicationRequest) => any;
|
|
538
|
+
}
|
|
539
|
+
export interface ListAttributeGroupsForApplicationResponse {
|
|
540
|
+
|
|
541
|
+
attributeGroupsDetails?: AttributeGroupDetails[];
|
|
542
|
+
|
|
543
|
+
nextToken?: string;
|
|
544
|
+
}
|
|
545
|
+
export declare namespace ListAttributeGroupsForApplicationResponse {
|
|
546
|
+
|
|
547
|
+
const filterSensitiveLog: (obj: ListAttributeGroupsForApplicationResponse) => any;
|
|
548
|
+
}
|
|
514
549
|
export interface ListTagsForResourceRequest {
|
|
515
550
|
|
|
516
551
|
resourceArn: string | undefined;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListAttributeGroupsForApplicationCommandInput, ListAttributeGroupsForApplicationCommandOutput } from "../commands/ListAttributeGroupsForApplicationCommand";
|
|
3
|
+
import { ServiceCatalogAppRegistryPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListAttributeGroupsForApplication(config: ServiceCatalogAppRegistryPaginationConfiguration, input: ListAttributeGroupsForApplicationCommandInput, ...additionalArguments: any): Paginator<ListAttributeGroupsForApplicationCommandOutput>;
|
|
@@ -2,4 +2,5 @@ export * from "./Interfaces";
|
|
|
2
2
|
export * from "./ListApplicationsPaginator";
|
|
3
3
|
export * from "./ListAssociatedAttributeGroupsPaginator";
|
|
4
4
|
export * from "./ListAssociatedResourcesPaginator";
|
|
5
|
+
export * from "./ListAttributeGroupsForApplicationPaginator";
|
|
5
6
|
export * from "./ListAttributeGroupsPaginator";
|
|
@@ -15,6 +15,7 @@ import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "../
|
|
|
15
15
|
import { ListAssociatedAttributeGroupsCommandInput, ListAssociatedAttributeGroupsCommandOutput } from "../commands/ListAssociatedAttributeGroupsCommand";
|
|
16
16
|
import { ListAssociatedResourcesCommandInput, ListAssociatedResourcesCommandOutput } from "../commands/ListAssociatedResourcesCommand";
|
|
17
17
|
import { ListAttributeGroupsCommandInput, ListAttributeGroupsCommandOutput } from "../commands/ListAttributeGroupsCommand";
|
|
18
|
+
import { ListAttributeGroupsForApplicationCommandInput, ListAttributeGroupsForApplicationCommandOutput } from "../commands/ListAttributeGroupsForApplicationCommand";
|
|
18
19
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
19
20
|
import { SyncResourceCommandInput, SyncResourceCommandOutput } from "../commands/SyncResourceCommand";
|
|
20
21
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
@@ -36,6 +37,7 @@ export declare const serializeAws_restJson1ListApplicationsCommand: (input: List
|
|
|
36
37
|
export declare const serializeAws_restJson1ListAssociatedAttributeGroupsCommand: (input: ListAssociatedAttributeGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
38
|
export declare const serializeAws_restJson1ListAssociatedResourcesCommand: (input: ListAssociatedResourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
39
|
export declare const serializeAws_restJson1ListAttributeGroupsCommand: (input: ListAttributeGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
|
+
export declare const serializeAws_restJson1ListAttributeGroupsForApplicationCommand: (input: ListAttributeGroupsForApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
41
|
export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
42
|
export declare const serializeAws_restJson1SyncResourceCommand: (input: SyncResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
43
|
export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -57,6 +59,7 @@ export declare const deserializeAws_restJson1ListApplicationsCommand: (output: _
|
|
|
57
59
|
export declare const deserializeAws_restJson1ListAssociatedAttributeGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAssociatedAttributeGroupsCommandOutput>;
|
|
58
60
|
export declare const deserializeAws_restJson1ListAssociatedResourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAssociatedResourcesCommandOutput>;
|
|
59
61
|
export declare const deserializeAws_restJson1ListAttributeGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAttributeGroupsCommandOutput>;
|
|
62
|
+
export declare const deserializeAws_restJson1ListAttributeGroupsForApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAttributeGroupsForApplicationCommandOutput>;
|
|
60
63
|
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
61
64
|
export declare const deserializeAws_restJson1SyncResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SyncResourceCommandOutput>;
|
|
62
65
|
export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
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.111.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",
|