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