system-initiative-api-client 1.12.0 → 1.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/api.d.ts +539 -2
- package/dist/cjs/api.js +237 -7
- package/dist/esm/api.d.ts +539 -2
- package/dist/esm/api.js +231 -5
- package/package.json +2 -2
package/dist/cjs/api.d.ts
CHANGED
|
@@ -320,6 +320,12 @@ export interface ChangeSetViewV1 {
|
|
|
320
320
|
* @interface ComponentDetailsV1
|
|
321
321
|
*/
|
|
322
322
|
export interface ComponentDetailsV1 {
|
|
323
|
+
/**
|
|
324
|
+
*
|
|
325
|
+
* @type {Array<FunctionRelationshipV1>}
|
|
326
|
+
* @memberof ComponentDetailsV1
|
|
327
|
+
*/
|
|
328
|
+
'actionFunctions'?: Array<FunctionRelationshipV1>;
|
|
323
329
|
/**
|
|
324
330
|
*
|
|
325
331
|
* @type {any}
|
|
@@ -332,18 +338,72 @@ export interface ComponentDetailsV1 {
|
|
|
332
338
|
* @memberof ComponentDetailsV1
|
|
333
339
|
*/
|
|
334
340
|
'componentId': string;
|
|
341
|
+
/**
|
|
342
|
+
*
|
|
343
|
+
* @type {string}
|
|
344
|
+
* @memberof ComponentDetailsV1
|
|
345
|
+
*/
|
|
346
|
+
'diffStatus'?: string | null;
|
|
347
|
+
/**
|
|
348
|
+
*
|
|
349
|
+
* @type {boolean}
|
|
350
|
+
* @memberof ComponentDetailsV1
|
|
351
|
+
*/
|
|
352
|
+
'hasDiff'?: boolean | null;
|
|
353
|
+
/**
|
|
354
|
+
*
|
|
355
|
+
* @type {boolean}
|
|
356
|
+
* @memberof ComponentDetailsV1
|
|
357
|
+
*/
|
|
358
|
+
'hasResource'?: boolean | null;
|
|
359
|
+
/**
|
|
360
|
+
*
|
|
361
|
+
* @type {Array<FunctionRelationshipV1>}
|
|
362
|
+
* @memberof ComponentDetailsV1
|
|
363
|
+
*/
|
|
364
|
+
'managementFunctions'?: Array<FunctionRelationshipV1>;
|
|
365
|
+
/**
|
|
366
|
+
*
|
|
367
|
+
* @type {Array<ManagementRelationshipV1>}
|
|
368
|
+
* @memberof ComponentDetailsV1
|
|
369
|
+
*/
|
|
370
|
+
'manages'?: Array<ManagementRelationshipV1>;
|
|
335
371
|
/**
|
|
336
372
|
*
|
|
337
373
|
* @type {string}
|
|
338
374
|
* @memberof ComponentDetailsV1
|
|
339
375
|
*/
|
|
340
376
|
'name': string;
|
|
377
|
+
/**
|
|
378
|
+
*
|
|
379
|
+
* @type {Array<FunctionRelationshipV1>}
|
|
380
|
+
* @memberof ComponentDetailsV1
|
|
381
|
+
*/
|
|
382
|
+
'qualificationFunctions'?: Array<FunctionRelationshipV1>;
|
|
383
|
+
/**
|
|
384
|
+
*
|
|
385
|
+
* @type {string}
|
|
386
|
+
* @memberof ComponentDetailsV1
|
|
387
|
+
*/
|
|
388
|
+
'resourceId'?: string | null;
|
|
389
|
+
/**
|
|
390
|
+
*
|
|
391
|
+
* @type {string}
|
|
392
|
+
* @memberof ComponentDetailsV1
|
|
393
|
+
*/
|
|
394
|
+
'resourceStatus'?: string | null;
|
|
341
395
|
/**
|
|
342
396
|
*
|
|
343
397
|
* @type {string}
|
|
344
398
|
* @memberof ComponentDetailsV1
|
|
345
399
|
*/
|
|
346
400
|
'schemaName': string;
|
|
401
|
+
/**
|
|
402
|
+
*
|
|
403
|
+
* @type {Array<SubscriptionRelationshipV1>}
|
|
404
|
+
* @memberof ComponentDetailsV1
|
|
405
|
+
*/
|
|
406
|
+
'subscriptions'?: Array<SubscriptionRelationshipV1>;
|
|
347
407
|
}
|
|
348
408
|
/**
|
|
349
409
|
* @type ComponentPropKey
|
|
@@ -1134,6 +1194,12 @@ export interface CreateVariantQualificationFuncV1Response {
|
|
|
1134
1194
|
* @interface CreateWorkspaceRequest
|
|
1135
1195
|
*/
|
|
1136
1196
|
export interface CreateWorkspaceRequest {
|
|
1197
|
+
/**
|
|
1198
|
+
*
|
|
1199
|
+
* @type {boolean}
|
|
1200
|
+
* @memberof CreateWorkspaceRequest
|
|
1201
|
+
*/
|
|
1202
|
+
'createSetupToken'?: boolean | null;
|
|
1137
1203
|
/**
|
|
1138
1204
|
*
|
|
1139
1205
|
* @type {string}
|
|
@@ -1420,6 +1486,31 @@ export interface ExecuteManagementFunctionV1Response {
|
|
|
1420
1486
|
*/
|
|
1421
1487
|
'status': string;
|
|
1422
1488
|
}
|
|
1489
|
+
/**
|
|
1490
|
+
*
|
|
1491
|
+
* @export
|
|
1492
|
+
* @interface ExecutionHistoryEntry
|
|
1493
|
+
*/
|
|
1494
|
+
export interface ExecutionHistoryEntry {
|
|
1495
|
+
/**
|
|
1496
|
+
*
|
|
1497
|
+
* @type {string}
|
|
1498
|
+
* @memberof ExecutionHistoryEntry
|
|
1499
|
+
*/
|
|
1500
|
+
'funcRunId': string;
|
|
1501
|
+
/**
|
|
1502
|
+
*
|
|
1503
|
+
* @type {string}
|
|
1504
|
+
* @memberof ExecutionHistoryEntry
|
|
1505
|
+
*/
|
|
1506
|
+
'startedAt': string;
|
|
1507
|
+
/**
|
|
1508
|
+
*
|
|
1509
|
+
* @type {string}
|
|
1510
|
+
* @memberof ExecutionHistoryEntry
|
|
1511
|
+
*/
|
|
1512
|
+
'state': string;
|
|
1513
|
+
}
|
|
1423
1514
|
/**
|
|
1424
1515
|
*
|
|
1425
1516
|
* @export
|
|
@@ -1721,6 +1812,68 @@ export interface FuncRunViewV1 {
|
|
|
1721
1812
|
*/
|
|
1722
1813
|
'updatedAt': string;
|
|
1723
1814
|
}
|
|
1815
|
+
/**
|
|
1816
|
+
*
|
|
1817
|
+
* @export
|
|
1818
|
+
* @interface FunctionExecutionStatusV1
|
|
1819
|
+
*/
|
|
1820
|
+
export interface FunctionExecutionStatusV1 {
|
|
1821
|
+
/**
|
|
1822
|
+
*
|
|
1823
|
+
* @type {string}
|
|
1824
|
+
* @memberof FunctionExecutionStatusV1
|
|
1825
|
+
*/
|
|
1826
|
+
'actionId'?: string | null;
|
|
1827
|
+
/**
|
|
1828
|
+
*
|
|
1829
|
+
* @type {string}
|
|
1830
|
+
* @memberof FunctionExecutionStatusV1
|
|
1831
|
+
*/
|
|
1832
|
+
'funcRunId'?: string | null;
|
|
1833
|
+
/**
|
|
1834
|
+
*
|
|
1835
|
+
* @type {boolean}
|
|
1836
|
+
* @memberof FunctionExecutionStatusV1
|
|
1837
|
+
*/
|
|
1838
|
+
'hasActiveRun': boolean;
|
|
1839
|
+
/**
|
|
1840
|
+
*
|
|
1841
|
+
* @type {string}
|
|
1842
|
+
* @memberof FunctionExecutionStatusV1
|
|
1843
|
+
*/
|
|
1844
|
+
'state': string;
|
|
1845
|
+
}
|
|
1846
|
+
/**
|
|
1847
|
+
*
|
|
1848
|
+
* @export
|
|
1849
|
+
* @interface FunctionRelationshipV1
|
|
1850
|
+
*/
|
|
1851
|
+
export interface FunctionRelationshipV1 {
|
|
1852
|
+
/**
|
|
1853
|
+
*
|
|
1854
|
+
* @type {Array<string>}
|
|
1855
|
+
* @memberof FunctionRelationshipV1
|
|
1856
|
+
*/
|
|
1857
|
+
'dependsOn'?: Array<string>;
|
|
1858
|
+
/**
|
|
1859
|
+
*
|
|
1860
|
+
* @type {Array<ExecutionHistoryEntry>}
|
|
1861
|
+
* @memberof FunctionRelationshipV1
|
|
1862
|
+
*/
|
|
1863
|
+
'executionHistory'?: Array<ExecutionHistoryEntry>;
|
|
1864
|
+
/**
|
|
1865
|
+
*
|
|
1866
|
+
* @type {FunctionExecutionStatusV1}
|
|
1867
|
+
* @memberof FunctionRelationshipV1
|
|
1868
|
+
*/
|
|
1869
|
+
'executionStatus'?: FunctionExecutionStatusV1 | null;
|
|
1870
|
+
/**
|
|
1871
|
+
*
|
|
1872
|
+
* @type {string}
|
|
1873
|
+
* @memberof FunctionRelationshipV1
|
|
1874
|
+
*/
|
|
1875
|
+
'functionName': string;
|
|
1876
|
+
}
|
|
1724
1877
|
/**
|
|
1725
1878
|
*
|
|
1726
1879
|
* @export
|
|
@@ -2107,6 +2260,43 @@ export interface InitialApiToken {
|
|
|
2107
2260
|
*/
|
|
2108
2261
|
'token': string;
|
|
2109
2262
|
}
|
|
2263
|
+
/**
|
|
2264
|
+
*
|
|
2265
|
+
* @export
|
|
2266
|
+
* @interface InstallFromFileV1Response
|
|
2267
|
+
*/
|
|
2268
|
+
export interface InstallFromFileV1Response {
|
|
2269
|
+
/**
|
|
2270
|
+
*
|
|
2271
|
+
* @type {string}
|
|
2272
|
+
* @memberof InstallFromFileV1Response
|
|
2273
|
+
*/
|
|
2274
|
+
'category': string;
|
|
2275
|
+
/**
|
|
2276
|
+
*
|
|
2277
|
+
* @type {string}
|
|
2278
|
+
* @memberof InstallFromFileV1Response
|
|
2279
|
+
*/
|
|
2280
|
+
'displayName': string;
|
|
2281
|
+
/**
|
|
2282
|
+
*
|
|
2283
|
+
* @type {string}
|
|
2284
|
+
* @memberof InstallFromFileV1Response
|
|
2285
|
+
*/
|
|
2286
|
+
'schemaId': string;
|
|
2287
|
+
/**
|
|
2288
|
+
*
|
|
2289
|
+
* @type {string}
|
|
2290
|
+
* @memberof InstallFromFileV1Response
|
|
2291
|
+
*/
|
|
2292
|
+
'schemaName': string;
|
|
2293
|
+
/**
|
|
2294
|
+
*
|
|
2295
|
+
* @type {string}
|
|
2296
|
+
* @memberof InstallFromFileV1Response
|
|
2297
|
+
*/
|
|
2298
|
+
'schemaVariantId': string;
|
|
2299
|
+
}
|
|
2110
2300
|
/**
|
|
2111
2301
|
*
|
|
2112
2302
|
* @export
|
|
@@ -2261,6 +2451,25 @@ export interface ManagementFunctionReferenceOneOf1 {
|
|
|
2261
2451
|
*/
|
|
2262
2452
|
'managementPrototypeId': string;
|
|
2263
2453
|
}
|
|
2454
|
+
/**
|
|
2455
|
+
*
|
|
2456
|
+
* @export
|
|
2457
|
+
* @interface ManagementRelationshipV1
|
|
2458
|
+
*/
|
|
2459
|
+
export interface ManagementRelationshipV1 {
|
|
2460
|
+
/**
|
|
2461
|
+
*
|
|
2462
|
+
* @type {string}
|
|
2463
|
+
* @memberof ManagementRelationshipV1
|
|
2464
|
+
*/
|
|
2465
|
+
'toComponentId': string;
|
|
2466
|
+
/**
|
|
2467
|
+
*
|
|
2468
|
+
* @type {string}
|
|
2469
|
+
* @memberof ManagementRelationshipV1
|
|
2470
|
+
*/
|
|
2471
|
+
'toComponentName': string;
|
|
2472
|
+
}
|
|
2264
2473
|
/**
|
|
2265
2474
|
*
|
|
2266
2475
|
* @export
|
|
@@ -2934,6 +3143,43 @@ export interface SourceViewV1 {
|
|
|
2934
3143
|
*/
|
|
2935
3144
|
'propPath': string;
|
|
2936
3145
|
}
|
|
3146
|
+
/**
|
|
3147
|
+
*
|
|
3148
|
+
* @export
|
|
3149
|
+
* @interface SubscriptionRelationshipV1
|
|
3150
|
+
*/
|
|
3151
|
+
export interface SubscriptionRelationshipV1 {
|
|
3152
|
+
/**
|
|
3153
|
+
*
|
|
3154
|
+
* @type {any}
|
|
3155
|
+
* @memberof SubscriptionRelationshipV1
|
|
3156
|
+
*/
|
|
3157
|
+
'currentValue'?: any;
|
|
3158
|
+
/**
|
|
3159
|
+
*
|
|
3160
|
+
* @type {string}
|
|
3161
|
+
* @memberof SubscriptionRelationshipV1
|
|
3162
|
+
*/
|
|
3163
|
+
'fromPath': string;
|
|
3164
|
+
/**
|
|
3165
|
+
*
|
|
3166
|
+
* @type {string}
|
|
3167
|
+
* @memberof SubscriptionRelationshipV1
|
|
3168
|
+
*/
|
|
3169
|
+
'toComponentId': string;
|
|
3170
|
+
/**
|
|
3171
|
+
*
|
|
3172
|
+
* @type {string}
|
|
3173
|
+
* @memberof SubscriptionRelationshipV1
|
|
3174
|
+
*/
|
|
3175
|
+
'toComponentName': string;
|
|
3176
|
+
/**
|
|
3177
|
+
*
|
|
3178
|
+
* @type {string}
|
|
3179
|
+
* @memberof SubscriptionRelationshipV1
|
|
3180
|
+
*/
|
|
3181
|
+
'toPath': string;
|
|
3182
|
+
}
|
|
2937
3183
|
/**
|
|
2938
3184
|
*
|
|
2939
3185
|
* @export
|
|
@@ -3230,6 +3476,50 @@ export interface UpgradeComponentV1Response {
|
|
|
3230
3476
|
*/
|
|
3231
3477
|
'component': ComponentViewV1;
|
|
3232
3478
|
}
|
|
3479
|
+
/**
|
|
3480
|
+
* The request payload for uploading a policy report
|
|
3481
|
+
* @export
|
|
3482
|
+
* @interface UploadPolicyReportV1Request
|
|
3483
|
+
*/
|
|
3484
|
+
export interface UploadPolicyReportV1Request {
|
|
3485
|
+
/**
|
|
3486
|
+
* The unique name of the policy report.
|
|
3487
|
+
* @type {string}
|
|
3488
|
+
* @memberof UploadPolicyReportV1Request
|
|
3489
|
+
*/
|
|
3490
|
+
'name': string;
|
|
3491
|
+
/**
|
|
3492
|
+
* The policy document that was used for evaluation.
|
|
3493
|
+
* @type {string}
|
|
3494
|
+
* @memberof UploadPolicyReportV1Request
|
|
3495
|
+
*/
|
|
3496
|
+
'policy': string;
|
|
3497
|
+
/**
|
|
3498
|
+
* The contents of the report.
|
|
3499
|
+
* @type {string}
|
|
3500
|
+
* @memberof UploadPolicyReportV1Request
|
|
3501
|
+
*/
|
|
3502
|
+
'report': string;
|
|
3503
|
+
/**
|
|
3504
|
+
* Whether the policy check passed or failed.
|
|
3505
|
+
* @type {string}
|
|
3506
|
+
* @memberof UploadPolicyReportV1Request
|
|
3507
|
+
*/
|
|
3508
|
+
'result': string;
|
|
3509
|
+
}
|
|
3510
|
+
/**
|
|
3511
|
+
* The response payload after uploading a policy report.
|
|
3512
|
+
* @export
|
|
3513
|
+
* @interface UploadPolicyReportV1Response
|
|
3514
|
+
*/
|
|
3515
|
+
export interface UploadPolicyReportV1Response {
|
|
3516
|
+
/**
|
|
3517
|
+
* The ID of the created policy report.
|
|
3518
|
+
* @type {string}
|
|
3519
|
+
* @memberof UploadPolicyReportV1Response
|
|
3520
|
+
*/
|
|
3521
|
+
'id': string;
|
|
3522
|
+
}
|
|
3233
3523
|
/**
|
|
3234
3524
|
*
|
|
3235
3525
|
* @export
|
|
@@ -4330,10 +4620,20 @@ export declare const ComponentsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
4330
4620
|
* @param {string} [limit] Maximum number of results to return (default: 50, max: 300)
|
|
4331
4621
|
* @param {string} [cursor] Cursor for pagination (ComponentId of the last item from previous page)
|
|
4332
4622
|
* @param {boolean} [includeCodegen] Allow returning the codegen for the cloudformation template for the component (if it exists)
|
|
4623
|
+
* @param {boolean} [includeAll] Include all graph summary data (equivalent to enabling all include options)
|
|
4624
|
+
* @param {boolean} [includeFunctions] Include all function types (action, management, qualification)
|
|
4625
|
+
* @param {boolean} [includeSubscriptions] Include subscription relationships
|
|
4626
|
+
* @param {boolean} [includeManages] Include management relationships
|
|
4627
|
+
* @param {boolean} [includeActionFunctions] Include action function relationships
|
|
4628
|
+
* @param {boolean} [includeManagementFunctions] Include management function relationships
|
|
4629
|
+
* @param {boolean} [includeQualificationFunctions] Include qualification function relationships
|
|
4630
|
+
* @param {boolean} [includeResourceInfo] Include resource information (resource ID and status)
|
|
4631
|
+
* @param {boolean} [includeDiffStatus] Include component diff status vs HEAD (Added/Modified/None)
|
|
4632
|
+
* @param {boolean} [includeExecutionHistory] Include last 10 execution history entries for each function
|
|
4333
4633
|
* @param {*} [options] Override http request option.
|
|
4334
4634
|
* @throws {RequiredError}
|
|
4335
4635
|
*/
|
|
4336
|
-
listComponents: (workspaceId: string, changeSetId: string, limit?: string, cursor?: string, includeCodegen?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4636
|
+
listComponents: (workspaceId: string, changeSetId: string, limit?: string, cursor?: string, includeCodegen?: boolean, includeAll?: boolean, includeFunctions?: boolean, includeSubscriptions?: boolean, includeManages?: boolean, includeActionFunctions?: boolean, includeManagementFunctions?: boolean, includeQualificationFunctions?: boolean, includeResourceInfo?: boolean, includeDiffStatus?: boolean, includeExecutionHistory?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4337
4637
|
/**
|
|
4338
4638
|
*
|
|
4339
4639
|
* @summary Putting a component under the management of another component
|
|
@@ -4503,10 +4803,20 @@ export declare const ComponentsApiFp: (configuration?: Configuration) => {
|
|
|
4503
4803
|
* @param {string} [limit] Maximum number of results to return (default: 50, max: 300)
|
|
4504
4804
|
* @param {string} [cursor] Cursor for pagination (ComponentId of the last item from previous page)
|
|
4505
4805
|
* @param {boolean} [includeCodegen] Allow returning the codegen for the cloudformation template for the component (if it exists)
|
|
4806
|
+
* @param {boolean} [includeAll] Include all graph summary data (equivalent to enabling all include options)
|
|
4807
|
+
* @param {boolean} [includeFunctions] Include all function types (action, management, qualification)
|
|
4808
|
+
* @param {boolean} [includeSubscriptions] Include subscription relationships
|
|
4809
|
+
* @param {boolean} [includeManages] Include management relationships
|
|
4810
|
+
* @param {boolean} [includeActionFunctions] Include action function relationships
|
|
4811
|
+
* @param {boolean} [includeManagementFunctions] Include management function relationships
|
|
4812
|
+
* @param {boolean} [includeQualificationFunctions] Include qualification function relationships
|
|
4813
|
+
* @param {boolean} [includeResourceInfo] Include resource information (resource ID and status)
|
|
4814
|
+
* @param {boolean} [includeDiffStatus] Include component diff status vs HEAD (Added/Modified/None)
|
|
4815
|
+
* @param {boolean} [includeExecutionHistory] Include last 10 execution history entries for each function
|
|
4506
4816
|
* @param {*} [options] Override http request option.
|
|
4507
4817
|
* @throws {RequiredError}
|
|
4508
4818
|
*/
|
|
4509
|
-
listComponents(workspaceId: string, changeSetId: string, limit?: string, cursor?: string, includeCodegen?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListComponentsV1Response>>;
|
|
4819
|
+
listComponents(workspaceId: string, changeSetId: string, limit?: string, cursor?: string, includeCodegen?: boolean, includeAll?: boolean, includeFunctions?: boolean, includeSubscriptions?: boolean, includeManages?: boolean, includeActionFunctions?: boolean, includeManagementFunctions?: boolean, includeQualificationFunctions?: boolean, includeResourceInfo?: boolean, includeDiffStatus?: boolean, includeExecutionHistory?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListComponentsV1Response>>;
|
|
4510
4820
|
/**
|
|
4511
4821
|
*
|
|
4512
4822
|
* @summary Putting a component under the management of another component
|
|
@@ -5149,6 +5459,66 @@ export interface ComponentsApiListComponentsRequest {
|
|
|
5149
5459
|
* @memberof ComponentsApiListComponents
|
|
5150
5460
|
*/
|
|
5151
5461
|
readonly includeCodegen?: boolean;
|
|
5462
|
+
/**
|
|
5463
|
+
* Include all graph summary data (equivalent to enabling all include options)
|
|
5464
|
+
* @type {boolean}
|
|
5465
|
+
* @memberof ComponentsApiListComponents
|
|
5466
|
+
*/
|
|
5467
|
+
readonly includeAll?: boolean;
|
|
5468
|
+
/**
|
|
5469
|
+
* Include all function types (action, management, qualification)
|
|
5470
|
+
* @type {boolean}
|
|
5471
|
+
* @memberof ComponentsApiListComponents
|
|
5472
|
+
*/
|
|
5473
|
+
readonly includeFunctions?: boolean;
|
|
5474
|
+
/**
|
|
5475
|
+
* Include subscription relationships
|
|
5476
|
+
* @type {boolean}
|
|
5477
|
+
* @memberof ComponentsApiListComponents
|
|
5478
|
+
*/
|
|
5479
|
+
readonly includeSubscriptions?: boolean;
|
|
5480
|
+
/**
|
|
5481
|
+
* Include management relationships
|
|
5482
|
+
* @type {boolean}
|
|
5483
|
+
* @memberof ComponentsApiListComponents
|
|
5484
|
+
*/
|
|
5485
|
+
readonly includeManages?: boolean;
|
|
5486
|
+
/**
|
|
5487
|
+
* Include action function relationships
|
|
5488
|
+
* @type {boolean}
|
|
5489
|
+
* @memberof ComponentsApiListComponents
|
|
5490
|
+
*/
|
|
5491
|
+
readonly includeActionFunctions?: boolean;
|
|
5492
|
+
/**
|
|
5493
|
+
* Include management function relationships
|
|
5494
|
+
* @type {boolean}
|
|
5495
|
+
* @memberof ComponentsApiListComponents
|
|
5496
|
+
*/
|
|
5497
|
+
readonly includeManagementFunctions?: boolean;
|
|
5498
|
+
/**
|
|
5499
|
+
* Include qualification function relationships
|
|
5500
|
+
* @type {boolean}
|
|
5501
|
+
* @memberof ComponentsApiListComponents
|
|
5502
|
+
*/
|
|
5503
|
+
readonly includeQualificationFunctions?: boolean;
|
|
5504
|
+
/**
|
|
5505
|
+
* Include resource information (resource ID and status)
|
|
5506
|
+
* @type {boolean}
|
|
5507
|
+
* @memberof ComponentsApiListComponents
|
|
5508
|
+
*/
|
|
5509
|
+
readonly includeResourceInfo?: boolean;
|
|
5510
|
+
/**
|
|
5511
|
+
* Include component diff status vs HEAD (Added/Modified/None)
|
|
5512
|
+
* @type {boolean}
|
|
5513
|
+
* @memberof ComponentsApiListComponents
|
|
5514
|
+
*/
|
|
5515
|
+
readonly includeDiffStatus?: boolean;
|
|
5516
|
+
/**
|
|
5517
|
+
* Include last 10 execution history entries for each function
|
|
5518
|
+
* @type {boolean}
|
|
5519
|
+
* @memberof ComponentsApiListComponents
|
|
5520
|
+
*/
|
|
5521
|
+
readonly includeExecutionHistory?: boolean;
|
|
5152
5522
|
}
|
|
5153
5523
|
/**
|
|
5154
5524
|
* Request parameters for manageComponent operation in ComponentsApi.
|
|
@@ -6122,6 +6492,110 @@ export declare class ManagementFuncsApi extends BaseAPI implements ManagementFun
|
|
|
6122
6492
|
*/
|
|
6123
6493
|
getManagementFuncRunState(requestParameters: ManagementFuncsApiGetManagementFuncRunStateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetManagementFuncJobStateV1Response, any, {}>>;
|
|
6124
6494
|
}
|
|
6495
|
+
/**
|
|
6496
|
+
* PolicyReportsApi - axios parameter creator
|
|
6497
|
+
* @export
|
|
6498
|
+
*/
|
|
6499
|
+
export declare const PolicyReportsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6500
|
+
/**
|
|
6501
|
+
*
|
|
6502
|
+
* @summary Upload a policy report
|
|
6503
|
+
* @param {string} workspaceId Workspace identifier
|
|
6504
|
+
* @param {string} changeSetId Change Set identifier
|
|
6505
|
+
* @param {UploadPolicyReportV1Request} uploadPolicyReportV1Request
|
|
6506
|
+
* @param {*} [options] Override http request option.
|
|
6507
|
+
* @throws {RequiredError}
|
|
6508
|
+
*/
|
|
6509
|
+
uploadPolicyReport: (workspaceId: string, changeSetId: string, uploadPolicyReportV1Request: UploadPolicyReportV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6510
|
+
};
|
|
6511
|
+
/**
|
|
6512
|
+
* PolicyReportsApi - functional programming interface
|
|
6513
|
+
* @export
|
|
6514
|
+
*/
|
|
6515
|
+
export declare const PolicyReportsApiFp: (configuration?: Configuration) => {
|
|
6516
|
+
/**
|
|
6517
|
+
*
|
|
6518
|
+
* @summary Upload a policy report
|
|
6519
|
+
* @param {string} workspaceId Workspace identifier
|
|
6520
|
+
* @param {string} changeSetId Change Set identifier
|
|
6521
|
+
* @param {UploadPolicyReportV1Request} uploadPolicyReportV1Request
|
|
6522
|
+
* @param {*} [options] Override http request option.
|
|
6523
|
+
* @throws {RequiredError}
|
|
6524
|
+
*/
|
|
6525
|
+
uploadPolicyReport(workspaceId: string, changeSetId: string, uploadPolicyReportV1Request: UploadPolicyReportV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UploadPolicyReportV1Response>>;
|
|
6526
|
+
};
|
|
6527
|
+
/**
|
|
6528
|
+
* PolicyReportsApi - factory interface
|
|
6529
|
+
* @export
|
|
6530
|
+
*/
|
|
6531
|
+
export declare const PolicyReportsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6532
|
+
/**
|
|
6533
|
+
*
|
|
6534
|
+
* @summary Upload a policy report
|
|
6535
|
+
* @param {PolicyReportsApiUploadPolicyReportRequest} requestParameters Request parameters.
|
|
6536
|
+
* @param {*} [options] Override http request option.
|
|
6537
|
+
* @throws {RequiredError}
|
|
6538
|
+
*/
|
|
6539
|
+
uploadPolicyReport(requestParameters: PolicyReportsApiUploadPolicyReportRequest, options?: RawAxiosRequestConfig): AxiosPromise<UploadPolicyReportV1Response>;
|
|
6540
|
+
};
|
|
6541
|
+
/**
|
|
6542
|
+
* PolicyReportsApi - interface
|
|
6543
|
+
* @export
|
|
6544
|
+
* @interface PolicyReportsApi
|
|
6545
|
+
*/
|
|
6546
|
+
export interface PolicyReportsApiInterface {
|
|
6547
|
+
/**
|
|
6548
|
+
*
|
|
6549
|
+
* @summary Upload a policy report
|
|
6550
|
+
* @param {PolicyReportsApiUploadPolicyReportRequest} requestParameters Request parameters.
|
|
6551
|
+
* @param {*} [options] Override http request option.
|
|
6552
|
+
* @throws {RequiredError}
|
|
6553
|
+
* @memberof PolicyReportsApiInterface
|
|
6554
|
+
*/
|
|
6555
|
+
uploadPolicyReport(requestParameters: PolicyReportsApiUploadPolicyReportRequest, options?: RawAxiosRequestConfig): AxiosPromise<UploadPolicyReportV1Response>;
|
|
6556
|
+
}
|
|
6557
|
+
/**
|
|
6558
|
+
* Request parameters for uploadPolicyReport operation in PolicyReportsApi.
|
|
6559
|
+
* @export
|
|
6560
|
+
* @interface PolicyReportsApiUploadPolicyReportRequest
|
|
6561
|
+
*/
|
|
6562
|
+
export interface PolicyReportsApiUploadPolicyReportRequest {
|
|
6563
|
+
/**
|
|
6564
|
+
* Workspace identifier
|
|
6565
|
+
* @type {string}
|
|
6566
|
+
* @memberof PolicyReportsApiUploadPolicyReport
|
|
6567
|
+
*/
|
|
6568
|
+
readonly workspaceId: string;
|
|
6569
|
+
/**
|
|
6570
|
+
* Change Set identifier
|
|
6571
|
+
* @type {string}
|
|
6572
|
+
* @memberof PolicyReportsApiUploadPolicyReport
|
|
6573
|
+
*/
|
|
6574
|
+
readonly changeSetId: string;
|
|
6575
|
+
/**
|
|
6576
|
+
*
|
|
6577
|
+
* @type {UploadPolicyReportV1Request}
|
|
6578
|
+
* @memberof PolicyReportsApiUploadPolicyReport
|
|
6579
|
+
*/
|
|
6580
|
+
readonly uploadPolicyReportV1Request: UploadPolicyReportV1Request;
|
|
6581
|
+
}
|
|
6582
|
+
/**
|
|
6583
|
+
* PolicyReportsApi - object-oriented interface
|
|
6584
|
+
* @export
|
|
6585
|
+
* @class PolicyReportsApi
|
|
6586
|
+
* @extends {BaseAPI}
|
|
6587
|
+
*/
|
|
6588
|
+
export declare class PolicyReportsApi extends BaseAPI implements PolicyReportsApiInterface {
|
|
6589
|
+
/**
|
|
6590
|
+
*
|
|
6591
|
+
* @summary Upload a policy report
|
|
6592
|
+
* @param {PolicyReportsApiUploadPolicyReportRequest} requestParameters Request parameters.
|
|
6593
|
+
* @param {*} [options] Override http request option.
|
|
6594
|
+
* @throws {RequiredError}
|
|
6595
|
+
* @memberof PolicyReportsApi
|
|
6596
|
+
*/
|
|
6597
|
+
uploadPolicyReport(requestParameters: PolicyReportsApiUploadPolicyReportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UploadPolicyReportV1Response, any, {}>>;
|
|
6598
|
+
}
|
|
6125
6599
|
/**
|
|
6126
6600
|
* RootApi - axios parameter creator
|
|
6127
6601
|
* @export
|
|
@@ -6398,6 +6872,15 @@ export declare const SchemasApiAxiosParamCreator: (configuration?: Configuration
|
|
|
6398
6872
|
* @throws {RequiredError}
|
|
6399
6873
|
*/
|
|
6400
6874
|
getVariant: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6875
|
+
/**
|
|
6876
|
+
* Accepts a multipart form with a `pkg_spec` field containing the JSON PkgSpec. If the schema already exists, it will be upgraded with the new variant.
|
|
6877
|
+
* @summary Install a schema from a PkgSpec file
|
|
6878
|
+
* @param {string} workspaceId Workspace identifier
|
|
6879
|
+
* @param {string} changeSetId Change Set identifier
|
|
6880
|
+
* @param {*} [options] Override http request option.
|
|
6881
|
+
* @throws {RequiredError}
|
|
6882
|
+
*/
|
|
6883
|
+
installFromFile: (workspaceId: string, changeSetId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6401
6884
|
/**
|
|
6402
6885
|
*
|
|
6403
6886
|
* @summary Installs a schema - if there\'s an installed schema, it will return that schema detail
|
|
@@ -6663,6 +7146,15 @@ export declare const SchemasApiFp: (configuration?: Configuration) => {
|
|
|
6663
7146
|
* @throws {RequiredError}
|
|
6664
7147
|
*/
|
|
6665
7148
|
getVariant(workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSchemaVariantV1Response>>;
|
|
7149
|
+
/**
|
|
7150
|
+
* Accepts a multipart form with a `pkg_spec` field containing the JSON PkgSpec. If the schema already exists, it will be upgraded with the new variant.
|
|
7151
|
+
* @summary Install a schema from a PkgSpec file
|
|
7152
|
+
* @param {string} workspaceId Workspace identifier
|
|
7153
|
+
* @param {string} changeSetId Change Set identifier
|
|
7154
|
+
* @param {*} [options] Override http request option.
|
|
7155
|
+
* @throws {RequiredError}
|
|
7156
|
+
*/
|
|
7157
|
+
installFromFile(workspaceId: string, changeSetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InstallFromFileV1Response>>;
|
|
6666
7158
|
/**
|
|
6667
7159
|
*
|
|
6668
7160
|
* @summary Installs a schema - if there\'s an installed schema, it will return that schema detail
|
|
@@ -6866,6 +7358,14 @@ export declare const SchemasApiFactory: (configuration?: Configuration, basePath
|
|
|
6866
7358
|
* @throws {RequiredError}
|
|
6867
7359
|
*/
|
|
6868
7360
|
getVariant(requestParameters: SchemasApiGetVariantRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaVariantV1Response>;
|
|
7361
|
+
/**
|
|
7362
|
+
* Accepts a multipart form with a `pkg_spec` field containing the JSON PkgSpec. If the schema already exists, it will be upgraded with the new variant.
|
|
7363
|
+
* @summary Install a schema from a PkgSpec file
|
|
7364
|
+
* @param {SchemasApiInstallFromFileRequest} requestParameters Request parameters.
|
|
7365
|
+
* @param {*} [options] Override http request option.
|
|
7366
|
+
* @throws {RequiredError}
|
|
7367
|
+
*/
|
|
7368
|
+
installFromFile(requestParameters: SchemasApiInstallFromFileRequest, options?: RawAxiosRequestConfig): AxiosPromise<InstallFromFileV1Response>;
|
|
6869
7369
|
/**
|
|
6870
7370
|
*
|
|
6871
7371
|
* @summary Installs a schema - if there\'s an installed schema, it will return that schema detail
|
|
@@ -7075,6 +7575,15 @@ export interface SchemasApiInterface {
|
|
|
7075
7575
|
* @memberof SchemasApiInterface
|
|
7076
7576
|
*/
|
|
7077
7577
|
getVariant(requestParameters: SchemasApiGetVariantRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaVariantV1Response>;
|
|
7578
|
+
/**
|
|
7579
|
+
* Accepts a multipart form with a `pkg_spec` field containing the JSON PkgSpec. If the schema already exists, it will be upgraded with the new variant.
|
|
7580
|
+
* @summary Install a schema from a PkgSpec file
|
|
7581
|
+
* @param {SchemasApiInstallFromFileRequest} requestParameters Request parameters.
|
|
7582
|
+
* @param {*} [options] Override http request option.
|
|
7583
|
+
* @throws {RequiredError}
|
|
7584
|
+
* @memberof SchemasApiInterface
|
|
7585
|
+
*/
|
|
7586
|
+
installFromFile(requestParameters: SchemasApiInstallFromFileRequest, options?: RawAxiosRequestConfig): AxiosPromise<InstallFromFileV1Response>;
|
|
7078
7587
|
/**
|
|
7079
7588
|
*
|
|
7080
7589
|
* @summary Installs a schema - if there\'s an installed schema, it will return that schema detail
|
|
@@ -7727,6 +8236,25 @@ export interface SchemasApiGetVariantRequest {
|
|
|
7727
8236
|
*/
|
|
7728
8237
|
readonly schemaVariantId: string;
|
|
7729
8238
|
}
|
|
8239
|
+
/**
|
|
8240
|
+
* Request parameters for installFromFile operation in SchemasApi.
|
|
8241
|
+
* @export
|
|
8242
|
+
* @interface SchemasApiInstallFromFileRequest
|
|
8243
|
+
*/
|
|
8244
|
+
export interface SchemasApiInstallFromFileRequest {
|
|
8245
|
+
/**
|
|
8246
|
+
* Workspace identifier
|
|
8247
|
+
* @type {string}
|
|
8248
|
+
* @memberof SchemasApiInstallFromFile
|
|
8249
|
+
*/
|
|
8250
|
+
readonly workspaceId: string;
|
|
8251
|
+
/**
|
|
8252
|
+
* Change Set identifier
|
|
8253
|
+
* @type {string}
|
|
8254
|
+
* @memberof SchemasApiInstallFromFile
|
|
8255
|
+
*/
|
|
8256
|
+
readonly changeSetId: string;
|
|
8257
|
+
}
|
|
7730
8258
|
/**
|
|
7731
8259
|
* Request parameters for installSchema operation in SchemasApi.
|
|
7732
8260
|
* @export
|
|
@@ -8039,6 +8567,15 @@ export declare class SchemasApi extends BaseAPI implements SchemasApiInterface {
|
|
|
8039
8567
|
* @memberof SchemasApi
|
|
8040
8568
|
*/
|
|
8041
8569
|
getVariant(requestParameters: SchemasApiGetVariantRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetSchemaVariantV1Response, any, {}>>;
|
|
8570
|
+
/**
|
|
8571
|
+
* Accepts a multipart form with a `pkg_spec` field containing the JSON PkgSpec. If the schema already exists, it will be upgraded with the new variant.
|
|
8572
|
+
* @summary Install a schema from a PkgSpec file
|
|
8573
|
+
* @param {SchemasApiInstallFromFileRequest} requestParameters Request parameters.
|
|
8574
|
+
* @param {*} [options] Override http request option.
|
|
8575
|
+
* @throws {RequiredError}
|
|
8576
|
+
* @memberof SchemasApi
|
|
8577
|
+
*/
|
|
8578
|
+
installFromFile(requestParameters: SchemasApiInstallFromFileRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InstallFromFileV1Response, any, {}>>;
|
|
8042
8579
|
/**
|
|
8043
8580
|
*
|
|
8044
8581
|
* @summary Installs a schema - if there\'s an installed schema, it will return that schema detail
|