waldur-js-client 7.8.3-dev.0 → 7.8.3-dev.10
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 +73 -1
- package/dist/sdk.gen.js +533 -0
- package/dist/types.gen.d.ts +720 -17
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -12731,6 +12731,25 @@ export const marketplaceProviderOfferingsSync = (options) => {
|
|
|
12731
12731
|
...options
|
|
12732
12732
|
});
|
|
12733
12733
|
};
|
|
12734
|
+
/**
|
|
12735
|
+
* Return comprehensive ToS consent statistics for this offering.
|
|
12736
|
+
*/
|
|
12737
|
+
export const marketplaceProviderOfferingsTosStatsRetrieve = (options) => {
|
|
12738
|
+
return (options.client ?? _heyApiClient).get({
|
|
12739
|
+
security: [
|
|
12740
|
+
{
|
|
12741
|
+
name: 'Authorization',
|
|
12742
|
+
type: 'apiKey'
|
|
12743
|
+
},
|
|
12744
|
+
{
|
|
12745
|
+
scheme: 'bearer',
|
|
12746
|
+
type: 'http'
|
|
12747
|
+
}
|
|
12748
|
+
],
|
|
12749
|
+
url: '/api/marketplace-provider-offerings/{uuid}/tos_stats/',
|
|
12750
|
+
...options
|
|
12751
|
+
});
|
|
12752
|
+
};
|
|
12734
12753
|
export const marketplaceProviderOfferingsUnpause = (options) => {
|
|
12735
12754
|
return (options.client ?? _heyApiClient).post({
|
|
12736
12755
|
security: [
|
|
@@ -13573,6 +13592,29 @@ export const marketplaceProviderResourcesUnlink = (options) => {
|
|
|
13573
13592
|
...options
|
|
13574
13593
|
});
|
|
13575
13594
|
};
|
|
13595
|
+
/**
|
|
13596
|
+
* Update resource options.
|
|
13597
|
+
*/
|
|
13598
|
+
export const marketplaceProviderResourcesUpdateOptions = (options) => {
|
|
13599
|
+
return (options.client ?? _heyApiClient).post({
|
|
13600
|
+
security: [
|
|
13601
|
+
{
|
|
13602
|
+
name: 'Authorization',
|
|
13603
|
+
type: 'apiKey'
|
|
13604
|
+
},
|
|
13605
|
+
{
|
|
13606
|
+
scheme: 'bearer',
|
|
13607
|
+
type: 'http'
|
|
13608
|
+
}
|
|
13609
|
+
],
|
|
13610
|
+
url: '/api/marketplace-provider-resources/{uuid}/update_options/',
|
|
13611
|
+
...options,
|
|
13612
|
+
headers: {
|
|
13613
|
+
'Content-Type': 'application/json',
|
|
13614
|
+
...options.headers
|
|
13615
|
+
}
|
|
13616
|
+
});
|
|
13617
|
+
};
|
|
13576
13618
|
export const marketplacePublicApiCheckSignature = (options) => {
|
|
13577
13619
|
return (options.client ?? _heyApiClient).post({
|
|
13578
13620
|
security: [
|
|
@@ -14191,6 +14233,29 @@ export const marketplaceResourcesPull = (options) => {
|
|
|
14191
14233
|
...options
|
|
14192
14234
|
});
|
|
14193
14235
|
};
|
|
14236
|
+
/**
|
|
14237
|
+
* Create a renewal order for a prepaid resource.
|
|
14238
|
+
*/
|
|
14239
|
+
export const marketplaceResourcesRenew = (options) => {
|
|
14240
|
+
return (options.client ?? _heyApiClient).post({
|
|
14241
|
+
security: [
|
|
14242
|
+
{
|
|
14243
|
+
name: 'Authorization',
|
|
14244
|
+
type: 'apiKey'
|
|
14245
|
+
},
|
|
14246
|
+
{
|
|
14247
|
+
scheme: 'bearer',
|
|
14248
|
+
type: 'http'
|
|
14249
|
+
}
|
|
14250
|
+
],
|
|
14251
|
+
url: '/api/marketplace-resources/{uuid}/renew/',
|
|
14252
|
+
...options,
|
|
14253
|
+
headers: {
|
|
14254
|
+
'Content-Type': 'application/json',
|
|
14255
|
+
...options.headers
|
|
14256
|
+
}
|
|
14257
|
+
});
|
|
14258
|
+
};
|
|
14194
14259
|
/**
|
|
14195
14260
|
* Set end date of the resource by staff.
|
|
14196
14261
|
*/
|
|
@@ -15060,6 +15125,25 @@ export const marketplaceServiceProvidersCreate = (options) => {
|
|
|
15060
15125
|
}
|
|
15061
15126
|
});
|
|
15062
15127
|
};
|
|
15128
|
+
/**
|
|
15129
|
+
* Get summary of all compliance checklists used by this service provider with usage counts.
|
|
15130
|
+
*/
|
|
15131
|
+
export const serviceProviderChecklistsSummary = (options) => {
|
|
15132
|
+
return (options.client ?? _heyApiClient).get({
|
|
15133
|
+
security: [
|
|
15134
|
+
{
|
|
15135
|
+
name: 'Authorization',
|
|
15136
|
+
type: 'apiKey'
|
|
15137
|
+
},
|
|
15138
|
+
{
|
|
15139
|
+
scheme: 'bearer',
|
|
15140
|
+
type: 'http'
|
|
15141
|
+
}
|
|
15142
|
+
],
|
|
15143
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/compliance/checklists_summary/',
|
|
15144
|
+
...options
|
|
15145
|
+
});
|
|
15146
|
+
};
|
|
15063
15147
|
/**
|
|
15064
15148
|
* Get compliance overview statistics for all offerings managed by this service provider.
|
|
15065
15149
|
*/
|
|
@@ -16893,6 +16977,373 @@ export const notificationMessagesEnable = (options) => {
|
|
|
16893
16977
|
...options
|
|
16894
16978
|
});
|
|
16895
16979
|
};
|
|
16980
|
+
/**
|
|
16981
|
+
* Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
16982
|
+
*/
|
|
16983
|
+
export const onboardingJustificationsList = (options) => {
|
|
16984
|
+
return (options?.client ?? _heyApiClient).get({
|
|
16985
|
+
security: [
|
|
16986
|
+
{
|
|
16987
|
+
name: 'Authorization',
|
|
16988
|
+
type: 'apiKey'
|
|
16989
|
+
},
|
|
16990
|
+
{
|
|
16991
|
+
scheme: 'bearer',
|
|
16992
|
+
type: 'http'
|
|
16993
|
+
}
|
|
16994
|
+
],
|
|
16995
|
+
url: '/api/onboarding-justifications/',
|
|
16996
|
+
...options
|
|
16997
|
+
});
|
|
16998
|
+
};
|
|
16999
|
+
/**
|
|
17000
|
+
* Get number of items in the collection matching the request parameters.
|
|
17001
|
+
*/
|
|
17002
|
+
export const onboardingJustificationsCount = (options) => {
|
|
17003
|
+
return (options?.client ?? _heyApiClient).head({
|
|
17004
|
+
security: [
|
|
17005
|
+
{
|
|
17006
|
+
name: 'Authorization',
|
|
17007
|
+
type: 'apiKey'
|
|
17008
|
+
},
|
|
17009
|
+
{
|
|
17010
|
+
scheme: 'bearer',
|
|
17011
|
+
type: 'http'
|
|
17012
|
+
}
|
|
17013
|
+
],
|
|
17014
|
+
url: '/api/onboarding-justifications/',
|
|
17015
|
+
...options
|
|
17016
|
+
});
|
|
17017
|
+
};
|
|
17018
|
+
export const onboardingJustificationsCreate = (options) => {
|
|
17019
|
+
return (options.client ?? _heyApiClient).post({
|
|
17020
|
+
security: [
|
|
17021
|
+
{
|
|
17022
|
+
name: 'Authorization',
|
|
17023
|
+
type: 'apiKey'
|
|
17024
|
+
},
|
|
17025
|
+
{
|
|
17026
|
+
scheme: 'bearer',
|
|
17027
|
+
type: 'http'
|
|
17028
|
+
}
|
|
17029
|
+
],
|
|
17030
|
+
url: '/api/onboarding-justifications/',
|
|
17031
|
+
...options,
|
|
17032
|
+
headers: {
|
|
17033
|
+
'Content-Type': 'application/json',
|
|
17034
|
+
...options.headers
|
|
17035
|
+
}
|
|
17036
|
+
});
|
|
17037
|
+
};
|
|
17038
|
+
export const onboardingJustificationsDestroy = (options) => {
|
|
17039
|
+
return (options.client ?? _heyApiClient).delete({
|
|
17040
|
+
security: [
|
|
17041
|
+
{
|
|
17042
|
+
name: 'Authorization',
|
|
17043
|
+
type: 'apiKey'
|
|
17044
|
+
},
|
|
17045
|
+
{
|
|
17046
|
+
scheme: 'bearer',
|
|
17047
|
+
type: 'http'
|
|
17048
|
+
}
|
|
17049
|
+
],
|
|
17050
|
+
url: '/api/onboarding-justifications/{uuid}/',
|
|
17051
|
+
...options
|
|
17052
|
+
});
|
|
17053
|
+
};
|
|
17054
|
+
export const onboardingJustificationsRetrieve = (options) => {
|
|
17055
|
+
return (options.client ?? _heyApiClient).get({
|
|
17056
|
+
security: [
|
|
17057
|
+
{
|
|
17058
|
+
name: 'Authorization',
|
|
17059
|
+
type: 'apiKey'
|
|
17060
|
+
},
|
|
17061
|
+
{
|
|
17062
|
+
scheme: 'bearer',
|
|
17063
|
+
type: 'http'
|
|
17064
|
+
}
|
|
17065
|
+
],
|
|
17066
|
+
url: '/api/onboarding-justifications/{uuid}/',
|
|
17067
|
+
...options
|
|
17068
|
+
});
|
|
17069
|
+
};
|
|
17070
|
+
export const onboardingJustificationsPartialUpdate = (options) => {
|
|
17071
|
+
return (options.client ?? _heyApiClient).patch({
|
|
17072
|
+
security: [
|
|
17073
|
+
{
|
|
17074
|
+
name: 'Authorization',
|
|
17075
|
+
type: 'apiKey'
|
|
17076
|
+
},
|
|
17077
|
+
{
|
|
17078
|
+
scheme: 'bearer',
|
|
17079
|
+
type: 'http'
|
|
17080
|
+
}
|
|
17081
|
+
],
|
|
17082
|
+
url: '/api/onboarding-justifications/{uuid}/',
|
|
17083
|
+
...options,
|
|
17084
|
+
headers: {
|
|
17085
|
+
'Content-Type': 'application/json',
|
|
17086
|
+
...options.headers
|
|
17087
|
+
}
|
|
17088
|
+
});
|
|
17089
|
+
};
|
|
17090
|
+
export const onboardingJustificationsUpdate = (options) => {
|
|
17091
|
+
return (options.client ?? _heyApiClient).put({
|
|
17092
|
+
security: [
|
|
17093
|
+
{
|
|
17094
|
+
name: 'Authorization',
|
|
17095
|
+
type: 'apiKey'
|
|
17096
|
+
},
|
|
17097
|
+
{
|
|
17098
|
+
scheme: 'bearer',
|
|
17099
|
+
type: 'http'
|
|
17100
|
+
}
|
|
17101
|
+
],
|
|
17102
|
+
url: '/api/onboarding-justifications/{uuid}/',
|
|
17103
|
+
...options,
|
|
17104
|
+
headers: {
|
|
17105
|
+
'Content-Type': 'application/json',
|
|
17106
|
+
...options.headers
|
|
17107
|
+
}
|
|
17108
|
+
});
|
|
17109
|
+
};
|
|
17110
|
+
/**
|
|
17111
|
+
* Attach supporting document to justification.
|
|
17112
|
+
*/
|
|
17113
|
+
export const onboardingJustificationsAttachDocument = (options) => {
|
|
17114
|
+
return (options.client ?? _heyApiClient).post({
|
|
17115
|
+
security: [
|
|
17116
|
+
{
|
|
17117
|
+
name: 'Authorization',
|
|
17118
|
+
type: 'apiKey'
|
|
17119
|
+
},
|
|
17120
|
+
{
|
|
17121
|
+
scheme: 'bearer',
|
|
17122
|
+
type: 'http'
|
|
17123
|
+
}
|
|
17124
|
+
],
|
|
17125
|
+
url: '/api/onboarding-justifications/{uuid}/attach_document/',
|
|
17126
|
+
...options,
|
|
17127
|
+
headers: {
|
|
17128
|
+
'Content-Type': 'application/json',
|
|
17129
|
+
...options.headers
|
|
17130
|
+
}
|
|
17131
|
+
});
|
|
17132
|
+
};
|
|
17133
|
+
/**
|
|
17134
|
+
* Create justification for failed verification.
|
|
17135
|
+
*/
|
|
17136
|
+
export const onboardingJustificationsCreateJustification = (options) => {
|
|
17137
|
+
return (options.client ?? _heyApiClient).post({
|
|
17138
|
+
security: [
|
|
17139
|
+
{
|
|
17140
|
+
name: 'Authorization',
|
|
17141
|
+
type: 'apiKey'
|
|
17142
|
+
},
|
|
17143
|
+
{
|
|
17144
|
+
scheme: 'bearer',
|
|
17145
|
+
type: 'http'
|
|
17146
|
+
}
|
|
17147
|
+
],
|
|
17148
|
+
url: '/api/onboarding-justifications/create_justification/',
|
|
17149
|
+
...options,
|
|
17150
|
+
headers: {
|
|
17151
|
+
'Content-Type': 'application/json',
|
|
17152
|
+
...options.headers
|
|
17153
|
+
}
|
|
17154
|
+
});
|
|
17155
|
+
};
|
|
17156
|
+
/**
|
|
17157
|
+
* Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
17158
|
+
*/
|
|
17159
|
+
export const onboardingVerificationsList = (options) => {
|
|
17160
|
+
return (options?.client ?? _heyApiClient).get({
|
|
17161
|
+
security: [
|
|
17162
|
+
{
|
|
17163
|
+
name: 'Authorization',
|
|
17164
|
+
type: 'apiKey'
|
|
17165
|
+
},
|
|
17166
|
+
{
|
|
17167
|
+
scheme: 'bearer',
|
|
17168
|
+
type: 'http'
|
|
17169
|
+
}
|
|
17170
|
+
],
|
|
17171
|
+
url: '/api/onboarding-verifications/',
|
|
17172
|
+
...options
|
|
17173
|
+
});
|
|
17174
|
+
};
|
|
17175
|
+
/**
|
|
17176
|
+
* Get number of items in the collection matching the request parameters.
|
|
17177
|
+
*/
|
|
17178
|
+
export const onboardingVerificationsCount = (options) => {
|
|
17179
|
+
return (options?.client ?? _heyApiClient).head({
|
|
17180
|
+
security: [
|
|
17181
|
+
{
|
|
17182
|
+
name: 'Authorization',
|
|
17183
|
+
type: 'apiKey'
|
|
17184
|
+
},
|
|
17185
|
+
{
|
|
17186
|
+
scheme: 'bearer',
|
|
17187
|
+
type: 'http'
|
|
17188
|
+
}
|
|
17189
|
+
],
|
|
17190
|
+
url: '/api/onboarding-verifications/',
|
|
17191
|
+
...options
|
|
17192
|
+
});
|
|
17193
|
+
};
|
|
17194
|
+
export const onboardingVerificationsCreate = (options) => {
|
|
17195
|
+
return (options.client ?? _heyApiClient).post({
|
|
17196
|
+
security: [
|
|
17197
|
+
{
|
|
17198
|
+
name: 'Authorization',
|
|
17199
|
+
type: 'apiKey'
|
|
17200
|
+
},
|
|
17201
|
+
{
|
|
17202
|
+
scheme: 'bearer',
|
|
17203
|
+
type: 'http'
|
|
17204
|
+
}
|
|
17205
|
+
],
|
|
17206
|
+
url: '/api/onboarding-verifications/',
|
|
17207
|
+
...options,
|
|
17208
|
+
headers: {
|
|
17209
|
+
'Content-Type': 'application/json',
|
|
17210
|
+
...options.headers
|
|
17211
|
+
}
|
|
17212
|
+
});
|
|
17213
|
+
};
|
|
17214
|
+
export const onboardingVerificationsDestroy = (options) => {
|
|
17215
|
+
return (options.client ?? _heyApiClient).delete({
|
|
17216
|
+
security: [
|
|
17217
|
+
{
|
|
17218
|
+
name: 'Authorization',
|
|
17219
|
+
type: 'apiKey'
|
|
17220
|
+
},
|
|
17221
|
+
{
|
|
17222
|
+
scheme: 'bearer',
|
|
17223
|
+
type: 'http'
|
|
17224
|
+
}
|
|
17225
|
+
],
|
|
17226
|
+
url: '/api/onboarding-verifications/{uuid}/',
|
|
17227
|
+
...options
|
|
17228
|
+
});
|
|
17229
|
+
};
|
|
17230
|
+
export const onboardingVerificationsRetrieve = (options) => {
|
|
17231
|
+
return (options.client ?? _heyApiClient).get({
|
|
17232
|
+
security: [
|
|
17233
|
+
{
|
|
17234
|
+
name: 'Authorization',
|
|
17235
|
+
type: 'apiKey'
|
|
17236
|
+
},
|
|
17237
|
+
{
|
|
17238
|
+
scheme: 'bearer',
|
|
17239
|
+
type: 'http'
|
|
17240
|
+
}
|
|
17241
|
+
],
|
|
17242
|
+
url: '/api/onboarding-verifications/{uuid}/',
|
|
17243
|
+
...options
|
|
17244
|
+
});
|
|
17245
|
+
};
|
|
17246
|
+
export const onboardingVerificationsPartialUpdate = (options) => {
|
|
17247
|
+
return (options.client ?? _heyApiClient).patch({
|
|
17248
|
+
security: [
|
|
17249
|
+
{
|
|
17250
|
+
name: 'Authorization',
|
|
17251
|
+
type: 'apiKey'
|
|
17252
|
+
},
|
|
17253
|
+
{
|
|
17254
|
+
scheme: 'bearer',
|
|
17255
|
+
type: 'http'
|
|
17256
|
+
}
|
|
17257
|
+
],
|
|
17258
|
+
url: '/api/onboarding-verifications/{uuid}/',
|
|
17259
|
+
...options,
|
|
17260
|
+
headers: {
|
|
17261
|
+
'Content-Type': 'application/json',
|
|
17262
|
+
...options.headers
|
|
17263
|
+
}
|
|
17264
|
+
});
|
|
17265
|
+
};
|
|
17266
|
+
export const onboardingVerificationsUpdate = (options) => {
|
|
17267
|
+
return (options.client ?? _heyApiClient).put({
|
|
17268
|
+
security: [
|
|
17269
|
+
{
|
|
17270
|
+
name: 'Authorization',
|
|
17271
|
+
type: 'apiKey'
|
|
17272
|
+
},
|
|
17273
|
+
{
|
|
17274
|
+
scheme: 'bearer',
|
|
17275
|
+
type: 'http'
|
|
17276
|
+
}
|
|
17277
|
+
],
|
|
17278
|
+
url: '/api/onboarding-verifications/{uuid}/',
|
|
17279
|
+
...options,
|
|
17280
|
+
headers: {
|
|
17281
|
+
'Content-Type': 'application/json',
|
|
17282
|
+
...options.headers
|
|
17283
|
+
}
|
|
17284
|
+
});
|
|
17285
|
+
};
|
|
17286
|
+
/**
|
|
17287
|
+
* Create customer from successful verification.
|
|
17288
|
+
*/
|
|
17289
|
+
export const onboardingVerificationsCreateCustomer = (options) => {
|
|
17290
|
+
return (options.client ?? _heyApiClient).post({
|
|
17291
|
+
security: [
|
|
17292
|
+
{
|
|
17293
|
+
name: 'Authorization',
|
|
17294
|
+
type: 'apiKey'
|
|
17295
|
+
},
|
|
17296
|
+
{
|
|
17297
|
+
scheme: 'bearer',
|
|
17298
|
+
type: 'http'
|
|
17299
|
+
}
|
|
17300
|
+
],
|
|
17301
|
+
url: '/api/onboarding-verifications/{uuid}/create_customer/',
|
|
17302
|
+
...options
|
|
17303
|
+
});
|
|
17304
|
+
};
|
|
17305
|
+
/**
|
|
17306
|
+
* Start company validation process.
|
|
17307
|
+
*/
|
|
17308
|
+
export const onboardingVerificationsValidateCompany = (options) => {
|
|
17309
|
+
return (options.client ?? _heyApiClient).post({
|
|
17310
|
+
security: [
|
|
17311
|
+
{
|
|
17312
|
+
name: 'Authorization',
|
|
17313
|
+
type: 'apiKey'
|
|
17314
|
+
},
|
|
17315
|
+
{
|
|
17316
|
+
scheme: 'bearer',
|
|
17317
|
+
type: 'http'
|
|
17318
|
+
}
|
|
17319
|
+
],
|
|
17320
|
+
url: '/api/onboarding-verifications/validate_company/',
|
|
17321
|
+
...options,
|
|
17322
|
+
headers: {
|
|
17323
|
+
'Content-Type': 'application/json',
|
|
17324
|
+
...options.headers
|
|
17325
|
+
}
|
|
17326
|
+
});
|
|
17327
|
+
};
|
|
17328
|
+
/**
|
|
17329
|
+
* Return list of supported countries for validation.
|
|
17330
|
+
*/
|
|
17331
|
+
export const onboardingSupportedCountriesRetrieve = (options) => {
|
|
17332
|
+
return (options?.client ?? _heyApiClient).get({
|
|
17333
|
+
security: [
|
|
17334
|
+
{
|
|
17335
|
+
name: 'Authorization',
|
|
17336
|
+
type: 'apiKey'
|
|
17337
|
+
},
|
|
17338
|
+
{
|
|
17339
|
+
scheme: 'bearer',
|
|
17340
|
+
type: 'http'
|
|
17341
|
+
}
|
|
17342
|
+
],
|
|
17343
|
+
url: '/api/onboarding/supported-countries/',
|
|
17344
|
+
...options
|
|
17345
|
+
});
|
|
17346
|
+
};
|
|
16896
17347
|
/**
|
|
16897
17348
|
* Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
16898
17349
|
*/
|
|
@@ -18131,6 +18582,48 @@ export const openstackNetworkRbacPoliciesCount = (options) => {
|
|
|
18131
18582
|
...options
|
|
18132
18583
|
});
|
|
18133
18584
|
};
|
|
18585
|
+
/**
|
|
18586
|
+
* Create RBAC policy for the network
|
|
18587
|
+
*/
|
|
18588
|
+
export const openstackNetworkRbacPoliciesCreate = (options) => {
|
|
18589
|
+
return (options.client ?? _heyApiClient).post({
|
|
18590
|
+
security: [
|
|
18591
|
+
{
|
|
18592
|
+
name: 'Authorization',
|
|
18593
|
+
type: 'apiKey'
|
|
18594
|
+
},
|
|
18595
|
+
{
|
|
18596
|
+
scheme: 'bearer',
|
|
18597
|
+
type: 'http'
|
|
18598
|
+
}
|
|
18599
|
+
],
|
|
18600
|
+
url: '/api/openstack-network-rbac-policies/',
|
|
18601
|
+
...options,
|
|
18602
|
+
headers: {
|
|
18603
|
+
'Content-Type': 'application/json',
|
|
18604
|
+
...options.headers
|
|
18605
|
+
}
|
|
18606
|
+
});
|
|
18607
|
+
};
|
|
18608
|
+
/**
|
|
18609
|
+
* Delete RBAC policy for the network
|
|
18610
|
+
*/
|
|
18611
|
+
export const openstackNetworkRbacPoliciesDestroy = (options) => {
|
|
18612
|
+
return (options.client ?? _heyApiClient).delete({
|
|
18613
|
+
security: [
|
|
18614
|
+
{
|
|
18615
|
+
name: 'Authorization',
|
|
18616
|
+
type: 'apiKey'
|
|
18617
|
+
},
|
|
18618
|
+
{
|
|
18619
|
+
scheme: 'bearer',
|
|
18620
|
+
type: 'http'
|
|
18621
|
+
}
|
|
18622
|
+
],
|
|
18623
|
+
url: '/api/openstack-network-rbac-policies/{uuid}/',
|
|
18624
|
+
...options
|
|
18625
|
+
});
|
|
18626
|
+
};
|
|
18134
18627
|
export const openstackNetworkRbacPoliciesRetrieve = (options) => {
|
|
18135
18628
|
return (options.client ?? _heyApiClient).get({
|
|
18136
18629
|
security: [
|
|
@@ -18147,6 +18640,46 @@ export const openstackNetworkRbacPoliciesRetrieve = (options) => {
|
|
|
18147
18640
|
...options
|
|
18148
18641
|
});
|
|
18149
18642
|
};
|
|
18643
|
+
export const openstackNetworkRbacPoliciesPartialUpdate = (options) => {
|
|
18644
|
+
return (options.client ?? _heyApiClient).patch({
|
|
18645
|
+
security: [
|
|
18646
|
+
{
|
|
18647
|
+
name: 'Authorization',
|
|
18648
|
+
type: 'apiKey'
|
|
18649
|
+
},
|
|
18650
|
+
{
|
|
18651
|
+
scheme: 'bearer',
|
|
18652
|
+
type: 'http'
|
|
18653
|
+
}
|
|
18654
|
+
],
|
|
18655
|
+
url: '/api/openstack-network-rbac-policies/{uuid}/',
|
|
18656
|
+
...options,
|
|
18657
|
+
headers: {
|
|
18658
|
+
'Content-Type': 'application/json',
|
|
18659
|
+
...options.headers
|
|
18660
|
+
}
|
|
18661
|
+
});
|
|
18662
|
+
};
|
|
18663
|
+
export const openstackNetworkRbacPoliciesUpdate = (options) => {
|
|
18664
|
+
return (options.client ?? _heyApiClient).put({
|
|
18665
|
+
security: [
|
|
18666
|
+
{
|
|
18667
|
+
name: 'Authorization',
|
|
18668
|
+
type: 'apiKey'
|
|
18669
|
+
},
|
|
18670
|
+
{
|
|
18671
|
+
scheme: 'bearer',
|
|
18672
|
+
type: 'http'
|
|
18673
|
+
}
|
|
18674
|
+
],
|
|
18675
|
+
url: '/api/openstack-network-rbac-policies/{uuid}/',
|
|
18676
|
+
...options,
|
|
18677
|
+
headers: {
|
|
18678
|
+
'Content-Type': 'application/json',
|
|
18679
|
+
...options.headers
|
|
18680
|
+
}
|
|
18681
|
+
});
|
|
18682
|
+
};
|
|
18150
18683
|
/**
|
|
18151
18684
|
* Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
18152
18685
|
*/
|