waldur-js-client 8.0.1 → 8.0.2-dev.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/sdk.gen.js CHANGED
@@ -26858,7 +26858,7 @@ export const openportalUnmanagedProjectsListUsersList = (options) => {
26858
26858
  };
26859
26859
  /**
26860
26860
  * Move project to another customer
26861
- * Moves a project and its associated resources to a different customer. This is a staff-only action. You can choose whether to preserve existing project permissions for users. Terminated projects can also be moved.
26861
+ * Moves a project and its associated resources to a different customer. You can choose whether to preserve existing project permissions for users. Terminated projects can also be moved.
26862
26862
  */
26863
26863
  export const openportalUnmanagedProjectsMoveProject = (options) => {
26864
26864
  return (options.client ?? _heyApiClient).post({
@@ -27429,6 +27429,66 @@ export const openstackBackupsUnlink = (options) => {
27429
27429
  ...options
27430
27430
  });
27431
27431
  };
27432
+ /**
27433
+ * List external networks
27434
+ * Get a list of provider-level external networks discovered from OpenStack.
27435
+ */
27436
+ export const openstackExternalNetworksList = (options) => {
27437
+ return (options?.client ?? _heyApiClient).get({
27438
+ security: [
27439
+ {
27440
+ name: 'Authorization',
27441
+ type: 'apiKey'
27442
+ },
27443
+ {
27444
+ scheme: 'bearer',
27445
+ type: 'http'
27446
+ }
27447
+ ],
27448
+ url: '/api/openstack-external-networks/',
27449
+ ...options
27450
+ });
27451
+ };
27452
+ /**
27453
+ * List external networks
27454
+ * Get number of items in the collection matching the request parameters.
27455
+ */
27456
+ export const openstackExternalNetworksCount = (options) => {
27457
+ return (options?.client ?? _heyApiClient).head({
27458
+ security: [
27459
+ {
27460
+ name: 'Authorization',
27461
+ type: 'apiKey'
27462
+ },
27463
+ {
27464
+ scheme: 'bearer',
27465
+ type: 'http'
27466
+ }
27467
+ ],
27468
+ url: '/api/openstack-external-networks/',
27469
+ ...options
27470
+ });
27471
+ };
27472
+ /**
27473
+ * Get external network details
27474
+ * Retrieve details of a specific external network, including its subnets.
27475
+ */
27476
+ export const openstackExternalNetworksRetrieve = (options) => {
27477
+ return (options.client ?? _heyApiClient).get({
27478
+ security: [
27479
+ {
27480
+ name: 'Authorization',
27481
+ type: 'apiKey'
27482
+ },
27483
+ {
27484
+ scheme: 'bearer',
27485
+ type: 'http'
27486
+ }
27487
+ ],
27488
+ url: '/api/openstack-external-networks/{uuid}/',
27489
+ ...options
27490
+ });
27491
+ };
27432
27492
  /**
27433
27493
  * List flavors
27434
27494
  * Get a list of available VM instance flavors.
@@ -31613,6 +31673,263 @@ export const openstackVolumesUnlink = (options) => {
31613
31673
  ...options
31614
31674
  });
31615
31675
  };
31676
+ export const openstackDiscoveryList = (options) => {
31677
+ return (options?.client ?? _heyApiClient).get({
31678
+ security: [
31679
+ {
31680
+ name: 'Authorization',
31681
+ type: 'apiKey'
31682
+ },
31683
+ {
31684
+ scheme: 'bearer',
31685
+ type: 'http'
31686
+ }
31687
+ ],
31688
+ url: '/api/openstack/discovery/',
31689
+ ...options
31690
+ });
31691
+ };
31692
+ export const openstackDiscoveryCreate = (options) => {
31693
+ return (options?.client ?? _heyApiClient).post({
31694
+ security: [
31695
+ {
31696
+ name: 'Authorization',
31697
+ type: 'apiKey'
31698
+ },
31699
+ {
31700
+ scheme: 'bearer',
31701
+ type: 'http'
31702
+ }
31703
+ ],
31704
+ url: '/api/openstack/discovery/',
31705
+ ...options
31706
+ });
31707
+ };
31708
+ export const openstackDiscoveryDestroy = (options) => {
31709
+ return (options.client ?? _heyApiClient).delete({
31710
+ security: [
31711
+ {
31712
+ name: 'Authorization',
31713
+ type: 'apiKey'
31714
+ },
31715
+ {
31716
+ scheme: 'bearer',
31717
+ type: 'http'
31718
+ }
31719
+ ],
31720
+ url: '/api/openstack/discovery/{id}/',
31721
+ ...options
31722
+ });
31723
+ };
31724
+ export const openstackDiscoveryRetrieve = (options) => {
31725
+ return (options.client ?? _heyApiClient).get({
31726
+ security: [
31727
+ {
31728
+ name: 'Authorization',
31729
+ type: 'apiKey'
31730
+ },
31731
+ {
31732
+ scheme: 'bearer',
31733
+ type: 'http'
31734
+ }
31735
+ ],
31736
+ url: '/api/openstack/discovery/{id}/',
31737
+ ...options
31738
+ });
31739
+ };
31740
+ export const openstackDiscoveryPartialUpdate = (options) => {
31741
+ return (options.client ?? _heyApiClient).patch({
31742
+ security: [
31743
+ {
31744
+ name: 'Authorization',
31745
+ type: 'apiKey'
31746
+ },
31747
+ {
31748
+ scheme: 'bearer',
31749
+ type: 'http'
31750
+ }
31751
+ ],
31752
+ url: '/api/openstack/discovery/{id}/',
31753
+ ...options
31754
+ });
31755
+ };
31756
+ export const openstackDiscoveryUpdate = (options) => {
31757
+ return (options.client ?? _heyApiClient).put({
31758
+ security: [
31759
+ {
31760
+ name: 'Authorization',
31761
+ type: 'apiKey'
31762
+ },
31763
+ {
31764
+ scheme: 'bearer',
31765
+ type: 'http'
31766
+ }
31767
+ ],
31768
+ url: '/api/openstack/discovery/{id}/',
31769
+ ...options
31770
+ });
31771
+ };
31772
+ /**
31773
+ * Discover available external networks.
31774
+ */
31775
+ export const openstackDiscoveryDiscoverExternalNetworks = (options) => {
31776
+ return (options.client ?? _heyApiClient).post({
31777
+ security: [
31778
+ {
31779
+ name: 'Authorization',
31780
+ type: 'apiKey'
31781
+ },
31782
+ {
31783
+ scheme: 'bearer',
31784
+ type: 'http'
31785
+ }
31786
+ ],
31787
+ url: '/api/openstack/discovery/discover_external_networks/',
31788
+ ...options,
31789
+ headers: {
31790
+ 'Content-Type': 'application/json',
31791
+ ...options.headers
31792
+ }
31793
+ });
31794
+ };
31795
+ /**
31796
+ * Discover available flavors.
31797
+ */
31798
+ export const openstackDiscoveryDiscoverFlavors = (options) => {
31799
+ return (options.client ?? _heyApiClient).post({
31800
+ security: [
31801
+ {
31802
+ name: 'Authorization',
31803
+ type: 'apiKey'
31804
+ },
31805
+ {
31806
+ scheme: 'bearer',
31807
+ type: 'http'
31808
+ }
31809
+ ],
31810
+ url: '/api/openstack/discovery/discover_flavors/',
31811
+ ...options,
31812
+ headers: {
31813
+ 'Content-Type': 'application/json',
31814
+ ...options.headers
31815
+ }
31816
+ });
31817
+ };
31818
+ /**
31819
+ * Discover available Nova instance availability zones.
31820
+ */
31821
+ export const openstackDiscoveryDiscoverInstanceAvailabilityZones = (options) => {
31822
+ return (options.client ?? _heyApiClient).post({
31823
+ security: [
31824
+ {
31825
+ name: 'Authorization',
31826
+ type: 'apiKey'
31827
+ },
31828
+ {
31829
+ scheme: 'bearer',
31830
+ type: 'http'
31831
+ }
31832
+ ],
31833
+ url: '/api/openstack/discovery/discover_instance_availability_zones/',
31834
+ ...options,
31835
+ headers: {
31836
+ 'Content-Type': 'application/json',
31837
+ ...options.headers
31838
+ }
31839
+ });
31840
+ };
31841
+ /**
31842
+ * Discover available Cinder volume availability zones.
31843
+ */
31844
+ export const openstackDiscoveryDiscoverVolumeAvailabilityZones = (options) => {
31845
+ return (options.client ?? _heyApiClient).post({
31846
+ security: [
31847
+ {
31848
+ name: 'Authorization',
31849
+ type: 'apiKey'
31850
+ },
31851
+ {
31852
+ scheme: 'bearer',
31853
+ type: 'http'
31854
+ }
31855
+ ],
31856
+ url: '/api/openstack/discovery/discover_volume_availability_zones/',
31857
+ ...options,
31858
+ headers: {
31859
+ 'Content-Type': 'application/json',
31860
+ ...options.headers
31861
+ }
31862
+ });
31863
+ };
31864
+ /**
31865
+ * Discover available volume types.
31866
+ */
31867
+ export const openstackDiscoveryDiscoverVolumeTypes = (options) => {
31868
+ return (options.client ?? _heyApiClient).post({
31869
+ security: [
31870
+ {
31871
+ name: 'Authorization',
31872
+ type: 'apiKey'
31873
+ },
31874
+ {
31875
+ scheme: 'bearer',
31876
+ type: 'http'
31877
+ }
31878
+ ],
31879
+ url: '/api/openstack/discovery/discover_volume_types/',
31880
+ ...options,
31881
+ headers: {
31882
+ 'Content-Type': 'application/json',
31883
+ ...options.headers
31884
+ }
31885
+ });
31886
+ };
31887
+ /**
31888
+ * Build service_attributes and plugin_options from selected values.
31889
+ */
31890
+ export const openstackDiscoveryPreviewServiceAttributes = (options) => {
31891
+ return (options.client ?? _heyApiClient).post({
31892
+ security: [
31893
+ {
31894
+ name: 'Authorization',
31895
+ type: 'apiKey'
31896
+ },
31897
+ {
31898
+ scheme: 'bearer',
31899
+ type: 'http'
31900
+ }
31901
+ ],
31902
+ url: '/api/openstack/discovery/preview_service_attributes/',
31903
+ ...options,
31904
+ headers: {
31905
+ 'Content-Type': 'application/json',
31906
+ ...options.headers
31907
+ }
31908
+ });
31909
+ };
31910
+ /**
31911
+ * Validate OpenStack credentials without saving them.
31912
+ */
31913
+ export const openstackDiscoveryValidateCredentials = (options) => {
31914
+ return (options.client ?? _heyApiClient).post({
31915
+ security: [
31916
+ {
31917
+ name: 'Authorization',
31918
+ type: 'apiKey'
31919
+ },
31920
+ {
31921
+ scheme: 'bearer',
31922
+ type: 'http'
31923
+ }
31924
+ ],
31925
+ url: '/api/openstack/discovery/validate_credentials/',
31926
+ ...options,
31927
+ headers: {
31928
+ 'Content-Type': 'application/json',
31929
+ ...options.headers
31930
+ }
31931
+ });
31932
+ };
31616
31933
  export const organizationGroupsList = (options) => {
31617
31934
  return (options?.client ?? _heyApiClient).get({
31618
31935
  security: [
@@ -32671,7 +32988,7 @@ export const projectsListUsersList = (options) => {
32671
32988
  };
32672
32989
  /**
32673
32990
  * Move project to another customer
32674
- * Moves a project and its associated resources to a different customer. This is a staff-only action. You can choose whether to preserve existing project permissions for users. Terminated projects can also be moved.
32991
+ * Moves a project and its associated resources to a different customer. You can choose whether to preserve existing project permissions for users. Terminated projects can also be moved.
32675
32992
  */
32676
32993
  export const projectsMoveProject = (options) => {
32677
32994
  return (options.client ?? _heyApiClient).post({