waldur-js-client 8.0.8-dev.14 → 8.0.8-dev.15
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/types.gen.d.ts +52 -1
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -5896,17 +5896,29 @@ export type DailyOrderStats = {
|
|
|
5896
5896
|
};
|
|
5897
5897
|
};
|
|
5898
5898
|
export type DailyProjectUsageReport = {
|
|
5899
|
+
/**
|
|
5900
|
+
* local_username → Usage
|
|
5901
|
+
*/
|
|
5899
5902
|
reports: {
|
|
5900
5903
|
[key: string]: Usage;
|
|
5901
5904
|
};
|
|
5905
|
+
/**
|
|
5906
|
+
* component_name → local_username → Usage. e.g. { "cpu": { "chris.aiproject": { "seconds": 41055 } } }
|
|
5907
|
+
*/
|
|
5902
5908
|
components?: {
|
|
5903
5909
|
[key: string]: {
|
|
5904
5910
|
[key: string]: Usage;
|
|
5905
5911
|
};
|
|
5906
5912
|
};
|
|
5913
|
+
/**
|
|
5914
|
+
* local_username → job count
|
|
5915
|
+
*/
|
|
5907
5916
|
user_job_counts?: {
|
|
5908
5917
|
[key: string]: number;
|
|
5909
5918
|
};
|
|
5919
|
+
/**
|
|
5920
|
+
* local_username → wait seconds
|
|
5921
|
+
*/
|
|
5910
5922
|
user_wait_seconds?: {
|
|
5911
5923
|
[key: string]: number;
|
|
5912
5924
|
};
|
|
@@ -5916,10 +5928,19 @@ export type DailyProjectUsageReport = {
|
|
|
5916
5928
|
};
|
|
5917
5929
|
export type DailyStorageReport = {
|
|
5918
5930
|
project: string;
|
|
5931
|
+
/**
|
|
5932
|
+
* RFC3339 timestamp
|
|
5933
|
+
*/
|
|
5919
5934
|
generated_at: string;
|
|
5935
|
+
/**
|
|
5936
|
+
* Volume → Quota
|
|
5937
|
+
*/
|
|
5920
5938
|
project_quotas: {
|
|
5921
5939
|
[key: string]: OpenPortalQuota;
|
|
5922
5940
|
};
|
|
5941
|
+
/**
|
|
5942
|
+
* UserIdentifier → (Volume → Quota)
|
|
5943
|
+
*/
|
|
5923
5944
|
user_quotas: {
|
|
5924
5945
|
[key: string]: {
|
|
5925
5946
|
[key: string]: OpenPortalQuota;
|
|
@@ -12857,7 +12878,13 @@ export type OnboardingVerificationRequest = {
|
|
|
12857
12878
|
};
|
|
12858
12879
|
export type OnboardingVerificationStatusEnum = 'pending' | 'verified' | 'failed' | 'escalated' | 'expired';
|
|
12859
12880
|
export type OpenPortalQuota = {
|
|
12881
|
+
/**
|
|
12882
|
+
* Size limit. "unlimited" or a size string e.g. "1024.00 GB"
|
|
12883
|
+
*/
|
|
12860
12884
|
limit: string;
|
|
12885
|
+
/**
|
|
12886
|
+
* Size usage e.g. "24.00 KB". Absent when the server has no usage data.
|
|
12887
|
+
*/
|
|
12861
12888
|
usage?: string;
|
|
12862
12889
|
};
|
|
12863
12890
|
export type OpenStackAllowedAddressPair = {
|
|
@@ -18290,18 +18317,33 @@ export type ProjectServiceAccountRequest = {
|
|
|
18290
18317
|
};
|
|
18291
18318
|
export type ProjectStorageReport = {
|
|
18292
18319
|
project: string;
|
|
18320
|
+
/**
|
|
18321
|
+
* RFC3339 timestamp
|
|
18322
|
+
*/
|
|
18293
18323
|
generated_at: string;
|
|
18324
|
+
/**
|
|
18325
|
+
* Volume → Quota
|
|
18326
|
+
*/
|
|
18294
18327
|
project_quotas: {
|
|
18295
18328
|
[key: string]: OpenPortalQuota;
|
|
18296
18329
|
};
|
|
18330
|
+
/**
|
|
18331
|
+
* UserIdentifier → (Volume → Quota)
|
|
18332
|
+
*/
|
|
18297
18333
|
user_quotas: {
|
|
18298
18334
|
[key: string]: {
|
|
18299
18335
|
[key: string]: OpenPortalQuota;
|
|
18300
18336
|
};
|
|
18301
18337
|
};
|
|
18338
|
+
/**
|
|
18339
|
+
* UserIdentifier → local_username
|
|
18340
|
+
*/
|
|
18302
18341
|
users: {
|
|
18303
18342
|
[key: string]: string;
|
|
18304
18343
|
};
|
|
18344
|
+
/**
|
|
18345
|
+
* "YYYY-MM-DD" → DailyStorageReportJson. Absent from JSON when there are no daily snapshots.
|
|
18346
|
+
*/
|
|
18305
18347
|
daily_reports?: {
|
|
18306
18348
|
[key: string]: DailyStorageReport;
|
|
18307
18349
|
};
|
|
@@ -18391,10 +18433,19 @@ export type ProjectType = {
|
|
|
18391
18433
|
description?: string;
|
|
18392
18434
|
};
|
|
18393
18435
|
export type ProjectUsageReport = {
|
|
18436
|
+
/**
|
|
18437
|
+
* ProjectIdentifier string e.g. "aiproject.brics"
|
|
18438
|
+
*/
|
|
18394
18439
|
project: string;
|
|
18440
|
+
/**
|
|
18441
|
+
* "YYYY-MM-DD" → DailyProjectUsageReportJson
|
|
18442
|
+
*/
|
|
18395
18443
|
reports: {
|
|
18396
18444
|
[key: string]: DailyProjectUsageReport;
|
|
18397
18445
|
};
|
|
18446
|
+
/**
|
|
18447
|
+
* UserIdentifier → local_username. e.g. { "chris.aiproject.brics": "chris.aiproject" }
|
|
18448
|
+
*/
|
|
18398
18449
|
users: {
|
|
18399
18450
|
[key: string]: string;
|
|
18400
18451
|
};
|
|
@@ -24819,7 +24870,7 @@ export type UserAgreementRequest = {
|
|
|
24819
24870
|
*/
|
|
24820
24871
|
language: string;
|
|
24821
24872
|
};
|
|
24822
|
-
export type UserAttributeEnum = 'username' | 'full_name' | 'email' | 'phone_number' | 'organization' | 'job_title' | 'affiliations' | 'gender' | 'personal_title' | 'birth_date' | 'place_of_birth' | 'country_of_residence' | 'nationality' | 'nationalities' | 'organization_country' | 'organization_type' | 'organization_registry_code' | 'eduperson_assurance' | 'civil_number' | 'identity_source';
|
|
24873
|
+
export type UserAttributeEnum = 'username' | 'first_name' | 'last_name' | 'full_name' | 'email' | 'phone_number' | 'organization' | 'job_title' | 'affiliations' | 'gender' | 'personal_title' | 'birth_date' | 'place_of_birth' | 'country_of_residence' | 'nationality' | 'nationalities' | 'organization_country' | 'organization_type' | 'organization_registry_code' | 'eduperson_assurance' | 'civil_number' | 'identity_source';
|
|
24823
24874
|
export type UserAuthMethodCount = {
|
|
24824
24875
|
/**
|
|
24825
24876
|
* Authentication method
|