@aws-sdk/client-service-catalog-appregistry 3.312.0 → 3.316.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 +28 -336
- package/dist-cjs/protocols/Aws_restJson1.js +264 -446
- package/dist-es/ServiceCatalogAppRegistry.js +29 -337
- package/dist-es/protocols/Aws_restJson1.js +229 -411
- package/dist-types/ServiceCatalogAppRegistry.d.ts +31 -118
- package/dist-types/ts3.4/ServiceCatalogAppRegistry.d.ts +4 -1
- package/package.json +6 -6
|
@@ -24,242 +24,155 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
|
|
|
24
24
|
import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
|
|
25
25
|
import { UpdateAttributeGroupCommandInput, UpdateAttributeGroupCommandOutput } from "./commands/UpdateAttributeGroupCommand";
|
|
26
26
|
import { ServiceCatalogAppRegistryClient } from "./ServiceCatalogAppRegistryClient";
|
|
27
|
-
|
|
28
|
-
* @public
|
|
29
|
-
* <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>
|
|
30
|
-
*/
|
|
31
|
-
export declare class ServiceCatalogAppRegistry extends ServiceCatalogAppRegistryClient {
|
|
27
|
+
export interface ServiceCatalogAppRegistry {
|
|
32
28
|
/**
|
|
33
|
-
* @
|
|
34
|
-
* <p>Associates an attribute group with an application to augment the application's metadata
|
|
35
|
-
* with the group's attributes. This feature enables applications to be described with
|
|
36
|
-
* user-defined details that are machine-readable, such as third-party integrations.</p>
|
|
29
|
+
* @see {@link AssociateAttributeGroupCommand}
|
|
37
30
|
*/
|
|
38
31
|
associateAttributeGroup(args: AssociateAttributeGroupCommandInput, options?: __HttpHandlerOptions): Promise<AssociateAttributeGroupCommandOutput>;
|
|
39
32
|
associateAttributeGroup(args: AssociateAttributeGroupCommandInput, cb: (err: any, data?: AssociateAttributeGroupCommandOutput) => void): void;
|
|
40
33
|
associateAttributeGroup(args: AssociateAttributeGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateAttributeGroupCommandOutput) => void): void;
|
|
41
34
|
/**
|
|
42
|
-
* @
|
|
43
|
-
* <p>
|
|
44
|
-
* Associates a resource
|
|
45
|
-
* with an application.
|
|
46
|
-
* The resource can be specified
|
|
47
|
-
* by its ARN or name.
|
|
48
|
-
* The application can be specified
|
|
49
|
-
* by ARN, ID, or name.
|
|
50
|
-
* </p>
|
|
35
|
+
* @see {@link AssociateResourceCommand}
|
|
51
36
|
*/
|
|
52
37
|
associateResource(args: AssociateResourceCommandInput, options?: __HttpHandlerOptions): Promise<AssociateResourceCommandOutput>;
|
|
53
38
|
associateResource(args: AssociateResourceCommandInput, cb: (err: any, data?: AssociateResourceCommandOutput) => void): void;
|
|
54
39
|
associateResource(args: AssociateResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateResourceCommandOutput) => void): void;
|
|
55
40
|
/**
|
|
56
|
-
* @
|
|
57
|
-
* <p>Creates a new application that is the top-level node in a hierarchy of related cloud resource abstractions.</p>
|
|
41
|
+
* @see {@link CreateApplicationCommand}
|
|
58
42
|
*/
|
|
59
43
|
createApplication(args: CreateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<CreateApplicationCommandOutput>;
|
|
60
44
|
createApplication(args: CreateApplicationCommandInput, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
|
|
61
45
|
createApplication(args: CreateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
|
|
62
46
|
/**
|
|
63
|
-
* @
|
|
64
|
-
* <p>Creates a new attribute group as a container for user-defined attributes. This feature
|
|
65
|
-
* enables users to have full control over their cloud application's metadata in a rich
|
|
66
|
-
* machine-readable format to facilitate integration with automated workflows and third-party
|
|
67
|
-
* tools.</p>
|
|
47
|
+
* @see {@link CreateAttributeGroupCommand}
|
|
68
48
|
*/
|
|
69
49
|
createAttributeGroup(args: CreateAttributeGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateAttributeGroupCommandOutput>;
|
|
70
50
|
createAttributeGroup(args: CreateAttributeGroupCommandInput, cb: (err: any, data?: CreateAttributeGroupCommandOutput) => void): void;
|
|
71
51
|
createAttributeGroup(args: CreateAttributeGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAttributeGroupCommandOutput) => void): void;
|
|
72
52
|
/**
|
|
73
|
-
* @
|
|
74
|
-
* <p>Deletes an application that is specified either by its application ID, name, or ARN. All associated attribute groups and resources must be disassociated from it before deleting an application.</p>
|
|
53
|
+
* @see {@link DeleteApplicationCommand}
|
|
75
54
|
*/
|
|
76
55
|
deleteApplication(args: DeleteApplicationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteApplicationCommandOutput>;
|
|
77
56
|
deleteApplication(args: DeleteApplicationCommandInput, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
|
|
78
57
|
deleteApplication(args: DeleteApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
|
|
79
58
|
/**
|
|
80
|
-
* @
|
|
81
|
-
* <p>Deletes an attribute group, specified either by its attribute group ID, name, or ARN.</p>
|
|
59
|
+
* @see {@link DeleteAttributeGroupCommand}
|
|
82
60
|
*/
|
|
83
61
|
deleteAttributeGroup(args: DeleteAttributeGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAttributeGroupCommandOutput>;
|
|
84
62
|
deleteAttributeGroup(args: DeleteAttributeGroupCommandInput, cb: (err: any, data?: DeleteAttributeGroupCommandOutput) => void): void;
|
|
85
63
|
deleteAttributeGroup(args: DeleteAttributeGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAttributeGroupCommandOutput) => void): void;
|
|
86
64
|
/**
|
|
87
|
-
* @
|
|
88
|
-
* <p>Disassociates an attribute group from an application to remove the extra attributes contained in the attribute group from the application's metadata. This operation reverts <code>AssociateAttributeGroup</code>.</p>
|
|
65
|
+
* @see {@link DisassociateAttributeGroupCommand}
|
|
89
66
|
*/
|
|
90
67
|
disassociateAttributeGroup(args: DisassociateAttributeGroupCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateAttributeGroupCommandOutput>;
|
|
91
68
|
disassociateAttributeGroup(args: DisassociateAttributeGroupCommandInput, cb: (err: any, data?: DisassociateAttributeGroupCommandOutput) => void): void;
|
|
92
69
|
disassociateAttributeGroup(args: DisassociateAttributeGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateAttributeGroupCommandOutput) => void): void;
|
|
93
70
|
/**
|
|
94
|
-
* @
|
|
95
|
-
* <p>Disassociates a resource from application. Both the resource and the application can be specified either by ID or name.</p>
|
|
71
|
+
* @see {@link DisassociateResourceCommand}
|
|
96
72
|
*/
|
|
97
73
|
disassociateResource(args: DisassociateResourceCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateResourceCommandOutput>;
|
|
98
74
|
disassociateResource(args: DisassociateResourceCommandInput, cb: (err: any, data?: DisassociateResourceCommandOutput) => void): void;
|
|
99
75
|
disassociateResource(args: DisassociateResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateResourceCommandOutput) => void): void;
|
|
100
76
|
/**
|
|
101
|
-
* @
|
|
102
|
-
* <p>
|
|
103
|
-
* Retrieves metadata information
|
|
104
|
-
* about one
|
|
105
|
-
* of your applications.
|
|
106
|
-
* The application can be specified
|
|
107
|
-
* by its ARN, ID, or name
|
|
108
|
-
* (which is unique
|
|
109
|
-
* within one account
|
|
110
|
-
* in one region
|
|
111
|
-
* at a given point
|
|
112
|
-
* in time).
|
|
113
|
-
* Specify
|
|
114
|
-
* by ARN or ID
|
|
115
|
-
* in automated workflows
|
|
116
|
-
* if you want
|
|
117
|
-
* to make sure
|
|
118
|
-
* that the exact same application is returned or a <code>ResourceNotFoundException</code> is thrown,
|
|
119
|
-
* avoiding the ABA addressing problem.
|
|
120
|
-
* </p>
|
|
77
|
+
* @see {@link GetApplicationCommand}
|
|
121
78
|
*/
|
|
122
79
|
getApplication(args: GetApplicationCommandInput, options?: __HttpHandlerOptions): Promise<GetApplicationCommandOutput>;
|
|
123
80
|
getApplication(args: GetApplicationCommandInput, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
|
|
124
81
|
getApplication(args: GetApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
|
|
125
82
|
/**
|
|
126
|
-
* @
|
|
127
|
-
* <p>Gets the resource associated with the application.</p>
|
|
83
|
+
* @see {@link GetAssociatedResourceCommand}
|
|
128
84
|
*/
|
|
129
85
|
getAssociatedResource(args: GetAssociatedResourceCommandInput, options?: __HttpHandlerOptions): Promise<GetAssociatedResourceCommandOutput>;
|
|
130
86
|
getAssociatedResource(args: GetAssociatedResourceCommandInput, cb: (err: any, data?: GetAssociatedResourceCommandOutput) => void): void;
|
|
131
87
|
getAssociatedResource(args: GetAssociatedResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAssociatedResourceCommandOutput) => void): void;
|
|
132
88
|
/**
|
|
133
|
-
* @
|
|
134
|
-
* <p>
|
|
135
|
-
* Retrieves an attribute group
|
|
136
|
-
* by its ARN, ID, or name.
|
|
137
|
-
* The attribute group can be specified
|
|
138
|
-
* by its ARN, ID, or name.
|
|
139
|
-
* </p>
|
|
89
|
+
* @see {@link GetAttributeGroupCommand}
|
|
140
90
|
*/
|
|
141
91
|
getAttributeGroup(args: GetAttributeGroupCommandInput, options?: __HttpHandlerOptions): Promise<GetAttributeGroupCommandOutput>;
|
|
142
92
|
getAttributeGroup(args: GetAttributeGroupCommandInput, cb: (err: any, data?: GetAttributeGroupCommandOutput) => void): void;
|
|
143
93
|
getAttributeGroup(args: GetAttributeGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAttributeGroupCommandOutput) => void): void;
|
|
144
94
|
/**
|
|
145
|
-
* @
|
|
146
|
-
* <p>
|
|
147
|
-
* Retrieves a <code>TagKey</code> configuration
|
|
148
|
-
* from an account.
|
|
149
|
-
* </p>
|
|
95
|
+
* @see {@link GetConfigurationCommand}
|
|
150
96
|
*/
|
|
151
97
|
getConfiguration(args: GetConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetConfigurationCommandOutput>;
|
|
152
98
|
getConfiguration(args: GetConfigurationCommandInput, cb: (err: any, data?: GetConfigurationCommandOutput) => void): void;
|
|
153
99
|
getConfiguration(args: GetConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConfigurationCommandOutput) => void): void;
|
|
154
100
|
/**
|
|
155
|
-
* @
|
|
156
|
-
* <p>Retrieves a list of all of your applications. Results are paginated.</p>
|
|
101
|
+
* @see {@link ListApplicationsCommand}
|
|
157
102
|
*/
|
|
158
103
|
listApplications(args: ListApplicationsCommandInput, options?: __HttpHandlerOptions): Promise<ListApplicationsCommandOutput>;
|
|
159
104
|
listApplications(args: ListApplicationsCommandInput, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
160
105
|
listApplications(args: ListApplicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
161
106
|
/**
|
|
162
|
-
* @
|
|
163
|
-
* <p>Lists all attribute groups that are associated with specified application. Results are paginated.</p>
|
|
107
|
+
* @see {@link ListAssociatedAttributeGroupsCommand}
|
|
164
108
|
*/
|
|
165
109
|
listAssociatedAttributeGroups(args: ListAssociatedAttributeGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListAssociatedAttributeGroupsCommandOutput>;
|
|
166
110
|
listAssociatedAttributeGroups(args: ListAssociatedAttributeGroupsCommandInput, cb: (err: any, data?: ListAssociatedAttributeGroupsCommandOutput) => void): void;
|
|
167
111
|
listAssociatedAttributeGroups(args: ListAssociatedAttributeGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssociatedAttributeGroupsCommandOutput) => void): void;
|
|
168
112
|
/**
|
|
169
|
-
* @
|
|
170
|
-
* <p>
|
|
171
|
-
* Lists all
|
|
172
|
-
* of the resources
|
|
173
|
-
* that are associated
|
|
174
|
-
* with the specified application.
|
|
175
|
-
* Results are paginated.
|
|
176
|
-
* </p>
|
|
177
|
-
* <note>
|
|
178
|
-
* <p>
|
|
179
|
-
* If you share an application,
|
|
180
|
-
* and a consumer account associates a tag query
|
|
181
|
-
* to the application,
|
|
182
|
-
* all of the users
|
|
183
|
-
* who can access the application
|
|
184
|
-
* can also view the tag values
|
|
185
|
-
* in all accounts
|
|
186
|
-
* that are associated
|
|
187
|
-
* with it
|
|
188
|
-
* using this API.
|
|
189
|
-
* </p>
|
|
190
|
-
* </note>
|
|
113
|
+
* @see {@link ListAssociatedResourcesCommand}
|
|
191
114
|
*/
|
|
192
115
|
listAssociatedResources(args: ListAssociatedResourcesCommandInput, options?: __HttpHandlerOptions): Promise<ListAssociatedResourcesCommandOutput>;
|
|
193
116
|
listAssociatedResources(args: ListAssociatedResourcesCommandInput, cb: (err: any, data?: ListAssociatedResourcesCommandOutput) => void): void;
|
|
194
117
|
listAssociatedResources(args: ListAssociatedResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssociatedResourcesCommandOutput) => void): void;
|
|
195
118
|
/**
|
|
196
|
-
* @
|
|
197
|
-
* <p>Lists all attribute groups which you have access to. Results are paginated.</p>
|
|
119
|
+
* @see {@link ListAttributeGroupsCommand}
|
|
198
120
|
*/
|
|
199
121
|
listAttributeGroups(args: ListAttributeGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListAttributeGroupsCommandOutput>;
|
|
200
122
|
listAttributeGroups(args: ListAttributeGroupsCommandInput, cb: (err: any, data?: ListAttributeGroupsCommandOutput) => void): void;
|
|
201
123
|
listAttributeGroups(args: ListAttributeGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAttributeGroupsCommandOutput) => void): void;
|
|
202
124
|
/**
|
|
203
|
-
* @
|
|
204
|
-
* <p>Lists the details of all attribute groups associated with a specific application. The results display in pages.</p>
|
|
125
|
+
* @see {@link ListAttributeGroupsForApplicationCommand}
|
|
205
126
|
*/
|
|
206
127
|
listAttributeGroupsForApplication(args: ListAttributeGroupsForApplicationCommandInput, options?: __HttpHandlerOptions): Promise<ListAttributeGroupsForApplicationCommandOutput>;
|
|
207
128
|
listAttributeGroupsForApplication(args: ListAttributeGroupsForApplicationCommandInput, cb: (err: any, data?: ListAttributeGroupsForApplicationCommandOutput) => void): void;
|
|
208
129
|
listAttributeGroupsForApplication(args: ListAttributeGroupsForApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAttributeGroupsForApplicationCommandOutput) => void): void;
|
|
209
130
|
/**
|
|
210
|
-
* @
|
|
211
|
-
* <p>Lists all of the tags on the resource.</p>
|
|
131
|
+
* @see {@link ListTagsForResourceCommand}
|
|
212
132
|
*/
|
|
213
133
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
214
134
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
215
135
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
216
136
|
/**
|
|
217
|
-
* @
|
|
218
|
-
* <p>
|
|
219
|
-
* Associates a <code>TagKey</code> configuration
|
|
220
|
-
* to an account.
|
|
221
|
-
* </p>
|
|
137
|
+
* @see {@link PutConfigurationCommand}
|
|
222
138
|
*/
|
|
223
139
|
putConfiguration(args: PutConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutConfigurationCommandOutput>;
|
|
224
140
|
putConfiguration(args: PutConfigurationCommandInput, cb: (err: any, data?: PutConfigurationCommandOutput) => void): void;
|
|
225
141
|
putConfiguration(args: PutConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutConfigurationCommandOutput) => void): void;
|
|
226
142
|
/**
|
|
227
|
-
* @
|
|
228
|
-
* <p>Syncs the resource with current AppRegistry records.</p>
|
|
229
|
-
* <p>Specifically, the resource’s AppRegistry system tags sync with its associated application. We remove the resource's AppRegistry system tags if it does not associate with the application. The caller must have permissions to read and update the resource.</p>
|
|
143
|
+
* @see {@link SyncResourceCommand}
|
|
230
144
|
*/
|
|
231
145
|
syncResource(args: SyncResourceCommandInput, options?: __HttpHandlerOptions): Promise<SyncResourceCommandOutput>;
|
|
232
146
|
syncResource(args: SyncResourceCommandInput, cb: (err: any, data?: SyncResourceCommandOutput) => void): void;
|
|
233
147
|
syncResource(args: SyncResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SyncResourceCommandOutput) => void): void;
|
|
234
148
|
/**
|
|
235
|
-
* @
|
|
236
|
-
* <p>Assigns one or more tags (key-value pairs) to the specified resource.</p>
|
|
237
|
-
* <p>Each tag consists of a key and an optional value. If a tag with the same key is already associated with the resource, this action updates its value.</p>
|
|
238
|
-
* <p>This operation returns an empty response if the call was successful.</p>
|
|
149
|
+
* @see {@link TagResourceCommand}
|
|
239
150
|
*/
|
|
240
151
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
241
152
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
242
153
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
243
154
|
/**
|
|
244
|
-
* @
|
|
245
|
-
* <p>Removes tags from a resource.</p>
|
|
246
|
-
* <p>This operation returns an empty response if the call was successful.</p>
|
|
155
|
+
* @see {@link UntagResourceCommand}
|
|
247
156
|
*/
|
|
248
157
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
249
158
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
250
159
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
251
160
|
/**
|
|
252
|
-
* @
|
|
253
|
-
* <p>Updates an existing application with new attributes.</p>
|
|
161
|
+
* @see {@link UpdateApplicationCommand}
|
|
254
162
|
*/
|
|
255
163
|
updateApplication(args: UpdateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateApplicationCommandOutput>;
|
|
256
164
|
updateApplication(args: UpdateApplicationCommandInput, cb: (err: any, data?: UpdateApplicationCommandOutput) => void): void;
|
|
257
165
|
updateApplication(args: UpdateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateApplicationCommandOutput) => void): void;
|
|
258
166
|
/**
|
|
259
|
-
* @
|
|
260
|
-
* <p>Updates an existing attribute group with new details. </p>
|
|
167
|
+
* @see {@link UpdateAttributeGroupCommand}
|
|
261
168
|
*/
|
|
262
169
|
updateAttributeGroup(args: UpdateAttributeGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAttributeGroupCommandOutput>;
|
|
263
170
|
updateAttributeGroup(args: UpdateAttributeGroupCommandInput, cb: (err: any, data?: UpdateAttributeGroupCommandOutput) => void): void;
|
|
264
171
|
updateAttributeGroup(args: UpdateAttributeGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAttributeGroupCommandOutput) => void): void;
|
|
265
172
|
}
|
|
173
|
+
/**
|
|
174
|
+
* @public
|
|
175
|
+
* <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>
|
|
176
|
+
*/
|
|
177
|
+
export declare class ServiceCatalogAppRegistry extends ServiceCatalogAppRegistryClient implements ServiceCatalogAppRegistry {
|
|
178
|
+
}
|
|
@@ -96,7 +96,7 @@ import {
|
|
|
96
96
|
UpdateAttributeGroupCommandOutput,
|
|
97
97
|
} from "./commands/UpdateAttributeGroupCommand";
|
|
98
98
|
import { ServiceCatalogAppRegistryClient } from "./ServiceCatalogAppRegistryClient";
|
|
99
|
-
export
|
|
99
|
+
export interface ServiceCatalogAppRegistry {
|
|
100
100
|
associateAttributeGroup(
|
|
101
101
|
args: AssociateAttributeGroupCommandInput,
|
|
102
102
|
options?: __HttpHandlerOptions
|
|
@@ -416,3 +416,6 @@ export declare class ServiceCatalogAppRegistry extends ServiceCatalogAppRegistry
|
|
|
416
416
|
cb: (err: any, data?: UpdateAttributeGroupCommandOutput) => void
|
|
417
417
|
): void;
|
|
418
418
|
}
|
|
419
|
+
export declare class ServiceCatalogAppRegistry
|
|
420
|
+
extends ServiceCatalogAppRegistryClient
|
|
421
|
+
implements ServiceCatalogAppRegistry {}
|
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.316.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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.316.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.316.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|