waldur-js-client 8.0.8-dev.12 → 8.0.8-dev.14
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 +19 -1
- package/dist/sdk.gen.js +189 -0
- package/dist/types.gen.d.ts +308 -53
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -33182,6 +33182,69 @@ export const onboardingSupportedCountriesRetrieve = (options) => {
|
|
|
33182
33182
|
...options
|
|
33183
33183
|
});
|
|
33184
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
|
+
};
|
|
33185
33248
|
export const openportalAllocationUserUsageList = (options) => {
|
|
33186
33249
|
return (options?.client ?? _heyApiClient).get({
|
|
33187
33250
|
security: [
|
|
@@ -33808,6 +33871,69 @@ export const openportalManagedProjectsReject = (options) => {
|
|
|
33808
33871
|
}
|
|
33809
33872
|
});
|
|
33810
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
|
+
};
|
|
33811
33937
|
export const openportalProjectTemplateList = (options) => {
|
|
33812
33938
|
return (options?.client ?? _heyApiClient).get({
|
|
33813
33939
|
security: [
|
|
@@ -33995,6 +34121,69 @@ export const openportalProjectTemplateDeleteDestroy = (options) => {
|
|
|
33995
34121
|
...options
|
|
33996
34122
|
});
|
|
33997
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
|
|
34142
|
+
});
|
|
34143
|
+
};
|
|
34144
|
+
/**
|
|
34145
|
+
* Get number of items in the collection matching the request parameters.
|
|
34146
|
+
*/
|
|
34147
|
+
export const openportalProjectUsageReportsCount = (options) => {
|
|
34148
|
+
return (options?.client ?? _heyApiClient).head({
|
|
34149
|
+
security: [
|
|
34150
|
+
{
|
|
34151
|
+
name: 'Authorization',
|
|
34152
|
+
type: 'apiKey'
|
|
34153
|
+
},
|
|
34154
|
+
{
|
|
34155
|
+
scheme: 'bearer',
|
|
34156
|
+
type: 'http'
|
|
34157
|
+
},
|
|
34158
|
+
{
|
|
34159
|
+
scheme: 'bearer',
|
|
34160
|
+
type: 'http'
|
|
34161
|
+
}
|
|
34162
|
+
],
|
|
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}/',
|
|
34184
|
+
...options
|
|
34185
|
+
});
|
|
34186
|
+
};
|
|
33998
34187
|
export const openportalProjectinfoList = (options) => {
|
|
33999
34188
|
return (options?.client ?? _heyApiClient).get({
|
|
34000
34189
|
security: [
|
package/dist/types.gen.d.ts
CHANGED
|
@@ -2423,6 +2423,14 @@ export type BasicCustomer = {
|
|
|
2423
2423
|
readonly uuid: string;
|
|
2424
2424
|
name: string;
|
|
2425
2425
|
};
|
|
2426
|
+
export type BasicCustomerRequest = {
|
|
2427
|
+
name: string;
|
|
2428
|
+
};
|
|
2429
|
+
export type BasicProject = {
|
|
2430
|
+
readonly url: string;
|
|
2431
|
+
readonly uuid: string;
|
|
2432
|
+
name: string;
|
|
2433
|
+
};
|
|
2426
2434
|
export type BasicUser = {
|
|
2427
2435
|
readonly url?: string;
|
|
2428
2436
|
readonly uuid?: string;
|
|
@@ -2736,6 +2744,23 @@ export type CachePerformance = {
|
|
|
2736
2744
|
*/
|
|
2737
2745
|
readonly effective_cache_size: string;
|
|
2738
2746
|
};
|
|
2747
|
+
export type CachedProjectStorageReport = {
|
|
2748
|
+
readonly id: number;
|
|
2749
|
+
year: number;
|
|
2750
|
+
month: number;
|
|
2751
|
+
project_identifier: string;
|
|
2752
|
+
resource: string;
|
|
2753
|
+
report: ProjectStorageReport;
|
|
2754
|
+
};
|
|
2755
|
+
export type CachedProjectUsageReport = {
|
|
2756
|
+
readonly id: number;
|
|
2757
|
+
year: number;
|
|
2758
|
+
month: number;
|
|
2759
|
+
project_identifier: string;
|
|
2760
|
+
resource: string;
|
|
2761
|
+
is_complete?: boolean;
|
|
2762
|
+
report: ProjectUsageReport;
|
|
2763
|
+
};
|
|
2739
2764
|
export type CallApplicantAttributeConfig = {
|
|
2740
2765
|
readonly uuid: string;
|
|
2741
2766
|
readonly call_uuid: string;
|
|
@@ -5870,6 +5895,37 @@ export type DailyOrderStats = {
|
|
|
5870
5895
|
[key: string]: number;
|
|
5871
5896
|
};
|
|
5872
5897
|
};
|
|
5898
|
+
export type DailyProjectUsageReport = {
|
|
5899
|
+
reports: {
|
|
5900
|
+
[key: string]: Usage;
|
|
5901
|
+
};
|
|
5902
|
+
components?: {
|
|
5903
|
+
[key: string]: {
|
|
5904
|
+
[key: string]: Usage;
|
|
5905
|
+
};
|
|
5906
|
+
};
|
|
5907
|
+
user_job_counts?: {
|
|
5908
|
+
[key: string]: number;
|
|
5909
|
+
};
|
|
5910
|
+
user_wait_seconds?: {
|
|
5911
|
+
[key: string]: number;
|
|
5912
|
+
};
|
|
5913
|
+
num_jobs?: number;
|
|
5914
|
+
total_wait_seconds?: number;
|
|
5915
|
+
is_complete: boolean;
|
|
5916
|
+
};
|
|
5917
|
+
export type DailyStorageReport = {
|
|
5918
|
+
project: string;
|
|
5919
|
+
generated_at: string;
|
|
5920
|
+
project_quotas: {
|
|
5921
|
+
[key: string]: OpenPortalQuota;
|
|
5922
|
+
};
|
|
5923
|
+
user_quotas: {
|
|
5924
|
+
[key: string]: {
|
|
5925
|
+
[key: string]: OpenPortalQuota;
|
|
5926
|
+
};
|
|
5927
|
+
};
|
|
5928
|
+
};
|
|
5873
5929
|
export type DataAccessSummary = {
|
|
5874
5930
|
total_administrative_access: number | null;
|
|
5875
5931
|
total_organizational_access: number;
|
|
@@ -9084,7 +9140,7 @@ export type ManagedProject = {
|
|
|
9084
9140
|
*/
|
|
9085
9141
|
readonly details: unknown;
|
|
9086
9142
|
project: string;
|
|
9087
|
-
project_data:
|
|
9143
|
+
project_data: BasicProject;
|
|
9088
9144
|
project_template: string;
|
|
9089
9145
|
project_template_data: ProjectTemplate;
|
|
9090
9146
|
/**
|
|
@@ -12800,6 +12856,10 @@ export type OnboardingVerificationRequest = {
|
|
|
12800
12856
|
expires_at?: string | null;
|
|
12801
12857
|
};
|
|
12802
12858
|
export type OnboardingVerificationStatusEnum = 'pending' | 'verified' | 'failed' | 'escalated' | 'expired';
|
|
12859
|
+
export type OpenPortalQuota = {
|
|
12860
|
+
limit: string;
|
|
12861
|
+
usage?: string;
|
|
12862
|
+
};
|
|
12803
12863
|
export type OpenStackAllowedAddressPair = {
|
|
12804
12864
|
mac_address?: string;
|
|
12805
12865
|
};
|
|
@@ -17815,6 +17875,17 @@ export type Project = {
|
|
|
17815
17875
|
};
|
|
17816
17876
|
billing_price_estimate?: NestedPriceEstimate;
|
|
17817
17877
|
};
|
|
17878
|
+
export type ProjectAccountingSummary = {
|
|
17879
|
+
readonly project_uuid: string;
|
|
17880
|
+
readonly project_name: string;
|
|
17881
|
+
readonly customer_uuid: string;
|
|
17882
|
+
readonly customer_name: string;
|
|
17883
|
+
readonly start_date: string | null;
|
|
17884
|
+
readonly end_date: string | null;
|
|
17885
|
+
readonly total_credits: string;
|
|
17886
|
+
readonly total_spend: string;
|
|
17887
|
+
readonly current_month_spend: string;
|
|
17888
|
+
};
|
|
17818
17889
|
export type ProjectAnswer = {
|
|
17819
17890
|
readonly project_uuid: string;
|
|
17820
17891
|
readonly project_name: string;
|
|
@@ -18217,6 +18288,24 @@ export type ProjectServiceAccountRequest = {
|
|
|
18217
18288
|
preferred_identifier?: string;
|
|
18218
18289
|
project: string | null;
|
|
18219
18290
|
};
|
|
18291
|
+
export type ProjectStorageReport = {
|
|
18292
|
+
project: string;
|
|
18293
|
+
generated_at: string;
|
|
18294
|
+
project_quotas: {
|
|
18295
|
+
[key: string]: OpenPortalQuota;
|
|
18296
|
+
};
|
|
18297
|
+
user_quotas: {
|
|
18298
|
+
[key: string]: {
|
|
18299
|
+
[key: string]: OpenPortalQuota;
|
|
18300
|
+
};
|
|
18301
|
+
};
|
|
18302
|
+
users: {
|
|
18303
|
+
[key: string]: string;
|
|
18304
|
+
};
|
|
18305
|
+
daily_reports?: {
|
|
18306
|
+
[key: string]: DailyStorageReport;
|
|
18307
|
+
};
|
|
18308
|
+
};
|
|
18220
18309
|
export type ProjectTemplate = {
|
|
18221
18310
|
readonly uuid: string;
|
|
18222
18311
|
name: string;
|
|
@@ -18225,17 +18314,17 @@ export type ProjectTemplate = {
|
|
|
18225
18314
|
*/
|
|
18226
18315
|
offering?: string | null;
|
|
18227
18316
|
provider: string;
|
|
18228
|
-
provider_data:
|
|
18317
|
+
provider_data: BasicCustomer;
|
|
18229
18318
|
portal: string;
|
|
18230
18319
|
/**
|
|
18231
18320
|
* The key that is used to authenticate requests for this class.
|
|
18232
18321
|
*/
|
|
18233
18322
|
key?: string | null;
|
|
18234
18323
|
customer: string;
|
|
18235
|
-
customer_data:
|
|
18324
|
+
customer_data: BasicCustomer;
|
|
18236
18325
|
shortname?: string | null;
|
|
18237
18326
|
offerings: Array<string>;
|
|
18238
|
-
readonly offerings_data: Array<
|
|
18327
|
+
readonly offerings_data: Array<ResourceOffering>;
|
|
18239
18328
|
/**
|
|
18240
18329
|
* The credit limit beyond which requests need to be approved by a local admin. If this is None, then no local approval is required. If this is set to 0, then all requests (including creating the project) need to be approved.
|
|
18241
18330
|
*/
|
|
@@ -18301,6 +18390,15 @@ export type ProjectType = {
|
|
|
18301
18390
|
name: string;
|
|
18302
18391
|
description?: string;
|
|
18303
18392
|
};
|
|
18393
|
+
export type ProjectUsageReport = {
|
|
18394
|
+
project: string;
|
|
18395
|
+
reports: {
|
|
18396
|
+
[key: string]: DailyProjectUsageReport;
|
|
18397
|
+
};
|
|
18398
|
+
users: {
|
|
18399
|
+
[key: string]: string;
|
|
18400
|
+
};
|
|
18401
|
+
};
|
|
18304
18402
|
export type ProjectUser = {
|
|
18305
18403
|
readonly url: string;
|
|
18306
18404
|
readonly uuid: string;
|
|
@@ -18904,55 +19002,6 @@ export type ProviderOfferingDetails = {
|
|
|
18904
19002
|
*/
|
|
18905
19003
|
readonly google_calendar_link?: string | null;
|
|
18906
19004
|
};
|
|
18907
|
-
export type ProviderOfferingDetailsRequest = {
|
|
18908
|
-
name: string;
|
|
18909
|
-
/**
|
|
18910
|
-
* URL-friendly identifier. Only editable by staff users.
|
|
18911
|
-
*/
|
|
18912
|
-
slug?: string;
|
|
18913
|
-
description?: string;
|
|
18914
|
-
full_description?: string;
|
|
18915
|
-
privacy_policy_link?: string;
|
|
18916
|
-
helpdesk_url?: string;
|
|
18917
|
-
documentation_url?: string;
|
|
18918
|
-
/**
|
|
18919
|
-
* Publicly accessible offering access URL
|
|
18920
|
-
*/
|
|
18921
|
-
access_url?: string;
|
|
18922
|
-
customer?: string | null;
|
|
18923
|
-
category: string;
|
|
18924
|
-
attributes?: unknown;
|
|
18925
|
-
components?: Array<OfferingComponentRequest>;
|
|
18926
|
-
vendor_details?: string;
|
|
18927
|
-
getting_started?: string;
|
|
18928
|
-
integration_guide?: string;
|
|
18929
|
-
thumbnail?: (Blob | File) | null;
|
|
18930
|
-
plans?: Array<BaseProviderPlanRequest>;
|
|
18931
|
-
type: string;
|
|
18932
|
-
/**
|
|
18933
|
-
* Accessible to all customers.
|
|
18934
|
-
*/
|
|
18935
|
-
shared?: boolean;
|
|
18936
|
-
/**
|
|
18937
|
-
* Purchase and usage is invoiced.
|
|
18938
|
-
*/
|
|
18939
|
-
billable?: boolean;
|
|
18940
|
-
datacite_doi?: string;
|
|
18941
|
-
latitude?: number | null;
|
|
18942
|
-
longitude?: number | null;
|
|
18943
|
-
/**
|
|
18944
|
-
* Country code (ISO 3166-1 alpha-2)
|
|
18945
|
-
*/
|
|
18946
|
-
country?: CountryEnum | BlankEnum;
|
|
18947
|
-
backend_id?: string;
|
|
18948
|
-
/**
|
|
18949
|
-
* Validation rules for resource backend_id: format regex and uniqueness scope.
|
|
18950
|
-
*/
|
|
18951
|
-
backend_id_rules?: unknown;
|
|
18952
|
-
image?: (Blob | File) | null;
|
|
18953
|
-
backend_metadata?: unknown;
|
|
18954
|
-
compliance_checklist?: string | null;
|
|
18955
|
-
};
|
|
18956
19005
|
export type ProviderOfferingStats = {
|
|
18957
19006
|
/**
|
|
18958
19007
|
* Offering statistics including resources, revenue, and utilization
|
|
@@ -21264,6 +21313,9 @@ export type ResourceOffering = {
|
|
|
21264
21313
|
name: string;
|
|
21265
21314
|
readonly uuid: string;
|
|
21266
21315
|
};
|
|
21316
|
+
export type ResourceOfferingRequest = {
|
|
21317
|
+
name: string;
|
|
21318
|
+
};
|
|
21267
21319
|
export type ResourceOptionsRequest = {
|
|
21268
21320
|
options?: unknown;
|
|
21269
21321
|
};
|
|
@@ -24535,6 +24587,9 @@ export type UpdatePoolRequest = {
|
|
|
24535
24587
|
name: string;
|
|
24536
24588
|
};
|
|
24537
24589
|
export type UrgencyEnum = 'low' | 'medium' | 'high';
|
|
24590
|
+
export type Usage = {
|
|
24591
|
+
seconds: number;
|
|
24592
|
+
};
|
|
24538
24593
|
export type User = {
|
|
24539
24594
|
readonly url?: string;
|
|
24540
24595
|
readonly uuid?: string;
|
|
@@ -59760,6 +59815,64 @@ export type OnboardingSupportedCountriesRetrieveResponses = {
|
|
|
59760
59815
|
200: SupportedCountriesResponse;
|
|
59761
59816
|
};
|
|
59762
59817
|
export type OnboardingSupportedCountriesRetrieveResponse = OnboardingSupportedCountriesRetrieveResponses[keyof OnboardingSupportedCountriesRetrieveResponses];
|
|
59818
|
+
export type OpenportalAccountingSummaryListData = {
|
|
59819
|
+
body?: never;
|
|
59820
|
+
path?: never;
|
|
59821
|
+
query?: {
|
|
59822
|
+
customer_uuid?: string;
|
|
59823
|
+
is_active?: boolean;
|
|
59824
|
+
/**
|
|
59825
|
+
* A page number within the paginated result set.
|
|
59826
|
+
*/
|
|
59827
|
+
page?: number;
|
|
59828
|
+
/**
|
|
59829
|
+
* Number of results to return per page.
|
|
59830
|
+
*/
|
|
59831
|
+
page_size?: number;
|
|
59832
|
+
project_uuid?: string;
|
|
59833
|
+
};
|
|
59834
|
+
url: '/api/openportal-accounting-summary/';
|
|
59835
|
+
};
|
|
59836
|
+
export type OpenportalAccountingSummaryListResponses = {
|
|
59837
|
+
200: Array<ProjectAccountingSummary>;
|
|
59838
|
+
};
|
|
59839
|
+
export type OpenportalAccountingSummaryListResponse = OpenportalAccountingSummaryListResponses[keyof OpenportalAccountingSummaryListResponses];
|
|
59840
|
+
export type OpenportalAccountingSummaryCountData = {
|
|
59841
|
+
body?: never;
|
|
59842
|
+
path?: never;
|
|
59843
|
+
query?: {
|
|
59844
|
+
customer_uuid?: string;
|
|
59845
|
+
is_active?: boolean;
|
|
59846
|
+
/**
|
|
59847
|
+
* A page number within the paginated result set.
|
|
59848
|
+
*/
|
|
59849
|
+
page?: number;
|
|
59850
|
+
/**
|
|
59851
|
+
* Number of results to return per page.
|
|
59852
|
+
*/
|
|
59853
|
+
page_size?: number;
|
|
59854
|
+
project_uuid?: string;
|
|
59855
|
+
};
|
|
59856
|
+
url: '/api/openportal-accounting-summary/';
|
|
59857
|
+
};
|
|
59858
|
+
export type OpenportalAccountingSummaryCountResponses = {
|
|
59859
|
+
/**
|
|
59860
|
+
* No response body
|
|
59861
|
+
*/
|
|
59862
|
+
200: unknown;
|
|
59863
|
+
};
|
|
59864
|
+
export type OpenportalAccountingSummaryRetrieveData = {
|
|
59865
|
+
body?: never;
|
|
59866
|
+
path: {
|
|
59867
|
+
uuid: string;
|
|
59868
|
+
};
|
|
59869
|
+
query?: never;
|
|
59870
|
+
url: '/api/openportal-accounting-summary/{uuid}/';
|
|
59871
|
+
};
|
|
59872
|
+
export type OpenportalAccountingSummaryRetrieveResponses = {
|
|
59873
|
+
200: ProjectAccountingSummary;
|
|
59874
|
+
};
|
|
59875
|
+
export type OpenportalAccountingSummaryRetrieveResponse = OpenportalAccountingSummaryRetrieveResponses[keyof OpenportalAccountingSummaryRetrieveResponses];
|
|
59763
59876
|
export type OpenportalAllocationUserUsageListData = {
|
|
59764
59877
|
body?: never;
|
|
59765
59878
|
path?: never;
|
|
@@ -60210,6 +60323,10 @@ export type OpenportalManagedProjectsListData = {
|
|
|
60210
60323
|
query?: {
|
|
60211
60324
|
identifier?: string;
|
|
60212
60325
|
local_identifier?: string;
|
|
60326
|
+
/**
|
|
60327
|
+
* Which field to use when ordering the results.
|
|
60328
|
+
*/
|
|
60329
|
+
o?: string;
|
|
60213
60330
|
/**
|
|
60214
60331
|
* A page number within the paginated result set.
|
|
60215
60332
|
*/
|
|
@@ -60222,6 +60339,7 @@ export type OpenportalManagedProjectsListData = {
|
|
|
60222
60339
|
project_template?: string;
|
|
60223
60340
|
project_template_uuid?: string;
|
|
60224
60341
|
project_uuid?: string;
|
|
60342
|
+
query?: string;
|
|
60225
60343
|
state?: Array<RemoteProjectUpdateRequestStateEnum>;
|
|
60226
60344
|
};
|
|
60227
60345
|
url: '/api/openportal-managed-projects/';
|
|
@@ -60236,6 +60354,10 @@ export type OpenportalManagedProjectsCountData = {
|
|
|
60236
60354
|
query?: {
|
|
60237
60355
|
identifier?: string;
|
|
60238
60356
|
local_identifier?: string;
|
|
60357
|
+
/**
|
|
60358
|
+
* Which field to use when ordering the results.
|
|
60359
|
+
*/
|
|
60360
|
+
o?: string;
|
|
60239
60361
|
/**
|
|
60240
60362
|
* A page number within the paginated result set.
|
|
60241
60363
|
*/
|
|
@@ -60248,6 +60370,7 @@ export type OpenportalManagedProjectsCountData = {
|
|
|
60248
60370
|
project_template?: string;
|
|
60249
60371
|
project_template_uuid?: string;
|
|
60250
60372
|
project_uuid?: string;
|
|
60373
|
+
query?: string;
|
|
60251
60374
|
state?: Array<RemoteProjectUpdateRequestStateEnum>;
|
|
60252
60375
|
};
|
|
60253
60376
|
url: '/api/openportal-managed-projects/';
|
|
@@ -60404,6 +60527,71 @@ export type OpenportalManagedProjectsRejectResponses = {
|
|
|
60404
60527
|
*/
|
|
60405
60528
|
200: unknown;
|
|
60406
60529
|
};
|
|
60530
|
+
export type OpenportalProjectStorageReportsListData = {
|
|
60531
|
+
body?: never;
|
|
60532
|
+
path?: never;
|
|
60533
|
+
query?: {
|
|
60534
|
+
month?: number;
|
|
60535
|
+
/**
|
|
60536
|
+
* A page number within the paginated result set.
|
|
60537
|
+
*/
|
|
60538
|
+
page?: number;
|
|
60539
|
+
/**
|
|
60540
|
+
* Number of results to return per page.
|
|
60541
|
+
*/
|
|
60542
|
+
page_size?: number;
|
|
60543
|
+
project_identifier?: string;
|
|
60544
|
+
project_uuid?: string;
|
|
60545
|
+
resource?: string;
|
|
60546
|
+
year?: number;
|
|
60547
|
+
};
|
|
60548
|
+
url: '/api/openportal-project-storage-reports/';
|
|
60549
|
+
};
|
|
60550
|
+
export type OpenportalProjectStorageReportsListResponses = {
|
|
60551
|
+
200: Array<CachedProjectStorageReport>;
|
|
60552
|
+
};
|
|
60553
|
+
export type OpenportalProjectStorageReportsListResponse = OpenportalProjectStorageReportsListResponses[keyof OpenportalProjectStorageReportsListResponses];
|
|
60554
|
+
export type OpenportalProjectStorageReportsCountData = {
|
|
60555
|
+
body?: never;
|
|
60556
|
+
path?: never;
|
|
60557
|
+
query?: {
|
|
60558
|
+
month?: number;
|
|
60559
|
+
/**
|
|
60560
|
+
* A page number within the paginated result set.
|
|
60561
|
+
*/
|
|
60562
|
+
page?: number;
|
|
60563
|
+
/**
|
|
60564
|
+
* Number of results to return per page.
|
|
60565
|
+
*/
|
|
60566
|
+
page_size?: number;
|
|
60567
|
+
project_identifier?: string;
|
|
60568
|
+
project_uuid?: string;
|
|
60569
|
+
resource?: string;
|
|
60570
|
+
year?: number;
|
|
60571
|
+
};
|
|
60572
|
+
url: '/api/openportal-project-storage-reports/';
|
|
60573
|
+
};
|
|
60574
|
+
export type OpenportalProjectStorageReportsCountResponses = {
|
|
60575
|
+
/**
|
|
60576
|
+
* No response body
|
|
60577
|
+
*/
|
|
60578
|
+
200: unknown;
|
|
60579
|
+
};
|
|
60580
|
+
export type OpenportalProjectStorageReportsRetrieveData = {
|
|
60581
|
+
body?: never;
|
|
60582
|
+
path: {
|
|
60583
|
+
/**
|
|
60584
|
+
* A unique integer value identifying this cached project storage report.
|
|
60585
|
+
*/
|
|
60586
|
+
id: number;
|
|
60587
|
+
};
|
|
60588
|
+
query?: never;
|
|
60589
|
+
url: '/api/openportal-project-storage-reports/{id}/';
|
|
60590
|
+
};
|
|
60591
|
+
export type OpenportalProjectStorageReportsRetrieveResponses = {
|
|
60592
|
+
200: CachedProjectStorageReport;
|
|
60593
|
+
};
|
|
60594
|
+
export type OpenportalProjectStorageReportsRetrieveResponse = OpenportalProjectStorageReportsRetrieveResponses[keyof OpenportalProjectStorageReportsRetrieveResponses];
|
|
60407
60595
|
export type OpenportalProjectTemplateListData = {
|
|
60408
60596
|
body?: never;
|
|
60409
60597
|
path?: never;
|
|
@@ -60526,6 +60714,73 @@ export type OpenportalProjectTemplateDeleteDestroyResponses = {
|
|
|
60526
60714
|
204: void;
|
|
60527
60715
|
};
|
|
60528
60716
|
export type OpenportalProjectTemplateDeleteDestroyResponse = OpenportalProjectTemplateDeleteDestroyResponses[keyof OpenportalProjectTemplateDeleteDestroyResponses];
|
|
60717
|
+
export type OpenportalProjectUsageReportsListData = {
|
|
60718
|
+
body?: never;
|
|
60719
|
+
path?: never;
|
|
60720
|
+
query?: {
|
|
60721
|
+
is_complete?: boolean;
|
|
60722
|
+
month?: number;
|
|
60723
|
+
/**
|
|
60724
|
+
* A page number within the paginated result set.
|
|
60725
|
+
*/
|
|
60726
|
+
page?: number;
|
|
60727
|
+
/**
|
|
60728
|
+
* Number of results to return per page.
|
|
60729
|
+
*/
|
|
60730
|
+
page_size?: number;
|
|
60731
|
+
project_identifier?: string;
|
|
60732
|
+
project_uuid?: string;
|
|
60733
|
+
resource?: string;
|
|
60734
|
+
year?: number;
|
|
60735
|
+
};
|
|
60736
|
+
url: '/api/openportal-project-usage-reports/';
|
|
60737
|
+
};
|
|
60738
|
+
export type OpenportalProjectUsageReportsListResponses = {
|
|
60739
|
+
200: Array<CachedProjectUsageReport>;
|
|
60740
|
+
};
|
|
60741
|
+
export type OpenportalProjectUsageReportsListResponse = OpenportalProjectUsageReportsListResponses[keyof OpenportalProjectUsageReportsListResponses];
|
|
60742
|
+
export type OpenportalProjectUsageReportsCountData = {
|
|
60743
|
+
body?: never;
|
|
60744
|
+
path?: never;
|
|
60745
|
+
query?: {
|
|
60746
|
+
is_complete?: boolean;
|
|
60747
|
+
month?: number;
|
|
60748
|
+
/**
|
|
60749
|
+
* A page number within the paginated result set.
|
|
60750
|
+
*/
|
|
60751
|
+
page?: number;
|
|
60752
|
+
/**
|
|
60753
|
+
* Number of results to return per page.
|
|
60754
|
+
*/
|
|
60755
|
+
page_size?: number;
|
|
60756
|
+
project_identifier?: string;
|
|
60757
|
+
project_uuid?: string;
|
|
60758
|
+
resource?: string;
|
|
60759
|
+
year?: number;
|
|
60760
|
+
};
|
|
60761
|
+
url: '/api/openportal-project-usage-reports/';
|
|
60762
|
+
};
|
|
60763
|
+
export type OpenportalProjectUsageReportsCountResponses = {
|
|
60764
|
+
/**
|
|
60765
|
+
* No response body
|
|
60766
|
+
*/
|
|
60767
|
+
200: unknown;
|
|
60768
|
+
};
|
|
60769
|
+
export type OpenportalProjectUsageReportsRetrieveData = {
|
|
60770
|
+
body?: never;
|
|
60771
|
+
path: {
|
|
60772
|
+
/**
|
|
60773
|
+
* A unique integer value identifying this cached project usage report.
|
|
60774
|
+
*/
|
|
60775
|
+
id: number;
|
|
60776
|
+
};
|
|
60777
|
+
query?: never;
|
|
60778
|
+
url: '/api/openportal-project-usage-reports/{id}/';
|
|
60779
|
+
};
|
|
60780
|
+
export type OpenportalProjectUsageReportsRetrieveResponses = {
|
|
60781
|
+
200: CachedProjectUsageReport;
|
|
60782
|
+
};
|
|
60783
|
+
export type OpenportalProjectUsageReportsRetrieveResponse = OpenportalProjectUsageReportsRetrieveResponses[keyof OpenportalProjectUsageReportsRetrieveResponses];
|
|
60529
60784
|
export type OpenportalProjectinfoListData = {
|
|
60530
60785
|
body?: never;
|
|
60531
60786
|
path?: never;
|