@aws-sdk/client-service-catalog 3.687.0 → 3.691.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-types/models/models_0.d.ts +686 -686
- package/dist-types/ts3.4/models/models_0.d.ts +698 -688
- package/package.json +7 -7
|
@@ -8,15 +8,15 @@ export declare const PortfolioShareType: {
|
|
|
8
8
|
export type PortfolioShareType =
|
|
9
9
|
(typeof PortfolioShareType)[keyof typeof PortfolioShareType];
|
|
10
10
|
export interface AcceptPortfolioShareInput {
|
|
11
|
-
AcceptLanguage?: string;
|
|
11
|
+
AcceptLanguage?: string | undefined;
|
|
12
12
|
PortfolioId: string | undefined;
|
|
13
|
-
PortfolioShareType?: PortfolioShareType;
|
|
13
|
+
PortfolioShareType?: PortfolioShareType | undefined;
|
|
14
14
|
}
|
|
15
15
|
export interface AcceptPortfolioShareOutput {}
|
|
16
16
|
export declare class InvalidParametersException extends __BaseException {
|
|
17
17
|
readonly name: "InvalidParametersException";
|
|
18
18
|
readonly $fault: "client";
|
|
19
|
-
Message?: string;
|
|
19
|
+
Message?: string | undefined;
|
|
20
20
|
constructor(
|
|
21
21
|
opts: __ExceptionOptionType<InvalidParametersException, __BaseException>
|
|
22
22
|
);
|
|
@@ -24,7 +24,7 @@ export declare class InvalidParametersException extends __BaseException {
|
|
|
24
24
|
export declare class LimitExceededException extends __BaseException {
|
|
25
25
|
readonly name: "LimitExceededException";
|
|
26
26
|
readonly $fault: "client";
|
|
27
|
-
Message?: string;
|
|
27
|
+
Message?: string | undefined;
|
|
28
28
|
constructor(
|
|
29
29
|
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
30
30
|
);
|
|
@@ -32,7 +32,7 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
32
32
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
33
33
|
readonly name: "ResourceNotFoundException";
|
|
34
34
|
readonly $fault: "client";
|
|
35
|
-
Message?: string;
|
|
35
|
+
Message?: string | undefined;
|
|
36
36
|
constructor(
|
|
37
37
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
38
38
|
);
|
|
@@ -45,8 +45,8 @@ export declare const AccessLevelFilterKey: {
|
|
|
45
45
|
export type AccessLevelFilterKey =
|
|
46
46
|
(typeof AccessLevelFilterKey)[keyof typeof AccessLevelFilterKey];
|
|
47
47
|
export interface AccessLevelFilter {
|
|
48
|
-
Key?: AccessLevelFilterKey;
|
|
49
|
-
Value?: string;
|
|
48
|
+
Key?: AccessLevelFilterKey | undefined;
|
|
49
|
+
Value?: string | undefined;
|
|
50
50
|
}
|
|
51
51
|
export declare const AccessStatus: {
|
|
52
52
|
readonly DISABLED: "DISABLED";
|
|
@@ -66,7 +66,7 @@ export interface AssociateBudgetWithResourceOutput {}
|
|
|
66
66
|
export declare class DuplicateResourceException extends __BaseException {
|
|
67
67
|
readonly name: "DuplicateResourceException";
|
|
68
68
|
readonly $fault: "client";
|
|
69
|
-
Message?: string;
|
|
69
|
+
Message?: string | undefined;
|
|
70
70
|
constructor(
|
|
71
71
|
opts: __ExceptionOptionType<DuplicateResourceException, __BaseException>
|
|
72
72
|
);
|
|
@@ -77,25 +77,25 @@ export declare const PrincipalType: {
|
|
|
77
77
|
};
|
|
78
78
|
export type PrincipalType = (typeof PrincipalType)[keyof typeof PrincipalType];
|
|
79
79
|
export interface AssociatePrincipalWithPortfolioInput {
|
|
80
|
-
AcceptLanguage?: string;
|
|
80
|
+
AcceptLanguage?: string | undefined;
|
|
81
81
|
PortfolioId: string | undefined;
|
|
82
82
|
PrincipalARN: string | undefined;
|
|
83
83
|
PrincipalType: PrincipalType | undefined;
|
|
84
84
|
}
|
|
85
85
|
export interface AssociatePrincipalWithPortfolioOutput {}
|
|
86
86
|
export interface AssociateProductWithPortfolioInput {
|
|
87
|
-
AcceptLanguage?: string;
|
|
87
|
+
AcceptLanguage?: string | undefined;
|
|
88
88
|
ProductId: string | undefined;
|
|
89
89
|
PortfolioId: string | undefined;
|
|
90
|
-
SourcePortfolioId?: string;
|
|
90
|
+
SourcePortfolioId?: string | undefined;
|
|
91
91
|
}
|
|
92
92
|
export interface AssociateProductWithPortfolioOutput {}
|
|
93
93
|
export interface AssociateServiceActionWithProvisioningArtifactInput {
|
|
94
94
|
ProductId: string | undefined;
|
|
95
95
|
ProvisioningArtifactId: string | undefined;
|
|
96
96
|
ServiceActionId: string | undefined;
|
|
97
|
-
AcceptLanguage?: string;
|
|
98
|
-
IdempotencyToken?: string;
|
|
97
|
+
AcceptLanguage?: string | undefined;
|
|
98
|
+
IdempotencyToken?: string | undefined;
|
|
99
99
|
}
|
|
100
100
|
export interface AssociateServiceActionWithProvisioningArtifactOutput {}
|
|
101
101
|
export interface AssociateTagOptionWithResourceInput {
|
|
@@ -106,7 +106,7 @@ export interface AssociateTagOptionWithResourceOutput {}
|
|
|
106
106
|
export declare class InvalidStateException extends __BaseException {
|
|
107
107
|
readonly name: "InvalidStateException";
|
|
108
108
|
readonly $fault: "client";
|
|
109
|
-
Message?: string;
|
|
109
|
+
Message?: string | undefined;
|
|
110
110
|
constructor(
|
|
111
111
|
opts: __ExceptionOptionType<InvalidStateException, __BaseException>
|
|
112
112
|
);
|
|
@@ -114,7 +114,7 @@ export declare class InvalidStateException extends __BaseException {
|
|
|
114
114
|
export declare class TagOptionNotMigratedException extends __BaseException {
|
|
115
115
|
readonly name: "TagOptionNotMigratedException";
|
|
116
116
|
readonly $fault: "client";
|
|
117
|
-
Message?: string;
|
|
117
|
+
Message?: string | undefined;
|
|
118
118
|
constructor(
|
|
119
119
|
opts: __ExceptionOptionType<TagOptionNotMigratedException, __BaseException>
|
|
120
120
|
);
|
|
@@ -126,7 +126,7 @@ export interface ServiceActionAssociation {
|
|
|
126
126
|
}
|
|
127
127
|
export interface BatchAssociateServiceActionWithProvisioningArtifactInput {
|
|
128
128
|
ServiceActionAssociations: ServiceActionAssociation[] | undefined;
|
|
129
|
-
AcceptLanguage?: string;
|
|
129
|
+
AcceptLanguage?: string | undefined;
|
|
130
130
|
}
|
|
131
131
|
export declare const ServiceActionAssociationErrorCode: {
|
|
132
132
|
readonly DuplicateResourceException: "DUPLICATE_RESOURCE";
|
|
@@ -139,21 +139,25 @@ export declare const ServiceActionAssociationErrorCode: {
|
|
|
139
139
|
export type ServiceActionAssociationErrorCode =
|
|
140
140
|
(typeof ServiceActionAssociationErrorCode)[keyof typeof ServiceActionAssociationErrorCode];
|
|
141
141
|
export interface FailedServiceActionAssociation {
|
|
142
|
-
ServiceActionId?: string;
|
|
143
|
-
ProductId?: string;
|
|
144
|
-
ProvisioningArtifactId?: string;
|
|
145
|
-
ErrorCode?: ServiceActionAssociationErrorCode;
|
|
146
|
-
ErrorMessage?: string;
|
|
142
|
+
ServiceActionId?: string | undefined;
|
|
143
|
+
ProductId?: string | undefined;
|
|
144
|
+
ProvisioningArtifactId?: string | undefined;
|
|
145
|
+
ErrorCode?: ServiceActionAssociationErrorCode | undefined;
|
|
146
|
+
ErrorMessage?: string | undefined;
|
|
147
147
|
}
|
|
148
148
|
export interface BatchAssociateServiceActionWithProvisioningArtifactOutput {
|
|
149
|
-
FailedServiceActionAssociations?:
|
|
149
|
+
FailedServiceActionAssociations?:
|
|
150
|
+
| FailedServiceActionAssociation[]
|
|
151
|
+
| undefined;
|
|
150
152
|
}
|
|
151
153
|
export interface BatchDisassociateServiceActionFromProvisioningArtifactInput {
|
|
152
154
|
ServiceActionAssociations: ServiceActionAssociation[] | undefined;
|
|
153
|
-
AcceptLanguage?: string;
|
|
155
|
+
AcceptLanguage?: string | undefined;
|
|
154
156
|
}
|
|
155
157
|
export interface BatchDisassociateServiceActionFromProvisioningArtifactOutput {
|
|
156
|
-
FailedServiceActionAssociations?:
|
|
158
|
+
FailedServiceActionAssociations?:
|
|
159
|
+
| FailedServiceActionAssociation[]
|
|
160
|
+
| undefined;
|
|
157
161
|
}
|
|
158
162
|
export declare const CopyOption: {
|
|
159
163
|
readonly CopyTags: "CopyTags";
|
|
@@ -165,35 +169,35 @@ export declare const ProvisioningArtifactPropertyName: {
|
|
|
165
169
|
export type ProvisioningArtifactPropertyName =
|
|
166
170
|
(typeof ProvisioningArtifactPropertyName)[keyof typeof ProvisioningArtifactPropertyName];
|
|
167
171
|
export interface CopyProductInput {
|
|
168
|
-
AcceptLanguage?: string;
|
|
172
|
+
AcceptLanguage?: string | undefined;
|
|
169
173
|
SourceProductArn: string | undefined;
|
|
170
|
-
TargetProductId?: string;
|
|
171
|
-
TargetProductName?: string;
|
|
172
|
-
SourceProvisioningArtifactIdentifiers?:
|
|
173
|
-
Record<ProvisioningArtifactPropertyName, string
|
|
174
|
-
|
|
175
|
-
CopyOptions?: CopyOption[];
|
|
176
|
-
IdempotencyToken?: string;
|
|
174
|
+
TargetProductId?: string | undefined;
|
|
175
|
+
TargetProductName?: string | undefined;
|
|
176
|
+
SourceProvisioningArtifactIdentifiers?:
|
|
177
|
+
| Partial<Record<ProvisioningArtifactPropertyName, string>>[]
|
|
178
|
+
| undefined;
|
|
179
|
+
CopyOptions?: CopyOption[] | undefined;
|
|
180
|
+
IdempotencyToken?: string | undefined;
|
|
177
181
|
}
|
|
178
182
|
export interface CopyProductOutput {
|
|
179
|
-
CopyProductToken?: string;
|
|
183
|
+
CopyProductToken?: string | undefined;
|
|
180
184
|
}
|
|
181
185
|
export interface CreateConstraintInput {
|
|
182
|
-
AcceptLanguage?: string;
|
|
186
|
+
AcceptLanguage?: string | undefined;
|
|
183
187
|
PortfolioId: string | undefined;
|
|
184
188
|
ProductId: string | undefined;
|
|
185
189
|
Parameters: string | undefined;
|
|
186
190
|
Type: string | undefined;
|
|
187
|
-
Description?: string;
|
|
188
|
-
IdempotencyToken?: string;
|
|
191
|
+
Description?: string | undefined;
|
|
192
|
+
IdempotencyToken?: string | undefined;
|
|
189
193
|
}
|
|
190
194
|
export interface ConstraintDetail {
|
|
191
|
-
ConstraintId?: string;
|
|
192
|
-
Type?: string;
|
|
193
|
-
Description?: string;
|
|
194
|
-
Owner?: string;
|
|
195
|
-
ProductId?: string;
|
|
196
|
-
PortfolioId?: string;
|
|
195
|
+
ConstraintId?: string | undefined;
|
|
196
|
+
Type?: string | undefined;
|
|
197
|
+
Description?: string | undefined;
|
|
198
|
+
Owner?: string | undefined;
|
|
199
|
+
ProductId?: string | undefined;
|
|
200
|
+
PortfolioId?: string | undefined;
|
|
197
201
|
}
|
|
198
202
|
export declare const Status: {
|
|
199
203
|
readonly AVAILABLE: "AVAILABLE";
|
|
@@ -202,29 +206,29 @@ export declare const Status: {
|
|
|
202
206
|
};
|
|
203
207
|
export type Status = (typeof Status)[keyof typeof Status];
|
|
204
208
|
export interface CreateConstraintOutput {
|
|
205
|
-
ConstraintDetail?: ConstraintDetail;
|
|
206
|
-
ConstraintParameters?: string;
|
|
207
|
-
Status?: Status;
|
|
209
|
+
ConstraintDetail?: ConstraintDetail | undefined;
|
|
210
|
+
ConstraintParameters?: string | undefined;
|
|
211
|
+
Status?: Status | undefined;
|
|
208
212
|
}
|
|
209
213
|
export interface CreatePortfolioInput {
|
|
210
|
-
AcceptLanguage?: string;
|
|
214
|
+
AcceptLanguage?: string | undefined;
|
|
211
215
|
DisplayName: string | undefined;
|
|
212
|
-
Description?: string;
|
|
216
|
+
Description?: string | undefined;
|
|
213
217
|
ProviderName: string | undefined;
|
|
214
|
-
Tags?: Tag[];
|
|
215
|
-
IdempotencyToken?: string;
|
|
218
|
+
Tags?: Tag[] | undefined;
|
|
219
|
+
IdempotencyToken?: string | undefined;
|
|
216
220
|
}
|
|
217
221
|
export interface PortfolioDetail {
|
|
218
|
-
Id?: string;
|
|
219
|
-
ARN?: string;
|
|
220
|
-
DisplayName?: string;
|
|
221
|
-
Description?: string;
|
|
222
|
-
CreatedTime?: Date;
|
|
223
|
-
ProviderName?: string;
|
|
222
|
+
Id?: string | undefined;
|
|
223
|
+
ARN?: string | undefined;
|
|
224
|
+
DisplayName?: string | undefined;
|
|
225
|
+
Description?: string | undefined;
|
|
226
|
+
CreatedTime?: Date | undefined;
|
|
227
|
+
ProviderName?: string | undefined;
|
|
224
228
|
}
|
|
225
229
|
export interface CreatePortfolioOutput {
|
|
226
|
-
PortfolioDetail?: PortfolioDetail;
|
|
227
|
-
Tags?: Tag[];
|
|
230
|
+
PortfolioDetail?: PortfolioDetail | undefined;
|
|
231
|
+
Tags?: Tag[] | undefined;
|
|
228
232
|
}
|
|
229
233
|
export declare const OrganizationNodeType: {
|
|
230
234
|
readonly ACCOUNT: "ACCOUNT";
|
|
@@ -234,24 +238,24 @@ export declare const OrganizationNodeType: {
|
|
|
234
238
|
export type OrganizationNodeType =
|
|
235
239
|
(typeof OrganizationNodeType)[keyof typeof OrganizationNodeType];
|
|
236
240
|
export interface OrganizationNode {
|
|
237
|
-
Type?: OrganizationNodeType;
|
|
238
|
-
Value?: string;
|
|
241
|
+
Type?: OrganizationNodeType | undefined;
|
|
242
|
+
Value?: string | undefined;
|
|
239
243
|
}
|
|
240
244
|
export interface CreatePortfolioShareInput {
|
|
241
|
-
AcceptLanguage?: string;
|
|
245
|
+
AcceptLanguage?: string | undefined;
|
|
242
246
|
PortfolioId: string | undefined;
|
|
243
|
-
AccountId?: string;
|
|
244
|
-
OrganizationNode?: OrganizationNode;
|
|
245
|
-
ShareTagOptions?: boolean;
|
|
246
|
-
SharePrincipals?: boolean;
|
|
247
|
+
AccountId?: string | undefined;
|
|
248
|
+
OrganizationNode?: OrganizationNode | undefined;
|
|
249
|
+
ShareTagOptions?: boolean | undefined;
|
|
250
|
+
SharePrincipals?: boolean | undefined;
|
|
247
251
|
}
|
|
248
252
|
export interface CreatePortfolioShareOutput {
|
|
249
|
-
PortfolioShareToken?: string;
|
|
253
|
+
PortfolioShareToken?: string | undefined;
|
|
250
254
|
}
|
|
251
255
|
export declare class OperationNotSupportedException extends __BaseException {
|
|
252
256
|
readonly name: "OperationNotSupportedException";
|
|
253
257
|
readonly $fault: "client";
|
|
254
|
-
Message?: string;
|
|
258
|
+
Message?: string | undefined;
|
|
255
259
|
constructor(
|
|
256
260
|
opts: __ExceptionOptionType<OperationNotSupportedException, __BaseException>
|
|
257
261
|
);
|
|
@@ -275,11 +279,11 @@ export declare const ProvisioningArtifactType: {
|
|
|
275
279
|
export type ProvisioningArtifactType =
|
|
276
280
|
(typeof ProvisioningArtifactType)[keyof typeof ProvisioningArtifactType];
|
|
277
281
|
export interface ProvisioningArtifactProperties {
|
|
278
|
-
Name?: string;
|
|
279
|
-
Description?: string;
|
|
280
|
-
Info?: Record<string, string
|
|
281
|
-
Type?: ProvisioningArtifactType;
|
|
282
|
-
DisableTemplateValidation?: boolean;
|
|
282
|
+
Name?: string | undefined;
|
|
283
|
+
Description?: string | undefined;
|
|
284
|
+
Info?: Record<string, string> | undefined;
|
|
285
|
+
Type?: ProvisioningArtifactType | undefined;
|
|
286
|
+
DisableTemplateValidation?: boolean | undefined;
|
|
283
287
|
}
|
|
284
288
|
export interface CodeStarParameters {
|
|
285
289
|
ConnectionArn: string | undefined;
|
|
@@ -288,43 +292,43 @@ export interface CodeStarParameters {
|
|
|
288
292
|
ArtifactPath: string | undefined;
|
|
289
293
|
}
|
|
290
294
|
export interface SourceConnectionParameters {
|
|
291
|
-
CodeStar?: CodeStarParameters;
|
|
295
|
+
CodeStar?: CodeStarParameters | undefined;
|
|
292
296
|
}
|
|
293
297
|
export declare const SourceType: {
|
|
294
298
|
readonly CODESTAR: "CODESTAR";
|
|
295
299
|
};
|
|
296
300
|
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
297
301
|
export interface SourceConnection {
|
|
298
|
-
Type?: SourceType;
|
|
302
|
+
Type?: SourceType | undefined;
|
|
299
303
|
ConnectionParameters: SourceConnectionParameters | undefined;
|
|
300
304
|
}
|
|
301
305
|
export interface CreateProductInput {
|
|
302
|
-
AcceptLanguage?: string;
|
|
306
|
+
AcceptLanguage?: string | undefined;
|
|
303
307
|
Name: string | undefined;
|
|
304
308
|
Owner: string | undefined;
|
|
305
|
-
Description?: string;
|
|
306
|
-
Distributor?: string;
|
|
307
|
-
SupportDescription?: string;
|
|
308
|
-
SupportEmail?: string;
|
|
309
|
-
SupportUrl?: string;
|
|
309
|
+
Description?: string | undefined;
|
|
310
|
+
Distributor?: string | undefined;
|
|
311
|
+
SupportDescription?: string | undefined;
|
|
312
|
+
SupportEmail?: string | undefined;
|
|
313
|
+
SupportUrl?: string | undefined;
|
|
310
314
|
ProductType: ProductType | undefined;
|
|
311
|
-
Tags?: Tag[];
|
|
312
|
-
ProvisioningArtifactParameters?: ProvisioningArtifactProperties;
|
|
313
|
-
IdempotencyToken?: string;
|
|
314
|
-
SourceConnection?: SourceConnection;
|
|
315
|
+
Tags?: Tag[] | undefined;
|
|
316
|
+
ProvisioningArtifactParameters?: ProvisioningArtifactProperties | undefined;
|
|
317
|
+
IdempotencyToken?: string | undefined;
|
|
318
|
+
SourceConnection?: SourceConnection | undefined;
|
|
315
319
|
}
|
|
316
320
|
export interface ProductViewSummary {
|
|
317
|
-
Id?: string;
|
|
318
|
-
ProductId?: string;
|
|
319
|
-
Name?: string;
|
|
320
|
-
Owner?: string;
|
|
321
|
-
ShortDescription?: string;
|
|
322
|
-
Type?: ProductType;
|
|
323
|
-
Distributor?: string;
|
|
324
|
-
HasDefaultPath?: boolean;
|
|
325
|
-
SupportEmail?: string;
|
|
326
|
-
SupportDescription?: string;
|
|
327
|
-
SupportUrl?: string;
|
|
321
|
+
Id?: string | undefined;
|
|
322
|
+
ProductId?: string | undefined;
|
|
323
|
+
Name?: string | undefined;
|
|
324
|
+
Owner?: string | undefined;
|
|
325
|
+
ShortDescription?: string | undefined;
|
|
326
|
+
Type?: ProductType | undefined;
|
|
327
|
+
Distributor?: string | undefined;
|
|
328
|
+
HasDefaultPath?: boolean | undefined;
|
|
329
|
+
SupportEmail?: string | undefined;
|
|
330
|
+
SupportDescription?: string | undefined;
|
|
331
|
+
SupportUrl?: string | undefined;
|
|
328
332
|
}
|
|
329
333
|
export declare const LastSyncStatus: {
|
|
330
334
|
readonly FAILED: "FAILED";
|
|
@@ -333,23 +337,23 @@ export declare const LastSyncStatus: {
|
|
|
333
337
|
export type LastSyncStatus =
|
|
334
338
|
(typeof LastSyncStatus)[keyof typeof LastSyncStatus];
|
|
335
339
|
export interface LastSync {
|
|
336
|
-
LastSyncTime?: Date;
|
|
337
|
-
LastSyncStatus?: LastSyncStatus;
|
|
338
|
-
LastSyncStatusMessage?: string;
|
|
339
|
-
LastSuccessfulSyncTime?: Date;
|
|
340
|
-
LastSuccessfulSyncProvisioningArtifactId?: string;
|
|
340
|
+
LastSyncTime?: Date | undefined;
|
|
341
|
+
LastSyncStatus?: LastSyncStatus | undefined;
|
|
342
|
+
LastSyncStatusMessage?: string | undefined;
|
|
343
|
+
LastSuccessfulSyncTime?: Date | undefined;
|
|
344
|
+
LastSuccessfulSyncProvisioningArtifactId?: string | undefined;
|
|
341
345
|
}
|
|
342
346
|
export interface SourceConnectionDetail {
|
|
343
|
-
Type?: SourceType;
|
|
344
|
-
ConnectionParameters?: SourceConnectionParameters;
|
|
345
|
-
LastSync?: LastSync;
|
|
347
|
+
Type?: SourceType | undefined;
|
|
348
|
+
ConnectionParameters?: SourceConnectionParameters | undefined;
|
|
349
|
+
LastSync?: LastSync | undefined;
|
|
346
350
|
}
|
|
347
351
|
export interface ProductViewDetail {
|
|
348
|
-
ProductViewSummary?: ProductViewSummary;
|
|
349
|
-
Status?: Status;
|
|
350
|
-
ProductARN?: string;
|
|
351
|
-
CreatedTime?: Date;
|
|
352
|
-
SourceConnection?: SourceConnectionDetail;
|
|
352
|
+
ProductViewSummary?: ProductViewSummary | undefined;
|
|
353
|
+
Status?: Status | undefined;
|
|
354
|
+
ProductARN?: string | undefined;
|
|
355
|
+
CreatedTime?: Date | undefined;
|
|
356
|
+
SourceConnection?: SourceConnectionDetail | undefined;
|
|
353
357
|
}
|
|
354
358
|
export declare const ProvisioningArtifactGuidance: {
|
|
355
359
|
readonly DEFAULT: "DEFAULT";
|
|
@@ -358,19 +362,19 @@ export declare const ProvisioningArtifactGuidance: {
|
|
|
358
362
|
export type ProvisioningArtifactGuidance =
|
|
359
363
|
(typeof ProvisioningArtifactGuidance)[keyof typeof ProvisioningArtifactGuidance];
|
|
360
364
|
export interface ProvisioningArtifactDetail {
|
|
361
|
-
Id?: string;
|
|
362
|
-
Name?: string;
|
|
363
|
-
Description?: string;
|
|
364
|
-
Type?: ProvisioningArtifactType;
|
|
365
|
-
CreatedTime?: Date;
|
|
366
|
-
Active?: boolean;
|
|
367
|
-
Guidance?: ProvisioningArtifactGuidance;
|
|
368
|
-
SourceRevision?: string;
|
|
365
|
+
Id?: string | undefined;
|
|
366
|
+
Name?: string | undefined;
|
|
367
|
+
Description?: string | undefined;
|
|
368
|
+
Type?: ProvisioningArtifactType | undefined;
|
|
369
|
+
CreatedTime?: Date | undefined;
|
|
370
|
+
Active?: boolean | undefined;
|
|
371
|
+
Guidance?: ProvisioningArtifactGuidance | undefined;
|
|
372
|
+
SourceRevision?: string | undefined;
|
|
369
373
|
}
|
|
370
374
|
export interface CreateProductOutput {
|
|
371
|
-
ProductViewDetail?: ProductViewDetail;
|
|
372
|
-
ProvisioningArtifactDetail?: ProvisioningArtifactDetail;
|
|
373
|
-
Tags?: Tag[];
|
|
375
|
+
ProductViewDetail?: ProductViewDetail | undefined;
|
|
376
|
+
ProvisioningArtifactDetail?: ProvisioningArtifactDetail | undefined;
|
|
377
|
+
Tags?: Tag[] | undefined;
|
|
374
378
|
}
|
|
375
379
|
export declare const ProvisionedProductPlanType: {
|
|
376
380
|
readonly CLOUDFORMATION: "CLOUDFORMATION";
|
|
@@ -378,40 +382,40 @@ export declare const ProvisionedProductPlanType: {
|
|
|
378
382
|
export type ProvisionedProductPlanType =
|
|
379
383
|
(typeof ProvisionedProductPlanType)[keyof typeof ProvisionedProductPlanType];
|
|
380
384
|
export interface UpdateProvisioningParameter {
|
|
381
|
-
Key?: string;
|
|
382
|
-
Value?: string;
|
|
383
|
-
UsePreviousValue?: boolean;
|
|
385
|
+
Key?: string | undefined;
|
|
386
|
+
Value?: string | undefined;
|
|
387
|
+
UsePreviousValue?: boolean | undefined;
|
|
384
388
|
}
|
|
385
389
|
export interface CreateProvisionedProductPlanInput {
|
|
386
|
-
AcceptLanguage?: string;
|
|
390
|
+
AcceptLanguage?: string | undefined;
|
|
387
391
|
PlanName: string | undefined;
|
|
388
392
|
PlanType: ProvisionedProductPlanType | undefined;
|
|
389
|
-
NotificationArns?: string[];
|
|
390
|
-
PathId?: string;
|
|
393
|
+
NotificationArns?: string[] | undefined;
|
|
394
|
+
PathId?: string | undefined;
|
|
391
395
|
ProductId: string | undefined;
|
|
392
396
|
ProvisionedProductName: string | undefined;
|
|
393
397
|
ProvisioningArtifactId: string | undefined;
|
|
394
|
-
ProvisioningParameters?: UpdateProvisioningParameter[];
|
|
395
|
-
IdempotencyToken?: string;
|
|
396
|
-
Tags?: Tag[];
|
|
398
|
+
ProvisioningParameters?: UpdateProvisioningParameter[] | undefined;
|
|
399
|
+
IdempotencyToken?: string | undefined;
|
|
400
|
+
Tags?: Tag[] | undefined;
|
|
397
401
|
}
|
|
398
402
|
export interface CreateProvisionedProductPlanOutput {
|
|
399
|
-
PlanName?: string;
|
|
400
|
-
PlanId?: string;
|
|
401
|
-
ProvisionProductId?: string;
|
|
402
|
-
ProvisionedProductName?: string;
|
|
403
|
-
ProvisioningArtifactId?: string;
|
|
403
|
+
PlanName?: string | undefined;
|
|
404
|
+
PlanId?: string | undefined;
|
|
405
|
+
ProvisionProductId?: string | undefined;
|
|
406
|
+
ProvisionedProductName?: string | undefined;
|
|
407
|
+
ProvisioningArtifactId?: string | undefined;
|
|
404
408
|
}
|
|
405
409
|
export interface CreateProvisioningArtifactInput {
|
|
406
|
-
AcceptLanguage?: string;
|
|
410
|
+
AcceptLanguage?: string | undefined;
|
|
407
411
|
ProductId: string | undefined;
|
|
408
412
|
Parameters: ProvisioningArtifactProperties | undefined;
|
|
409
|
-
IdempotencyToken?: string;
|
|
413
|
+
IdempotencyToken?: string | undefined;
|
|
410
414
|
}
|
|
411
415
|
export interface CreateProvisioningArtifactOutput {
|
|
412
|
-
ProvisioningArtifactDetail?: ProvisioningArtifactDetail;
|
|
413
|
-
Info?: Record<string, string
|
|
414
|
-
Status?: Status;
|
|
416
|
+
ProvisioningArtifactDetail?: ProvisioningArtifactDetail | undefined;
|
|
417
|
+
Info?: Record<string, string> | undefined;
|
|
418
|
+
Status?: Status | undefined;
|
|
415
419
|
}
|
|
416
420
|
export declare const ServiceActionDefinitionKey: {
|
|
417
421
|
readonly AssumeRole: "AssumeRole";
|
|
@@ -430,85 +434,85 @@ export interface CreateServiceActionInput {
|
|
|
430
434
|
Name: string | undefined;
|
|
431
435
|
DefinitionType: ServiceActionDefinitionType | undefined;
|
|
432
436
|
Definition: Partial<Record<ServiceActionDefinitionKey, string>> | undefined;
|
|
433
|
-
Description?: string;
|
|
434
|
-
AcceptLanguage?: string;
|
|
435
|
-
IdempotencyToken?: string;
|
|
437
|
+
Description?: string | undefined;
|
|
438
|
+
AcceptLanguage?: string | undefined;
|
|
439
|
+
IdempotencyToken?: string | undefined;
|
|
436
440
|
}
|
|
437
441
|
export interface ServiceActionSummary {
|
|
438
|
-
Id?: string;
|
|
439
|
-
Name?: string;
|
|
440
|
-
Description?: string;
|
|
441
|
-
DefinitionType?: ServiceActionDefinitionType;
|
|
442
|
+
Id?: string | undefined;
|
|
443
|
+
Name?: string | undefined;
|
|
444
|
+
Description?: string | undefined;
|
|
445
|
+
DefinitionType?: ServiceActionDefinitionType | undefined;
|
|
442
446
|
}
|
|
443
447
|
export interface ServiceActionDetail {
|
|
444
|
-
ServiceActionSummary?: ServiceActionSummary;
|
|
445
|
-
Definition?: Partial<Record<ServiceActionDefinitionKey, string
|
|
448
|
+
ServiceActionSummary?: ServiceActionSummary | undefined;
|
|
449
|
+
Definition?: Partial<Record<ServiceActionDefinitionKey, string>> | undefined;
|
|
446
450
|
}
|
|
447
451
|
export interface CreateServiceActionOutput {
|
|
448
|
-
ServiceActionDetail?: ServiceActionDetail;
|
|
452
|
+
ServiceActionDetail?: ServiceActionDetail | undefined;
|
|
449
453
|
}
|
|
450
454
|
export interface CreateTagOptionInput {
|
|
451
455
|
Key: string | undefined;
|
|
452
456
|
Value: string | undefined;
|
|
453
457
|
}
|
|
454
458
|
export interface TagOptionDetail {
|
|
455
|
-
Key?: string;
|
|
456
|
-
Value?: string;
|
|
457
|
-
Active?: boolean;
|
|
458
|
-
Id?: string;
|
|
459
|
-
Owner?: string;
|
|
459
|
+
Key?: string | undefined;
|
|
460
|
+
Value?: string | undefined;
|
|
461
|
+
Active?: boolean | undefined;
|
|
462
|
+
Id?: string | undefined;
|
|
463
|
+
Owner?: string | undefined;
|
|
460
464
|
}
|
|
461
465
|
export interface CreateTagOptionOutput {
|
|
462
|
-
TagOptionDetail?: TagOptionDetail;
|
|
466
|
+
TagOptionDetail?: TagOptionDetail | undefined;
|
|
463
467
|
}
|
|
464
468
|
export interface DeleteConstraintInput {
|
|
465
|
-
AcceptLanguage?: string;
|
|
469
|
+
AcceptLanguage?: string | undefined;
|
|
466
470
|
Id: string | undefined;
|
|
467
471
|
}
|
|
468
472
|
export interface DeleteConstraintOutput {}
|
|
469
473
|
export interface DeletePortfolioInput {
|
|
470
|
-
AcceptLanguage?: string;
|
|
474
|
+
AcceptLanguage?: string | undefined;
|
|
471
475
|
Id: string | undefined;
|
|
472
476
|
}
|
|
473
477
|
export interface DeletePortfolioOutput {}
|
|
474
478
|
export declare class ResourceInUseException extends __BaseException {
|
|
475
479
|
readonly name: "ResourceInUseException";
|
|
476
480
|
readonly $fault: "client";
|
|
477
|
-
Message?: string;
|
|
481
|
+
Message?: string | undefined;
|
|
478
482
|
constructor(
|
|
479
483
|
opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
|
|
480
484
|
);
|
|
481
485
|
}
|
|
482
486
|
export interface DeletePortfolioShareInput {
|
|
483
|
-
AcceptLanguage?: string;
|
|
487
|
+
AcceptLanguage?: string | undefined;
|
|
484
488
|
PortfolioId: string | undefined;
|
|
485
|
-
AccountId?: string;
|
|
486
|
-
OrganizationNode?: OrganizationNode;
|
|
489
|
+
AccountId?: string | undefined;
|
|
490
|
+
OrganizationNode?: OrganizationNode | undefined;
|
|
487
491
|
}
|
|
488
492
|
export interface DeletePortfolioShareOutput {
|
|
489
|
-
PortfolioShareToken?: string;
|
|
493
|
+
PortfolioShareToken?: string | undefined;
|
|
490
494
|
}
|
|
491
495
|
export interface DeleteProductInput {
|
|
492
|
-
AcceptLanguage?: string;
|
|
496
|
+
AcceptLanguage?: string | undefined;
|
|
493
497
|
Id: string | undefined;
|
|
494
498
|
}
|
|
495
499
|
export interface DeleteProductOutput {}
|
|
496
500
|
export interface DeleteProvisionedProductPlanInput {
|
|
497
|
-
AcceptLanguage?: string;
|
|
501
|
+
AcceptLanguage?: string | undefined;
|
|
498
502
|
PlanId: string | undefined;
|
|
499
|
-
IgnoreErrors?: boolean;
|
|
503
|
+
IgnoreErrors?: boolean | undefined;
|
|
500
504
|
}
|
|
501
505
|
export interface DeleteProvisionedProductPlanOutput {}
|
|
502
506
|
export interface DeleteProvisioningArtifactInput {
|
|
503
|
-
AcceptLanguage?: string;
|
|
507
|
+
AcceptLanguage?: string | undefined;
|
|
504
508
|
ProductId: string | undefined;
|
|
505
509
|
ProvisioningArtifactId: string | undefined;
|
|
506
510
|
}
|
|
507
511
|
export interface DeleteProvisioningArtifactOutput {}
|
|
508
512
|
export interface DeleteServiceActionInput {
|
|
509
513
|
Id: string | undefined;
|
|
510
|
-
AcceptLanguage?: string;
|
|
511
|
-
IdempotencyToken?: string;
|
|
514
|
+
AcceptLanguage?: string | undefined;
|
|
515
|
+
IdempotencyToken?: string | undefined;
|
|
512
516
|
}
|
|
513
517
|
export interface DeleteServiceActionOutput {}
|
|
514
518
|
export interface DeleteTagOptionInput {
|
|
@@ -516,16 +520,16 @@ export interface DeleteTagOptionInput {
|
|
|
516
520
|
}
|
|
517
521
|
export interface DeleteTagOptionOutput {}
|
|
518
522
|
export interface DescribeConstraintInput {
|
|
519
|
-
AcceptLanguage?: string;
|
|
523
|
+
AcceptLanguage?: string | undefined;
|
|
520
524
|
Id: string | undefined;
|
|
521
525
|
}
|
|
522
526
|
export interface DescribeConstraintOutput {
|
|
523
|
-
ConstraintDetail?: ConstraintDetail;
|
|
524
|
-
ConstraintParameters?: string;
|
|
525
|
-
Status?: Status;
|
|
527
|
+
ConstraintDetail?: ConstraintDetail | undefined;
|
|
528
|
+
ConstraintParameters?: string | undefined;
|
|
529
|
+
Status?: Status | undefined;
|
|
526
530
|
}
|
|
527
531
|
export interface DescribeCopyProductStatusInput {
|
|
528
|
-
AcceptLanguage?: string;
|
|
532
|
+
AcceptLanguage?: string | undefined;
|
|
529
533
|
CopyProductToken: string | undefined;
|
|
530
534
|
}
|
|
531
535
|
export declare const CopyProductStatus: {
|
|
@@ -536,22 +540,22 @@ export declare const CopyProductStatus: {
|
|
|
536
540
|
export type CopyProductStatus =
|
|
537
541
|
(typeof CopyProductStatus)[keyof typeof CopyProductStatus];
|
|
538
542
|
export interface DescribeCopyProductStatusOutput {
|
|
539
|
-
CopyProductStatus?: CopyProductStatus;
|
|
540
|
-
TargetProductId?: string;
|
|
541
|
-
StatusDetail?: string;
|
|
543
|
+
CopyProductStatus?: CopyProductStatus | undefined;
|
|
544
|
+
TargetProductId?: string | undefined;
|
|
545
|
+
StatusDetail?: string | undefined;
|
|
542
546
|
}
|
|
543
547
|
export interface DescribePortfolioInput {
|
|
544
|
-
AcceptLanguage?: string;
|
|
548
|
+
AcceptLanguage?: string | undefined;
|
|
545
549
|
Id: string | undefined;
|
|
546
550
|
}
|
|
547
551
|
export interface BudgetDetail {
|
|
548
|
-
BudgetName?: string;
|
|
552
|
+
BudgetName?: string | undefined;
|
|
549
553
|
}
|
|
550
554
|
export interface DescribePortfolioOutput {
|
|
551
|
-
PortfolioDetail?: PortfolioDetail;
|
|
552
|
-
Tags?: Tag[];
|
|
553
|
-
TagOptions?: TagOptionDetail[];
|
|
554
|
-
Budgets?: BudgetDetail[];
|
|
555
|
+
PortfolioDetail?: PortfolioDetail | undefined;
|
|
556
|
+
Tags?: Tag[] | undefined;
|
|
557
|
+
TagOptions?: TagOptionDetail[] | undefined;
|
|
558
|
+
Budgets?: BudgetDetail[] | undefined;
|
|
555
559
|
}
|
|
556
560
|
export declare const DescribePortfolioShareType: {
|
|
557
561
|
readonly ACCOUNT: "ACCOUNT";
|
|
@@ -564,31 +568,31 @@ export type DescribePortfolioShareType =
|
|
|
564
568
|
export interface DescribePortfolioSharesInput {
|
|
565
569
|
PortfolioId: string | undefined;
|
|
566
570
|
Type: DescribePortfolioShareType | undefined;
|
|
567
|
-
PageToken?: string;
|
|
568
|
-
PageSize?: number;
|
|
571
|
+
PageToken?: string | undefined;
|
|
572
|
+
PageSize?: number | undefined;
|
|
569
573
|
}
|
|
570
574
|
export interface PortfolioShareDetail {
|
|
571
|
-
PrincipalId?: string;
|
|
572
|
-
Type?: DescribePortfolioShareType;
|
|
573
|
-
Accepted?: boolean;
|
|
574
|
-
ShareTagOptions?: boolean;
|
|
575
|
-
SharePrincipals?: boolean;
|
|
575
|
+
PrincipalId?: string | undefined;
|
|
576
|
+
Type?: DescribePortfolioShareType | undefined;
|
|
577
|
+
Accepted?: boolean | undefined;
|
|
578
|
+
ShareTagOptions?: boolean | undefined;
|
|
579
|
+
SharePrincipals?: boolean | undefined;
|
|
576
580
|
}
|
|
577
581
|
export interface DescribePortfolioSharesOutput {
|
|
578
|
-
NextPageToken?: string;
|
|
579
|
-
PortfolioShareDetails?: PortfolioShareDetail[];
|
|
582
|
+
NextPageToken?: string | undefined;
|
|
583
|
+
PortfolioShareDetails?: PortfolioShareDetail[] | undefined;
|
|
580
584
|
}
|
|
581
585
|
export interface DescribePortfolioShareStatusInput {
|
|
582
586
|
PortfolioShareToken: string | undefined;
|
|
583
587
|
}
|
|
584
588
|
export interface ShareError {
|
|
585
|
-
Accounts?: string[];
|
|
586
|
-
Message?: string;
|
|
587
|
-
Error?: string;
|
|
589
|
+
Accounts?: string[] | undefined;
|
|
590
|
+
Message?: string | undefined;
|
|
591
|
+
Error?: string | undefined;
|
|
588
592
|
}
|
|
589
593
|
export interface ShareDetails {
|
|
590
|
-
SuccessfulShares?: string[];
|
|
591
|
-
ShareErrors?: ShareError[];
|
|
594
|
+
SuccessfulShares?: string[] | undefined;
|
|
595
|
+
ShareErrors?: ShareError[] | undefined;
|
|
592
596
|
}
|
|
593
597
|
export declare const ShareStatus: {
|
|
594
598
|
readonly COMPLETED: "COMPLETED";
|
|
@@ -599,69 +603,69 @@ export declare const ShareStatus: {
|
|
|
599
603
|
};
|
|
600
604
|
export type ShareStatus = (typeof ShareStatus)[keyof typeof ShareStatus];
|
|
601
605
|
export interface DescribePortfolioShareStatusOutput {
|
|
602
|
-
PortfolioShareToken?: string;
|
|
603
|
-
PortfolioId?: string;
|
|
604
|
-
OrganizationNodeValue?: string;
|
|
605
|
-
Status?: ShareStatus;
|
|
606
|
-
ShareDetails?: ShareDetails;
|
|
606
|
+
PortfolioShareToken?: string | undefined;
|
|
607
|
+
PortfolioId?: string | undefined;
|
|
608
|
+
OrganizationNodeValue?: string | undefined;
|
|
609
|
+
Status?: ShareStatus | undefined;
|
|
610
|
+
ShareDetails?: ShareDetails | undefined;
|
|
607
611
|
}
|
|
608
612
|
export interface DescribeProductInput {
|
|
609
|
-
AcceptLanguage?: string;
|
|
610
|
-
Id?: string;
|
|
611
|
-
Name?: string;
|
|
613
|
+
AcceptLanguage?: string | undefined;
|
|
614
|
+
Id?: string | undefined;
|
|
615
|
+
Name?: string | undefined;
|
|
612
616
|
}
|
|
613
617
|
export interface LaunchPath {
|
|
614
|
-
Id?: string;
|
|
615
|
-
Name?: string;
|
|
618
|
+
Id?: string | undefined;
|
|
619
|
+
Name?: string | undefined;
|
|
616
620
|
}
|
|
617
621
|
export interface ProvisioningArtifact {
|
|
618
|
-
Id?: string;
|
|
619
|
-
Name?: string;
|
|
620
|
-
Description?: string;
|
|
621
|
-
CreatedTime?: Date;
|
|
622
|
-
Guidance?: ProvisioningArtifactGuidance;
|
|
622
|
+
Id?: string | undefined;
|
|
623
|
+
Name?: string | undefined;
|
|
624
|
+
Description?: string | undefined;
|
|
625
|
+
CreatedTime?: Date | undefined;
|
|
626
|
+
Guidance?: ProvisioningArtifactGuidance | undefined;
|
|
623
627
|
}
|
|
624
628
|
export interface DescribeProductOutput {
|
|
625
|
-
ProductViewSummary?: ProductViewSummary;
|
|
626
|
-
ProvisioningArtifacts?: ProvisioningArtifact[];
|
|
627
|
-
Budgets?: BudgetDetail[];
|
|
628
|
-
LaunchPaths?: LaunchPath[];
|
|
629
|
+
ProductViewSummary?: ProductViewSummary | undefined;
|
|
630
|
+
ProvisioningArtifacts?: ProvisioningArtifact[] | undefined;
|
|
631
|
+
Budgets?: BudgetDetail[] | undefined;
|
|
632
|
+
LaunchPaths?: LaunchPath[] | undefined;
|
|
629
633
|
}
|
|
630
634
|
export interface DescribeProductAsAdminInput {
|
|
631
|
-
AcceptLanguage?: string;
|
|
632
|
-
Id?: string;
|
|
633
|
-
Name?: string;
|
|
634
|
-
SourcePortfolioId?: string;
|
|
635
|
+
AcceptLanguage?: string | undefined;
|
|
636
|
+
Id?: string | undefined;
|
|
637
|
+
Name?: string | undefined;
|
|
638
|
+
SourcePortfolioId?: string | undefined;
|
|
635
639
|
}
|
|
636
640
|
export interface ProvisioningArtifactSummary {
|
|
637
|
-
Id?: string;
|
|
638
|
-
Name?: string;
|
|
639
|
-
Description?: string;
|
|
640
|
-
CreatedTime?: Date;
|
|
641
|
-
ProvisioningArtifactMetadata?: Record<string, string
|
|
641
|
+
Id?: string | undefined;
|
|
642
|
+
Name?: string | undefined;
|
|
643
|
+
Description?: string | undefined;
|
|
644
|
+
CreatedTime?: Date | undefined;
|
|
645
|
+
ProvisioningArtifactMetadata?: Record<string, string> | undefined;
|
|
642
646
|
}
|
|
643
647
|
export interface DescribeProductAsAdminOutput {
|
|
644
|
-
ProductViewDetail?: ProductViewDetail;
|
|
645
|
-
ProvisioningArtifactSummaries?: ProvisioningArtifactSummary[];
|
|
646
|
-
Tags?: Tag[];
|
|
647
|
-
TagOptions?: TagOptionDetail[];
|
|
648
|
-
Budgets?: BudgetDetail[];
|
|
648
|
+
ProductViewDetail?: ProductViewDetail | undefined;
|
|
649
|
+
ProvisioningArtifactSummaries?: ProvisioningArtifactSummary[] | undefined;
|
|
650
|
+
Tags?: Tag[] | undefined;
|
|
651
|
+
TagOptions?: TagOptionDetail[] | undefined;
|
|
652
|
+
Budgets?: BudgetDetail[] | undefined;
|
|
649
653
|
}
|
|
650
654
|
export interface DescribeProductViewInput {
|
|
651
|
-
AcceptLanguage?: string;
|
|
655
|
+
AcceptLanguage?: string | undefined;
|
|
652
656
|
Id: string | undefined;
|
|
653
657
|
}
|
|
654
658
|
export interface DescribeProductViewOutput {
|
|
655
|
-
ProductViewSummary?: ProductViewSummary;
|
|
656
|
-
ProvisioningArtifacts?: ProvisioningArtifact[];
|
|
659
|
+
ProductViewSummary?: ProductViewSummary | undefined;
|
|
660
|
+
ProvisioningArtifacts?: ProvisioningArtifact[] | undefined;
|
|
657
661
|
}
|
|
658
662
|
export interface DescribeProvisionedProductInput {
|
|
659
|
-
AcceptLanguage?: string;
|
|
660
|
-
Id?: string;
|
|
661
|
-
Name?: string;
|
|
663
|
+
AcceptLanguage?: string | undefined;
|
|
664
|
+
Id?: string | undefined;
|
|
665
|
+
Name?: string | undefined;
|
|
662
666
|
}
|
|
663
667
|
export interface CloudWatchDashboard {
|
|
664
|
-
Name?: string;
|
|
668
|
+
Name?: string | undefined;
|
|
665
669
|
}
|
|
666
670
|
export declare const ProvisionedProductStatus: {
|
|
667
671
|
readonly AVAILABLE: "AVAILABLE";
|
|
@@ -673,30 +677,30 @@ export declare const ProvisionedProductStatus: {
|
|
|
673
677
|
export type ProvisionedProductStatus =
|
|
674
678
|
(typeof ProvisionedProductStatus)[keyof typeof ProvisionedProductStatus];
|
|
675
679
|
export interface ProvisionedProductDetail {
|
|
676
|
-
Name?: string;
|
|
677
|
-
Arn?: string;
|
|
678
|
-
Type?: string;
|
|
679
|
-
Id?: string;
|
|
680
|
-
Status?: ProvisionedProductStatus;
|
|
681
|
-
StatusMessage?: string;
|
|
682
|
-
CreatedTime?: Date;
|
|
683
|
-
IdempotencyToken?: string;
|
|
684
|
-
LastRecordId?: string;
|
|
685
|
-
LastProvisioningRecordId?: string;
|
|
686
|
-
LastSuccessfulProvisioningRecordId?: string;
|
|
687
|
-
ProductId?: string;
|
|
688
|
-
ProvisioningArtifactId?: string;
|
|
689
|
-
LaunchRoleArn?: string;
|
|
680
|
+
Name?: string | undefined;
|
|
681
|
+
Arn?: string | undefined;
|
|
682
|
+
Type?: string | undefined;
|
|
683
|
+
Id?: string | undefined;
|
|
684
|
+
Status?: ProvisionedProductStatus | undefined;
|
|
685
|
+
StatusMessage?: string | undefined;
|
|
686
|
+
CreatedTime?: Date | undefined;
|
|
687
|
+
IdempotencyToken?: string | undefined;
|
|
688
|
+
LastRecordId?: string | undefined;
|
|
689
|
+
LastProvisioningRecordId?: string | undefined;
|
|
690
|
+
LastSuccessfulProvisioningRecordId?: string | undefined;
|
|
691
|
+
ProductId?: string | undefined;
|
|
692
|
+
ProvisioningArtifactId?: string | undefined;
|
|
693
|
+
LaunchRoleArn?: string | undefined;
|
|
690
694
|
}
|
|
691
695
|
export interface DescribeProvisionedProductOutput {
|
|
692
|
-
ProvisionedProductDetail?: ProvisionedProductDetail;
|
|
693
|
-
CloudWatchDashboards?: CloudWatchDashboard[];
|
|
696
|
+
ProvisionedProductDetail?: ProvisionedProductDetail | undefined;
|
|
697
|
+
CloudWatchDashboards?: CloudWatchDashboard[] | undefined;
|
|
694
698
|
}
|
|
695
699
|
export interface DescribeProvisionedProductPlanInput {
|
|
696
|
-
AcceptLanguage?: string;
|
|
700
|
+
AcceptLanguage?: string | undefined;
|
|
697
701
|
PlanId: string | undefined;
|
|
698
|
-
PageSize?: number;
|
|
699
|
-
PageToken?: string;
|
|
702
|
+
PageSize?: number | undefined;
|
|
703
|
+
PageToken?: string | undefined;
|
|
700
704
|
}
|
|
701
705
|
export declare const ProvisionedProductPlanStatus: {
|
|
702
706
|
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
@@ -709,21 +713,21 @@ export declare const ProvisionedProductPlanStatus: {
|
|
|
709
713
|
export type ProvisionedProductPlanStatus =
|
|
710
714
|
(typeof ProvisionedProductPlanStatus)[keyof typeof ProvisionedProductPlanStatus];
|
|
711
715
|
export interface ProvisionedProductPlanDetails {
|
|
712
|
-
CreatedTime?: Date;
|
|
713
|
-
PathId?: string;
|
|
714
|
-
ProductId?: string;
|
|
715
|
-
PlanName?: string;
|
|
716
|
-
PlanId?: string;
|
|
717
|
-
ProvisionProductId?: string;
|
|
718
|
-
ProvisionProductName?: string;
|
|
719
|
-
PlanType?: ProvisionedProductPlanType;
|
|
720
|
-
ProvisioningArtifactId?: string;
|
|
721
|
-
Status?: ProvisionedProductPlanStatus;
|
|
722
|
-
UpdatedTime?: Date;
|
|
723
|
-
NotificationArns?: string[];
|
|
724
|
-
ProvisioningParameters?: UpdateProvisioningParameter[];
|
|
725
|
-
Tags?: Tag[];
|
|
726
|
-
StatusMessage?: string;
|
|
716
|
+
CreatedTime?: Date | undefined;
|
|
717
|
+
PathId?: string | undefined;
|
|
718
|
+
ProductId?: string | undefined;
|
|
719
|
+
PlanName?: string | undefined;
|
|
720
|
+
PlanId?: string | undefined;
|
|
721
|
+
ProvisionProductId?: string | undefined;
|
|
722
|
+
ProvisionProductName?: string | undefined;
|
|
723
|
+
PlanType?: ProvisionedProductPlanType | undefined;
|
|
724
|
+
ProvisioningArtifactId?: string | undefined;
|
|
725
|
+
Status?: ProvisionedProductPlanStatus | undefined;
|
|
726
|
+
UpdatedTime?: Date | undefined;
|
|
727
|
+
NotificationArns?: string[] | undefined;
|
|
728
|
+
ProvisioningParameters?: UpdateProvisioningParameter[] | undefined;
|
|
729
|
+
Tags?: Tag[] | undefined;
|
|
730
|
+
StatusMessage?: string | undefined;
|
|
727
731
|
}
|
|
728
732
|
export declare const ChangeAction: {
|
|
729
733
|
readonly ADD: "ADD";
|
|
@@ -755,14 +759,14 @@ export declare const RequiresRecreation: {
|
|
|
755
759
|
export type RequiresRecreation =
|
|
756
760
|
(typeof RequiresRecreation)[keyof typeof RequiresRecreation];
|
|
757
761
|
export interface ResourceTargetDefinition {
|
|
758
|
-
Attribute?: ResourceAttribute;
|
|
759
|
-
Name?: string;
|
|
760
|
-
RequiresRecreation?: RequiresRecreation;
|
|
762
|
+
Attribute?: ResourceAttribute | undefined;
|
|
763
|
+
Name?: string | undefined;
|
|
764
|
+
RequiresRecreation?: RequiresRecreation | undefined;
|
|
761
765
|
}
|
|
762
766
|
export interface ResourceChangeDetail {
|
|
763
|
-
Target?: ResourceTargetDefinition;
|
|
764
|
-
Evaluation?: EvaluationType;
|
|
765
|
-
CausingEntity?: string;
|
|
767
|
+
Target?: ResourceTargetDefinition | undefined;
|
|
768
|
+
Evaluation?: EvaluationType | undefined;
|
|
769
|
+
CausingEntity?: string | undefined;
|
|
766
770
|
}
|
|
767
771
|
export declare const Replacement: {
|
|
768
772
|
readonly CONDITIONAL: "CONDITIONAL";
|
|
@@ -771,102 +775,102 @@ export declare const Replacement: {
|
|
|
771
775
|
};
|
|
772
776
|
export type Replacement = (typeof Replacement)[keyof typeof Replacement];
|
|
773
777
|
export interface ResourceChange {
|
|
774
|
-
Action?: ChangeAction;
|
|
775
|
-
LogicalResourceId?: string;
|
|
776
|
-
PhysicalResourceId?: string;
|
|
777
|
-
ResourceType?: string;
|
|
778
|
-
Replacement?: Replacement;
|
|
779
|
-
Scope?: ResourceAttribute[];
|
|
780
|
-
Details?: ResourceChangeDetail[];
|
|
778
|
+
Action?: ChangeAction | undefined;
|
|
779
|
+
LogicalResourceId?: string | undefined;
|
|
780
|
+
PhysicalResourceId?: string | undefined;
|
|
781
|
+
ResourceType?: string | undefined;
|
|
782
|
+
Replacement?: Replacement | undefined;
|
|
783
|
+
Scope?: ResourceAttribute[] | undefined;
|
|
784
|
+
Details?: ResourceChangeDetail[] | undefined;
|
|
781
785
|
}
|
|
782
786
|
export interface DescribeProvisionedProductPlanOutput {
|
|
783
|
-
ProvisionedProductPlanDetails?: ProvisionedProductPlanDetails;
|
|
784
|
-
ResourceChanges?: ResourceChange[];
|
|
785
|
-
NextPageToken?: string;
|
|
787
|
+
ProvisionedProductPlanDetails?: ProvisionedProductPlanDetails | undefined;
|
|
788
|
+
ResourceChanges?: ResourceChange[] | undefined;
|
|
789
|
+
NextPageToken?: string | undefined;
|
|
786
790
|
}
|
|
787
791
|
export interface DescribeProvisioningArtifactInput {
|
|
788
|
-
AcceptLanguage?: string;
|
|
789
|
-
ProvisioningArtifactId?: string;
|
|
790
|
-
ProductId?: string;
|
|
791
|
-
ProvisioningArtifactName?: string;
|
|
792
|
-
ProductName?: string;
|
|
793
|
-
Verbose?: boolean;
|
|
794
|
-
IncludeProvisioningArtifactParameters?: boolean;
|
|
792
|
+
AcceptLanguage?: string | undefined;
|
|
793
|
+
ProvisioningArtifactId?: string | undefined;
|
|
794
|
+
ProductId?: string | undefined;
|
|
795
|
+
ProvisioningArtifactName?: string | undefined;
|
|
796
|
+
ProductName?: string | undefined;
|
|
797
|
+
Verbose?: boolean | undefined;
|
|
798
|
+
IncludeProvisioningArtifactParameters?: boolean | undefined;
|
|
795
799
|
}
|
|
796
800
|
export interface ParameterConstraints {
|
|
797
|
-
AllowedValues?: string[];
|
|
798
|
-
AllowedPattern?: string;
|
|
799
|
-
ConstraintDescription?: string;
|
|
800
|
-
MaxLength?: string;
|
|
801
|
-
MinLength?: string;
|
|
802
|
-
MaxValue?: string;
|
|
803
|
-
MinValue?: string;
|
|
801
|
+
AllowedValues?: string[] | undefined;
|
|
802
|
+
AllowedPattern?: string | undefined;
|
|
803
|
+
ConstraintDescription?: string | undefined;
|
|
804
|
+
MaxLength?: string | undefined;
|
|
805
|
+
MinLength?: string | undefined;
|
|
806
|
+
MaxValue?: string | undefined;
|
|
807
|
+
MinValue?: string | undefined;
|
|
804
808
|
}
|
|
805
809
|
export interface ProvisioningArtifactParameter {
|
|
806
|
-
ParameterKey?: string;
|
|
807
|
-
DefaultValue?: string;
|
|
808
|
-
ParameterType?: string;
|
|
809
|
-
IsNoEcho?: boolean;
|
|
810
|
-
Description?: string;
|
|
811
|
-
ParameterConstraints?: ParameterConstraints;
|
|
810
|
+
ParameterKey?: string | undefined;
|
|
811
|
+
DefaultValue?: string | undefined;
|
|
812
|
+
ParameterType?: string | undefined;
|
|
813
|
+
IsNoEcho?: boolean | undefined;
|
|
814
|
+
Description?: string | undefined;
|
|
815
|
+
ParameterConstraints?: ParameterConstraints | undefined;
|
|
812
816
|
}
|
|
813
817
|
export interface DescribeProvisioningArtifactOutput {
|
|
814
|
-
ProvisioningArtifactDetail?: ProvisioningArtifactDetail;
|
|
815
|
-
Info?: Record<string, string
|
|
816
|
-
Status?: Status;
|
|
817
|
-
ProvisioningArtifactParameters?: ProvisioningArtifactParameter[];
|
|
818
|
+
ProvisioningArtifactDetail?: ProvisioningArtifactDetail | undefined;
|
|
819
|
+
Info?: Record<string, string> | undefined;
|
|
820
|
+
Status?: Status | undefined;
|
|
821
|
+
ProvisioningArtifactParameters?: ProvisioningArtifactParameter[] | undefined;
|
|
818
822
|
}
|
|
819
823
|
export interface DescribeProvisioningParametersInput {
|
|
820
|
-
AcceptLanguage?: string;
|
|
821
|
-
ProductId?: string;
|
|
822
|
-
ProductName?: string;
|
|
823
|
-
ProvisioningArtifactId?: string;
|
|
824
|
-
ProvisioningArtifactName?: string;
|
|
825
|
-
PathId?: string;
|
|
826
|
-
PathName?: string;
|
|
824
|
+
AcceptLanguage?: string | undefined;
|
|
825
|
+
ProductId?: string | undefined;
|
|
826
|
+
ProductName?: string | undefined;
|
|
827
|
+
ProvisioningArtifactId?: string | undefined;
|
|
828
|
+
ProvisioningArtifactName?: string | undefined;
|
|
829
|
+
PathId?: string | undefined;
|
|
830
|
+
PathName?: string | undefined;
|
|
827
831
|
}
|
|
828
832
|
export interface ConstraintSummary {
|
|
829
|
-
Type?: string;
|
|
830
|
-
Description?: string;
|
|
833
|
+
Type?: string | undefined;
|
|
834
|
+
Description?: string | undefined;
|
|
831
835
|
}
|
|
832
836
|
export interface ProvisioningArtifactOutput {
|
|
833
|
-
Key?: string;
|
|
834
|
-
Description?: string;
|
|
837
|
+
Key?: string | undefined;
|
|
838
|
+
Description?: string | undefined;
|
|
835
839
|
}
|
|
836
840
|
export interface ProvisioningArtifactPreferences {
|
|
837
|
-
StackSetAccounts?: string[];
|
|
838
|
-
StackSetRegions?: string[];
|
|
841
|
+
StackSetAccounts?: string[] | undefined;
|
|
842
|
+
StackSetRegions?: string[] | undefined;
|
|
839
843
|
}
|
|
840
844
|
export interface TagOptionSummary {
|
|
841
|
-
Key?: string;
|
|
842
|
-
Values?: string[];
|
|
845
|
+
Key?: string | undefined;
|
|
846
|
+
Values?: string[] | undefined;
|
|
843
847
|
}
|
|
844
848
|
export interface UsageInstruction {
|
|
845
|
-
Type?: string;
|
|
846
|
-
Value?: string;
|
|
849
|
+
Type?: string | undefined;
|
|
850
|
+
Value?: string | undefined;
|
|
847
851
|
}
|
|
848
852
|
export interface DescribeProvisioningParametersOutput {
|
|
849
|
-
ProvisioningArtifactParameters?: ProvisioningArtifactParameter[];
|
|
850
|
-
ConstraintSummaries?: ConstraintSummary[];
|
|
851
|
-
UsageInstructions?: UsageInstruction[];
|
|
852
|
-
TagOptions?: TagOptionSummary[];
|
|
853
|
-
ProvisioningArtifactPreferences?: ProvisioningArtifactPreferences;
|
|
854
|
-
ProvisioningArtifactOutputs?: ProvisioningArtifactOutput[];
|
|
855
|
-
ProvisioningArtifactOutputKeys?: ProvisioningArtifactOutput[];
|
|
853
|
+
ProvisioningArtifactParameters?: ProvisioningArtifactParameter[] | undefined;
|
|
854
|
+
ConstraintSummaries?: ConstraintSummary[] | undefined;
|
|
855
|
+
UsageInstructions?: UsageInstruction[] | undefined;
|
|
856
|
+
TagOptions?: TagOptionSummary[] | undefined;
|
|
857
|
+
ProvisioningArtifactPreferences?: ProvisioningArtifactPreferences | undefined;
|
|
858
|
+
ProvisioningArtifactOutputs?: ProvisioningArtifactOutput[] | undefined;
|
|
859
|
+
ProvisioningArtifactOutputKeys?: ProvisioningArtifactOutput[] | undefined;
|
|
856
860
|
}
|
|
857
861
|
export interface DescribeRecordInput {
|
|
858
|
-
AcceptLanguage?: string;
|
|
862
|
+
AcceptLanguage?: string | undefined;
|
|
859
863
|
Id: string | undefined;
|
|
860
|
-
PageToken?: string;
|
|
861
|
-
PageSize?: number;
|
|
864
|
+
PageToken?: string | undefined;
|
|
865
|
+
PageSize?: number | undefined;
|
|
862
866
|
}
|
|
863
867
|
export interface RecordError {
|
|
864
|
-
Code?: string;
|
|
865
|
-
Description?: string;
|
|
868
|
+
Code?: string | undefined;
|
|
869
|
+
Description?: string | undefined;
|
|
866
870
|
}
|
|
867
871
|
export interface RecordTag {
|
|
868
|
-
Key?: string;
|
|
869
|
-
Value?: string;
|
|
872
|
+
Key?: string | undefined;
|
|
873
|
+
Value?: string | undefined;
|
|
870
874
|
}
|
|
871
875
|
export declare const RecordStatus: {
|
|
872
876
|
readonly CREATED: "CREATED";
|
|
@@ -877,56 +881,56 @@ export declare const RecordStatus: {
|
|
|
877
881
|
};
|
|
878
882
|
export type RecordStatus = (typeof RecordStatus)[keyof typeof RecordStatus];
|
|
879
883
|
export interface RecordDetail {
|
|
880
|
-
RecordId?: string;
|
|
881
|
-
ProvisionedProductName?: string;
|
|
882
|
-
Status?: RecordStatus;
|
|
883
|
-
CreatedTime?: Date;
|
|
884
|
-
UpdatedTime?: Date;
|
|
885
|
-
ProvisionedProductType?: string;
|
|
886
|
-
RecordType?: string;
|
|
887
|
-
ProvisionedProductId?: string;
|
|
888
|
-
ProductId?: string;
|
|
889
|
-
ProvisioningArtifactId?: string;
|
|
890
|
-
PathId?: string;
|
|
891
|
-
RecordErrors?: RecordError[];
|
|
892
|
-
RecordTags?: RecordTag[];
|
|
893
|
-
LaunchRoleArn?: string;
|
|
884
|
+
RecordId?: string | undefined;
|
|
885
|
+
ProvisionedProductName?: string | undefined;
|
|
886
|
+
Status?: RecordStatus | undefined;
|
|
887
|
+
CreatedTime?: Date | undefined;
|
|
888
|
+
UpdatedTime?: Date | undefined;
|
|
889
|
+
ProvisionedProductType?: string | undefined;
|
|
890
|
+
RecordType?: string | undefined;
|
|
891
|
+
ProvisionedProductId?: string | undefined;
|
|
892
|
+
ProductId?: string | undefined;
|
|
893
|
+
ProvisioningArtifactId?: string | undefined;
|
|
894
|
+
PathId?: string | undefined;
|
|
895
|
+
RecordErrors?: RecordError[] | undefined;
|
|
896
|
+
RecordTags?: RecordTag[] | undefined;
|
|
897
|
+
LaunchRoleArn?: string | undefined;
|
|
894
898
|
}
|
|
895
899
|
export interface RecordOutput {
|
|
896
|
-
OutputKey?: string;
|
|
897
|
-
OutputValue?: string;
|
|
898
|
-
Description?: string;
|
|
900
|
+
OutputKey?: string | undefined;
|
|
901
|
+
OutputValue?: string | undefined;
|
|
902
|
+
Description?: string | undefined;
|
|
899
903
|
}
|
|
900
904
|
export interface DescribeRecordOutput {
|
|
901
|
-
RecordDetail?: RecordDetail;
|
|
902
|
-
RecordOutputs?: RecordOutput[];
|
|
903
|
-
NextPageToken?: string;
|
|
905
|
+
RecordDetail?: RecordDetail | undefined;
|
|
906
|
+
RecordOutputs?: RecordOutput[] | undefined;
|
|
907
|
+
NextPageToken?: string | undefined;
|
|
904
908
|
}
|
|
905
909
|
export interface DescribeServiceActionInput {
|
|
906
910
|
Id: string | undefined;
|
|
907
|
-
AcceptLanguage?: string;
|
|
911
|
+
AcceptLanguage?: string | undefined;
|
|
908
912
|
}
|
|
909
913
|
export interface DescribeServiceActionOutput {
|
|
910
|
-
ServiceActionDetail?: ServiceActionDetail;
|
|
914
|
+
ServiceActionDetail?: ServiceActionDetail | undefined;
|
|
911
915
|
}
|
|
912
916
|
export interface DescribeServiceActionExecutionParametersInput {
|
|
913
917
|
ProvisionedProductId: string | undefined;
|
|
914
918
|
ServiceActionId: string | undefined;
|
|
915
|
-
AcceptLanguage?: string;
|
|
919
|
+
AcceptLanguage?: string | undefined;
|
|
916
920
|
}
|
|
917
921
|
export interface ExecutionParameter {
|
|
918
|
-
Name?: string;
|
|
919
|
-
Type?: string;
|
|
920
|
-
DefaultValues?: string[];
|
|
922
|
+
Name?: string | undefined;
|
|
923
|
+
Type?: string | undefined;
|
|
924
|
+
DefaultValues?: string[] | undefined;
|
|
921
925
|
}
|
|
922
926
|
export interface DescribeServiceActionExecutionParametersOutput {
|
|
923
|
-
ServiceActionParameters?: ExecutionParameter[];
|
|
927
|
+
ServiceActionParameters?: ExecutionParameter[] | undefined;
|
|
924
928
|
}
|
|
925
929
|
export interface DescribeTagOptionInput {
|
|
926
930
|
Id: string | undefined;
|
|
927
931
|
}
|
|
928
932
|
export interface DescribeTagOptionOutput {
|
|
929
|
-
TagOptionDetail?: TagOptionDetail;
|
|
933
|
+
TagOptionDetail?: TagOptionDetail | undefined;
|
|
930
934
|
}
|
|
931
935
|
export interface DisableAWSOrganizationsAccessInput {}
|
|
932
936
|
export interface DisableAWSOrganizationsAccessOutput {}
|
|
@@ -936,14 +940,14 @@ export interface DisassociateBudgetFromResourceInput {
|
|
|
936
940
|
}
|
|
937
941
|
export interface DisassociateBudgetFromResourceOutput {}
|
|
938
942
|
export interface DisassociatePrincipalFromPortfolioInput {
|
|
939
|
-
AcceptLanguage?: string;
|
|
943
|
+
AcceptLanguage?: string | undefined;
|
|
940
944
|
PortfolioId: string | undefined;
|
|
941
945
|
PrincipalARN: string | undefined;
|
|
942
|
-
PrincipalType?: PrincipalType;
|
|
946
|
+
PrincipalType?: PrincipalType | undefined;
|
|
943
947
|
}
|
|
944
948
|
export interface DisassociatePrincipalFromPortfolioOutput {}
|
|
945
949
|
export interface DisassociateProductFromPortfolioInput {
|
|
946
|
-
AcceptLanguage?: string;
|
|
950
|
+
AcceptLanguage?: string | undefined;
|
|
947
951
|
ProductId: string | undefined;
|
|
948
952
|
PortfolioId: string | undefined;
|
|
949
953
|
}
|
|
@@ -952,8 +956,8 @@ export interface DisassociateServiceActionFromProvisioningArtifactInput {
|
|
|
952
956
|
ProductId: string | undefined;
|
|
953
957
|
ProvisioningArtifactId: string | undefined;
|
|
954
958
|
ServiceActionId: string | undefined;
|
|
955
|
-
AcceptLanguage?: string;
|
|
956
|
-
IdempotencyToken?: string;
|
|
959
|
+
AcceptLanguage?: string | undefined;
|
|
960
|
+
IdempotencyToken?: string | undefined;
|
|
957
961
|
}
|
|
958
962
|
export interface DisassociateServiceActionFromProvisioningArtifactOutput {}
|
|
959
963
|
export interface DisassociateTagOptionFromResourceInput {
|
|
@@ -964,250 +968,250 @@ export interface DisassociateTagOptionFromResourceOutput {}
|
|
|
964
968
|
export interface EnableAWSOrganizationsAccessInput {}
|
|
965
969
|
export interface EnableAWSOrganizationsAccessOutput {}
|
|
966
970
|
export interface ExecuteProvisionedProductPlanInput {
|
|
967
|
-
AcceptLanguage?: string;
|
|
971
|
+
AcceptLanguage?: string | undefined;
|
|
968
972
|
PlanId: string | undefined;
|
|
969
|
-
IdempotencyToken?: string;
|
|
973
|
+
IdempotencyToken?: string | undefined;
|
|
970
974
|
}
|
|
971
975
|
export interface ExecuteProvisionedProductPlanOutput {
|
|
972
|
-
RecordDetail?: RecordDetail;
|
|
976
|
+
RecordDetail?: RecordDetail | undefined;
|
|
973
977
|
}
|
|
974
978
|
export interface ExecuteProvisionedProductServiceActionInput {
|
|
975
979
|
ProvisionedProductId: string | undefined;
|
|
976
980
|
ServiceActionId: string | undefined;
|
|
977
|
-
ExecuteToken?: string;
|
|
978
|
-
AcceptLanguage?: string;
|
|
979
|
-
Parameters?: Record<string, string[]
|
|
981
|
+
ExecuteToken?: string | undefined;
|
|
982
|
+
AcceptLanguage?: string | undefined;
|
|
983
|
+
Parameters?: Record<string, string[]> | undefined;
|
|
980
984
|
}
|
|
981
985
|
export interface ExecuteProvisionedProductServiceActionOutput {
|
|
982
|
-
RecordDetail?: RecordDetail;
|
|
986
|
+
RecordDetail?: RecordDetail | undefined;
|
|
983
987
|
}
|
|
984
988
|
export interface GetAWSOrganizationsAccessStatusInput {}
|
|
985
989
|
export interface GetAWSOrganizationsAccessStatusOutput {
|
|
986
|
-
AccessStatus?: AccessStatus;
|
|
990
|
+
AccessStatus?: AccessStatus | undefined;
|
|
987
991
|
}
|
|
988
992
|
export interface GetProvisionedProductOutputsInput {
|
|
989
|
-
AcceptLanguage?: string;
|
|
990
|
-
ProvisionedProductId?: string;
|
|
991
|
-
ProvisionedProductName?: string;
|
|
992
|
-
OutputKeys?: string[];
|
|
993
|
-
PageSize?: number;
|
|
994
|
-
PageToken?: string;
|
|
993
|
+
AcceptLanguage?: string | undefined;
|
|
994
|
+
ProvisionedProductId?: string | undefined;
|
|
995
|
+
ProvisionedProductName?: string | undefined;
|
|
996
|
+
OutputKeys?: string[] | undefined;
|
|
997
|
+
PageSize?: number | undefined;
|
|
998
|
+
PageToken?: string | undefined;
|
|
995
999
|
}
|
|
996
1000
|
export interface GetProvisionedProductOutputsOutput {
|
|
997
|
-
Outputs?: RecordOutput[];
|
|
998
|
-
NextPageToken?: string;
|
|
1001
|
+
Outputs?: RecordOutput[] | undefined;
|
|
1002
|
+
NextPageToken?: string | undefined;
|
|
999
1003
|
}
|
|
1000
1004
|
export interface ImportAsProvisionedProductInput {
|
|
1001
|
-
AcceptLanguage?: string;
|
|
1005
|
+
AcceptLanguage?: string | undefined;
|
|
1002
1006
|
ProductId: string | undefined;
|
|
1003
1007
|
ProvisioningArtifactId: string | undefined;
|
|
1004
1008
|
ProvisionedProductName: string | undefined;
|
|
1005
1009
|
PhysicalId: string | undefined;
|
|
1006
|
-
IdempotencyToken?: string;
|
|
1010
|
+
IdempotencyToken?: string | undefined;
|
|
1007
1011
|
}
|
|
1008
1012
|
export interface ImportAsProvisionedProductOutput {
|
|
1009
|
-
RecordDetail?: RecordDetail;
|
|
1013
|
+
RecordDetail?: RecordDetail | undefined;
|
|
1010
1014
|
}
|
|
1011
1015
|
export interface ListAcceptedPortfolioSharesInput {
|
|
1012
|
-
AcceptLanguage?: string;
|
|
1013
|
-
PageToken?: string;
|
|
1014
|
-
PageSize?: number;
|
|
1015
|
-
PortfolioShareType?: PortfolioShareType;
|
|
1016
|
+
AcceptLanguage?: string | undefined;
|
|
1017
|
+
PageToken?: string | undefined;
|
|
1018
|
+
PageSize?: number | undefined;
|
|
1019
|
+
PortfolioShareType?: PortfolioShareType | undefined;
|
|
1016
1020
|
}
|
|
1017
1021
|
export interface ListAcceptedPortfolioSharesOutput {
|
|
1018
|
-
PortfolioDetails?: PortfolioDetail[];
|
|
1019
|
-
NextPageToken?: string;
|
|
1022
|
+
PortfolioDetails?: PortfolioDetail[] | undefined;
|
|
1023
|
+
NextPageToken?: string | undefined;
|
|
1020
1024
|
}
|
|
1021
1025
|
export interface ListBudgetsForResourceInput {
|
|
1022
|
-
AcceptLanguage?: string;
|
|
1026
|
+
AcceptLanguage?: string | undefined;
|
|
1023
1027
|
ResourceId: string | undefined;
|
|
1024
|
-
PageSize?: number;
|
|
1025
|
-
PageToken?: string;
|
|
1028
|
+
PageSize?: number | undefined;
|
|
1029
|
+
PageToken?: string | undefined;
|
|
1026
1030
|
}
|
|
1027
1031
|
export interface ListBudgetsForResourceOutput {
|
|
1028
|
-
Budgets?: BudgetDetail[];
|
|
1029
|
-
NextPageToken?: string;
|
|
1032
|
+
Budgets?: BudgetDetail[] | undefined;
|
|
1033
|
+
NextPageToken?: string | undefined;
|
|
1030
1034
|
}
|
|
1031
1035
|
export interface ListConstraintsForPortfolioInput {
|
|
1032
|
-
AcceptLanguage?: string;
|
|
1036
|
+
AcceptLanguage?: string | undefined;
|
|
1033
1037
|
PortfolioId: string | undefined;
|
|
1034
|
-
ProductId?: string;
|
|
1035
|
-
PageSize?: number;
|
|
1036
|
-
PageToken?: string;
|
|
1038
|
+
ProductId?: string | undefined;
|
|
1039
|
+
PageSize?: number | undefined;
|
|
1040
|
+
PageToken?: string | undefined;
|
|
1037
1041
|
}
|
|
1038
1042
|
export interface ListConstraintsForPortfolioOutput {
|
|
1039
|
-
ConstraintDetails?: ConstraintDetail[];
|
|
1040
|
-
NextPageToken?: string;
|
|
1043
|
+
ConstraintDetails?: ConstraintDetail[] | undefined;
|
|
1044
|
+
NextPageToken?: string | undefined;
|
|
1041
1045
|
}
|
|
1042
1046
|
export interface ListLaunchPathsInput {
|
|
1043
|
-
AcceptLanguage?: string;
|
|
1047
|
+
AcceptLanguage?: string | undefined;
|
|
1044
1048
|
ProductId: string | undefined;
|
|
1045
|
-
PageSize?: number;
|
|
1046
|
-
PageToken?: string;
|
|
1049
|
+
PageSize?: number | undefined;
|
|
1050
|
+
PageToken?: string | undefined;
|
|
1047
1051
|
}
|
|
1048
1052
|
export interface LaunchPathSummary {
|
|
1049
|
-
Id?: string;
|
|
1050
|
-
ConstraintSummaries?: ConstraintSummary[];
|
|
1051
|
-
Tags?: Tag[];
|
|
1052
|
-
Name?: string;
|
|
1053
|
+
Id?: string | undefined;
|
|
1054
|
+
ConstraintSummaries?: ConstraintSummary[] | undefined;
|
|
1055
|
+
Tags?: Tag[] | undefined;
|
|
1056
|
+
Name?: string | undefined;
|
|
1053
1057
|
}
|
|
1054
1058
|
export interface ListLaunchPathsOutput {
|
|
1055
|
-
LaunchPathSummaries?: LaunchPathSummary[];
|
|
1056
|
-
NextPageToken?: string;
|
|
1059
|
+
LaunchPathSummaries?: LaunchPathSummary[] | undefined;
|
|
1060
|
+
NextPageToken?: string | undefined;
|
|
1057
1061
|
}
|
|
1058
1062
|
export interface ListOrganizationPortfolioAccessInput {
|
|
1059
|
-
AcceptLanguage?: string;
|
|
1063
|
+
AcceptLanguage?: string | undefined;
|
|
1060
1064
|
PortfolioId: string | undefined;
|
|
1061
1065
|
OrganizationNodeType: OrganizationNodeType | undefined;
|
|
1062
|
-
PageToken?: string;
|
|
1063
|
-
PageSize?: number;
|
|
1066
|
+
PageToken?: string | undefined;
|
|
1067
|
+
PageSize?: number | undefined;
|
|
1064
1068
|
}
|
|
1065
1069
|
export interface ListOrganizationPortfolioAccessOutput {
|
|
1066
|
-
OrganizationNodes?: OrganizationNode[];
|
|
1067
|
-
NextPageToken?: string;
|
|
1070
|
+
OrganizationNodes?: OrganizationNode[] | undefined;
|
|
1071
|
+
NextPageToken?: string | undefined;
|
|
1068
1072
|
}
|
|
1069
1073
|
export interface ListPortfolioAccessInput {
|
|
1070
|
-
AcceptLanguage?: string;
|
|
1074
|
+
AcceptLanguage?: string | undefined;
|
|
1071
1075
|
PortfolioId: string | undefined;
|
|
1072
|
-
OrganizationParentId?: string;
|
|
1073
|
-
PageToken?: string;
|
|
1074
|
-
PageSize?: number;
|
|
1076
|
+
OrganizationParentId?: string | undefined;
|
|
1077
|
+
PageToken?: string | undefined;
|
|
1078
|
+
PageSize?: number | undefined;
|
|
1075
1079
|
}
|
|
1076
1080
|
export interface ListPortfolioAccessOutput {
|
|
1077
|
-
AccountIds?: string[];
|
|
1078
|
-
NextPageToken?: string;
|
|
1081
|
+
AccountIds?: string[] | undefined;
|
|
1082
|
+
NextPageToken?: string | undefined;
|
|
1079
1083
|
}
|
|
1080
1084
|
export interface ListPortfoliosInput {
|
|
1081
|
-
AcceptLanguage?: string;
|
|
1082
|
-
PageToken?: string;
|
|
1083
|
-
PageSize?: number;
|
|
1085
|
+
AcceptLanguage?: string | undefined;
|
|
1086
|
+
PageToken?: string | undefined;
|
|
1087
|
+
PageSize?: number | undefined;
|
|
1084
1088
|
}
|
|
1085
1089
|
export interface ListPortfoliosOutput {
|
|
1086
|
-
PortfolioDetails?: PortfolioDetail[];
|
|
1087
|
-
NextPageToken?: string;
|
|
1090
|
+
PortfolioDetails?: PortfolioDetail[] | undefined;
|
|
1091
|
+
NextPageToken?: string | undefined;
|
|
1088
1092
|
}
|
|
1089
1093
|
export interface ListPortfoliosForProductInput {
|
|
1090
|
-
AcceptLanguage?: string;
|
|
1094
|
+
AcceptLanguage?: string | undefined;
|
|
1091
1095
|
ProductId: string | undefined;
|
|
1092
|
-
PageToken?: string;
|
|
1093
|
-
PageSize?: number;
|
|
1096
|
+
PageToken?: string | undefined;
|
|
1097
|
+
PageSize?: number | undefined;
|
|
1094
1098
|
}
|
|
1095
1099
|
export interface ListPortfoliosForProductOutput {
|
|
1096
|
-
PortfolioDetails?: PortfolioDetail[];
|
|
1097
|
-
NextPageToken?: string;
|
|
1100
|
+
PortfolioDetails?: PortfolioDetail[] | undefined;
|
|
1101
|
+
NextPageToken?: string | undefined;
|
|
1098
1102
|
}
|
|
1099
1103
|
export interface ListPrincipalsForPortfolioInput {
|
|
1100
|
-
AcceptLanguage?: string;
|
|
1104
|
+
AcceptLanguage?: string | undefined;
|
|
1101
1105
|
PortfolioId: string | undefined;
|
|
1102
|
-
PageSize?: number;
|
|
1103
|
-
PageToken?: string;
|
|
1106
|
+
PageSize?: number | undefined;
|
|
1107
|
+
PageToken?: string | undefined;
|
|
1104
1108
|
}
|
|
1105
1109
|
export interface Principal {
|
|
1106
|
-
PrincipalARN?: string;
|
|
1107
|
-
PrincipalType?: PrincipalType;
|
|
1110
|
+
PrincipalARN?: string | undefined;
|
|
1111
|
+
PrincipalType?: PrincipalType | undefined;
|
|
1108
1112
|
}
|
|
1109
1113
|
export interface ListPrincipalsForPortfolioOutput {
|
|
1110
|
-
Principals?: Principal[];
|
|
1111
|
-
NextPageToken?: string;
|
|
1114
|
+
Principals?: Principal[] | undefined;
|
|
1115
|
+
NextPageToken?: string | undefined;
|
|
1112
1116
|
}
|
|
1113
1117
|
export interface ListProvisionedProductPlansInput {
|
|
1114
|
-
AcceptLanguage?: string;
|
|
1115
|
-
ProvisionProductId?: string;
|
|
1116
|
-
PageSize?: number;
|
|
1117
|
-
PageToken?: string;
|
|
1118
|
-
AccessLevelFilter?: AccessLevelFilter;
|
|
1118
|
+
AcceptLanguage?: string | undefined;
|
|
1119
|
+
ProvisionProductId?: string | undefined;
|
|
1120
|
+
PageSize?: number | undefined;
|
|
1121
|
+
PageToken?: string | undefined;
|
|
1122
|
+
AccessLevelFilter?: AccessLevelFilter | undefined;
|
|
1119
1123
|
}
|
|
1120
1124
|
export interface ProvisionedProductPlanSummary {
|
|
1121
|
-
PlanName?: string;
|
|
1122
|
-
PlanId?: string;
|
|
1123
|
-
ProvisionProductId?: string;
|
|
1124
|
-
ProvisionProductName?: string;
|
|
1125
|
-
PlanType?: ProvisionedProductPlanType;
|
|
1126
|
-
ProvisioningArtifactId?: string;
|
|
1125
|
+
PlanName?: string | undefined;
|
|
1126
|
+
PlanId?: string | undefined;
|
|
1127
|
+
ProvisionProductId?: string | undefined;
|
|
1128
|
+
ProvisionProductName?: string | undefined;
|
|
1129
|
+
PlanType?: ProvisionedProductPlanType | undefined;
|
|
1130
|
+
ProvisioningArtifactId?: string | undefined;
|
|
1127
1131
|
}
|
|
1128
1132
|
export interface ListProvisionedProductPlansOutput {
|
|
1129
|
-
ProvisionedProductPlans?: ProvisionedProductPlanSummary[];
|
|
1130
|
-
NextPageToken?: string;
|
|
1133
|
+
ProvisionedProductPlans?: ProvisionedProductPlanSummary[] | undefined;
|
|
1134
|
+
NextPageToken?: string | undefined;
|
|
1131
1135
|
}
|
|
1132
1136
|
export interface ListProvisioningArtifactsInput {
|
|
1133
|
-
AcceptLanguage?: string;
|
|
1137
|
+
AcceptLanguage?: string | undefined;
|
|
1134
1138
|
ProductId: string | undefined;
|
|
1135
1139
|
}
|
|
1136
1140
|
export interface ListProvisioningArtifactsOutput {
|
|
1137
|
-
ProvisioningArtifactDetails?: ProvisioningArtifactDetail[];
|
|
1138
|
-
NextPageToken?: string;
|
|
1141
|
+
ProvisioningArtifactDetails?: ProvisioningArtifactDetail[] | undefined;
|
|
1142
|
+
NextPageToken?: string | undefined;
|
|
1139
1143
|
}
|
|
1140
1144
|
export interface ListProvisioningArtifactsForServiceActionInput {
|
|
1141
1145
|
ServiceActionId: string | undefined;
|
|
1142
|
-
PageSize?: number;
|
|
1143
|
-
PageToken?: string;
|
|
1144
|
-
AcceptLanguage?: string;
|
|
1146
|
+
PageSize?: number | undefined;
|
|
1147
|
+
PageToken?: string | undefined;
|
|
1148
|
+
AcceptLanguage?: string | undefined;
|
|
1145
1149
|
}
|
|
1146
1150
|
export interface ProvisioningArtifactView {
|
|
1147
|
-
ProductViewSummary?: ProductViewSummary;
|
|
1148
|
-
ProvisioningArtifact?: ProvisioningArtifact;
|
|
1151
|
+
ProductViewSummary?: ProductViewSummary | undefined;
|
|
1152
|
+
ProvisioningArtifact?: ProvisioningArtifact | undefined;
|
|
1149
1153
|
}
|
|
1150
1154
|
export interface ListProvisioningArtifactsForServiceActionOutput {
|
|
1151
|
-
ProvisioningArtifactViews?: ProvisioningArtifactView[];
|
|
1152
|
-
NextPageToken?: string;
|
|
1155
|
+
ProvisioningArtifactViews?: ProvisioningArtifactView[] | undefined;
|
|
1156
|
+
NextPageToken?: string | undefined;
|
|
1153
1157
|
}
|
|
1154
1158
|
export interface ListRecordHistorySearchFilter {
|
|
1155
|
-
Key?: string;
|
|
1156
|
-
Value?: string;
|
|
1159
|
+
Key?: string | undefined;
|
|
1160
|
+
Value?: string | undefined;
|
|
1157
1161
|
}
|
|
1158
1162
|
export interface ListRecordHistoryInput {
|
|
1159
|
-
AcceptLanguage?: string;
|
|
1160
|
-
AccessLevelFilter?: AccessLevelFilter;
|
|
1161
|
-
SearchFilter?: ListRecordHistorySearchFilter;
|
|
1162
|
-
PageSize?: number;
|
|
1163
|
-
PageToken?: string;
|
|
1163
|
+
AcceptLanguage?: string | undefined;
|
|
1164
|
+
AccessLevelFilter?: AccessLevelFilter | undefined;
|
|
1165
|
+
SearchFilter?: ListRecordHistorySearchFilter | undefined;
|
|
1166
|
+
PageSize?: number | undefined;
|
|
1167
|
+
PageToken?: string | undefined;
|
|
1164
1168
|
}
|
|
1165
1169
|
export interface ListRecordHistoryOutput {
|
|
1166
|
-
RecordDetails?: RecordDetail[];
|
|
1167
|
-
NextPageToken?: string;
|
|
1170
|
+
RecordDetails?: RecordDetail[] | undefined;
|
|
1171
|
+
NextPageToken?: string | undefined;
|
|
1168
1172
|
}
|
|
1169
1173
|
export interface ListResourcesForTagOptionInput {
|
|
1170
1174
|
TagOptionId: string | undefined;
|
|
1171
|
-
ResourceType?: string;
|
|
1172
|
-
PageSize?: number;
|
|
1173
|
-
PageToken?: string;
|
|
1175
|
+
ResourceType?: string | undefined;
|
|
1176
|
+
PageSize?: number | undefined;
|
|
1177
|
+
PageToken?: string | undefined;
|
|
1174
1178
|
}
|
|
1175
1179
|
export interface ResourceDetail {
|
|
1176
|
-
Id?: string;
|
|
1177
|
-
ARN?: string;
|
|
1178
|
-
Name?: string;
|
|
1179
|
-
Description?: string;
|
|
1180
|
-
CreatedTime?: Date;
|
|
1180
|
+
Id?: string | undefined;
|
|
1181
|
+
ARN?: string | undefined;
|
|
1182
|
+
Name?: string | undefined;
|
|
1183
|
+
Description?: string | undefined;
|
|
1184
|
+
CreatedTime?: Date | undefined;
|
|
1181
1185
|
}
|
|
1182
1186
|
export interface ListResourcesForTagOptionOutput {
|
|
1183
|
-
ResourceDetails?: ResourceDetail[];
|
|
1184
|
-
PageToken?: string;
|
|
1187
|
+
ResourceDetails?: ResourceDetail[] | undefined;
|
|
1188
|
+
PageToken?: string | undefined;
|
|
1185
1189
|
}
|
|
1186
1190
|
export interface ListServiceActionsInput {
|
|
1187
|
-
AcceptLanguage?: string;
|
|
1188
|
-
PageSize?: number;
|
|
1189
|
-
PageToken?: string;
|
|
1191
|
+
AcceptLanguage?: string | undefined;
|
|
1192
|
+
PageSize?: number | undefined;
|
|
1193
|
+
PageToken?: string | undefined;
|
|
1190
1194
|
}
|
|
1191
1195
|
export interface ListServiceActionsOutput {
|
|
1192
|
-
ServiceActionSummaries?: ServiceActionSummary[];
|
|
1193
|
-
NextPageToken?: string;
|
|
1196
|
+
ServiceActionSummaries?: ServiceActionSummary[] | undefined;
|
|
1197
|
+
NextPageToken?: string | undefined;
|
|
1194
1198
|
}
|
|
1195
1199
|
export interface ListServiceActionsForProvisioningArtifactInput {
|
|
1196
1200
|
ProductId: string | undefined;
|
|
1197
1201
|
ProvisioningArtifactId: string | undefined;
|
|
1198
|
-
PageSize?: number;
|
|
1199
|
-
PageToken?: string;
|
|
1200
|
-
AcceptLanguage?: string;
|
|
1202
|
+
PageSize?: number | undefined;
|
|
1203
|
+
PageToken?: string | undefined;
|
|
1204
|
+
AcceptLanguage?: string | undefined;
|
|
1201
1205
|
}
|
|
1202
1206
|
export interface ListServiceActionsForProvisioningArtifactOutput {
|
|
1203
|
-
ServiceActionSummaries?: ServiceActionSummary[];
|
|
1204
|
-
NextPageToken?: string;
|
|
1207
|
+
ServiceActionSummaries?: ServiceActionSummary[] | undefined;
|
|
1208
|
+
NextPageToken?: string | undefined;
|
|
1205
1209
|
}
|
|
1206
1210
|
export interface ListStackInstancesForProvisionedProductInput {
|
|
1207
|
-
AcceptLanguage?: string;
|
|
1211
|
+
AcceptLanguage?: string | undefined;
|
|
1208
1212
|
ProvisionedProductId: string | undefined;
|
|
1209
|
-
PageToken?: string;
|
|
1210
|
-
PageSize?: number;
|
|
1213
|
+
PageToken?: string | undefined;
|
|
1214
|
+
PageSize?: number | undefined;
|
|
1211
1215
|
}
|
|
1212
1216
|
export declare const StackInstanceStatus: {
|
|
1213
1217
|
readonly CURRENT: "CURRENT";
|
|
@@ -1217,34 +1221,34 @@ export declare const StackInstanceStatus: {
|
|
|
1217
1221
|
export type StackInstanceStatus =
|
|
1218
1222
|
(typeof StackInstanceStatus)[keyof typeof StackInstanceStatus];
|
|
1219
1223
|
export interface StackInstance {
|
|
1220
|
-
Account?: string;
|
|
1221
|
-
Region?: string;
|
|
1222
|
-
StackInstanceStatus?: StackInstanceStatus;
|
|
1224
|
+
Account?: string | undefined;
|
|
1225
|
+
Region?: string | undefined;
|
|
1226
|
+
StackInstanceStatus?: StackInstanceStatus | undefined;
|
|
1223
1227
|
}
|
|
1224
1228
|
export interface ListStackInstancesForProvisionedProductOutput {
|
|
1225
|
-
StackInstances?: StackInstance[];
|
|
1226
|
-
NextPageToken?: string;
|
|
1229
|
+
StackInstances?: StackInstance[] | undefined;
|
|
1230
|
+
NextPageToken?: string | undefined;
|
|
1227
1231
|
}
|
|
1228
1232
|
export interface ListTagOptionsFilters {
|
|
1229
|
-
Key?: string;
|
|
1230
|
-
Value?: string;
|
|
1231
|
-
Active?: boolean;
|
|
1233
|
+
Key?: string | undefined;
|
|
1234
|
+
Value?: string | undefined;
|
|
1235
|
+
Active?: boolean | undefined;
|
|
1232
1236
|
}
|
|
1233
1237
|
export interface ListTagOptionsInput {
|
|
1234
|
-
Filters?: ListTagOptionsFilters;
|
|
1235
|
-
PageSize?: number;
|
|
1236
|
-
PageToken?: string;
|
|
1238
|
+
Filters?: ListTagOptionsFilters | undefined;
|
|
1239
|
+
PageSize?: number | undefined;
|
|
1240
|
+
PageToken?: string | undefined;
|
|
1237
1241
|
}
|
|
1238
1242
|
export interface ListTagOptionsOutput {
|
|
1239
|
-
TagOptionDetails?: TagOptionDetail[];
|
|
1240
|
-
PageToken?: string;
|
|
1243
|
+
TagOptionDetails?: TagOptionDetail[] | undefined;
|
|
1244
|
+
PageToken?: string | undefined;
|
|
1241
1245
|
}
|
|
1242
1246
|
export interface UniqueTagResourceIdentifier {
|
|
1243
|
-
Key?: string;
|
|
1244
|
-
Value?: string;
|
|
1247
|
+
Key?: string | undefined;
|
|
1248
|
+
Value?: string | undefined;
|
|
1245
1249
|
}
|
|
1246
1250
|
export interface EngineWorkflowResourceIdentifier {
|
|
1247
|
-
UniqueTag?: UniqueTagResourceIdentifier;
|
|
1251
|
+
UniqueTag?: UniqueTagResourceIdentifier | undefined;
|
|
1248
1252
|
}
|
|
1249
1253
|
export declare const EngineWorkflowStatus: {
|
|
1250
1254
|
readonly FAILED: "FAILED";
|
|
@@ -1256,74 +1260,74 @@ export interface NotifyProvisionProductEngineWorkflowResultInput {
|
|
|
1256
1260
|
WorkflowToken: string | undefined;
|
|
1257
1261
|
RecordId: string | undefined;
|
|
1258
1262
|
Status: EngineWorkflowStatus | undefined;
|
|
1259
|
-
FailureReason?: string;
|
|
1260
|
-
ResourceIdentifier?: EngineWorkflowResourceIdentifier;
|
|
1261
|
-
Outputs?: RecordOutput[];
|
|
1262
|
-
IdempotencyToken?: string;
|
|
1263
|
+
FailureReason?: string | undefined;
|
|
1264
|
+
ResourceIdentifier?: EngineWorkflowResourceIdentifier | undefined;
|
|
1265
|
+
Outputs?: RecordOutput[] | undefined;
|
|
1266
|
+
IdempotencyToken?: string | undefined;
|
|
1263
1267
|
}
|
|
1264
1268
|
export interface NotifyProvisionProductEngineWorkflowResultOutput {}
|
|
1265
1269
|
export interface NotifyTerminateProvisionedProductEngineWorkflowResultInput {
|
|
1266
1270
|
WorkflowToken: string | undefined;
|
|
1267
1271
|
RecordId: string | undefined;
|
|
1268
1272
|
Status: EngineWorkflowStatus | undefined;
|
|
1269
|
-
FailureReason?: string;
|
|
1270
|
-
IdempotencyToken?: string;
|
|
1273
|
+
FailureReason?: string | undefined;
|
|
1274
|
+
IdempotencyToken?: string | undefined;
|
|
1271
1275
|
}
|
|
1272
1276
|
export interface NotifyTerminateProvisionedProductEngineWorkflowResultOutput {}
|
|
1273
1277
|
export interface NotifyUpdateProvisionedProductEngineWorkflowResultInput {
|
|
1274
1278
|
WorkflowToken: string | undefined;
|
|
1275
1279
|
RecordId: string | undefined;
|
|
1276
1280
|
Status: EngineWorkflowStatus | undefined;
|
|
1277
|
-
FailureReason?: string;
|
|
1278
|
-
Outputs?: RecordOutput[];
|
|
1279
|
-
IdempotencyToken?: string;
|
|
1281
|
+
FailureReason?: string | undefined;
|
|
1282
|
+
Outputs?: RecordOutput[] | undefined;
|
|
1283
|
+
IdempotencyToken?: string | undefined;
|
|
1280
1284
|
}
|
|
1281
1285
|
export interface NotifyUpdateProvisionedProductEngineWorkflowResultOutput {}
|
|
1282
1286
|
export interface ProvisioningParameter {
|
|
1283
|
-
Key?: string;
|
|
1284
|
-
Value?: string;
|
|
1287
|
+
Key?: string | undefined;
|
|
1288
|
+
Value?: string | undefined;
|
|
1285
1289
|
}
|
|
1286
1290
|
export interface ProvisioningPreferences {
|
|
1287
|
-
StackSetAccounts?: string[];
|
|
1288
|
-
StackSetRegions?: string[];
|
|
1289
|
-
StackSetFailureToleranceCount?: number;
|
|
1290
|
-
StackSetFailureTolerancePercentage?: number;
|
|
1291
|
-
StackSetMaxConcurrencyCount?: number;
|
|
1292
|
-
StackSetMaxConcurrencyPercentage?: number;
|
|
1291
|
+
StackSetAccounts?: string[] | undefined;
|
|
1292
|
+
StackSetRegions?: string[] | undefined;
|
|
1293
|
+
StackSetFailureToleranceCount?: number | undefined;
|
|
1294
|
+
StackSetFailureTolerancePercentage?: number | undefined;
|
|
1295
|
+
StackSetMaxConcurrencyCount?: number | undefined;
|
|
1296
|
+
StackSetMaxConcurrencyPercentage?: number | undefined;
|
|
1293
1297
|
}
|
|
1294
1298
|
export interface ProvisionProductInput {
|
|
1295
|
-
AcceptLanguage?: string;
|
|
1296
|
-
ProductId?: string;
|
|
1297
|
-
ProductName?: string;
|
|
1298
|
-
ProvisioningArtifactId?: string;
|
|
1299
|
-
ProvisioningArtifactName?: string;
|
|
1300
|
-
PathId?: string;
|
|
1301
|
-
PathName?: string;
|
|
1299
|
+
AcceptLanguage?: string | undefined;
|
|
1300
|
+
ProductId?: string | undefined;
|
|
1301
|
+
ProductName?: string | undefined;
|
|
1302
|
+
ProvisioningArtifactId?: string | undefined;
|
|
1303
|
+
ProvisioningArtifactName?: string | undefined;
|
|
1304
|
+
PathId?: string | undefined;
|
|
1305
|
+
PathName?: string | undefined;
|
|
1302
1306
|
ProvisionedProductName: string | undefined;
|
|
1303
|
-
ProvisioningParameters?: ProvisioningParameter[];
|
|
1304
|
-
ProvisioningPreferences?: ProvisioningPreferences;
|
|
1305
|
-
Tags?: Tag[];
|
|
1306
|
-
NotificationArns?: string[];
|
|
1307
|
-
ProvisionToken?: string;
|
|
1307
|
+
ProvisioningParameters?: ProvisioningParameter[] | undefined;
|
|
1308
|
+
ProvisioningPreferences?: ProvisioningPreferences | undefined;
|
|
1309
|
+
Tags?: Tag[] | undefined;
|
|
1310
|
+
NotificationArns?: string[] | undefined;
|
|
1311
|
+
ProvisionToken?: string | undefined;
|
|
1308
1312
|
}
|
|
1309
1313
|
export interface ProvisionProductOutput {
|
|
1310
|
-
RecordDetail?: RecordDetail;
|
|
1314
|
+
RecordDetail?: RecordDetail | undefined;
|
|
1311
1315
|
}
|
|
1312
1316
|
export interface RejectPortfolioShareInput {
|
|
1313
|
-
AcceptLanguage?: string;
|
|
1317
|
+
AcceptLanguage?: string | undefined;
|
|
1314
1318
|
PortfolioId: string | undefined;
|
|
1315
|
-
PortfolioShareType?: PortfolioShareType;
|
|
1319
|
+
PortfolioShareType?: PortfolioShareType | undefined;
|
|
1316
1320
|
}
|
|
1317
1321
|
export interface RejectPortfolioShareOutput {}
|
|
1318
1322
|
export interface ScanProvisionedProductsInput {
|
|
1319
|
-
AcceptLanguage?: string;
|
|
1320
|
-
AccessLevelFilter?: AccessLevelFilter;
|
|
1321
|
-
PageSize?: number;
|
|
1322
|
-
PageToken?: string;
|
|
1323
|
+
AcceptLanguage?: string | undefined;
|
|
1324
|
+
AccessLevelFilter?: AccessLevelFilter | undefined;
|
|
1325
|
+
PageSize?: number | undefined;
|
|
1326
|
+
PageToken?: string | undefined;
|
|
1323
1327
|
}
|
|
1324
1328
|
export interface ScanProvisionedProductsOutput {
|
|
1325
|
-
ProvisionedProducts?: ProvisionedProductDetail[];
|
|
1326
|
-
NextPageToken?: string;
|
|
1329
|
+
ProvisionedProducts?: ProvisionedProductDetail[] | undefined;
|
|
1330
|
+
NextPageToken?: string | undefined;
|
|
1327
1331
|
}
|
|
1328
1332
|
export declare const ProductViewFilterBy: {
|
|
1329
1333
|
readonly FullTextSearch: "FullTextSearch";
|
|
@@ -1346,39 +1350,41 @@ export declare const SortOrder: {
|
|
|
1346
1350
|
};
|
|
1347
1351
|
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
1348
1352
|
export interface SearchProductsInput {
|
|
1349
|
-
AcceptLanguage?: string;
|
|
1350
|
-
Filters?: Partial<Record<ProductViewFilterBy, string[]
|
|
1351
|
-
PageSize?: number;
|
|
1352
|
-
SortBy?: ProductViewSortBy;
|
|
1353
|
-
SortOrder?: SortOrder;
|
|
1354
|
-
PageToken?: string;
|
|
1353
|
+
AcceptLanguage?: string | undefined;
|
|
1354
|
+
Filters?: Partial<Record<ProductViewFilterBy, string[]>> | undefined;
|
|
1355
|
+
PageSize?: number | undefined;
|
|
1356
|
+
SortBy?: ProductViewSortBy | undefined;
|
|
1357
|
+
SortOrder?: SortOrder | undefined;
|
|
1358
|
+
PageToken?: string | undefined;
|
|
1355
1359
|
}
|
|
1356
1360
|
export interface ProductViewAggregationValue {
|
|
1357
|
-
Value?: string;
|
|
1358
|
-
ApproximateCount?: number;
|
|
1361
|
+
Value?: string | undefined;
|
|
1362
|
+
ApproximateCount?: number | undefined;
|
|
1359
1363
|
}
|
|
1360
1364
|
export interface SearchProductsOutput {
|
|
1361
|
-
ProductViewSummaries?: ProductViewSummary[];
|
|
1362
|
-
ProductViewAggregations?:
|
|
1363
|
-
|
|
1365
|
+
ProductViewSummaries?: ProductViewSummary[] | undefined;
|
|
1366
|
+
ProductViewAggregations?:
|
|
1367
|
+
| Record<string, ProductViewAggregationValue[]>
|
|
1368
|
+
| undefined;
|
|
1369
|
+
NextPageToken?: string | undefined;
|
|
1364
1370
|
}
|
|
1365
1371
|
export declare const ProductSource: {
|
|
1366
1372
|
readonly ACCOUNT: "ACCOUNT";
|
|
1367
1373
|
};
|
|
1368
1374
|
export type ProductSource = (typeof ProductSource)[keyof typeof ProductSource];
|
|
1369
1375
|
export interface SearchProductsAsAdminInput {
|
|
1370
|
-
AcceptLanguage?: string;
|
|
1371
|
-
PortfolioId?: string;
|
|
1372
|
-
Filters?: Partial<Record<ProductViewFilterBy, string[]
|
|
1373
|
-
SortBy?: ProductViewSortBy;
|
|
1374
|
-
SortOrder?: SortOrder;
|
|
1375
|
-
PageToken?: string;
|
|
1376
|
-
PageSize?: number;
|
|
1377
|
-
ProductSource?: ProductSource;
|
|
1376
|
+
AcceptLanguage?: string | undefined;
|
|
1377
|
+
PortfolioId?: string | undefined;
|
|
1378
|
+
Filters?: Partial<Record<ProductViewFilterBy, string[]>> | undefined;
|
|
1379
|
+
SortBy?: ProductViewSortBy | undefined;
|
|
1380
|
+
SortOrder?: SortOrder | undefined;
|
|
1381
|
+
PageToken?: string | undefined;
|
|
1382
|
+
PageSize?: number | undefined;
|
|
1383
|
+
ProductSource?: ProductSource | undefined;
|
|
1378
1384
|
}
|
|
1379
1385
|
export interface SearchProductsAsAdminOutput {
|
|
1380
|
-
ProductViewDetails?: ProductViewDetail[];
|
|
1381
|
-
NextPageToken?: string;
|
|
1386
|
+
ProductViewDetails?: ProductViewDetail[] | undefined;
|
|
1387
|
+
NextPageToken?: string | undefined;
|
|
1382
1388
|
}
|
|
1383
1389
|
export declare const ProvisionedProductViewFilterBy: {
|
|
1384
1390
|
readonly SearchQuery: "SearchQuery";
|
|
@@ -1386,104 +1392,106 @@ export declare const ProvisionedProductViewFilterBy: {
|
|
|
1386
1392
|
export type ProvisionedProductViewFilterBy =
|
|
1387
1393
|
(typeof ProvisionedProductViewFilterBy)[keyof typeof ProvisionedProductViewFilterBy];
|
|
1388
1394
|
export interface SearchProvisionedProductsInput {
|
|
1389
|
-
AcceptLanguage?: string;
|
|
1390
|
-
AccessLevelFilter?: AccessLevelFilter;
|
|
1391
|
-
Filters?:
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1395
|
+
AcceptLanguage?: string | undefined;
|
|
1396
|
+
AccessLevelFilter?: AccessLevelFilter | undefined;
|
|
1397
|
+
Filters?:
|
|
1398
|
+
| Partial<Record<ProvisionedProductViewFilterBy, string[]>>
|
|
1399
|
+
| undefined;
|
|
1400
|
+
SortBy?: string | undefined;
|
|
1401
|
+
SortOrder?: SortOrder | undefined;
|
|
1402
|
+
PageSize?: number | undefined;
|
|
1403
|
+
PageToken?: string | undefined;
|
|
1396
1404
|
}
|
|
1397
1405
|
export interface ProvisionedProductAttribute {
|
|
1398
|
-
Name?: string;
|
|
1399
|
-
Arn?: string;
|
|
1400
|
-
Type?: string;
|
|
1401
|
-
Id?: string;
|
|
1402
|
-
Status?: ProvisionedProductStatus;
|
|
1403
|
-
StatusMessage?: string;
|
|
1404
|
-
CreatedTime?: Date;
|
|
1405
|
-
IdempotencyToken?: string;
|
|
1406
|
-
LastRecordId?: string;
|
|
1407
|
-
LastProvisioningRecordId?: string;
|
|
1408
|
-
LastSuccessfulProvisioningRecordId?: string;
|
|
1409
|
-
Tags?: Tag[];
|
|
1410
|
-
PhysicalId?: string;
|
|
1411
|
-
ProductId?: string;
|
|
1412
|
-
ProductName?: string;
|
|
1413
|
-
ProvisioningArtifactId?: string;
|
|
1414
|
-
ProvisioningArtifactName?: string;
|
|
1415
|
-
UserArn?: string;
|
|
1416
|
-
UserArnSession?: string;
|
|
1406
|
+
Name?: string | undefined;
|
|
1407
|
+
Arn?: string | undefined;
|
|
1408
|
+
Type?: string | undefined;
|
|
1409
|
+
Id?: string | undefined;
|
|
1410
|
+
Status?: ProvisionedProductStatus | undefined;
|
|
1411
|
+
StatusMessage?: string | undefined;
|
|
1412
|
+
CreatedTime?: Date | undefined;
|
|
1413
|
+
IdempotencyToken?: string | undefined;
|
|
1414
|
+
LastRecordId?: string | undefined;
|
|
1415
|
+
LastProvisioningRecordId?: string | undefined;
|
|
1416
|
+
LastSuccessfulProvisioningRecordId?: string | undefined;
|
|
1417
|
+
Tags?: Tag[] | undefined;
|
|
1418
|
+
PhysicalId?: string | undefined;
|
|
1419
|
+
ProductId?: string | undefined;
|
|
1420
|
+
ProductName?: string | undefined;
|
|
1421
|
+
ProvisioningArtifactId?: string | undefined;
|
|
1422
|
+
ProvisioningArtifactName?: string | undefined;
|
|
1423
|
+
UserArn?: string | undefined;
|
|
1424
|
+
UserArnSession?: string | undefined;
|
|
1417
1425
|
}
|
|
1418
1426
|
export interface SearchProvisionedProductsOutput {
|
|
1419
|
-
ProvisionedProducts?: ProvisionedProductAttribute[];
|
|
1420
|
-
TotalResultsCount?: number;
|
|
1421
|
-
NextPageToken?: string;
|
|
1427
|
+
ProvisionedProducts?: ProvisionedProductAttribute[] | undefined;
|
|
1428
|
+
TotalResultsCount?: number | undefined;
|
|
1429
|
+
NextPageToken?: string | undefined;
|
|
1422
1430
|
}
|
|
1423
1431
|
export interface TerminateProvisionedProductInput {
|
|
1424
|
-
ProvisionedProductName?: string;
|
|
1425
|
-
ProvisionedProductId?: string;
|
|
1426
|
-
TerminateToken?: string;
|
|
1427
|
-
IgnoreErrors?: boolean;
|
|
1428
|
-
AcceptLanguage?: string;
|
|
1429
|
-
RetainPhysicalResources?: boolean;
|
|
1432
|
+
ProvisionedProductName?: string | undefined;
|
|
1433
|
+
ProvisionedProductId?: string | undefined;
|
|
1434
|
+
TerminateToken?: string | undefined;
|
|
1435
|
+
IgnoreErrors?: boolean | undefined;
|
|
1436
|
+
AcceptLanguage?: string | undefined;
|
|
1437
|
+
RetainPhysicalResources?: boolean | undefined;
|
|
1430
1438
|
}
|
|
1431
1439
|
export interface TerminateProvisionedProductOutput {
|
|
1432
|
-
RecordDetail?: RecordDetail;
|
|
1440
|
+
RecordDetail?: RecordDetail | undefined;
|
|
1433
1441
|
}
|
|
1434
1442
|
export interface UpdateConstraintInput {
|
|
1435
|
-
AcceptLanguage?: string;
|
|
1443
|
+
AcceptLanguage?: string | undefined;
|
|
1436
1444
|
Id: string | undefined;
|
|
1437
|
-
Description?: string;
|
|
1438
|
-
Parameters?: string;
|
|
1445
|
+
Description?: string | undefined;
|
|
1446
|
+
Parameters?: string | undefined;
|
|
1439
1447
|
}
|
|
1440
1448
|
export interface UpdateConstraintOutput {
|
|
1441
|
-
ConstraintDetail?: ConstraintDetail;
|
|
1442
|
-
ConstraintParameters?: string;
|
|
1443
|
-
Status?: Status;
|
|
1449
|
+
ConstraintDetail?: ConstraintDetail | undefined;
|
|
1450
|
+
ConstraintParameters?: string | undefined;
|
|
1451
|
+
Status?: Status | undefined;
|
|
1444
1452
|
}
|
|
1445
1453
|
export interface UpdatePortfolioInput {
|
|
1446
|
-
AcceptLanguage?: string;
|
|
1454
|
+
AcceptLanguage?: string | undefined;
|
|
1447
1455
|
Id: string | undefined;
|
|
1448
|
-
DisplayName?: string;
|
|
1449
|
-
Description?: string;
|
|
1450
|
-
ProviderName?: string;
|
|
1451
|
-
AddTags?: Tag[];
|
|
1452
|
-
RemoveTags?: string[];
|
|
1456
|
+
DisplayName?: string | undefined;
|
|
1457
|
+
Description?: string | undefined;
|
|
1458
|
+
ProviderName?: string | undefined;
|
|
1459
|
+
AddTags?: Tag[] | undefined;
|
|
1460
|
+
RemoveTags?: string[] | undefined;
|
|
1453
1461
|
}
|
|
1454
1462
|
export interface UpdatePortfolioOutput {
|
|
1455
|
-
PortfolioDetail?: PortfolioDetail;
|
|
1456
|
-
Tags?: Tag[];
|
|
1463
|
+
PortfolioDetail?: PortfolioDetail | undefined;
|
|
1464
|
+
Tags?: Tag[] | undefined;
|
|
1457
1465
|
}
|
|
1458
1466
|
export interface UpdatePortfolioShareInput {
|
|
1459
|
-
AcceptLanguage?: string;
|
|
1467
|
+
AcceptLanguage?: string | undefined;
|
|
1460
1468
|
PortfolioId: string | undefined;
|
|
1461
|
-
AccountId?: string;
|
|
1462
|
-
OrganizationNode?: OrganizationNode;
|
|
1463
|
-
ShareTagOptions?: boolean;
|
|
1464
|
-
SharePrincipals?: boolean;
|
|
1469
|
+
AccountId?: string | undefined;
|
|
1470
|
+
OrganizationNode?: OrganizationNode | undefined;
|
|
1471
|
+
ShareTagOptions?: boolean | undefined;
|
|
1472
|
+
SharePrincipals?: boolean | undefined;
|
|
1465
1473
|
}
|
|
1466
1474
|
export interface UpdatePortfolioShareOutput {
|
|
1467
|
-
PortfolioShareToken?: string;
|
|
1468
|
-
Status?: ShareStatus;
|
|
1475
|
+
PortfolioShareToken?: string | undefined;
|
|
1476
|
+
Status?: ShareStatus | undefined;
|
|
1469
1477
|
}
|
|
1470
1478
|
export interface UpdateProductInput {
|
|
1471
|
-
AcceptLanguage?: string;
|
|
1479
|
+
AcceptLanguage?: string | undefined;
|
|
1472
1480
|
Id: string | undefined;
|
|
1473
|
-
Name?: string;
|
|
1474
|
-
Owner?: string;
|
|
1475
|
-
Description?: string;
|
|
1476
|
-
Distributor?: string;
|
|
1477
|
-
SupportDescription?: string;
|
|
1478
|
-
SupportEmail?: string;
|
|
1479
|
-
SupportUrl?: string;
|
|
1480
|
-
AddTags?: Tag[];
|
|
1481
|
-
RemoveTags?: string[];
|
|
1482
|
-
SourceConnection?: SourceConnection;
|
|
1481
|
+
Name?: string | undefined;
|
|
1482
|
+
Owner?: string | undefined;
|
|
1483
|
+
Description?: string | undefined;
|
|
1484
|
+
Distributor?: string | undefined;
|
|
1485
|
+
SupportDescription?: string | undefined;
|
|
1486
|
+
SupportEmail?: string | undefined;
|
|
1487
|
+
SupportUrl?: string | undefined;
|
|
1488
|
+
AddTags?: Tag[] | undefined;
|
|
1489
|
+
RemoveTags?: string[] | undefined;
|
|
1490
|
+
SourceConnection?: SourceConnection | undefined;
|
|
1483
1491
|
}
|
|
1484
1492
|
export interface UpdateProductOutput {
|
|
1485
|
-
ProductViewDetail?: ProductViewDetail;
|
|
1486
|
-
Tags?: Tag[];
|
|
1493
|
+
ProductViewDetail?: ProductViewDetail | undefined;
|
|
1494
|
+
Tags?: Tag[] | undefined;
|
|
1487
1495
|
}
|
|
1488
1496
|
export declare const StackSetOperationType: {
|
|
1489
1497
|
readonly CREATE: "CREATE";
|
|
@@ -1493,31 +1501,31 @@ export declare const StackSetOperationType: {
|
|
|
1493
1501
|
export type StackSetOperationType =
|
|
1494
1502
|
(typeof StackSetOperationType)[keyof typeof StackSetOperationType];
|
|
1495
1503
|
export interface UpdateProvisioningPreferences {
|
|
1496
|
-
StackSetAccounts?: string[];
|
|
1497
|
-
StackSetRegions?: string[];
|
|
1498
|
-
StackSetFailureToleranceCount?: number;
|
|
1499
|
-
StackSetFailureTolerancePercentage?: number;
|
|
1500
|
-
StackSetMaxConcurrencyCount?: number;
|
|
1501
|
-
StackSetMaxConcurrencyPercentage?: number;
|
|
1502
|
-
StackSetOperationType?: StackSetOperationType;
|
|
1504
|
+
StackSetAccounts?: string[] | undefined;
|
|
1505
|
+
StackSetRegions?: string[] | undefined;
|
|
1506
|
+
StackSetFailureToleranceCount?: number | undefined;
|
|
1507
|
+
StackSetFailureTolerancePercentage?: number | undefined;
|
|
1508
|
+
StackSetMaxConcurrencyCount?: number | undefined;
|
|
1509
|
+
StackSetMaxConcurrencyPercentage?: number | undefined;
|
|
1510
|
+
StackSetOperationType?: StackSetOperationType | undefined;
|
|
1503
1511
|
}
|
|
1504
1512
|
export interface UpdateProvisionedProductInput {
|
|
1505
|
-
AcceptLanguage?: string;
|
|
1506
|
-
ProvisionedProductName?: string;
|
|
1507
|
-
ProvisionedProductId?: string;
|
|
1508
|
-
ProductId?: string;
|
|
1509
|
-
ProductName?: string;
|
|
1510
|
-
ProvisioningArtifactId?: string;
|
|
1511
|
-
ProvisioningArtifactName?: string;
|
|
1512
|
-
PathId?: string;
|
|
1513
|
-
PathName?: string;
|
|
1514
|
-
ProvisioningParameters?: UpdateProvisioningParameter[];
|
|
1515
|
-
ProvisioningPreferences?: UpdateProvisioningPreferences;
|
|
1516
|
-
Tags?: Tag[];
|
|
1517
|
-
UpdateToken?: string;
|
|
1513
|
+
AcceptLanguage?: string | undefined;
|
|
1514
|
+
ProvisionedProductName?: string | undefined;
|
|
1515
|
+
ProvisionedProductId?: string | undefined;
|
|
1516
|
+
ProductId?: string | undefined;
|
|
1517
|
+
ProductName?: string | undefined;
|
|
1518
|
+
ProvisioningArtifactId?: string | undefined;
|
|
1519
|
+
ProvisioningArtifactName?: string | undefined;
|
|
1520
|
+
PathId?: string | undefined;
|
|
1521
|
+
PathName?: string | undefined;
|
|
1522
|
+
ProvisioningParameters?: UpdateProvisioningParameter[] | undefined;
|
|
1523
|
+
ProvisioningPreferences?: UpdateProvisioningPreferences | undefined;
|
|
1524
|
+
Tags?: Tag[] | undefined;
|
|
1525
|
+
UpdateToken?: string | undefined;
|
|
1518
1526
|
}
|
|
1519
1527
|
export interface UpdateProvisionedProductOutput {
|
|
1520
|
-
RecordDetail?: RecordDetail;
|
|
1528
|
+
RecordDetail?: RecordDetail | undefined;
|
|
1521
1529
|
}
|
|
1522
1530
|
export declare const PropertyKey: {
|
|
1523
1531
|
readonly LaunchRole: "LAUNCH_ROLE";
|
|
@@ -1525,48 +1533,50 @@ export declare const PropertyKey: {
|
|
|
1525
1533
|
};
|
|
1526
1534
|
export type PropertyKey = (typeof PropertyKey)[keyof typeof PropertyKey];
|
|
1527
1535
|
export interface UpdateProvisionedProductPropertiesInput {
|
|
1528
|
-
AcceptLanguage?: string;
|
|
1536
|
+
AcceptLanguage?: string | undefined;
|
|
1529
1537
|
ProvisionedProductId: string | undefined;
|
|
1530
1538
|
ProvisionedProductProperties:
|
|
1531
1539
|
| Partial<Record<PropertyKey, string>>
|
|
1532
1540
|
| undefined;
|
|
1533
|
-
IdempotencyToken?: string;
|
|
1541
|
+
IdempotencyToken?: string | undefined;
|
|
1534
1542
|
}
|
|
1535
1543
|
export interface UpdateProvisionedProductPropertiesOutput {
|
|
1536
|
-
ProvisionedProductId?: string;
|
|
1537
|
-
ProvisionedProductProperties?:
|
|
1538
|
-
|
|
1539
|
-
|
|
1544
|
+
ProvisionedProductId?: string | undefined;
|
|
1545
|
+
ProvisionedProductProperties?:
|
|
1546
|
+
| Partial<Record<PropertyKey, string>>
|
|
1547
|
+
| undefined;
|
|
1548
|
+
RecordId?: string | undefined;
|
|
1549
|
+
Status?: RecordStatus | undefined;
|
|
1540
1550
|
}
|
|
1541
1551
|
export interface UpdateProvisioningArtifactInput {
|
|
1542
|
-
AcceptLanguage?: string;
|
|
1552
|
+
AcceptLanguage?: string | undefined;
|
|
1543
1553
|
ProductId: string | undefined;
|
|
1544
1554
|
ProvisioningArtifactId: string | undefined;
|
|
1545
|
-
Name?: string;
|
|
1546
|
-
Description?: string;
|
|
1547
|
-
Active?: boolean;
|
|
1548
|
-
Guidance?: ProvisioningArtifactGuidance;
|
|
1555
|
+
Name?: string | undefined;
|
|
1556
|
+
Description?: string | undefined;
|
|
1557
|
+
Active?: boolean | undefined;
|
|
1558
|
+
Guidance?: ProvisioningArtifactGuidance | undefined;
|
|
1549
1559
|
}
|
|
1550
1560
|
export interface UpdateProvisioningArtifactOutput {
|
|
1551
|
-
ProvisioningArtifactDetail?: ProvisioningArtifactDetail;
|
|
1552
|
-
Info?: Record<string, string
|
|
1553
|
-
Status?: Status;
|
|
1561
|
+
ProvisioningArtifactDetail?: ProvisioningArtifactDetail | undefined;
|
|
1562
|
+
Info?: Record<string, string> | undefined;
|
|
1563
|
+
Status?: Status | undefined;
|
|
1554
1564
|
}
|
|
1555
1565
|
export interface UpdateServiceActionInput {
|
|
1556
1566
|
Id: string | undefined;
|
|
1557
|
-
Name?: string;
|
|
1558
|
-
Definition?: Partial<Record<ServiceActionDefinitionKey, string
|
|
1559
|
-
Description?: string;
|
|
1560
|
-
AcceptLanguage?: string;
|
|
1567
|
+
Name?: string | undefined;
|
|
1568
|
+
Definition?: Partial<Record<ServiceActionDefinitionKey, string>> | undefined;
|
|
1569
|
+
Description?: string | undefined;
|
|
1570
|
+
AcceptLanguage?: string | undefined;
|
|
1561
1571
|
}
|
|
1562
1572
|
export interface UpdateServiceActionOutput {
|
|
1563
|
-
ServiceActionDetail?: ServiceActionDetail;
|
|
1573
|
+
ServiceActionDetail?: ServiceActionDetail | undefined;
|
|
1564
1574
|
}
|
|
1565
1575
|
export interface UpdateTagOptionInput {
|
|
1566
1576
|
Id: string | undefined;
|
|
1567
|
-
Value?: string;
|
|
1568
|
-
Active?: boolean;
|
|
1577
|
+
Value?: string | undefined;
|
|
1578
|
+
Active?: boolean | undefined;
|
|
1569
1579
|
}
|
|
1570
1580
|
export interface UpdateTagOptionOutput {
|
|
1571
|
-
TagOptionDetail?: TagOptionDetail;
|
|
1581
|
+
TagOptionDetail?: TagOptionDetail | undefined;
|
|
1572
1582
|
}
|