@aws-sdk/client-service-catalog-appregistry 3.687.0 → 3.692.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.
@@ -1,22 +1,22 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { ServiceCatalogAppRegistryServiceException as __BaseException } from "./ServiceCatalogAppRegistryServiceException";
3
3
  export interface Application {
4
- id?: string;
5
- arn?: string;
6
- name?: string;
7
- description?: string;
8
- creationTime?: Date;
9
- lastUpdateTime?: Date;
10
- tags?: Record<string, string>;
11
- applicationTag?: Record<string, string>;
4
+ id?: string | undefined;
5
+ arn?: string | undefined;
6
+ name?: string | undefined;
7
+ description?: string | undefined;
8
+ creationTime?: Date | undefined;
9
+ lastUpdateTime?: Date | undefined;
10
+ tags?: Record<string, string> | undefined;
11
+ applicationTag?: Record<string, string> | undefined;
12
12
  }
13
13
  export interface ApplicationSummary {
14
- id?: string;
15
- arn?: string;
16
- name?: string;
17
- description?: string;
18
- creationTime?: Date;
19
- lastUpdateTime?: Date;
14
+ id?: string | undefined;
15
+ arn?: string | undefined;
16
+ name?: string | undefined;
17
+ description?: string | undefined;
18
+ creationTime?: Date | undefined;
19
+ lastUpdateTime?: Date | undefined;
20
20
  }
21
21
  export declare const ApplicationTagStatus: {
22
22
  readonly FAILURE: "FAILURE";
@@ -26,30 +26,30 @@ export declare const ApplicationTagStatus: {
26
26
  export type ApplicationTagStatus =
27
27
  (typeof ApplicationTagStatus)[keyof typeof ApplicationTagStatus];
28
28
  export interface ResourcesListItem {
29
- resourceArn?: string;
30
- errorMessage?: string;
31
- status?: string;
32
- resourceType?: string;
29
+ resourceArn?: string | undefined;
30
+ errorMessage?: string | undefined;
31
+ status?: string | undefined;
32
+ resourceType?: string | undefined;
33
33
  }
34
34
  export interface ApplicationTagResult {
35
- applicationTagStatus?: ApplicationTagStatus;
36
- errorMessage?: string;
37
- resources?: ResourcesListItem[];
38
- nextToken?: string;
35
+ applicationTagStatus?: ApplicationTagStatus | undefined;
36
+ errorMessage?: string | undefined;
37
+ resources?: ResourcesListItem[] | undefined;
38
+ nextToken?: string | undefined;
39
39
  }
40
40
  export interface TagQueryConfiguration {
41
- tagKey?: string;
41
+ tagKey?: string | undefined;
42
42
  }
43
43
  export interface AppRegistryConfiguration {
44
- tagQueryConfiguration?: TagQueryConfiguration;
44
+ tagQueryConfiguration?: TagQueryConfiguration | undefined;
45
45
  }
46
46
  export interface AssociateAttributeGroupRequest {
47
47
  application: string | undefined;
48
48
  attributeGroup: string | undefined;
49
49
  }
50
50
  export interface AssociateAttributeGroupResponse {
51
- applicationArn?: string;
52
- attributeGroupArn?: string;
51
+ applicationArn?: string | undefined;
52
+ attributeGroupArn?: string | undefined;
53
53
  }
54
54
  export declare class ConflictException extends __BaseException {
55
55
  readonly name: "ConflictException";
@@ -99,83 +99,83 @@ export interface AssociateResourceRequest {
99
99
  application: string | undefined;
100
100
  resourceType: ResourceType | undefined;
101
101
  resource: string | undefined;
102
- options?: AssociationOption[];
102
+ options?: AssociationOption[] | undefined;
103
103
  }
104
104
  export interface AssociateResourceResponse {
105
- applicationArn?: string;
106
- resourceArn?: string;
107
- options?: AssociationOption[];
105
+ applicationArn?: string | undefined;
106
+ resourceArn?: string | undefined;
107
+ options?: AssociationOption[] | undefined;
108
108
  }
109
109
  export declare class ThrottlingException extends __BaseException {
110
110
  readonly name: "ThrottlingException";
111
111
  readonly $fault: "client";
112
- serviceCode?: string;
112
+ serviceCode?: string | undefined;
113
113
  constructor(
114
114
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
115
115
  );
116
116
  }
117
117
  export interface AttributeGroup {
118
- id?: string;
119
- arn?: string;
120
- name?: string;
121
- description?: string;
122
- creationTime?: Date;
123
- lastUpdateTime?: Date;
124
- tags?: Record<string, string>;
118
+ id?: string | undefined;
119
+ arn?: string | undefined;
120
+ name?: string | undefined;
121
+ description?: string | undefined;
122
+ creationTime?: Date | undefined;
123
+ lastUpdateTime?: Date | undefined;
124
+ tags?: Record<string, string> | undefined;
125
125
  }
126
126
  export interface AttributeGroupDetails {
127
- id?: string;
128
- arn?: string;
129
- name?: string;
130
- createdBy?: string;
127
+ id?: string | undefined;
128
+ arn?: string | undefined;
129
+ name?: string | undefined;
130
+ createdBy?: string | undefined;
131
131
  }
132
132
  export interface AttributeGroupSummary {
133
- id?: string;
134
- arn?: string;
135
- name?: string;
136
- description?: string;
137
- creationTime?: Date;
138
- lastUpdateTime?: Date;
139
- createdBy?: string;
133
+ id?: string | undefined;
134
+ arn?: string | undefined;
135
+ name?: string | undefined;
136
+ description?: string | undefined;
137
+ creationTime?: Date | undefined;
138
+ lastUpdateTime?: Date | undefined;
139
+ createdBy?: string | undefined;
140
140
  }
141
141
  export interface CreateApplicationRequest {
142
142
  name: string | undefined;
143
- description?: string;
144
- tags?: Record<string, string>;
145
- clientToken?: string;
143
+ description?: string | undefined;
144
+ tags?: Record<string, string> | undefined;
145
+ clientToken?: string | undefined;
146
146
  }
147
147
  export interface CreateApplicationResponse {
148
- application?: Application;
148
+ application?: Application | undefined;
149
149
  }
150
150
  export interface CreateAttributeGroupRequest {
151
151
  name: string | undefined;
152
- description?: string;
152
+ description?: string | undefined;
153
153
  attributes: string | undefined;
154
- tags?: Record<string, string>;
155
- clientToken?: string;
154
+ tags?: Record<string, string> | undefined;
155
+ clientToken?: string | undefined;
156
156
  }
157
157
  export interface CreateAttributeGroupResponse {
158
- attributeGroup?: AttributeGroup;
158
+ attributeGroup?: AttributeGroup | undefined;
159
159
  }
160
160
  export interface DeleteApplicationRequest {
161
161
  application: string | undefined;
162
162
  }
163
163
  export interface DeleteApplicationResponse {
164
- application?: ApplicationSummary;
164
+ application?: ApplicationSummary | undefined;
165
165
  }
166
166
  export interface DeleteAttributeGroupRequest {
167
167
  attributeGroup: string | undefined;
168
168
  }
169
169
  export interface DeleteAttributeGroupResponse {
170
- attributeGroup?: AttributeGroupSummary;
170
+ attributeGroup?: AttributeGroupSummary | undefined;
171
171
  }
172
172
  export interface DisassociateAttributeGroupRequest {
173
173
  application: string | undefined;
174
174
  attributeGroup: string | undefined;
175
175
  }
176
176
  export interface DisassociateAttributeGroupResponse {
177
- applicationArn?: string;
178
- attributeGroupArn?: string;
177
+ applicationArn?: string | undefined;
178
+ attributeGroupArn?: string | undefined;
179
179
  }
180
180
  export interface DisassociateResourceRequest {
181
181
  application: string | undefined;
@@ -183,8 +183,8 @@ export interface DisassociateResourceRequest {
183
183
  resource: string | undefined;
184
184
  }
185
185
  export interface DisassociateResourceResponse {
186
- applicationArn?: string;
187
- resourceArn?: string;
186
+ applicationArn?: string | undefined;
187
+ resourceArn?: string | undefined;
188
188
  }
189
189
  export interface GetApplicationRequest {
190
190
  application: string | undefined;
@@ -200,25 +200,25 @@ export declare const ResourceGroupState: {
200
200
  export type ResourceGroupState =
201
201
  (typeof ResourceGroupState)[keyof typeof ResourceGroupState];
202
202
  export interface ResourceGroup {
203
- state?: ResourceGroupState;
204
- arn?: string;
205
- errorMessage?: string;
203
+ state?: ResourceGroupState | undefined;
204
+ arn?: string | undefined;
205
+ errorMessage?: string | undefined;
206
206
  }
207
207
  export interface Integrations {
208
- resourceGroup?: ResourceGroup;
209
- applicationTagResourceGroup?: ResourceGroup;
208
+ resourceGroup?: ResourceGroup | undefined;
209
+ applicationTagResourceGroup?: ResourceGroup | undefined;
210
210
  }
211
211
  export interface GetApplicationResponse {
212
- id?: string;
213
- arn?: string;
214
- name?: string;
215
- description?: string;
216
- creationTime?: Date;
217
- lastUpdateTime?: Date;
218
- associatedResourceCount?: number;
219
- tags?: Record<string, string>;
220
- integrations?: Integrations;
221
- applicationTag?: Record<string, string>;
212
+ id?: string | undefined;
213
+ arn?: string | undefined;
214
+ name?: string | undefined;
215
+ description?: string | undefined;
216
+ creationTime?: Date | undefined;
217
+ lastUpdateTime?: Date | undefined;
218
+ associatedResourceCount?: number | undefined;
219
+ tags?: Record<string, string> | undefined;
220
+ integrations?: Integrations | undefined;
221
+ applicationTag?: Record<string, string> | undefined;
222
222
  }
223
223
  export declare const ResourceItemStatus: {
224
224
  readonly FAILED: "FAILED";
@@ -232,99 +232,99 @@ export interface GetAssociatedResourceRequest {
232
232
  application: string | undefined;
233
233
  resourceType: ResourceType | undefined;
234
234
  resource: string | undefined;
235
- nextToken?: string;
236
- resourceTagStatus?: ResourceItemStatus[];
237
- maxResults?: number;
235
+ nextToken?: string | undefined;
236
+ resourceTagStatus?: ResourceItemStatus[] | undefined;
237
+ maxResults?: number | undefined;
238
238
  }
239
239
  export interface ResourceIntegrations {
240
- resourceGroup?: ResourceGroup;
240
+ resourceGroup?: ResourceGroup | undefined;
241
241
  }
242
242
  export interface Resource {
243
- name?: string;
244
- arn?: string;
245
- associationTime?: Date;
246
- integrations?: ResourceIntegrations;
243
+ name?: string | undefined;
244
+ arn?: string | undefined;
245
+ associationTime?: Date | undefined;
246
+ integrations?: ResourceIntegrations | undefined;
247
247
  }
248
248
  export interface GetAssociatedResourceResponse {
249
- resource?: Resource;
250
- options?: AssociationOption[];
251
- applicationTagResult?: ApplicationTagResult;
249
+ resource?: Resource | undefined;
250
+ options?: AssociationOption[] | undefined;
251
+ applicationTagResult?: ApplicationTagResult | undefined;
252
252
  }
253
253
  export interface GetAttributeGroupRequest {
254
254
  attributeGroup: string | undefined;
255
255
  }
256
256
  export interface GetAttributeGroupResponse {
257
- id?: string;
258
- arn?: string;
259
- name?: string;
260
- description?: string;
261
- attributes?: string;
262
- creationTime?: Date;
263
- lastUpdateTime?: Date;
264
- tags?: Record<string, string>;
265
- createdBy?: string;
257
+ id?: string | undefined;
258
+ arn?: string | undefined;
259
+ name?: string | undefined;
260
+ description?: string | undefined;
261
+ attributes?: string | undefined;
262
+ creationTime?: Date | undefined;
263
+ lastUpdateTime?: Date | undefined;
264
+ tags?: Record<string, string> | undefined;
265
+ createdBy?: string | undefined;
266
266
  }
267
267
  export interface GetConfigurationResponse {
268
- configuration?: AppRegistryConfiguration;
268
+ configuration?: AppRegistryConfiguration | undefined;
269
269
  }
270
270
  export interface ListApplicationsRequest {
271
- nextToken?: string;
272
- maxResults?: number;
271
+ nextToken?: string | undefined;
272
+ maxResults?: number | undefined;
273
273
  }
274
274
  export interface ListApplicationsResponse {
275
- applications?: ApplicationSummary[];
276
- nextToken?: string;
275
+ applications?: ApplicationSummary[] | undefined;
276
+ nextToken?: string | undefined;
277
277
  }
278
278
  export interface ListAssociatedAttributeGroupsRequest {
279
279
  application: string | undefined;
280
- nextToken?: string;
281
- maxResults?: number;
280
+ nextToken?: string | undefined;
281
+ maxResults?: number | undefined;
282
282
  }
283
283
  export interface ListAssociatedAttributeGroupsResponse {
284
- attributeGroups?: string[];
285
- nextToken?: string;
284
+ attributeGroups?: string[] | undefined;
285
+ nextToken?: string | undefined;
286
286
  }
287
287
  export interface ListAssociatedResourcesRequest {
288
288
  application: string | undefined;
289
- nextToken?: string;
290
- maxResults?: number;
289
+ nextToken?: string | undefined;
290
+ maxResults?: number | undefined;
291
291
  }
292
292
  export interface ResourceDetails {
293
- tagValue?: string;
293
+ tagValue?: string | undefined;
294
294
  }
295
295
  export interface ResourceInfo {
296
- name?: string;
297
- arn?: string;
298
- resourceType?: ResourceType;
299
- resourceDetails?: ResourceDetails;
300
- options?: AssociationOption[];
296
+ name?: string | undefined;
297
+ arn?: string | undefined;
298
+ resourceType?: ResourceType | undefined;
299
+ resourceDetails?: ResourceDetails | undefined;
300
+ options?: AssociationOption[] | undefined;
301
301
  }
302
302
  export interface ListAssociatedResourcesResponse {
303
- resources?: ResourceInfo[];
304
- nextToken?: string;
303
+ resources?: ResourceInfo[] | undefined;
304
+ nextToken?: string | undefined;
305
305
  }
306
306
  export interface ListAttributeGroupsRequest {
307
- nextToken?: string;
308
- maxResults?: number;
307
+ nextToken?: string | undefined;
308
+ maxResults?: number | undefined;
309
309
  }
310
310
  export interface ListAttributeGroupsResponse {
311
- attributeGroups?: AttributeGroupSummary[];
312
- nextToken?: string;
311
+ attributeGroups?: AttributeGroupSummary[] | undefined;
312
+ nextToken?: string | undefined;
313
313
  }
314
314
  export interface ListAttributeGroupsForApplicationRequest {
315
315
  application: string | undefined;
316
- nextToken?: string;
317
- maxResults?: number;
316
+ nextToken?: string | undefined;
317
+ maxResults?: number | undefined;
318
318
  }
319
319
  export interface ListAttributeGroupsForApplicationResponse {
320
- attributeGroupsDetails?: AttributeGroupDetails[];
321
- nextToken?: string;
320
+ attributeGroupsDetails?: AttributeGroupDetails[] | undefined;
321
+ nextToken?: string | undefined;
322
322
  }
323
323
  export interface ListTagsForResourceRequest {
324
324
  resourceArn: string | undefined;
325
325
  }
326
326
  export interface ListTagsForResourceResponse {
327
- tags?: Record<string, string>;
327
+ tags?: Record<string, string> | undefined;
328
328
  }
329
329
  export interface PutConfigurationRequest {
330
330
  configuration: AppRegistryConfiguration | undefined;
@@ -339,9 +339,9 @@ export declare const SyncAction: {
339
339
  };
340
340
  export type SyncAction = (typeof SyncAction)[keyof typeof SyncAction];
341
341
  export interface SyncResourceResponse {
342
- applicationArn?: string;
343
- resourceArn?: string;
344
- actionTaken?: SyncAction;
342
+ applicationArn?: string | undefined;
343
+ resourceArn?: string | undefined;
344
+ actionTaken?: SyncAction | undefined;
345
345
  }
346
346
  export interface TagResourceRequest {
347
347
  resourceArn: string | undefined;
@@ -355,18 +355,18 @@ export interface UntagResourceRequest {
355
355
  export interface UntagResourceResponse {}
356
356
  export interface UpdateApplicationRequest {
357
357
  application: string | undefined;
358
- name?: string;
359
- description?: string;
358
+ name?: string | undefined;
359
+ description?: string | undefined;
360
360
  }
361
361
  export interface UpdateApplicationResponse {
362
- application?: Application;
362
+ application?: Application | undefined;
363
363
  }
364
364
  export interface UpdateAttributeGroupRequest {
365
365
  attributeGroup: string | undefined;
366
- name?: string;
367
- description?: string;
368
- attributes?: string;
366
+ name?: string | undefined;
367
+ description?: string | undefined;
368
+ attributes?: string | undefined;
369
369
  }
370
370
  export interface UpdateAttributeGroupResponse {
371
- attributeGroup?: AttributeGroup;
371
+ attributeGroup?: AttributeGroup | undefined;
372
372
  }
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.687.0",
4
+ "version": "3.692.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-service-catalog-appregistry",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.687.0",
24
- "@aws-sdk/client-sts": "3.687.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.687.0",
27
- "@aws-sdk/middleware-host-header": "3.686.0",
28
- "@aws-sdk/middleware-logger": "3.686.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.687.0",
31
- "@aws-sdk/region-config-resolver": "3.686.0",
32
- "@aws-sdk/types": "3.686.0",
33
- "@aws-sdk/util-endpoints": "3.686.0",
34
- "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.687.0",
36
- "@smithy/config-resolver": "^3.0.10",
37
- "@smithy/core": "^2.5.1",
38
- "@smithy/fetch-http-handler": "^4.0.0",
39
- "@smithy/hash-node": "^3.0.8",
40
- "@smithy/invalid-dependency": "^3.0.8",
41
- "@smithy/middleware-content-length": "^3.0.10",
42
- "@smithy/middleware-endpoint": "^3.2.1",
43
- "@smithy/middleware-retry": "^3.0.25",
44
- "@smithy/middleware-serde": "^3.0.8",
45
- "@smithy/middleware-stack": "^3.0.8",
46
- "@smithy/node-config-provider": "^3.1.9",
47
- "@smithy/node-http-handler": "^3.2.5",
48
- "@smithy/protocol-http": "^4.1.5",
49
- "@smithy/smithy-client": "^3.4.2",
50
- "@smithy/types": "^3.6.0",
51
- "@smithy/url-parser": "^3.0.8",
23
+ "@aws-sdk/client-sso-oidc": "3.692.0",
24
+ "@aws-sdk/client-sts": "3.692.0",
25
+ "@aws-sdk/core": "3.692.0",
26
+ "@aws-sdk/credential-provider-node": "3.692.0",
27
+ "@aws-sdk/middleware-host-header": "3.692.0",
28
+ "@aws-sdk/middleware-logger": "3.692.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.692.0",
30
+ "@aws-sdk/middleware-user-agent": "3.692.0",
31
+ "@aws-sdk/region-config-resolver": "3.692.0",
32
+ "@aws-sdk/types": "3.692.0",
33
+ "@aws-sdk/util-endpoints": "3.692.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.692.0",
35
+ "@aws-sdk/util-user-agent-node": "3.692.0",
36
+ "@smithy/config-resolver": "^3.0.11",
37
+ "@smithy/core": "^2.5.2",
38
+ "@smithy/fetch-http-handler": "^4.1.0",
39
+ "@smithy/hash-node": "^3.0.9",
40
+ "@smithy/invalid-dependency": "^3.0.9",
41
+ "@smithy/middleware-content-length": "^3.0.11",
42
+ "@smithy/middleware-endpoint": "^3.2.2",
43
+ "@smithy/middleware-retry": "^3.0.26",
44
+ "@smithy/middleware-serde": "^3.0.9",
45
+ "@smithy/middleware-stack": "^3.0.9",
46
+ "@smithy/node-config-provider": "^3.1.10",
47
+ "@smithy/node-http-handler": "^3.3.0",
48
+ "@smithy/protocol-http": "^4.1.6",
49
+ "@smithy/smithy-client": "^3.4.3",
50
+ "@smithy/types": "^3.7.0",
51
+ "@smithy/url-parser": "^3.0.9",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.25",
56
- "@smithy/util-defaults-mode-node": "^3.0.25",
57
- "@smithy/util-endpoints": "^2.1.4",
58
- "@smithy/util-middleware": "^3.0.8",
59
- "@smithy/util-retry": "^3.0.8",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.26",
56
+ "@smithy/util-defaults-mode-node": "^3.0.26",
57
+ "@smithy/util-endpoints": "^2.1.5",
58
+ "@smithy/util-middleware": "^3.0.9",
59
+ "@smithy/util-retry": "^3.0.9",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
61
  "@types/uuid": "^9.0.1",
62
62
  "tslib": "^2.6.2",