waldur-js-client 7.9.10-dev.14 → 7.9.10-dev.16
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 +321 -1
- package/dist/sdk.gen.js +1408 -0
- package/dist/types.gen.d.ts +917 -260
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -2552,6 +2552,50 @@ export const awsInstancesRestart = (options) => {
|
|
|
2552
2552
|
...options
|
|
2553
2553
|
});
|
|
2554
2554
|
};
|
|
2555
|
+
/**
|
|
2556
|
+
* Mark resource as ERRED
|
|
2557
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
2558
|
+
*/
|
|
2559
|
+
export const awsInstancesSetErred = (options) => {
|
|
2560
|
+
return (options.client ?? _heyApiClient).post({
|
|
2561
|
+
security: [
|
|
2562
|
+
{
|
|
2563
|
+
name: 'Authorization',
|
|
2564
|
+
type: 'apiKey'
|
|
2565
|
+
},
|
|
2566
|
+
{
|
|
2567
|
+
scheme: 'bearer',
|
|
2568
|
+
type: 'http'
|
|
2569
|
+
}
|
|
2570
|
+
],
|
|
2571
|
+
url: '/api/aws-instances/{uuid}/set_erred/',
|
|
2572
|
+
...options,
|
|
2573
|
+
headers: {
|
|
2574
|
+
'Content-Type': 'application/json',
|
|
2575
|
+
...options.headers
|
|
2576
|
+
}
|
|
2577
|
+
});
|
|
2578
|
+
};
|
|
2579
|
+
/**
|
|
2580
|
+
* Mark resource as OK
|
|
2581
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
2582
|
+
*/
|
|
2583
|
+
export const awsInstancesSetOk = (options) => {
|
|
2584
|
+
return (options.client ?? _heyApiClient).post({
|
|
2585
|
+
security: [
|
|
2586
|
+
{
|
|
2587
|
+
name: 'Authorization',
|
|
2588
|
+
type: 'apiKey'
|
|
2589
|
+
},
|
|
2590
|
+
{
|
|
2591
|
+
scheme: 'bearer',
|
|
2592
|
+
type: 'http'
|
|
2593
|
+
}
|
|
2594
|
+
],
|
|
2595
|
+
url: '/api/aws-instances/{uuid}/set_ok/',
|
|
2596
|
+
...options
|
|
2597
|
+
});
|
|
2598
|
+
};
|
|
2555
2599
|
export const awsInstancesStart = (options) => {
|
|
2556
2600
|
return (options.client ?? _heyApiClient).post({
|
|
2557
2601
|
security: [
|
|
@@ -2887,6 +2931,50 @@ export const awsVolumesPull = (options) => {
|
|
|
2887
2931
|
...options
|
|
2888
2932
|
});
|
|
2889
2933
|
};
|
|
2934
|
+
/**
|
|
2935
|
+
* Mark resource as ERRED
|
|
2936
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
2937
|
+
*/
|
|
2938
|
+
export const awsVolumesSetErred = (options) => {
|
|
2939
|
+
return (options.client ?? _heyApiClient).post({
|
|
2940
|
+
security: [
|
|
2941
|
+
{
|
|
2942
|
+
name: 'Authorization',
|
|
2943
|
+
type: 'apiKey'
|
|
2944
|
+
},
|
|
2945
|
+
{
|
|
2946
|
+
scheme: 'bearer',
|
|
2947
|
+
type: 'http'
|
|
2948
|
+
}
|
|
2949
|
+
],
|
|
2950
|
+
url: '/api/aws-volumes/{uuid}/set_erred/',
|
|
2951
|
+
...options,
|
|
2952
|
+
headers: {
|
|
2953
|
+
'Content-Type': 'application/json',
|
|
2954
|
+
...options.headers
|
|
2955
|
+
}
|
|
2956
|
+
});
|
|
2957
|
+
};
|
|
2958
|
+
/**
|
|
2959
|
+
* Mark resource as OK
|
|
2960
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
2961
|
+
*/
|
|
2962
|
+
export const awsVolumesSetOk = (options) => {
|
|
2963
|
+
return (options.client ?? _heyApiClient).post({
|
|
2964
|
+
security: [
|
|
2965
|
+
{
|
|
2966
|
+
name: 'Authorization',
|
|
2967
|
+
type: 'apiKey'
|
|
2968
|
+
},
|
|
2969
|
+
{
|
|
2970
|
+
scheme: 'bearer',
|
|
2971
|
+
type: 'http'
|
|
2972
|
+
}
|
|
2973
|
+
],
|
|
2974
|
+
url: '/api/aws-volumes/{uuid}/set_ok/',
|
|
2975
|
+
...options
|
|
2976
|
+
});
|
|
2977
|
+
};
|
|
2890
2978
|
/**
|
|
2891
2979
|
* Unlink resource
|
|
2892
2980
|
* Delete resource from the database without scheduling operations on backend
|
|
@@ -3158,6 +3246,50 @@ export const azurePublicIpsPull = (options) => {
|
|
|
3158
3246
|
...options
|
|
3159
3247
|
});
|
|
3160
3248
|
};
|
|
3249
|
+
/**
|
|
3250
|
+
* Mark resource as ERRED
|
|
3251
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
3252
|
+
*/
|
|
3253
|
+
export const azurePublicIpsSetErred = (options) => {
|
|
3254
|
+
return (options.client ?? _heyApiClient).post({
|
|
3255
|
+
security: [
|
|
3256
|
+
{
|
|
3257
|
+
name: 'Authorization',
|
|
3258
|
+
type: 'apiKey'
|
|
3259
|
+
},
|
|
3260
|
+
{
|
|
3261
|
+
scheme: 'bearer',
|
|
3262
|
+
type: 'http'
|
|
3263
|
+
}
|
|
3264
|
+
],
|
|
3265
|
+
url: '/api/azure-public-ips/{uuid}/set_erred/',
|
|
3266
|
+
...options,
|
|
3267
|
+
headers: {
|
|
3268
|
+
'Content-Type': 'application/json',
|
|
3269
|
+
...options.headers
|
|
3270
|
+
}
|
|
3271
|
+
});
|
|
3272
|
+
};
|
|
3273
|
+
/**
|
|
3274
|
+
* Mark resource as OK
|
|
3275
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
3276
|
+
*/
|
|
3277
|
+
export const azurePublicIpsSetOk = (options) => {
|
|
3278
|
+
return (options.client ?? _heyApiClient).post({
|
|
3279
|
+
security: [
|
|
3280
|
+
{
|
|
3281
|
+
name: 'Authorization',
|
|
3282
|
+
type: 'apiKey'
|
|
3283
|
+
},
|
|
3284
|
+
{
|
|
3285
|
+
scheme: 'bearer',
|
|
3286
|
+
type: 'http'
|
|
3287
|
+
}
|
|
3288
|
+
],
|
|
3289
|
+
url: '/api/azure-public-ips/{uuid}/set_ok/',
|
|
3290
|
+
...options
|
|
3291
|
+
});
|
|
3292
|
+
};
|
|
3161
3293
|
/**
|
|
3162
3294
|
* Unlink resource
|
|
3163
3295
|
* Delete resource from the database without scheduling operations on backend
|
|
@@ -3429,6 +3561,50 @@ export const azureSqlDatabasesPull = (options) => {
|
|
|
3429
3561
|
...options
|
|
3430
3562
|
});
|
|
3431
3563
|
};
|
|
3564
|
+
/**
|
|
3565
|
+
* Mark resource as ERRED
|
|
3566
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
3567
|
+
*/
|
|
3568
|
+
export const azureSqlDatabasesSetErred = (options) => {
|
|
3569
|
+
return (options.client ?? _heyApiClient).post({
|
|
3570
|
+
security: [
|
|
3571
|
+
{
|
|
3572
|
+
name: 'Authorization',
|
|
3573
|
+
type: 'apiKey'
|
|
3574
|
+
},
|
|
3575
|
+
{
|
|
3576
|
+
scheme: 'bearer',
|
|
3577
|
+
type: 'http'
|
|
3578
|
+
}
|
|
3579
|
+
],
|
|
3580
|
+
url: '/api/azure-sql-databases/{uuid}/set_erred/',
|
|
3581
|
+
...options,
|
|
3582
|
+
headers: {
|
|
3583
|
+
'Content-Type': 'application/json',
|
|
3584
|
+
...options.headers
|
|
3585
|
+
}
|
|
3586
|
+
});
|
|
3587
|
+
};
|
|
3588
|
+
/**
|
|
3589
|
+
* Mark resource as OK
|
|
3590
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
3591
|
+
*/
|
|
3592
|
+
export const azureSqlDatabasesSetOk = (options) => {
|
|
3593
|
+
return (options.client ?? _heyApiClient).post({
|
|
3594
|
+
security: [
|
|
3595
|
+
{
|
|
3596
|
+
name: 'Authorization',
|
|
3597
|
+
type: 'apiKey'
|
|
3598
|
+
},
|
|
3599
|
+
{
|
|
3600
|
+
scheme: 'bearer',
|
|
3601
|
+
type: 'http'
|
|
3602
|
+
}
|
|
3603
|
+
],
|
|
3604
|
+
url: '/api/azure-sql-databases/{uuid}/set_ok/',
|
|
3605
|
+
...options
|
|
3606
|
+
});
|
|
3607
|
+
};
|
|
3432
3608
|
/**
|
|
3433
3609
|
* Unlink resource
|
|
3434
3610
|
* Delete resource from the database without scheduling operations on backend
|
|
@@ -3618,6 +3794,50 @@ export const azureSqlServersPull = (options) => {
|
|
|
3618
3794
|
...options
|
|
3619
3795
|
});
|
|
3620
3796
|
};
|
|
3797
|
+
/**
|
|
3798
|
+
* Mark resource as ERRED
|
|
3799
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
3800
|
+
*/
|
|
3801
|
+
export const azureSqlServersSetErred = (options) => {
|
|
3802
|
+
return (options.client ?? _heyApiClient).post({
|
|
3803
|
+
security: [
|
|
3804
|
+
{
|
|
3805
|
+
name: 'Authorization',
|
|
3806
|
+
type: 'apiKey'
|
|
3807
|
+
},
|
|
3808
|
+
{
|
|
3809
|
+
scheme: 'bearer',
|
|
3810
|
+
type: 'http'
|
|
3811
|
+
}
|
|
3812
|
+
],
|
|
3813
|
+
url: '/api/azure-sql-servers/{uuid}/set_erred/',
|
|
3814
|
+
...options,
|
|
3815
|
+
headers: {
|
|
3816
|
+
'Content-Type': 'application/json',
|
|
3817
|
+
...options.headers
|
|
3818
|
+
}
|
|
3819
|
+
});
|
|
3820
|
+
};
|
|
3821
|
+
/**
|
|
3822
|
+
* Mark resource as OK
|
|
3823
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
3824
|
+
*/
|
|
3825
|
+
export const azureSqlServersSetOk = (options) => {
|
|
3826
|
+
return (options.client ?? _heyApiClient).post({
|
|
3827
|
+
security: [
|
|
3828
|
+
{
|
|
3829
|
+
name: 'Authorization',
|
|
3830
|
+
type: 'apiKey'
|
|
3831
|
+
},
|
|
3832
|
+
{
|
|
3833
|
+
scheme: 'bearer',
|
|
3834
|
+
type: 'http'
|
|
3835
|
+
}
|
|
3836
|
+
],
|
|
3837
|
+
url: '/api/azure-sql-servers/{uuid}/set_ok/',
|
|
3838
|
+
...options
|
|
3839
|
+
});
|
|
3840
|
+
};
|
|
3621
3841
|
/**
|
|
3622
3842
|
* Unlink resource
|
|
3623
3843
|
* Delete resource from the database without scheduling operations on backend
|
|
@@ -3803,6 +4023,50 @@ export const azureVirtualmachinesRestart = (options) => {
|
|
|
3803
4023
|
...options
|
|
3804
4024
|
});
|
|
3805
4025
|
};
|
|
4026
|
+
/**
|
|
4027
|
+
* Mark resource as ERRED
|
|
4028
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
4029
|
+
*/
|
|
4030
|
+
export const azureVirtualmachinesSetErred = (options) => {
|
|
4031
|
+
return (options.client ?? _heyApiClient).post({
|
|
4032
|
+
security: [
|
|
4033
|
+
{
|
|
4034
|
+
name: 'Authorization',
|
|
4035
|
+
type: 'apiKey'
|
|
4036
|
+
},
|
|
4037
|
+
{
|
|
4038
|
+
scheme: 'bearer',
|
|
4039
|
+
type: 'http'
|
|
4040
|
+
}
|
|
4041
|
+
],
|
|
4042
|
+
url: '/api/azure-virtualmachines/{uuid}/set_erred/',
|
|
4043
|
+
...options,
|
|
4044
|
+
headers: {
|
|
4045
|
+
'Content-Type': 'application/json',
|
|
4046
|
+
...options.headers
|
|
4047
|
+
}
|
|
4048
|
+
});
|
|
4049
|
+
};
|
|
4050
|
+
/**
|
|
4051
|
+
* Mark resource as OK
|
|
4052
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
4053
|
+
*/
|
|
4054
|
+
export const azureVirtualmachinesSetOk = (options) => {
|
|
4055
|
+
return (options.client ?? _heyApiClient).post({
|
|
4056
|
+
security: [
|
|
4057
|
+
{
|
|
4058
|
+
name: 'Authorization',
|
|
4059
|
+
type: 'apiKey'
|
|
4060
|
+
},
|
|
4061
|
+
{
|
|
4062
|
+
scheme: 'bearer',
|
|
4063
|
+
type: 'http'
|
|
4064
|
+
}
|
|
4065
|
+
],
|
|
4066
|
+
url: '/api/azure-virtualmachines/{uuid}/set_ok/',
|
|
4067
|
+
...options
|
|
4068
|
+
});
|
|
4069
|
+
};
|
|
3806
4070
|
export const azureVirtualmachinesStart = (options) => {
|
|
3807
4071
|
return (options.client ?? _heyApiClient).post({
|
|
3808
4072
|
security: [
|
|
@@ -7850,6 +8114,50 @@ export const digitaloceanDropletsRestart = (options) => {
|
|
|
7850
8114
|
...options
|
|
7851
8115
|
});
|
|
7852
8116
|
};
|
|
8117
|
+
/**
|
|
8118
|
+
* Mark resource as ERRED
|
|
8119
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
8120
|
+
*/
|
|
8121
|
+
export const digitaloceanDropletsSetErred = (options) => {
|
|
8122
|
+
return (options.client ?? _heyApiClient).post({
|
|
8123
|
+
security: [
|
|
8124
|
+
{
|
|
8125
|
+
name: 'Authorization',
|
|
8126
|
+
type: 'apiKey'
|
|
8127
|
+
},
|
|
8128
|
+
{
|
|
8129
|
+
scheme: 'bearer',
|
|
8130
|
+
type: 'http'
|
|
8131
|
+
}
|
|
8132
|
+
],
|
|
8133
|
+
url: '/api/digitalocean-droplets/{uuid}/set_erred/',
|
|
8134
|
+
...options,
|
|
8135
|
+
headers: {
|
|
8136
|
+
'Content-Type': 'application/json',
|
|
8137
|
+
...options.headers
|
|
8138
|
+
}
|
|
8139
|
+
});
|
|
8140
|
+
};
|
|
8141
|
+
/**
|
|
8142
|
+
* Mark resource as OK
|
|
8143
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
8144
|
+
*/
|
|
8145
|
+
export const digitaloceanDropletsSetOk = (options) => {
|
|
8146
|
+
return (options.client ?? _heyApiClient).post({
|
|
8147
|
+
security: [
|
|
8148
|
+
{
|
|
8149
|
+
name: 'Authorization',
|
|
8150
|
+
type: 'apiKey'
|
|
8151
|
+
},
|
|
8152
|
+
{
|
|
8153
|
+
scheme: 'bearer',
|
|
8154
|
+
type: 'http'
|
|
8155
|
+
}
|
|
8156
|
+
],
|
|
8157
|
+
url: '/api/digitalocean-droplets/{uuid}/set_ok/',
|
|
8158
|
+
...options
|
|
8159
|
+
});
|
|
8160
|
+
};
|
|
7853
8161
|
export const digitaloceanDropletsStart = (options) => {
|
|
7854
8162
|
return (options.client ?? _heyApiClient).post({
|
|
7855
8163
|
security: [
|
|
@@ -25364,6 +25672,30 @@ export const openportalAllocationsPull = (options) => {
|
|
|
25364
25672
|
...options
|
|
25365
25673
|
});
|
|
25366
25674
|
};
|
|
25675
|
+
/**
|
|
25676
|
+
* Mark resource as ERRED
|
|
25677
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
25678
|
+
*/
|
|
25679
|
+
export const openportalAllocationsSetErred = (options) => {
|
|
25680
|
+
return (options.client ?? _heyApiClient).post({
|
|
25681
|
+
security: [
|
|
25682
|
+
{
|
|
25683
|
+
name: 'Authorization',
|
|
25684
|
+
type: 'apiKey'
|
|
25685
|
+
},
|
|
25686
|
+
{
|
|
25687
|
+
scheme: 'bearer',
|
|
25688
|
+
type: 'http'
|
|
25689
|
+
}
|
|
25690
|
+
],
|
|
25691
|
+
url: '/api/openportal-allocations/{uuid}/set_erred/',
|
|
25692
|
+
...options,
|
|
25693
|
+
headers: {
|
|
25694
|
+
'Content-Type': 'application/json',
|
|
25695
|
+
...options.headers
|
|
25696
|
+
}
|
|
25697
|
+
});
|
|
25698
|
+
};
|
|
25367
25699
|
export const openportalAllocationsSetLimits = (options) => {
|
|
25368
25700
|
return (options.client ?? _heyApiClient).post({
|
|
25369
25701
|
security: [
|
|
@@ -25384,6 +25716,26 @@ export const openportalAllocationsSetLimits = (options) => {
|
|
|
25384
25716
|
}
|
|
25385
25717
|
});
|
|
25386
25718
|
};
|
|
25719
|
+
/**
|
|
25720
|
+
* Mark resource as OK
|
|
25721
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
25722
|
+
*/
|
|
25723
|
+
export const openportalAllocationsSetOk = (options) => {
|
|
25724
|
+
return (options.client ?? _heyApiClient).post({
|
|
25725
|
+
security: [
|
|
25726
|
+
{
|
|
25727
|
+
name: 'Authorization',
|
|
25728
|
+
type: 'apiKey'
|
|
25729
|
+
},
|
|
25730
|
+
{
|
|
25731
|
+
scheme: 'bearer',
|
|
25732
|
+
type: 'http'
|
|
25733
|
+
}
|
|
25734
|
+
],
|
|
25735
|
+
url: '/api/openportal-allocations/{uuid}/set_ok/',
|
|
25736
|
+
...options
|
|
25737
|
+
});
|
|
25738
|
+
};
|
|
25387
25739
|
/**
|
|
25388
25740
|
* Unlink resource
|
|
25389
25741
|
* Delete resource from the database without scheduling operations on backend
|
|
@@ -26109,6 +26461,30 @@ export const openportalRemoteAllocationsPull = (options) => {
|
|
|
26109
26461
|
...options
|
|
26110
26462
|
});
|
|
26111
26463
|
};
|
|
26464
|
+
/**
|
|
26465
|
+
* Mark resource as ERRED
|
|
26466
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
26467
|
+
*/
|
|
26468
|
+
export const openportalRemoteAllocationsSetErred = (options) => {
|
|
26469
|
+
return (options.client ?? _heyApiClient).post({
|
|
26470
|
+
security: [
|
|
26471
|
+
{
|
|
26472
|
+
name: 'Authorization',
|
|
26473
|
+
type: 'apiKey'
|
|
26474
|
+
},
|
|
26475
|
+
{
|
|
26476
|
+
scheme: 'bearer',
|
|
26477
|
+
type: 'http'
|
|
26478
|
+
}
|
|
26479
|
+
],
|
|
26480
|
+
url: '/api/openportal-remote-allocations/{uuid}/set_erred/',
|
|
26481
|
+
...options,
|
|
26482
|
+
headers: {
|
|
26483
|
+
'Content-Type': 'application/json',
|
|
26484
|
+
...options.headers
|
|
26485
|
+
}
|
|
26486
|
+
});
|
|
26487
|
+
};
|
|
26112
26488
|
export const openportalRemoteAllocationsSetLimits = (options) => {
|
|
26113
26489
|
return (options.client ?? _heyApiClient).post({
|
|
26114
26490
|
security: [
|
|
@@ -26129,6 +26505,26 @@ export const openportalRemoteAllocationsSetLimits = (options) => {
|
|
|
26129
26505
|
}
|
|
26130
26506
|
});
|
|
26131
26507
|
};
|
|
26508
|
+
/**
|
|
26509
|
+
* Mark resource as OK
|
|
26510
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
26511
|
+
*/
|
|
26512
|
+
export const openportalRemoteAllocationsSetOk = (options) => {
|
|
26513
|
+
return (options.client ?? _heyApiClient).post({
|
|
26514
|
+
security: [
|
|
26515
|
+
{
|
|
26516
|
+
name: 'Authorization',
|
|
26517
|
+
type: 'apiKey'
|
|
26518
|
+
},
|
|
26519
|
+
{
|
|
26520
|
+
scheme: 'bearer',
|
|
26521
|
+
type: 'http'
|
|
26522
|
+
}
|
|
26523
|
+
],
|
|
26524
|
+
url: '/api/openportal-remote-allocations/{uuid}/set_ok/',
|
|
26525
|
+
...options
|
|
26526
|
+
});
|
|
26527
|
+
};
|
|
26132
26528
|
/**
|
|
26133
26529
|
* Unlink resource
|
|
26134
26530
|
* Delete resource from the database without scheduling operations on backend
|
|
@@ -26967,6 +27363,50 @@ export const openstackBackupsRestore = (options) => {
|
|
|
26967
27363
|
}
|
|
26968
27364
|
});
|
|
26969
27365
|
};
|
|
27366
|
+
/**
|
|
27367
|
+
* Mark resource as ERRED
|
|
27368
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
27369
|
+
*/
|
|
27370
|
+
export const openstackBackupsSetErred = (options) => {
|
|
27371
|
+
return (options.client ?? _heyApiClient).post({
|
|
27372
|
+
security: [
|
|
27373
|
+
{
|
|
27374
|
+
name: 'Authorization',
|
|
27375
|
+
type: 'apiKey'
|
|
27376
|
+
},
|
|
27377
|
+
{
|
|
27378
|
+
scheme: 'bearer',
|
|
27379
|
+
type: 'http'
|
|
27380
|
+
}
|
|
27381
|
+
],
|
|
27382
|
+
url: '/api/openstack-backups/{uuid}/set_erred/',
|
|
27383
|
+
...options,
|
|
27384
|
+
headers: {
|
|
27385
|
+
'Content-Type': 'application/json',
|
|
27386
|
+
...options.headers
|
|
27387
|
+
}
|
|
27388
|
+
});
|
|
27389
|
+
};
|
|
27390
|
+
/**
|
|
27391
|
+
* Mark resource as OK
|
|
27392
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
27393
|
+
*/
|
|
27394
|
+
export const openstackBackupsSetOk = (options) => {
|
|
27395
|
+
return (options.client ?? _heyApiClient).post({
|
|
27396
|
+
security: [
|
|
27397
|
+
{
|
|
27398
|
+
name: 'Authorization',
|
|
27399
|
+
type: 'apiKey'
|
|
27400
|
+
},
|
|
27401
|
+
{
|
|
27402
|
+
scheme: 'bearer',
|
|
27403
|
+
type: 'http'
|
|
27404
|
+
}
|
|
27405
|
+
],
|
|
27406
|
+
url: '/api/openstack-backups/{uuid}/set_ok/',
|
|
27407
|
+
...options
|
|
27408
|
+
});
|
|
27409
|
+
};
|
|
26970
27410
|
/**
|
|
26971
27411
|
* Unlink resource
|
|
26972
27412
|
* Delete resource from the database without scheduling operations on backend
|
|
@@ -27233,6 +27673,50 @@ export const openstackFloatingIpsPull = (options) => {
|
|
|
27233
27673
|
...options
|
|
27234
27674
|
});
|
|
27235
27675
|
};
|
|
27676
|
+
/**
|
|
27677
|
+
* Mark resource as ERRED
|
|
27678
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
27679
|
+
*/
|
|
27680
|
+
export const openstackFloatingIpsSetErred = (options) => {
|
|
27681
|
+
return (options.client ?? _heyApiClient).post({
|
|
27682
|
+
security: [
|
|
27683
|
+
{
|
|
27684
|
+
name: 'Authorization',
|
|
27685
|
+
type: 'apiKey'
|
|
27686
|
+
},
|
|
27687
|
+
{
|
|
27688
|
+
scheme: 'bearer',
|
|
27689
|
+
type: 'http'
|
|
27690
|
+
}
|
|
27691
|
+
],
|
|
27692
|
+
url: '/api/openstack-floating-ips/{uuid}/set_erred/',
|
|
27693
|
+
...options,
|
|
27694
|
+
headers: {
|
|
27695
|
+
'Content-Type': 'application/json',
|
|
27696
|
+
...options.headers
|
|
27697
|
+
}
|
|
27698
|
+
});
|
|
27699
|
+
};
|
|
27700
|
+
/**
|
|
27701
|
+
* Mark resource as OK
|
|
27702
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
27703
|
+
*/
|
|
27704
|
+
export const openstackFloatingIpsSetOk = (options) => {
|
|
27705
|
+
return (options.client ?? _heyApiClient).post({
|
|
27706
|
+
security: [
|
|
27707
|
+
{
|
|
27708
|
+
name: 'Authorization',
|
|
27709
|
+
type: 'apiKey'
|
|
27710
|
+
},
|
|
27711
|
+
{
|
|
27712
|
+
scheme: 'bearer',
|
|
27713
|
+
type: 'http'
|
|
27714
|
+
}
|
|
27715
|
+
],
|
|
27716
|
+
url: '/api/openstack-floating-ips/{uuid}/set_ok/',
|
|
27717
|
+
...options
|
|
27718
|
+
});
|
|
27719
|
+
};
|
|
27236
27720
|
/**
|
|
27237
27721
|
* Unlink resource
|
|
27238
27722
|
* Delete resource from the database without scheduling operations on backend
|
|
@@ -27715,6 +28199,50 @@ export const openstackInstancesRestart = (options) => {
|
|
|
27715
28199
|
...options
|
|
27716
28200
|
});
|
|
27717
28201
|
};
|
|
28202
|
+
/**
|
|
28203
|
+
* Mark resource as ERRED
|
|
28204
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
28205
|
+
*/
|
|
28206
|
+
export const openstackInstancesSetErred = (options) => {
|
|
28207
|
+
return (options.client ?? _heyApiClient).post({
|
|
28208
|
+
security: [
|
|
28209
|
+
{
|
|
28210
|
+
name: 'Authorization',
|
|
28211
|
+
type: 'apiKey'
|
|
28212
|
+
},
|
|
28213
|
+
{
|
|
28214
|
+
scheme: 'bearer',
|
|
28215
|
+
type: 'http'
|
|
28216
|
+
}
|
|
28217
|
+
],
|
|
28218
|
+
url: '/api/openstack-instances/{uuid}/set_erred/',
|
|
28219
|
+
...options,
|
|
28220
|
+
headers: {
|
|
28221
|
+
'Content-Type': 'application/json',
|
|
28222
|
+
...options.headers
|
|
28223
|
+
}
|
|
28224
|
+
});
|
|
28225
|
+
};
|
|
28226
|
+
/**
|
|
28227
|
+
* Mark resource as OK
|
|
28228
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
28229
|
+
*/
|
|
28230
|
+
export const openstackInstancesSetOk = (options) => {
|
|
28231
|
+
return (options.client ?? _heyApiClient).post({
|
|
28232
|
+
security: [
|
|
28233
|
+
{
|
|
28234
|
+
name: 'Authorization',
|
|
28235
|
+
type: 'apiKey'
|
|
28236
|
+
},
|
|
28237
|
+
{
|
|
28238
|
+
scheme: 'bearer',
|
|
28239
|
+
type: 'http'
|
|
28240
|
+
}
|
|
28241
|
+
],
|
|
28242
|
+
url: '/api/openstack-instances/{uuid}/set_ok/',
|
|
28243
|
+
...options
|
|
28244
|
+
});
|
|
28245
|
+
};
|
|
27718
28246
|
/**
|
|
27719
28247
|
* Start instance
|
|
27720
28248
|
* Start the instance
|
|
@@ -28453,6 +28981,30 @@ export const openstackNetworksRbacPolicyDeleteDestroy = (options) => {
|
|
|
28453
28981
|
...options
|
|
28454
28982
|
});
|
|
28455
28983
|
};
|
|
28984
|
+
/**
|
|
28985
|
+
* Mark resource as ERRED
|
|
28986
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
28987
|
+
*/
|
|
28988
|
+
export const openstackNetworksSetErred = (options) => {
|
|
28989
|
+
return (options.client ?? _heyApiClient).post({
|
|
28990
|
+
security: [
|
|
28991
|
+
{
|
|
28992
|
+
name: 'Authorization',
|
|
28993
|
+
type: 'apiKey'
|
|
28994
|
+
},
|
|
28995
|
+
{
|
|
28996
|
+
scheme: 'bearer',
|
|
28997
|
+
type: 'http'
|
|
28998
|
+
}
|
|
28999
|
+
],
|
|
29000
|
+
url: '/api/openstack-networks/{uuid}/set_erred/',
|
|
29001
|
+
...options,
|
|
29002
|
+
headers: {
|
|
29003
|
+
'Content-Type': 'application/json',
|
|
29004
|
+
...options.headers
|
|
29005
|
+
}
|
|
29006
|
+
});
|
|
29007
|
+
};
|
|
28456
29008
|
/**
|
|
28457
29009
|
* Set network MTU
|
|
28458
29010
|
* Update the Maximum Transmission Unit (MTU) for the network.
|
|
@@ -28477,6 +29029,26 @@ export const openstackNetworksSetMtu = (options) => {
|
|
|
28477
29029
|
}
|
|
28478
29030
|
});
|
|
28479
29031
|
};
|
|
29032
|
+
/**
|
|
29033
|
+
* Mark resource as OK
|
|
29034
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
29035
|
+
*/
|
|
29036
|
+
export const openstackNetworksSetOk = (options) => {
|
|
29037
|
+
return (options.client ?? _heyApiClient).post({
|
|
29038
|
+
security: [
|
|
29039
|
+
{
|
|
29040
|
+
name: 'Authorization',
|
|
29041
|
+
type: 'apiKey'
|
|
29042
|
+
},
|
|
29043
|
+
{
|
|
29044
|
+
scheme: 'bearer',
|
|
29045
|
+
type: 'http'
|
|
29046
|
+
}
|
|
29047
|
+
],
|
|
29048
|
+
url: '/api/openstack-networks/{uuid}/set_ok/',
|
|
29049
|
+
...options
|
|
29050
|
+
});
|
|
29051
|
+
};
|
|
28480
29052
|
/**
|
|
28481
29053
|
* Unlink resource
|
|
28482
29054
|
* Delete resource from the database without scheduling operations on backend
|
|
@@ -28751,6 +29323,50 @@ export const openstackPortsPull = (options) => {
|
|
|
28751
29323
|
...options
|
|
28752
29324
|
});
|
|
28753
29325
|
};
|
|
29326
|
+
/**
|
|
29327
|
+
* Mark resource as ERRED
|
|
29328
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
29329
|
+
*/
|
|
29330
|
+
export const openstackPortsSetErred = (options) => {
|
|
29331
|
+
return (options.client ?? _heyApiClient).post({
|
|
29332
|
+
security: [
|
|
29333
|
+
{
|
|
29334
|
+
name: 'Authorization',
|
|
29335
|
+
type: 'apiKey'
|
|
29336
|
+
},
|
|
29337
|
+
{
|
|
29338
|
+
scheme: 'bearer',
|
|
29339
|
+
type: 'http'
|
|
29340
|
+
}
|
|
29341
|
+
],
|
|
29342
|
+
url: '/api/openstack-ports/{uuid}/set_erred/',
|
|
29343
|
+
...options,
|
|
29344
|
+
headers: {
|
|
29345
|
+
'Content-Type': 'application/json',
|
|
29346
|
+
...options.headers
|
|
29347
|
+
}
|
|
29348
|
+
});
|
|
29349
|
+
};
|
|
29350
|
+
/**
|
|
29351
|
+
* Mark resource as OK
|
|
29352
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
29353
|
+
*/
|
|
29354
|
+
export const openstackPortsSetOk = (options) => {
|
|
29355
|
+
return (options.client ?? _heyApiClient).post({
|
|
29356
|
+
security: [
|
|
29357
|
+
{
|
|
29358
|
+
name: 'Authorization',
|
|
29359
|
+
type: 'apiKey'
|
|
29360
|
+
},
|
|
29361
|
+
{
|
|
29362
|
+
scheme: 'bearer',
|
|
29363
|
+
type: 'http'
|
|
29364
|
+
}
|
|
29365
|
+
],
|
|
29366
|
+
url: '/api/openstack-ports/{uuid}/set_ok/',
|
|
29367
|
+
...options
|
|
29368
|
+
});
|
|
29369
|
+
};
|
|
28754
29370
|
/**
|
|
28755
29371
|
* Unlink resource
|
|
28756
29372
|
* Delete resource from the database without scheduling operations on backend
|
|
@@ -28973,6 +29589,50 @@ export const openstackRoutersRemoveRouterInterface = (options) => {
|
|
|
28973
29589
|
}
|
|
28974
29590
|
});
|
|
28975
29591
|
};
|
|
29592
|
+
/**
|
|
29593
|
+
* Mark router as ERRED
|
|
29594
|
+
* Manually transition the router to ERRED state. This is useful for routers stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
29595
|
+
*/
|
|
29596
|
+
export const openstackRoutersSetErred = (options) => {
|
|
29597
|
+
return (options.client ?? _heyApiClient).post({
|
|
29598
|
+
security: [
|
|
29599
|
+
{
|
|
29600
|
+
name: 'Authorization',
|
|
29601
|
+
type: 'apiKey'
|
|
29602
|
+
},
|
|
29603
|
+
{
|
|
29604
|
+
scheme: 'bearer',
|
|
29605
|
+
type: 'http'
|
|
29606
|
+
}
|
|
29607
|
+
],
|
|
29608
|
+
url: '/api/openstack-routers/{uuid}/set_erred/',
|
|
29609
|
+
...options,
|
|
29610
|
+
headers: {
|
|
29611
|
+
'Content-Type': 'application/json',
|
|
29612
|
+
...options.headers
|
|
29613
|
+
}
|
|
29614
|
+
});
|
|
29615
|
+
};
|
|
29616
|
+
/**
|
|
29617
|
+
* Mark router as OK
|
|
29618
|
+
* Manually transition the router to OK state and clear error fields. Staff-only operation.
|
|
29619
|
+
*/
|
|
29620
|
+
export const openstackRoutersSetOk = (options) => {
|
|
29621
|
+
return (options.client ?? _heyApiClient).post({
|
|
29622
|
+
security: [
|
|
29623
|
+
{
|
|
29624
|
+
name: 'Authorization',
|
|
29625
|
+
type: 'apiKey'
|
|
29626
|
+
},
|
|
29627
|
+
{
|
|
29628
|
+
scheme: 'bearer',
|
|
29629
|
+
type: 'http'
|
|
29630
|
+
}
|
|
29631
|
+
],
|
|
29632
|
+
url: '/api/openstack-routers/{uuid}/set_ok/',
|
|
29633
|
+
...options
|
|
29634
|
+
});
|
|
29635
|
+
};
|
|
28976
29636
|
/**
|
|
28977
29637
|
* Set static routes
|
|
28978
29638
|
* Define or overwrite the static routes for the router.
|
|
@@ -29141,6 +29801,50 @@ export const openstackSecurityGroupsPull = (options) => {
|
|
|
29141
29801
|
...options
|
|
29142
29802
|
});
|
|
29143
29803
|
};
|
|
29804
|
+
/**
|
|
29805
|
+
* Mark resource as ERRED
|
|
29806
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
29807
|
+
*/
|
|
29808
|
+
export const openstackSecurityGroupsSetErred = (options) => {
|
|
29809
|
+
return (options.client ?? _heyApiClient).post({
|
|
29810
|
+
security: [
|
|
29811
|
+
{
|
|
29812
|
+
name: 'Authorization',
|
|
29813
|
+
type: 'apiKey'
|
|
29814
|
+
},
|
|
29815
|
+
{
|
|
29816
|
+
scheme: 'bearer',
|
|
29817
|
+
type: 'http'
|
|
29818
|
+
}
|
|
29819
|
+
],
|
|
29820
|
+
url: '/api/openstack-security-groups/{uuid}/set_erred/',
|
|
29821
|
+
...options,
|
|
29822
|
+
headers: {
|
|
29823
|
+
'Content-Type': 'application/json',
|
|
29824
|
+
...options.headers
|
|
29825
|
+
}
|
|
29826
|
+
});
|
|
29827
|
+
};
|
|
29828
|
+
/**
|
|
29829
|
+
* Mark resource as OK
|
|
29830
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
29831
|
+
*/
|
|
29832
|
+
export const openstackSecurityGroupsSetOk = (options) => {
|
|
29833
|
+
return (options.client ?? _heyApiClient).post({
|
|
29834
|
+
security: [
|
|
29835
|
+
{
|
|
29836
|
+
name: 'Authorization',
|
|
29837
|
+
type: 'apiKey'
|
|
29838
|
+
},
|
|
29839
|
+
{
|
|
29840
|
+
scheme: 'bearer',
|
|
29841
|
+
type: 'http'
|
|
29842
|
+
}
|
|
29843
|
+
],
|
|
29844
|
+
url: '/api/openstack-security-groups/{uuid}/set_ok/',
|
|
29845
|
+
...options
|
|
29846
|
+
});
|
|
29847
|
+
};
|
|
29144
29848
|
/**
|
|
29145
29849
|
* Set security group rules
|
|
29146
29850
|
* Update the rules for a specific security group. This overwrites all existing rules.
|
|
@@ -29347,6 +30051,50 @@ export const openstackServerGroupsPull = (options) => {
|
|
|
29347
30051
|
...options
|
|
29348
30052
|
});
|
|
29349
30053
|
};
|
|
30054
|
+
/**
|
|
30055
|
+
* Mark resource as ERRED
|
|
30056
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
30057
|
+
*/
|
|
30058
|
+
export const openstackServerGroupsSetErred = (options) => {
|
|
30059
|
+
return (options.client ?? _heyApiClient).post({
|
|
30060
|
+
security: [
|
|
30061
|
+
{
|
|
30062
|
+
name: 'Authorization',
|
|
30063
|
+
type: 'apiKey'
|
|
30064
|
+
},
|
|
30065
|
+
{
|
|
30066
|
+
scheme: 'bearer',
|
|
30067
|
+
type: 'http'
|
|
30068
|
+
}
|
|
30069
|
+
],
|
|
30070
|
+
url: '/api/openstack-server-groups/{uuid}/set_erred/',
|
|
30071
|
+
...options,
|
|
30072
|
+
headers: {
|
|
30073
|
+
'Content-Type': 'application/json',
|
|
30074
|
+
...options.headers
|
|
30075
|
+
}
|
|
30076
|
+
});
|
|
30077
|
+
};
|
|
30078
|
+
/**
|
|
30079
|
+
* Mark resource as OK
|
|
30080
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
30081
|
+
*/
|
|
30082
|
+
export const openstackServerGroupsSetOk = (options) => {
|
|
30083
|
+
return (options.client ?? _heyApiClient).post({
|
|
30084
|
+
security: [
|
|
30085
|
+
{
|
|
30086
|
+
name: 'Authorization',
|
|
30087
|
+
type: 'apiKey'
|
|
30088
|
+
},
|
|
30089
|
+
{
|
|
30090
|
+
scheme: 'bearer',
|
|
30091
|
+
type: 'http'
|
|
30092
|
+
}
|
|
30093
|
+
],
|
|
30094
|
+
url: '/api/openstack-server-groups/{uuid}/set_ok/',
|
|
30095
|
+
...options
|
|
30096
|
+
});
|
|
30097
|
+
};
|
|
29350
30098
|
/**
|
|
29351
30099
|
* Unlink resource
|
|
29352
30100
|
* Delete resource from the database without scheduling operations on backend
|
|
@@ -29561,6 +30309,50 @@ export const openstackSnapshotsRestore = (options) => {
|
|
|
29561
30309
|
}
|
|
29562
30310
|
});
|
|
29563
30311
|
};
|
|
30312
|
+
/**
|
|
30313
|
+
* Mark resource as ERRED
|
|
30314
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
30315
|
+
*/
|
|
30316
|
+
export const openstackSnapshotsSetErred = (options) => {
|
|
30317
|
+
return (options.client ?? _heyApiClient).post({
|
|
30318
|
+
security: [
|
|
30319
|
+
{
|
|
30320
|
+
name: 'Authorization',
|
|
30321
|
+
type: 'apiKey'
|
|
30322
|
+
},
|
|
30323
|
+
{
|
|
30324
|
+
scheme: 'bearer',
|
|
30325
|
+
type: 'http'
|
|
30326
|
+
}
|
|
30327
|
+
],
|
|
30328
|
+
url: '/api/openstack-snapshots/{uuid}/set_erred/',
|
|
30329
|
+
...options,
|
|
30330
|
+
headers: {
|
|
30331
|
+
'Content-Type': 'application/json',
|
|
30332
|
+
...options.headers
|
|
30333
|
+
}
|
|
30334
|
+
});
|
|
30335
|
+
};
|
|
30336
|
+
/**
|
|
30337
|
+
* Mark resource as OK
|
|
30338
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
30339
|
+
*/
|
|
30340
|
+
export const openstackSnapshotsSetOk = (options) => {
|
|
30341
|
+
return (options.client ?? _heyApiClient).post({
|
|
30342
|
+
security: [
|
|
30343
|
+
{
|
|
30344
|
+
name: 'Authorization',
|
|
30345
|
+
type: 'apiKey'
|
|
30346
|
+
},
|
|
30347
|
+
{
|
|
30348
|
+
scheme: 'bearer',
|
|
30349
|
+
type: 'http'
|
|
30350
|
+
}
|
|
30351
|
+
],
|
|
30352
|
+
url: '/api/openstack-snapshots/{uuid}/set_ok/',
|
|
30353
|
+
...options
|
|
30354
|
+
});
|
|
30355
|
+
};
|
|
29564
30356
|
/**
|
|
29565
30357
|
* Unlink resource
|
|
29566
30358
|
* Delete resource from the database without scheduling operations on backend
|
|
@@ -29771,6 +30563,50 @@ export const openstackSubnetsPull = (options) => {
|
|
|
29771
30563
|
...options
|
|
29772
30564
|
});
|
|
29773
30565
|
};
|
|
30566
|
+
/**
|
|
30567
|
+
* Mark resource as ERRED
|
|
30568
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
30569
|
+
*/
|
|
30570
|
+
export const openstackSubnetsSetErred = (options) => {
|
|
30571
|
+
return (options.client ?? _heyApiClient).post({
|
|
30572
|
+
security: [
|
|
30573
|
+
{
|
|
30574
|
+
name: 'Authorization',
|
|
30575
|
+
type: 'apiKey'
|
|
30576
|
+
},
|
|
30577
|
+
{
|
|
30578
|
+
scheme: 'bearer',
|
|
30579
|
+
type: 'http'
|
|
30580
|
+
}
|
|
30581
|
+
],
|
|
30582
|
+
url: '/api/openstack-subnets/{uuid}/set_erred/',
|
|
30583
|
+
...options,
|
|
30584
|
+
headers: {
|
|
30585
|
+
'Content-Type': 'application/json',
|
|
30586
|
+
...options.headers
|
|
30587
|
+
}
|
|
30588
|
+
});
|
|
30589
|
+
};
|
|
30590
|
+
/**
|
|
30591
|
+
* Mark resource as OK
|
|
30592
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
30593
|
+
*/
|
|
30594
|
+
export const openstackSubnetsSetOk = (options) => {
|
|
30595
|
+
return (options.client ?? _heyApiClient).post({
|
|
30596
|
+
security: [
|
|
30597
|
+
{
|
|
30598
|
+
name: 'Authorization',
|
|
30599
|
+
type: 'apiKey'
|
|
30600
|
+
},
|
|
30601
|
+
{
|
|
30602
|
+
scheme: 'bearer',
|
|
30603
|
+
type: 'http'
|
|
30604
|
+
}
|
|
30605
|
+
],
|
|
30606
|
+
url: '/api/openstack-subnets/{uuid}/set_ok/',
|
|
30607
|
+
...options
|
|
30608
|
+
});
|
|
30609
|
+
};
|
|
29774
30610
|
/**
|
|
29775
30611
|
* Unlink resource
|
|
29776
30612
|
* Delete resource from the database without scheduling operations on backend
|
|
@@ -30191,6 +31027,50 @@ export const openstackTenantsPushSecurityGroups = (options) => {
|
|
|
30191
31027
|
}
|
|
30192
31028
|
});
|
|
30193
31029
|
};
|
|
31030
|
+
/**
|
|
31031
|
+
* Mark resource as ERRED
|
|
31032
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
31033
|
+
*/
|
|
31034
|
+
export const openstackTenantsSetErred = (options) => {
|
|
31035
|
+
return (options.client ?? _heyApiClient).post({
|
|
31036
|
+
security: [
|
|
31037
|
+
{
|
|
31038
|
+
name: 'Authorization',
|
|
31039
|
+
type: 'apiKey'
|
|
31040
|
+
},
|
|
31041
|
+
{
|
|
31042
|
+
scheme: 'bearer',
|
|
31043
|
+
type: 'http'
|
|
31044
|
+
}
|
|
31045
|
+
],
|
|
31046
|
+
url: '/api/openstack-tenants/{uuid}/set_erred/',
|
|
31047
|
+
...options,
|
|
31048
|
+
headers: {
|
|
31049
|
+
'Content-Type': 'application/json',
|
|
31050
|
+
...options.headers
|
|
31051
|
+
}
|
|
31052
|
+
});
|
|
31053
|
+
};
|
|
31054
|
+
/**
|
|
31055
|
+
* Mark resource as OK
|
|
31056
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
31057
|
+
*/
|
|
31058
|
+
export const openstackTenantsSetOk = (options) => {
|
|
31059
|
+
return (options.client ?? _heyApiClient).post({
|
|
31060
|
+
security: [
|
|
31061
|
+
{
|
|
31062
|
+
name: 'Authorization',
|
|
31063
|
+
type: 'apiKey'
|
|
31064
|
+
},
|
|
31065
|
+
{
|
|
31066
|
+
scheme: 'bearer',
|
|
31067
|
+
type: 'http'
|
|
31068
|
+
}
|
|
31069
|
+
],
|
|
31070
|
+
url: '/api/openstack-tenants/{uuid}/set_ok/',
|
|
31071
|
+
...options
|
|
31072
|
+
});
|
|
31073
|
+
};
|
|
30194
31074
|
/**
|
|
30195
31075
|
* Set tenant quotas
|
|
30196
31076
|
* A quota can be set for a particular tenant. Only staff users and service provider owners/managers can do that.
|
|
@@ -30643,6 +31523,50 @@ export const openstackVolumesRetype = (options) => {
|
|
|
30643
31523
|
}
|
|
30644
31524
|
});
|
|
30645
31525
|
};
|
|
31526
|
+
/**
|
|
31527
|
+
* Mark resource as ERRED
|
|
31528
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
31529
|
+
*/
|
|
31530
|
+
export const openstackVolumesSetErred = (options) => {
|
|
31531
|
+
return (options.client ?? _heyApiClient).post({
|
|
31532
|
+
security: [
|
|
31533
|
+
{
|
|
31534
|
+
name: 'Authorization',
|
|
31535
|
+
type: 'apiKey'
|
|
31536
|
+
},
|
|
31537
|
+
{
|
|
31538
|
+
scheme: 'bearer',
|
|
31539
|
+
type: 'http'
|
|
31540
|
+
}
|
|
31541
|
+
],
|
|
31542
|
+
url: '/api/openstack-volumes/{uuid}/set_erred/',
|
|
31543
|
+
...options,
|
|
31544
|
+
headers: {
|
|
31545
|
+
'Content-Type': 'application/json',
|
|
31546
|
+
...options.headers
|
|
31547
|
+
}
|
|
31548
|
+
});
|
|
31549
|
+
};
|
|
31550
|
+
/**
|
|
31551
|
+
* Mark resource as OK
|
|
31552
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
31553
|
+
*/
|
|
31554
|
+
export const openstackVolumesSetOk = (options) => {
|
|
31555
|
+
return (options.client ?? _heyApiClient).post({
|
|
31556
|
+
security: [
|
|
31557
|
+
{
|
|
31558
|
+
name: 'Authorization',
|
|
31559
|
+
type: 'apiKey'
|
|
31560
|
+
},
|
|
31561
|
+
{
|
|
31562
|
+
scheme: 'bearer',
|
|
31563
|
+
type: 'http'
|
|
31564
|
+
}
|
|
31565
|
+
],
|
|
31566
|
+
url: '/api/openstack-volumes/{uuid}/set_ok/',
|
|
31567
|
+
...options
|
|
31568
|
+
});
|
|
31569
|
+
};
|
|
30646
31570
|
/**
|
|
30647
31571
|
* Create volume snapshot
|
|
30648
31572
|
* Create snapshot from volume
|
|
@@ -34711,6 +35635,50 @@ export const rancherAppsPull = (options) => {
|
|
|
34711
35635
|
...options
|
|
34712
35636
|
});
|
|
34713
35637
|
};
|
|
35638
|
+
/**
|
|
35639
|
+
* Mark resource as ERRED
|
|
35640
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
35641
|
+
*/
|
|
35642
|
+
export const rancherAppsSetErred = (options) => {
|
|
35643
|
+
return (options.client ?? _heyApiClient).post({
|
|
35644
|
+
security: [
|
|
35645
|
+
{
|
|
35646
|
+
name: 'Authorization',
|
|
35647
|
+
type: 'apiKey'
|
|
35648
|
+
},
|
|
35649
|
+
{
|
|
35650
|
+
scheme: 'bearer',
|
|
35651
|
+
type: 'http'
|
|
35652
|
+
}
|
|
35653
|
+
],
|
|
35654
|
+
url: '/api/rancher-apps/{uuid}/set_erred/',
|
|
35655
|
+
...options,
|
|
35656
|
+
headers: {
|
|
35657
|
+
'Content-Type': 'application/json',
|
|
35658
|
+
...options.headers
|
|
35659
|
+
}
|
|
35660
|
+
});
|
|
35661
|
+
};
|
|
35662
|
+
/**
|
|
35663
|
+
* Mark resource as OK
|
|
35664
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
35665
|
+
*/
|
|
35666
|
+
export const rancherAppsSetOk = (options) => {
|
|
35667
|
+
return (options.client ?? _heyApiClient).post({
|
|
35668
|
+
security: [
|
|
35669
|
+
{
|
|
35670
|
+
name: 'Authorization',
|
|
35671
|
+
type: 'apiKey'
|
|
35672
|
+
},
|
|
35673
|
+
{
|
|
35674
|
+
scheme: 'bearer',
|
|
35675
|
+
type: 'http'
|
|
35676
|
+
}
|
|
35677
|
+
],
|
|
35678
|
+
url: '/api/rancher-apps/{uuid}/set_ok/',
|
|
35679
|
+
...options
|
|
35680
|
+
});
|
|
35681
|
+
};
|
|
34714
35682
|
/**
|
|
34715
35683
|
* Unlink resource
|
|
34716
35684
|
* Delete resource from the database without scheduling operations on backend
|
|
@@ -35173,6 +36141,50 @@ export const rancherClustersPull = (options) => {
|
|
|
35173
36141
|
...options
|
|
35174
36142
|
});
|
|
35175
36143
|
};
|
|
36144
|
+
/**
|
|
36145
|
+
* Mark resource as ERRED
|
|
36146
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
36147
|
+
*/
|
|
36148
|
+
export const rancherClustersSetErred = (options) => {
|
|
36149
|
+
return (options.client ?? _heyApiClient).post({
|
|
36150
|
+
security: [
|
|
36151
|
+
{
|
|
36152
|
+
name: 'Authorization',
|
|
36153
|
+
type: 'apiKey'
|
|
36154
|
+
},
|
|
36155
|
+
{
|
|
36156
|
+
scheme: 'bearer',
|
|
36157
|
+
type: 'http'
|
|
36158
|
+
}
|
|
36159
|
+
],
|
|
36160
|
+
url: '/api/rancher-clusters/{uuid}/set_erred/',
|
|
36161
|
+
...options,
|
|
36162
|
+
headers: {
|
|
36163
|
+
'Content-Type': 'application/json',
|
|
36164
|
+
...options.headers
|
|
36165
|
+
}
|
|
36166
|
+
});
|
|
36167
|
+
};
|
|
36168
|
+
/**
|
|
36169
|
+
* Mark resource as OK
|
|
36170
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
36171
|
+
*/
|
|
36172
|
+
export const rancherClustersSetOk = (options) => {
|
|
36173
|
+
return (options.client ?? _heyApiClient).post({
|
|
36174
|
+
security: [
|
|
36175
|
+
{
|
|
36176
|
+
name: 'Authorization',
|
|
36177
|
+
type: 'apiKey'
|
|
36178
|
+
},
|
|
36179
|
+
{
|
|
36180
|
+
scheme: 'bearer',
|
|
36181
|
+
type: 'http'
|
|
36182
|
+
}
|
|
36183
|
+
],
|
|
36184
|
+
url: '/api/rancher-clusters/{uuid}/set_ok/',
|
|
36185
|
+
...options
|
|
36186
|
+
});
|
|
36187
|
+
};
|
|
35176
36188
|
/**
|
|
35177
36189
|
* Unlink resource
|
|
35178
36190
|
* Delete resource from the database without scheduling operations on backend
|
|
@@ -35342,6 +36354,50 @@ export const rancherHpasPull = (options) => {
|
|
|
35342
36354
|
...options
|
|
35343
36355
|
});
|
|
35344
36356
|
};
|
|
36357
|
+
/**
|
|
36358
|
+
* Mark resource as ERRED
|
|
36359
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
36360
|
+
*/
|
|
36361
|
+
export const rancherHpasSetErred = (options) => {
|
|
36362
|
+
return (options.client ?? _heyApiClient).post({
|
|
36363
|
+
security: [
|
|
36364
|
+
{
|
|
36365
|
+
name: 'Authorization',
|
|
36366
|
+
type: 'apiKey'
|
|
36367
|
+
},
|
|
36368
|
+
{
|
|
36369
|
+
scheme: 'bearer',
|
|
36370
|
+
type: 'http'
|
|
36371
|
+
}
|
|
36372
|
+
],
|
|
36373
|
+
url: '/api/rancher-hpas/{uuid}/set_erred/',
|
|
36374
|
+
...options,
|
|
36375
|
+
headers: {
|
|
36376
|
+
'Content-Type': 'application/json',
|
|
36377
|
+
...options.headers
|
|
36378
|
+
}
|
|
36379
|
+
});
|
|
36380
|
+
};
|
|
36381
|
+
/**
|
|
36382
|
+
* Mark resource as OK
|
|
36383
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
36384
|
+
*/
|
|
36385
|
+
export const rancherHpasSetOk = (options) => {
|
|
36386
|
+
return (options.client ?? _heyApiClient).post({
|
|
36387
|
+
security: [
|
|
36388
|
+
{
|
|
36389
|
+
name: 'Authorization',
|
|
36390
|
+
type: 'apiKey'
|
|
36391
|
+
},
|
|
36392
|
+
{
|
|
36393
|
+
scheme: 'bearer',
|
|
36394
|
+
type: 'http'
|
|
36395
|
+
}
|
|
36396
|
+
],
|
|
36397
|
+
url: '/api/rancher-hpas/{uuid}/set_ok/',
|
|
36398
|
+
...options
|
|
36399
|
+
});
|
|
36400
|
+
};
|
|
35345
36401
|
/**
|
|
35346
36402
|
* Unlink resource
|
|
35347
36403
|
* Delete resource from the database without scheduling operations on backend
|
|
@@ -35547,6 +36603,50 @@ export const rancherIngressesPull = (options) => {
|
|
|
35547
36603
|
...options
|
|
35548
36604
|
});
|
|
35549
36605
|
};
|
|
36606
|
+
/**
|
|
36607
|
+
* Mark resource as ERRED
|
|
36608
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
36609
|
+
*/
|
|
36610
|
+
export const rancherIngressesSetErred = (options) => {
|
|
36611
|
+
return (options.client ?? _heyApiClient).post({
|
|
36612
|
+
security: [
|
|
36613
|
+
{
|
|
36614
|
+
name: 'Authorization',
|
|
36615
|
+
type: 'apiKey'
|
|
36616
|
+
},
|
|
36617
|
+
{
|
|
36618
|
+
scheme: 'bearer',
|
|
36619
|
+
type: 'http'
|
|
36620
|
+
}
|
|
36621
|
+
],
|
|
36622
|
+
url: '/api/rancher-ingresses/{uuid}/set_erred/',
|
|
36623
|
+
...options,
|
|
36624
|
+
headers: {
|
|
36625
|
+
'Content-Type': 'application/json',
|
|
36626
|
+
...options.headers
|
|
36627
|
+
}
|
|
36628
|
+
});
|
|
36629
|
+
};
|
|
36630
|
+
/**
|
|
36631
|
+
* Mark resource as OK
|
|
36632
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
36633
|
+
*/
|
|
36634
|
+
export const rancherIngressesSetOk = (options) => {
|
|
36635
|
+
return (options.client ?? _heyApiClient).post({
|
|
36636
|
+
security: [
|
|
36637
|
+
{
|
|
36638
|
+
name: 'Authorization',
|
|
36639
|
+
type: 'apiKey'
|
|
36640
|
+
},
|
|
36641
|
+
{
|
|
36642
|
+
scheme: 'bearer',
|
|
36643
|
+
type: 'http'
|
|
36644
|
+
}
|
|
36645
|
+
],
|
|
36646
|
+
url: '/api/rancher-ingresses/{uuid}/set_ok/',
|
|
36647
|
+
...options
|
|
36648
|
+
});
|
|
36649
|
+
};
|
|
35550
36650
|
/**
|
|
35551
36651
|
* Unlink resource
|
|
35552
36652
|
* Delete resource from the database without scheduling operations on backend
|
|
@@ -35824,6 +36924,50 @@ export const rancherNodesPull = (options) => {
|
|
|
35824
36924
|
...options
|
|
35825
36925
|
});
|
|
35826
36926
|
};
|
|
36927
|
+
/**
|
|
36928
|
+
* Mark resource as ERRED
|
|
36929
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
36930
|
+
*/
|
|
36931
|
+
export const rancherNodesSetErred = (options) => {
|
|
36932
|
+
return (options.client ?? _heyApiClient).post({
|
|
36933
|
+
security: [
|
|
36934
|
+
{
|
|
36935
|
+
name: 'Authorization',
|
|
36936
|
+
type: 'apiKey'
|
|
36937
|
+
},
|
|
36938
|
+
{
|
|
36939
|
+
scheme: 'bearer',
|
|
36940
|
+
type: 'http'
|
|
36941
|
+
}
|
|
36942
|
+
],
|
|
36943
|
+
url: '/api/rancher-nodes/{uuid}/set_erred/',
|
|
36944
|
+
...options,
|
|
36945
|
+
headers: {
|
|
36946
|
+
'Content-Type': 'application/json',
|
|
36947
|
+
...options.headers
|
|
36948
|
+
}
|
|
36949
|
+
});
|
|
36950
|
+
};
|
|
36951
|
+
/**
|
|
36952
|
+
* Mark resource as OK
|
|
36953
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
36954
|
+
*/
|
|
36955
|
+
export const rancherNodesSetOk = (options) => {
|
|
36956
|
+
return (options.client ?? _heyApiClient).post({
|
|
36957
|
+
security: [
|
|
36958
|
+
{
|
|
36959
|
+
name: 'Authorization',
|
|
36960
|
+
type: 'apiKey'
|
|
36961
|
+
},
|
|
36962
|
+
{
|
|
36963
|
+
scheme: 'bearer',
|
|
36964
|
+
type: 'http'
|
|
36965
|
+
}
|
|
36966
|
+
],
|
|
36967
|
+
url: '/api/rancher-nodes/{uuid}/set_ok/',
|
|
36968
|
+
...options
|
|
36969
|
+
});
|
|
36970
|
+
};
|
|
35827
36971
|
/**
|
|
35828
36972
|
* Unlink resource
|
|
35829
36973
|
* Delete resource from the database without scheduling operations on backend
|
|
@@ -36133,6 +37277,50 @@ export const rancherServicesPull = (options) => {
|
|
|
36133
37277
|
...options
|
|
36134
37278
|
});
|
|
36135
37279
|
};
|
|
37280
|
+
/**
|
|
37281
|
+
* Mark resource as ERRED
|
|
37282
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
37283
|
+
*/
|
|
37284
|
+
export const rancherServicesSetErred = (options) => {
|
|
37285
|
+
return (options.client ?? _heyApiClient).post({
|
|
37286
|
+
security: [
|
|
37287
|
+
{
|
|
37288
|
+
name: 'Authorization',
|
|
37289
|
+
type: 'apiKey'
|
|
37290
|
+
},
|
|
37291
|
+
{
|
|
37292
|
+
scheme: 'bearer',
|
|
37293
|
+
type: 'http'
|
|
37294
|
+
}
|
|
37295
|
+
],
|
|
37296
|
+
url: '/api/rancher-services/{uuid}/set_erred/',
|
|
37297
|
+
...options,
|
|
37298
|
+
headers: {
|
|
37299
|
+
'Content-Type': 'application/json',
|
|
37300
|
+
...options.headers
|
|
37301
|
+
}
|
|
37302
|
+
});
|
|
37303
|
+
};
|
|
37304
|
+
/**
|
|
37305
|
+
* Mark resource as OK
|
|
37306
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
37307
|
+
*/
|
|
37308
|
+
export const rancherServicesSetOk = (options) => {
|
|
37309
|
+
return (options.client ?? _heyApiClient).post({
|
|
37310
|
+
security: [
|
|
37311
|
+
{
|
|
37312
|
+
name: 'Authorization',
|
|
37313
|
+
type: 'apiKey'
|
|
37314
|
+
},
|
|
37315
|
+
{
|
|
37316
|
+
scheme: 'bearer',
|
|
37317
|
+
type: 'http'
|
|
37318
|
+
}
|
|
37319
|
+
],
|
|
37320
|
+
url: '/api/rancher-services/{uuid}/set_ok/',
|
|
37321
|
+
...options
|
|
37322
|
+
});
|
|
37323
|
+
};
|
|
36136
37324
|
/**
|
|
36137
37325
|
* Unlink resource
|
|
36138
37326
|
* Delete resource from the database without scheduling operations on backend
|
|
@@ -38545,6 +39733,30 @@ export const slurmAllocationsPull = (options) => {
|
|
|
38545
39733
|
...options
|
|
38546
39734
|
});
|
|
38547
39735
|
};
|
|
39736
|
+
/**
|
|
39737
|
+
* Mark resource as ERRED
|
|
39738
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
39739
|
+
*/
|
|
39740
|
+
export const slurmAllocationsSetErred = (options) => {
|
|
39741
|
+
return (options.client ?? _heyApiClient).post({
|
|
39742
|
+
security: [
|
|
39743
|
+
{
|
|
39744
|
+
name: 'Authorization',
|
|
39745
|
+
type: 'apiKey'
|
|
39746
|
+
},
|
|
39747
|
+
{
|
|
39748
|
+
scheme: 'bearer',
|
|
39749
|
+
type: 'http'
|
|
39750
|
+
}
|
|
39751
|
+
],
|
|
39752
|
+
url: '/api/slurm-allocations/{uuid}/set_erred/',
|
|
39753
|
+
...options,
|
|
39754
|
+
headers: {
|
|
39755
|
+
'Content-Type': 'application/json',
|
|
39756
|
+
...options.headers
|
|
39757
|
+
}
|
|
39758
|
+
});
|
|
39759
|
+
};
|
|
38548
39760
|
export const slurmAllocationsSetLimits = (options) => {
|
|
38549
39761
|
return (options.client ?? _heyApiClient).post({
|
|
38550
39762
|
security: [
|
|
@@ -38565,6 +39777,26 @@ export const slurmAllocationsSetLimits = (options) => {
|
|
|
38565
39777
|
}
|
|
38566
39778
|
});
|
|
38567
39779
|
};
|
|
39780
|
+
/**
|
|
39781
|
+
* Mark resource as OK
|
|
39782
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
39783
|
+
*/
|
|
39784
|
+
export const slurmAllocationsSetOk = (options) => {
|
|
39785
|
+
return (options.client ?? _heyApiClient).post({
|
|
39786
|
+
security: [
|
|
39787
|
+
{
|
|
39788
|
+
name: 'Authorization',
|
|
39789
|
+
type: 'apiKey'
|
|
39790
|
+
},
|
|
39791
|
+
{
|
|
39792
|
+
scheme: 'bearer',
|
|
39793
|
+
type: 'http'
|
|
39794
|
+
}
|
|
39795
|
+
],
|
|
39796
|
+
url: '/api/slurm-allocations/{uuid}/set_ok/',
|
|
39797
|
+
...options
|
|
39798
|
+
});
|
|
39799
|
+
};
|
|
38568
39800
|
/**
|
|
38569
39801
|
* Unlink resource
|
|
38570
39802
|
* Delete resource from the database without scheduling operations on backend
|
|
@@ -38785,6 +40017,50 @@ export const slurmJobsPull = (options) => {
|
|
|
38785
40017
|
...options
|
|
38786
40018
|
});
|
|
38787
40019
|
};
|
|
40020
|
+
/**
|
|
40021
|
+
* Mark resource as ERRED
|
|
40022
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
40023
|
+
*/
|
|
40024
|
+
export const slurmJobsSetErred = (options) => {
|
|
40025
|
+
return (options.client ?? _heyApiClient).post({
|
|
40026
|
+
security: [
|
|
40027
|
+
{
|
|
40028
|
+
name: 'Authorization',
|
|
40029
|
+
type: 'apiKey'
|
|
40030
|
+
},
|
|
40031
|
+
{
|
|
40032
|
+
scheme: 'bearer',
|
|
40033
|
+
type: 'http'
|
|
40034
|
+
}
|
|
40035
|
+
],
|
|
40036
|
+
url: '/api/slurm-jobs/{uuid}/set_erred/',
|
|
40037
|
+
...options,
|
|
40038
|
+
headers: {
|
|
40039
|
+
'Content-Type': 'application/json',
|
|
40040
|
+
...options.headers
|
|
40041
|
+
}
|
|
40042
|
+
});
|
|
40043
|
+
};
|
|
40044
|
+
/**
|
|
40045
|
+
* Mark resource as OK
|
|
40046
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
40047
|
+
*/
|
|
40048
|
+
export const slurmJobsSetOk = (options) => {
|
|
40049
|
+
return (options.client ?? _heyApiClient).post({
|
|
40050
|
+
security: [
|
|
40051
|
+
{
|
|
40052
|
+
name: 'Authorization',
|
|
40053
|
+
type: 'apiKey'
|
|
40054
|
+
},
|
|
40055
|
+
{
|
|
40056
|
+
scheme: 'bearer',
|
|
40057
|
+
type: 'http'
|
|
40058
|
+
}
|
|
40059
|
+
],
|
|
40060
|
+
url: '/api/slurm-jobs/{uuid}/set_ok/',
|
|
40061
|
+
...options
|
|
40062
|
+
});
|
|
40063
|
+
};
|
|
38788
40064
|
/**
|
|
38789
40065
|
* Unlink resource
|
|
38790
40066
|
* Delete resource from the database without scheduling operations on backend
|
|
@@ -42328,6 +43604,50 @@ export const vmwareDisksPull = (options) => {
|
|
|
42328
43604
|
...options
|
|
42329
43605
|
});
|
|
42330
43606
|
};
|
|
43607
|
+
/**
|
|
43608
|
+
* Mark resource as ERRED
|
|
43609
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
43610
|
+
*/
|
|
43611
|
+
export const vmwareDisksSetErred = (options) => {
|
|
43612
|
+
return (options.client ?? _heyApiClient).post({
|
|
43613
|
+
security: [
|
|
43614
|
+
{
|
|
43615
|
+
name: 'Authorization',
|
|
43616
|
+
type: 'apiKey'
|
|
43617
|
+
},
|
|
43618
|
+
{
|
|
43619
|
+
scheme: 'bearer',
|
|
43620
|
+
type: 'http'
|
|
43621
|
+
}
|
|
43622
|
+
],
|
|
43623
|
+
url: '/api/vmware-disks/{uuid}/set_erred/',
|
|
43624
|
+
...options,
|
|
43625
|
+
headers: {
|
|
43626
|
+
'Content-Type': 'application/json',
|
|
43627
|
+
...options.headers
|
|
43628
|
+
}
|
|
43629
|
+
});
|
|
43630
|
+
};
|
|
43631
|
+
/**
|
|
43632
|
+
* Mark resource as OK
|
|
43633
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
43634
|
+
*/
|
|
43635
|
+
export const vmwareDisksSetOk = (options) => {
|
|
43636
|
+
return (options.client ?? _heyApiClient).post({
|
|
43637
|
+
security: [
|
|
43638
|
+
{
|
|
43639
|
+
name: 'Authorization',
|
|
43640
|
+
type: 'apiKey'
|
|
43641
|
+
},
|
|
43642
|
+
{
|
|
43643
|
+
scheme: 'bearer',
|
|
43644
|
+
type: 'http'
|
|
43645
|
+
}
|
|
43646
|
+
],
|
|
43647
|
+
url: '/api/vmware-disks/{uuid}/set_ok/',
|
|
43648
|
+
...options
|
|
43649
|
+
});
|
|
43650
|
+
};
|
|
42331
43651
|
/**
|
|
42332
43652
|
* Unlink resource
|
|
42333
43653
|
* Delete resource from the database without scheduling operations on backend
|
|
@@ -42555,6 +43875,50 @@ export const vmwarePortsPull = (options) => {
|
|
|
42555
43875
|
...options
|
|
42556
43876
|
});
|
|
42557
43877
|
};
|
|
43878
|
+
/**
|
|
43879
|
+
* Mark resource as ERRED
|
|
43880
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
43881
|
+
*/
|
|
43882
|
+
export const vmwarePortsSetErred = (options) => {
|
|
43883
|
+
return (options.client ?? _heyApiClient).post({
|
|
43884
|
+
security: [
|
|
43885
|
+
{
|
|
43886
|
+
name: 'Authorization',
|
|
43887
|
+
type: 'apiKey'
|
|
43888
|
+
},
|
|
43889
|
+
{
|
|
43890
|
+
scheme: 'bearer',
|
|
43891
|
+
type: 'http'
|
|
43892
|
+
}
|
|
43893
|
+
],
|
|
43894
|
+
url: '/api/vmware-ports/{uuid}/set_erred/',
|
|
43895
|
+
...options,
|
|
43896
|
+
headers: {
|
|
43897
|
+
'Content-Type': 'application/json',
|
|
43898
|
+
...options.headers
|
|
43899
|
+
}
|
|
43900
|
+
});
|
|
43901
|
+
};
|
|
43902
|
+
/**
|
|
43903
|
+
* Mark resource as OK
|
|
43904
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
43905
|
+
*/
|
|
43906
|
+
export const vmwarePortsSetOk = (options) => {
|
|
43907
|
+
return (options.client ?? _heyApiClient).post({
|
|
43908
|
+
security: [
|
|
43909
|
+
{
|
|
43910
|
+
name: 'Authorization',
|
|
43911
|
+
type: 'apiKey'
|
|
43912
|
+
},
|
|
43913
|
+
{
|
|
43914
|
+
scheme: 'bearer',
|
|
43915
|
+
type: 'http'
|
|
43916
|
+
}
|
|
43917
|
+
],
|
|
43918
|
+
url: '/api/vmware-ports/{uuid}/set_ok/',
|
|
43919
|
+
...options
|
|
43920
|
+
});
|
|
43921
|
+
};
|
|
42558
43922
|
/**
|
|
42559
43923
|
* Unlink resource
|
|
42560
43924
|
* Delete resource from the database without scheduling operations on backend
|
|
@@ -42866,6 +44230,50 @@ export const vmwareVirtualMachineReset = (options) => {
|
|
|
42866
44230
|
...options
|
|
42867
44231
|
});
|
|
42868
44232
|
};
|
|
44233
|
+
/**
|
|
44234
|
+
* Mark resource as ERRED
|
|
44235
|
+
* Manually transition the resource to ERRED state. This is useful for resources stuck in transitional states (CREATING, UPDATING, DELETING) that cannot be synced via pull. Staff-only operation.
|
|
44236
|
+
*/
|
|
44237
|
+
export const vmwareVirtualMachineSetErred = (options) => {
|
|
44238
|
+
return (options.client ?? _heyApiClient).post({
|
|
44239
|
+
security: [
|
|
44240
|
+
{
|
|
44241
|
+
name: 'Authorization',
|
|
44242
|
+
type: 'apiKey'
|
|
44243
|
+
},
|
|
44244
|
+
{
|
|
44245
|
+
scheme: 'bearer',
|
|
44246
|
+
type: 'http'
|
|
44247
|
+
}
|
|
44248
|
+
],
|
|
44249
|
+
url: '/api/vmware-virtual-machine/{uuid}/set_erred/',
|
|
44250
|
+
...options,
|
|
44251
|
+
headers: {
|
|
44252
|
+
'Content-Type': 'application/json',
|
|
44253
|
+
...options.headers
|
|
44254
|
+
}
|
|
44255
|
+
});
|
|
44256
|
+
};
|
|
44257
|
+
/**
|
|
44258
|
+
* Mark resource as OK
|
|
44259
|
+
* Manually transition the resource to OK state and clear error fields. Staff-only operation.
|
|
44260
|
+
*/
|
|
44261
|
+
export const vmwareVirtualMachineSetOk = (options) => {
|
|
44262
|
+
return (options.client ?? _heyApiClient).post({
|
|
44263
|
+
security: [
|
|
44264
|
+
{
|
|
44265
|
+
name: 'Authorization',
|
|
44266
|
+
type: 'apiKey'
|
|
44267
|
+
},
|
|
44268
|
+
{
|
|
44269
|
+
scheme: 'bearer',
|
|
44270
|
+
type: 'http'
|
|
44271
|
+
}
|
|
44272
|
+
],
|
|
44273
|
+
url: '/api/vmware-virtual-machine/{uuid}/set_ok/',
|
|
44274
|
+
...options
|
|
44275
|
+
});
|
|
44276
|
+
};
|
|
42869
44277
|
export const vmwareVirtualMachineShutdownGuest = (options) => {
|
|
42870
44278
|
return (options.client ?? _heyApiClient).post({
|
|
42871
44279
|
security: [
|