waldur-js-client 7.8.5-dev.16 → 7.8.5-dev.18
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 +77 -1
- package/dist/sdk.gen.js +634 -0
- package/dist/types.gen.d.ts +1301 -22
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -12436,6 +12436,52 @@ export const marketplaceProviderOfferingsAddEndpoint = (options) => {
|
|
|
12436
12436
|
}
|
|
12437
12437
|
});
|
|
12438
12438
|
};
|
|
12439
|
+
/**
|
|
12440
|
+
* Add SLURM partition configuration to offering.
|
|
12441
|
+
*/
|
|
12442
|
+
export const marketplaceProviderOfferingsAddPartition = (options) => {
|
|
12443
|
+
return (options.client ?? _heyApiClient).post({
|
|
12444
|
+
security: [
|
|
12445
|
+
{
|
|
12446
|
+
name: 'Authorization',
|
|
12447
|
+
type: 'apiKey'
|
|
12448
|
+
},
|
|
12449
|
+
{
|
|
12450
|
+
scheme: 'bearer',
|
|
12451
|
+
type: 'http'
|
|
12452
|
+
}
|
|
12453
|
+
],
|
|
12454
|
+
url: '/api/marketplace-provider-offerings/{uuid}/add_partition/',
|
|
12455
|
+
...options,
|
|
12456
|
+
headers: {
|
|
12457
|
+
'Content-Type': 'application/json',
|
|
12458
|
+
...options.headers
|
|
12459
|
+
}
|
|
12460
|
+
});
|
|
12461
|
+
};
|
|
12462
|
+
/**
|
|
12463
|
+
* Add software catalog to offering.
|
|
12464
|
+
*/
|
|
12465
|
+
export const marketplaceProviderOfferingsAddSoftwareCatalog = (options) => {
|
|
12466
|
+
return (options.client ?? _heyApiClient).post({
|
|
12467
|
+
security: [
|
|
12468
|
+
{
|
|
12469
|
+
name: 'Authorization',
|
|
12470
|
+
type: 'apiKey'
|
|
12471
|
+
},
|
|
12472
|
+
{
|
|
12473
|
+
scheme: 'bearer',
|
|
12474
|
+
type: 'http'
|
|
12475
|
+
}
|
|
12476
|
+
],
|
|
12477
|
+
url: '/api/marketplace-provider-offerings/{uuid}/add_software_catalog/',
|
|
12478
|
+
...options,
|
|
12479
|
+
headers: {
|
|
12480
|
+
'Content-Type': 'application/json',
|
|
12481
|
+
...options.headers
|
|
12482
|
+
}
|
|
12483
|
+
});
|
|
12484
|
+
};
|
|
12439
12485
|
export const marketplaceProviderOfferingsAddUser = (options) => {
|
|
12440
12486
|
return (options.client ?? _heyApiClient).post({
|
|
12441
12487
|
security: [
|
|
@@ -12933,6 +12979,52 @@ export const marketplaceProviderOfferingsRemoveOfferingComponent = (options) =>
|
|
|
12933
12979
|
}
|
|
12934
12980
|
});
|
|
12935
12981
|
};
|
|
12982
|
+
/**
|
|
12983
|
+
* Remove partition from offering.
|
|
12984
|
+
*/
|
|
12985
|
+
export const marketplaceProviderOfferingsRemovePartition = (options) => {
|
|
12986
|
+
return (options.client ?? _heyApiClient).post({
|
|
12987
|
+
security: [
|
|
12988
|
+
{
|
|
12989
|
+
name: 'Authorization',
|
|
12990
|
+
type: 'apiKey'
|
|
12991
|
+
},
|
|
12992
|
+
{
|
|
12993
|
+
scheme: 'bearer',
|
|
12994
|
+
type: 'http'
|
|
12995
|
+
}
|
|
12996
|
+
],
|
|
12997
|
+
url: '/api/marketplace-provider-offerings/{uuid}/remove_partition/',
|
|
12998
|
+
...options,
|
|
12999
|
+
headers: {
|
|
13000
|
+
'Content-Type': 'application/json',
|
|
13001
|
+
...options.headers
|
|
13002
|
+
}
|
|
13003
|
+
});
|
|
13004
|
+
};
|
|
13005
|
+
/**
|
|
13006
|
+
* Remove software catalog from offering.
|
|
13007
|
+
*/
|
|
13008
|
+
export const marketplaceProviderOfferingsRemoveSoftwareCatalog = (options) => {
|
|
13009
|
+
return (options.client ?? _heyApiClient).post({
|
|
13010
|
+
security: [
|
|
13011
|
+
{
|
|
13012
|
+
name: 'Authorization',
|
|
13013
|
+
type: 'apiKey'
|
|
13014
|
+
},
|
|
13015
|
+
{
|
|
13016
|
+
scheme: 'bearer',
|
|
13017
|
+
type: 'http'
|
|
13018
|
+
}
|
|
13019
|
+
],
|
|
13020
|
+
url: '/api/marketplace-provider-offerings/{uuid}/remove_software_catalog/',
|
|
13021
|
+
...options,
|
|
13022
|
+
headers: {
|
|
13023
|
+
'Content-Type': 'application/json',
|
|
13024
|
+
...options.headers
|
|
13025
|
+
}
|
|
13026
|
+
});
|
|
13027
|
+
};
|
|
12936
13028
|
export const marketplaceProviderOfferingsSetBackendMetadata = (options) => {
|
|
12937
13029
|
return (options.client ?? _heyApiClient).post({
|
|
12938
13030
|
security: [
|
|
@@ -13229,6 +13321,29 @@ export const marketplaceProviderOfferingsUpdateOverview = (options) => {
|
|
|
13229
13321
|
}
|
|
13230
13322
|
});
|
|
13231
13323
|
};
|
|
13324
|
+
/**
|
|
13325
|
+
* Update partition configuration for offering.
|
|
13326
|
+
*/
|
|
13327
|
+
export const marketplaceProviderOfferingsUpdatePartitionPartialUpdate = (options) => {
|
|
13328
|
+
return (options.client ?? _heyApiClient).patch({
|
|
13329
|
+
security: [
|
|
13330
|
+
{
|
|
13331
|
+
name: 'Authorization',
|
|
13332
|
+
type: 'apiKey'
|
|
13333
|
+
},
|
|
13334
|
+
{
|
|
13335
|
+
scheme: 'bearer',
|
|
13336
|
+
type: 'http'
|
|
13337
|
+
}
|
|
13338
|
+
],
|
|
13339
|
+
url: '/api/marketplace-provider-offerings/{uuid}/update_partition/',
|
|
13340
|
+
...options,
|
|
13341
|
+
headers: {
|
|
13342
|
+
'Content-Type': 'application/json',
|
|
13343
|
+
...options.headers
|
|
13344
|
+
}
|
|
13345
|
+
});
|
|
13346
|
+
};
|
|
13232
13347
|
export const marketplaceProviderOfferingsUpdateResourceOptions = (options) => {
|
|
13233
13348
|
return (options.client ?? _heyApiClient).post({
|
|
13234
13349
|
security: [
|
|
@@ -13249,6 +13364,29 @@ export const marketplaceProviderOfferingsUpdateResourceOptions = (options) => {
|
|
|
13249
13364
|
}
|
|
13250
13365
|
});
|
|
13251
13366
|
};
|
|
13367
|
+
/**
|
|
13368
|
+
* Update software catalog configuration for offering.
|
|
13369
|
+
*/
|
|
13370
|
+
export const marketplaceProviderOfferingsUpdateSoftwareCatalogPartialUpdate = (options) => {
|
|
13371
|
+
return (options.client ?? _heyApiClient).patch({
|
|
13372
|
+
security: [
|
|
13373
|
+
{
|
|
13374
|
+
name: 'Authorization',
|
|
13375
|
+
type: 'apiKey'
|
|
13376
|
+
},
|
|
13377
|
+
{
|
|
13378
|
+
scheme: 'bearer',
|
|
13379
|
+
type: 'http'
|
|
13380
|
+
}
|
|
13381
|
+
],
|
|
13382
|
+
url: '/api/marketplace-provider-offerings/{uuid}/update_software_catalog/',
|
|
13383
|
+
...options,
|
|
13384
|
+
headers: {
|
|
13385
|
+
'Content-Type': 'application/json',
|
|
13386
|
+
...options.headers
|
|
13387
|
+
}
|
|
13388
|
+
});
|
|
13389
|
+
};
|
|
13252
13390
|
/**
|
|
13253
13391
|
* Update offering thumbnail.
|
|
13254
13392
|
*/
|
|
@@ -16363,6 +16501,502 @@ export const marketplaceSiteAgentServicesSetStatistics = (options) => {
|
|
|
16363
16501
|
}
|
|
16364
16502
|
});
|
|
16365
16503
|
};
|
|
16504
|
+
/**
|
|
16505
|
+
* Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
16506
|
+
*/
|
|
16507
|
+
export const marketplaceSoftwareCatalogsList = (options) => {
|
|
16508
|
+
return (options?.client ?? _heyApiClient).get({
|
|
16509
|
+
security: [
|
|
16510
|
+
{
|
|
16511
|
+
name: 'Authorization',
|
|
16512
|
+
type: 'apiKey'
|
|
16513
|
+
},
|
|
16514
|
+
{
|
|
16515
|
+
scheme: 'bearer',
|
|
16516
|
+
type: 'http'
|
|
16517
|
+
}
|
|
16518
|
+
],
|
|
16519
|
+
url: '/api/marketplace-software-catalogs/',
|
|
16520
|
+
...options
|
|
16521
|
+
});
|
|
16522
|
+
};
|
|
16523
|
+
/**
|
|
16524
|
+
* Get number of items in the collection matching the request parameters.
|
|
16525
|
+
*/
|
|
16526
|
+
export const marketplaceSoftwareCatalogsCount = (options) => {
|
|
16527
|
+
return (options?.client ?? _heyApiClient).head({
|
|
16528
|
+
security: [
|
|
16529
|
+
{
|
|
16530
|
+
name: 'Authorization',
|
|
16531
|
+
type: 'apiKey'
|
|
16532
|
+
},
|
|
16533
|
+
{
|
|
16534
|
+
scheme: 'bearer',
|
|
16535
|
+
type: 'http'
|
|
16536
|
+
}
|
|
16537
|
+
],
|
|
16538
|
+
url: '/api/marketplace-software-catalogs/',
|
|
16539
|
+
...options
|
|
16540
|
+
});
|
|
16541
|
+
};
|
|
16542
|
+
export const marketplaceSoftwareCatalogsCreate = (options) => {
|
|
16543
|
+
return (options.client ?? _heyApiClient).post({
|
|
16544
|
+
security: [
|
|
16545
|
+
{
|
|
16546
|
+
name: 'Authorization',
|
|
16547
|
+
type: 'apiKey'
|
|
16548
|
+
},
|
|
16549
|
+
{
|
|
16550
|
+
scheme: 'bearer',
|
|
16551
|
+
type: 'http'
|
|
16552
|
+
}
|
|
16553
|
+
],
|
|
16554
|
+
url: '/api/marketplace-software-catalogs/',
|
|
16555
|
+
...options,
|
|
16556
|
+
headers: {
|
|
16557
|
+
'Content-Type': 'application/json',
|
|
16558
|
+
...options.headers
|
|
16559
|
+
}
|
|
16560
|
+
});
|
|
16561
|
+
};
|
|
16562
|
+
export const marketplaceSoftwareCatalogsDestroy = (options) => {
|
|
16563
|
+
return (options.client ?? _heyApiClient).delete({
|
|
16564
|
+
security: [
|
|
16565
|
+
{
|
|
16566
|
+
name: 'Authorization',
|
|
16567
|
+
type: 'apiKey'
|
|
16568
|
+
},
|
|
16569
|
+
{
|
|
16570
|
+
scheme: 'bearer',
|
|
16571
|
+
type: 'http'
|
|
16572
|
+
}
|
|
16573
|
+
],
|
|
16574
|
+
url: '/api/marketplace-software-catalogs/{uuid}/',
|
|
16575
|
+
...options
|
|
16576
|
+
});
|
|
16577
|
+
};
|
|
16578
|
+
export const marketplaceSoftwareCatalogsRetrieve = (options) => {
|
|
16579
|
+
return (options.client ?? _heyApiClient).get({
|
|
16580
|
+
security: [
|
|
16581
|
+
{
|
|
16582
|
+
name: 'Authorization',
|
|
16583
|
+
type: 'apiKey'
|
|
16584
|
+
},
|
|
16585
|
+
{
|
|
16586
|
+
scheme: 'bearer',
|
|
16587
|
+
type: 'http'
|
|
16588
|
+
}
|
|
16589
|
+
],
|
|
16590
|
+
url: '/api/marketplace-software-catalogs/{uuid}/',
|
|
16591
|
+
...options
|
|
16592
|
+
});
|
|
16593
|
+
};
|
|
16594
|
+
export const marketplaceSoftwareCatalogsPartialUpdate = (options) => {
|
|
16595
|
+
return (options.client ?? _heyApiClient).patch({
|
|
16596
|
+
security: [
|
|
16597
|
+
{
|
|
16598
|
+
name: 'Authorization',
|
|
16599
|
+
type: 'apiKey'
|
|
16600
|
+
},
|
|
16601
|
+
{
|
|
16602
|
+
scheme: 'bearer',
|
|
16603
|
+
type: 'http'
|
|
16604
|
+
}
|
|
16605
|
+
],
|
|
16606
|
+
url: '/api/marketplace-software-catalogs/{uuid}/',
|
|
16607
|
+
...options,
|
|
16608
|
+
headers: {
|
|
16609
|
+
'Content-Type': 'application/json',
|
|
16610
|
+
...options.headers
|
|
16611
|
+
}
|
|
16612
|
+
});
|
|
16613
|
+
};
|
|
16614
|
+
export const marketplaceSoftwareCatalogsUpdate = (options) => {
|
|
16615
|
+
return (options.client ?? _heyApiClient).put({
|
|
16616
|
+
security: [
|
|
16617
|
+
{
|
|
16618
|
+
name: 'Authorization',
|
|
16619
|
+
type: 'apiKey'
|
|
16620
|
+
},
|
|
16621
|
+
{
|
|
16622
|
+
scheme: 'bearer',
|
|
16623
|
+
type: 'http'
|
|
16624
|
+
}
|
|
16625
|
+
],
|
|
16626
|
+
url: '/api/marketplace-software-catalogs/{uuid}/',
|
|
16627
|
+
...options,
|
|
16628
|
+
headers: {
|
|
16629
|
+
'Content-Type': 'application/json',
|
|
16630
|
+
...options.headers
|
|
16631
|
+
}
|
|
16632
|
+
});
|
|
16633
|
+
};
|
|
16634
|
+
/**
|
|
16635
|
+
* Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
16636
|
+
*/
|
|
16637
|
+
export const marketplaceSoftwarePackagesList = (options) => {
|
|
16638
|
+
return (options?.client ?? _heyApiClient).get({
|
|
16639
|
+
security: [
|
|
16640
|
+
{
|
|
16641
|
+
name: 'Authorization',
|
|
16642
|
+
type: 'apiKey'
|
|
16643
|
+
},
|
|
16644
|
+
{
|
|
16645
|
+
scheme: 'bearer',
|
|
16646
|
+
type: 'http'
|
|
16647
|
+
}
|
|
16648
|
+
],
|
|
16649
|
+
url: '/api/marketplace-software-packages/',
|
|
16650
|
+
...options
|
|
16651
|
+
});
|
|
16652
|
+
};
|
|
16653
|
+
/**
|
|
16654
|
+
* Get number of items in the collection matching the request parameters.
|
|
16655
|
+
*/
|
|
16656
|
+
export const marketplaceSoftwarePackagesCount = (options) => {
|
|
16657
|
+
return (options?.client ?? _heyApiClient).head({
|
|
16658
|
+
security: [
|
|
16659
|
+
{
|
|
16660
|
+
name: 'Authorization',
|
|
16661
|
+
type: 'apiKey'
|
|
16662
|
+
},
|
|
16663
|
+
{
|
|
16664
|
+
scheme: 'bearer',
|
|
16665
|
+
type: 'http'
|
|
16666
|
+
}
|
|
16667
|
+
],
|
|
16668
|
+
url: '/api/marketplace-software-packages/',
|
|
16669
|
+
...options
|
|
16670
|
+
});
|
|
16671
|
+
};
|
|
16672
|
+
export const marketplaceSoftwarePackagesCreate = (options) => {
|
|
16673
|
+
return (options.client ?? _heyApiClient).post({
|
|
16674
|
+
security: [
|
|
16675
|
+
{
|
|
16676
|
+
name: 'Authorization',
|
|
16677
|
+
type: 'apiKey'
|
|
16678
|
+
},
|
|
16679
|
+
{
|
|
16680
|
+
scheme: 'bearer',
|
|
16681
|
+
type: 'http'
|
|
16682
|
+
}
|
|
16683
|
+
],
|
|
16684
|
+
url: '/api/marketplace-software-packages/',
|
|
16685
|
+
...options,
|
|
16686
|
+
headers: {
|
|
16687
|
+
'Content-Type': 'application/json',
|
|
16688
|
+
...options.headers
|
|
16689
|
+
}
|
|
16690
|
+
});
|
|
16691
|
+
};
|
|
16692
|
+
export const marketplaceSoftwarePackagesDestroy = (options) => {
|
|
16693
|
+
return (options.client ?? _heyApiClient).delete({
|
|
16694
|
+
security: [
|
|
16695
|
+
{
|
|
16696
|
+
name: 'Authorization',
|
|
16697
|
+
type: 'apiKey'
|
|
16698
|
+
},
|
|
16699
|
+
{
|
|
16700
|
+
scheme: 'bearer',
|
|
16701
|
+
type: 'http'
|
|
16702
|
+
}
|
|
16703
|
+
],
|
|
16704
|
+
url: '/api/marketplace-software-packages/{uuid}/',
|
|
16705
|
+
...options
|
|
16706
|
+
});
|
|
16707
|
+
};
|
|
16708
|
+
export const marketplaceSoftwarePackagesRetrieve = (options) => {
|
|
16709
|
+
return (options.client ?? _heyApiClient).get({
|
|
16710
|
+
security: [
|
|
16711
|
+
{
|
|
16712
|
+
name: 'Authorization',
|
|
16713
|
+
type: 'apiKey'
|
|
16714
|
+
},
|
|
16715
|
+
{
|
|
16716
|
+
scheme: 'bearer',
|
|
16717
|
+
type: 'http'
|
|
16718
|
+
}
|
|
16719
|
+
],
|
|
16720
|
+
url: '/api/marketplace-software-packages/{uuid}/',
|
|
16721
|
+
...options
|
|
16722
|
+
});
|
|
16723
|
+
};
|
|
16724
|
+
export const marketplaceSoftwarePackagesPartialUpdate = (options) => {
|
|
16725
|
+
return (options.client ?? _heyApiClient).patch({
|
|
16726
|
+
security: [
|
|
16727
|
+
{
|
|
16728
|
+
name: 'Authorization',
|
|
16729
|
+
type: 'apiKey'
|
|
16730
|
+
},
|
|
16731
|
+
{
|
|
16732
|
+
scheme: 'bearer',
|
|
16733
|
+
type: 'http'
|
|
16734
|
+
}
|
|
16735
|
+
],
|
|
16736
|
+
url: '/api/marketplace-software-packages/{uuid}/',
|
|
16737
|
+
...options,
|
|
16738
|
+
headers: {
|
|
16739
|
+
'Content-Type': 'application/json',
|
|
16740
|
+
...options.headers
|
|
16741
|
+
}
|
|
16742
|
+
});
|
|
16743
|
+
};
|
|
16744
|
+
export const marketplaceSoftwarePackagesUpdate = (options) => {
|
|
16745
|
+
return (options.client ?? _heyApiClient).put({
|
|
16746
|
+
security: [
|
|
16747
|
+
{
|
|
16748
|
+
name: 'Authorization',
|
|
16749
|
+
type: 'apiKey'
|
|
16750
|
+
},
|
|
16751
|
+
{
|
|
16752
|
+
scheme: 'bearer',
|
|
16753
|
+
type: 'http'
|
|
16754
|
+
}
|
|
16755
|
+
],
|
|
16756
|
+
url: '/api/marketplace-software-packages/{uuid}/',
|
|
16757
|
+
...options,
|
|
16758
|
+
headers: {
|
|
16759
|
+
'Content-Type': 'application/json',
|
|
16760
|
+
...options.headers
|
|
16761
|
+
}
|
|
16762
|
+
});
|
|
16763
|
+
};
|
|
16764
|
+
/**
|
|
16765
|
+
* Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
16766
|
+
*/
|
|
16767
|
+
export const marketplaceSoftwareTargetsList = (options) => {
|
|
16768
|
+
return (options?.client ?? _heyApiClient).get({
|
|
16769
|
+
security: [
|
|
16770
|
+
{
|
|
16771
|
+
name: 'Authorization',
|
|
16772
|
+
type: 'apiKey'
|
|
16773
|
+
},
|
|
16774
|
+
{
|
|
16775
|
+
scheme: 'bearer',
|
|
16776
|
+
type: 'http'
|
|
16777
|
+
}
|
|
16778
|
+
],
|
|
16779
|
+
url: '/api/marketplace-software-targets/',
|
|
16780
|
+
...options
|
|
16781
|
+
});
|
|
16782
|
+
};
|
|
16783
|
+
/**
|
|
16784
|
+
* Get number of items in the collection matching the request parameters.
|
|
16785
|
+
*/
|
|
16786
|
+
export const marketplaceSoftwareTargetsCount = (options) => {
|
|
16787
|
+
return (options?.client ?? _heyApiClient).head({
|
|
16788
|
+
security: [
|
|
16789
|
+
{
|
|
16790
|
+
name: 'Authorization',
|
|
16791
|
+
type: 'apiKey'
|
|
16792
|
+
},
|
|
16793
|
+
{
|
|
16794
|
+
scheme: 'bearer',
|
|
16795
|
+
type: 'http'
|
|
16796
|
+
}
|
|
16797
|
+
],
|
|
16798
|
+
url: '/api/marketplace-software-targets/',
|
|
16799
|
+
...options
|
|
16800
|
+
});
|
|
16801
|
+
};
|
|
16802
|
+
export const marketplaceSoftwareTargetsCreate = (options) => {
|
|
16803
|
+
return (options?.client ?? _heyApiClient).post({
|
|
16804
|
+
security: [
|
|
16805
|
+
{
|
|
16806
|
+
name: 'Authorization',
|
|
16807
|
+
type: 'apiKey'
|
|
16808
|
+
},
|
|
16809
|
+
{
|
|
16810
|
+
scheme: 'bearer',
|
|
16811
|
+
type: 'http'
|
|
16812
|
+
}
|
|
16813
|
+
],
|
|
16814
|
+
url: '/api/marketplace-software-targets/',
|
|
16815
|
+
...options
|
|
16816
|
+
});
|
|
16817
|
+
};
|
|
16818
|
+
export const marketplaceSoftwareTargetsDestroy = (options) => {
|
|
16819
|
+
return (options.client ?? _heyApiClient).delete({
|
|
16820
|
+
security: [
|
|
16821
|
+
{
|
|
16822
|
+
name: 'Authorization',
|
|
16823
|
+
type: 'apiKey'
|
|
16824
|
+
},
|
|
16825
|
+
{
|
|
16826
|
+
scheme: 'bearer',
|
|
16827
|
+
type: 'http'
|
|
16828
|
+
}
|
|
16829
|
+
],
|
|
16830
|
+
url: '/api/marketplace-software-targets/{uuid}/',
|
|
16831
|
+
...options
|
|
16832
|
+
});
|
|
16833
|
+
};
|
|
16834
|
+
export const marketplaceSoftwareTargetsRetrieve = (options) => {
|
|
16835
|
+
return (options.client ?? _heyApiClient).get({
|
|
16836
|
+
security: [
|
|
16837
|
+
{
|
|
16838
|
+
name: 'Authorization',
|
|
16839
|
+
type: 'apiKey'
|
|
16840
|
+
},
|
|
16841
|
+
{
|
|
16842
|
+
scheme: 'bearer',
|
|
16843
|
+
type: 'http'
|
|
16844
|
+
}
|
|
16845
|
+
],
|
|
16846
|
+
url: '/api/marketplace-software-targets/{uuid}/',
|
|
16847
|
+
...options
|
|
16848
|
+
});
|
|
16849
|
+
};
|
|
16850
|
+
export const marketplaceSoftwareTargetsPartialUpdate = (options) => {
|
|
16851
|
+
return (options.client ?? _heyApiClient).patch({
|
|
16852
|
+
security: [
|
|
16853
|
+
{
|
|
16854
|
+
name: 'Authorization',
|
|
16855
|
+
type: 'apiKey'
|
|
16856
|
+
},
|
|
16857
|
+
{
|
|
16858
|
+
scheme: 'bearer',
|
|
16859
|
+
type: 'http'
|
|
16860
|
+
}
|
|
16861
|
+
],
|
|
16862
|
+
url: '/api/marketplace-software-targets/{uuid}/',
|
|
16863
|
+
...options
|
|
16864
|
+
});
|
|
16865
|
+
};
|
|
16866
|
+
export const marketplaceSoftwareTargetsUpdate = (options) => {
|
|
16867
|
+
return (options.client ?? _heyApiClient).put({
|
|
16868
|
+
security: [
|
|
16869
|
+
{
|
|
16870
|
+
name: 'Authorization',
|
|
16871
|
+
type: 'apiKey'
|
|
16872
|
+
},
|
|
16873
|
+
{
|
|
16874
|
+
scheme: 'bearer',
|
|
16875
|
+
type: 'http'
|
|
16876
|
+
}
|
|
16877
|
+
],
|
|
16878
|
+
url: '/api/marketplace-software-targets/{uuid}/',
|
|
16879
|
+
...options
|
|
16880
|
+
});
|
|
16881
|
+
};
|
|
16882
|
+
/**
|
|
16883
|
+
* Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
16884
|
+
*/
|
|
16885
|
+
export const marketplaceSoftwareVersionsList = (options) => {
|
|
16886
|
+
return (options?.client ?? _heyApiClient).get({
|
|
16887
|
+
security: [
|
|
16888
|
+
{
|
|
16889
|
+
name: 'Authorization',
|
|
16890
|
+
type: 'apiKey'
|
|
16891
|
+
},
|
|
16892
|
+
{
|
|
16893
|
+
scheme: 'bearer',
|
|
16894
|
+
type: 'http'
|
|
16895
|
+
}
|
|
16896
|
+
],
|
|
16897
|
+
url: '/api/marketplace-software-versions/',
|
|
16898
|
+
...options
|
|
16899
|
+
});
|
|
16900
|
+
};
|
|
16901
|
+
/**
|
|
16902
|
+
* Get number of items in the collection matching the request parameters.
|
|
16903
|
+
*/
|
|
16904
|
+
export const marketplaceSoftwareVersionsCount = (options) => {
|
|
16905
|
+
return (options?.client ?? _heyApiClient).head({
|
|
16906
|
+
security: [
|
|
16907
|
+
{
|
|
16908
|
+
name: 'Authorization',
|
|
16909
|
+
type: 'apiKey'
|
|
16910
|
+
},
|
|
16911
|
+
{
|
|
16912
|
+
scheme: 'bearer',
|
|
16913
|
+
type: 'http'
|
|
16914
|
+
}
|
|
16915
|
+
],
|
|
16916
|
+
url: '/api/marketplace-software-versions/',
|
|
16917
|
+
...options
|
|
16918
|
+
});
|
|
16919
|
+
};
|
|
16920
|
+
export const marketplaceSoftwareVersionsCreate = (options) => {
|
|
16921
|
+
return (options?.client ?? _heyApiClient).post({
|
|
16922
|
+
security: [
|
|
16923
|
+
{
|
|
16924
|
+
name: 'Authorization',
|
|
16925
|
+
type: 'apiKey'
|
|
16926
|
+
},
|
|
16927
|
+
{
|
|
16928
|
+
scheme: 'bearer',
|
|
16929
|
+
type: 'http'
|
|
16930
|
+
}
|
|
16931
|
+
],
|
|
16932
|
+
url: '/api/marketplace-software-versions/',
|
|
16933
|
+
...options
|
|
16934
|
+
});
|
|
16935
|
+
};
|
|
16936
|
+
export const marketplaceSoftwareVersionsDestroy = (options) => {
|
|
16937
|
+
return (options.client ?? _heyApiClient).delete({
|
|
16938
|
+
security: [
|
|
16939
|
+
{
|
|
16940
|
+
name: 'Authorization',
|
|
16941
|
+
type: 'apiKey'
|
|
16942
|
+
},
|
|
16943
|
+
{
|
|
16944
|
+
scheme: 'bearer',
|
|
16945
|
+
type: 'http'
|
|
16946
|
+
}
|
|
16947
|
+
],
|
|
16948
|
+
url: '/api/marketplace-software-versions/{uuid}/',
|
|
16949
|
+
...options
|
|
16950
|
+
});
|
|
16951
|
+
};
|
|
16952
|
+
export const marketplaceSoftwareVersionsRetrieve = (options) => {
|
|
16953
|
+
return (options.client ?? _heyApiClient).get({
|
|
16954
|
+
security: [
|
|
16955
|
+
{
|
|
16956
|
+
name: 'Authorization',
|
|
16957
|
+
type: 'apiKey'
|
|
16958
|
+
},
|
|
16959
|
+
{
|
|
16960
|
+
scheme: 'bearer',
|
|
16961
|
+
type: 'http'
|
|
16962
|
+
}
|
|
16963
|
+
],
|
|
16964
|
+
url: '/api/marketplace-software-versions/{uuid}/',
|
|
16965
|
+
...options
|
|
16966
|
+
});
|
|
16967
|
+
};
|
|
16968
|
+
export const marketplaceSoftwareVersionsPartialUpdate = (options) => {
|
|
16969
|
+
return (options.client ?? _heyApiClient).patch({
|
|
16970
|
+
security: [
|
|
16971
|
+
{
|
|
16972
|
+
name: 'Authorization',
|
|
16973
|
+
type: 'apiKey'
|
|
16974
|
+
},
|
|
16975
|
+
{
|
|
16976
|
+
scheme: 'bearer',
|
|
16977
|
+
type: 'http'
|
|
16978
|
+
}
|
|
16979
|
+
],
|
|
16980
|
+
url: '/api/marketplace-software-versions/{uuid}/',
|
|
16981
|
+
...options
|
|
16982
|
+
});
|
|
16983
|
+
};
|
|
16984
|
+
export const marketplaceSoftwareVersionsUpdate = (options) => {
|
|
16985
|
+
return (options.client ?? _heyApiClient).put({
|
|
16986
|
+
security: [
|
|
16987
|
+
{
|
|
16988
|
+
name: 'Authorization',
|
|
16989
|
+
type: 'apiKey'
|
|
16990
|
+
},
|
|
16991
|
+
{
|
|
16992
|
+
scheme: 'bearer',
|
|
16993
|
+
type: 'http'
|
|
16994
|
+
}
|
|
16995
|
+
],
|
|
16996
|
+
url: '/api/marketplace-software-versions/{uuid}/',
|
|
16997
|
+
...options
|
|
16998
|
+
});
|
|
16999
|
+
};
|
|
16366
17000
|
/**
|
|
16367
17001
|
* Return component usages for current month.
|
|
16368
17002
|
*/
|