@aws-sdk/client-service-catalog 3.933.0 → 3.935.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 +12 -12
- 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
|
@@ -1,59 +1,52 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
import {
|
|
2
|
+
AccessLevelFilterKey,
|
|
3
|
+
AccessStatus,
|
|
4
|
+
ChangeAction,
|
|
5
|
+
CopyOption,
|
|
6
|
+
CopyProductStatus,
|
|
7
|
+
DescribePortfolioShareType,
|
|
8
|
+
EngineWorkflowStatus,
|
|
9
|
+
EvaluationType,
|
|
10
|
+
LastSyncStatus,
|
|
11
|
+
OrganizationNodeType,
|
|
12
|
+
PortfolioShareType,
|
|
13
|
+
PrincipalType,
|
|
14
|
+
ProductSource,
|
|
15
|
+
ProductType,
|
|
16
|
+
ProductViewFilterBy,
|
|
17
|
+
ProductViewSortBy,
|
|
18
|
+
PropertyKey,
|
|
19
|
+
ProvisionedProductPlanStatus,
|
|
20
|
+
ProvisionedProductPlanType,
|
|
21
|
+
ProvisionedProductStatus,
|
|
22
|
+
ProvisionedProductViewFilterBy,
|
|
23
|
+
ProvisioningArtifactGuidance,
|
|
24
|
+
ProvisioningArtifactPropertyName,
|
|
25
|
+
ProvisioningArtifactType,
|
|
26
|
+
RecordStatus,
|
|
27
|
+
Replacement,
|
|
28
|
+
RequiresRecreation,
|
|
29
|
+
ResourceAttribute,
|
|
30
|
+
ServiceActionAssociationErrorCode,
|
|
31
|
+
ServiceActionDefinitionKey,
|
|
32
|
+
ServiceActionDefinitionType,
|
|
33
|
+
ShareStatus,
|
|
34
|
+
SortOrder,
|
|
35
|
+
SourceType,
|
|
36
|
+
StackInstanceStatus,
|
|
37
|
+
StackSetOperationType,
|
|
38
|
+
Status,
|
|
39
|
+
} from "./enums";
|
|
10
40
|
export interface AcceptPortfolioShareInput {
|
|
11
41
|
AcceptLanguage?: string | undefined;
|
|
12
42
|
PortfolioId: string | undefined;
|
|
13
43
|
PortfolioShareType?: PortfolioShareType | undefined;
|
|
14
44
|
}
|
|
15
45
|
export interface AcceptPortfolioShareOutput {}
|
|
16
|
-
export declare class InvalidParametersException extends __BaseException {
|
|
17
|
-
readonly name: "InvalidParametersException";
|
|
18
|
-
readonly $fault: "client";
|
|
19
|
-
Message?: string | undefined;
|
|
20
|
-
constructor(
|
|
21
|
-
opts: __ExceptionOptionType<InvalidParametersException, __BaseException>
|
|
22
|
-
);
|
|
23
|
-
}
|
|
24
|
-
export declare class LimitExceededException extends __BaseException {
|
|
25
|
-
readonly name: "LimitExceededException";
|
|
26
|
-
readonly $fault: "client";
|
|
27
|
-
Message?: string | undefined;
|
|
28
|
-
constructor(
|
|
29
|
-
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
30
|
-
);
|
|
31
|
-
}
|
|
32
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
33
|
-
readonly name: "ResourceNotFoundException";
|
|
34
|
-
readonly $fault: "client";
|
|
35
|
-
Message?: string | undefined;
|
|
36
|
-
constructor(
|
|
37
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
38
|
-
);
|
|
39
|
-
}
|
|
40
|
-
export declare const AccessLevelFilterKey: {
|
|
41
|
-
readonly ACCOUNT: "Account";
|
|
42
|
-
readonly ROLE: "Role";
|
|
43
|
-
readonly USER: "User";
|
|
44
|
-
};
|
|
45
|
-
export type AccessLevelFilterKey =
|
|
46
|
-
(typeof AccessLevelFilterKey)[keyof typeof AccessLevelFilterKey];
|
|
47
46
|
export interface AccessLevelFilter {
|
|
48
47
|
Key?: AccessLevelFilterKey | undefined;
|
|
49
48
|
Value?: string | undefined;
|
|
50
49
|
}
|
|
51
|
-
export declare const AccessStatus: {
|
|
52
|
-
readonly DISABLED: "DISABLED";
|
|
53
|
-
readonly ENABLED: "ENABLED";
|
|
54
|
-
readonly UNDER_CHANGE: "UNDER_CHANGE";
|
|
55
|
-
};
|
|
56
|
-
export type AccessStatus = (typeof AccessStatus)[keyof typeof AccessStatus];
|
|
57
50
|
export interface Tag {
|
|
58
51
|
Key: string | undefined;
|
|
59
52
|
Value: string | undefined;
|
|
@@ -63,19 +56,6 @@ export interface AssociateBudgetWithResourceInput {
|
|
|
63
56
|
ResourceId: string | undefined;
|
|
64
57
|
}
|
|
65
58
|
export interface AssociateBudgetWithResourceOutput {}
|
|
66
|
-
export declare class DuplicateResourceException extends __BaseException {
|
|
67
|
-
readonly name: "DuplicateResourceException";
|
|
68
|
-
readonly $fault: "client";
|
|
69
|
-
Message?: string | undefined;
|
|
70
|
-
constructor(
|
|
71
|
-
opts: __ExceptionOptionType<DuplicateResourceException, __BaseException>
|
|
72
|
-
);
|
|
73
|
-
}
|
|
74
|
-
export declare const PrincipalType: {
|
|
75
|
-
readonly IAM: "IAM";
|
|
76
|
-
readonly IAM_PATTERN: "IAM_PATTERN";
|
|
77
|
-
};
|
|
78
|
-
export type PrincipalType = (typeof PrincipalType)[keyof typeof PrincipalType];
|
|
79
59
|
export interface AssociatePrincipalWithPortfolioInput {
|
|
80
60
|
AcceptLanguage?: string | undefined;
|
|
81
61
|
PortfolioId: string | undefined;
|
|
@@ -103,22 +83,6 @@ export interface AssociateTagOptionWithResourceInput {
|
|
|
103
83
|
TagOptionId: string | undefined;
|
|
104
84
|
}
|
|
105
85
|
export interface AssociateTagOptionWithResourceOutput {}
|
|
106
|
-
export declare class InvalidStateException extends __BaseException {
|
|
107
|
-
readonly name: "InvalidStateException";
|
|
108
|
-
readonly $fault: "client";
|
|
109
|
-
Message?: string | undefined;
|
|
110
|
-
constructor(
|
|
111
|
-
opts: __ExceptionOptionType<InvalidStateException, __BaseException>
|
|
112
|
-
);
|
|
113
|
-
}
|
|
114
|
-
export declare class TagOptionNotMigratedException extends __BaseException {
|
|
115
|
-
readonly name: "TagOptionNotMigratedException";
|
|
116
|
-
readonly $fault: "client";
|
|
117
|
-
Message?: string | undefined;
|
|
118
|
-
constructor(
|
|
119
|
-
opts: __ExceptionOptionType<TagOptionNotMigratedException, __BaseException>
|
|
120
|
-
);
|
|
121
|
-
}
|
|
122
86
|
export interface ServiceActionAssociation {
|
|
123
87
|
ServiceActionId: string | undefined;
|
|
124
88
|
ProductId: string | undefined;
|
|
@@ -128,16 +92,6 @@ export interface BatchAssociateServiceActionWithProvisioningArtifactInput {
|
|
|
128
92
|
ServiceActionAssociations: ServiceActionAssociation[] | undefined;
|
|
129
93
|
AcceptLanguage?: string | undefined;
|
|
130
94
|
}
|
|
131
|
-
export declare const ServiceActionAssociationErrorCode: {
|
|
132
|
-
readonly DuplicateResourceException: "DUPLICATE_RESOURCE";
|
|
133
|
-
readonly InternalFailure: "INTERNAL_FAILURE";
|
|
134
|
-
readonly InvalidParameterException: "INVALID_PARAMETER";
|
|
135
|
-
readonly LimitExceededException: "LIMIT_EXCEEDED";
|
|
136
|
-
readonly ResourceNotFoundException: "RESOURCE_NOT_FOUND";
|
|
137
|
-
readonly ThrottlingException: "THROTTLING";
|
|
138
|
-
};
|
|
139
|
-
export type ServiceActionAssociationErrorCode =
|
|
140
|
-
(typeof ServiceActionAssociationErrorCode)[keyof typeof ServiceActionAssociationErrorCode];
|
|
141
95
|
export interface FailedServiceActionAssociation {
|
|
142
96
|
ServiceActionId?: string | undefined;
|
|
143
97
|
ProductId?: string | undefined;
|
|
@@ -159,15 +113,6 @@ export interface BatchDisassociateServiceActionFromProvisioningArtifactOutput {
|
|
|
159
113
|
| FailedServiceActionAssociation[]
|
|
160
114
|
| undefined;
|
|
161
115
|
}
|
|
162
|
-
export declare const CopyOption: {
|
|
163
|
-
readonly CopyTags: "CopyTags";
|
|
164
|
-
};
|
|
165
|
-
export type CopyOption = (typeof CopyOption)[keyof typeof CopyOption];
|
|
166
|
-
export declare const ProvisioningArtifactPropertyName: {
|
|
167
|
-
readonly Id: "Id";
|
|
168
|
-
};
|
|
169
|
-
export type ProvisioningArtifactPropertyName =
|
|
170
|
-
(typeof ProvisioningArtifactPropertyName)[keyof typeof ProvisioningArtifactPropertyName];
|
|
171
116
|
export interface CopyProductInput {
|
|
172
117
|
AcceptLanguage?: string | undefined;
|
|
173
118
|
SourceProductArn: string | undefined;
|
|
@@ -199,12 +144,6 @@ export interface ConstraintDetail {
|
|
|
199
144
|
ProductId?: string | undefined;
|
|
200
145
|
PortfolioId?: string | undefined;
|
|
201
146
|
}
|
|
202
|
-
export declare const Status: {
|
|
203
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
204
|
-
readonly CREATING: "CREATING";
|
|
205
|
-
readonly FAILED: "FAILED";
|
|
206
|
-
};
|
|
207
|
-
export type Status = (typeof Status)[keyof typeof Status];
|
|
208
147
|
export interface CreateConstraintOutput {
|
|
209
148
|
ConstraintDetail?: ConstraintDetail | undefined;
|
|
210
149
|
ConstraintParameters?: string | undefined;
|
|
@@ -230,13 +169,6 @@ export interface CreatePortfolioOutput {
|
|
|
230
169
|
PortfolioDetail?: PortfolioDetail | undefined;
|
|
231
170
|
Tags?: Tag[] | undefined;
|
|
232
171
|
}
|
|
233
|
-
export declare const OrganizationNodeType: {
|
|
234
|
-
readonly ACCOUNT: "ACCOUNT";
|
|
235
|
-
readonly ORGANIZATION: "ORGANIZATION";
|
|
236
|
-
readonly ORGANIZATIONAL_UNIT: "ORGANIZATIONAL_UNIT";
|
|
237
|
-
};
|
|
238
|
-
export type OrganizationNodeType =
|
|
239
|
-
(typeof OrganizationNodeType)[keyof typeof OrganizationNodeType];
|
|
240
172
|
export interface OrganizationNode {
|
|
241
173
|
Type?: OrganizationNodeType | undefined;
|
|
242
174
|
Value?: string | undefined;
|
|
@@ -252,32 +184,6 @@ export interface CreatePortfolioShareInput {
|
|
|
252
184
|
export interface CreatePortfolioShareOutput {
|
|
253
185
|
PortfolioShareToken?: string | undefined;
|
|
254
186
|
}
|
|
255
|
-
export declare class OperationNotSupportedException extends __BaseException {
|
|
256
|
-
readonly name: "OperationNotSupportedException";
|
|
257
|
-
readonly $fault: "client";
|
|
258
|
-
Message?: string | undefined;
|
|
259
|
-
constructor(
|
|
260
|
-
opts: __ExceptionOptionType<OperationNotSupportedException, __BaseException>
|
|
261
|
-
);
|
|
262
|
-
}
|
|
263
|
-
export declare const ProductType: {
|
|
264
|
-
readonly CLOUD_FORMATION_TEMPLATE: "CLOUD_FORMATION_TEMPLATE";
|
|
265
|
-
readonly EXTERNAL: "EXTERNAL";
|
|
266
|
-
readonly MARKETPLACE: "MARKETPLACE";
|
|
267
|
-
readonly TERRAFORM_CLOUD: "TERRAFORM_CLOUD";
|
|
268
|
-
readonly TERRAFORM_OPEN_SOURCE: "TERRAFORM_OPEN_SOURCE";
|
|
269
|
-
};
|
|
270
|
-
export type ProductType = (typeof ProductType)[keyof typeof ProductType];
|
|
271
|
-
export declare const ProvisioningArtifactType: {
|
|
272
|
-
readonly CLOUD_FORMATION_TEMPLATE: "CLOUD_FORMATION_TEMPLATE";
|
|
273
|
-
readonly EXTERNAL: "EXTERNAL";
|
|
274
|
-
readonly MARKETPLACE_AMI: "MARKETPLACE_AMI";
|
|
275
|
-
readonly MARKETPLACE_CAR: "MARKETPLACE_CAR";
|
|
276
|
-
readonly TERRAFORM_CLOUD: "TERRAFORM_CLOUD";
|
|
277
|
-
readonly TERRAFORM_OPEN_SOURCE: "TERRAFORM_OPEN_SOURCE";
|
|
278
|
-
};
|
|
279
|
-
export type ProvisioningArtifactType =
|
|
280
|
-
(typeof ProvisioningArtifactType)[keyof typeof ProvisioningArtifactType];
|
|
281
187
|
export interface ProvisioningArtifactProperties {
|
|
282
188
|
Name?: string | undefined;
|
|
283
189
|
Description?: string | undefined;
|
|
@@ -294,10 +200,6 @@ export interface CodeStarParameters {
|
|
|
294
200
|
export interface SourceConnectionParameters {
|
|
295
201
|
CodeStar?: CodeStarParameters | undefined;
|
|
296
202
|
}
|
|
297
|
-
export declare const SourceType: {
|
|
298
|
-
readonly CODESTAR: "CODESTAR";
|
|
299
|
-
};
|
|
300
|
-
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
301
203
|
export interface SourceConnection {
|
|
302
204
|
Type?: SourceType | undefined;
|
|
303
205
|
ConnectionParameters: SourceConnectionParameters | undefined;
|
|
@@ -330,12 +232,6 @@ export interface ProductViewSummary {
|
|
|
330
232
|
SupportDescription?: string | undefined;
|
|
331
233
|
SupportUrl?: string | undefined;
|
|
332
234
|
}
|
|
333
|
-
export declare const LastSyncStatus: {
|
|
334
|
-
readonly FAILED: "FAILED";
|
|
335
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
336
|
-
};
|
|
337
|
-
export type LastSyncStatus =
|
|
338
|
-
(typeof LastSyncStatus)[keyof typeof LastSyncStatus];
|
|
339
235
|
export interface LastSync {
|
|
340
236
|
LastSyncTime?: Date | undefined;
|
|
341
237
|
LastSyncStatus?: LastSyncStatus | undefined;
|
|
@@ -355,12 +251,6 @@ export interface ProductViewDetail {
|
|
|
355
251
|
CreatedTime?: Date | undefined;
|
|
356
252
|
SourceConnection?: SourceConnectionDetail | undefined;
|
|
357
253
|
}
|
|
358
|
-
export declare const ProvisioningArtifactGuidance: {
|
|
359
|
-
readonly DEFAULT: "DEFAULT";
|
|
360
|
-
readonly DEPRECATED: "DEPRECATED";
|
|
361
|
-
};
|
|
362
|
-
export type ProvisioningArtifactGuidance =
|
|
363
|
-
(typeof ProvisioningArtifactGuidance)[keyof typeof ProvisioningArtifactGuidance];
|
|
364
254
|
export interface ProvisioningArtifactDetail {
|
|
365
255
|
Id?: string | undefined;
|
|
366
256
|
Name?: string | undefined;
|
|
@@ -376,11 +266,6 @@ export interface CreateProductOutput {
|
|
|
376
266
|
ProvisioningArtifactDetail?: ProvisioningArtifactDetail | undefined;
|
|
377
267
|
Tags?: Tag[] | undefined;
|
|
378
268
|
}
|
|
379
|
-
export declare const ProvisionedProductPlanType: {
|
|
380
|
-
readonly CLOUDFORMATION: "CLOUDFORMATION";
|
|
381
|
-
};
|
|
382
|
-
export type ProvisionedProductPlanType =
|
|
383
|
-
(typeof ProvisionedProductPlanType)[keyof typeof ProvisionedProductPlanType];
|
|
384
269
|
export interface UpdateProvisioningParameter {
|
|
385
270
|
Key?: string | undefined;
|
|
386
271
|
Value?: string | undefined;
|
|
@@ -417,19 +302,6 @@ export interface CreateProvisioningArtifactOutput {
|
|
|
417
302
|
Info?: Record<string, string> | undefined;
|
|
418
303
|
Status?: Status | undefined;
|
|
419
304
|
}
|
|
420
|
-
export declare const ServiceActionDefinitionKey: {
|
|
421
|
-
readonly AssumeRole: "AssumeRole";
|
|
422
|
-
readonly Name: "Name";
|
|
423
|
-
readonly Parameters: "Parameters";
|
|
424
|
-
readonly Version: "Version";
|
|
425
|
-
};
|
|
426
|
-
export type ServiceActionDefinitionKey =
|
|
427
|
-
(typeof ServiceActionDefinitionKey)[keyof typeof ServiceActionDefinitionKey];
|
|
428
|
-
export declare const ServiceActionDefinitionType: {
|
|
429
|
-
readonly SsmAutomation: "SSM_AUTOMATION";
|
|
430
|
-
};
|
|
431
|
-
export type ServiceActionDefinitionType =
|
|
432
|
-
(typeof ServiceActionDefinitionType)[keyof typeof ServiceActionDefinitionType];
|
|
433
305
|
export interface CreateServiceActionInput {
|
|
434
306
|
Name: string | undefined;
|
|
435
307
|
DefinitionType: ServiceActionDefinitionType | undefined;
|
|
@@ -475,14 +347,6 @@ export interface DeletePortfolioInput {
|
|
|
475
347
|
Id: string | undefined;
|
|
476
348
|
}
|
|
477
349
|
export interface DeletePortfolioOutput {}
|
|
478
|
-
export declare class ResourceInUseException extends __BaseException {
|
|
479
|
-
readonly name: "ResourceInUseException";
|
|
480
|
-
readonly $fault: "client";
|
|
481
|
-
Message?: string | undefined;
|
|
482
|
-
constructor(
|
|
483
|
-
opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
|
|
484
|
-
);
|
|
485
|
-
}
|
|
486
350
|
export interface DeletePortfolioShareInput {
|
|
487
351
|
AcceptLanguage?: string | undefined;
|
|
488
352
|
PortfolioId: string | undefined;
|
|
@@ -532,13 +396,6 @@ export interface DescribeCopyProductStatusInput {
|
|
|
532
396
|
AcceptLanguage?: string | undefined;
|
|
533
397
|
CopyProductToken: string | undefined;
|
|
534
398
|
}
|
|
535
|
-
export declare const CopyProductStatus: {
|
|
536
|
-
readonly FAILED: "FAILED";
|
|
537
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
538
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
539
|
-
};
|
|
540
|
-
export type CopyProductStatus =
|
|
541
|
-
(typeof CopyProductStatus)[keyof typeof CopyProductStatus];
|
|
542
399
|
export interface DescribeCopyProductStatusOutput {
|
|
543
400
|
CopyProductStatus?: CopyProductStatus | undefined;
|
|
544
401
|
TargetProductId?: string | undefined;
|
|
@@ -557,14 +414,6 @@ export interface DescribePortfolioOutput {
|
|
|
557
414
|
TagOptions?: TagOptionDetail[] | undefined;
|
|
558
415
|
Budgets?: BudgetDetail[] | undefined;
|
|
559
416
|
}
|
|
560
|
-
export declare const DescribePortfolioShareType: {
|
|
561
|
-
readonly ACCOUNT: "ACCOUNT";
|
|
562
|
-
readonly ORGANIZATION: "ORGANIZATION";
|
|
563
|
-
readonly ORGANIZATIONAL_UNIT: "ORGANIZATIONAL_UNIT";
|
|
564
|
-
readonly ORGANIZATION_MEMBER_ACCOUNT: "ORGANIZATION_MEMBER_ACCOUNT";
|
|
565
|
-
};
|
|
566
|
-
export type DescribePortfolioShareType =
|
|
567
|
-
(typeof DescribePortfolioShareType)[keyof typeof DescribePortfolioShareType];
|
|
568
417
|
export interface DescribePortfolioSharesInput {
|
|
569
418
|
PortfolioId: string | undefined;
|
|
570
419
|
Type: DescribePortfolioShareType | undefined;
|
|
@@ -594,14 +443,6 @@ export interface ShareDetails {
|
|
|
594
443
|
SuccessfulShares?: string[] | undefined;
|
|
595
444
|
ShareErrors?: ShareError[] | undefined;
|
|
596
445
|
}
|
|
597
|
-
export declare const ShareStatus: {
|
|
598
|
-
readonly COMPLETED: "COMPLETED";
|
|
599
|
-
readonly COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS";
|
|
600
|
-
readonly ERROR: "ERROR";
|
|
601
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
602
|
-
readonly NOT_STARTED: "NOT_STARTED";
|
|
603
|
-
};
|
|
604
|
-
export type ShareStatus = (typeof ShareStatus)[keyof typeof ShareStatus];
|
|
605
446
|
export interface DescribePortfolioShareStatusOutput {
|
|
606
447
|
PortfolioShareToken?: string | undefined;
|
|
607
448
|
PortfolioId?: string | undefined;
|
|
@@ -667,15 +508,6 @@ export interface DescribeProvisionedProductInput {
|
|
|
667
508
|
export interface CloudWatchDashboard {
|
|
668
509
|
Name?: string | undefined;
|
|
669
510
|
}
|
|
670
|
-
export declare const ProvisionedProductStatus: {
|
|
671
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
672
|
-
readonly ERROR: "ERROR";
|
|
673
|
-
readonly PLAN_IN_PROGRESS: "PLAN_IN_PROGRESS";
|
|
674
|
-
readonly TAINTED: "TAINTED";
|
|
675
|
-
readonly UNDER_CHANGE: "UNDER_CHANGE";
|
|
676
|
-
};
|
|
677
|
-
export type ProvisionedProductStatus =
|
|
678
|
-
(typeof ProvisionedProductStatus)[keyof typeof ProvisionedProductStatus];
|
|
679
511
|
export interface ProvisionedProductDetail {
|
|
680
512
|
Name?: string | undefined;
|
|
681
513
|
Arn?: string | undefined;
|
|
@@ -702,16 +534,6 @@ export interface DescribeProvisionedProductPlanInput {
|
|
|
702
534
|
PageSize?: number | undefined;
|
|
703
535
|
PageToken?: string | undefined;
|
|
704
536
|
}
|
|
705
|
-
export declare const ProvisionedProductPlanStatus: {
|
|
706
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
707
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
708
|
-
readonly CREATE_SUCCESS: "CREATE_SUCCESS";
|
|
709
|
-
readonly EXECUTE_FAILED: "EXECUTE_FAILED";
|
|
710
|
-
readonly EXECUTE_IN_PROGRESS: "EXECUTE_IN_PROGRESS";
|
|
711
|
-
readonly EXECUTE_SUCCESS: "EXECUTE_SUCCESS";
|
|
712
|
-
};
|
|
713
|
-
export type ProvisionedProductPlanStatus =
|
|
714
|
-
(typeof ProvisionedProductPlanStatus)[keyof typeof ProvisionedProductPlanStatus];
|
|
715
537
|
export interface ProvisionedProductPlanDetails {
|
|
716
538
|
CreatedTime?: Date | undefined;
|
|
717
539
|
PathId?: string | undefined;
|
|
@@ -729,35 +551,6 @@ export interface ProvisionedProductPlanDetails {
|
|
|
729
551
|
Tags?: Tag[] | undefined;
|
|
730
552
|
StatusMessage?: string | undefined;
|
|
731
553
|
}
|
|
732
|
-
export declare const ChangeAction: {
|
|
733
|
-
readonly ADD: "ADD";
|
|
734
|
-
readonly MODIFY: "MODIFY";
|
|
735
|
-
readonly REMOVE: "REMOVE";
|
|
736
|
-
};
|
|
737
|
-
export type ChangeAction = (typeof ChangeAction)[keyof typeof ChangeAction];
|
|
738
|
-
export declare const EvaluationType: {
|
|
739
|
-
readonly DYNAMIC: "DYNAMIC";
|
|
740
|
-
readonly STATIC: "STATIC";
|
|
741
|
-
};
|
|
742
|
-
export type EvaluationType =
|
|
743
|
-
(typeof EvaluationType)[keyof typeof EvaluationType];
|
|
744
|
-
export declare const ResourceAttribute: {
|
|
745
|
-
readonly CREATIONPOLICY: "CREATIONPOLICY";
|
|
746
|
-
readonly DELETIONPOLICY: "DELETIONPOLICY";
|
|
747
|
-
readonly METADATA: "METADATA";
|
|
748
|
-
readonly PROPERTIES: "PROPERTIES";
|
|
749
|
-
readonly TAGS: "TAGS";
|
|
750
|
-
readonly UPDATEPOLICY: "UPDATEPOLICY";
|
|
751
|
-
};
|
|
752
|
-
export type ResourceAttribute =
|
|
753
|
-
(typeof ResourceAttribute)[keyof typeof ResourceAttribute];
|
|
754
|
-
export declare const RequiresRecreation: {
|
|
755
|
-
readonly ALWAYS: "ALWAYS";
|
|
756
|
-
readonly CONDITIONALLY: "CONDITIONALLY";
|
|
757
|
-
readonly NEVER: "NEVER";
|
|
758
|
-
};
|
|
759
|
-
export type RequiresRecreation =
|
|
760
|
-
(typeof RequiresRecreation)[keyof typeof RequiresRecreation];
|
|
761
554
|
export interface ResourceTargetDefinition {
|
|
762
555
|
Attribute?: ResourceAttribute | undefined;
|
|
763
556
|
Name?: string | undefined;
|
|
@@ -768,12 +561,6 @@ export interface ResourceChangeDetail {
|
|
|
768
561
|
Evaluation?: EvaluationType | undefined;
|
|
769
562
|
CausingEntity?: string | undefined;
|
|
770
563
|
}
|
|
771
|
-
export declare const Replacement: {
|
|
772
|
-
readonly CONDITIONAL: "CONDITIONAL";
|
|
773
|
-
readonly FALSE: "FALSE";
|
|
774
|
-
readonly TRUE: "TRUE";
|
|
775
|
-
};
|
|
776
|
-
export type Replacement = (typeof Replacement)[keyof typeof Replacement];
|
|
777
564
|
export interface ResourceChange {
|
|
778
565
|
Action?: ChangeAction | undefined;
|
|
779
566
|
LogicalResourceId?: string | undefined;
|
|
@@ -872,14 +659,6 @@ export interface RecordTag {
|
|
|
872
659
|
Key?: string | undefined;
|
|
873
660
|
Value?: string | undefined;
|
|
874
661
|
}
|
|
875
|
-
export declare const RecordStatus: {
|
|
876
|
-
readonly CREATED: "CREATED";
|
|
877
|
-
readonly FAILED: "FAILED";
|
|
878
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
879
|
-
readonly IN_PROGRESS_IN_ERROR: "IN_PROGRESS_IN_ERROR";
|
|
880
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
881
|
-
};
|
|
882
|
-
export type RecordStatus = (typeof RecordStatus)[keyof typeof RecordStatus];
|
|
883
662
|
export interface RecordDetail {
|
|
884
663
|
RecordId?: string | undefined;
|
|
885
664
|
ProvisionedProductName?: string | undefined;
|
|
@@ -1213,13 +992,6 @@ export interface ListStackInstancesForProvisionedProductInput {
|
|
|
1213
992
|
PageToken?: string | undefined;
|
|
1214
993
|
PageSize?: number | undefined;
|
|
1215
994
|
}
|
|
1216
|
-
export declare const StackInstanceStatus: {
|
|
1217
|
-
readonly CURRENT: "CURRENT";
|
|
1218
|
-
readonly INOPERABLE: "INOPERABLE";
|
|
1219
|
-
readonly OUTDATED: "OUTDATED";
|
|
1220
|
-
};
|
|
1221
|
-
export type StackInstanceStatus =
|
|
1222
|
-
(typeof StackInstanceStatus)[keyof typeof StackInstanceStatus];
|
|
1223
995
|
export interface StackInstance {
|
|
1224
996
|
Account?: string | undefined;
|
|
1225
997
|
Region?: string | undefined;
|
|
@@ -1250,12 +1022,6 @@ export interface UniqueTagResourceIdentifier {
|
|
|
1250
1022
|
export interface EngineWorkflowResourceIdentifier {
|
|
1251
1023
|
UniqueTag?: UniqueTagResourceIdentifier | undefined;
|
|
1252
1024
|
}
|
|
1253
|
-
export declare const EngineWorkflowStatus: {
|
|
1254
|
-
readonly FAILED: "FAILED";
|
|
1255
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
1256
|
-
};
|
|
1257
|
-
export type EngineWorkflowStatus =
|
|
1258
|
-
(typeof EngineWorkflowStatus)[keyof typeof EngineWorkflowStatus];
|
|
1259
1025
|
export interface NotifyProvisionProductEngineWorkflowResultInput {
|
|
1260
1026
|
WorkflowToken: string | undefined;
|
|
1261
1027
|
RecordId: string | undefined;
|
|
@@ -1329,26 +1095,6 @@ export interface ScanProvisionedProductsOutput {
|
|
|
1329
1095
|
ProvisionedProducts?: ProvisionedProductDetail[] | undefined;
|
|
1330
1096
|
NextPageToken?: string | undefined;
|
|
1331
1097
|
}
|
|
1332
|
-
export declare const ProductViewFilterBy: {
|
|
1333
|
-
readonly FullTextSearch: "FullTextSearch";
|
|
1334
|
-
readonly Owner: "Owner";
|
|
1335
|
-
readonly ProductType: "ProductType";
|
|
1336
|
-
readonly SourceProductId: "SourceProductId";
|
|
1337
|
-
};
|
|
1338
|
-
export type ProductViewFilterBy =
|
|
1339
|
-
(typeof ProductViewFilterBy)[keyof typeof ProductViewFilterBy];
|
|
1340
|
-
export declare const ProductViewSortBy: {
|
|
1341
|
-
readonly CreationDate: "CreationDate";
|
|
1342
|
-
readonly Title: "Title";
|
|
1343
|
-
readonly VersionCount: "VersionCount";
|
|
1344
|
-
};
|
|
1345
|
-
export type ProductViewSortBy =
|
|
1346
|
-
(typeof ProductViewSortBy)[keyof typeof ProductViewSortBy];
|
|
1347
|
-
export declare const SortOrder: {
|
|
1348
|
-
readonly ASCENDING: "ASCENDING";
|
|
1349
|
-
readonly DESCENDING: "DESCENDING";
|
|
1350
|
-
};
|
|
1351
|
-
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
1352
1098
|
export interface SearchProductsInput {
|
|
1353
1099
|
AcceptLanguage?: string | undefined;
|
|
1354
1100
|
Filters?: Partial<Record<ProductViewFilterBy, string[]>> | undefined;
|
|
@@ -1368,10 +1114,6 @@ export interface SearchProductsOutput {
|
|
|
1368
1114
|
| undefined;
|
|
1369
1115
|
NextPageToken?: string | undefined;
|
|
1370
1116
|
}
|
|
1371
|
-
export declare const ProductSource: {
|
|
1372
|
-
readonly ACCOUNT: "ACCOUNT";
|
|
1373
|
-
};
|
|
1374
|
-
export type ProductSource = (typeof ProductSource)[keyof typeof ProductSource];
|
|
1375
1117
|
export interface SearchProductsAsAdminInput {
|
|
1376
1118
|
AcceptLanguage?: string | undefined;
|
|
1377
1119
|
PortfolioId?: string | undefined;
|
|
@@ -1386,11 +1128,6 @@ export interface SearchProductsAsAdminOutput {
|
|
|
1386
1128
|
ProductViewDetails?: ProductViewDetail[] | undefined;
|
|
1387
1129
|
NextPageToken?: string | undefined;
|
|
1388
1130
|
}
|
|
1389
|
-
export declare const ProvisionedProductViewFilterBy: {
|
|
1390
|
-
readonly SearchQuery: "SearchQuery";
|
|
1391
|
-
};
|
|
1392
|
-
export type ProvisionedProductViewFilterBy =
|
|
1393
|
-
(typeof ProvisionedProductViewFilterBy)[keyof typeof ProvisionedProductViewFilterBy];
|
|
1394
1131
|
export interface SearchProvisionedProductsInput {
|
|
1395
1132
|
AcceptLanguage?: string | undefined;
|
|
1396
1133
|
AccessLevelFilter?: AccessLevelFilter | undefined;
|
|
@@ -1493,13 +1230,6 @@ export interface UpdateProductOutput {
|
|
|
1493
1230
|
ProductViewDetail?: ProductViewDetail | undefined;
|
|
1494
1231
|
Tags?: Tag[] | undefined;
|
|
1495
1232
|
}
|
|
1496
|
-
export declare const StackSetOperationType: {
|
|
1497
|
-
readonly CREATE: "CREATE";
|
|
1498
|
-
readonly DELETE: "DELETE";
|
|
1499
|
-
readonly UPDATE: "UPDATE";
|
|
1500
|
-
};
|
|
1501
|
-
export type StackSetOperationType =
|
|
1502
|
-
(typeof StackSetOperationType)[keyof typeof StackSetOperationType];
|
|
1503
1233
|
export interface UpdateProvisioningPreferences {
|
|
1504
1234
|
StackSetAccounts?: string[] | undefined;
|
|
1505
1235
|
StackSetRegions?: string[] | undefined;
|
|
@@ -1527,11 +1257,6 @@ export interface UpdateProvisionedProductInput {
|
|
|
1527
1257
|
export interface UpdateProvisionedProductOutput {
|
|
1528
1258
|
RecordDetail?: RecordDetail | undefined;
|
|
1529
1259
|
}
|
|
1530
|
-
export declare const PropertyKey: {
|
|
1531
|
-
readonly LaunchRole: "LAUNCH_ROLE";
|
|
1532
|
-
readonly Owner: "OWNER";
|
|
1533
|
-
};
|
|
1534
|
-
export type PropertyKey = (typeof PropertyKey)[keyof typeof PropertyKey];
|
|
1535
1260
|
export interface UpdateProvisionedProductPropertiesInput {
|
|
1536
1261
|
AcceptLanguage?: string | undefined;
|
|
1537
1262
|
ProvisionedProductId: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-service-catalog",
|
|
3
3
|
"description": "AWS SDK for JavaScript Service Catalog Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.935.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",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|