@aws-sdk/client-service-catalog 3.934.0 → 3.936.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/index.js +188 -187
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +187 -0
- package/dist-es/models/errors.js +113 -0
- package/dist-es/models/models_0.js +1 -300
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +483 -0
- package/dist-types/models/errors.d.ts +110 -0
- package/dist-types/models/models_0.d.ts +1 -593
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +248 -0
- package/dist-types/ts3.4/models/errors.d.ts +66 -0
- package/dist-types/ts3.4/models/models_0.d.ts +39 -314
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { ServiceCatalogExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { ServiceCatalogServiceException } from "./models/ServiceCatalogServiceException";
|
|
@@ -0,0 +1,248 @@
|
|
|
1
|
+
export declare const PortfolioShareType: {
|
|
2
|
+
readonly AWS_ORGANIZATIONS: "AWS_ORGANIZATIONS";
|
|
3
|
+
readonly AWS_SERVICECATALOG: "AWS_SERVICECATALOG";
|
|
4
|
+
readonly IMPORTED: "IMPORTED";
|
|
5
|
+
};
|
|
6
|
+
export type PortfolioShareType =
|
|
7
|
+
(typeof PortfolioShareType)[keyof typeof PortfolioShareType];
|
|
8
|
+
export declare const AccessLevelFilterKey: {
|
|
9
|
+
readonly ACCOUNT: "Account";
|
|
10
|
+
readonly ROLE: "Role";
|
|
11
|
+
readonly USER: "User";
|
|
12
|
+
};
|
|
13
|
+
export type AccessLevelFilterKey =
|
|
14
|
+
(typeof AccessLevelFilterKey)[keyof typeof AccessLevelFilterKey];
|
|
15
|
+
export declare const AccessStatus: {
|
|
16
|
+
readonly DISABLED: "DISABLED";
|
|
17
|
+
readonly ENABLED: "ENABLED";
|
|
18
|
+
readonly UNDER_CHANGE: "UNDER_CHANGE";
|
|
19
|
+
};
|
|
20
|
+
export type AccessStatus = (typeof AccessStatus)[keyof typeof AccessStatus];
|
|
21
|
+
export declare const PrincipalType: {
|
|
22
|
+
readonly IAM: "IAM";
|
|
23
|
+
readonly IAM_PATTERN: "IAM_PATTERN";
|
|
24
|
+
};
|
|
25
|
+
export type PrincipalType = (typeof PrincipalType)[keyof typeof PrincipalType];
|
|
26
|
+
export declare const ServiceActionAssociationErrorCode: {
|
|
27
|
+
readonly DuplicateResourceException: "DUPLICATE_RESOURCE";
|
|
28
|
+
readonly InternalFailure: "INTERNAL_FAILURE";
|
|
29
|
+
readonly InvalidParameterException: "INVALID_PARAMETER";
|
|
30
|
+
readonly LimitExceededException: "LIMIT_EXCEEDED";
|
|
31
|
+
readonly ResourceNotFoundException: "RESOURCE_NOT_FOUND";
|
|
32
|
+
readonly ThrottlingException: "THROTTLING";
|
|
33
|
+
};
|
|
34
|
+
export type ServiceActionAssociationErrorCode =
|
|
35
|
+
(typeof ServiceActionAssociationErrorCode)[keyof typeof ServiceActionAssociationErrorCode];
|
|
36
|
+
export declare const CopyOption: {
|
|
37
|
+
readonly CopyTags: "CopyTags";
|
|
38
|
+
};
|
|
39
|
+
export type CopyOption = (typeof CopyOption)[keyof typeof CopyOption];
|
|
40
|
+
export declare const ProvisioningArtifactPropertyName: {
|
|
41
|
+
readonly Id: "Id";
|
|
42
|
+
};
|
|
43
|
+
export type ProvisioningArtifactPropertyName =
|
|
44
|
+
(typeof ProvisioningArtifactPropertyName)[keyof typeof ProvisioningArtifactPropertyName];
|
|
45
|
+
export declare const Status: {
|
|
46
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
47
|
+
readonly CREATING: "CREATING";
|
|
48
|
+
readonly FAILED: "FAILED";
|
|
49
|
+
};
|
|
50
|
+
export type Status = (typeof Status)[keyof typeof Status];
|
|
51
|
+
export declare const OrganizationNodeType: {
|
|
52
|
+
readonly ACCOUNT: "ACCOUNT";
|
|
53
|
+
readonly ORGANIZATION: "ORGANIZATION";
|
|
54
|
+
readonly ORGANIZATIONAL_UNIT: "ORGANIZATIONAL_UNIT";
|
|
55
|
+
};
|
|
56
|
+
export type OrganizationNodeType =
|
|
57
|
+
(typeof OrganizationNodeType)[keyof typeof OrganizationNodeType];
|
|
58
|
+
export declare const ProductType: {
|
|
59
|
+
readonly CLOUD_FORMATION_TEMPLATE: "CLOUD_FORMATION_TEMPLATE";
|
|
60
|
+
readonly EXTERNAL: "EXTERNAL";
|
|
61
|
+
readonly MARKETPLACE: "MARKETPLACE";
|
|
62
|
+
readonly TERRAFORM_CLOUD: "TERRAFORM_CLOUD";
|
|
63
|
+
readonly TERRAFORM_OPEN_SOURCE: "TERRAFORM_OPEN_SOURCE";
|
|
64
|
+
};
|
|
65
|
+
export type ProductType = (typeof ProductType)[keyof typeof ProductType];
|
|
66
|
+
export declare const ProvisioningArtifactType: {
|
|
67
|
+
readonly CLOUD_FORMATION_TEMPLATE: "CLOUD_FORMATION_TEMPLATE";
|
|
68
|
+
readonly EXTERNAL: "EXTERNAL";
|
|
69
|
+
readonly MARKETPLACE_AMI: "MARKETPLACE_AMI";
|
|
70
|
+
readonly MARKETPLACE_CAR: "MARKETPLACE_CAR";
|
|
71
|
+
readonly TERRAFORM_CLOUD: "TERRAFORM_CLOUD";
|
|
72
|
+
readonly TERRAFORM_OPEN_SOURCE: "TERRAFORM_OPEN_SOURCE";
|
|
73
|
+
};
|
|
74
|
+
export type ProvisioningArtifactType =
|
|
75
|
+
(typeof ProvisioningArtifactType)[keyof typeof ProvisioningArtifactType];
|
|
76
|
+
export declare const SourceType: {
|
|
77
|
+
readonly CODESTAR: "CODESTAR";
|
|
78
|
+
};
|
|
79
|
+
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
80
|
+
export declare const LastSyncStatus: {
|
|
81
|
+
readonly FAILED: "FAILED";
|
|
82
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
83
|
+
};
|
|
84
|
+
export type LastSyncStatus =
|
|
85
|
+
(typeof LastSyncStatus)[keyof typeof LastSyncStatus];
|
|
86
|
+
export declare const ProvisioningArtifactGuidance: {
|
|
87
|
+
readonly DEFAULT: "DEFAULT";
|
|
88
|
+
readonly DEPRECATED: "DEPRECATED";
|
|
89
|
+
};
|
|
90
|
+
export type ProvisioningArtifactGuidance =
|
|
91
|
+
(typeof ProvisioningArtifactGuidance)[keyof typeof ProvisioningArtifactGuidance];
|
|
92
|
+
export declare const ProvisionedProductPlanType: {
|
|
93
|
+
readonly CLOUDFORMATION: "CLOUDFORMATION";
|
|
94
|
+
};
|
|
95
|
+
export type ProvisionedProductPlanType =
|
|
96
|
+
(typeof ProvisionedProductPlanType)[keyof typeof ProvisionedProductPlanType];
|
|
97
|
+
export declare const ServiceActionDefinitionKey: {
|
|
98
|
+
readonly AssumeRole: "AssumeRole";
|
|
99
|
+
readonly Name: "Name";
|
|
100
|
+
readonly Parameters: "Parameters";
|
|
101
|
+
readonly Version: "Version";
|
|
102
|
+
};
|
|
103
|
+
export type ServiceActionDefinitionKey =
|
|
104
|
+
(typeof ServiceActionDefinitionKey)[keyof typeof ServiceActionDefinitionKey];
|
|
105
|
+
export declare const ServiceActionDefinitionType: {
|
|
106
|
+
readonly SsmAutomation: "SSM_AUTOMATION";
|
|
107
|
+
};
|
|
108
|
+
export type ServiceActionDefinitionType =
|
|
109
|
+
(typeof ServiceActionDefinitionType)[keyof typeof ServiceActionDefinitionType];
|
|
110
|
+
export declare const CopyProductStatus: {
|
|
111
|
+
readonly FAILED: "FAILED";
|
|
112
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
113
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
114
|
+
};
|
|
115
|
+
export type CopyProductStatus =
|
|
116
|
+
(typeof CopyProductStatus)[keyof typeof CopyProductStatus];
|
|
117
|
+
export declare const DescribePortfolioShareType: {
|
|
118
|
+
readonly ACCOUNT: "ACCOUNT";
|
|
119
|
+
readonly ORGANIZATION: "ORGANIZATION";
|
|
120
|
+
readonly ORGANIZATIONAL_UNIT: "ORGANIZATIONAL_UNIT";
|
|
121
|
+
readonly ORGANIZATION_MEMBER_ACCOUNT: "ORGANIZATION_MEMBER_ACCOUNT";
|
|
122
|
+
};
|
|
123
|
+
export type DescribePortfolioShareType =
|
|
124
|
+
(typeof DescribePortfolioShareType)[keyof typeof DescribePortfolioShareType];
|
|
125
|
+
export declare const ShareStatus: {
|
|
126
|
+
readonly COMPLETED: "COMPLETED";
|
|
127
|
+
readonly COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS";
|
|
128
|
+
readonly ERROR: "ERROR";
|
|
129
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
130
|
+
readonly NOT_STARTED: "NOT_STARTED";
|
|
131
|
+
};
|
|
132
|
+
export type ShareStatus = (typeof ShareStatus)[keyof typeof ShareStatus];
|
|
133
|
+
export declare const ProvisionedProductStatus: {
|
|
134
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
135
|
+
readonly ERROR: "ERROR";
|
|
136
|
+
readonly PLAN_IN_PROGRESS: "PLAN_IN_PROGRESS";
|
|
137
|
+
readonly TAINTED: "TAINTED";
|
|
138
|
+
readonly UNDER_CHANGE: "UNDER_CHANGE";
|
|
139
|
+
};
|
|
140
|
+
export type ProvisionedProductStatus =
|
|
141
|
+
(typeof ProvisionedProductStatus)[keyof typeof ProvisionedProductStatus];
|
|
142
|
+
export declare const ProvisionedProductPlanStatus: {
|
|
143
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
144
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
145
|
+
readonly CREATE_SUCCESS: "CREATE_SUCCESS";
|
|
146
|
+
readonly EXECUTE_FAILED: "EXECUTE_FAILED";
|
|
147
|
+
readonly EXECUTE_IN_PROGRESS: "EXECUTE_IN_PROGRESS";
|
|
148
|
+
readonly EXECUTE_SUCCESS: "EXECUTE_SUCCESS";
|
|
149
|
+
};
|
|
150
|
+
export type ProvisionedProductPlanStatus =
|
|
151
|
+
(typeof ProvisionedProductPlanStatus)[keyof typeof ProvisionedProductPlanStatus];
|
|
152
|
+
export declare const ChangeAction: {
|
|
153
|
+
readonly ADD: "ADD";
|
|
154
|
+
readonly MODIFY: "MODIFY";
|
|
155
|
+
readonly REMOVE: "REMOVE";
|
|
156
|
+
};
|
|
157
|
+
export type ChangeAction = (typeof ChangeAction)[keyof typeof ChangeAction];
|
|
158
|
+
export declare const EvaluationType: {
|
|
159
|
+
readonly DYNAMIC: "DYNAMIC";
|
|
160
|
+
readonly STATIC: "STATIC";
|
|
161
|
+
};
|
|
162
|
+
export type EvaluationType =
|
|
163
|
+
(typeof EvaluationType)[keyof typeof EvaluationType];
|
|
164
|
+
export declare const ResourceAttribute: {
|
|
165
|
+
readonly CREATIONPOLICY: "CREATIONPOLICY";
|
|
166
|
+
readonly DELETIONPOLICY: "DELETIONPOLICY";
|
|
167
|
+
readonly METADATA: "METADATA";
|
|
168
|
+
readonly PROPERTIES: "PROPERTIES";
|
|
169
|
+
readonly TAGS: "TAGS";
|
|
170
|
+
readonly UPDATEPOLICY: "UPDATEPOLICY";
|
|
171
|
+
};
|
|
172
|
+
export type ResourceAttribute =
|
|
173
|
+
(typeof ResourceAttribute)[keyof typeof ResourceAttribute];
|
|
174
|
+
export declare const RequiresRecreation: {
|
|
175
|
+
readonly ALWAYS: "ALWAYS";
|
|
176
|
+
readonly CONDITIONALLY: "CONDITIONALLY";
|
|
177
|
+
readonly NEVER: "NEVER";
|
|
178
|
+
};
|
|
179
|
+
export type RequiresRecreation =
|
|
180
|
+
(typeof RequiresRecreation)[keyof typeof RequiresRecreation];
|
|
181
|
+
export declare const Replacement: {
|
|
182
|
+
readonly CONDITIONAL: "CONDITIONAL";
|
|
183
|
+
readonly FALSE: "FALSE";
|
|
184
|
+
readonly TRUE: "TRUE";
|
|
185
|
+
};
|
|
186
|
+
export type Replacement = (typeof Replacement)[keyof typeof Replacement];
|
|
187
|
+
export declare const RecordStatus: {
|
|
188
|
+
readonly CREATED: "CREATED";
|
|
189
|
+
readonly FAILED: "FAILED";
|
|
190
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
191
|
+
readonly IN_PROGRESS_IN_ERROR: "IN_PROGRESS_IN_ERROR";
|
|
192
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
193
|
+
};
|
|
194
|
+
export type RecordStatus = (typeof RecordStatus)[keyof typeof RecordStatus];
|
|
195
|
+
export declare const StackInstanceStatus: {
|
|
196
|
+
readonly CURRENT: "CURRENT";
|
|
197
|
+
readonly INOPERABLE: "INOPERABLE";
|
|
198
|
+
readonly OUTDATED: "OUTDATED";
|
|
199
|
+
};
|
|
200
|
+
export type StackInstanceStatus =
|
|
201
|
+
(typeof StackInstanceStatus)[keyof typeof StackInstanceStatus];
|
|
202
|
+
export declare const EngineWorkflowStatus: {
|
|
203
|
+
readonly FAILED: "FAILED";
|
|
204
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
205
|
+
};
|
|
206
|
+
export type EngineWorkflowStatus =
|
|
207
|
+
(typeof EngineWorkflowStatus)[keyof typeof EngineWorkflowStatus];
|
|
208
|
+
export declare const ProductViewFilterBy: {
|
|
209
|
+
readonly FullTextSearch: "FullTextSearch";
|
|
210
|
+
readonly Owner: "Owner";
|
|
211
|
+
readonly ProductType: "ProductType";
|
|
212
|
+
readonly SourceProductId: "SourceProductId";
|
|
213
|
+
};
|
|
214
|
+
export type ProductViewFilterBy =
|
|
215
|
+
(typeof ProductViewFilterBy)[keyof typeof ProductViewFilterBy];
|
|
216
|
+
export declare const ProductViewSortBy: {
|
|
217
|
+
readonly CreationDate: "CreationDate";
|
|
218
|
+
readonly Title: "Title";
|
|
219
|
+
readonly VersionCount: "VersionCount";
|
|
220
|
+
};
|
|
221
|
+
export type ProductViewSortBy =
|
|
222
|
+
(typeof ProductViewSortBy)[keyof typeof ProductViewSortBy];
|
|
223
|
+
export declare const SortOrder: {
|
|
224
|
+
readonly ASCENDING: "ASCENDING";
|
|
225
|
+
readonly DESCENDING: "DESCENDING";
|
|
226
|
+
};
|
|
227
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
228
|
+
export declare const ProductSource: {
|
|
229
|
+
readonly ACCOUNT: "ACCOUNT";
|
|
230
|
+
};
|
|
231
|
+
export type ProductSource = (typeof ProductSource)[keyof typeof ProductSource];
|
|
232
|
+
export declare const ProvisionedProductViewFilterBy: {
|
|
233
|
+
readonly SearchQuery: "SearchQuery";
|
|
234
|
+
};
|
|
235
|
+
export type ProvisionedProductViewFilterBy =
|
|
236
|
+
(typeof ProvisionedProductViewFilterBy)[keyof typeof ProvisionedProductViewFilterBy];
|
|
237
|
+
export declare const StackSetOperationType: {
|
|
238
|
+
readonly CREATE: "CREATE";
|
|
239
|
+
readonly DELETE: "DELETE";
|
|
240
|
+
readonly UPDATE: "UPDATE";
|
|
241
|
+
};
|
|
242
|
+
export type StackSetOperationType =
|
|
243
|
+
(typeof StackSetOperationType)[keyof typeof StackSetOperationType];
|
|
244
|
+
export declare const PropertyKey: {
|
|
245
|
+
readonly LaunchRole: "LAUNCH_ROLE";
|
|
246
|
+
readonly Owner: "OWNER";
|
|
247
|
+
};
|
|
248
|
+
export type PropertyKey = (typeof PropertyKey)[keyof typeof PropertyKey];
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ServiceCatalogServiceException as __BaseException } from "./ServiceCatalogServiceException";
|
|
3
|
+
export declare class InvalidParametersException extends __BaseException {
|
|
4
|
+
readonly name: "InvalidParametersException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
Message?: string | undefined;
|
|
7
|
+
constructor(
|
|
8
|
+
opts: __ExceptionOptionType<InvalidParametersException, __BaseException>
|
|
9
|
+
);
|
|
10
|
+
}
|
|
11
|
+
export declare class LimitExceededException extends __BaseException {
|
|
12
|
+
readonly name: "LimitExceededException";
|
|
13
|
+
readonly $fault: "client";
|
|
14
|
+
Message?: string | undefined;
|
|
15
|
+
constructor(
|
|
16
|
+
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
17
|
+
);
|
|
18
|
+
}
|
|
19
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
20
|
+
readonly name: "ResourceNotFoundException";
|
|
21
|
+
readonly $fault: "client";
|
|
22
|
+
Message?: string | undefined;
|
|
23
|
+
constructor(
|
|
24
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
25
|
+
);
|
|
26
|
+
}
|
|
27
|
+
export declare class DuplicateResourceException extends __BaseException {
|
|
28
|
+
readonly name: "DuplicateResourceException";
|
|
29
|
+
readonly $fault: "client";
|
|
30
|
+
Message?: string | undefined;
|
|
31
|
+
constructor(
|
|
32
|
+
opts: __ExceptionOptionType<DuplicateResourceException, __BaseException>
|
|
33
|
+
);
|
|
34
|
+
}
|
|
35
|
+
export declare class InvalidStateException extends __BaseException {
|
|
36
|
+
readonly name: "InvalidStateException";
|
|
37
|
+
readonly $fault: "client";
|
|
38
|
+
Message?: string | undefined;
|
|
39
|
+
constructor(
|
|
40
|
+
opts: __ExceptionOptionType<InvalidStateException, __BaseException>
|
|
41
|
+
);
|
|
42
|
+
}
|
|
43
|
+
export declare class TagOptionNotMigratedException extends __BaseException {
|
|
44
|
+
readonly name: "TagOptionNotMigratedException";
|
|
45
|
+
readonly $fault: "client";
|
|
46
|
+
Message?: string | undefined;
|
|
47
|
+
constructor(
|
|
48
|
+
opts: __ExceptionOptionType<TagOptionNotMigratedException, __BaseException>
|
|
49
|
+
);
|
|
50
|
+
}
|
|
51
|
+
export declare class OperationNotSupportedException extends __BaseException {
|
|
52
|
+
readonly name: "OperationNotSupportedException";
|
|
53
|
+
readonly $fault: "client";
|
|
54
|
+
Message?: string | undefined;
|
|
55
|
+
constructor(
|
|
56
|
+
opts: __ExceptionOptionType<OperationNotSupportedException, __BaseException>
|
|
57
|
+
);
|
|
58
|
+
}
|
|
59
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
60
|
+
readonly name: "ResourceInUseException";
|
|
61
|
+
readonly $fault: "client";
|
|
62
|
+
Message?: string | undefined;
|
|
63
|
+
constructor(
|
|
64
|
+
opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
|
|
65
|
+
);
|
|
66
|
+
}
|