waldur-js-client 7.6.8 → 7.6.9
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 +41 -1
- package/dist/sdk.gen.js +463 -0
- package/dist/types.gen.d.ts +558 -20
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -6791,6 +6791,450 @@ export const marketplaceIntegrationStatusesRetrieve = (options) => {
|
|
|
6791
6791
|
...options
|
|
6792
6792
|
});
|
|
6793
6793
|
};
|
|
6794
|
+
/**
|
|
6795
|
+
* Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
6796
|
+
*/
|
|
6797
|
+
export const marketplaceMaintenanceAnnouncementOfferingsList = (options) => {
|
|
6798
|
+
return (options?.client ?? _heyApiClient).get({
|
|
6799
|
+
security: [
|
|
6800
|
+
{
|
|
6801
|
+
name: 'Authorization',
|
|
6802
|
+
type: 'apiKey'
|
|
6803
|
+
},
|
|
6804
|
+
{
|
|
6805
|
+
scheme: 'bearer',
|
|
6806
|
+
type: 'http'
|
|
6807
|
+
}
|
|
6808
|
+
],
|
|
6809
|
+
url: '/api/marketplace-maintenance-announcement-offerings/',
|
|
6810
|
+
...options
|
|
6811
|
+
});
|
|
6812
|
+
};
|
|
6813
|
+
export const marketplaceMaintenanceAnnouncementOfferingsCreate = (options) => {
|
|
6814
|
+
return (options.client ?? _heyApiClient).post({
|
|
6815
|
+
security: [
|
|
6816
|
+
{
|
|
6817
|
+
name: 'Authorization',
|
|
6818
|
+
type: 'apiKey'
|
|
6819
|
+
},
|
|
6820
|
+
{
|
|
6821
|
+
scheme: 'bearer',
|
|
6822
|
+
type: 'http'
|
|
6823
|
+
}
|
|
6824
|
+
],
|
|
6825
|
+
url: '/api/marketplace-maintenance-announcement-offerings/',
|
|
6826
|
+
...options,
|
|
6827
|
+
headers: {
|
|
6828
|
+
'Content-Type': 'application/json',
|
|
6829
|
+
...options.headers
|
|
6830
|
+
}
|
|
6831
|
+
});
|
|
6832
|
+
};
|
|
6833
|
+
export const marketplaceMaintenanceAnnouncementOfferingsDestroy = (options) => {
|
|
6834
|
+
return (options.client ?? _heyApiClient).delete({
|
|
6835
|
+
security: [
|
|
6836
|
+
{
|
|
6837
|
+
name: 'Authorization',
|
|
6838
|
+
type: 'apiKey'
|
|
6839
|
+
},
|
|
6840
|
+
{
|
|
6841
|
+
scheme: 'bearer',
|
|
6842
|
+
type: 'http'
|
|
6843
|
+
}
|
|
6844
|
+
],
|
|
6845
|
+
url: '/api/marketplace-maintenance-announcement-offerings/{uuid}/',
|
|
6846
|
+
...options
|
|
6847
|
+
});
|
|
6848
|
+
};
|
|
6849
|
+
export const marketplaceMaintenanceAnnouncementOfferingsRetrieve = (options) => {
|
|
6850
|
+
return (options.client ?? _heyApiClient).get({
|
|
6851
|
+
security: [
|
|
6852
|
+
{
|
|
6853
|
+
name: 'Authorization',
|
|
6854
|
+
type: 'apiKey'
|
|
6855
|
+
},
|
|
6856
|
+
{
|
|
6857
|
+
scheme: 'bearer',
|
|
6858
|
+
type: 'http'
|
|
6859
|
+
}
|
|
6860
|
+
],
|
|
6861
|
+
url: '/api/marketplace-maintenance-announcement-offerings/{uuid}/',
|
|
6862
|
+
...options
|
|
6863
|
+
});
|
|
6864
|
+
};
|
|
6865
|
+
export const marketplaceMaintenanceAnnouncementOfferingsPartialUpdate = (options) => {
|
|
6866
|
+
return (options.client ?? _heyApiClient).patch({
|
|
6867
|
+
security: [
|
|
6868
|
+
{
|
|
6869
|
+
name: 'Authorization',
|
|
6870
|
+
type: 'apiKey'
|
|
6871
|
+
},
|
|
6872
|
+
{
|
|
6873
|
+
scheme: 'bearer',
|
|
6874
|
+
type: 'http'
|
|
6875
|
+
}
|
|
6876
|
+
],
|
|
6877
|
+
url: '/api/marketplace-maintenance-announcement-offerings/{uuid}/',
|
|
6878
|
+
...options,
|
|
6879
|
+
headers: {
|
|
6880
|
+
'Content-Type': 'application/json',
|
|
6881
|
+
...options.headers
|
|
6882
|
+
}
|
|
6883
|
+
});
|
|
6884
|
+
};
|
|
6885
|
+
export const marketplaceMaintenanceAnnouncementOfferingsUpdate = (options) => {
|
|
6886
|
+
return (options.client ?? _heyApiClient).put({
|
|
6887
|
+
security: [
|
|
6888
|
+
{
|
|
6889
|
+
name: 'Authorization',
|
|
6890
|
+
type: 'apiKey'
|
|
6891
|
+
},
|
|
6892
|
+
{
|
|
6893
|
+
scheme: 'bearer',
|
|
6894
|
+
type: 'http'
|
|
6895
|
+
}
|
|
6896
|
+
],
|
|
6897
|
+
url: '/api/marketplace-maintenance-announcement-offerings/{uuid}/',
|
|
6898
|
+
...options,
|
|
6899
|
+
headers: {
|
|
6900
|
+
'Content-Type': 'application/json',
|
|
6901
|
+
...options.headers
|
|
6902
|
+
}
|
|
6903
|
+
});
|
|
6904
|
+
};
|
|
6905
|
+
/**
|
|
6906
|
+
* Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
6907
|
+
*/
|
|
6908
|
+
export const marketplaceMaintenanceAnnouncementTemplateOfferingsList = (options) => {
|
|
6909
|
+
return (options?.client ?? _heyApiClient).get({
|
|
6910
|
+
security: [
|
|
6911
|
+
{
|
|
6912
|
+
name: 'Authorization',
|
|
6913
|
+
type: 'apiKey'
|
|
6914
|
+
},
|
|
6915
|
+
{
|
|
6916
|
+
scheme: 'bearer',
|
|
6917
|
+
type: 'http'
|
|
6918
|
+
}
|
|
6919
|
+
],
|
|
6920
|
+
url: '/api/marketplace-maintenance-announcement-template-offerings/',
|
|
6921
|
+
...options
|
|
6922
|
+
});
|
|
6923
|
+
};
|
|
6924
|
+
export const marketplaceMaintenanceAnnouncementTemplateOfferingsCreate = (options) => {
|
|
6925
|
+
return (options.client ?? _heyApiClient).post({
|
|
6926
|
+
security: [
|
|
6927
|
+
{
|
|
6928
|
+
name: 'Authorization',
|
|
6929
|
+
type: 'apiKey'
|
|
6930
|
+
},
|
|
6931
|
+
{
|
|
6932
|
+
scheme: 'bearer',
|
|
6933
|
+
type: 'http'
|
|
6934
|
+
}
|
|
6935
|
+
],
|
|
6936
|
+
url: '/api/marketplace-maintenance-announcement-template-offerings/',
|
|
6937
|
+
...options,
|
|
6938
|
+
headers: {
|
|
6939
|
+
'Content-Type': 'application/json',
|
|
6940
|
+
...options.headers
|
|
6941
|
+
}
|
|
6942
|
+
});
|
|
6943
|
+
};
|
|
6944
|
+
export const marketplaceMaintenanceAnnouncementTemplateOfferingsDestroy = (options) => {
|
|
6945
|
+
return (options.client ?? _heyApiClient).delete({
|
|
6946
|
+
security: [
|
|
6947
|
+
{
|
|
6948
|
+
name: 'Authorization',
|
|
6949
|
+
type: 'apiKey'
|
|
6950
|
+
},
|
|
6951
|
+
{
|
|
6952
|
+
scheme: 'bearer',
|
|
6953
|
+
type: 'http'
|
|
6954
|
+
}
|
|
6955
|
+
],
|
|
6956
|
+
url: '/api/marketplace-maintenance-announcement-template-offerings/{uuid}/',
|
|
6957
|
+
...options
|
|
6958
|
+
});
|
|
6959
|
+
};
|
|
6960
|
+
export const marketplaceMaintenanceAnnouncementTemplateOfferingsRetrieve = (options) => {
|
|
6961
|
+
return (options.client ?? _heyApiClient).get({
|
|
6962
|
+
security: [
|
|
6963
|
+
{
|
|
6964
|
+
name: 'Authorization',
|
|
6965
|
+
type: 'apiKey'
|
|
6966
|
+
},
|
|
6967
|
+
{
|
|
6968
|
+
scheme: 'bearer',
|
|
6969
|
+
type: 'http'
|
|
6970
|
+
}
|
|
6971
|
+
],
|
|
6972
|
+
url: '/api/marketplace-maintenance-announcement-template-offerings/{uuid}/',
|
|
6973
|
+
...options
|
|
6974
|
+
});
|
|
6975
|
+
};
|
|
6976
|
+
export const marketplaceMaintenanceAnnouncementTemplateOfferingsPartialUpdate = (options) => {
|
|
6977
|
+
return (options.client ?? _heyApiClient).patch({
|
|
6978
|
+
security: [
|
|
6979
|
+
{
|
|
6980
|
+
name: 'Authorization',
|
|
6981
|
+
type: 'apiKey'
|
|
6982
|
+
},
|
|
6983
|
+
{
|
|
6984
|
+
scheme: 'bearer',
|
|
6985
|
+
type: 'http'
|
|
6986
|
+
}
|
|
6987
|
+
],
|
|
6988
|
+
url: '/api/marketplace-maintenance-announcement-template-offerings/{uuid}/',
|
|
6989
|
+
...options,
|
|
6990
|
+
headers: {
|
|
6991
|
+
'Content-Type': 'application/json',
|
|
6992
|
+
...options.headers
|
|
6993
|
+
}
|
|
6994
|
+
});
|
|
6995
|
+
};
|
|
6996
|
+
export const marketplaceMaintenanceAnnouncementTemplateOfferingsUpdate = (options) => {
|
|
6997
|
+
return (options.client ?? _heyApiClient).put({
|
|
6998
|
+
security: [
|
|
6999
|
+
{
|
|
7000
|
+
name: 'Authorization',
|
|
7001
|
+
type: 'apiKey'
|
|
7002
|
+
},
|
|
7003
|
+
{
|
|
7004
|
+
scheme: 'bearer',
|
|
7005
|
+
type: 'http'
|
|
7006
|
+
}
|
|
7007
|
+
],
|
|
7008
|
+
url: '/api/marketplace-maintenance-announcement-template-offerings/{uuid}/',
|
|
7009
|
+
...options,
|
|
7010
|
+
headers: {
|
|
7011
|
+
'Content-Type': 'application/json',
|
|
7012
|
+
...options.headers
|
|
7013
|
+
}
|
|
7014
|
+
});
|
|
7015
|
+
};
|
|
7016
|
+
/**
|
|
7017
|
+
* Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
7018
|
+
*/
|
|
7019
|
+
export const marketplaceMaintenanceAnnouncementsList = (options) => {
|
|
7020
|
+
return (options?.client ?? _heyApiClient).get({
|
|
7021
|
+
security: [
|
|
7022
|
+
{
|
|
7023
|
+
name: 'Authorization',
|
|
7024
|
+
type: 'apiKey'
|
|
7025
|
+
},
|
|
7026
|
+
{
|
|
7027
|
+
scheme: 'bearer',
|
|
7028
|
+
type: 'http'
|
|
7029
|
+
}
|
|
7030
|
+
],
|
|
7031
|
+
url: '/api/marketplace-maintenance-announcements/',
|
|
7032
|
+
...options
|
|
7033
|
+
});
|
|
7034
|
+
};
|
|
7035
|
+
export const marketplaceMaintenanceAnnouncementsCreate = (options) => {
|
|
7036
|
+
return (options.client ?? _heyApiClient).post({
|
|
7037
|
+
security: [
|
|
7038
|
+
{
|
|
7039
|
+
name: 'Authorization',
|
|
7040
|
+
type: 'apiKey'
|
|
7041
|
+
},
|
|
7042
|
+
{
|
|
7043
|
+
scheme: 'bearer',
|
|
7044
|
+
type: 'http'
|
|
7045
|
+
}
|
|
7046
|
+
],
|
|
7047
|
+
url: '/api/marketplace-maintenance-announcements/',
|
|
7048
|
+
...options,
|
|
7049
|
+
headers: {
|
|
7050
|
+
'Content-Type': 'application/json',
|
|
7051
|
+
...options.headers
|
|
7052
|
+
}
|
|
7053
|
+
});
|
|
7054
|
+
};
|
|
7055
|
+
/**
|
|
7056
|
+
* Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
7057
|
+
*/
|
|
7058
|
+
export const marketplaceMaintenanceAnnouncementsTemplateList = (options) => {
|
|
7059
|
+
return (options?.client ?? _heyApiClient).get({
|
|
7060
|
+
security: [
|
|
7061
|
+
{
|
|
7062
|
+
name: 'Authorization',
|
|
7063
|
+
type: 'apiKey'
|
|
7064
|
+
},
|
|
7065
|
+
{
|
|
7066
|
+
scheme: 'bearer',
|
|
7067
|
+
type: 'http'
|
|
7068
|
+
}
|
|
7069
|
+
],
|
|
7070
|
+
url: '/api/marketplace-maintenance-announcements-template/',
|
|
7071
|
+
...options
|
|
7072
|
+
});
|
|
7073
|
+
};
|
|
7074
|
+
export const marketplaceMaintenanceAnnouncementsTemplateCreate = (options) => {
|
|
7075
|
+
return (options.client ?? _heyApiClient).post({
|
|
7076
|
+
security: [
|
|
7077
|
+
{
|
|
7078
|
+
name: 'Authorization',
|
|
7079
|
+
type: 'apiKey'
|
|
7080
|
+
},
|
|
7081
|
+
{
|
|
7082
|
+
scheme: 'bearer',
|
|
7083
|
+
type: 'http'
|
|
7084
|
+
}
|
|
7085
|
+
],
|
|
7086
|
+
url: '/api/marketplace-maintenance-announcements-template/',
|
|
7087
|
+
...options,
|
|
7088
|
+
headers: {
|
|
7089
|
+
'Content-Type': 'application/json',
|
|
7090
|
+
...options.headers
|
|
7091
|
+
}
|
|
7092
|
+
});
|
|
7093
|
+
};
|
|
7094
|
+
export const marketplaceMaintenanceAnnouncementsTemplateDestroy = (options) => {
|
|
7095
|
+
return (options.client ?? _heyApiClient).delete({
|
|
7096
|
+
security: [
|
|
7097
|
+
{
|
|
7098
|
+
name: 'Authorization',
|
|
7099
|
+
type: 'apiKey'
|
|
7100
|
+
},
|
|
7101
|
+
{
|
|
7102
|
+
scheme: 'bearer',
|
|
7103
|
+
type: 'http'
|
|
7104
|
+
}
|
|
7105
|
+
],
|
|
7106
|
+
url: '/api/marketplace-maintenance-announcements-template/{uuid}/',
|
|
7107
|
+
...options
|
|
7108
|
+
});
|
|
7109
|
+
};
|
|
7110
|
+
export const marketplaceMaintenanceAnnouncementsTemplateRetrieve = (options) => {
|
|
7111
|
+
return (options.client ?? _heyApiClient).get({
|
|
7112
|
+
security: [
|
|
7113
|
+
{
|
|
7114
|
+
name: 'Authorization',
|
|
7115
|
+
type: 'apiKey'
|
|
7116
|
+
},
|
|
7117
|
+
{
|
|
7118
|
+
scheme: 'bearer',
|
|
7119
|
+
type: 'http'
|
|
7120
|
+
}
|
|
7121
|
+
],
|
|
7122
|
+
url: '/api/marketplace-maintenance-announcements-template/{uuid}/',
|
|
7123
|
+
...options
|
|
7124
|
+
});
|
|
7125
|
+
};
|
|
7126
|
+
export const marketplaceMaintenanceAnnouncementsTemplatePartialUpdate = (options) => {
|
|
7127
|
+
return (options.client ?? _heyApiClient).patch({
|
|
7128
|
+
security: [
|
|
7129
|
+
{
|
|
7130
|
+
name: 'Authorization',
|
|
7131
|
+
type: 'apiKey'
|
|
7132
|
+
},
|
|
7133
|
+
{
|
|
7134
|
+
scheme: 'bearer',
|
|
7135
|
+
type: 'http'
|
|
7136
|
+
}
|
|
7137
|
+
],
|
|
7138
|
+
url: '/api/marketplace-maintenance-announcements-template/{uuid}/',
|
|
7139
|
+
...options,
|
|
7140
|
+
headers: {
|
|
7141
|
+
'Content-Type': 'application/json',
|
|
7142
|
+
...options.headers
|
|
7143
|
+
}
|
|
7144
|
+
});
|
|
7145
|
+
};
|
|
7146
|
+
export const marketplaceMaintenanceAnnouncementsTemplateUpdate = (options) => {
|
|
7147
|
+
return (options.client ?? _heyApiClient).put({
|
|
7148
|
+
security: [
|
|
7149
|
+
{
|
|
7150
|
+
name: 'Authorization',
|
|
7151
|
+
type: 'apiKey'
|
|
7152
|
+
},
|
|
7153
|
+
{
|
|
7154
|
+
scheme: 'bearer',
|
|
7155
|
+
type: 'http'
|
|
7156
|
+
}
|
|
7157
|
+
],
|
|
7158
|
+
url: '/api/marketplace-maintenance-announcements-template/{uuid}/',
|
|
7159
|
+
...options,
|
|
7160
|
+
headers: {
|
|
7161
|
+
'Content-Type': 'application/json',
|
|
7162
|
+
...options.headers
|
|
7163
|
+
}
|
|
7164
|
+
});
|
|
7165
|
+
};
|
|
7166
|
+
export const marketplaceMaintenanceAnnouncementsDestroy = (options) => {
|
|
7167
|
+
return (options.client ?? _heyApiClient).delete({
|
|
7168
|
+
security: [
|
|
7169
|
+
{
|
|
7170
|
+
name: 'Authorization',
|
|
7171
|
+
type: 'apiKey'
|
|
7172
|
+
},
|
|
7173
|
+
{
|
|
7174
|
+
scheme: 'bearer',
|
|
7175
|
+
type: 'http'
|
|
7176
|
+
}
|
|
7177
|
+
],
|
|
7178
|
+
url: '/api/marketplace-maintenance-announcements/{uuid}/',
|
|
7179
|
+
...options
|
|
7180
|
+
});
|
|
7181
|
+
};
|
|
7182
|
+
export const marketplaceMaintenanceAnnouncementsRetrieve = (options) => {
|
|
7183
|
+
return (options.client ?? _heyApiClient).get({
|
|
7184
|
+
security: [
|
|
7185
|
+
{
|
|
7186
|
+
name: 'Authorization',
|
|
7187
|
+
type: 'apiKey'
|
|
7188
|
+
},
|
|
7189
|
+
{
|
|
7190
|
+
scheme: 'bearer',
|
|
7191
|
+
type: 'http'
|
|
7192
|
+
}
|
|
7193
|
+
],
|
|
7194
|
+
url: '/api/marketplace-maintenance-announcements/{uuid}/',
|
|
7195
|
+
...options
|
|
7196
|
+
});
|
|
7197
|
+
};
|
|
7198
|
+
export const marketplaceMaintenanceAnnouncementsPartialUpdate = (options) => {
|
|
7199
|
+
return (options.client ?? _heyApiClient).patch({
|
|
7200
|
+
security: [
|
|
7201
|
+
{
|
|
7202
|
+
name: 'Authorization',
|
|
7203
|
+
type: 'apiKey'
|
|
7204
|
+
},
|
|
7205
|
+
{
|
|
7206
|
+
scheme: 'bearer',
|
|
7207
|
+
type: 'http'
|
|
7208
|
+
}
|
|
7209
|
+
],
|
|
7210
|
+
url: '/api/marketplace-maintenance-announcements/{uuid}/',
|
|
7211
|
+
...options,
|
|
7212
|
+
headers: {
|
|
7213
|
+
'Content-Type': 'application/json',
|
|
7214
|
+
...options.headers
|
|
7215
|
+
}
|
|
7216
|
+
});
|
|
7217
|
+
};
|
|
7218
|
+
export const marketplaceMaintenanceAnnouncementsUpdate = (options) => {
|
|
7219
|
+
return (options.client ?? _heyApiClient).put({
|
|
7220
|
+
security: [
|
|
7221
|
+
{
|
|
7222
|
+
name: 'Authorization',
|
|
7223
|
+
type: 'apiKey'
|
|
7224
|
+
},
|
|
7225
|
+
{
|
|
7226
|
+
scheme: 'bearer',
|
|
7227
|
+
type: 'http'
|
|
7228
|
+
}
|
|
7229
|
+
],
|
|
7230
|
+
url: '/api/marketplace-maintenance-announcements/{uuid}/',
|
|
7231
|
+
...options,
|
|
7232
|
+
headers: {
|
|
7233
|
+
'Content-Type': 'application/json',
|
|
7234
|
+
...options.headers
|
|
7235
|
+
}
|
|
7236
|
+
});
|
|
7237
|
+
};
|
|
6794
7238
|
/**
|
|
6795
7239
|
* Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
6796
7240
|
*/
|
|
@@ -14897,6 +15341,25 @@ export const openstackVolumeTypesRetrieve = (options) => {
|
|
|
14897
15341
|
...options
|
|
14898
15342
|
});
|
|
14899
15343
|
};
|
|
15344
|
+
/**
|
|
15345
|
+
* Return a list of unique volume type names.
|
|
15346
|
+
*/
|
|
15347
|
+
export const openstackVolumeTypesNamesRetrieve = (options) => {
|
|
15348
|
+
return (options?.client ?? _heyApiClient).get({
|
|
15349
|
+
security: [
|
|
15350
|
+
{
|
|
15351
|
+
name: 'Authorization',
|
|
15352
|
+
type: 'apiKey'
|
|
15353
|
+
},
|
|
15354
|
+
{
|
|
15355
|
+
scheme: 'bearer',
|
|
15356
|
+
type: 'http'
|
|
15357
|
+
}
|
|
15358
|
+
],
|
|
15359
|
+
url: '/api/openstack-volume-types/names/',
|
|
15360
|
+
...options
|
|
15361
|
+
});
|
|
15362
|
+
};
|
|
14900
15363
|
/**
|
|
14901
15364
|
* Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
14902
15365
|
*/
|