@aws-sdk/client-service-catalog-appregistry 3.533.0 → 3.540.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/endpoint/endpointResolver.js +4 -2
- package/dist-cjs/index.js +0 -3
- package/dist-es/endpoint/endpointResolver.js +3 -1
- package/dist-es/index.js +0 -1
- package/dist-types/ServiceCatalogAppRegistry.d.ts +4 -1
- package/dist-types/ServiceCatalogAppRegistryClient.d.ts +1 -1
- package/dist-types/commands/AssociateAttributeGroupCommand.d.ts +2 -1
- package/dist-types/commands/AssociateResourceCommand.d.ts +2 -1
- package/dist-types/commands/CreateApplicationCommand.d.ts +2 -1
- package/dist-types/commands/CreateAttributeGroupCommand.d.ts +2 -1
- package/dist-types/commands/DeleteApplicationCommand.d.ts +2 -1
- package/dist-types/commands/DeleteAttributeGroupCommand.d.ts +2 -1
- package/dist-types/commands/DisassociateAttributeGroupCommand.d.ts +2 -1
- package/dist-types/commands/DisassociateResourceCommand.d.ts +2 -1
- package/dist-types/commands/GetApplicationCommand.d.ts +2 -1
- package/dist-types/commands/GetAssociatedResourceCommand.d.ts +2 -1
- package/dist-types/commands/GetAttributeGroupCommand.d.ts +2 -1
- package/dist-types/commands/GetConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/ListApplicationsCommand.d.ts +2 -1
- package/dist-types/commands/ListAssociatedAttributeGroupsCommand.d.ts +2 -1
- package/dist-types/commands/ListAssociatedResourcesCommand.d.ts +2 -1
- package/dist-types/commands/ListAttributeGroupsCommand.d.ts +2 -1
- package/dist-types/commands/ListAttributeGroupsForApplicationCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/PutConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/SyncResourceCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateApplicationCommand.d.ts +2 -1
- package/dist-types/commands/UpdateAttributeGroupCommand.d.ts +2 -1
- package/dist-types/index.d.ts +0 -1
- package/dist-types/models/models_0.d.ts +190 -190
- package/dist-types/ts3.4/ServiceCatalogAppRegistry.d.ts +3 -0
- package/dist-types/ts3.4/commands/AssociateAttributeGroupCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/AssociateResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateAttributeGroupCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteAttributeGroupCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DisassociateAttributeGroupCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DisassociateResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetAssociatedResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetAttributeGroupCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetConfigurationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListAssociatedAttributeGroupsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListAssociatedResourcesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListAttributeGroupsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListAttributeGroupsForApplicationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PutConfigurationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/SyncResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateAttributeGroupCommand.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +0 -1
- package/package.json +40 -40
|
@@ -1,87 +1,87 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { ServiceCatalogAppRegistryServiceException as __BaseException } from "./ServiceCatalogAppRegistryServiceException";
|
|
3
3
|
/**
|
|
4
|
-
* @public
|
|
5
4
|
* <p>Represents a Amazon Web Services Service Catalog AppRegistry application that is the top-level node in a hierarchy of related
|
|
6
5
|
* cloud resource abstractions.</p>
|
|
6
|
+
* @public
|
|
7
7
|
*/
|
|
8
8
|
export interface Application {
|
|
9
9
|
/**
|
|
10
|
-
* @public
|
|
11
10
|
* <p>The identifier of the application.</p>
|
|
11
|
+
* @public
|
|
12
12
|
*/
|
|
13
13
|
id?: string;
|
|
14
14
|
/**
|
|
15
|
-
* @public
|
|
16
15
|
* <p>The Amazon resource name (ARN) that specifies the application across services.</p>
|
|
16
|
+
* @public
|
|
17
17
|
*/
|
|
18
18
|
arn?: string;
|
|
19
19
|
/**
|
|
20
|
-
* @public
|
|
21
20
|
* <p>The name of the application. The name must be unique in the region in which you are creating the application.</p>
|
|
21
|
+
* @public
|
|
22
22
|
*/
|
|
23
23
|
name?: string;
|
|
24
24
|
/**
|
|
25
|
-
* @public
|
|
26
25
|
* <p>The description of the application.</p>
|
|
26
|
+
* @public
|
|
27
27
|
*/
|
|
28
28
|
description?: string;
|
|
29
29
|
/**
|
|
30
|
-
* @public
|
|
31
30
|
* <p>The ISO-8601 formatted timestamp of the moment when the application was created.</p>
|
|
31
|
+
* @public
|
|
32
32
|
*/
|
|
33
33
|
creationTime?: Date;
|
|
34
34
|
/**
|
|
35
|
-
* @public
|
|
36
35
|
* <p> The ISO-8601 formatted timestamp of the moment when the application was last updated.</p>
|
|
36
|
+
* @public
|
|
37
37
|
*/
|
|
38
38
|
lastUpdateTime?: Date;
|
|
39
39
|
/**
|
|
40
|
-
* @public
|
|
41
40
|
* <p>Key-value pairs you can use to associate with the application.</p>
|
|
41
|
+
* @public
|
|
42
42
|
*/
|
|
43
43
|
tags?: Record<string, string>;
|
|
44
44
|
/**
|
|
45
|
-
* @public
|
|
46
45
|
* <p>
|
|
47
46
|
* A key-value pair that identifies an associated resource.
|
|
48
47
|
* </p>
|
|
48
|
+
* @public
|
|
49
49
|
*/
|
|
50
50
|
applicationTag?: Record<string, string>;
|
|
51
51
|
}
|
|
52
52
|
/**
|
|
53
|
-
* @public
|
|
54
53
|
* <p>Summary of a Amazon Web Services Service Catalog AppRegistry application.</p>
|
|
54
|
+
* @public
|
|
55
55
|
*/
|
|
56
56
|
export interface ApplicationSummary {
|
|
57
57
|
/**
|
|
58
|
-
* @public
|
|
59
58
|
* <p>The identifier of the application.</p>
|
|
59
|
+
* @public
|
|
60
60
|
*/
|
|
61
61
|
id?: string;
|
|
62
62
|
/**
|
|
63
|
-
* @public
|
|
64
63
|
* <p>The Amazon resource name (ARN) that specifies the application across services.</p>
|
|
64
|
+
* @public
|
|
65
65
|
*/
|
|
66
66
|
arn?: string;
|
|
67
67
|
/**
|
|
68
|
-
* @public
|
|
69
68
|
* <p>The name of the application. The name must be unique in the region in which you are creating the application.</p>
|
|
69
|
+
* @public
|
|
70
70
|
*/
|
|
71
71
|
name?: string;
|
|
72
72
|
/**
|
|
73
|
-
* @public
|
|
74
73
|
* <p>The description of the application.</p>
|
|
74
|
+
* @public
|
|
75
75
|
*/
|
|
76
76
|
description?: string;
|
|
77
77
|
/**
|
|
78
|
-
* @public
|
|
79
78
|
* <p>The ISO-8601 formatted timestamp of the moment when the application was created.</p>
|
|
79
|
+
* @public
|
|
80
80
|
*/
|
|
81
81
|
creationTime?: Date;
|
|
82
82
|
/**
|
|
83
|
-
* @public
|
|
84
83
|
* <p> The ISO-8601 formatted timestamp of the moment when the application was last updated.</p>
|
|
84
|
+
* @public
|
|
85
85
|
*/
|
|
86
86
|
lastUpdateTime?: Date;
|
|
87
87
|
}
|
|
@@ -99,79 +99,78 @@ export declare const ApplicationTagStatus: {
|
|
|
99
99
|
*/
|
|
100
100
|
export type ApplicationTagStatus = (typeof ApplicationTagStatus)[keyof typeof ApplicationTagStatus];
|
|
101
101
|
/**
|
|
102
|
-
* @public
|
|
103
102
|
* <p>
|
|
104
103
|
* The resource in a list of resources.
|
|
105
104
|
* </p>
|
|
105
|
+
* @public
|
|
106
106
|
*/
|
|
107
107
|
export interface ResourcesListItem {
|
|
108
108
|
/**
|
|
109
|
-
* @public
|
|
110
109
|
* <p>
|
|
111
110
|
* The Amazon resource name (ARN) of the resource.
|
|
112
111
|
* </p>
|
|
112
|
+
* @public
|
|
113
113
|
*/
|
|
114
114
|
resourceArn?: string;
|
|
115
115
|
/**
|
|
116
|
-
* @public
|
|
117
116
|
* <p>
|
|
118
117
|
* The message returned if the call fails.
|
|
119
118
|
* </p>
|
|
119
|
+
* @public
|
|
120
120
|
*/
|
|
121
121
|
errorMessage?: string;
|
|
122
122
|
/**
|
|
123
|
-
* @public
|
|
124
123
|
* <p>
|
|
125
124
|
* The status of the list item.
|
|
126
125
|
* </p>
|
|
126
|
+
* @public
|
|
127
127
|
*/
|
|
128
128
|
status?: string;
|
|
129
129
|
/**
|
|
130
|
-
* @public
|
|
131
130
|
* <p>
|
|
132
131
|
* Provides information about the AppRegistry resource type.
|
|
133
132
|
* </p>
|
|
133
|
+
* @public
|
|
134
134
|
*/
|
|
135
135
|
resourceType?: string;
|
|
136
136
|
}
|
|
137
137
|
/**
|
|
138
|
-
* @public
|
|
139
138
|
* <p>
|
|
140
139
|
* The result of the application tag that's applied to a resource.
|
|
141
140
|
* </p>
|
|
141
|
+
* @public
|
|
142
142
|
*/
|
|
143
143
|
export interface ApplicationTagResult {
|
|
144
144
|
/**
|
|
145
|
-
* @public
|
|
146
145
|
* <p>
|
|
147
146
|
* The application tag is in the process of being applied to a resource, was successfully applied to a resource, or failed to apply to a resource.
|
|
148
147
|
* </p>
|
|
148
|
+
* @public
|
|
149
149
|
*/
|
|
150
150
|
applicationTagStatus?: ApplicationTagStatus;
|
|
151
151
|
/**
|
|
152
|
-
* @public
|
|
153
152
|
* <p>
|
|
154
153
|
* The message returned if the call fails.
|
|
155
154
|
* </p>
|
|
155
|
+
* @public
|
|
156
156
|
*/
|
|
157
157
|
errorMessage?: string;
|
|
158
158
|
/**
|
|
159
|
-
* @public
|
|
160
159
|
* <p>
|
|
161
160
|
* The resources associated with an application
|
|
162
161
|
* </p>
|
|
162
|
+
* @public
|
|
163
163
|
*/
|
|
164
164
|
resources?: ResourcesListItem[];
|
|
165
165
|
/**
|
|
166
|
-
* @public
|
|
167
166
|
* <p>
|
|
168
167
|
* A unique pagination token for each page of results. Make the call again with the returned token to retrieve the next page of results.
|
|
169
168
|
* </p>
|
|
169
|
+
* @public
|
|
170
170
|
*/
|
|
171
171
|
nextToken?: string;
|
|
172
172
|
}
|
|
173
173
|
/**
|
|
174
|
-
* @public
|
|
175
174
|
* <p>
|
|
176
175
|
* The
|
|
177
176
|
* definition
|
|
@@ -179,33 +178,34 @@ export interface ApplicationTagResult {
|
|
|
179
178
|
* Specifies which resources are associated with an
|
|
180
179
|
* application.
|
|
181
180
|
* </p>
|
|
181
|
+
* @public
|
|
182
182
|
*/
|
|
183
183
|
export interface TagQueryConfiguration {
|
|
184
184
|
/**
|
|
185
|
-
* @public
|
|
186
185
|
* <p>
|
|
187
186
|
* Condition
|
|
188
187
|
* in the IAM policy
|
|
189
188
|
* that associates resources
|
|
190
189
|
* to an application.
|
|
191
190
|
* </p>
|
|
191
|
+
* @public
|
|
192
192
|
*/
|
|
193
193
|
tagKey?: string;
|
|
194
194
|
}
|
|
195
195
|
/**
|
|
196
|
-
* @public
|
|
197
196
|
* <p>
|
|
198
197
|
* Includes all
|
|
199
198
|
* of the AppRegistry settings.
|
|
200
199
|
* </p>
|
|
200
|
+
* @public
|
|
201
201
|
*/
|
|
202
202
|
export interface AppRegistryConfiguration {
|
|
203
203
|
/**
|
|
204
|
-
* @public
|
|
205
204
|
* <p>
|
|
206
205
|
* Includes the definition
|
|
207
206
|
* of a <code>tagQuery</code>.
|
|
208
207
|
* </p>
|
|
208
|
+
* @public
|
|
209
209
|
*/
|
|
210
210
|
tagQueryConfiguration?: TagQueryConfiguration;
|
|
211
211
|
}
|
|
@@ -214,21 +214,21 @@ export interface AppRegistryConfiguration {
|
|
|
214
214
|
*/
|
|
215
215
|
export interface AssociateAttributeGroupRequest {
|
|
216
216
|
/**
|
|
217
|
-
* @public
|
|
218
217
|
* <p>
|
|
219
218
|
* The name, ID, or ARN
|
|
220
219
|
* of the application.
|
|
221
220
|
* </p>
|
|
221
|
+
* @public
|
|
222
222
|
*/
|
|
223
223
|
application: string | undefined;
|
|
224
224
|
/**
|
|
225
|
-
* @public
|
|
226
225
|
* <p>
|
|
227
226
|
* The name, ID, or ARN
|
|
228
227
|
* of the attribute group
|
|
229
228
|
* that holds the attributes
|
|
230
229
|
* to describe the application.
|
|
231
230
|
* </p>
|
|
231
|
+
* @public
|
|
232
232
|
*/
|
|
233
233
|
attributeGroup: string | undefined;
|
|
234
234
|
}
|
|
@@ -237,20 +237,20 @@ export interface AssociateAttributeGroupRequest {
|
|
|
237
237
|
*/
|
|
238
238
|
export interface AssociateAttributeGroupResponse {
|
|
239
239
|
/**
|
|
240
|
-
* @public
|
|
241
240
|
* <p>The Amazon resource name (ARN) of the application that was augmented with attributes.</p>
|
|
241
|
+
* @public
|
|
242
242
|
*/
|
|
243
243
|
applicationArn?: string;
|
|
244
244
|
/**
|
|
245
|
-
* @public
|
|
246
245
|
* <p>The Amazon resource name (ARN) of the attribute group that contains the application's new attributes.</p>
|
|
246
|
+
* @public
|
|
247
247
|
*/
|
|
248
248
|
attributeGroupArn?: string;
|
|
249
249
|
}
|
|
250
250
|
/**
|
|
251
|
-
* @public
|
|
252
251
|
* <p>There was a conflict when processing the request (for example, a resource with the given
|
|
253
252
|
* name already exists within the account).</p>
|
|
253
|
+
* @public
|
|
254
254
|
*/
|
|
255
255
|
export declare class ConflictException extends __BaseException {
|
|
256
256
|
readonly name: "ConflictException";
|
|
@@ -261,8 +261,8 @@ export declare class ConflictException extends __BaseException {
|
|
|
261
261
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
262
262
|
}
|
|
263
263
|
/**
|
|
264
|
-
* @public
|
|
265
264
|
* <p>The service is experiencing internal problems.</p>
|
|
265
|
+
* @public
|
|
266
266
|
*/
|
|
267
267
|
export declare class InternalServerException extends __BaseException {
|
|
268
268
|
readonly name: "InternalServerException";
|
|
@@ -273,8 +273,8 @@ export declare class InternalServerException extends __BaseException {
|
|
|
273
273
|
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
274
274
|
}
|
|
275
275
|
/**
|
|
276
|
-
* @public
|
|
277
276
|
* <p>The specified resource does not exist.</p>
|
|
277
|
+
* @public
|
|
278
278
|
*/
|
|
279
279
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
280
280
|
readonly name: "ResourceNotFoundException";
|
|
@@ -285,11 +285,11 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
285
285
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
286
286
|
}
|
|
287
287
|
/**
|
|
288
|
-
* @public
|
|
289
288
|
* <p>
|
|
290
289
|
* The maximum number
|
|
291
290
|
* of resources per account
|
|
292
291
|
* has been reached.</p>
|
|
292
|
+
* @public
|
|
293
293
|
*/
|
|
294
294
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
295
295
|
readonly name: "ServiceQuotaExceededException";
|
|
@@ -300,8 +300,8 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
300
300
|
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
301
301
|
}
|
|
302
302
|
/**
|
|
303
|
-
* @public
|
|
304
303
|
* <p>The request has invalid or missing parameters.</p>
|
|
304
|
+
* @public
|
|
305
305
|
*/
|
|
306
306
|
export declare class ValidationException extends __BaseException {
|
|
307
307
|
readonly name: "ValidationException";
|
|
@@ -340,28 +340,28 @@ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
|
340
340
|
*/
|
|
341
341
|
export interface AssociateResourceRequest {
|
|
342
342
|
/**
|
|
343
|
-
* @public
|
|
344
343
|
* <p>
|
|
345
344
|
* The name, ID, or ARN
|
|
346
345
|
* of the application.
|
|
347
346
|
* </p>
|
|
347
|
+
* @public
|
|
348
348
|
*/
|
|
349
349
|
application: string | undefined;
|
|
350
350
|
/**
|
|
351
|
-
* @public
|
|
352
351
|
* <p>The type of resource of which the application will be associated.</p>
|
|
352
|
+
* @public
|
|
353
353
|
*/
|
|
354
354
|
resourceType: ResourceType | undefined;
|
|
355
355
|
/**
|
|
356
|
-
* @public
|
|
357
356
|
* <p>The name or ID of the resource of which the application will be associated.</p>
|
|
357
|
+
* @public
|
|
358
358
|
*/
|
|
359
359
|
resource: string | undefined;
|
|
360
360
|
/**
|
|
361
|
-
* @public
|
|
362
361
|
* <p>
|
|
363
362
|
* Determines whether an application tag is applied or skipped.
|
|
364
363
|
* </p>
|
|
364
|
+
* @public
|
|
365
365
|
*/
|
|
366
366
|
options?: AssociationOption[];
|
|
367
367
|
}
|
|
@@ -370,37 +370,37 @@ export interface AssociateResourceRequest {
|
|
|
370
370
|
*/
|
|
371
371
|
export interface AssociateResourceResponse {
|
|
372
372
|
/**
|
|
373
|
-
* @public
|
|
374
373
|
* <p>The Amazon resource name (ARN) of the application that was augmented with attributes.</p>
|
|
374
|
+
* @public
|
|
375
375
|
*/
|
|
376
376
|
applicationArn?: string;
|
|
377
377
|
/**
|
|
378
|
-
* @public
|
|
379
378
|
* <p>The Amazon resource name (ARN) that specifies the resource.</p>
|
|
379
|
+
* @public
|
|
380
380
|
*/
|
|
381
381
|
resourceArn?: string;
|
|
382
382
|
/**
|
|
383
|
-
* @public
|
|
384
383
|
* <p>
|
|
385
384
|
* Determines whether an application tag is applied or skipped.
|
|
386
385
|
* </p>
|
|
386
|
+
* @public
|
|
387
387
|
*/
|
|
388
388
|
options?: AssociationOption[];
|
|
389
389
|
}
|
|
390
390
|
/**
|
|
391
|
-
* @public
|
|
392
391
|
* <p>
|
|
393
392
|
* The maximum number
|
|
394
393
|
* of API requests
|
|
395
394
|
* has been exceeded.
|
|
396
395
|
* </p>
|
|
396
|
+
* @public
|
|
397
397
|
*/
|
|
398
398
|
export declare class ThrottlingException extends __BaseException {
|
|
399
399
|
readonly name: "ThrottlingException";
|
|
400
400
|
readonly $fault: "client";
|
|
401
401
|
/**
|
|
402
|
-
* @public
|
|
403
402
|
* <p>The originating service code.</p>
|
|
403
|
+
* @public
|
|
404
404
|
*/
|
|
405
405
|
serviceCode?: string;
|
|
406
406
|
/**
|
|
@@ -409,65 +409,64 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
409
409
|
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
410
410
|
}
|
|
411
411
|
/**
|
|
412
|
-
* @public
|
|
413
412
|
* <p>Represents a Amazon Web Services Service Catalog AppRegistry attribute group that is rich metadata which describes an application and its components.</p>
|
|
413
|
+
* @public
|
|
414
414
|
*/
|
|
415
415
|
export interface AttributeGroup {
|
|
416
416
|
/**
|
|
417
|
-
* @public
|
|
418
417
|
* <p>The globally unique attribute group identifier of the attribute group.</p>
|
|
418
|
+
* @public
|
|
419
419
|
*/
|
|
420
420
|
id?: string;
|
|
421
421
|
/**
|
|
422
|
-
* @public
|
|
423
422
|
* <p>The Amazon resource name (ARN) that specifies the attribute group across services.</p>
|
|
423
|
+
* @public
|
|
424
424
|
*/
|
|
425
425
|
arn?: string;
|
|
426
426
|
/**
|
|
427
|
-
* @public
|
|
428
427
|
* <p>The name of the attribute group.</p>
|
|
428
|
+
* @public
|
|
429
429
|
*/
|
|
430
430
|
name?: string;
|
|
431
431
|
/**
|
|
432
|
-
* @public
|
|
433
432
|
* <p>The description of the attribute group that the user provides.</p>
|
|
433
|
+
* @public
|
|
434
434
|
*/
|
|
435
435
|
description?: string;
|
|
436
436
|
/**
|
|
437
|
-
* @public
|
|
438
437
|
* <p>The ISO-8601 formatted timestamp of the moment the attribute group was created.</p>
|
|
438
|
+
* @public
|
|
439
439
|
*/
|
|
440
440
|
creationTime?: Date;
|
|
441
441
|
/**
|
|
442
|
-
* @public
|
|
443
442
|
* <p>The ISO-8601 formatted timestamp of the moment the attribute group was last updated. This time is the same as the creationTime for a newly created attribute group.</p>
|
|
443
|
+
* @public
|
|
444
444
|
*/
|
|
445
445
|
lastUpdateTime?: Date;
|
|
446
446
|
/**
|
|
447
|
-
* @public
|
|
448
447
|
* <p>Key-value pairs you can use to associate with the attribute group.</p>
|
|
448
|
+
* @public
|
|
449
449
|
*/
|
|
450
450
|
tags?: Record<string, string>;
|
|
451
451
|
}
|
|
452
452
|
/**
|
|
453
|
-
* @public
|
|
454
453
|
* <p>
|
|
455
454
|
* The details related to a specific AttributeGroup.
|
|
456
455
|
* </p>
|
|
456
|
+
* @public
|
|
457
457
|
*/
|
|
458
458
|
export interface AttributeGroupDetails {
|
|
459
459
|
/**
|
|
460
|
-
* @public
|
|
461
460
|
* <p>The unique identifier of the attribute group.</p>
|
|
461
|
+
* @public
|
|
462
462
|
*/
|
|
463
463
|
id?: string;
|
|
464
464
|
/**
|
|
465
|
-
* @public
|
|
466
465
|
* <p>The Amazon resource name (ARN) that specifies the attribute group.</p>
|
|
466
|
+
* @public
|
|
467
467
|
*/
|
|
468
468
|
arn?: string;
|
|
469
469
|
/**
|
|
470
|
-
* @public
|
|
471
470
|
* <important>
|
|
472
471
|
* <p>
|
|
473
472
|
* This field is no longer supported.
|
|
@@ -478,52 +477,53 @@ export interface AttributeGroupDetails {
|
|
|
478
477
|
* <p>
|
|
479
478
|
* The name of the attribute group.
|
|
480
479
|
* </p>
|
|
480
|
+
* @public
|
|
481
481
|
*/
|
|
482
482
|
name?: string;
|
|
483
483
|
/**
|
|
484
|
-
* @public
|
|
485
484
|
* <p>The service principal that created the attribute group.</p>
|
|
485
|
+
* @public
|
|
486
486
|
*/
|
|
487
487
|
createdBy?: string;
|
|
488
488
|
}
|
|
489
489
|
/**
|
|
490
|
-
* @public
|
|
491
490
|
* <p>Summary of a Amazon Web Services Service Catalog AppRegistry attribute group.</p>
|
|
491
|
+
* @public
|
|
492
492
|
*/
|
|
493
493
|
export interface AttributeGroupSummary {
|
|
494
494
|
/**
|
|
495
|
-
* @public
|
|
496
495
|
* <p>The globally unique attribute group identifier of the attribute group.</p>
|
|
496
|
+
* @public
|
|
497
497
|
*/
|
|
498
498
|
id?: string;
|
|
499
499
|
/**
|
|
500
|
-
* @public
|
|
501
500
|
* <p>The Amazon resource name (ARN) that specifies the attribute group across services.</p>
|
|
501
|
+
* @public
|
|
502
502
|
*/
|
|
503
503
|
arn?: string;
|
|
504
504
|
/**
|
|
505
|
-
* @public
|
|
506
505
|
* <p>The name of the attribute group.</p>
|
|
506
|
+
* @public
|
|
507
507
|
*/
|
|
508
508
|
name?: string;
|
|
509
509
|
/**
|
|
510
|
-
* @public
|
|
511
510
|
* <p>The description of the attribute group that the user provides.</p>
|
|
511
|
+
* @public
|
|
512
512
|
*/
|
|
513
513
|
description?: string;
|
|
514
514
|
/**
|
|
515
|
-
* @public
|
|
516
515
|
* <p>The ISO-8601 formatted timestamp of the moment the attribute group was created.</p>
|
|
516
|
+
* @public
|
|
517
517
|
*/
|
|
518
518
|
creationTime?: Date;
|
|
519
519
|
/**
|
|
520
|
-
* @public
|
|
521
520
|
* <p>The ISO-8601 formatted timestamp of the moment the attribute group was last updated. This time is the same as the creationTime for a newly created attribute group.</p>
|
|
521
|
+
* @public
|
|
522
522
|
*/
|
|
523
523
|
lastUpdateTime?: Date;
|
|
524
524
|
/**
|
|
525
|
-
* @public
|
|
526
525
|
* <p>The service principal that created the attribute group.</p>
|
|
526
|
+
* @public
|
|
527
527
|
*/
|
|
528
528
|
createdBy?: string;
|
|
529
529
|
}
|
|
@@ -532,26 +532,26 @@ export interface AttributeGroupSummary {
|
|
|
532
532
|
*/
|
|
533
533
|
export interface CreateApplicationRequest {
|
|
534
534
|
/**
|
|
535
|
-
* @public
|
|
536
535
|
* <p>The name of the application. The name must be unique in the region in which you are creating the application.</p>
|
|
536
|
+
* @public
|
|
537
537
|
*/
|
|
538
538
|
name: string | undefined;
|
|
539
539
|
/**
|
|
540
|
-
* @public
|
|
541
540
|
* <p>The description of the application.</p>
|
|
541
|
+
* @public
|
|
542
542
|
*/
|
|
543
543
|
description?: string;
|
|
544
544
|
/**
|
|
545
|
-
* @public
|
|
546
545
|
* <p>Key-value pairs you can use to associate with the application.</p>
|
|
546
|
+
* @public
|
|
547
547
|
*/
|
|
548
548
|
tags?: Record<string, string>;
|
|
549
549
|
/**
|
|
550
|
-
* @public
|
|
551
550
|
* <p>A unique identifier that you provide to ensure idempotency. If you retry a request that
|
|
552
551
|
* completed successfully using the same client token and the same parameters, the retry succeeds
|
|
553
552
|
* without performing any further actions. If you retry a successful request using the same
|
|
554
553
|
* client token, but one or more of the parameters are different, the retry fails.</p>
|
|
554
|
+
* @public
|
|
555
555
|
*/
|
|
556
556
|
clientToken?: string;
|
|
557
557
|
}
|
|
@@ -560,8 +560,8 @@ export interface CreateApplicationRequest {
|
|
|
560
560
|
*/
|
|
561
561
|
export interface CreateApplicationResponse {
|
|
562
562
|
/**
|
|
563
|
-
* @public
|
|
564
563
|
* <p>Information about the application.</p>
|
|
564
|
+
* @public
|
|
565
565
|
*/
|
|
566
566
|
application?: Application;
|
|
567
567
|
}
|
|
@@ -570,31 +570,31 @@ export interface CreateApplicationResponse {
|
|
|
570
570
|
*/
|
|
571
571
|
export interface CreateAttributeGroupRequest {
|
|
572
572
|
/**
|
|
573
|
-
* @public
|
|
574
573
|
* <p>The name of the attribute group.</p>
|
|
574
|
+
* @public
|
|
575
575
|
*/
|
|
576
576
|
name: string | undefined;
|
|
577
577
|
/**
|
|
578
|
-
* @public
|
|
579
578
|
* <p>The description of the attribute group that the user provides.</p>
|
|
579
|
+
* @public
|
|
580
580
|
*/
|
|
581
581
|
description?: string;
|
|
582
582
|
/**
|
|
583
|
-
* @public
|
|
584
583
|
* <p>A JSON string in the form of nested key-value pairs that represent the attributes in the group and describes an application and its components.</p>
|
|
584
|
+
* @public
|
|
585
585
|
*/
|
|
586
586
|
attributes: string | undefined;
|
|
587
587
|
/**
|
|
588
|
-
* @public
|
|
589
588
|
* <p>Key-value pairs you can use to associate with the attribute group.</p>
|
|
589
|
+
* @public
|
|
590
590
|
*/
|
|
591
591
|
tags?: Record<string, string>;
|
|
592
592
|
/**
|
|
593
|
-
* @public
|
|
594
593
|
* <p>A unique identifier that you provide to ensure idempotency. If you retry a request that
|
|
595
594
|
* completed successfully using the same client token and the same parameters, the retry succeeds
|
|
596
595
|
* without performing any further actions. If you retry a successful request using the same
|
|
597
596
|
* client token, but one or more of the parameters are different, the retry fails.</p>
|
|
597
|
+
* @public
|
|
598
598
|
*/
|
|
599
599
|
clientToken?: string;
|
|
600
600
|
}
|
|
@@ -603,8 +603,8 @@ export interface CreateAttributeGroupRequest {
|
|
|
603
603
|
*/
|
|
604
604
|
export interface CreateAttributeGroupResponse {
|
|
605
605
|
/**
|
|
606
|
-
* @public
|
|
607
606
|
* <p>Information about the attribute group.</p>
|
|
607
|
+
* @public
|
|
608
608
|
*/
|
|
609
609
|
attributeGroup?: AttributeGroup;
|
|
610
610
|
}
|
|
@@ -613,11 +613,11 @@ export interface CreateAttributeGroupResponse {
|
|
|
613
613
|
*/
|
|
614
614
|
export interface DeleteApplicationRequest {
|
|
615
615
|
/**
|
|
616
|
-
* @public
|
|
617
616
|
* <p>
|
|
618
617
|
* The name, ID, or ARN
|
|
619
618
|
* of the application.
|
|
620
619
|
* </p>
|
|
620
|
+
* @public
|
|
621
621
|
*/
|
|
622
622
|
application: string | undefined;
|
|
623
623
|
}
|
|
@@ -626,8 +626,8 @@ export interface DeleteApplicationRequest {
|
|
|
626
626
|
*/
|
|
627
627
|
export interface DeleteApplicationResponse {
|
|
628
628
|
/**
|
|
629
|
-
* @public
|
|
630
629
|
* <p>Information about the deleted application.</p>
|
|
630
|
+
* @public
|
|
631
631
|
*/
|
|
632
632
|
application?: ApplicationSummary;
|
|
633
633
|
}
|
|
@@ -636,13 +636,13 @@ export interface DeleteApplicationResponse {
|
|
|
636
636
|
*/
|
|
637
637
|
export interface DeleteAttributeGroupRequest {
|
|
638
638
|
/**
|
|
639
|
-
* @public
|
|
640
639
|
* <p>
|
|
641
640
|
* The name, ID, or ARN
|
|
642
641
|
* of the attribute group
|
|
643
642
|
* that holds the attributes
|
|
644
643
|
* to describe the application.
|
|
645
644
|
* </p>
|
|
645
|
+
* @public
|
|
646
646
|
*/
|
|
647
647
|
attributeGroup: string | undefined;
|
|
648
648
|
}
|
|
@@ -651,8 +651,8 @@ export interface DeleteAttributeGroupRequest {
|
|
|
651
651
|
*/
|
|
652
652
|
export interface DeleteAttributeGroupResponse {
|
|
653
653
|
/**
|
|
654
|
-
* @public
|
|
655
654
|
* <p>Information about the deleted attribute group.</p>
|
|
655
|
+
* @public
|
|
656
656
|
*/
|
|
657
657
|
attributeGroup?: AttributeGroupSummary;
|
|
658
658
|
}
|
|
@@ -661,21 +661,21 @@ export interface DeleteAttributeGroupResponse {
|
|
|
661
661
|
*/
|
|
662
662
|
export interface DisassociateAttributeGroupRequest {
|
|
663
663
|
/**
|
|
664
|
-
* @public
|
|
665
664
|
* <p>
|
|
666
665
|
* The name, ID, or ARN
|
|
667
666
|
* of the application.
|
|
668
667
|
* </p>
|
|
668
|
+
* @public
|
|
669
669
|
*/
|
|
670
670
|
application: string | undefined;
|
|
671
671
|
/**
|
|
672
|
-
* @public
|
|
673
672
|
* <p>
|
|
674
673
|
* The name, ID, or ARN
|
|
675
674
|
* of the attribute group
|
|
676
675
|
* that holds the attributes
|
|
677
676
|
* to describe the application.
|
|
678
677
|
* </p>
|
|
678
|
+
* @public
|
|
679
679
|
*/
|
|
680
680
|
attributeGroup: string | undefined;
|
|
681
681
|
}
|
|
@@ -684,13 +684,13 @@ export interface DisassociateAttributeGroupRequest {
|
|
|
684
684
|
*/
|
|
685
685
|
export interface DisassociateAttributeGroupResponse {
|
|
686
686
|
/**
|
|
687
|
-
* @public
|
|
688
687
|
* <p>The Amazon resource name (ARN) that specifies the application.</p>
|
|
688
|
+
* @public
|
|
689
689
|
*/
|
|
690
690
|
applicationArn?: string;
|
|
691
691
|
/**
|
|
692
|
-
* @public
|
|
693
692
|
* <p>The Amazon resource name (ARN) that specifies the attribute group.</p>
|
|
693
|
+
* @public
|
|
694
694
|
*/
|
|
695
695
|
attributeGroupArn?: string;
|
|
696
696
|
}
|
|
@@ -699,18 +699,18 @@ export interface DisassociateAttributeGroupResponse {
|
|
|
699
699
|
*/
|
|
700
700
|
export interface DisassociateResourceRequest {
|
|
701
701
|
/**
|
|
702
|
-
* @public
|
|
703
702
|
* <p>The name or ID of the application.</p>
|
|
703
|
+
* @public
|
|
704
704
|
*/
|
|
705
705
|
application: string | undefined;
|
|
706
706
|
/**
|
|
707
|
-
* @public
|
|
708
707
|
* <p>The type of the resource that is being disassociated.</p>
|
|
708
|
+
* @public
|
|
709
709
|
*/
|
|
710
710
|
resourceType: ResourceType | undefined;
|
|
711
711
|
/**
|
|
712
|
-
* @public
|
|
713
712
|
* <p>The name or ID of the resource.</p>
|
|
713
|
+
* @public
|
|
714
714
|
*/
|
|
715
715
|
resource: string | undefined;
|
|
716
716
|
}
|
|
@@ -719,13 +719,13 @@ export interface DisassociateResourceRequest {
|
|
|
719
719
|
*/
|
|
720
720
|
export interface DisassociateResourceResponse {
|
|
721
721
|
/**
|
|
722
|
-
* @public
|
|
723
722
|
* <p>The Amazon resource name (ARN) that specifies the application.</p>
|
|
723
|
+
* @public
|
|
724
724
|
*/
|
|
725
725
|
applicationArn?: string;
|
|
726
726
|
/**
|
|
727
|
-
* @public
|
|
728
727
|
* <p>The Amazon resource name (ARN) that specifies the resource.</p>
|
|
728
|
+
* @public
|
|
729
729
|
*/
|
|
730
730
|
resourceArn?: string;
|
|
731
731
|
}
|
|
@@ -734,11 +734,11 @@ export interface DisassociateResourceResponse {
|
|
|
734
734
|
*/
|
|
735
735
|
export interface GetApplicationRequest {
|
|
736
736
|
/**
|
|
737
|
-
* @public
|
|
738
737
|
* <p>
|
|
739
738
|
* The name, ID, or ARN
|
|
740
739
|
* of the application.
|
|
741
740
|
* </p>
|
|
741
|
+
* @public
|
|
742
742
|
*/
|
|
743
743
|
application: string | undefined;
|
|
744
744
|
}
|
|
@@ -759,12 +759,11 @@ export declare const ResourceGroupState: {
|
|
|
759
759
|
*/
|
|
760
760
|
export type ResourceGroupState = (typeof ResourceGroupState)[keyof typeof ResourceGroupState];
|
|
761
761
|
/**
|
|
762
|
-
* @public
|
|
763
762
|
* <p>The information about the resource group integration.</p>
|
|
763
|
+
* @public
|
|
764
764
|
*/
|
|
765
765
|
export interface ResourceGroup {
|
|
766
766
|
/**
|
|
767
|
-
* @public
|
|
768
767
|
* <p>The state of the propagation process for the resource group. The states includes:</p>
|
|
769
768
|
* <p>
|
|
770
769
|
* <code>CREATING </code>if the resource group is in the process of being created.</p>
|
|
@@ -778,32 +777,33 @@ export interface ResourceGroup {
|
|
|
778
777
|
* <code>UPDATE_COMPLETE</code> if the resource group updated successfully.</p>
|
|
779
778
|
* <p>
|
|
780
779
|
* <code>UPDATE_FAILED</code> if the resource group could not update successfully.</p>
|
|
780
|
+
* @public
|
|
781
781
|
*/
|
|
782
782
|
state?: ResourceGroupState;
|
|
783
783
|
/**
|
|
784
|
-
* @public
|
|
785
784
|
* <p>The Amazon resource name (ARN) of the resource group.</p>
|
|
785
|
+
* @public
|
|
786
786
|
*/
|
|
787
787
|
arn?: string;
|
|
788
788
|
/**
|
|
789
|
-
* @public
|
|
790
789
|
* <p>The error message that generates when the propagation process for the resource group fails.</p>
|
|
790
|
+
* @public
|
|
791
791
|
*/
|
|
792
792
|
errorMessage?: string;
|
|
793
793
|
}
|
|
794
794
|
/**
|
|
795
|
-
* @public
|
|
796
795
|
* <p> The information about the service integration.</p>
|
|
796
|
+
* @public
|
|
797
797
|
*/
|
|
798
798
|
export interface Integrations {
|
|
799
799
|
/**
|
|
800
|
-
* @public
|
|
801
800
|
* <p> The information about the resource group integration.</p>
|
|
801
|
+
* @public
|
|
802
802
|
*/
|
|
803
803
|
resourceGroup?: ResourceGroup;
|
|
804
804
|
/**
|
|
805
|
-
* @public
|
|
806
805
|
* <p>The information about the resource group integration.</p>
|
|
806
|
+
* @public
|
|
807
807
|
*/
|
|
808
808
|
applicationTagResourceGroup?: ResourceGroup;
|
|
809
809
|
}
|
|
@@ -812,47 +812,46 @@ export interface Integrations {
|
|
|
812
812
|
*/
|
|
813
813
|
export interface GetApplicationResponse {
|
|
814
814
|
/**
|
|
815
|
-
* @public
|
|
816
815
|
* <p>The identifier of the application.</p>
|
|
816
|
+
* @public
|
|
817
817
|
*/
|
|
818
818
|
id?: string;
|
|
819
819
|
/**
|
|
820
|
-
* @public
|
|
821
820
|
* <p>The Amazon resource name (ARN) that specifies the application across services.</p>
|
|
821
|
+
* @public
|
|
822
822
|
*/
|
|
823
823
|
arn?: string;
|
|
824
824
|
/**
|
|
825
|
-
* @public
|
|
826
825
|
* <p>The name of the application. The name must be unique in the region in which you are creating the application.</p>
|
|
826
|
+
* @public
|
|
827
827
|
*/
|
|
828
828
|
name?: string;
|
|
829
829
|
/**
|
|
830
|
-
* @public
|
|
831
830
|
* <p>The description of the application.</p>
|
|
831
|
+
* @public
|
|
832
832
|
*/
|
|
833
833
|
description?: string;
|
|
834
834
|
/**
|
|
835
|
-
* @public
|
|
836
835
|
* <p>The ISO-8601 formatted timestamp of the moment when the application was created.</p>
|
|
836
|
+
* @public
|
|
837
837
|
*/
|
|
838
838
|
creationTime?: Date;
|
|
839
839
|
/**
|
|
840
|
-
* @public
|
|
841
840
|
* <p>The ISO-8601 formatted timestamp of the moment when the application was last updated.</p>
|
|
841
|
+
* @public
|
|
842
842
|
*/
|
|
843
843
|
lastUpdateTime?: Date;
|
|
844
844
|
/**
|
|
845
|
-
* @public
|
|
846
845
|
* <p>The number of top-level resources that were registered as part of this application.</p>
|
|
846
|
+
* @public
|
|
847
847
|
*/
|
|
848
848
|
associatedResourceCount?: number;
|
|
849
849
|
/**
|
|
850
|
-
* @public
|
|
851
850
|
* <p>Key-value pairs associated with the application.</p>
|
|
851
|
+
* @public
|
|
852
852
|
*/
|
|
853
853
|
tags?: Record<string, string>;
|
|
854
854
|
/**
|
|
855
|
-
* @public
|
|
856
855
|
* <p>
|
|
857
856
|
* The information
|
|
858
857
|
* about the integration
|
|
@@ -861,13 +860,14 @@ export interface GetApplicationResponse {
|
|
|
861
860
|
* such as
|
|
862
861
|
* Resource Groups.
|
|
863
862
|
* </p>
|
|
863
|
+
* @public
|
|
864
864
|
*/
|
|
865
865
|
integrations?: Integrations;
|
|
866
866
|
/**
|
|
867
|
-
* @public
|
|
868
867
|
* <p>
|
|
869
868
|
* A key-value pair that identifies an associated resource.
|
|
870
869
|
* </p>
|
|
870
|
+
* @public
|
|
871
871
|
*/
|
|
872
872
|
applicationTag?: Record<string, string>;
|
|
873
873
|
}
|
|
@@ -890,81 +890,81 @@ export type ResourceItemStatus = (typeof ResourceItemStatus)[keyof typeof Resour
|
|
|
890
890
|
*/
|
|
891
891
|
export interface GetAssociatedResourceRequest {
|
|
892
892
|
/**
|
|
893
|
-
* @public
|
|
894
893
|
* <p>
|
|
895
894
|
* The name, ID, or ARN
|
|
896
895
|
* of the application.
|
|
897
896
|
* </p>
|
|
897
|
+
* @public
|
|
898
898
|
*/
|
|
899
899
|
application: string | undefined;
|
|
900
900
|
/**
|
|
901
|
-
* @public
|
|
902
901
|
* <p>The type of resource associated with the application.</p>
|
|
902
|
+
* @public
|
|
903
903
|
*/
|
|
904
904
|
resourceType: ResourceType | undefined;
|
|
905
905
|
/**
|
|
906
|
-
* @public
|
|
907
906
|
* <p>The name or ID of the resource associated with the application.</p>
|
|
907
|
+
* @public
|
|
908
908
|
*/
|
|
909
909
|
resource: string | undefined;
|
|
910
910
|
/**
|
|
911
|
-
* @public
|
|
912
911
|
* <p>
|
|
913
912
|
* A unique pagination token for each page of results.
|
|
914
913
|
* Make the call again with the returned token to retrieve the next page of results.
|
|
915
914
|
* </p>
|
|
915
|
+
* @public
|
|
916
916
|
*/
|
|
917
917
|
nextToken?: string;
|
|
918
918
|
/**
|
|
919
|
-
* @public
|
|
920
919
|
* <p>
|
|
921
920
|
* States whether an application tag is applied, not applied, in the process of being applied, or skipped.
|
|
922
921
|
* </p>
|
|
922
|
+
* @public
|
|
923
923
|
*/
|
|
924
924
|
resourceTagStatus?: ResourceItemStatus[];
|
|
925
925
|
/**
|
|
926
|
-
* @public
|
|
927
926
|
* <p>
|
|
928
927
|
* The maximum number of results to return. If the parameter is omitted, it defaults to 25. The value is optional.
|
|
929
928
|
* </p>
|
|
929
|
+
* @public
|
|
930
930
|
*/
|
|
931
931
|
maxResults?: number;
|
|
932
932
|
}
|
|
933
933
|
/**
|
|
934
|
-
* @public
|
|
935
934
|
* <p>The service integration information about the resource.</p>
|
|
935
|
+
* @public
|
|
936
936
|
*/
|
|
937
937
|
export interface ResourceIntegrations {
|
|
938
938
|
/**
|
|
939
|
-
* @public
|
|
940
939
|
* <p>The information about the integration of Resource Groups.</p>
|
|
940
|
+
* @public
|
|
941
941
|
*/
|
|
942
942
|
resourceGroup?: ResourceGroup;
|
|
943
943
|
}
|
|
944
944
|
/**
|
|
945
|
-
* @public
|
|
946
945
|
* <p> The information about the resource.</p>
|
|
946
|
+
* @public
|
|
947
947
|
*/
|
|
948
948
|
export interface Resource {
|
|
949
949
|
/**
|
|
950
|
-
* @public
|
|
951
950
|
* <p>The name of the resource.</p>
|
|
951
|
+
* @public
|
|
952
952
|
*/
|
|
953
953
|
name?: string;
|
|
954
954
|
/**
|
|
955
|
-
* @public
|
|
956
955
|
* <p>The Amazon resource name (ARN) of the resource.</p>
|
|
956
|
+
* @public
|
|
957
957
|
*/
|
|
958
958
|
arn?: string;
|
|
959
959
|
/**
|
|
960
|
-
* @public
|
|
961
960
|
* <p>The time the resource was associated with the application.</p>
|
|
961
|
+
* @public
|
|
962
962
|
*/
|
|
963
963
|
associationTime?: Date;
|
|
964
964
|
/**
|
|
965
|
-
* @public
|
|
966
965
|
* <p>The service integration information about the resource.
|
|
967
966
|
* </p>
|
|
967
|
+
* @public
|
|
968
968
|
*/
|
|
969
969
|
integrations?: ResourceIntegrations;
|
|
970
970
|
}
|
|
@@ -973,22 +973,22 @@ export interface Resource {
|
|
|
973
973
|
*/
|
|
974
974
|
export interface GetAssociatedResourceResponse {
|
|
975
975
|
/**
|
|
976
|
-
* @public
|
|
977
976
|
* <p>The resource associated with the application.</p>
|
|
977
|
+
* @public
|
|
978
978
|
*/
|
|
979
979
|
resource?: Resource;
|
|
980
980
|
/**
|
|
981
|
-
* @public
|
|
982
981
|
* <p>
|
|
983
982
|
* Determines whether an application tag is applied or skipped.
|
|
984
983
|
* </p>
|
|
984
|
+
* @public
|
|
985
985
|
*/
|
|
986
986
|
options?: AssociationOption[];
|
|
987
987
|
/**
|
|
988
|
-
* @public
|
|
989
988
|
* <p>
|
|
990
989
|
* The result of the application that's tag applied to a resource.
|
|
991
990
|
* </p>
|
|
991
|
+
* @public
|
|
992
992
|
*/
|
|
993
993
|
applicationTagResult?: ApplicationTagResult;
|
|
994
994
|
}
|
|
@@ -997,13 +997,13 @@ export interface GetAssociatedResourceResponse {
|
|
|
997
997
|
*/
|
|
998
998
|
export interface GetAttributeGroupRequest {
|
|
999
999
|
/**
|
|
1000
|
-
* @public
|
|
1001
1000
|
* <p>
|
|
1002
1001
|
* The name, ID, or ARN
|
|
1003
1002
|
* of the attribute group
|
|
1004
1003
|
* that holds the attributes
|
|
1005
1004
|
* to describe the application.
|
|
1006
1005
|
* </p>
|
|
1006
|
+
* @public
|
|
1007
1007
|
*/
|
|
1008
1008
|
attributeGroup: string | undefined;
|
|
1009
1009
|
}
|
|
@@ -1012,48 +1012,48 @@ export interface GetAttributeGroupRequest {
|
|
|
1012
1012
|
*/
|
|
1013
1013
|
export interface GetAttributeGroupResponse {
|
|
1014
1014
|
/**
|
|
1015
|
-
* @public
|
|
1016
1015
|
* <p>The identifier of the attribute group.</p>
|
|
1016
|
+
* @public
|
|
1017
1017
|
*/
|
|
1018
1018
|
id?: string;
|
|
1019
1019
|
/**
|
|
1020
|
-
* @public
|
|
1021
1020
|
* <p>The Amazon resource name (ARN) that specifies the attribute group across services.</p>
|
|
1021
|
+
* @public
|
|
1022
1022
|
*/
|
|
1023
1023
|
arn?: string;
|
|
1024
1024
|
/**
|
|
1025
|
-
* @public
|
|
1026
1025
|
* <p>The name of the attribute group.</p>
|
|
1026
|
+
* @public
|
|
1027
1027
|
*/
|
|
1028
1028
|
name?: string;
|
|
1029
1029
|
/**
|
|
1030
|
-
* @public
|
|
1031
1030
|
* <p>The description of the attribute group that the user provides.</p>
|
|
1031
|
+
* @public
|
|
1032
1032
|
*/
|
|
1033
1033
|
description?: string;
|
|
1034
1034
|
/**
|
|
1035
|
-
* @public
|
|
1036
1035
|
* <p>A JSON string in the form of nested key-value pairs that represent the attributes in the group and describes an application and its components.</p>
|
|
1036
|
+
* @public
|
|
1037
1037
|
*/
|
|
1038
1038
|
attributes?: string;
|
|
1039
1039
|
/**
|
|
1040
|
-
* @public
|
|
1041
1040
|
* <p>The ISO-8601 formatted timestamp of the moment the attribute group was created.</p>
|
|
1041
|
+
* @public
|
|
1042
1042
|
*/
|
|
1043
1043
|
creationTime?: Date;
|
|
1044
1044
|
/**
|
|
1045
|
-
* @public
|
|
1046
1045
|
* <p>The ISO-8601 formatted timestamp of the moment the attribute group was last updated. This time is the same as the creationTime for a newly created attribute group.</p>
|
|
1046
|
+
* @public
|
|
1047
1047
|
*/
|
|
1048
1048
|
lastUpdateTime?: Date;
|
|
1049
1049
|
/**
|
|
1050
|
-
* @public
|
|
1051
1050
|
* <p>Key-value pairs associated with the attribute group.</p>
|
|
1051
|
+
* @public
|
|
1052
1052
|
*/
|
|
1053
1053
|
tags?: Record<string, string>;
|
|
1054
1054
|
/**
|
|
1055
|
-
* @public
|
|
1056
1055
|
* <p>The service principal that created the attribute group.</p>
|
|
1056
|
+
* @public
|
|
1057
1057
|
*/
|
|
1058
1058
|
createdBy?: string;
|
|
1059
1059
|
}
|
|
@@ -1062,11 +1062,11 @@ export interface GetAttributeGroupResponse {
|
|
|
1062
1062
|
*/
|
|
1063
1063
|
export interface GetConfigurationResponse {
|
|
1064
1064
|
/**
|
|
1065
|
-
* @public
|
|
1066
1065
|
* <p>
|
|
1067
1066
|
* Retrieves <code>TagKey</code> configuration
|
|
1068
1067
|
* from an account.
|
|
1069
1068
|
* </p>
|
|
1069
|
+
* @public
|
|
1070
1070
|
*/
|
|
1071
1071
|
configuration?: AppRegistryConfiguration;
|
|
1072
1072
|
}
|
|
@@ -1075,13 +1075,13 @@ export interface GetConfigurationResponse {
|
|
|
1075
1075
|
*/
|
|
1076
1076
|
export interface ListApplicationsRequest {
|
|
1077
1077
|
/**
|
|
1078
|
-
* @public
|
|
1079
1078
|
* <p>The token to use to get the next page of results after a previous API call. </p>
|
|
1079
|
+
* @public
|
|
1080
1080
|
*/
|
|
1081
1081
|
nextToken?: string;
|
|
1082
1082
|
/**
|
|
1083
|
-
* @public
|
|
1084
1083
|
* <p>The upper bound of the number of results to return (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional.</p>
|
|
1084
|
+
* @public
|
|
1085
1085
|
*/
|
|
1086
1086
|
maxResults?: number;
|
|
1087
1087
|
}
|
|
@@ -1090,13 +1090,13 @@ export interface ListApplicationsRequest {
|
|
|
1090
1090
|
*/
|
|
1091
1091
|
export interface ListApplicationsResponse {
|
|
1092
1092
|
/**
|
|
1093
|
-
* @public
|
|
1094
1093
|
* <p>This list of applications.</p>
|
|
1094
|
+
* @public
|
|
1095
1095
|
*/
|
|
1096
1096
|
applications?: ApplicationSummary[];
|
|
1097
1097
|
/**
|
|
1098
|
-
* @public
|
|
1099
1098
|
* <p>The token to use to get the next page of results after a previous API call. </p>
|
|
1099
|
+
* @public
|
|
1100
1100
|
*/
|
|
1101
1101
|
nextToken?: string;
|
|
1102
1102
|
}
|
|
@@ -1105,18 +1105,18 @@ export interface ListApplicationsResponse {
|
|
|
1105
1105
|
*/
|
|
1106
1106
|
export interface ListAssociatedAttributeGroupsRequest {
|
|
1107
1107
|
/**
|
|
1108
|
-
* @public
|
|
1109
1108
|
* <p>The name or ID of the application.</p>
|
|
1109
|
+
* @public
|
|
1110
1110
|
*/
|
|
1111
1111
|
application: string | undefined;
|
|
1112
1112
|
/**
|
|
1113
|
-
* @public
|
|
1114
1113
|
* <p>The token to use to get the next page of results after a previous API call. </p>
|
|
1114
|
+
* @public
|
|
1115
1115
|
*/
|
|
1116
1116
|
nextToken?: string;
|
|
1117
1117
|
/**
|
|
1118
|
-
* @public
|
|
1119
1118
|
* <p>The upper bound of the number of results to return (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional.</p>
|
|
1119
|
+
* @public
|
|
1120
1120
|
*/
|
|
1121
1121
|
maxResults?: number;
|
|
1122
1122
|
}
|
|
@@ -1125,13 +1125,13 @@ export interface ListAssociatedAttributeGroupsRequest {
|
|
|
1125
1125
|
*/
|
|
1126
1126
|
export interface ListAssociatedAttributeGroupsResponse {
|
|
1127
1127
|
/**
|
|
1128
|
-
* @public
|
|
1129
1128
|
* <p>A list of attribute group IDs.</p>
|
|
1129
|
+
* @public
|
|
1130
1130
|
*/
|
|
1131
1131
|
attributeGroups?: string[];
|
|
1132
1132
|
/**
|
|
1133
|
-
* @public
|
|
1134
1133
|
* <p>The token to use to get the next page of results after a previous API call. </p>
|
|
1134
|
+
* @public
|
|
1135
1135
|
*/
|
|
1136
1136
|
nextToken?: string;
|
|
1137
1137
|
}
|
|
@@ -1140,77 +1140,77 @@ export interface ListAssociatedAttributeGroupsResponse {
|
|
|
1140
1140
|
*/
|
|
1141
1141
|
export interface ListAssociatedResourcesRequest {
|
|
1142
1142
|
/**
|
|
1143
|
-
* @public
|
|
1144
1143
|
* <p>
|
|
1145
1144
|
* The name, ID, or ARN
|
|
1146
1145
|
* of the application.
|
|
1147
1146
|
* </p>
|
|
1147
|
+
* @public
|
|
1148
1148
|
*/
|
|
1149
1149
|
application: string | undefined;
|
|
1150
1150
|
/**
|
|
1151
|
-
* @public
|
|
1152
1151
|
* <p>The token to use to get the next page of results after a previous API call. </p>
|
|
1152
|
+
* @public
|
|
1153
1153
|
*/
|
|
1154
1154
|
nextToken?: string;
|
|
1155
1155
|
/**
|
|
1156
|
-
* @public
|
|
1157
1156
|
* <p>The upper bound of the number of results to return (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional.</p>
|
|
1157
|
+
* @public
|
|
1158
1158
|
*/
|
|
1159
1159
|
maxResults?: number;
|
|
1160
1160
|
}
|
|
1161
1161
|
/**
|
|
1162
|
-
* @public
|
|
1163
1162
|
* <p>
|
|
1164
1163
|
* The details
|
|
1165
1164
|
* related
|
|
1166
1165
|
* to the
|
|
1167
1166
|
* resource.
|
|
1168
1167
|
* </p>
|
|
1168
|
+
* @public
|
|
1169
1169
|
*/
|
|
1170
1170
|
export interface ResourceDetails {
|
|
1171
1171
|
/**
|
|
1172
|
-
* @public
|
|
1173
1172
|
* <p>The value of the tag.</p>
|
|
1173
|
+
* @public
|
|
1174
1174
|
*/
|
|
1175
1175
|
tagValue?: string;
|
|
1176
1176
|
}
|
|
1177
1177
|
/**
|
|
1178
|
-
* @public
|
|
1179
1178
|
* <p>The information about the resource.</p>
|
|
1179
|
+
* @public
|
|
1180
1180
|
*/
|
|
1181
1181
|
export interface ResourceInfo {
|
|
1182
1182
|
/**
|
|
1183
|
-
* @public
|
|
1184
1183
|
* <p>The name of the resource.</p>
|
|
1184
|
+
* @public
|
|
1185
1185
|
*/
|
|
1186
1186
|
name?: string;
|
|
1187
1187
|
/**
|
|
1188
|
-
* @public
|
|
1189
1188
|
* <p>The Amazon resource name (ARN) that specifies the resource across services.</p>
|
|
1189
|
+
* @public
|
|
1190
1190
|
*/
|
|
1191
1191
|
arn?: string;
|
|
1192
1192
|
/**
|
|
1193
|
-
* @public
|
|
1194
1193
|
* <p>
|
|
1195
1194
|
* Provides information
|
|
1196
1195
|
* about the Service Catalog App Registry resource type.
|
|
1197
1196
|
* </p>
|
|
1197
|
+
* @public
|
|
1198
1198
|
*/
|
|
1199
1199
|
resourceType?: ResourceType;
|
|
1200
1200
|
/**
|
|
1201
|
-
* @public
|
|
1202
1201
|
* <p>
|
|
1203
1202
|
* The details related
|
|
1204
1203
|
* to
|
|
1205
1204
|
* the resource.
|
|
1206
1205
|
* </p>
|
|
1206
|
+
* @public
|
|
1207
1207
|
*/
|
|
1208
1208
|
resourceDetails?: ResourceDetails;
|
|
1209
1209
|
/**
|
|
1210
|
-
* @public
|
|
1211
1210
|
* <p>
|
|
1212
1211
|
* Determines whether an application tag is applied or skipped.
|
|
1213
1212
|
* </p>
|
|
1213
|
+
* @public
|
|
1214
1214
|
*/
|
|
1215
1215
|
options?: AssociationOption[];
|
|
1216
1216
|
}
|
|
@@ -1219,13 +1219,13 @@ export interface ResourceInfo {
|
|
|
1219
1219
|
*/
|
|
1220
1220
|
export interface ListAssociatedResourcesResponse {
|
|
1221
1221
|
/**
|
|
1222
|
-
* @public
|
|
1223
1222
|
* <p>Information about the resources.</p>
|
|
1223
|
+
* @public
|
|
1224
1224
|
*/
|
|
1225
1225
|
resources?: ResourceInfo[];
|
|
1226
1226
|
/**
|
|
1227
|
-
* @public
|
|
1228
1227
|
* <p>The token to use to get the next page of results after a previous API call. </p>
|
|
1228
|
+
* @public
|
|
1229
1229
|
*/
|
|
1230
1230
|
nextToken?: string;
|
|
1231
1231
|
}
|
|
@@ -1234,13 +1234,13 @@ export interface ListAssociatedResourcesResponse {
|
|
|
1234
1234
|
*/
|
|
1235
1235
|
export interface ListAttributeGroupsRequest {
|
|
1236
1236
|
/**
|
|
1237
|
-
* @public
|
|
1238
1237
|
* <p>The token to use to get the next page of results after a previous API call. </p>
|
|
1238
|
+
* @public
|
|
1239
1239
|
*/
|
|
1240
1240
|
nextToken?: string;
|
|
1241
1241
|
/**
|
|
1242
|
-
* @public
|
|
1243
1242
|
* <p>The upper bound of the number of results to return (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional.</p>
|
|
1243
|
+
* @public
|
|
1244
1244
|
*/
|
|
1245
1245
|
maxResults?: number;
|
|
1246
1246
|
}
|
|
@@ -1249,13 +1249,13 @@ export interface ListAttributeGroupsRequest {
|
|
|
1249
1249
|
*/
|
|
1250
1250
|
export interface ListAttributeGroupsResponse {
|
|
1251
1251
|
/**
|
|
1252
|
-
* @public
|
|
1253
1252
|
* <p>This list of attribute groups.</p>
|
|
1253
|
+
* @public
|
|
1254
1254
|
*/
|
|
1255
1255
|
attributeGroups?: AttributeGroupSummary[];
|
|
1256
1256
|
/**
|
|
1257
|
-
* @public
|
|
1258
1257
|
* <p>The token to use to get the next page of results after a previous API call. </p>
|
|
1258
|
+
* @public
|
|
1259
1259
|
*/
|
|
1260
1260
|
nextToken?: string;
|
|
1261
1261
|
}
|
|
@@ -1264,18 +1264,18 @@ export interface ListAttributeGroupsResponse {
|
|
|
1264
1264
|
*/
|
|
1265
1265
|
export interface ListAttributeGroupsForApplicationRequest {
|
|
1266
1266
|
/**
|
|
1267
|
-
* @public
|
|
1268
1267
|
* <p>The name or ID of the application.</p>
|
|
1268
|
+
* @public
|
|
1269
1269
|
*/
|
|
1270
1270
|
application: string | undefined;
|
|
1271
1271
|
/**
|
|
1272
|
-
* @public
|
|
1273
1272
|
* <p>This token retrieves the next page of results after a previous API call.</p>
|
|
1273
|
+
* @public
|
|
1274
1274
|
*/
|
|
1275
1275
|
nextToken?: string;
|
|
1276
1276
|
/**
|
|
1277
|
-
* @public
|
|
1278
1277
|
* <p>The upper bound of the number of results to return. The value cannot exceed 25. If you omit this parameter, it defaults to 25. This value is optional.</p>
|
|
1278
|
+
* @public
|
|
1279
1279
|
*/
|
|
1280
1280
|
maxResults?: number;
|
|
1281
1281
|
}
|
|
@@ -1284,13 +1284,13 @@ export interface ListAttributeGroupsForApplicationRequest {
|
|
|
1284
1284
|
*/
|
|
1285
1285
|
export interface ListAttributeGroupsForApplicationResponse {
|
|
1286
1286
|
/**
|
|
1287
|
-
* @public
|
|
1288
1287
|
* <p> The details related to a specific attribute group. </p>
|
|
1288
|
+
* @public
|
|
1289
1289
|
*/
|
|
1290
1290
|
attributeGroupsDetails?: AttributeGroupDetails[];
|
|
1291
1291
|
/**
|
|
1292
|
-
* @public
|
|
1293
1292
|
* <p>The token to use to get the next page of results after a previous API call.</p>
|
|
1293
|
+
* @public
|
|
1294
1294
|
*/
|
|
1295
1295
|
nextToken?: string;
|
|
1296
1296
|
}
|
|
@@ -1299,8 +1299,8 @@ export interface ListAttributeGroupsForApplicationResponse {
|
|
|
1299
1299
|
*/
|
|
1300
1300
|
export interface ListTagsForResourceRequest {
|
|
1301
1301
|
/**
|
|
1302
|
-
* @public
|
|
1303
1302
|
* <p>The Amazon resource name (ARN) that specifies the resource.</p>
|
|
1303
|
+
* @public
|
|
1304
1304
|
*/
|
|
1305
1305
|
resourceArn: string | undefined;
|
|
1306
1306
|
}
|
|
@@ -1309,8 +1309,8 @@ export interface ListTagsForResourceRequest {
|
|
|
1309
1309
|
*/
|
|
1310
1310
|
export interface ListTagsForResourceResponse {
|
|
1311
1311
|
/**
|
|
1312
|
-
* @public
|
|
1313
1312
|
* <p>The tags on the resource.</p>
|
|
1313
|
+
* @public
|
|
1314
1314
|
*/
|
|
1315
1315
|
tags?: Record<string, string>;
|
|
1316
1316
|
}
|
|
@@ -1319,11 +1319,11 @@ export interface ListTagsForResourceResponse {
|
|
|
1319
1319
|
*/
|
|
1320
1320
|
export interface PutConfigurationRequest {
|
|
1321
1321
|
/**
|
|
1322
|
-
* @public
|
|
1323
1322
|
* <p>
|
|
1324
1323
|
* Associates a <code>TagKey</code> configuration
|
|
1325
1324
|
* to an account.
|
|
1326
1325
|
* </p>
|
|
1326
|
+
* @public
|
|
1327
1327
|
*/
|
|
1328
1328
|
configuration: AppRegistryConfiguration | undefined;
|
|
1329
1329
|
}
|
|
@@ -1332,13 +1332,13 @@ export interface PutConfigurationRequest {
|
|
|
1332
1332
|
*/
|
|
1333
1333
|
export interface SyncResourceRequest {
|
|
1334
1334
|
/**
|
|
1335
|
-
* @public
|
|
1336
1335
|
* <p>The type of resource of which the application will be associated.</p>
|
|
1336
|
+
* @public
|
|
1337
1337
|
*/
|
|
1338
1338
|
resourceType: ResourceType | undefined;
|
|
1339
1339
|
/**
|
|
1340
|
-
* @public
|
|
1341
1340
|
* <p>An entity you can work with and specify with a name or ID. Examples include an Amazon EC2 instance, an Amazon Web Services CloudFormation stack, or an Amazon S3 bucket.</p>
|
|
1341
|
+
* @public
|
|
1342
1342
|
*/
|
|
1343
1343
|
resource: string | undefined;
|
|
1344
1344
|
}
|
|
@@ -1359,18 +1359,18 @@ export type SyncAction = (typeof SyncAction)[keyof typeof SyncAction];
|
|
|
1359
1359
|
*/
|
|
1360
1360
|
export interface SyncResourceResponse {
|
|
1361
1361
|
/**
|
|
1362
|
-
* @public
|
|
1363
1362
|
* <p>The Amazon resource name (ARN) that specifies the application.</p>
|
|
1363
|
+
* @public
|
|
1364
1364
|
*/
|
|
1365
1365
|
applicationArn?: string;
|
|
1366
1366
|
/**
|
|
1367
|
-
* @public
|
|
1368
1367
|
* <p>The Amazon resource name (ARN) that specifies the resource.</p>
|
|
1368
|
+
* @public
|
|
1369
1369
|
*/
|
|
1370
1370
|
resourceArn?: string;
|
|
1371
1371
|
/**
|
|
1372
|
-
* @public
|
|
1373
1372
|
* <p>The results of the output if an application is associated with an ARN value, which could be <code>syncStarted</code> or None.</p>
|
|
1373
|
+
* @public
|
|
1374
1374
|
*/
|
|
1375
1375
|
actionTaken?: SyncAction;
|
|
1376
1376
|
}
|
|
@@ -1379,13 +1379,13 @@ export interface SyncResourceResponse {
|
|
|
1379
1379
|
*/
|
|
1380
1380
|
export interface TagResourceRequest {
|
|
1381
1381
|
/**
|
|
1382
|
-
* @public
|
|
1383
1382
|
* <p>The Amazon resource name (ARN) that specifies the resource.</p>
|
|
1383
|
+
* @public
|
|
1384
1384
|
*/
|
|
1385
1385
|
resourceArn: string | undefined;
|
|
1386
1386
|
/**
|
|
1387
|
-
* @public
|
|
1388
1387
|
* <p>The new or modified tags for the resource.</p>
|
|
1388
|
+
* @public
|
|
1389
1389
|
*/
|
|
1390
1390
|
tags: Record<string, string> | undefined;
|
|
1391
1391
|
}
|
|
@@ -1399,13 +1399,13 @@ export interface TagResourceResponse {
|
|
|
1399
1399
|
*/
|
|
1400
1400
|
export interface UntagResourceRequest {
|
|
1401
1401
|
/**
|
|
1402
|
-
* @public
|
|
1403
1402
|
* <p>The Amazon resource name (ARN) that specifies the resource.</p>
|
|
1403
|
+
* @public
|
|
1404
1404
|
*/
|
|
1405
1405
|
resourceArn: string | undefined;
|
|
1406
1406
|
/**
|
|
1407
|
-
* @public
|
|
1408
1407
|
* <p>A list of the tag keys to remove from the specified resource.</p>
|
|
1408
|
+
* @public
|
|
1409
1409
|
*/
|
|
1410
1410
|
tagKeys: string[] | undefined;
|
|
1411
1411
|
}
|
|
@@ -1419,25 +1419,25 @@ export interface UntagResourceResponse {
|
|
|
1419
1419
|
*/
|
|
1420
1420
|
export interface UpdateApplicationRequest {
|
|
1421
1421
|
/**
|
|
1422
|
-
* @public
|
|
1423
1422
|
* <p>
|
|
1424
1423
|
* The name, ID, or ARN
|
|
1425
1424
|
* of the application
|
|
1426
1425
|
* that will be updated.
|
|
1427
1426
|
* </p>
|
|
1427
|
+
* @public
|
|
1428
1428
|
*/
|
|
1429
1429
|
application: string | undefined;
|
|
1430
1430
|
/**
|
|
1431
|
-
* @public
|
|
1432
1431
|
* @deprecated
|
|
1433
1432
|
*
|
|
1434
1433
|
* <p>Deprecated: The new name of the application. The name must be unique in the region in which you are
|
|
1435
1434
|
* updating the application. Please do not use this field as we have stopped supporting name updates.</p>
|
|
1435
|
+
* @public
|
|
1436
1436
|
*/
|
|
1437
1437
|
name?: string;
|
|
1438
1438
|
/**
|
|
1439
|
-
* @public
|
|
1440
1439
|
* <p>The new description of the application.</p>
|
|
1440
|
+
* @public
|
|
1441
1441
|
*/
|
|
1442
1442
|
description?: string;
|
|
1443
1443
|
}
|
|
@@ -1446,8 +1446,8 @@ export interface UpdateApplicationRequest {
|
|
|
1446
1446
|
*/
|
|
1447
1447
|
export interface UpdateApplicationResponse {
|
|
1448
1448
|
/**
|
|
1449
|
-
* @public
|
|
1450
1449
|
* <p>The updated information of the application.</p>
|
|
1450
|
+
* @public
|
|
1451
1451
|
*/
|
|
1452
1452
|
application?: Application;
|
|
1453
1453
|
}
|
|
@@ -1456,31 +1456,31 @@ export interface UpdateApplicationResponse {
|
|
|
1456
1456
|
*/
|
|
1457
1457
|
export interface UpdateAttributeGroupRequest {
|
|
1458
1458
|
/**
|
|
1459
|
-
* @public
|
|
1460
1459
|
* <p>
|
|
1461
1460
|
* The name, ID, or ARN
|
|
1462
1461
|
* of the attribute group
|
|
1463
1462
|
* that holds the attributes
|
|
1464
1463
|
* to describe the application.
|
|
1465
1464
|
* </p>
|
|
1465
|
+
* @public
|
|
1466
1466
|
*/
|
|
1467
1467
|
attributeGroup: string | undefined;
|
|
1468
1468
|
/**
|
|
1469
|
-
* @public
|
|
1470
1469
|
* @deprecated
|
|
1471
1470
|
*
|
|
1472
1471
|
* <p>Deprecated: The new name of the attribute group. The name must be unique in the region in which you are
|
|
1473
1472
|
* updating the attribute group. Please do not use this field as we have stopped supporting name updates.</p>
|
|
1473
|
+
* @public
|
|
1474
1474
|
*/
|
|
1475
1475
|
name?: string;
|
|
1476
1476
|
/**
|
|
1477
|
-
* @public
|
|
1478
1477
|
* <p>The description of the attribute group that the user provides.</p>
|
|
1478
|
+
* @public
|
|
1479
1479
|
*/
|
|
1480
1480
|
description?: string;
|
|
1481
1481
|
/**
|
|
1482
|
-
* @public
|
|
1483
1482
|
* <p>A JSON string in the form of nested key-value pairs that represent the attributes in the group and describes an application and its components.</p>
|
|
1483
|
+
* @public
|
|
1484
1484
|
*/
|
|
1485
1485
|
attributes?: string;
|
|
1486
1486
|
}
|
|
@@ -1489,8 +1489,8 @@ export interface UpdateAttributeGroupRequest {
|
|
|
1489
1489
|
*/
|
|
1490
1490
|
export interface UpdateAttributeGroupResponse {
|
|
1491
1491
|
/**
|
|
1492
|
-
* @public
|
|
1493
1492
|
* <p>The updated information of the attribute group.</p>
|
|
1493
|
+
* @public
|
|
1494
1494
|
*/
|
|
1495
1495
|
attributeGroup?: AttributeGroup;
|
|
1496
1496
|
}
|