@aws-sdk/client-service-catalog-appregistry 3.212.0 → 3.215.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/ServiceCatalogAppRegistry.js +30 -0
- package/dist-cjs/commands/GetConfigurationCommand.js +46 -0
- package/dist-cjs/commands/PutConfigurationCommand.js +46 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/models/models_0.js +23 -2
- package/dist-cjs/protocols/Aws_restJson1.js +147 -1
- package/dist-es/ServiceCatalogAppRegistry.js +30 -0
- package/dist-es/commands/GetConfigurationCommand.js +42 -0
- package/dist-es/commands/PutConfigurationCommand.js +42 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +16 -0
- package/dist-es/protocols/Aws_restJson1.js +142 -0
- package/dist-types/ServiceCatalogAppRegistry.d.ts +41 -1
- package/dist-types/ServiceCatalogAppRegistryClient.d.ts +4 -2
- package/dist-types/commands/GetConfigurationCommand.d.ts +40 -0
- package/dist-types/commands/ListAssociatedResourcesCommand.d.ts +21 -1
- package/dist-types/commands/PutConfigurationCommand.d.ts +40 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +130 -7
- package/dist-types/protocols/Aws_restJson1.d.ts +6 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/ServiceCatalogAppRegistry.d.ts +34 -0
- package/dist-types/ts3.4/ServiceCatalogAppRegistryClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/GetConfigurationCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/PutConfigurationCommand.d.ts +32 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +33 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -2
- package/package.json +28 -28
|
@@ -63,6 +63,41 @@ export interface ApplicationSummary {
|
|
|
63
63
|
*/
|
|
64
64
|
lastUpdateTime?: Date;
|
|
65
65
|
}
|
|
66
|
+
/**
|
|
67
|
+
* <p>
|
|
68
|
+
* The
|
|
69
|
+
* definition
|
|
70
|
+
* of <code>tagQuery</code>.
|
|
71
|
+
* Specifies which resources are associated with an
|
|
72
|
+
* application.
|
|
73
|
+
* </p>
|
|
74
|
+
*/
|
|
75
|
+
export interface TagQueryConfiguration {
|
|
76
|
+
/**
|
|
77
|
+
* <p>
|
|
78
|
+
* Condition
|
|
79
|
+
* in the IAM policy
|
|
80
|
+
* that associates resources
|
|
81
|
+
* to an application.
|
|
82
|
+
* </p>
|
|
83
|
+
*/
|
|
84
|
+
tagKey?: string;
|
|
85
|
+
}
|
|
86
|
+
/**
|
|
87
|
+
* <p>
|
|
88
|
+
* Includes all
|
|
89
|
+
* of the Service Catalog AppRegistry settings.
|
|
90
|
+
* </p>
|
|
91
|
+
*/
|
|
92
|
+
export interface AppRegistryConfiguration {
|
|
93
|
+
/**
|
|
94
|
+
* <p>
|
|
95
|
+
* Includes the definition
|
|
96
|
+
* of a <code>tagQuery</code>.
|
|
97
|
+
* </p>
|
|
98
|
+
*/
|
|
99
|
+
tagQueryConfiguration?: TagQueryConfiguration;
|
|
100
|
+
}
|
|
66
101
|
export interface AssociateAttributeGroupRequest {
|
|
67
102
|
/**
|
|
68
103
|
* <p>The name or ID of the application.</p>
|
|
@@ -84,8 +119,8 @@ export interface AssociateAttributeGroupResponse {
|
|
|
84
119
|
attributeGroupArn?: string;
|
|
85
120
|
}
|
|
86
121
|
/**
|
|
87
|
-
* <p>There was a conflict when processing the request (for example, a resource with the given
|
|
88
|
-
* exists within the account).</p>
|
|
122
|
+
* <p>There was a conflict when processing the request (for example, a resource with the given
|
|
123
|
+
* name already exists within the account).</p>
|
|
89
124
|
*/
|
|
90
125
|
export declare class ConflictException extends __BaseException {
|
|
91
126
|
readonly name: "ConflictException";
|
|
@@ -140,7 +175,8 @@ export declare class ValidationException extends __BaseException {
|
|
|
140
175
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
141
176
|
}
|
|
142
177
|
export declare enum ResourceType {
|
|
143
|
-
CFN_STACK = "CFN_STACK"
|
|
178
|
+
CFN_STACK = "CFN_STACK",
|
|
179
|
+
RESOURCE_TAG_VALUE = "RESOURCE_TAG_VALUE"
|
|
144
180
|
}
|
|
145
181
|
export interface AssociateResourceRequest {
|
|
146
182
|
/**
|
|
@@ -200,7 +236,9 @@ export interface AttributeGroup {
|
|
|
200
236
|
tags?: Record<string, string>;
|
|
201
237
|
}
|
|
202
238
|
/**
|
|
203
|
-
* <p>
|
|
239
|
+
* <p>
|
|
240
|
+
* The details related to a specific AttributeGroup.
|
|
241
|
+
* </p>
|
|
204
242
|
*/
|
|
205
243
|
export interface AttributeGroupDetails {
|
|
206
244
|
/**
|
|
@@ -212,7 +250,18 @@ export interface AttributeGroupDetails {
|
|
|
212
250
|
*/
|
|
213
251
|
arn?: string;
|
|
214
252
|
/**
|
|
215
|
-
*
|
|
253
|
+
* @deprecated
|
|
254
|
+
*
|
|
255
|
+
* <important>
|
|
256
|
+
* <p>
|
|
257
|
+
* This field is no longer supported.
|
|
258
|
+
* We recommend
|
|
259
|
+
* you don't use the field when using <code>ListAttributeGroupsForApplication</code>.
|
|
260
|
+
* </p>
|
|
261
|
+
* </important>
|
|
262
|
+
* <p>
|
|
263
|
+
* The name of the attribute group.
|
|
264
|
+
* </p>
|
|
216
265
|
*/
|
|
217
266
|
name?: string;
|
|
218
267
|
}
|
|
@@ -457,7 +506,14 @@ export interface GetApplicationResponse {
|
|
|
457
506
|
*/
|
|
458
507
|
tags?: Record<string, string>;
|
|
459
508
|
/**
|
|
460
|
-
* <p>
|
|
509
|
+
* <p>
|
|
510
|
+
* The information
|
|
511
|
+
* about the integration
|
|
512
|
+
* of the application
|
|
513
|
+
* with other services,
|
|
514
|
+
* such as
|
|
515
|
+
* Resource Groups.
|
|
516
|
+
* </p>
|
|
461
517
|
*/
|
|
462
518
|
integrations?: Integrations;
|
|
463
519
|
}
|
|
@@ -552,6 +608,15 @@ export interface GetAttributeGroupResponse {
|
|
|
552
608
|
*/
|
|
553
609
|
tags?: Record<string, string>;
|
|
554
610
|
}
|
|
611
|
+
export interface GetConfigurationResponse {
|
|
612
|
+
/**
|
|
613
|
+
* <p>
|
|
614
|
+
* Retrieves <code>TagKey</code> configuration
|
|
615
|
+
* from an account.
|
|
616
|
+
* </p>
|
|
617
|
+
*/
|
|
618
|
+
configuration?: AppRegistryConfiguration;
|
|
619
|
+
}
|
|
555
620
|
export interface ListApplicationsRequest {
|
|
556
621
|
/**
|
|
557
622
|
* <p>The token to use to get the next page of results after a previous API call. </p>
|
|
@@ -610,6 +675,20 @@ export interface ListAssociatedResourcesRequest {
|
|
|
610
675
|
*/
|
|
611
676
|
maxResults?: number;
|
|
612
677
|
}
|
|
678
|
+
/**
|
|
679
|
+
* <p>
|
|
680
|
+
* The details
|
|
681
|
+
* related
|
|
682
|
+
* to the
|
|
683
|
+
* resource.
|
|
684
|
+
* </p>
|
|
685
|
+
*/
|
|
686
|
+
export interface ResourceDetails {
|
|
687
|
+
/**
|
|
688
|
+
* <p>The value of the tag.</p>
|
|
689
|
+
*/
|
|
690
|
+
tagValue?: string;
|
|
691
|
+
}
|
|
613
692
|
/**
|
|
614
693
|
* <p>The information about the resource.</p>
|
|
615
694
|
*/
|
|
@@ -622,6 +701,21 @@ export interface ResourceInfo {
|
|
|
622
701
|
* <p>The Amazon resource name (ARN) that specifies the resource across services.</p>
|
|
623
702
|
*/
|
|
624
703
|
arn?: string;
|
|
704
|
+
/**
|
|
705
|
+
* <p>
|
|
706
|
+
* Provides information
|
|
707
|
+
* about the Service Catalog App Registry resource type.
|
|
708
|
+
* </p>
|
|
709
|
+
*/
|
|
710
|
+
resourceType?: ResourceType | string;
|
|
711
|
+
/**
|
|
712
|
+
* <p>
|
|
713
|
+
* The details related
|
|
714
|
+
* to
|
|
715
|
+
* the resource.
|
|
716
|
+
* </p>
|
|
717
|
+
*/
|
|
718
|
+
resourceDetails?: ResourceDetails;
|
|
625
719
|
}
|
|
626
720
|
export interface ListAssociatedResourcesResponse {
|
|
627
721
|
/**
|
|
@@ -669,7 +763,7 @@ export interface ListAttributeGroupsForApplicationRequest {
|
|
|
669
763
|
}
|
|
670
764
|
export interface ListAttributeGroupsForApplicationResponse {
|
|
671
765
|
/**
|
|
672
|
-
* <p> The details related to a specific
|
|
766
|
+
* <p> The details related to a specific attribute group. </p>
|
|
673
767
|
*/
|
|
674
768
|
attributeGroupsDetails?: AttributeGroupDetails[];
|
|
675
769
|
/**
|
|
@@ -689,6 +783,15 @@ export interface ListTagsForResourceResponse {
|
|
|
689
783
|
*/
|
|
690
784
|
tags?: Record<string, string>;
|
|
691
785
|
}
|
|
786
|
+
export interface PutConfigurationRequest {
|
|
787
|
+
/**
|
|
788
|
+
* <p>
|
|
789
|
+
* Associates a <code>TagKey</code> configuration
|
|
790
|
+
* to an account.
|
|
791
|
+
* </p>
|
|
792
|
+
*/
|
|
793
|
+
configuration: AppRegistryConfiguration | undefined;
|
|
794
|
+
}
|
|
692
795
|
export interface SyncResourceRequest {
|
|
693
796
|
/**
|
|
694
797
|
* <p>The type of resource of which the application will be associated.</p>
|
|
@@ -799,6 +902,14 @@ export declare const ApplicationFilterSensitiveLog: (obj: Application) => any;
|
|
|
799
902
|
* @internal
|
|
800
903
|
*/
|
|
801
904
|
export declare const ApplicationSummaryFilterSensitiveLog: (obj: ApplicationSummary) => any;
|
|
905
|
+
/**
|
|
906
|
+
* @internal
|
|
907
|
+
*/
|
|
908
|
+
export declare const TagQueryConfigurationFilterSensitiveLog: (obj: TagQueryConfiguration) => any;
|
|
909
|
+
/**
|
|
910
|
+
* @internal
|
|
911
|
+
*/
|
|
912
|
+
export declare const AppRegistryConfigurationFilterSensitiveLog: (obj: AppRegistryConfiguration) => any;
|
|
802
913
|
/**
|
|
803
914
|
* @internal
|
|
804
915
|
*/
|
|
@@ -915,6 +1026,10 @@ export declare const GetAttributeGroupRequestFilterSensitiveLog: (obj: GetAttrib
|
|
|
915
1026
|
* @internal
|
|
916
1027
|
*/
|
|
917
1028
|
export declare const GetAttributeGroupResponseFilterSensitiveLog: (obj: GetAttributeGroupResponse) => any;
|
|
1029
|
+
/**
|
|
1030
|
+
* @internal
|
|
1031
|
+
*/
|
|
1032
|
+
export declare const GetConfigurationResponseFilterSensitiveLog: (obj: GetConfigurationResponse) => any;
|
|
918
1033
|
/**
|
|
919
1034
|
* @internal
|
|
920
1035
|
*/
|
|
@@ -935,6 +1050,10 @@ export declare const ListAssociatedAttributeGroupsResponseFilterSensitiveLog: (o
|
|
|
935
1050
|
* @internal
|
|
936
1051
|
*/
|
|
937
1052
|
export declare const ListAssociatedResourcesRequestFilterSensitiveLog: (obj: ListAssociatedResourcesRequest) => any;
|
|
1053
|
+
/**
|
|
1054
|
+
* @internal
|
|
1055
|
+
*/
|
|
1056
|
+
export declare const ResourceDetailsFilterSensitiveLog: (obj: ResourceDetails) => any;
|
|
938
1057
|
/**
|
|
939
1058
|
* @internal
|
|
940
1059
|
*/
|
|
@@ -967,6 +1086,10 @@ export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTag
|
|
|
967
1086
|
* @internal
|
|
968
1087
|
*/
|
|
969
1088
|
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1089
|
+
/**
|
|
1090
|
+
* @internal
|
|
1091
|
+
*/
|
|
1092
|
+
export declare const PutConfigurationRequestFilterSensitiveLog: (obj: PutConfigurationRequest) => any;
|
|
970
1093
|
/**
|
|
971
1094
|
* @internal
|
|
972
1095
|
*/
|
|
@@ -11,12 +11,14 @@ import { DisassociateResourceCommandInput, DisassociateResourceCommandOutput } f
|
|
|
11
11
|
import { GetApplicationCommandInput, GetApplicationCommandOutput } from "../commands/GetApplicationCommand";
|
|
12
12
|
import { GetAssociatedResourceCommandInput, GetAssociatedResourceCommandOutput } from "../commands/GetAssociatedResourceCommand";
|
|
13
13
|
import { GetAttributeGroupCommandInput, GetAttributeGroupCommandOutput } from "../commands/GetAttributeGroupCommand";
|
|
14
|
+
import { GetConfigurationCommandInput, GetConfigurationCommandOutput } from "../commands/GetConfigurationCommand";
|
|
14
15
|
import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "../commands/ListApplicationsCommand";
|
|
15
16
|
import { ListAssociatedAttributeGroupsCommandInput, ListAssociatedAttributeGroupsCommandOutput } from "../commands/ListAssociatedAttributeGroupsCommand";
|
|
16
17
|
import { ListAssociatedResourcesCommandInput, ListAssociatedResourcesCommandOutput } from "../commands/ListAssociatedResourcesCommand";
|
|
17
18
|
import { ListAttributeGroupsCommandInput, ListAttributeGroupsCommandOutput } from "../commands/ListAttributeGroupsCommand";
|
|
18
19
|
import { ListAttributeGroupsForApplicationCommandInput, ListAttributeGroupsForApplicationCommandOutput } from "../commands/ListAttributeGroupsForApplicationCommand";
|
|
19
20
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
21
|
+
import { PutConfigurationCommandInput, PutConfigurationCommandOutput } from "../commands/PutConfigurationCommand";
|
|
20
22
|
import { SyncResourceCommandInput, SyncResourceCommandOutput } from "../commands/SyncResourceCommand";
|
|
21
23
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
22
24
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
@@ -33,12 +35,14 @@ export declare const serializeAws_restJson1DisassociateResourceCommand: (input:
|
|
|
33
35
|
export declare const serializeAws_restJson1GetApplicationCommand: (input: GetApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
36
|
export declare const serializeAws_restJson1GetAssociatedResourceCommand: (input: GetAssociatedResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
37
|
export declare const serializeAws_restJson1GetAttributeGroupCommand: (input: GetAttributeGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
|
+
export declare const serializeAws_restJson1GetConfigurationCommand: (input: GetConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
39
|
export declare const serializeAws_restJson1ListApplicationsCommand: (input: ListApplicationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
40
|
export declare const serializeAws_restJson1ListAssociatedAttributeGroupsCommand: (input: ListAssociatedAttributeGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
41
|
export declare const serializeAws_restJson1ListAssociatedResourcesCommand: (input: ListAssociatedResourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
42
|
export declare const serializeAws_restJson1ListAttributeGroupsCommand: (input: ListAttributeGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
43
|
export declare const serializeAws_restJson1ListAttributeGroupsForApplicationCommand: (input: ListAttributeGroupsForApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
44
|
export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
45
|
+
export declare const serializeAws_restJson1PutConfigurationCommand: (input: PutConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
46
|
export declare const serializeAws_restJson1SyncResourceCommand: (input: SyncResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
47
|
export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
48
|
export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -55,12 +59,14 @@ export declare const deserializeAws_restJson1DisassociateResourceCommand: (outpu
|
|
|
55
59
|
export declare const deserializeAws_restJson1GetApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetApplicationCommandOutput>;
|
|
56
60
|
export declare const deserializeAws_restJson1GetAssociatedResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAssociatedResourceCommandOutput>;
|
|
57
61
|
export declare const deserializeAws_restJson1GetAttributeGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAttributeGroupCommandOutput>;
|
|
62
|
+
export declare const deserializeAws_restJson1GetConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConfigurationCommandOutput>;
|
|
58
63
|
export declare const deserializeAws_restJson1ListApplicationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListApplicationsCommandOutput>;
|
|
59
64
|
export declare const deserializeAws_restJson1ListAssociatedAttributeGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAssociatedAttributeGroupsCommandOutput>;
|
|
60
65
|
export declare const deserializeAws_restJson1ListAssociatedResourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAssociatedResourcesCommandOutput>;
|
|
61
66
|
export declare const deserializeAws_restJson1ListAttributeGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAttributeGroupsCommandOutput>;
|
|
62
67
|
export declare const deserializeAws_restJson1ListAttributeGroupsForApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAttributeGroupsForApplicationCommandOutput>;
|
|
63
68
|
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
69
|
+
export declare const deserializeAws_restJson1PutConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutConfigurationCommandOutput>;
|
|
64
70
|
export declare const deserializeAws_restJson1SyncResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SyncResourceCommandOutput>;
|
|
65
71
|
export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
66
72
|
export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
@@ -32,7 +32,7 @@ export declare const getRuntimeConfig: (config: ServiceCatalogAppRegistryClientC
|
|
|
32
32
|
}) => import("@aws-sdk/types").EndpointV2;
|
|
33
33
|
tls?: boolean | undefined;
|
|
34
34
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
35
|
-
credentials?: import("@aws-sdk/types").
|
|
35
|
+
credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
|
|
36
36
|
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
37
37
|
signingEscapePath?: boolean | undefined;
|
|
38
38
|
systemClockOffset?: number | undefined;
|
|
@@ -32,7 +32,7 @@ export declare const getRuntimeConfig: (config: ServiceCatalogAppRegistryClientC
|
|
|
32
32
|
}) => import("@aws-sdk/types").EndpointV2;
|
|
33
33
|
tls?: boolean | undefined;
|
|
34
34
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
35
|
-
credentials?: import("@aws-sdk/types").
|
|
35
|
+
credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
|
|
36
36
|
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
37
37
|
signingEscapePath?: boolean | undefined;
|
|
38
38
|
systemClockOffset?: number | undefined;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: ServiceCatalogAppRegistryClientC
|
|
|
31
31
|
}) => import("@aws-sdk/types").EndpointV2;
|
|
32
32
|
tls?: boolean | undefined;
|
|
33
33
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
34
|
-
credentials?: import("@aws-sdk/types").
|
|
34
|
+
credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
|
|
35
35
|
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
36
36
|
signingEscapePath?: boolean | undefined;
|
|
37
37
|
systemClockOffset?: number | undefined;
|
|
@@ -43,6 +43,10 @@ import {
|
|
|
43
43
|
GetAttributeGroupCommandInput,
|
|
44
44
|
GetAttributeGroupCommandOutput,
|
|
45
45
|
} from "./commands/GetAttributeGroupCommand";
|
|
46
|
+
import {
|
|
47
|
+
GetConfigurationCommandInput,
|
|
48
|
+
GetConfigurationCommandOutput,
|
|
49
|
+
} from "./commands/GetConfigurationCommand";
|
|
46
50
|
import {
|
|
47
51
|
ListApplicationsCommandInput,
|
|
48
52
|
ListApplicationsCommandOutput,
|
|
@@ -67,6 +71,10 @@ import {
|
|
|
67
71
|
ListTagsForResourceCommandInput,
|
|
68
72
|
ListTagsForResourceCommandOutput,
|
|
69
73
|
} from "./commands/ListTagsForResourceCommand";
|
|
74
|
+
import {
|
|
75
|
+
PutConfigurationCommandInput,
|
|
76
|
+
PutConfigurationCommandOutput,
|
|
77
|
+
} from "./commands/PutConfigurationCommand";
|
|
70
78
|
import {
|
|
71
79
|
SyncResourceCommandInput,
|
|
72
80
|
SyncResourceCommandOutput,
|
|
@@ -232,6 +240,19 @@ export declare class ServiceCatalogAppRegistry extends ServiceCatalogAppRegistry
|
|
|
232
240
|
options: __HttpHandlerOptions,
|
|
233
241
|
cb: (err: any, data?: GetAttributeGroupCommandOutput) => void
|
|
234
242
|
): void;
|
|
243
|
+
getConfiguration(
|
|
244
|
+
args: GetConfigurationCommandInput,
|
|
245
|
+
options?: __HttpHandlerOptions
|
|
246
|
+
): Promise<GetConfigurationCommandOutput>;
|
|
247
|
+
getConfiguration(
|
|
248
|
+
args: GetConfigurationCommandInput,
|
|
249
|
+
cb: (err: any, data?: GetConfigurationCommandOutput) => void
|
|
250
|
+
): void;
|
|
251
|
+
getConfiguration(
|
|
252
|
+
args: GetConfigurationCommandInput,
|
|
253
|
+
options: __HttpHandlerOptions,
|
|
254
|
+
cb: (err: any, data?: GetConfigurationCommandOutput) => void
|
|
255
|
+
): void;
|
|
235
256
|
listApplications(
|
|
236
257
|
args: ListApplicationsCommandInput,
|
|
237
258
|
options?: __HttpHandlerOptions
|
|
@@ -316,6 +337,19 @@ export declare class ServiceCatalogAppRegistry extends ServiceCatalogAppRegistry
|
|
|
316
337
|
options: __HttpHandlerOptions,
|
|
317
338
|
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
318
339
|
): void;
|
|
340
|
+
putConfiguration(
|
|
341
|
+
args: PutConfigurationCommandInput,
|
|
342
|
+
options?: __HttpHandlerOptions
|
|
343
|
+
): Promise<PutConfigurationCommandOutput>;
|
|
344
|
+
putConfiguration(
|
|
345
|
+
args: PutConfigurationCommandInput,
|
|
346
|
+
cb: (err: any, data?: PutConfigurationCommandOutput) => void
|
|
347
|
+
): void;
|
|
348
|
+
putConfiguration(
|
|
349
|
+
args: PutConfigurationCommandInput,
|
|
350
|
+
options: __HttpHandlerOptions,
|
|
351
|
+
cb: (err: any, data?: PutConfigurationCommandOutput) => void
|
|
352
|
+
): void;
|
|
319
353
|
syncResource(
|
|
320
354
|
args: SyncResourceCommandInput,
|
|
321
355
|
options?: __HttpHandlerOptions
|
|
@@ -87,6 +87,10 @@ import {
|
|
|
87
87
|
GetAttributeGroupCommandInput,
|
|
88
88
|
GetAttributeGroupCommandOutput,
|
|
89
89
|
} from "./commands/GetAttributeGroupCommand";
|
|
90
|
+
import {
|
|
91
|
+
GetConfigurationCommandInput,
|
|
92
|
+
GetConfigurationCommandOutput,
|
|
93
|
+
} from "./commands/GetConfigurationCommand";
|
|
90
94
|
import {
|
|
91
95
|
ListApplicationsCommandInput,
|
|
92
96
|
ListApplicationsCommandOutput,
|
|
@@ -111,6 +115,10 @@ import {
|
|
|
111
115
|
ListTagsForResourceCommandInput,
|
|
112
116
|
ListTagsForResourceCommandOutput,
|
|
113
117
|
} from "./commands/ListTagsForResourceCommand";
|
|
118
|
+
import {
|
|
119
|
+
PutConfigurationCommandInput,
|
|
120
|
+
PutConfigurationCommandOutput,
|
|
121
|
+
} from "./commands/PutConfigurationCommand";
|
|
114
122
|
import {
|
|
115
123
|
SyncResourceCommandInput,
|
|
116
124
|
SyncResourceCommandOutput,
|
|
@@ -148,12 +156,14 @@ export declare type ServiceInputTypes =
|
|
|
148
156
|
| GetApplicationCommandInput
|
|
149
157
|
| GetAssociatedResourceCommandInput
|
|
150
158
|
| GetAttributeGroupCommandInput
|
|
159
|
+
| GetConfigurationCommandInput
|
|
151
160
|
| ListApplicationsCommandInput
|
|
152
161
|
| ListAssociatedAttributeGroupsCommandInput
|
|
153
162
|
| ListAssociatedResourcesCommandInput
|
|
154
163
|
| ListAttributeGroupsCommandInput
|
|
155
164
|
| ListAttributeGroupsForApplicationCommandInput
|
|
156
165
|
| ListTagsForResourceCommandInput
|
|
166
|
+
| PutConfigurationCommandInput
|
|
157
167
|
| SyncResourceCommandInput
|
|
158
168
|
| TagResourceCommandInput
|
|
159
169
|
| UntagResourceCommandInput
|
|
@@ -171,12 +181,14 @@ export declare type ServiceOutputTypes =
|
|
|
171
181
|
| GetApplicationCommandOutput
|
|
172
182
|
| GetAssociatedResourceCommandOutput
|
|
173
183
|
| GetAttributeGroupCommandOutput
|
|
184
|
+
| GetConfigurationCommandOutput
|
|
174
185
|
| ListApplicationsCommandOutput
|
|
175
186
|
| ListAssociatedAttributeGroupsCommandOutput
|
|
176
187
|
| ListAssociatedResourcesCommandOutput
|
|
177
188
|
| ListAttributeGroupsCommandOutput
|
|
178
189
|
| ListAttributeGroupsForApplicationCommandOutput
|
|
179
190
|
| ListTagsForResourceCommandOutput
|
|
191
|
+
| PutConfigurationCommandOutput
|
|
180
192
|
| SyncResourceCommandOutput
|
|
181
193
|
| TagResourceCommandOutput
|
|
182
194
|
| UntagResourceCommandOutput
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { GetConfigurationResponse } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ServiceCatalogAppRegistryClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../ServiceCatalogAppRegistryClient";
|
|
15
|
+
export interface GetConfigurationCommandInput {}
|
|
16
|
+
export interface GetConfigurationCommandOutput
|
|
17
|
+
extends GetConfigurationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class GetConfigurationCommand extends $Command<
|
|
20
|
+
GetConfigurationCommandInput,
|
|
21
|
+
GetConfigurationCommandOutput,
|
|
22
|
+
ServiceCatalogAppRegistryClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetConfigurationCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: GetConfigurationCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ServiceCatalogAppRegistryClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetConfigurationCommandInput, GetConfigurationCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { PutConfigurationRequest } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ServiceCatalogAppRegistryClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../ServiceCatalogAppRegistryClient";
|
|
15
|
+
export interface PutConfigurationCommandInput extends PutConfigurationRequest {}
|
|
16
|
+
export interface PutConfigurationCommandOutput extends __MetadataBearer {}
|
|
17
|
+
export declare class PutConfigurationCommand extends $Command<
|
|
18
|
+
PutConfigurationCommandInput,
|
|
19
|
+
PutConfigurationCommandOutput,
|
|
20
|
+
ServiceCatalogAppRegistryClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: PutConfigurationCommandInput;
|
|
23
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
|
+
constructor(input: PutConfigurationCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: ServiceCatalogAppRegistryClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<PutConfigurationCommandInput, PutConfigurationCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -9,12 +9,14 @@ export * from "./DisassociateResourceCommand";
|
|
|
9
9
|
export * from "./GetApplicationCommand";
|
|
10
10
|
export * from "./GetAssociatedResourceCommand";
|
|
11
11
|
export * from "./GetAttributeGroupCommand";
|
|
12
|
+
export * from "./GetConfigurationCommand";
|
|
12
13
|
export * from "./ListApplicationsCommand";
|
|
13
14
|
export * from "./ListAssociatedAttributeGroupsCommand";
|
|
14
15
|
export * from "./ListAssociatedResourcesCommand";
|
|
15
16
|
export * from "./ListAttributeGroupsCommand";
|
|
16
17
|
export * from "./ListAttributeGroupsForApplicationCommand";
|
|
17
18
|
export * from "./ListTagsForResourceCommand";
|
|
19
|
+
export * from "./PutConfigurationCommand";
|
|
18
20
|
export * from "./SyncResourceCommand";
|
|
19
21
|
export * from "./TagResourceCommand";
|
|
20
22
|
export * from "./UntagResourceCommand";
|
|
@@ -17,6 +17,12 @@ export interface ApplicationSummary {
|
|
|
17
17
|
creationTime?: Date;
|
|
18
18
|
lastUpdateTime?: Date;
|
|
19
19
|
}
|
|
20
|
+
export interface TagQueryConfiguration {
|
|
21
|
+
tagKey?: string;
|
|
22
|
+
}
|
|
23
|
+
export interface AppRegistryConfiguration {
|
|
24
|
+
tagQueryConfiguration?: TagQueryConfiguration;
|
|
25
|
+
}
|
|
20
26
|
export interface AssociateAttributeGroupRequest {
|
|
21
27
|
application: string | undefined;
|
|
22
28
|
attributeGroup: string | undefined;
|
|
@@ -60,6 +66,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
60
66
|
}
|
|
61
67
|
export declare enum ResourceType {
|
|
62
68
|
CFN_STACK = "CFN_STACK",
|
|
69
|
+
RESOURCE_TAG_VALUE = "RESOURCE_TAG_VALUE",
|
|
63
70
|
}
|
|
64
71
|
export interface AssociateResourceRequest {
|
|
65
72
|
application: string | undefined;
|
|
@@ -200,6 +207,9 @@ export interface GetAttributeGroupResponse {
|
|
|
200
207
|
lastUpdateTime?: Date;
|
|
201
208
|
tags?: Record<string, string>;
|
|
202
209
|
}
|
|
210
|
+
export interface GetConfigurationResponse {
|
|
211
|
+
configuration?: AppRegistryConfiguration;
|
|
212
|
+
}
|
|
203
213
|
export interface ListApplicationsRequest {
|
|
204
214
|
nextToken?: string;
|
|
205
215
|
maxResults?: number;
|
|
@@ -222,9 +232,14 @@ export interface ListAssociatedResourcesRequest {
|
|
|
222
232
|
nextToken?: string;
|
|
223
233
|
maxResults?: number;
|
|
224
234
|
}
|
|
235
|
+
export interface ResourceDetails {
|
|
236
|
+
tagValue?: string;
|
|
237
|
+
}
|
|
225
238
|
export interface ResourceInfo {
|
|
226
239
|
name?: string;
|
|
227
240
|
arn?: string;
|
|
241
|
+
resourceType?: ResourceType | string;
|
|
242
|
+
resourceDetails?: ResourceDetails;
|
|
228
243
|
}
|
|
229
244
|
export interface ListAssociatedResourcesResponse {
|
|
230
245
|
resources?: ResourceInfo[];
|
|
@@ -253,6 +268,9 @@ export interface ListTagsForResourceRequest {
|
|
|
253
268
|
export interface ListTagsForResourceResponse {
|
|
254
269
|
tags?: Record<string, string>;
|
|
255
270
|
}
|
|
271
|
+
export interface PutConfigurationRequest {
|
|
272
|
+
configuration: AppRegistryConfiguration | undefined;
|
|
273
|
+
}
|
|
256
274
|
export interface SyncResourceRequest {
|
|
257
275
|
resourceType: ResourceType | string | undefined;
|
|
258
276
|
resource: string | undefined;
|
|
@@ -297,6 +315,12 @@ export declare const ApplicationFilterSensitiveLog: (obj: Application) => any;
|
|
|
297
315
|
export declare const ApplicationSummaryFilterSensitiveLog: (
|
|
298
316
|
obj: ApplicationSummary
|
|
299
317
|
) => any;
|
|
318
|
+
export declare const TagQueryConfigurationFilterSensitiveLog: (
|
|
319
|
+
obj: TagQueryConfiguration
|
|
320
|
+
) => any;
|
|
321
|
+
export declare const AppRegistryConfigurationFilterSensitiveLog: (
|
|
322
|
+
obj: AppRegistryConfiguration
|
|
323
|
+
) => any;
|
|
300
324
|
export declare const AssociateAttributeGroupRequestFilterSensitiveLog: (
|
|
301
325
|
obj: AssociateAttributeGroupRequest
|
|
302
326
|
) => any;
|
|
@@ -380,6 +404,9 @@ export declare const GetAttributeGroupRequestFilterSensitiveLog: (
|
|
|
380
404
|
export declare const GetAttributeGroupResponseFilterSensitiveLog: (
|
|
381
405
|
obj: GetAttributeGroupResponse
|
|
382
406
|
) => any;
|
|
407
|
+
export declare const GetConfigurationResponseFilterSensitiveLog: (
|
|
408
|
+
obj: GetConfigurationResponse
|
|
409
|
+
) => any;
|
|
383
410
|
export declare const ListApplicationsRequestFilterSensitiveLog: (
|
|
384
411
|
obj: ListApplicationsRequest
|
|
385
412
|
) => any;
|
|
@@ -395,6 +422,9 @@ export declare const ListAssociatedAttributeGroupsResponseFilterSensitiveLog: (
|
|
|
395
422
|
export declare const ListAssociatedResourcesRequestFilterSensitiveLog: (
|
|
396
423
|
obj: ListAssociatedResourcesRequest
|
|
397
424
|
) => any;
|
|
425
|
+
export declare const ResourceDetailsFilterSensitiveLog: (
|
|
426
|
+
obj: ResourceDetails
|
|
427
|
+
) => any;
|
|
398
428
|
export declare const ResourceInfoFilterSensitiveLog: (obj: ResourceInfo) => any;
|
|
399
429
|
export declare const ListAssociatedResourcesResponseFilterSensitiveLog: (
|
|
400
430
|
obj: ListAssociatedResourcesResponse
|
|
@@ -417,6 +447,9 @@ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
|
417
447
|
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
418
448
|
obj: ListTagsForResourceResponse
|
|
419
449
|
) => any;
|
|
450
|
+
export declare const PutConfigurationRequestFilterSensitiveLog: (
|
|
451
|
+
obj: PutConfigurationRequest
|
|
452
|
+
) => any;
|
|
420
453
|
export declare const SyncResourceRequestFilterSensitiveLog: (
|
|
421
454
|
obj: SyncResourceRequest
|
|
422
455
|
) => any;
|
|
@@ -47,6 +47,10 @@ import {
|
|
|
47
47
|
GetAttributeGroupCommandInput,
|
|
48
48
|
GetAttributeGroupCommandOutput,
|
|
49
49
|
} from "../commands/GetAttributeGroupCommand";
|
|
50
|
+
import {
|
|
51
|
+
GetConfigurationCommandInput,
|
|
52
|
+
GetConfigurationCommandOutput,
|
|
53
|
+
} from "../commands/GetConfigurationCommand";
|
|
50
54
|
import {
|
|
51
55
|
ListApplicationsCommandInput,
|
|
52
56
|
ListApplicationsCommandOutput,
|
|
@@ -71,6 +75,10 @@ import {
|
|
|
71
75
|
ListTagsForResourceCommandInput,
|
|
72
76
|
ListTagsForResourceCommandOutput,
|
|
73
77
|
} from "../commands/ListTagsForResourceCommand";
|
|
78
|
+
import {
|
|
79
|
+
PutConfigurationCommandInput,
|
|
80
|
+
PutConfigurationCommandOutput,
|
|
81
|
+
} from "../commands/PutConfigurationCommand";
|
|
74
82
|
import {
|
|
75
83
|
SyncResourceCommandInput,
|
|
76
84
|
SyncResourceCommandOutput,
|
|
@@ -135,6 +143,10 @@ export declare const serializeAws_restJson1GetAttributeGroupCommand: (
|
|
|
135
143
|
input: GetAttributeGroupCommandInput,
|
|
136
144
|
context: __SerdeContext
|
|
137
145
|
) => Promise<__HttpRequest>;
|
|
146
|
+
export declare const serializeAws_restJson1GetConfigurationCommand: (
|
|
147
|
+
input: GetConfigurationCommandInput,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<__HttpRequest>;
|
|
138
150
|
export declare const serializeAws_restJson1ListApplicationsCommand: (
|
|
139
151
|
input: ListApplicationsCommandInput,
|
|
140
152
|
context: __SerdeContext
|
|
@@ -159,6 +171,10 @@ export declare const serializeAws_restJson1ListTagsForResourceCommand: (
|
|
|
159
171
|
input: ListTagsForResourceCommandInput,
|
|
160
172
|
context: __SerdeContext
|
|
161
173
|
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const serializeAws_restJson1PutConfigurationCommand: (
|
|
175
|
+
input: PutConfigurationCommandInput,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<__HttpRequest>;
|
|
162
178
|
export declare const serializeAws_restJson1SyncResourceCommand: (
|
|
163
179
|
input: SyncResourceCommandInput,
|
|
164
180
|
context: __SerdeContext
|
|
@@ -223,6 +239,10 @@ export declare const deserializeAws_restJson1GetAttributeGroupCommand: (
|
|
|
223
239
|
output: __HttpResponse,
|
|
224
240
|
context: __SerdeContext
|
|
225
241
|
) => Promise<GetAttributeGroupCommandOutput>;
|
|
242
|
+
export declare const deserializeAws_restJson1GetConfigurationCommand: (
|
|
243
|
+
output: __HttpResponse,
|
|
244
|
+
context: __SerdeContext
|
|
245
|
+
) => Promise<GetConfigurationCommandOutput>;
|
|
226
246
|
export declare const deserializeAws_restJson1ListApplicationsCommand: (
|
|
227
247
|
output: __HttpResponse,
|
|
228
248
|
context: __SerdeContext
|
|
@@ -247,6 +267,10 @@ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
|
|
|
247
267
|
output: __HttpResponse,
|
|
248
268
|
context: __SerdeContext
|
|
249
269
|
) => Promise<ListTagsForResourceCommandOutput>;
|
|
270
|
+
export declare const deserializeAws_restJson1PutConfigurationCommand: (
|
|
271
|
+
output: __HttpResponse,
|
|
272
|
+
context: __SerdeContext
|
|
273
|
+
) => Promise<PutConfigurationCommandOutput>;
|
|
250
274
|
export declare const deserializeAws_restJson1SyncResourceCommand: (
|
|
251
275
|
output: __HttpResponse,
|
|
252
276
|
context: __SerdeContext
|