@aws-sdk/client-service-catalog-appregistry 3.428.0 → 3.430.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.
|
@@ -247,7 +247,7 @@ export interface AssociateResourceRequest {
|
|
|
247
247
|
* @public
|
|
248
248
|
* <p>The type of resource of which the application will be associated.</p>
|
|
249
249
|
*/
|
|
250
|
-
resourceType: ResourceType |
|
|
250
|
+
resourceType: ResourceType | undefined;
|
|
251
251
|
/**
|
|
252
252
|
* @public
|
|
253
253
|
* <p>The name or ID of the resource of which the application will be associated.</p>
|
|
@@ -591,7 +591,7 @@ export interface DisassociateResourceRequest {
|
|
|
591
591
|
* @public
|
|
592
592
|
* <p>The type of the resource that is being disassociated.</p>
|
|
593
593
|
*/
|
|
594
|
-
resourceType: ResourceType |
|
|
594
|
+
resourceType: ResourceType | undefined;
|
|
595
595
|
/**
|
|
596
596
|
* @public
|
|
597
597
|
* <p>The name or ID of the resource.</p>
|
|
@@ -663,7 +663,7 @@ export interface ResourceGroup {
|
|
|
663
663
|
* <p>
|
|
664
664
|
* <code>UPDATE_FAILED</code> if the resource group could not update successfully.</p>
|
|
665
665
|
*/
|
|
666
|
-
state?: ResourceGroupState
|
|
666
|
+
state?: ResourceGroupState;
|
|
667
667
|
/**
|
|
668
668
|
* @public
|
|
669
669
|
* <p>The Amazon resource name (ARN) of the resource group.</p>
|
|
@@ -759,7 +759,7 @@ export interface GetAssociatedResourceRequest {
|
|
|
759
759
|
* @public
|
|
760
760
|
* <p>The type of resource associated with the application.</p>
|
|
761
761
|
*/
|
|
762
|
-
resourceType: ResourceType |
|
|
762
|
+
resourceType: ResourceType | undefined;
|
|
763
763
|
/**
|
|
764
764
|
* @public
|
|
765
765
|
* <p>The name or ID of the resource associated with the application.</p>
|
|
@@ -1018,7 +1018,7 @@ export interface ResourceInfo {
|
|
|
1018
1018
|
* about the Service Catalog App Registry resource type.
|
|
1019
1019
|
* </p>
|
|
1020
1020
|
*/
|
|
1021
|
-
resourceType?: ResourceType
|
|
1021
|
+
resourceType?: ResourceType;
|
|
1022
1022
|
/**
|
|
1023
1023
|
* @public
|
|
1024
1024
|
* <p>
|
|
@@ -1150,7 +1150,7 @@ export interface SyncResourceRequest {
|
|
|
1150
1150
|
* @public
|
|
1151
1151
|
* <p>The type of resource of which the application will be associated.</p>
|
|
1152
1152
|
*/
|
|
1153
|
-
resourceType: ResourceType |
|
|
1153
|
+
resourceType: ResourceType | undefined;
|
|
1154
1154
|
/**
|
|
1155
1155
|
* @public
|
|
1156
1156
|
* <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>
|
|
@@ -1187,7 +1187,7 @@ export interface SyncResourceResponse {
|
|
|
1187
1187
|
* @public
|
|
1188
1188
|
* <p>The results of the output if an application is associated with an ARN value, which could be <code>syncStarted</code> or None.</p>
|
|
1189
1189
|
*/
|
|
1190
|
-
actionTaken?: SyncAction
|
|
1190
|
+
actionTaken?: SyncAction;
|
|
1191
1191
|
}
|
|
1192
1192
|
/**
|
|
1193
1193
|
* @public
|
|
@@ -71,7 +71,7 @@ export declare const ResourceType: {
|
|
|
71
71
|
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
72
72
|
export interface AssociateResourceRequest {
|
|
73
73
|
application: string | undefined;
|
|
74
|
-
resourceType: ResourceType |
|
|
74
|
+
resourceType: ResourceType | undefined;
|
|
75
75
|
resource: string | undefined;
|
|
76
76
|
}
|
|
77
77
|
export interface AssociateResourceResponse {
|
|
@@ -151,7 +151,7 @@ export interface DisassociateAttributeGroupResponse {
|
|
|
151
151
|
}
|
|
152
152
|
export interface DisassociateResourceRequest {
|
|
153
153
|
application: string | undefined;
|
|
154
|
-
resourceType: ResourceType |
|
|
154
|
+
resourceType: ResourceType | undefined;
|
|
155
155
|
resource: string | undefined;
|
|
156
156
|
}
|
|
157
157
|
export interface DisassociateResourceResponse {
|
|
@@ -172,7 +172,7 @@ export declare const ResourceGroupState: {
|
|
|
172
172
|
export type ResourceGroupState =
|
|
173
173
|
(typeof ResourceGroupState)[keyof typeof ResourceGroupState];
|
|
174
174
|
export interface ResourceGroup {
|
|
175
|
-
state?: ResourceGroupState
|
|
175
|
+
state?: ResourceGroupState;
|
|
176
176
|
arn?: string;
|
|
177
177
|
errorMessage?: string;
|
|
178
178
|
}
|
|
@@ -192,7 +192,7 @@ export interface GetApplicationResponse {
|
|
|
192
192
|
}
|
|
193
193
|
export interface GetAssociatedResourceRequest {
|
|
194
194
|
application: string | undefined;
|
|
195
|
-
resourceType: ResourceType |
|
|
195
|
+
resourceType: ResourceType | undefined;
|
|
196
196
|
resource: string | undefined;
|
|
197
197
|
}
|
|
198
198
|
export interface ResourceIntegrations {
|
|
@@ -252,7 +252,7 @@ export interface ResourceDetails {
|
|
|
252
252
|
export interface ResourceInfo {
|
|
253
253
|
name?: string;
|
|
254
254
|
arn?: string;
|
|
255
|
-
resourceType?: ResourceType
|
|
255
|
+
resourceType?: ResourceType;
|
|
256
256
|
resourceDetails?: ResourceDetails;
|
|
257
257
|
}
|
|
258
258
|
export interface ListAssociatedResourcesResponse {
|
|
@@ -286,7 +286,7 @@ export interface PutConfigurationRequest {
|
|
|
286
286
|
configuration: AppRegistryConfiguration | undefined;
|
|
287
287
|
}
|
|
288
288
|
export interface SyncResourceRequest {
|
|
289
|
-
resourceType: ResourceType |
|
|
289
|
+
resourceType: ResourceType | undefined;
|
|
290
290
|
resource: string | undefined;
|
|
291
291
|
}
|
|
292
292
|
export declare const SyncAction: {
|
|
@@ -297,7 +297,7 @@ export type SyncAction = (typeof SyncAction)[keyof typeof SyncAction];
|
|
|
297
297
|
export interface SyncResourceResponse {
|
|
298
298
|
applicationArn?: string;
|
|
299
299
|
resourceArn?: string;
|
|
300
|
-
actionTaken?: SyncAction
|
|
300
|
+
actionTaken?: SyncAction;
|
|
301
301
|
}
|
|
302
302
|
export interface TagResourceRequest {
|
|
303
303
|
resourceArn: string | undefined;
|
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.430.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,28 +21,28 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.430.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.430.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
30
30
|
"@aws-sdk/middleware-user-agent": "3.428.0",
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.430.0",
|
|
32
32
|
"@aws-sdk/types": "3.428.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.428.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.428.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.430.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.15",
|
|
37
37
|
"@smithy/fetch-http-handler": "^2.2.3",
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.2",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.17",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|
|
45
|
-
"@smithy/node-config-provider": "^2.1.
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.2",
|
|
46
46
|
"@smithy/node-http-handler": "^2.1.7",
|
|
47
47
|
"@smithy/protocol-http": "^3.0.7",
|
|
48
48
|
"@smithy/smithy-client": "^2.1.11",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
54
|
"@smithy/util-defaults-mode-browser": "^2.0.15",
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.20",
|
|
56
56
|
"@smithy/util-retry": "^2.0.4",
|
|
57
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
58
58
|
"tslib": "^2.5.0",
|