waldur-js-client 7.9.3-dev.2 → 7.9.3-dev.9
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/sdk.gen.d.ts +48 -13
- package/dist/sdk.gen.js +303 -46
- package/dist/types.gen.d.ts +1739 -72
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -14314,8 +14314,7 @@ export const marketplaceProviderOfferingsGroupsCount = (options) => {
|
|
|
14314
14314
|
});
|
|
14315
14315
|
};
|
|
14316
14316
|
/**
|
|
14317
|
-
* Import offering data
|
|
14318
|
-
* Imports an offering and all its connected parts from YAML format. Allows configuration of which components to import and how to handle conflicts.
|
|
14317
|
+
* Import offering data with configurable parameters.
|
|
14319
14318
|
*/
|
|
14320
14319
|
export const marketplaceProviderOfferingsImportOffering = (options) => {
|
|
14321
14320
|
return (options.client ?? _heyApiClient).post({
|
|
@@ -25278,50 +25277,6 @@ export const openstackTenantsCount = (options) => {
|
|
|
25278
25277
|
...options
|
|
25279
25278
|
});
|
|
25280
25279
|
};
|
|
25281
|
-
/**
|
|
25282
|
-
* Create tenant
|
|
25283
|
-
* Create a new OpenStack tenant.
|
|
25284
|
-
*/
|
|
25285
|
-
export const openstackTenantsCreate = (options) => {
|
|
25286
|
-
return (options.client ?? _heyApiClient).post({
|
|
25287
|
-
security: [
|
|
25288
|
-
{
|
|
25289
|
-
name: 'Authorization',
|
|
25290
|
-
type: 'apiKey'
|
|
25291
|
-
},
|
|
25292
|
-
{
|
|
25293
|
-
scheme: 'bearer',
|
|
25294
|
-
type: 'http'
|
|
25295
|
-
}
|
|
25296
|
-
],
|
|
25297
|
-
url: '/api/openstack-tenants/',
|
|
25298
|
-
...options,
|
|
25299
|
-
headers: {
|
|
25300
|
-
'Content-Type': 'application/json',
|
|
25301
|
-
...options.headers
|
|
25302
|
-
}
|
|
25303
|
-
});
|
|
25304
|
-
};
|
|
25305
|
-
/**
|
|
25306
|
-
* Delete tenant
|
|
25307
|
-
* Delete an OpenStack tenant and all its resources.
|
|
25308
|
-
*/
|
|
25309
|
-
export const openstackTenantsDestroy = (options) => {
|
|
25310
|
-
return (options.client ?? _heyApiClient).delete({
|
|
25311
|
-
security: [
|
|
25312
|
-
{
|
|
25313
|
-
name: 'Authorization',
|
|
25314
|
-
type: 'apiKey'
|
|
25315
|
-
},
|
|
25316
|
-
{
|
|
25317
|
-
scheme: 'bearer',
|
|
25318
|
-
type: 'http'
|
|
25319
|
-
}
|
|
25320
|
-
],
|
|
25321
|
-
url: '/api/openstack-tenants/{uuid}/',
|
|
25322
|
-
...options
|
|
25323
|
-
});
|
|
25324
|
-
};
|
|
25325
25280
|
/**
|
|
25326
25281
|
* Get tenant details
|
|
25327
25282
|
* Retrieve details of a specific OpenStack tenant.
|
|
@@ -33412,6 +33367,308 @@ export const syncIssues = (options) => {
|
|
|
33412
33367
|
...options
|
|
33413
33368
|
});
|
|
33414
33369
|
};
|
|
33370
|
+
export const userActionExecutionsList = (options) => {
|
|
33371
|
+
return (options?.client ?? _heyApiClient).get({
|
|
33372
|
+
security: [
|
|
33373
|
+
{
|
|
33374
|
+
name: 'Authorization',
|
|
33375
|
+
type: 'apiKey'
|
|
33376
|
+
},
|
|
33377
|
+
{
|
|
33378
|
+
scheme: 'bearer',
|
|
33379
|
+
type: 'http'
|
|
33380
|
+
}
|
|
33381
|
+
],
|
|
33382
|
+
url: '/api/user-action-executions/',
|
|
33383
|
+
...options
|
|
33384
|
+
});
|
|
33385
|
+
};
|
|
33386
|
+
/**
|
|
33387
|
+
* Get number of items in the collection matching the request parameters.
|
|
33388
|
+
*/
|
|
33389
|
+
export const userActionExecutionsCount = (options) => {
|
|
33390
|
+
return (options?.client ?? _heyApiClient).head({
|
|
33391
|
+
security: [
|
|
33392
|
+
{
|
|
33393
|
+
name: 'Authorization',
|
|
33394
|
+
type: 'apiKey'
|
|
33395
|
+
},
|
|
33396
|
+
{
|
|
33397
|
+
scheme: 'bearer',
|
|
33398
|
+
type: 'http'
|
|
33399
|
+
}
|
|
33400
|
+
],
|
|
33401
|
+
url: '/api/user-action-executions/',
|
|
33402
|
+
...options
|
|
33403
|
+
});
|
|
33404
|
+
};
|
|
33405
|
+
export const userActionExecutionsRetrieve = (options) => {
|
|
33406
|
+
return (options.client ?? _heyApiClient).get({
|
|
33407
|
+
security: [
|
|
33408
|
+
{
|
|
33409
|
+
name: 'Authorization',
|
|
33410
|
+
type: 'apiKey'
|
|
33411
|
+
},
|
|
33412
|
+
{
|
|
33413
|
+
scheme: 'bearer',
|
|
33414
|
+
type: 'http'
|
|
33415
|
+
}
|
|
33416
|
+
],
|
|
33417
|
+
url: '/api/user-action-executions/{id}/',
|
|
33418
|
+
...options
|
|
33419
|
+
});
|
|
33420
|
+
};
|
|
33421
|
+
export const userActionProvidersList = (options) => {
|
|
33422
|
+
return (options?.client ?? _heyApiClient).get({
|
|
33423
|
+
security: [
|
|
33424
|
+
{
|
|
33425
|
+
name: 'Authorization',
|
|
33426
|
+
type: 'apiKey'
|
|
33427
|
+
},
|
|
33428
|
+
{
|
|
33429
|
+
scheme: 'bearer',
|
|
33430
|
+
type: 'http'
|
|
33431
|
+
}
|
|
33432
|
+
],
|
|
33433
|
+
url: '/api/user-action-providers/',
|
|
33434
|
+
...options
|
|
33435
|
+
});
|
|
33436
|
+
};
|
|
33437
|
+
/**
|
|
33438
|
+
* Get number of items in the collection matching the request parameters.
|
|
33439
|
+
*/
|
|
33440
|
+
export const userActionProvidersCount = (options) => {
|
|
33441
|
+
return (options?.client ?? _heyApiClient).head({
|
|
33442
|
+
security: [
|
|
33443
|
+
{
|
|
33444
|
+
name: 'Authorization',
|
|
33445
|
+
type: 'apiKey'
|
|
33446
|
+
},
|
|
33447
|
+
{
|
|
33448
|
+
scheme: 'bearer',
|
|
33449
|
+
type: 'http'
|
|
33450
|
+
}
|
|
33451
|
+
],
|
|
33452
|
+
url: '/api/user-action-providers/',
|
|
33453
|
+
...options
|
|
33454
|
+
});
|
|
33455
|
+
};
|
|
33456
|
+
export const userActionProvidersRetrieve = (options) => {
|
|
33457
|
+
return (options.client ?? _heyApiClient).get({
|
|
33458
|
+
security: [
|
|
33459
|
+
{
|
|
33460
|
+
name: 'Authorization',
|
|
33461
|
+
type: 'apiKey'
|
|
33462
|
+
},
|
|
33463
|
+
{
|
|
33464
|
+
scheme: 'bearer',
|
|
33465
|
+
type: 'http'
|
|
33466
|
+
}
|
|
33467
|
+
],
|
|
33468
|
+
url: '/api/user-action-providers/{id}/',
|
|
33469
|
+
...options
|
|
33470
|
+
});
|
|
33471
|
+
};
|
|
33472
|
+
export const userActionsList = (options) => {
|
|
33473
|
+
return (options?.client ?? _heyApiClient).get({
|
|
33474
|
+
security: [
|
|
33475
|
+
{
|
|
33476
|
+
name: 'Authorization',
|
|
33477
|
+
type: 'apiKey'
|
|
33478
|
+
},
|
|
33479
|
+
{
|
|
33480
|
+
scheme: 'bearer',
|
|
33481
|
+
type: 'http'
|
|
33482
|
+
}
|
|
33483
|
+
],
|
|
33484
|
+
url: '/api/user-actions/',
|
|
33485
|
+
...options
|
|
33486
|
+
});
|
|
33487
|
+
};
|
|
33488
|
+
/**
|
|
33489
|
+
* Get number of items in the collection matching the request parameters.
|
|
33490
|
+
*/
|
|
33491
|
+
export const userActionsCount = (options) => {
|
|
33492
|
+
return (options?.client ?? _heyApiClient).head({
|
|
33493
|
+
security: [
|
|
33494
|
+
{
|
|
33495
|
+
name: 'Authorization',
|
|
33496
|
+
type: 'apiKey'
|
|
33497
|
+
},
|
|
33498
|
+
{
|
|
33499
|
+
scheme: 'bearer',
|
|
33500
|
+
type: 'http'
|
|
33501
|
+
}
|
|
33502
|
+
],
|
|
33503
|
+
url: '/api/user-actions/',
|
|
33504
|
+
...options
|
|
33505
|
+
});
|
|
33506
|
+
};
|
|
33507
|
+
export const userActionsRetrieve = (options) => {
|
|
33508
|
+
return (options.client ?? _heyApiClient).get({
|
|
33509
|
+
security: [
|
|
33510
|
+
{
|
|
33511
|
+
name: 'Authorization',
|
|
33512
|
+
type: 'apiKey'
|
|
33513
|
+
},
|
|
33514
|
+
{
|
|
33515
|
+
scheme: 'bearer',
|
|
33516
|
+
type: 'http'
|
|
33517
|
+
}
|
|
33518
|
+
],
|
|
33519
|
+
url: '/api/user-actions/{id}/',
|
|
33520
|
+
...options
|
|
33521
|
+
});
|
|
33522
|
+
};
|
|
33523
|
+
/**
|
|
33524
|
+
* Execute a corrective action
|
|
33525
|
+
*/
|
|
33526
|
+
export const userActionsExecuteAction = (options) => {
|
|
33527
|
+
return (options.client ?? _heyApiClient).post({
|
|
33528
|
+
security: [
|
|
33529
|
+
{
|
|
33530
|
+
name: 'Authorization',
|
|
33531
|
+
type: 'apiKey'
|
|
33532
|
+
},
|
|
33533
|
+
{
|
|
33534
|
+
scheme: 'bearer',
|
|
33535
|
+
type: 'http'
|
|
33536
|
+
}
|
|
33537
|
+
],
|
|
33538
|
+
url: '/api/user-actions/{id}/execute_action/',
|
|
33539
|
+
...options,
|
|
33540
|
+
headers: {
|
|
33541
|
+
'Content-Type': 'application/json',
|
|
33542
|
+
...options.headers
|
|
33543
|
+
}
|
|
33544
|
+
});
|
|
33545
|
+
};
|
|
33546
|
+
/**
|
|
33547
|
+
* Silence an action temporarily or permanently
|
|
33548
|
+
*/
|
|
33549
|
+
export const userActionsSilence = (options) => {
|
|
33550
|
+
return (options.client ?? _heyApiClient).post({
|
|
33551
|
+
security: [
|
|
33552
|
+
{
|
|
33553
|
+
name: 'Authorization',
|
|
33554
|
+
type: 'apiKey'
|
|
33555
|
+
},
|
|
33556
|
+
{
|
|
33557
|
+
scheme: 'bearer',
|
|
33558
|
+
type: 'http'
|
|
33559
|
+
}
|
|
33560
|
+
],
|
|
33561
|
+
url: '/api/user-actions/{id}/silence/',
|
|
33562
|
+
...options,
|
|
33563
|
+
headers: {
|
|
33564
|
+
'Content-Type': 'application/json',
|
|
33565
|
+
...options.headers
|
|
33566
|
+
}
|
|
33567
|
+
});
|
|
33568
|
+
};
|
|
33569
|
+
/**
|
|
33570
|
+
* Remove silence from an action
|
|
33571
|
+
*/
|
|
33572
|
+
export const userActionsUnsilence = (options) => {
|
|
33573
|
+
return (options.client ?? _heyApiClient).post({
|
|
33574
|
+
security: [
|
|
33575
|
+
{
|
|
33576
|
+
name: 'Authorization',
|
|
33577
|
+
type: 'apiKey'
|
|
33578
|
+
},
|
|
33579
|
+
{
|
|
33580
|
+
scheme: 'bearer',
|
|
33581
|
+
type: 'http'
|
|
33582
|
+
}
|
|
33583
|
+
],
|
|
33584
|
+
url: '/api/user-actions/{id}/unsilence/',
|
|
33585
|
+
...options
|
|
33586
|
+
});
|
|
33587
|
+
};
|
|
33588
|
+
/**
|
|
33589
|
+
* Bulk silence actions by filters
|
|
33590
|
+
*/
|
|
33591
|
+
export const userActionsBulkSilence = (options) => {
|
|
33592
|
+
return (options?.client ?? _heyApiClient).post({
|
|
33593
|
+
security: [
|
|
33594
|
+
{
|
|
33595
|
+
name: 'Authorization',
|
|
33596
|
+
type: 'apiKey'
|
|
33597
|
+
},
|
|
33598
|
+
{
|
|
33599
|
+
scheme: 'bearer',
|
|
33600
|
+
type: 'http'
|
|
33601
|
+
}
|
|
33602
|
+
],
|
|
33603
|
+
url: '/api/user-actions/bulk_silence/',
|
|
33604
|
+
...options,
|
|
33605
|
+
headers: {
|
|
33606
|
+
'Content-Type': 'application/json',
|
|
33607
|
+
...options?.headers
|
|
33608
|
+
}
|
|
33609
|
+
});
|
|
33610
|
+
};
|
|
33611
|
+
/**
|
|
33612
|
+
* Get action summary counts
|
|
33613
|
+
*/
|
|
33614
|
+
export const userActionsSummaryRetrieve = (options) => {
|
|
33615
|
+
return (options?.client ?? _heyApiClient).get({
|
|
33616
|
+
security: [
|
|
33617
|
+
{
|
|
33618
|
+
name: 'Authorization',
|
|
33619
|
+
type: 'apiKey'
|
|
33620
|
+
},
|
|
33621
|
+
{
|
|
33622
|
+
scheme: 'bearer',
|
|
33623
|
+
type: 'http'
|
|
33624
|
+
}
|
|
33625
|
+
],
|
|
33626
|
+
url: '/api/user-actions/summary/',
|
|
33627
|
+
...options
|
|
33628
|
+
});
|
|
33629
|
+
};
|
|
33630
|
+
/**
|
|
33631
|
+
* Get number of items in the collection matching the request parameters.
|
|
33632
|
+
*/
|
|
33633
|
+
export const userActionsSummaryCount = (options) => {
|
|
33634
|
+
return (options?.client ?? _heyApiClient).head({
|
|
33635
|
+
security: [
|
|
33636
|
+
{
|
|
33637
|
+
name: 'Authorization',
|
|
33638
|
+
type: 'apiKey'
|
|
33639
|
+
},
|
|
33640
|
+
{
|
|
33641
|
+
scheme: 'bearer',
|
|
33642
|
+
type: 'http'
|
|
33643
|
+
}
|
|
33644
|
+
],
|
|
33645
|
+
url: '/api/user-actions/summary/',
|
|
33646
|
+
...options
|
|
33647
|
+
});
|
|
33648
|
+
};
|
|
33649
|
+
/**
|
|
33650
|
+
* Trigger update of user actions (admin only)
|
|
33651
|
+
*/
|
|
33652
|
+
export const userActionsUpdateActions = (options) => {
|
|
33653
|
+
return (options?.client ?? _heyApiClient).post({
|
|
33654
|
+
security: [
|
|
33655
|
+
{
|
|
33656
|
+
name: 'Authorization',
|
|
33657
|
+
type: 'apiKey'
|
|
33658
|
+
},
|
|
33659
|
+
{
|
|
33660
|
+
scheme: 'bearer',
|
|
33661
|
+
type: 'http'
|
|
33662
|
+
}
|
|
33663
|
+
],
|
|
33664
|
+
url: '/api/user-actions/update_actions/',
|
|
33665
|
+
...options,
|
|
33666
|
+
headers: {
|
|
33667
|
+
'Content-Type': 'application/json',
|
|
33668
|
+
...options?.headers
|
|
33669
|
+
}
|
|
33670
|
+
});
|
|
33671
|
+
};
|
|
33415
33672
|
export const userAgreementsList = (options) => {
|
|
33416
33673
|
return (options?.client ?? _heyApiClient).get({
|
|
33417
33674
|
security: [
|