@aws-sdk/client-service-catalog-appregistry 3.52.0 → 3.53.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/CHANGELOG.md +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/ServiceCatalogAppRegistryServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +68 -2
- package/dist-cjs/protocols/Aws_restJson1.js +188 -633
- package/dist-es/index.js +1 -0
- package/dist-es/models/ServiceCatalogAppRegistryServiceException.js +12 -0
- package/dist-es/models/models_0.js +62 -1
- package/dist-es/protocols/Aws_restJson1.js +411 -723
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ServiceCatalogAppRegistryServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +37 -21
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/ServiceCatalogAppRegistryServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +27 -21
- package/package.json +25 -25
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from ServiceCatalogAppRegistry service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class ServiceCatalogAppRegistryServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { ServiceCatalogAppRegistryServiceException as __BaseException } from "./ServiceCatalogAppRegistryServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>Represents a Amazon Web Services Service Catalog AppRegistry application that is the top-level node in a hierarchy of related
|
|
4
5
|
* cloud resource abstractions.</p>
|
|
@@ -111,34 +112,46 @@ export declare namespace AssociateAttributeGroupResponse {
|
|
|
111
112
|
/**
|
|
112
113
|
* <p>The service is experiencing internal problems.</p>
|
|
113
114
|
*/
|
|
114
|
-
export
|
|
115
|
-
name: "InternalServerException";
|
|
116
|
-
$fault: "server";
|
|
117
|
-
|
|
115
|
+
export declare class InternalServerException extends __BaseException {
|
|
116
|
+
readonly name: "InternalServerException";
|
|
117
|
+
readonly $fault: "server";
|
|
118
|
+
/**
|
|
119
|
+
* @internal
|
|
120
|
+
*/
|
|
121
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
118
122
|
}
|
|
119
123
|
/**
|
|
120
124
|
* <p>The specified resource does not exist.</p>
|
|
121
125
|
*/
|
|
122
|
-
export
|
|
123
|
-
name: "ResourceNotFoundException";
|
|
124
|
-
$fault: "client";
|
|
125
|
-
|
|
126
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
127
|
+
readonly name: "ResourceNotFoundException";
|
|
128
|
+
readonly $fault: "client";
|
|
129
|
+
/**
|
|
130
|
+
* @internal
|
|
131
|
+
*/
|
|
132
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
126
133
|
}
|
|
127
134
|
/**
|
|
128
135
|
* <p>The maximum number of resources per account has been reached.</p>
|
|
129
136
|
*/
|
|
130
|
-
export
|
|
131
|
-
name: "ServiceQuotaExceededException";
|
|
132
|
-
$fault: "client";
|
|
133
|
-
|
|
137
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
138
|
+
readonly name: "ServiceQuotaExceededException";
|
|
139
|
+
readonly $fault: "client";
|
|
140
|
+
/**
|
|
141
|
+
* @internal
|
|
142
|
+
*/
|
|
143
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
134
144
|
}
|
|
135
145
|
/**
|
|
136
146
|
* <p>The request has invalid or missing parameters.</p>
|
|
137
147
|
*/
|
|
138
|
-
export
|
|
139
|
-
name: "ValidationException";
|
|
140
|
-
$fault: "client";
|
|
141
|
-
|
|
148
|
+
export declare class ValidationException extends __BaseException {
|
|
149
|
+
readonly name: "ValidationException";
|
|
150
|
+
readonly $fault: "client";
|
|
151
|
+
/**
|
|
152
|
+
* @internal
|
|
153
|
+
*/
|
|
154
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
142
155
|
}
|
|
143
156
|
export declare enum ResourceType {
|
|
144
157
|
CFN_STACK = "CFN_STACK"
|
|
@@ -183,10 +196,13 @@ export declare namespace AssociateResourceResponse {
|
|
|
183
196
|
* <p>There was a conflict when processing the request (for example, a resource with the given name already
|
|
184
197
|
* exists within the account).</p>
|
|
185
198
|
*/
|
|
186
|
-
export
|
|
187
|
-
name: "ConflictException";
|
|
188
|
-
$fault: "client";
|
|
189
|
-
|
|
199
|
+
export declare class ConflictException extends __BaseException {
|
|
200
|
+
readonly name: "ConflictException";
|
|
201
|
+
readonly $fault: "client";
|
|
202
|
+
/**
|
|
203
|
+
* @internal
|
|
204
|
+
*/
|
|
205
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
190
206
|
}
|
|
191
207
|
/**
|
|
192
208
|
* <p>Represents a Amazon Web Services Service Catalog AppRegistry attribute group that is rich metadata which describes an application and its components.</p>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class ServiceCatalogAppRegistryServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { ServiceCatalogAppRegistryServiceException as __BaseException } from "./ServiceCatalogAppRegistryServiceException";
|
|
2
3
|
|
|
3
4
|
export interface Application {
|
|
4
5
|
|
|
@@ -62,28 +63,32 @@ export declare namespace AssociateAttributeGroupResponse {
|
|
|
62
63
|
const filterSensitiveLog: (obj: AssociateAttributeGroupResponse) => any;
|
|
63
64
|
}
|
|
64
65
|
|
|
65
|
-
export
|
|
66
|
-
name: "InternalServerException";
|
|
67
|
-
$fault: "server";
|
|
68
|
-
|
|
66
|
+
export declare class InternalServerException extends __BaseException {
|
|
67
|
+
readonly name: "InternalServerException";
|
|
68
|
+
readonly $fault: "server";
|
|
69
|
+
|
|
70
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
69
71
|
}
|
|
70
72
|
|
|
71
|
-
export
|
|
72
|
-
name: "ResourceNotFoundException";
|
|
73
|
-
$fault: "client";
|
|
74
|
-
|
|
73
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
74
|
+
readonly name: "ResourceNotFoundException";
|
|
75
|
+
readonly $fault: "client";
|
|
76
|
+
|
|
77
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
75
78
|
}
|
|
76
79
|
|
|
77
|
-
export
|
|
78
|
-
name: "ServiceQuotaExceededException";
|
|
79
|
-
$fault: "client";
|
|
80
|
-
|
|
80
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
81
|
+
readonly name: "ServiceQuotaExceededException";
|
|
82
|
+
readonly $fault: "client";
|
|
83
|
+
|
|
84
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
81
85
|
}
|
|
82
86
|
|
|
83
|
-
export
|
|
84
|
-
name: "ValidationException";
|
|
85
|
-
$fault: "client";
|
|
86
|
-
|
|
87
|
+
export declare class ValidationException extends __BaseException {
|
|
88
|
+
readonly name: "ValidationException";
|
|
89
|
+
readonly $fault: "client";
|
|
90
|
+
|
|
91
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
87
92
|
}
|
|
88
93
|
export declare enum ResourceType {
|
|
89
94
|
CFN_STACK = "CFN_STACK"
|
|
@@ -111,10 +116,11 @@ export declare namespace AssociateResourceResponse {
|
|
|
111
116
|
const filterSensitiveLog: (obj: AssociateResourceResponse) => any;
|
|
112
117
|
}
|
|
113
118
|
|
|
114
|
-
export
|
|
115
|
-
name: "ConflictException";
|
|
116
|
-
$fault: "client";
|
|
117
|
-
|
|
119
|
+
export declare class ConflictException extends __BaseException {
|
|
120
|
+
readonly name: "ConflictException";
|
|
121
|
+
readonly $fault: "client";
|
|
122
|
+
|
|
123
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
118
124
|
}
|
|
119
125
|
|
|
120
126
|
export interface AttributeGroup {
|
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.53.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",
|
|
@@ -18,34 +18,34 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.53.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.53.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.53.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.53.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.53.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.53.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.53.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.53.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.53.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.53.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.53.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.53.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.53.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.53.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.53.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.53.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.53.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.53.0",
|
|
39
|
+
"@aws-sdk/types": "3.53.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.53.0",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.52.0",
|
|
44
44
|
"@aws-sdk/util-body-length-node": "3.52.0",
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.53.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.53.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.53.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.53.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0",
|