waldur-js-client 8.0.8-dev.2 → 8.0.8-dev.20
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 +96 -1
- package/dist/sdk.gen.js +740 -13
- package/dist/types.gen.d.ts +1310 -187
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -1966,6 +1966,233 @@ export const adminArrowVendorOfferingMappingsVendorChoicesCount = (options) => {
|
|
|
1966
1966
|
...options
|
|
1967
1967
|
});
|
|
1968
1968
|
};
|
|
1969
|
+
export const affiliatedOrganizationsList = (options) => {
|
|
1970
|
+
return (options?.client ?? _heyApiClient).get({
|
|
1971
|
+
security: [
|
|
1972
|
+
{
|
|
1973
|
+
name: 'Authorization',
|
|
1974
|
+
type: 'apiKey'
|
|
1975
|
+
},
|
|
1976
|
+
{
|
|
1977
|
+
scheme: 'bearer',
|
|
1978
|
+
type: 'http'
|
|
1979
|
+
},
|
|
1980
|
+
{
|
|
1981
|
+
scheme: 'bearer',
|
|
1982
|
+
type: 'http'
|
|
1983
|
+
}
|
|
1984
|
+
],
|
|
1985
|
+
url: '/api/affiliated-organizations/',
|
|
1986
|
+
...options
|
|
1987
|
+
});
|
|
1988
|
+
};
|
|
1989
|
+
/**
|
|
1990
|
+
* Get number of items in the collection matching the request parameters.
|
|
1991
|
+
*/
|
|
1992
|
+
export const affiliatedOrganizationsCount = (options) => {
|
|
1993
|
+
return (options?.client ?? _heyApiClient).head({
|
|
1994
|
+
security: [
|
|
1995
|
+
{
|
|
1996
|
+
name: 'Authorization',
|
|
1997
|
+
type: 'apiKey'
|
|
1998
|
+
},
|
|
1999
|
+
{
|
|
2000
|
+
scheme: 'bearer',
|
|
2001
|
+
type: 'http'
|
|
2002
|
+
},
|
|
2003
|
+
{
|
|
2004
|
+
scheme: 'bearer',
|
|
2005
|
+
type: 'http'
|
|
2006
|
+
}
|
|
2007
|
+
],
|
|
2008
|
+
url: '/api/affiliated-organizations/',
|
|
2009
|
+
...options
|
|
2010
|
+
});
|
|
2011
|
+
};
|
|
2012
|
+
export const affiliatedOrganizationsCreate = (options) => {
|
|
2013
|
+
return (options.client ?? _heyApiClient).post({
|
|
2014
|
+
security: [
|
|
2015
|
+
{
|
|
2016
|
+
name: 'Authorization',
|
|
2017
|
+
type: 'apiKey'
|
|
2018
|
+
},
|
|
2019
|
+
{
|
|
2020
|
+
scheme: 'bearer',
|
|
2021
|
+
type: 'http'
|
|
2022
|
+
},
|
|
2023
|
+
{
|
|
2024
|
+
scheme: 'bearer',
|
|
2025
|
+
type: 'http'
|
|
2026
|
+
}
|
|
2027
|
+
],
|
|
2028
|
+
url: '/api/affiliated-organizations/',
|
|
2029
|
+
...options,
|
|
2030
|
+
headers: {
|
|
2031
|
+
'Content-Type': 'application/json',
|
|
2032
|
+
...options.headers
|
|
2033
|
+
}
|
|
2034
|
+
});
|
|
2035
|
+
};
|
|
2036
|
+
export const affiliatedOrganizationsDestroy = (options) => {
|
|
2037
|
+
return (options.client ?? _heyApiClient).delete({
|
|
2038
|
+
security: [
|
|
2039
|
+
{
|
|
2040
|
+
name: 'Authorization',
|
|
2041
|
+
type: 'apiKey'
|
|
2042
|
+
},
|
|
2043
|
+
{
|
|
2044
|
+
scheme: 'bearer',
|
|
2045
|
+
type: 'http'
|
|
2046
|
+
},
|
|
2047
|
+
{
|
|
2048
|
+
scheme: 'bearer',
|
|
2049
|
+
type: 'http'
|
|
2050
|
+
}
|
|
2051
|
+
],
|
|
2052
|
+
url: '/api/affiliated-organizations/{uuid}/',
|
|
2053
|
+
...options
|
|
2054
|
+
});
|
|
2055
|
+
};
|
|
2056
|
+
export const affiliatedOrganizationsRetrieve = (options) => {
|
|
2057
|
+
return (options.client ?? _heyApiClient).get({
|
|
2058
|
+
security: [
|
|
2059
|
+
{
|
|
2060
|
+
name: 'Authorization',
|
|
2061
|
+
type: 'apiKey'
|
|
2062
|
+
},
|
|
2063
|
+
{
|
|
2064
|
+
scheme: 'bearer',
|
|
2065
|
+
type: 'http'
|
|
2066
|
+
},
|
|
2067
|
+
{
|
|
2068
|
+
scheme: 'bearer',
|
|
2069
|
+
type: 'http'
|
|
2070
|
+
}
|
|
2071
|
+
],
|
|
2072
|
+
url: '/api/affiliated-organizations/{uuid}/',
|
|
2073
|
+
...options
|
|
2074
|
+
});
|
|
2075
|
+
};
|
|
2076
|
+
export const affiliatedOrganizationsPartialUpdate = (options) => {
|
|
2077
|
+
return (options.client ?? _heyApiClient).patch({
|
|
2078
|
+
security: [
|
|
2079
|
+
{
|
|
2080
|
+
name: 'Authorization',
|
|
2081
|
+
type: 'apiKey'
|
|
2082
|
+
},
|
|
2083
|
+
{
|
|
2084
|
+
scheme: 'bearer',
|
|
2085
|
+
type: 'http'
|
|
2086
|
+
},
|
|
2087
|
+
{
|
|
2088
|
+
scheme: 'bearer',
|
|
2089
|
+
type: 'http'
|
|
2090
|
+
}
|
|
2091
|
+
],
|
|
2092
|
+
url: '/api/affiliated-organizations/{uuid}/',
|
|
2093
|
+
...options,
|
|
2094
|
+
headers: {
|
|
2095
|
+
'Content-Type': 'application/json',
|
|
2096
|
+
...options.headers
|
|
2097
|
+
}
|
|
2098
|
+
});
|
|
2099
|
+
};
|
|
2100
|
+
export const affiliatedOrganizationsUpdate = (options) => {
|
|
2101
|
+
return (options.client ?? _heyApiClient).put({
|
|
2102
|
+
security: [
|
|
2103
|
+
{
|
|
2104
|
+
name: 'Authorization',
|
|
2105
|
+
type: 'apiKey'
|
|
2106
|
+
},
|
|
2107
|
+
{
|
|
2108
|
+
scheme: 'bearer',
|
|
2109
|
+
type: 'http'
|
|
2110
|
+
},
|
|
2111
|
+
{
|
|
2112
|
+
scheme: 'bearer',
|
|
2113
|
+
type: 'http'
|
|
2114
|
+
}
|
|
2115
|
+
],
|
|
2116
|
+
url: '/api/affiliated-organizations/{uuid}/',
|
|
2117
|
+
...options,
|
|
2118
|
+
headers: {
|
|
2119
|
+
'Content-Type': 'application/json',
|
|
2120
|
+
...options.headers
|
|
2121
|
+
}
|
|
2122
|
+
});
|
|
2123
|
+
};
|
|
2124
|
+
/**
|
|
2125
|
+
* Get affiliated organization statistics
|
|
2126
|
+
* Returns permission-filtered statistics for this affiliated organization.
|
|
2127
|
+
*/
|
|
2128
|
+
export const affiliatedOrganizationsStatsRetrieve = (options) => {
|
|
2129
|
+
return (options.client ?? _heyApiClient).get({
|
|
2130
|
+
security: [
|
|
2131
|
+
{
|
|
2132
|
+
name: 'Authorization',
|
|
2133
|
+
type: 'apiKey'
|
|
2134
|
+
},
|
|
2135
|
+
{
|
|
2136
|
+
scheme: 'bearer',
|
|
2137
|
+
type: 'http'
|
|
2138
|
+
},
|
|
2139
|
+
{
|
|
2140
|
+
scheme: 'bearer',
|
|
2141
|
+
type: 'http'
|
|
2142
|
+
}
|
|
2143
|
+
],
|
|
2144
|
+
url: '/api/affiliated-organizations/{uuid}/stats/',
|
|
2145
|
+
...options
|
|
2146
|
+
});
|
|
2147
|
+
};
|
|
2148
|
+
/**
|
|
2149
|
+
* Get affiliated organizations report
|
|
2150
|
+
* Staff-only report showing aggregated data for all affiliated organizations plus an unaffiliated row.
|
|
2151
|
+
*/
|
|
2152
|
+
export const affiliatedOrganizationsReportList = (options) => {
|
|
2153
|
+
return (options?.client ?? _heyApiClient).get({
|
|
2154
|
+
security: [
|
|
2155
|
+
{
|
|
2156
|
+
name: 'Authorization',
|
|
2157
|
+
type: 'apiKey'
|
|
2158
|
+
},
|
|
2159
|
+
{
|
|
2160
|
+
scheme: 'bearer',
|
|
2161
|
+
type: 'http'
|
|
2162
|
+
},
|
|
2163
|
+
{
|
|
2164
|
+
scheme: 'bearer',
|
|
2165
|
+
type: 'http'
|
|
2166
|
+
}
|
|
2167
|
+
],
|
|
2168
|
+
url: '/api/affiliated-organizations/report/',
|
|
2169
|
+
...options
|
|
2170
|
+
});
|
|
2171
|
+
};
|
|
2172
|
+
/**
|
|
2173
|
+
* Get affiliated organizations report
|
|
2174
|
+
* Get number of items in the collection matching the request parameters.
|
|
2175
|
+
*/
|
|
2176
|
+
export const affiliatedOrganizationsReportCount = (options) => {
|
|
2177
|
+
return (options?.client ?? _heyApiClient).head({
|
|
2178
|
+
security: [
|
|
2179
|
+
{
|
|
2180
|
+
name: 'Authorization',
|
|
2181
|
+
type: 'apiKey'
|
|
2182
|
+
},
|
|
2183
|
+
{
|
|
2184
|
+
scheme: 'bearer',
|
|
2185
|
+
type: 'http'
|
|
2186
|
+
},
|
|
2187
|
+
{
|
|
2188
|
+
scheme: 'bearer',
|
|
2189
|
+
type: 'http'
|
|
2190
|
+
}
|
|
2191
|
+
],
|
|
2192
|
+
url: '/api/affiliated-organizations/report/',
|
|
2193
|
+
...options
|
|
2194
|
+
});
|
|
2195
|
+
};
|
|
1969
2196
|
export const assignmentBatchesList = (options) => {
|
|
1970
2197
|
return (options?.client ?? _heyApiClient).get({
|
|
1971
2198
|
security: [
|
|
@@ -16023,6 +16250,54 @@ export const marketplaceCategoryHelpArticlesUpdate = (options) => {
|
|
|
16023
16250
|
}
|
|
16024
16251
|
});
|
|
16025
16252
|
};
|
|
16253
|
+
/**
|
|
16254
|
+
* List monthly component usage summaries globally
|
|
16255
|
+
* Returns paginated monthly component usage across all offerings and service providers. Results are automatically filtered by the user's permissions. Defaults to the current month if no time filters ('billing_period', 'start', 'end') are provided.
|
|
16256
|
+
*/
|
|
16257
|
+
export const marketplaceComponentUsageMonthlyList = (options) => {
|
|
16258
|
+
return (options?.client ?? _heyApiClient).get({
|
|
16259
|
+
security: [
|
|
16260
|
+
{
|
|
16261
|
+
name: 'Authorization',
|
|
16262
|
+
type: 'apiKey'
|
|
16263
|
+
},
|
|
16264
|
+
{
|
|
16265
|
+
scheme: 'bearer',
|
|
16266
|
+
type: 'http'
|
|
16267
|
+
},
|
|
16268
|
+
{
|
|
16269
|
+
scheme: 'bearer',
|
|
16270
|
+
type: 'http'
|
|
16271
|
+
}
|
|
16272
|
+
],
|
|
16273
|
+
url: '/api/marketplace-component-usage-monthly/',
|
|
16274
|
+
...options
|
|
16275
|
+
});
|
|
16276
|
+
};
|
|
16277
|
+
/**
|
|
16278
|
+
* List monthly component usage summaries globally
|
|
16279
|
+
* Get number of items in the collection matching the request parameters.
|
|
16280
|
+
*/
|
|
16281
|
+
export const marketplaceComponentUsageMonthlyCount = (options) => {
|
|
16282
|
+
return (options?.client ?? _heyApiClient).head({
|
|
16283
|
+
security: [
|
|
16284
|
+
{
|
|
16285
|
+
name: 'Authorization',
|
|
16286
|
+
type: 'apiKey'
|
|
16287
|
+
},
|
|
16288
|
+
{
|
|
16289
|
+
scheme: 'bearer',
|
|
16290
|
+
type: 'http'
|
|
16291
|
+
},
|
|
16292
|
+
{
|
|
16293
|
+
scheme: 'bearer',
|
|
16294
|
+
type: 'http'
|
|
16295
|
+
}
|
|
16296
|
+
],
|
|
16297
|
+
url: '/api/marketplace-component-usage-monthly/',
|
|
16298
|
+
...options
|
|
16299
|
+
});
|
|
16300
|
+
};
|
|
16026
16301
|
/**
|
|
16027
16302
|
* List component usage records
|
|
16028
16303
|
* Returns a paginated list of component usage records for resources. This data is used for billing and usage tracking.
|
|
@@ -32907,6 +33182,69 @@ export const onboardingSupportedCountriesRetrieve = (options) => {
|
|
|
32907
33182
|
...options
|
|
32908
33183
|
});
|
|
32909
33184
|
};
|
|
33185
|
+
export const openportalAccountingSummaryList = (options) => {
|
|
33186
|
+
return (options?.client ?? _heyApiClient).get({
|
|
33187
|
+
security: [
|
|
33188
|
+
{
|
|
33189
|
+
name: 'Authorization',
|
|
33190
|
+
type: 'apiKey'
|
|
33191
|
+
},
|
|
33192
|
+
{
|
|
33193
|
+
scheme: 'bearer',
|
|
33194
|
+
type: 'http'
|
|
33195
|
+
},
|
|
33196
|
+
{
|
|
33197
|
+
scheme: 'bearer',
|
|
33198
|
+
type: 'http'
|
|
33199
|
+
}
|
|
33200
|
+
],
|
|
33201
|
+
url: '/api/openportal-accounting-summary/',
|
|
33202
|
+
...options
|
|
33203
|
+
});
|
|
33204
|
+
};
|
|
33205
|
+
/**
|
|
33206
|
+
* Get number of items in the collection matching the request parameters.
|
|
33207
|
+
*/
|
|
33208
|
+
export const openportalAccountingSummaryCount = (options) => {
|
|
33209
|
+
return (options?.client ?? _heyApiClient).head({
|
|
33210
|
+
security: [
|
|
33211
|
+
{
|
|
33212
|
+
name: 'Authorization',
|
|
33213
|
+
type: 'apiKey'
|
|
33214
|
+
},
|
|
33215
|
+
{
|
|
33216
|
+
scheme: 'bearer',
|
|
33217
|
+
type: 'http'
|
|
33218
|
+
},
|
|
33219
|
+
{
|
|
33220
|
+
scheme: 'bearer',
|
|
33221
|
+
type: 'http'
|
|
33222
|
+
}
|
|
33223
|
+
],
|
|
33224
|
+
url: '/api/openportal-accounting-summary/',
|
|
33225
|
+
...options
|
|
33226
|
+
});
|
|
33227
|
+
};
|
|
33228
|
+
export const openportalAccountingSummaryRetrieve = (options) => {
|
|
33229
|
+
return (options.client ?? _heyApiClient).get({
|
|
33230
|
+
security: [
|
|
33231
|
+
{
|
|
33232
|
+
name: 'Authorization',
|
|
33233
|
+
type: 'apiKey'
|
|
33234
|
+
},
|
|
33235
|
+
{
|
|
33236
|
+
scheme: 'bearer',
|
|
33237
|
+
type: 'http'
|
|
33238
|
+
},
|
|
33239
|
+
{
|
|
33240
|
+
scheme: 'bearer',
|
|
33241
|
+
type: 'http'
|
|
33242
|
+
}
|
|
33243
|
+
],
|
|
33244
|
+
url: '/api/openportal-accounting-summary/{uuid}/',
|
|
33245
|
+
...options
|
|
33246
|
+
});
|
|
33247
|
+
};
|
|
32910
33248
|
export const openportalAllocationUserUsageList = (options) => {
|
|
32911
33249
|
return (options?.client ?? _heyApiClient).get({
|
|
32912
33250
|
security: [
|
|
@@ -33533,6 +33871,69 @@ export const openportalManagedProjectsReject = (options) => {
|
|
|
33533
33871
|
}
|
|
33534
33872
|
});
|
|
33535
33873
|
};
|
|
33874
|
+
export const openportalProjectStorageReportsList = (options) => {
|
|
33875
|
+
return (options?.client ?? _heyApiClient).get({
|
|
33876
|
+
security: [
|
|
33877
|
+
{
|
|
33878
|
+
name: 'Authorization',
|
|
33879
|
+
type: 'apiKey'
|
|
33880
|
+
},
|
|
33881
|
+
{
|
|
33882
|
+
scheme: 'bearer',
|
|
33883
|
+
type: 'http'
|
|
33884
|
+
},
|
|
33885
|
+
{
|
|
33886
|
+
scheme: 'bearer',
|
|
33887
|
+
type: 'http'
|
|
33888
|
+
}
|
|
33889
|
+
],
|
|
33890
|
+
url: '/api/openportal-project-storage-reports/',
|
|
33891
|
+
...options
|
|
33892
|
+
});
|
|
33893
|
+
};
|
|
33894
|
+
/**
|
|
33895
|
+
* Get number of items in the collection matching the request parameters.
|
|
33896
|
+
*/
|
|
33897
|
+
export const openportalProjectStorageReportsCount = (options) => {
|
|
33898
|
+
return (options?.client ?? _heyApiClient).head({
|
|
33899
|
+
security: [
|
|
33900
|
+
{
|
|
33901
|
+
name: 'Authorization',
|
|
33902
|
+
type: 'apiKey'
|
|
33903
|
+
},
|
|
33904
|
+
{
|
|
33905
|
+
scheme: 'bearer',
|
|
33906
|
+
type: 'http'
|
|
33907
|
+
},
|
|
33908
|
+
{
|
|
33909
|
+
scheme: 'bearer',
|
|
33910
|
+
type: 'http'
|
|
33911
|
+
}
|
|
33912
|
+
],
|
|
33913
|
+
url: '/api/openportal-project-storage-reports/',
|
|
33914
|
+
...options
|
|
33915
|
+
});
|
|
33916
|
+
};
|
|
33917
|
+
export const openportalProjectStorageReportsRetrieve = (options) => {
|
|
33918
|
+
return (options.client ?? _heyApiClient).get({
|
|
33919
|
+
security: [
|
|
33920
|
+
{
|
|
33921
|
+
name: 'Authorization',
|
|
33922
|
+
type: 'apiKey'
|
|
33923
|
+
},
|
|
33924
|
+
{
|
|
33925
|
+
scheme: 'bearer',
|
|
33926
|
+
type: 'http'
|
|
33927
|
+
},
|
|
33928
|
+
{
|
|
33929
|
+
scheme: 'bearer',
|
|
33930
|
+
type: 'http'
|
|
33931
|
+
}
|
|
33932
|
+
],
|
|
33933
|
+
url: '/api/openportal-project-storage-reports/{id}/',
|
|
33934
|
+
...options
|
|
33935
|
+
});
|
|
33936
|
+
};
|
|
33536
33937
|
export const openportalProjectTemplateList = (options) => {
|
|
33537
33938
|
return (options?.client ?? _heyApiClient).get({
|
|
33538
33939
|
security: [
|
|
@@ -33671,10 +34072,37 @@ export const openportalProjectTemplatePartialUpdate = (options) => {
|
|
|
33671
34072
|
});
|
|
33672
34073
|
};
|
|
33673
34074
|
/**
|
|
33674
|
-
* Update ProjectTemplate object (full update)
|
|
34075
|
+
* Update ProjectTemplate object (full update)
|
|
34076
|
+
*/
|
|
34077
|
+
export const openportalProjectTemplateUpdate = (options) => {
|
|
34078
|
+
return (options.client ?? _heyApiClient).put({
|
|
34079
|
+
security: [
|
|
34080
|
+
{
|
|
34081
|
+
name: 'Authorization',
|
|
34082
|
+
type: 'apiKey'
|
|
34083
|
+
},
|
|
34084
|
+
{
|
|
34085
|
+
scheme: 'bearer',
|
|
34086
|
+
type: 'http'
|
|
34087
|
+
},
|
|
34088
|
+
{
|
|
34089
|
+
scheme: 'bearer',
|
|
34090
|
+
type: 'http'
|
|
34091
|
+
}
|
|
34092
|
+
],
|
|
34093
|
+
url: '/api/openportal-project-template/{uuid}/',
|
|
34094
|
+
...options,
|
|
34095
|
+
headers: {
|
|
34096
|
+
'Content-Type': 'application/json',
|
|
34097
|
+
...options.headers
|
|
34098
|
+
}
|
|
34099
|
+
});
|
|
34100
|
+
};
|
|
34101
|
+
/**
|
|
34102
|
+
* Delete ProjectTemplate object
|
|
33675
34103
|
*/
|
|
33676
|
-
export const
|
|
33677
|
-
return (options.client ?? _heyApiClient).
|
|
34104
|
+
export const openportalProjectTemplateDeleteDestroy = (options) => {
|
|
34105
|
+
return (options.client ?? _heyApiClient).delete({
|
|
33678
34106
|
security: [
|
|
33679
34107
|
{
|
|
33680
34108
|
name: 'Authorization',
|
|
@@ -33689,19 +34117,35 @@ export const openportalProjectTemplateUpdate = (options) => {
|
|
|
33689
34117
|
type: 'http'
|
|
33690
34118
|
}
|
|
33691
34119
|
],
|
|
33692
|
-
url: '/api/openportal-project-template/{uuid}/',
|
|
33693
|
-
...options
|
|
33694
|
-
|
|
33695
|
-
|
|
33696
|
-
|
|
33697
|
-
|
|
34120
|
+
url: '/api/openportal-project-template/{uuid}/delete/',
|
|
34121
|
+
...options
|
|
34122
|
+
});
|
|
34123
|
+
};
|
|
34124
|
+
export const openportalProjectUsageReportsList = (options) => {
|
|
34125
|
+
return (options?.client ?? _heyApiClient).get({
|
|
34126
|
+
security: [
|
|
34127
|
+
{
|
|
34128
|
+
name: 'Authorization',
|
|
34129
|
+
type: 'apiKey'
|
|
34130
|
+
},
|
|
34131
|
+
{
|
|
34132
|
+
scheme: 'bearer',
|
|
34133
|
+
type: 'http'
|
|
34134
|
+
},
|
|
34135
|
+
{
|
|
34136
|
+
scheme: 'bearer',
|
|
34137
|
+
type: 'http'
|
|
34138
|
+
}
|
|
34139
|
+
],
|
|
34140
|
+
url: '/api/openportal-project-usage-reports/',
|
|
34141
|
+
...options
|
|
33698
34142
|
});
|
|
33699
34143
|
};
|
|
33700
34144
|
/**
|
|
33701
|
-
*
|
|
34145
|
+
* Get number of items in the collection matching the request parameters.
|
|
33702
34146
|
*/
|
|
33703
|
-
export const
|
|
33704
|
-
return (options
|
|
34147
|
+
export const openportalProjectUsageReportsCount = (options) => {
|
|
34148
|
+
return (options?.client ?? _heyApiClient).head({
|
|
33705
34149
|
security: [
|
|
33706
34150
|
{
|
|
33707
34151
|
name: 'Authorization',
|
|
@@ -33716,7 +34160,27 @@ export const openportalProjectTemplateDeleteDestroy = (options) => {
|
|
|
33716
34160
|
type: 'http'
|
|
33717
34161
|
}
|
|
33718
34162
|
],
|
|
33719
|
-
url: '/api/openportal-project-
|
|
34163
|
+
url: '/api/openportal-project-usage-reports/',
|
|
34164
|
+
...options
|
|
34165
|
+
});
|
|
34166
|
+
};
|
|
34167
|
+
export const openportalProjectUsageReportsRetrieve = (options) => {
|
|
34168
|
+
return (options.client ?? _heyApiClient).get({
|
|
34169
|
+
security: [
|
|
34170
|
+
{
|
|
34171
|
+
name: 'Authorization',
|
|
34172
|
+
type: 'apiKey'
|
|
34173
|
+
},
|
|
34174
|
+
{
|
|
34175
|
+
scheme: 'bearer',
|
|
34176
|
+
type: 'http'
|
|
34177
|
+
},
|
|
34178
|
+
{
|
|
34179
|
+
scheme: 'bearer',
|
|
34180
|
+
type: 'http'
|
|
34181
|
+
}
|
|
34182
|
+
],
|
|
34183
|
+
url: '/api/openportal-project-usage-reports/{id}/',
|
|
33720
34184
|
...options
|
|
33721
34185
|
});
|
|
33722
34186
|
};
|
|
@@ -34680,6 +35144,34 @@ export const openportalUnmanagedProjectsSubmitAnswers = (options) => {
|
|
|
34680
35144
|
}
|
|
34681
35145
|
});
|
|
34682
35146
|
};
|
|
35147
|
+
/**
|
|
35148
|
+
* Update affiliated organizations for a project
|
|
35149
|
+
* Assigns a project to one or more affiliated organizations. Replaces the current set.
|
|
35150
|
+
*/
|
|
35151
|
+
export const openportalUnmanagedProjectsUpdateAffiliatedOrganizations = (options) => {
|
|
35152
|
+
return (options.client ?? _heyApiClient).post({
|
|
35153
|
+
security: [
|
|
35154
|
+
{
|
|
35155
|
+
name: 'Authorization',
|
|
35156
|
+
type: 'apiKey'
|
|
35157
|
+
},
|
|
35158
|
+
{
|
|
35159
|
+
scheme: 'bearer',
|
|
35160
|
+
type: 'http'
|
|
35161
|
+
},
|
|
35162
|
+
{
|
|
35163
|
+
scheme: 'bearer',
|
|
35164
|
+
type: 'http'
|
|
35165
|
+
}
|
|
35166
|
+
],
|
|
35167
|
+
url: '/api/openportal-unmanaged-projects/{uuid}/update_affiliated_organizations/',
|
|
35168
|
+
...options,
|
|
35169
|
+
headers: {
|
|
35170
|
+
'Content-Type': 'application/json',
|
|
35171
|
+
...options.headers
|
|
35172
|
+
}
|
|
35173
|
+
});
|
|
35174
|
+
};
|
|
34683
35175
|
/**
|
|
34684
35176
|
* Update a user's role expiration
|
|
34685
35177
|
* Updates the expiration time for a user's existing role in the current scope. This is useful for extending or shortening the duration of a permission. To make a role permanent, set expiration_time to null.
|
|
@@ -34976,6 +35468,26 @@ export const openportalUserinfoMeCount = (options) => {
|
|
|
34976
35468
|
...options
|
|
34977
35469
|
});
|
|
34978
35470
|
};
|
|
35471
|
+
export const openportalAccessForEmailList = (options) => {
|
|
35472
|
+
return (options.client ?? _heyApiClient).get({
|
|
35473
|
+
security: [
|
|
35474
|
+
{
|
|
35475
|
+
name: 'Authorization',
|
|
35476
|
+
type: 'apiKey'
|
|
35477
|
+
},
|
|
35478
|
+
{
|
|
35479
|
+
scheme: 'bearer',
|
|
35480
|
+
type: 'http'
|
|
35481
|
+
},
|
|
35482
|
+
{
|
|
35483
|
+
scheme: 'bearer',
|
|
35484
|
+
type: 'http'
|
|
35485
|
+
}
|
|
35486
|
+
],
|
|
35487
|
+
url: '/api/openportal/access_for_email/',
|
|
35488
|
+
...options
|
|
35489
|
+
});
|
|
35490
|
+
};
|
|
34979
35491
|
/**
|
|
34980
35492
|
* List backups
|
|
34981
35493
|
* Get a list of instance backups.
|
|
@@ -35932,6 +36444,117 @@ export const openstackHealthMonitorsPull = (options) => {
|
|
|
35932
36444
|
...options
|
|
35933
36445
|
});
|
|
35934
36446
|
};
|
|
36447
|
+
export const openstackHypervisorsList = (options) => {
|
|
36448
|
+
return (options?.client ?? _heyApiClient).get({
|
|
36449
|
+
security: [
|
|
36450
|
+
{
|
|
36451
|
+
name: 'Authorization',
|
|
36452
|
+
type: 'apiKey'
|
|
36453
|
+
},
|
|
36454
|
+
{
|
|
36455
|
+
scheme: 'bearer',
|
|
36456
|
+
type: 'http'
|
|
36457
|
+
},
|
|
36458
|
+
{
|
|
36459
|
+
scheme: 'bearer',
|
|
36460
|
+
type: 'http'
|
|
36461
|
+
}
|
|
36462
|
+
],
|
|
36463
|
+
url: '/api/openstack-hypervisors/',
|
|
36464
|
+
...options
|
|
36465
|
+
});
|
|
36466
|
+
};
|
|
36467
|
+
/**
|
|
36468
|
+
* Get number of items in the collection matching the request parameters.
|
|
36469
|
+
*/
|
|
36470
|
+
export const openstackHypervisorsCount = (options) => {
|
|
36471
|
+
return (options?.client ?? _heyApiClient).head({
|
|
36472
|
+
security: [
|
|
36473
|
+
{
|
|
36474
|
+
name: 'Authorization',
|
|
36475
|
+
type: 'apiKey'
|
|
36476
|
+
},
|
|
36477
|
+
{
|
|
36478
|
+
scheme: 'bearer',
|
|
36479
|
+
type: 'http'
|
|
36480
|
+
},
|
|
36481
|
+
{
|
|
36482
|
+
scheme: 'bearer',
|
|
36483
|
+
type: 'http'
|
|
36484
|
+
}
|
|
36485
|
+
],
|
|
36486
|
+
url: '/api/openstack-hypervisors/',
|
|
36487
|
+
...options
|
|
36488
|
+
});
|
|
36489
|
+
};
|
|
36490
|
+
export const openstackHypervisorsRetrieve = (options) => {
|
|
36491
|
+
return (options.client ?? _heyApiClient).get({
|
|
36492
|
+
security: [
|
|
36493
|
+
{
|
|
36494
|
+
name: 'Authorization',
|
|
36495
|
+
type: 'apiKey'
|
|
36496
|
+
},
|
|
36497
|
+
{
|
|
36498
|
+
scheme: 'bearer',
|
|
36499
|
+
type: 'http'
|
|
36500
|
+
},
|
|
36501
|
+
{
|
|
36502
|
+
scheme: 'bearer',
|
|
36503
|
+
type: 'http'
|
|
36504
|
+
}
|
|
36505
|
+
],
|
|
36506
|
+
url: '/api/openstack-hypervisors/{uuid}/',
|
|
36507
|
+
...options
|
|
36508
|
+
});
|
|
36509
|
+
};
|
|
36510
|
+
/**
|
|
36511
|
+
* Get hypervisor summary statistics
|
|
36512
|
+
* Return aggregated vCPU, RAM and disk totals across all hypervisors matching the current filter (e.g. settings_uuid).
|
|
36513
|
+
*/
|
|
36514
|
+
export const openstackHypervisorsSummaryRetrieve = (options) => {
|
|
36515
|
+
return (options?.client ?? _heyApiClient).get({
|
|
36516
|
+
security: [
|
|
36517
|
+
{
|
|
36518
|
+
name: 'Authorization',
|
|
36519
|
+
type: 'apiKey'
|
|
36520
|
+
},
|
|
36521
|
+
{
|
|
36522
|
+
scheme: 'bearer',
|
|
36523
|
+
type: 'http'
|
|
36524
|
+
},
|
|
36525
|
+
{
|
|
36526
|
+
scheme: 'bearer',
|
|
36527
|
+
type: 'http'
|
|
36528
|
+
}
|
|
36529
|
+
],
|
|
36530
|
+
url: '/api/openstack-hypervisors/summary/',
|
|
36531
|
+
...options
|
|
36532
|
+
});
|
|
36533
|
+
};
|
|
36534
|
+
/**
|
|
36535
|
+
* Get hypervisor summary statistics
|
|
36536
|
+
* Get number of items in the collection matching the request parameters.
|
|
36537
|
+
*/
|
|
36538
|
+
export const openstackHypervisorsSummaryCount = (options) => {
|
|
36539
|
+
return (options?.client ?? _heyApiClient).head({
|
|
36540
|
+
security: [
|
|
36541
|
+
{
|
|
36542
|
+
name: 'Authorization',
|
|
36543
|
+
type: 'apiKey'
|
|
36544
|
+
},
|
|
36545
|
+
{
|
|
36546
|
+
scheme: 'bearer',
|
|
36547
|
+
type: 'http'
|
|
36548
|
+
},
|
|
36549
|
+
{
|
|
36550
|
+
scheme: 'bearer',
|
|
36551
|
+
type: 'http'
|
|
36552
|
+
}
|
|
36553
|
+
],
|
|
36554
|
+
url: '/api/openstack-hypervisors/summary/',
|
|
36555
|
+
...options
|
|
36556
|
+
});
|
|
36557
|
+
};
|
|
35935
36558
|
/**
|
|
35936
36559
|
* List images
|
|
35937
36560
|
* Get a list of available VM instance images.
|
|
@@ -38998,6 +39621,54 @@ export const openstackRoutersAddRouterInterface = (options) => {
|
|
|
38998
39621
|
}
|
|
38999
39622
|
});
|
|
39000
39623
|
};
|
|
39624
|
+
/**
|
|
39625
|
+
* List available external networks
|
|
39626
|
+
* Returns a merged list of external networks available for this router's tenant, from both global external networks and RBAC-exposed networks.
|
|
39627
|
+
*/
|
|
39628
|
+
export const openstackRoutersAvailableExternalNetworksList = (options) => {
|
|
39629
|
+
return (options.client ?? _heyApiClient).get({
|
|
39630
|
+
security: [
|
|
39631
|
+
{
|
|
39632
|
+
name: 'Authorization',
|
|
39633
|
+
type: 'apiKey'
|
|
39634
|
+
},
|
|
39635
|
+
{
|
|
39636
|
+
scheme: 'bearer',
|
|
39637
|
+
type: 'http'
|
|
39638
|
+
},
|
|
39639
|
+
{
|
|
39640
|
+
scheme: 'bearer',
|
|
39641
|
+
type: 'http'
|
|
39642
|
+
}
|
|
39643
|
+
],
|
|
39644
|
+
url: '/api/openstack-routers/{uuid}/available_external_networks/',
|
|
39645
|
+
...options
|
|
39646
|
+
});
|
|
39647
|
+
};
|
|
39648
|
+
/**
|
|
39649
|
+
* Remove external gateway
|
|
39650
|
+
* Remove the external gateway from this router.
|
|
39651
|
+
*/
|
|
39652
|
+
export const openstackRoutersRemoveExternalGateway = (options) => {
|
|
39653
|
+
return (options.client ?? _heyApiClient).post({
|
|
39654
|
+
security: [
|
|
39655
|
+
{
|
|
39656
|
+
name: 'Authorization',
|
|
39657
|
+
type: 'apiKey'
|
|
39658
|
+
},
|
|
39659
|
+
{
|
|
39660
|
+
scheme: 'bearer',
|
|
39661
|
+
type: 'http'
|
|
39662
|
+
},
|
|
39663
|
+
{
|
|
39664
|
+
scheme: 'bearer',
|
|
39665
|
+
type: 'http'
|
|
39666
|
+
}
|
|
39667
|
+
],
|
|
39668
|
+
url: '/api/openstack-routers/{uuid}/remove_external_gateway/',
|
|
39669
|
+
...options
|
|
39670
|
+
});
|
|
39671
|
+
};
|
|
39001
39672
|
/**
|
|
39002
39673
|
* Remove router interface
|
|
39003
39674
|
* Remove interface from router. Either subnet or port must be provided.
|
|
@@ -39054,6 +39725,34 @@ export const openstackRoutersSetErred = (options) => {
|
|
|
39054
39725
|
}
|
|
39055
39726
|
});
|
|
39056
39727
|
};
|
|
39728
|
+
/**
|
|
39729
|
+
* Set external gateway
|
|
39730
|
+
* Set an external network as the gateway for this router. Advanced options (SNAT control, fixed IPs) require additional permissions.
|
|
39731
|
+
*/
|
|
39732
|
+
export const openstackRoutersSetExternalGateway = (options) => {
|
|
39733
|
+
return (options.client ?? _heyApiClient).post({
|
|
39734
|
+
security: [
|
|
39735
|
+
{
|
|
39736
|
+
name: 'Authorization',
|
|
39737
|
+
type: 'apiKey'
|
|
39738
|
+
},
|
|
39739
|
+
{
|
|
39740
|
+
scheme: 'bearer',
|
|
39741
|
+
type: 'http'
|
|
39742
|
+
},
|
|
39743
|
+
{
|
|
39744
|
+
scheme: 'bearer',
|
|
39745
|
+
type: 'http'
|
|
39746
|
+
}
|
|
39747
|
+
],
|
|
39748
|
+
url: '/api/openstack-routers/{uuid}/set_external_gateway/',
|
|
39749
|
+
...options,
|
|
39750
|
+
headers: {
|
|
39751
|
+
'Content-Type': 'application/json',
|
|
39752
|
+
...options.headers
|
|
39753
|
+
}
|
|
39754
|
+
});
|
|
39755
|
+
};
|
|
39057
39756
|
/**
|
|
39058
39757
|
* Mark router as OK
|
|
39059
39758
|
* Manually transition the router to OK state and clear error fields. Staff-only operation.
|
|
@@ -43438,6 +44137,34 @@ export const projectsSyncUserRoles = (options) => {
|
|
|
43438
44137
|
...options
|
|
43439
44138
|
});
|
|
43440
44139
|
};
|
|
44140
|
+
/**
|
|
44141
|
+
* Update affiliated organizations for a project
|
|
44142
|
+
* Assigns a project to one or more affiliated organizations. Replaces the current set.
|
|
44143
|
+
*/
|
|
44144
|
+
export const projectsUpdateAffiliatedOrganizations = (options) => {
|
|
44145
|
+
return (options.client ?? _heyApiClient).post({
|
|
44146
|
+
security: [
|
|
44147
|
+
{
|
|
44148
|
+
name: 'Authorization',
|
|
44149
|
+
type: 'apiKey'
|
|
44150
|
+
},
|
|
44151
|
+
{
|
|
44152
|
+
scheme: 'bearer',
|
|
44153
|
+
type: 'http'
|
|
44154
|
+
},
|
|
44155
|
+
{
|
|
44156
|
+
scheme: 'bearer',
|
|
44157
|
+
type: 'http'
|
|
44158
|
+
}
|
|
44159
|
+
],
|
|
44160
|
+
url: '/api/projects/{uuid}/update_affiliated_organizations/',
|
|
44161
|
+
...options,
|
|
44162
|
+
headers: {
|
|
44163
|
+
'Content-Type': 'application/json',
|
|
44164
|
+
...options.headers
|
|
44165
|
+
}
|
|
44166
|
+
});
|
|
44167
|
+
};
|
|
43441
44168
|
/**
|
|
43442
44169
|
* Update a user's role expiration
|
|
43443
44170
|
* Updates the expiration time for a user's existing role in the current scope. This is useful for extending or shortening the duration of a permission. To make a role permanent, set expiration_time to null.
|