waldur-js-client 7.8.8-dev.1 → 7.8.8-dev.3

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.js CHANGED
@@ -16508,6 +16508,171 @@ export const marketplaceSiteAgentServicesSetStatistics = (options) => {
16508
16508
  }
16509
16509
  });
16510
16510
  };
16511
+ /**
16512
+ * Mixin to optimize HEAD requests for DRF views bypassing serializer processing
16513
+ */
16514
+ export const marketplaceSlurmPeriodicUsagePoliciesList = (options) => {
16515
+ return (options?.client ?? _heyApiClient).get({
16516
+ security: [
16517
+ {
16518
+ name: 'Authorization',
16519
+ type: 'apiKey'
16520
+ },
16521
+ {
16522
+ scheme: 'bearer',
16523
+ type: 'http'
16524
+ }
16525
+ ],
16526
+ url: '/api/marketplace-slurm-periodic-usage-policies/',
16527
+ ...options
16528
+ });
16529
+ };
16530
+ /**
16531
+ * Get number of items in the collection matching the request parameters.
16532
+ */
16533
+ export const marketplaceSlurmPeriodicUsagePoliciesCount = (options) => {
16534
+ return (options?.client ?? _heyApiClient).head({
16535
+ security: [
16536
+ {
16537
+ name: 'Authorization',
16538
+ type: 'apiKey'
16539
+ },
16540
+ {
16541
+ scheme: 'bearer',
16542
+ type: 'http'
16543
+ }
16544
+ ],
16545
+ url: '/api/marketplace-slurm-periodic-usage-policies/',
16546
+ ...options
16547
+ });
16548
+ };
16549
+ export const marketplaceSlurmPeriodicUsagePoliciesCreate = (options) => {
16550
+ return (options.client ?? _heyApiClient).post({
16551
+ security: [
16552
+ {
16553
+ name: 'Authorization',
16554
+ type: 'apiKey'
16555
+ },
16556
+ {
16557
+ scheme: 'bearer',
16558
+ type: 'http'
16559
+ }
16560
+ ],
16561
+ url: '/api/marketplace-slurm-periodic-usage-policies/',
16562
+ ...options,
16563
+ headers: {
16564
+ 'Content-Type': 'application/json',
16565
+ ...options.headers
16566
+ }
16567
+ });
16568
+ };
16569
+ export const marketplaceSlurmPeriodicUsagePoliciesDestroy = (options) => {
16570
+ return (options.client ?? _heyApiClient).delete({
16571
+ security: [
16572
+ {
16573
+ name: 'Authorization',
16574
+ type: 'apiKey'
16575
+ },
16576
+ {
16577
+ scheme: 'bearer',
16578
+ type: 'http'
16579
+ }
16580
+ ],
16581
+ url: '/api/marketplace-slurm-periodic-usage-policies/{uuid}/',
16582
+ ...options
16583
+ });
16584
+ };
16585
+ export const marketplaceSlurmPeriodicUsagePoliciesRetrieve = (options) => {
16586
+ return (options.client ?? _heyApiClient).get({
16587
+ security: [
16588
+ {
16589
+ name: 'Authorization',
16590
+ type: 'apiKey'
16591
+ },
16592
+ {
16593
+ scheme: 'bearer',
16594
+ type: 'http'
16595
+ }
16596
+ ],
16597
+ url: '/api/marketplace-slurm-periodic-usage-policies/{uuid}/',
16598
+ ...options
16599
+ });
16600
+ };
16601
+ export const marketplaceSlurmPeriodicUsagePoliciesPartialUpdate = (options) => {
16602
+ return (options.client ?? _heyApiClient).patch({
16603
+ security: [
16604
+ {
16605
+ name: 'Authorization',
16606
+ type: 'apiKey'
16607
+ },
16608
+ {
16609
+ scheme: 'bearer',
16610
+ type: 'http'
16611
+ }
16612
+ ],
16613
+ url: '/api/marketplace-slurm-periodic-usage-policies/{uuid}/',
16614
+ ...options,
16615
+ headers: {
16616
+ 'Content-Type': 'application/json',
16617
+ ...options.headers
16618
+ }
16619
+ });
16620
+ };
16621
+ export const marketplaceSlurmPeriodicUsagePoliciesUpdate = (options) => {
16622
+ return (options.client ?? _heyApiClient).put({
16623
+ security: [
16624
+ {
16625
+ name: 'Authorization',
16626
+ type: 'apiKey'
16627
+ },
16628
+ {
16629
+ scheme: 'bearer',
16630
+ type: 'http'
16631
+ }
16632
+ ],
16633
+ url: '/api/marketplace-slurm-periodic-usage-policies/{uuid}/',
16634
+ ...options,
16635
+ headers: {
16636
+ 'Content-Type': 'application/json',
16637
+ ...options.headers
16638
+ }
16639
+ });
16640
+ };
16641
+ export const marketplaceSlurmPeriodicUsagePoliciesActionsRetrieve = (options) => {
16642
+ return (options?.client ?? _heyApiClient).get({
16643
+ security: [
16644
+ {
16645
+ name: 'Authorization',
16646
+ type: 'apiKey'
16647
+ },
16648
+ {
16649
+ scheme: 'bearer',
16650
+ type: 'http'
16651
+ }
16652
+ ],
16653
+ url: '/api/marketplace-slurm-periodic-usage-policies/actions/',
16654
+ ...options
16655
+ });
16656
+ };
16657
+ /**
16658
+ * Get number of items in the collection matching the request parameters.
16659
+ */
16660
+ export const marketplaceSlurmPeriodicUsagePoliciesActionsCount = (options) => {
16661
+ return (options?.client ?? _heyApiClient).head({
16662
+ security: [
16663
+ {
16664
+ name: 'Authorization',
16665
+ type: 'apiKey'
16666
+ },
16667
+ {
16668
+ scheme: 'bearer',
16669
+ type: 'http'
16670
+ }
16671
+ ],
16672
+ url: '/api/marketplace-slurm-periodic-usage-policies/actions/',
16673
+ ...options
16674
+ });
16675
+ };
16511
16676
  /**
16512
16677
  * Mixin to optimize HEAD requests for DRF views bypassing serializer processing
16513
16678
  */