waldur-js-client 8.0.9-dev.54 → 8.0.9-dev.55
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 +1211 -403
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -299,7 +299,9 @@ export type AgentEventSubscriptionWithConnection = {
|
|
|
299
299
|
/**
|
|
300
300
|
* List of observable object configurations
|
|
301
301
|
*/
|
|
302
|
-
readonly observable_objects:
|
|
302
|
+
readonly observable_objects: {
|
|
303
|
+
[key: string]: unknown;
|
|
304
|
+
};
|
|
303
305
|
/**
|
|
304
306
|
* RabbitMQ connection status for this subscription
|
|
305
307
|
*/
|
|
@@ -315,7 +317,9 @@ export type AgentIdentity = {
|
|
|
315
317
|
readonly created_by: string | null;
|
|
316
318
|
name: string;
|
|
317
319
|
version?: string | null;
|
|
318
|
-
dependencies?:
|
|
320
|
+
dependencies?: {
|
|
321
|
+
[key: string]: unknown;
|
|
322
|
+
};
|
|
319
323
|
/**
|
|
320
324
|
* Example: '/etc/waldur/agent.yaml'
|
|
321
325
|
*/
|
|
@@ -336,7 +340,9 @@ export type AgentIdentityRequest = {
|
|
|
336
340
|
offering: string;
|
|
337
341
|
name: string;
|
|
338
342
|
version?: string | null;
|
|
339
|
-
dependencies?:
|
|
343
|
+
dependencies?: {
|
|
344
|
+
[key: string]: unknown;
|
|
345
|
+
};
|
|
340
346
|
/**
|
|
341
347
|
* Example: '/etc/waldur/agent.yaml'
|
|
342
348
|
*/
|
|
@@ -422,7 +428,9 @@ export type AgentService = {
|
|
|
422
428
|
name: string;
|
|
423
429
|
mode?: string | null;
|
|
424
430
|
state: AgentServiceState;
|
|
425
|
-
statistics?:
|
|
431
|
+
statistics?: {
|
|
432
|
+
[key: string]: unknown;
|
|
433
|
+
};
|
|
426
434
|
readonly created: string;
|
|
427
435
|
readonly modified: string;
|
|
428
436
|
readonly processors: Array<NestedAgentProcessor>;
|
|
@@ -436,7 +444,9 @@ export type AgentServiceStatisticsRequest = {
|
|
|
436
444
|
/**
|
|
437
445
|
* Statistics data to be stored for the service
|
|
438
446
|
*/
|
|
439
|
-
statistics:
|
|
447
|
+
statistics: {
|
|
448
|
+
[key: string]: unknown;
|
|
449
|
+
};
|
|
440
450
|
};
|
|
441
451
|
export type AgentServiceStatus = {
|
|
442
452
|
/**
|
|
@@ -701,13 +711,21 @@ export type AnonymousChatInteraction = {
|
|
|
701
711
|
readonly uuid: string;
|
|
702
712
|
readonly user_slug: string;
|
|
703
713
|
readonly user_input: string;
|
|
704
|
-
readonly assistant_blocks:
|
|
705
|
-
|
|
714
|
+
readonly assistant_blocks: {
|
|
715
|
+
[key: string]: unknown;
|
|
716
|
+
};
|
|
717
|
+
readonly offering_uuids: {
|
|
718
|
+
[key: string]: unknown;
|
|
719
|
+
};
|
|
706
720
|
readonly result_count: number;
|
|
707
721
|
readonly is_flagged: boolean;
|
|
708
722
|
readonly severity: string;
|
|
709
|
-
readonly injection_categories:
|
|
710
|
-
|
|
723
|
+
readonly injection_categories: {
|
|
724
|
+
[key: string]: unknown;
|
|
725
|
+
};
|
|
726
|
+
readonly pii_categories: {
|
|
727
|
+
[key: string]: unknown;
|
|
728
|
+
};
|
|
711
729
|
readonly action_taken: string;
|
|
712
730
|
readonly warning: string;
|
|
713
731
|
/**
|
|
@@ -793,7 +811,9 @@ export type Answer = {
|
|
|
793
811
|
/**
|
|
794
812
|
* Flexible answer storage for different question types
|
|
795
813
|
*/
|
|
796
|
-
answer_data?:
|
|
814
|
+
answer_data?: {
|
|
815
|
+
[key: string]: unknown;
|
|
816
|
+
};
|
|
797
817
|
/**
|
|
798
818
|
* Internal flag - this answer requires additional review
|
|
799
819
|
*/
|
|
@@ -805,7 +825,9 @@ export type Answer = {
|
|
|
805
825
|
};
|
|
806
826
|
export type AnswerSubmitRequest = {
|
|
807
827
|
question_uuid: string;
|
|
808
|
-
answer_data:
|
|
828
|
+
answer_data: {
|
|
829
|
+
[key: string]: unknown;
|
|
830
|
+
} | null;
|
|
809
831
|
};
|
|
810
832
|
export type AnswerSubmitResponse = {
|
|
811
833
|
detail: string;
|
|
@@ -1033,7 +1055,9 @@ export type ArrowConsumptionRecord = {
|
|
|
1033
1055
|
/**
|
|
1034
1056
|
* Raw consumption data for debugging
|
|
1035
1057
|
*/
|
|
1036
|
-
readonly raw_data:
|
|
1058
|
+
readonly raw_data: {
|
|
1059
|
+
[key: string]: unknown;
|
|
1060
|
+
};
|
|
1037
1061
|
readonly created: string;
|
|
1038
1062
|
readonly modified: string;
|
|
1039
1063
|
};
|
|
@@ -1811,7 +1835,9 @@ export type Attribute = {
|
|
|
1811
1835
|
* A value must be provided for the attribute.
|
|
1812
1836
|
*/
|
|
1813
1837
|
required?: boolean;
|
|
1814
|
-
default?:
|
|
1838
|
+
default?: {
|
|
1839
|
+
[key: string]: unknown;
|
|
1840
|
+
} | null;
|
|
1815
1841
|
};
|
|
1816
1842
|
export type AttributeOption = {
|
|
1817
1843
|
readonly url: string;
|
|
@@ -1840,7 +1866,9 @@ export type AttributeRequest = {
|
|
|
1840
1866
|
* A value must be provided for the attribute.
|
|
1841
1867
|
*/
|
|
1842
1868
|
required?: boolean;
|
|
1843
|
-
default?:
|
|
1869
|
+
default?: {
|
|
1870
|
+
[key: string]: unknown;
|
|
1871
|
+
} | null;
|
|
1844
1872
|
};
|
|
1845
1873
|
export type AttributeSourceDetail = {
|
|
1846
1874
|
source: string;
|
|
@@ -2500,7 +2528,9 @@ export type BackendResource = {
|
|
|
2500
2528
|
readonly offering_name: string;
|
|
2501
2529
|
readonly offering_url: string;
|
|
2502
2530
|
backend_id?: string;
|
|
2503
|
-
backend_metadata?:
|
|
2531
|
+
backend_metadata?: {
|
|
2532
|
+
[key: string]: unknown;
|
|
2533
|
+
};
|
|
2504
2534
|
};
|
|
2505
2535
|
export type BackendResourceImportRequest = {
|
|
2506
2536
|
plan?: string;
|
|
@@ -2534,7 +2564,9 @@ export type BackendResourceRequest = {
|
|
|
2534
2564
|
project: string;
|
|
2535
2565
|
offering: string;
|
|
2536
2566
|
backend_id?: string;
|
|
2537
|
-
backend_metadata?:
|
|
2567
|
+
backend_metadata?: {
|
|
2568
|
+
[key: string]: unknown;
|
|
2569
|
+
};
|
|
2538
2570
|
};
|
|
2539
2571
|
export type BackendResourceRequestSetErredRequest = {
|
|
2540
2572
|
error_message?: string;
|
|
@@ -2725,7 +2757,9 @@ export type BookingResource = {
|
|
|
2725
2757
|
/**
|
|
2726
2758
|
* Public data used by specific plugin, such as storage mode for OpenStack.
|
|
2727
2759
|
*/
|
|
2728
|
-
readonly offering_plugin_options:
|
|
2760
|
+
readonly offering_plugin_options: {
|
|
2761
|
+
[key: string]: unknown;
|
|
2762
|
+
};
|
|
2729
2763
|
readonly provider_name: string;
|
|
2730
2764
|
readonly provider_uuid: string;
|
|
2731
2765
|
readonly provider_slug: string;
|
|
@@ -2825,7 +2859,9 @@ export type BookingResource = {
|
|
|
2825
2859
|
readonly endpoints: Array<NestedEndpoint>;
|
|
2826
2860
|
readonly error_message: string;
|
|
2827
2861
|
readonly error_traceback: string;
|
|
2828
|
-
readonly options:
|
|
2862
|
+
readonly options: {
|
|
2863
|
+
[key: string]: unknown;
|
|
2864
|
+
} | null;
|
|
2829
2865
|
readonly available_actions: Array<string>;
|
|
2830
2866
|
readonly last_sync: string;
|
|
2831
2867
|
order_in_progress: OrderDetails | null;
|
|
@@ -2866,16 +2902,22 @@ export type BroadcastMessage = {
|
|
|
2866
2902
|
readonly created: string;
|
|
2867
2903
|
subject: string;
|
|
2868
2904
|
body: string;
|
|
2869
|
-
query:
|
|
2905
|
+
query: {
|
|
2906
|
+
[key: string]: unknown;
|
|
2907
|
+
};
|
|
2870
2908
|
readonly author_full_name: string;
|
|
2871
|
-
readonly emails:
|
|
2909
|
+
readonly emails: {
|
|
2910
|
+
[key: string]: unknown;
|
|
2911
|
+
};
|
|
2872
2912
|
state: BroadcastMessageStateEnum;
|
|
2873
2913
|
send_at?: string | null;
|
|
2874
2914
|
};
|
|
2875
2915
|
export type BroadcastMessageRequest = {
|
|
2876
2916
|
subject: string;
|
|
2877
2917
|
body: string;
|
|
2878
|
-
query:
|
|
2918
|
+
query: {
|
|
2919
|
+
[key: string]: unknown;
|
|
2920
|
+
};
|
|
2879
2921
|
send_at?: string | null;
|
|
2880
2922
|
};
|
|
2881
2923
|
export type BroadcastMessageStateEnum = 'DRAFT' | 'SCHEDULED' | 'SENT';
|
|
@@ -2957,7 +2999,9 @@ export type CoiDisclosureForm = {
|
|
|
2957
2999
|
has_financial_interests?: boolean;
|
|
2958
3000
|
readonly financial_interests: Array<CoiDisclosureFinancialInterest>;
|
|
2959
3001
|
has_personal_relationships?: boolean;
|
|
2960
|
-
personal_relationships?:
|
|
3002
|
+
personal_relationships?: {
|
|
3003
|
+
[key: string]: unknown;
|
|
3004
|
+
};
|
|
2961
3005
|
has_other_conflicts?: boolean;
|
|
2962
3006
|
other_conflicts_description?: string;
|
|
2963
3007
|
/**
|
|
@@ -2979,7 +3023,9 @@ export type CoiDisclosureFormRequest = {
|
|
|
2979
3023
|
certification_statement?: string;
|
|
2980
3024
|
has_financial_interests?: boolean;
|
|
2981
3025
|
has_personal_relationships?: boolean;
|
|
2982
|
-
personal_relationships?:
|
|
3026
|
+
personal_relationships?: {
|
|
3027
|
+
[key: string]: unknown;
|
|
3028
|
+
};
|
|
2983
3029
|
has_other_conflicts?: boolean;
|
|
2984
3030
|
other_conflicts_description?: string;
|
|
2985
3031
|
/**
|
|
@@ -3223,8 +3269,12 @@ export type CallComplianceOverviewProposalCompliance = {
|
|
|
3223
3269
|
};
|
|
3224
3270
|
export type CallComplianceOverviewProposalReviewTrigger = {
|
|
3225
3271
|
question: string;
|
|
3226
|
-
answer:
|
|
3227
|
-
|
|
3272
|
+
answer: {
|
|
3273
|
+
[key: string]: unknown;
|
|
3274
|
+
};
|
|
3275
|
+
trigger_value: {
|
|
3276
|
+
[key: string]: unknown;
|
|
3277
|
+
};
|
|
3228
3278
|
operator: string;
|
|
3229
3279
|
};
|
|
3230
3280
|
export type CallComplianceReviewRequest = {
|
|
@@ -3305,8 +3355,12 @@ export type CallResourceTemplate = {
|
|
|
3305
3355
|
readonly url: string;
|
|
3306
3356
|
name: string;
|
|
3307
3357
|
description?: string;
|
|
3308
|
-
attributes?:
|
|
3309
|
-
|
|
3358
|
+
attributes?: {
|
|
3359
|
+
[key: string]: unknown;
|
|
3360
|
+
};
|
|
3361
|
+
limits?: {
|
|
3362
|
+
[key: string]: unknown;
|
|
3363
|
+
};
|
|
3310
3364
|
/**
|
|
3311
3365
|
* If True, every proposal must include this resource type
|
|
3312
3366
|
*/
|
|
@@ -3322,8 +3376,12 @@ export type CallResourceTemplate = {
|
|
|
3322
3376
|
export type CallResourceTemplateRequest = {
|
|
3323
3377
|
name: string;
|
|
3324
3378
|
description?: string;
|
|
3325
|
-
attributes?:
|
|
3326
|
-
|
|
3379
|
+
attributes?: {
|
|
3380
|
+
[key: string]: unknown;
|
|
3381
|
+
};
|
|
3382
|
+
limits?: {
|
|
3383
|
+
[key: string]: unknown;
|
|
3384
|
+
};
|
|
3327
3385
|
/**
|
|
3328
3386
|
* If True, every proposal must include this resource type
|
|
3329
3387
|
*/
|
|
@@ -3617,16 +3675,24 @@ export type CascadeStep = {
|
|
|
3617
3675
|
label: string;
|
|
3618
3676
|
type: CascadeStepTypeEnum;
|
|
3619
3677
|
depends_on?: string;
|
|
3620
|
-
choices?:
|
|
3621
|
-
|
|
3678
|
+
choices?: {
|
|
3679
|
+
[key: string]: unknown;
|
|
3680
|
+
};
|
|
3681
|
+
choices_map?: {
|
|
3682
|
+
[key: string]: unknown;
|
|
3683
|
+
};
|
|
3622
3684
|
};
|
|
3623
3685
|
export type CascadeStepRequest = {
|
|
3624
3686
|
name: string;
|
|
3625
3687
|
label: string;
|
|
3626
3688
|
type: CascadeStepTypeEnum;
|
|
3627
3689
|
depends_on?: string;
|
|
3628
|
-
choices?:
|
|
3629
|
-
|
|
3690
|
+
choices?: {
|
|
3691
|
+
[key: string]: unknown;
|
|
3692
|
+
};
|
|
3693
|
+
choices_map?: {
|
|
3694
|
+
[key: string]: unknown;
|
|
3695
|
+
};
|
|
3630
3696
|
};
|
|
3631
3697
|
export type CascadeStepTypeEnum = 'select_string' | 'select_string_multi';
|
|
3632
3698
|
export type CatalogSummary = {
|
|
@@ -3922,7 +3988,9 @@ export type CeleryTask = {
|
|
|
3922
3988
|
/**
|
|
3923
3989
|
* Positional arguments passed to the task
|
|
3924
3990
|
*/
|
|
3925
|
-
readonly args: Array<
|
|
3991
|
+
readonly args: Array<{
|
|
3992
|
+
[key: string]: unknown;
|
|
3993
|
+
}>;
|
|
3926
3994
|
/**
|
|
3927
3995
|
* Keyword arguments passed to the task
|
|
3928
3996
|
*/
|
|
@@ -4768,7 +4836,9 @@ export type ConflictOfInterest = {
|
|
|
4768
4836
|
/**
|
|
4769
4837
|
* Structured evidence: {"papers": [...], "affiliation_overlap": {...}}
|
|
4770
4838
|
*/
|
|
4771
|
-
readonly evidence_data:
|
|
4839
|
+
readonly evidence_data: {
|
|
4840
|
+
[key: string]: unknown;
|
|
4841
|
+
};
|
|
4772
4842
|
status?: ConflictOfInterestStatusEnum;
|
|
4773
4843
|
readonly status_display: string;
|
|
4774
4844
|
readonly reviewed_by: string | null;
|
|
@@ -4971,6 +5041,7 @@ export type ConstanceSettings = {
|
|
|
4971
5041
|
SMAX_CREATION_SOURCE_NAME?: string;
|
|
4972
5042
|
SMAX_REQUESTS_OFFERING?: string;
|
|
4973
5043
|
SMAX_VERIFY_SSL?: boolean;
|
|
5044
|
+
SMAX_CERTIFICATE?: string;
|
|
4974
5045
|
SMAX_WEBHOOK_SHARED_SECRET?: string;
|
|
4975
5046
|
ENABLE_MOCK_SERVICE_ACCOUNT_BACKEND?: boolean;
|
|
4976
5047
|
ENABLE_MOCK_COURSE_ACCOUNT_BACKEND?: boolean;
|
|
@@ -5268,6 +5339,7 @@ export type ConstanceSettingsRequest = {
|
|
|
5268
5339
|
SMAX_CREATION_SOURCE_NAME?: string;
|
|
5269
5340
|
SMAX_REQUESTS_OFFERING?: string;
|
|
5270
5341
|
SMAX_VERIFY_SSL?: boolean;
|
|
5342
|
+
SMAX_CERTIFICATE?: string;
|
|
5271
5343
|
SMAX_WEBHOOK_SHARED_SECRET?: string;
|
|
5272
5344
|
ENABLE_MOCK_SERVICE_ACCOUNT_BACKEND?: boolean;
|
|
5273
5345
|
ENABLE_MOCK_COURSE_ACCOUNT_BACKEND?: boolean;
|
|
@@ -5911,12 +5983,18 @@ export type Customer = {
|
|
|
5911
5983
|
* Number of extra days after project end date before resources are terminated
|
|
5912
5984
|
*/
|
|
5913
5985
|
grace_period_days?: number | null;
|
|
5914
|
-
user_email_patterns?:
|
|
5915
|
-
|
|
5986
|
+
user_email_patterns?: {
|
|
5987
|
+
[key: string]: unknown;
|
|
5988
|
+
};
|
|
5989
|
+
user_affiliations?: {
|
|
5990
|
+
[key: string]: unknown;
|
|
5991
|
+
};
|
|
5916
5992
|
/**
|
|
5917
5993
|
* List of allowed identity sources (identity providers).
|
|
5918
5994
|
*/
|
|
5919
|
-
user_identity_sources?:
|
|
5995
|
+
user_identity_sources?: {
|
|
5996
|
+
[key: string]: unknown;
|
|
5997
|
+
};
|
|
5920
5998
|
/**
|
|
5921
5999
|
* Affiliations offered to project creators of this organization.
|
|
5922
6000
|
*/
|
|
@@ -6037,7 +6115,9 @@ export type CustomerComponentUsagePolicy = {
|
|
|
6037
6115
|
/**
|
|
6038
6116
|
* Fields for saving actions extra data. Keys are name of actions.
|
|
6039
6117
|
*/
|
|
6040
|
-
options?:
|
|
6118
|
+
options?: {
|
|
6119
|
+
[key: string]: unknown;
|
|
6120
|
+
};
|
|
6041
6121
|
readonly affected_resources_count: number;
|
|
6042
6122
|
component_limits_set: Array<NestedCustomerUsagePolicyComponent>;
|
|
6043
6123
|
};
|
|
@@ -6047,7 +6127,9 @@ export type CustomerComponentUsagePolicyRequest = {
|
|
|
6047
6127
|
/**
|
|
6048
6128
|
* Fields for saving actions extra data. Keys are name of actions.
|
|
6049
6129
|
*/
|
|
6050
|
-
options?:
|
|
6130
|
+
options?: {
|
|
6131
|
+
[key: string]: unknown;
|
|
6132
|
+
};
|
|
6051
6133
|
component_limits_set: Array<NestedCustomerUsagePolicyComponentRequest>;
|
|
6052
6134
|
};
|
|
6053
6135
|
export type CustomerContactUpdate = {
|
|
@@ -6138,7 +6220,9 @@ export type CustomerEstimatedCostPolicy = {
|
|
|
6138
6220
|
/**
|
|
6139
6221
|
* Fields for saving actions extra data. Keys are name of actions.
|
|
6140
6222
|
*/
|
|
6141
|
-
options?:
|
|
6223
|
+
options?: {
|
|
6224
|
+
[key: string]: unknown;
|
|
6225
|
+
};
|
|
6142
6226
|
readonly affected_resources_count: number;
|
|
6143
6227
|
limit_cost: number;
|
|
6144
6228
|
period?: PolicyPeriodEnum;
|
|
@@ -6152,7 +6236,9 @@ export type CustomerEstimatedCostPolicyRequest = {
|
|
|
6152
6236
|
/**
|
|
6153
6237
|
* Fields for saving actions extra data. Keys are name of actions.
|
|
6154
6238
|
*/
|
|
6155
|
-
options?:
|
|
6239
|
+
options?: {
|
|
6240
|
+
[key: string]: unknown;
|
|
6241
|
+
};
|
|
6156
6242
|
limit_cost: number;
|
|
6157
6243
|
period?: PolicyPeriodEnum;
|
|
6158
6244
|
};
|
|
@@ -6293,12 +6379,18 @@ export type CustomerRequest = {
|
|
|
6293
6379
|
* Number of extra days after project end date before resources are terminated
|
|
6294
6380
|
*/
|
|
6295
6381
|
grace_period_days?: number | null;
|
|
6296
|
-
user_email_patterns?:
|
|
6297
|
-
|
|
6382
|
+
user_email_patterns?: {
|
|
6383
|
+
[key: string]: unknown;
|
|
6384
|
+
};
|
|
6385
|
+
user_affiliations?: {
|
|
6386
|
+
[key: string]: unknown;
|
|
6387
|
+
};
|
|
6298
6388
|
/**
|
|
6299
6389
|
* List of allowed identity sources (identity providers).
|
|
6300
6390
|
*/
|
|
6301
|
-
user_identity_sources?:
|
|
6391
|
+
user_identity_sources?: {
|
|
6392
|
+
[key: string]: unknown;
|
|
6393
|
+
};
|
|
6302
6394
|
name: string;
|
|
6303
6395
|
/**
|
|
6304
6396
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -7157,7 +7249,9 @@ export type DiskFormatEnum = 'qcow2' | 'raw' | 'vhd' | 'vmdk' | 'vdi' | 'iso' |
|
|
|
7157
7249
|
export type DryRun = {
|
|
7158
7250
|
readonly url: string;
|
|
7159
7251
|
readonly uuid: string;
|
|
7160
|
-
readonly order_attributes:
|
|
7252
|
+
readonly order_attributes: {
|
|
7253
|
+
[key: string]: unknown;
|
|
7254
|
+
};
|
|
7161
7255
|
readonly order_type: string;
|
|
7162
7256
|
order_offering?: string | null;
|
|
7163
7257
|
state: DryRunStateEnum;
|
|
@@ -7168,7 +7262,9 @@ export type DryRun = {
|
|
|
7168
7262
|
export type DryRunRequest = {
|
|
7169
7263
|
plan?: string | null;
|
|
7170
7264
|
type?: DryRunTypeEnum;
|
|
7171
|
-
attributes?:
|
|
7265
|
+
attributes?: {
|
|
7266
|
+
[key: string]: unknown;
|
|
7267
|
+
};
|
|
7172
7268
|
order_offering?: string | null;
|
|
7173
7269
|
};
|
|
7174
7270
|
export type DryRunStateEnum = 1 | 2 | 3 | 4;
|
|
@@ -7285,7 +7381,9 @@ export type Event = {
|
|
|
7285
7381
|
readonly created: string;
|
|
7286
7382
|
event_type: string;
|
|
7287
7383
|
message: string;
|
|
7288
|
-
readonly context:
|
|
7384
|
+
readonly context: {
|
|
7385
|
+
[key: string]: unknown;
|
|
7386
|
+
};
|
|
7289
7387
|
};
|
|
7290
7388
|
export type EventCount = {
|
|
7291
7389
|
count: number;
|
|
@@ -7318,7 +7416,9 @@ export type EventSubscription = {
|
|
|
7318
7416
|
/**
|
|
7319
7417
|
* List of objects to observe. Each item must have 'object_type' (one of: order, user_role, resource, offering_user, importable_resources, service_account, course_account, resource_periodic_limits) and optionally 'object_id' (integer). Example: [{"object_type": "resource"}, {"object_type": "order", "object_id": 123}]
|
|
7320
7418
|
*/
|
|
7321
|
-
observable_objects?:
|
|
7419
|
+
observable_objects?: {
|
|
7420
|
+
[key: string]: unknown;
|
|
7421
|
+
};
|
|
7322
7422
|
readonly created: string;
|
|
7323
7423
|
readonly modified: string;
|
|
7324
7424
|
/**
|
|
@@ -7373,7 +7473,9 @@ export type EventSubscriptionRequest = {
|
|
|
7373
7473
|
/**
|
|
7374
7474
|
* List of objects to observe. Each item must have 'object_type' (one of: order, user_role, resource, offering_user, importable_resources, service_account, course_account, resource_periodic_limits) and optionally 'object_id' (integer). Example: [{"object_type": "resource"}, {"object_type": "order", "object_id": 123}]
|
|
7375
7475
|
*/
|
|
7376
|
-
observable_objects?:
|
|
7476
|
+
observable_objects?: {
|
|
7477
|
+
[key: string]: unknown;
|
|
7478
|
+
};
|
|
7377
7479
|
};
|
|
7378
7480
|
export type EventTypesEnum = 'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'create_of_project_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_updated' | 'marketplace_offering_options_updated' | 'marketplace_offering_resource_options_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_limit_change_request_created' | 'marketplace_resource_limit_change_request_approved' | 'marketplace_resource_limit_change_request_rejected' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_instance_security_groups_changed' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_load_balancer_created' | 'openstack_load_balancer_updated' | 'openstack_load_balancer_deleted' | 'openstack_load_balancer_security_groups_changed' | 'openstack_listener_created' | 'openstack_listener_updated' | 'openstack_listener_deleted' | 'openstack_pool_created' | 'openstack_pool_updated' | 'openstack_pool_deleted' | 'openstack_pool_member_created' | 'openstack_pool_member_updated' | 'openstack_pool_member_deleted' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_port_security_enabled' | 'openstack_port_security_disabled' | 'openstack_port_allowed_address_pairs_changed' | 'openstack_port_security_groups_changed' | 'openstack_rbac_policy_created' | 'openstack_rbac_policy_deleted' | 'openstack_router_interface_added' | 'openstack_router_interface_removed' | 'openstack_router_updated' | 'openstack_subnet_host_routes_changed' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_rules_changed' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_end_date_change_request_approved' | 'project_end_date_change_request_created' | 'project_end_date_change_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'proposal_workflow_advanced' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'request_slurm_resource_downscaling' | 'request_slurm_resource_pausing' | 'reset_downscaling' | 'reset_member_restriction' | 'reset_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_rescue_failed' | 'resource_rescue_scheduled' | 'resource_rescue_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_unrescue_failed' | 'resource_unrescue_scheduled' | 'resource_unrescue_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'slurm_policy_evaluation' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'update_of_project_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'chat_pii_detected' | 'chat_feedback_submitted' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task' | 'pat_created' | 'pat_revoked' | 'pat_rotated' | 'pat_expired' | 'pat_used_from_new_ip';
|
|
7379
7481
|
export type ExecuteActionErrorResponse = {
|
|
@@ -7468,8 +7570,12 @@ export type ExportOfferingData = {
|
|
|
7468
7570
|
longitude: number | null;
|
|
7469
7571
|
access_url: string;
|
|
7470
7572
|
paused_reason: string;
|
|
7471
|
-
attributes?:
|
|
7472
|
-
|
|
7573
|
+
attributes?: {
|
|
7574
|
+
[key: string]: unknown;
|
|
7575
|
+
};
|
|
7576
|
+
options?: {
|
|
7577
|
+
[key: string]: unknown;
|
|
7578
|
+
};
|
|
7473
7579
|
};
|
|
7474
7580
|
export type ExportOfferingDataRequest = {
|
|
7475
7581
|
name: string;
|
|
@@ -7488,8 +7594,12 @@ export type ExportOfferingDataRequest = {
|
|
|
7488
7594
|
longitude: number | null;
|
|
7489
7595
|
access_url: string;
|
|
7490
7596
|
paused_reason: string;
|
|
7491
|
-
attributes?:
|
|
7492
|
-
|
|
7597
|
+
attributes?: {
|
|
7598
|
+
[key: string]: unknown;
|
|
7599
|
+
};
|
|
7600
|
+
options?: {
|
|
7601
|
+
[key: string]: unknown;
|
|
7602
|
+
};
|
|
7493
7603
|
};
|
|
7494
7604
|
export type ExportOrganizationGroupData = {
|
|
7495
7605
|
name: string;
|
|
@@ -7644,8 +7754,12 @@ export type ExternalSubnet = {
|
|
|
7644
7754
|
gateway_ip?: string | string | null;
|
|
7645
7755
|
ip_version?: number;
|
|
7646
7756
|
enable_dhcp?: boolean;
|
|
7647
|
-
allocation_pools?:
|
|
7648
|
-
|
|
7757
|
+
allocation_pools?: {
|
|
7758
|
+
[key: string]: unknown;
|
|
7759
|
+
};
|
|
7760
|
+
dns_nameservers?: {
|
|
7761
|
+
[key: string]: unknown;
|
|
7762
|
+
};
|
|
7649
7763
|
/**
|
|
7650
7764
|
* Public CIDR mapped to this subnet (for carrier-grade NAT overlay)
|
|
7651
7765
|
*/
|
|
@@ -7770,8 +7884,12 @@ export type FilterCheckResult = {
|
|
|
7770
7884
|
name: string;
|
|
7771
7885
|
configured: boolean;
|
|
7772
7886
|
matched: boolean;
|
|
7773
|
-
user_value?:
|
|
7774
|
-
|
|
7887
|
+
user_value?: {
|
|
7888
|
+
[key: string]: unknown;
|
|
7889
|
+
} | null;
|
|
7890
|
+
rule_value?: {
|
|
7891
|
+
[key: string]: unknown;
|
|
7892
|
+
} | null;
|
|
7775
7893
|
reason: string;
|
|
7776
7894
|
};
|
|
7777
7895
|
export type FinancialReport = {
|
|
@@ -7850,7 +7968,9 @@ export type FirecrestJob = {
|
|
|
7850
7968
|
/**
|
|
7851
7969
|
* Job output
|
|
7852
7970
|
*/
|
|
7853
|
-
readonly report:
|
|
7971
|
+
readonly report: {
|
|
7972
|
+
[key: string]: unknown;
|
|
7973
|
+
} | null;
|
|
7854
7974
|
};
|
|
7855
7975
|
export type FirecrestJobRequest = {
|
|
7856
7976
|
name: string;
|
|
@@ -8062,7 +8182,9 @@ export type GoogleCredentials = {
|
|
|
8062
8182
|
/**
|
|
8063
8183
|
* List of allowed domains for offering endpoints. Only staff can modify this field.
|
|
8064
8184
|
*/
|
|
8065
|
-
allowed_domains?:
|
|
8185
|
+
allowed_domains?: {
|
|
8186
|
+
[key: string]: unknown;
|
|
8187
|
+
};
|
|
8066
8188
|
readonly calendar_token: string;
|
|
8067
8189
|
readonly calendar_refresh_token: string;
|
|
8068
8190
|
readonly google_auth_url: string;
|
|
@@ -8140,12 +8262,18 @@ export type GroupInvitation = {
|
|
|
8140
8262
|
* UUID of the project role to grant if auto_create_project is enabled
|
|
8141
8263
|
*/
|
|
8142
8264
|
project_role?: string | null;
|
|
8143
|
-
user_affiliations?:
|
|
8144
|
-
|
|
8265
|
+
user_affiliations?: {
|
|
8266
|
+
[key: string]: unknown;
|
|
8267
|
+
};
|
|
8268
|
+
user_email_patterns?: {
|
|
8269
|
+
[key: string]: unknown;
|
|
8270
|
+
};
|
|
8145
8271
|
/**
|
|
8146
8272
|
* List of allowed identity sources (identity providers).
|
|
8147
8273
|
*/
|
|
8148
|
-
user_identity_sources?:
|
|
8274
|
+
user_identity_sources?: {
|
|
8275
|
+
[key: string]: unknown;
|
|
8276
|
+
};
|
|
8149
8277
|
/**
|
|
8150
8278
|
* Image URL of the invitation scope (Customer or Project)
|
|
8151
8279
|
*/
|
|
@@ -8192,12 +8320,18 @@ export type GroupInvitationRequest = {
|
|
|
8192
8320
|
* UUID of the project role to grant if auto_create_project is enabled
|
|
8193
8321
|
*/
|
|
8194
8322
|
project_role?: string | null;
|
|
8195
|
-
user_affiliations?:
|
|
8196
|
-
|
|
8323
|
+
user_affiliations?: {
|
|
8324
|
+
[key: string]: unknown;
|
|
8325
|
+
};
|
|
8326
|
+
user_email_patterns?: {
|
|
8327
|
+
[key: string]: unknown;
|
|
8328
|
+
};
|
|
8197
8329
|
/**
|
|
8198
8330
|
* List of allowed identity sources (identity providers).
|
|
8199
8331
|
*/
|
|
8200
|
-
user_identity_sources?:
|
|
8332
|
+
user_identity_sources?: {
|
|
8333
|
+
[key: string]: unknown;
|
|
8334
|
+
};
|
|
8201
8335
|
/**
|
|
8202
8336
|
* Custom description text displayed to users viewing this invitation.
|
|
8203
8337
|
*/
|
|
@@ -8240,12 +8374,18 @@ export type GroupInvitationUpdate = {
|
|
|
8240
8374
|
* UUID of the project role to grant if auto_create_project is enabled
|
|
8241
8375
|
*/
|
|
8242
8376
|
project_role?: string | null;
|
|
8243
|
-
user_affiliations?:
|
|
8244
|
-
|
|
8377
|
+
user_affiliations?: {
|
|
8378
|
+
[key: string]: unknown;
|
|
8379
|
+
};
|
|
8380
|
+
user_email_patterns?: {
|
|
8381
|
+
[key: string]: unknown;
|
|
8382
|
+
};
|
|
8245
8383
|
/**
|
|
8246
8384
|
* List of allowed identity sources (identity providers).
|
|
8247
8385
|
*/
|
|
8248
|
-
user_identity_sources?:
|
|
8386
|
+
user_identity_sources?: {
|
|
8387
|
+
[key: string]: unknown;
|
|
8388
|
+
};
|
|
8249
8389
|
/**
|
|
8250
8390
|
* Custom description text displayed to users viewing this invitation.
|
|
8251
8391
|
*/
|
|
@@ -8288,12 +8428,18 @@ export type GroupInvitationUpdateRequest = {
|
|
|
8288
8428
|
* UUID of the project role to grant if auto_create_project is enabled
|
|
8289
8429
|
*/
|
|
8290
8430
|
project_role?: string | null;
|
|
8291
|
-
user_affiliations?:
|
|
8292
|
-
|
|
8431
|
+
user_affiliations?: {
|
|
8432
|
+
[key: string]: unknown;
|
|
8433
|
+
};
|
|
8434
|
+
user_email_patterns?: {
|
|
8435
|
+
[key: string]: unknown;
|
|
8436
|
+
};
|
|
8293
8437
|
/**
|
|
8294
8438
|
* List of allowed identity sources (identity providers).
|
|
8295
8439
|
*/
|
|
8296
|
-
user_identity_sources?:
|
|
8440
|
+
user_identity_sources?: {
|
|
8441
|
+
[key: string]: unknown;
|
|
8442
|
+
};
|
|
8297
8443
|
/**
|
|
8298
8444
|
* Custom description text displayed to users viewing this invitation.
|
|
8299
8445
|
*/
|
|
@@ -8533,7 +8679,9 @@ export type IdentityProvider = {
|
|
|
8533
8679
|
* The endpoint for user details management.
|
|
8534
8680
|
*/
|
|
8535
8681
|
management_url?: string;
|
|
8536
|
-
protected_fields?:
|
|
8682
|
+
protected_fields?: {
|
|
8683
|
+
[key: string]: unknown;
|
|
8684
|
+
};
|
|
8537
8685
|
/**
|
|
8538
8686
|
* Space-separated list of scopes to request during authentication.
|
|
8539
8687
|
*/
|
|
@@ -8549,7 +8697,9 @@ export type IdentityProvider = {
|
|
|
8549
8697
|
/**
|
|
8550
8698
|
* A JSON object mapping Waldur User model fields to OIDC claims. Example: {"first_name": "given_name", "last_name": "family_name", "email": "email"}
|
|
8551
8699
|
*/
|
|
8552
|
-
attribute_mapping?:
|
|
8700
|
+
attribute_mapping?: {
|
|
8701
|
+
[key: string]: unknown;
|
|
8702
|
+
};
|
|
8553
8703
|
/**
|
|
8554
8704
|
* Space-separated list of extra fields to persist.
|
|
8555
8705
|
*/
|
|
@@ -8557,7 +8707,9 @@ export type IdentityProvider = {
|
|
|
8557
8707
|
/**
|
|
8558
8708
|
* List of allowed redirect URLs for OAuth authentication. URLs must be exact matches (origin only: scheme + domain + port). HTTPS required except for localhost. No wildcards, paths, query params, or fragments. Example: ["https://portal1.example.com", "https://portal2.example.com:8443"]. If empty, falls back to HOMEPORT_URL setting.
|
|
8559
8709
|
*/
|
|
8560
|
-
allowed_redirects?:
|
|
8710
|
+
allowed_redirects?: {
|
|
8711
|
+
[key: string]: unknown;
|
|
8712
|
+
};
|
|
8561
8713
|
};
|
|
8562
8714
|
export type IdentityProviderRequest = {
|
|
8563
8715
|
provider: string;
|
|
@@ -8585,7 +8737,9 @@ export type IdentityProviderRequest = {
|
|
|
8585
8737
|
* The endpoint for user details management.
|
|
8586
8738
|
*/
|
|
8587
8739
|
management_url?: string;
|
|
8588
|
-
protected_fields?:
|
|
8740
|
+
protected_fields?: {
|
|
8741
|
+
[key: string]: unknown;
|
|
8742
|
+
};
|
|
8589
8743
|
/**
|
|
8590
8744
|
* Space-separated list of scopes to request during authentication.
|
|
8591
8745
|
*/
|
|
@@ -8601,7 +8755,9 @@ export type IdentityProviderRequest = {
|
|
|
8601
8755
|
/**
|
|
8602
8756
|
* A JSON object mapping Waldur User model fields to OIDC claims. Example: {"first_name": "given_name", "last_name": "family_name", "email": "email"}
|
|
8603
8757
|
*/
|
|
8604
|
-
attribute_mapping?:
|
|
8758
|
+
attribute_mapping?: {
|
|
8759
|
+
[key: string]: unknown;
|
|
8760
|
+
};
|
|
8605
8761
|
/**
|
|
8606
8762
|
* Space-separated list of extra fields to persist.
|
|
8607
8763
|
*/
|
|
@@ -8609,7 +8765,9 @@ export type IdentityProviderRequest = {
|
|
|
8609
8765
|
/**
|
|
8610
8766
|
* List of allowed redirect URLs for OAuth authentication. URLs must be exact matches (origin only: scheme + domain + port). HTTPS required except for localhost. No wildcards, paths, query params, or fragments. Example: ["https://portal1.example.com", "https://portal2.example.com:8443"]. If empty, falls back to HOMEPORT_URL setting.
|
|
8611
8767
|
*/
|
|
8612
|
-
allowed_redirects?:
|
|
8768
|
+
allowed_redirects?: {
|
|
8769
|
+
[key: string]: unknown;
|
|
8770
|
+
};
|
|
8613
8771
|
};
|
|
8614
8772
|
export type ImageCreateRequest = {
|
|
8615
8773
|
name: string;
|
|
@@ -8678,7 +8836,9 @@ export type ImportResourceRequest = {
|
|
|
8678
8836
|
*/
|
|
8679
8837
|
project: string;
|
|
8680
8838
|
plan?: string;
|
|
8681
|
-
additional_details?:
|
|
8839
|
+
additional_details?: {
|
|
8840
|
+
[key: string]: unknown;
|
|
8841
|
+
} | null;
|
|
8682
8842
|
};
|
|
8683
8843
|
export type ImportUsageError = {
|
|
8684
8844
|
customer_name: string;
|
|
@@ -9088,7 +9248,9 @@ export type InvoiceItemDetail = {
|
|
|
9088
9248
|
/**
|
|
9089
9249
|
* Stores data about scope
|
|
9090
9250
|
*/
|
|
9091
|
-
details?:
|
|
9251
|
+
details?: {
|
|
9252
|
+
[key: string]: unknown;
|
|
9253
|
+
};
|
|
9092
9254
|
readonly offering_uuid: string;
|
|
9093
9255
|
readonly offering_name: string | null;
|
|
9094
9256
|
readonly offering_component_type: string | null;
|
|
@@ -9250,7 +9412,9 @@ export type Issue = {
|
|
|
9250
9412
|
/**
|
|
9251
9413
|
* Internal processing log for debugging order lifecycle events. Visible only to staff.
|
|
9252
9414
|
*/
|
|
9253
|
-
readonly processing_log?:
|
|
9415
|
+
readonly processing_log?: {
|
|
9416
|
+
[key: string]: unknown;
|
|
9417
|
+
};
|
|
9254
9418
|
/**
|
|
9255
9419
|
* Return order UUID if the issue's resource is an Order.
|
|
9256
9420
|
*/
|
|
@@ -9889,7 +10053,9 @@ export type ManagedProject = {
|
|
|
9889
10053
|
/**
|
|
9890
10054
|
* Details of the project as provided by the remote OpenPortal.
|
|
9891
10055
|
*/
|
|
9892
|
-
readonly details:
|
|
10056
|
+
readonly details: {
|
|
10057
|
+
[key: string]: unknown;
|
|
10058
|
+
};
|
|
9893
10059
|
project: string;
|
|
9894
10060
|
project_data: BasicProject;
|
|
9895
10061
|
project_template: string;
|
|
@@ -10050,7 +10216,9 @@ export type MarketplaceServiceProviderUser = {
|
|
|
10050
10216
|
/**
|
|
10051
10217
|
* Person's affiliation within organization such as student, faculty, staff.
|
|
10052
10218
|
*/
|
|
10053
|
-
affiliations?:
|
|
10219
|
+
affiliations?: {
|
|
10220
|
+
[key: string]: unknown;
|
|
10221
|
+
};
|
|
10054
10222
|
/**
|
|
10055
10223
|
* Active
|
|
10056
10224
|
*
|
|
@@ -10076,7 +10244,9 @@ export type MarketplaceServiceProviderUser = {
|
|
|
10076
10244
|
/**
|
|
10077
10245
|
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
10078
10246
|
*/
|
|
10079
|
-
nationalities?:
|
|
10247
|
+
nationalities?: {
|
|
10248
|
+
[key: string]: unknown;
|
|
10249
|
+
};
|
|
10080
10250
|
organization_country?: string;
|
|
10081
10251
|
/**
|
|
10082
10252
|
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
@@ -10089,7 +10259,9 @@ export type MarketplaceServiceProviderUser = {
|
|
|
10089
10259
|
/**
|
|
10090
10260
|
* REFEDS assurance profile URIs from identity provider
|
|
10091
10261
|
*/
|
|
10092
|
-
eduperson_assurance?:
|
|
10262
|
+
eduperson_assurance?: {
|
|
10263
|
+
[key: string]: unknown;
|
|
10264
|
+
};
|
|
10093
10265
|
civil_number?: string | null;
|
|
10094
10266
|
birth_date?: string | null;
|
|
10095
10267
|
/**
|
|
@@ -10101,7 +10273,9 @@ export type MarketplaceServiceProviderUser = {
|
|
|
10101
10273
|
/**
|
|
10102
10274
|
* List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
|
|
10103
10275
|
*/
|
|
10104
|
-
active_isds?:
|
|
10276
|
+
active_isds?: {
|
|
10277
|
+
[key: string]: unknown;
|
|
10278
|
+
};
|
|
10105
10279
|
};
|
|
10106
10280
|
export type MatchingAlgorithm = 'minmax' | 'fairflow' | 'hungarian';
|
|
10107
10281
|
export type MatchingConfiguration = {
|
|
@@ -10963,7 +11137,9 @@ export type MergedSecretOptions = {
|
|
|
10963
11137
|
/**
|
|
10964
11138
|
* Script environment variables
|
|
10965
11139
|
*/
|
|
10966
|
-
environ?:
|
|
11140
|
+
environ?: {
|
|
11141
|
+
[key: string]: unknown;
|
|
11142
|
+
};
|
|
10967
11143
|
/**
|
|
10968
11144
|
* Script for resource creation
|
|
10969
11145
|
*/
|
|
@@ -11125,7 +11301,9 @@ export type MergedSecretOptionsRequest = {
|
|
|
11125
11301
|
/**
|
|
11126
11302
|
* Script environment variables
|
|
11127
11303
|
*/
|
|
11128
|
-
environ?:
|
|
11304
|
+
environ?: {
|
|
11305
|
+
[key: string]: unknown;
|
|
11306
|
+
};
|
|
11129
11307
|
/**
|
|
11130
11308
|
* Script for resource creation
|
|
11131
11309
|
*/
|
|
@@ -11269,8 +11447,12 @@ export type Message = {
|
|
|
11269
11447
|
readonly output_tokens: number | null;
|
|
11270
11448
|
readonly is_flagged?: boolean;
|
|
11271
11449
|
severity?: InjectionSeverityEnum;
|
|
11272
|
-
readonly injection_categories?:
|
|
11273
|
-
|
|
11450
|
+
readonly injection_categories?: {
|
|
11451
|
+
[key: string]: unknown;
|
|
11452
|
+
};
|
|
11453
|
+
readonly pii_categories?: {
|
|
11454
|
+
[key: string]: unknown;
|
|
11455
|
+
};
|
|
11274
11456
|
action_taken?: ActionTakenEnum;
|
|
11275
11457
|
/**
|
|
11276
11458
|
* User feedback: True=thumbs up, False=thumbs down, None=no feedback.
|
|
@@ -11469,14 +11651,18 @@ export type NestedAgentService = {
|
|
|
11469
11651
|
name: string;
|
|
11470
11652
|
mode?: string | null;
|
|
11471
11653
|
state: AgentServiceState;
|
|
11472
|
-
statistics?:
|
|
11654
|
+
statistics?: {
|
|
11655
|
+
[key: string]: unknown;
|
|
11656
|
+
};
|
|
11473
11657
|
readonly created: string;
|
|
11474
11658
|
readonly modified: string;
|
|
11475
11659
|
};
|
|
11476
11660
|
export type NestedAgentServiceRequest = {
|
|
11477
11661
|
name: string;
|
|
11478
11662
|
mode?: string | null;
|
|
11479
|
-
statistics?:
|
|
11663
|
+
statistics?: {
|
|
11664
|
+
[key: string]: unknown;
|
|
11665
|
+
};
|
|
11480
11666
|
};
|
|
11481
11667
|
export type NestedAttribute = {
|
|
11482
11668
|
readonly uuid: string;
|
|
@@ -11488,7 +11674,9 @@ export type NestedAttribute = {
|
|
|
11488
11674
|
* A value must be provided for the attribute.
|
|
11489
11675
|
*/
|
|
11490
11676
|
required?: boolean;
|
|
11491
|
-
default?:
|
|
11677
|
+
default?: {
|
|
11678
|
+
[key: string]: unknown;
|
|
11679
|
+
} | null;
|
|
11492
11680
|
};
|
|
11493
11681
|
export type NestedAttributeOption = {
|
|
11494
11682
|
readonly uuid: string;
|
|
@@ -11512,7 +11700,9 @@ export type NestedAttributeRequest = {
|
|
|
11512
11700
|
* A value must be provided for the attribute.
|
|
11513
11701
|
*/
|
|
11514
11702
|
required?: boolean;
|
|
11515
|
-
default?:
|
|
11703
|
+
default?: {
|
|
11704
|
+
[key: string]: unknown;
|
|
11705
|
+
} | null;
|
|
11516
11706
|
};
|
|
11517
11707
|
export type NestedCampaign = {
|
|
11518
11708
|
readonly uuid: string;
|
|
@@ -11931,7 +12121,9 @@ export type NestedRequestedOffering = {
|
|
|
11931
12121
|
readonly category_uuid: string;
|
|
11932
12122
|
readonly category_name: string;
|
|
11933
12123
|
readonly call_managing_organisation: string;
|
|
11934
|
-
attributes?:
|
|
12124
|
+
attributes?: {
|
|
12125
|
+
[key: string]: unknown;
|
|
12126
|
+
};
|
|
11935
12127
|
plan?: string | null;
|
|
11936
12128
|
plan_details: BasePublicPlan;
|
|
11937
12129
|
options: OfferingOptions;
|
|
@@ -11940,7 +12132,9 @@ export type NestedRequestedOffering = {
|
|
|
11940
12132
|
};
|
|
11941
12133
|
export type NestedRequestedOfferingRequest = {
|
|
11942
12134
|
offering: string;
|
|
11943
|
-
attributes?:
|
|
12135
|
+
attributes?: {
|
|
12136
|
+
[key: string]: unknown;
|
|
12137
|
+
};
|
|
11944
12138
|
plan?: string | null;
|
|
11945
12139
|
};
|
|
11946
12140
|
export type NestedResourceProjectPermission = {
|
|
@@ -12071,11 +12265,15 @@ export type NestedSoftwareCatalog = {
|
|
|
12071
12265
|
/**
|
|
12072
12266
|
* List of enabled CPU families: ['x86_64', 'aarch64']
|
|
12073
12267
|
*/
|
|
12074
|
-
enabled_cpu_family?:
|
|
12268
|
+
enabled_cpu_family?: {
|
|
12269
|
+
[key: string]: unknown;
|
|
12270
|
+
};
|
|
12075
12271
|
/**
|
|
12076
12272
|
* List of enabled CPU microarchitectures: ['generic', 'zen3']
|
|
12077
12273
|
*/
|
|
12078
|
-
enabled_cpu_microarchitectures?:
|
|
12274
|
+
enabled_cpu_microarchitectures?: {
|
|
12275
|
+
[key: string]: unknown;
|
|
12276
|
+
};
|
|
12079
12277
|
readonly package_count: number;
|
|
12080
12278
|
partition: PartitionSummary | null;
|
|
12081
12279
|
};
|
|
@@ -12083,11 +12281,15 @@ export type NestedSoftwareCatalogRequest = {
|
|
|
12083
12281
|
/**
|
|
12084
12282
|
* List of enabled CPU families: ['x86_64', 'aarch64']
|
|
12085
12283
|
*/
|
|
12086
|
-
enabled_cpu_family?:
|
|
12284
|
+
enabled_cpu_family?: {
|
|
12285
|
+
[key: string]: unknown;
|
|
12286
|
+
};
|
|
12087
12287
|
/**
|
|
12088
12288
|
* List of enabled CPU microarchitectures: ['generic', 'zen3']
|
|
12089
12289
|
*/
|
|
12090
|
-
enabled_cpu_microarchitectures?:
|
|
12290
|
+
enabled_cpu_microarchitectures?: {
|
|
12291
|
+
[key: string]: unknown;
|
|
12292
|
+
};
|
|
12091
12293
|
};
|
|
12092
12294
|
export type NestedSoftwareTarget = {
|
|
12093
12295
|
readonly uuid: string;
|
|
@@ -12110,11 +12312,15 @@ export type NestedSoftwareTarget = {
|
|
|
12110
12312
|
/**
|
|
12111
12313
|
* Target-specific metadata (build options, system requirements, etc.)
|
|
12112
12314
|
*/
|
|
12113
|
-
metadata?:
|
|
12315
|
+
metadata?: {
|
|
12316
|
+
[key: string]: unknown;
|
|
12317
|
+
};
|
|
12114
12318
|
/**
|
|
12115
12319
|
* List of GPU architectures this target supports (e.g., ['nvidia/cc70', 'nvidia/cc90'])
|
|
12116
12320
|
*/
|
|
12117
|
-
gpu_architectures?:
|
|
12321
|
+
gpu_architectures?: {
|
|
12322
|
+
[key: string]: unknown;
|
|
12323
|
+
};
|
|
12118
12324
|
};
|
|
12119
12325
|
export type NestedSoftwareTargetRequest = {
|
|
12120
12326
|
/**
|
|
@@ -12136,11 +12342,15 @@ export type NestedSoftwareTargetRequest = {
|
|
|
12136
12342
|
/**
|
|
12137
12343
|
* Target-specific metadata (build options, system requirements, etc.)
|
|
12138
12344
|
*/
|
|
12139
|
-
metadata?:
|
|
12345
|
+
metadata?: {
|
|
12346
|
+
[key: string]: unknown;
|
|
12347
|
+
};
|
|
12140
12348
|
/**
|
|
12141
12349
|
* List of GPU architectures this target supports (e.g., ['nvidia/cc70', 'nvidia/cc90'])
|
|
12142
12350
|
*/
|
|
12143
|
-
gpu_architectures?:
|
|
12351
|
+
gpu_architectures?: {
|
|
12352
|
+
[key: string]: unknown;
|
|
12353
|
+
};
|
|
12144
12354
|
};
|
|
12145
12355
|
export type NestedSoftwareVersion = {
|
|
12146
12356
|
readonly uuid: string;
|
|
@@ -12355,7 +12565,9 @@ export type Offering = {
|
|
|
12355
12565
|
readonly parent_description: string | null;
|
|
12356
12566
|
readonly parent_uuid: string | null;
|
|
12357
12567
|
readonly parent_name: string | null;
|
|
12358
|
-
backend_metadata?:
|
|
12568
|
+
backend_metadata?: {
|
|
12569
|
+
[key: string]: unknown;
|
|
12570
|
+
};
|
|
12359
12571
|
readonly has_compliance_requirements: boolean;
|
|
12360
12572
|
/**
|
|
12361
12573
|
* Classify offering components by billing type.
|
|
@@ -12377,10 +12589,14 @@ export type OfferingBackendIdRulesUpdateRequest = {
|
|
|
12377
12589
|
/**
|
|
12378
12590
|
* Validation rules for resource backend_id: format regex and uniqueness scope.
|
|
12379
12591
|
*/
|
|
12380
|
-
backend_id_rules?:
|
|
12592
|
+
backend_id_rules?: {
|
|
12593
|
+
[key: string]: unknown;
|
|
12594
|
+
};
|
|
12381
12595
|
};
|
|
12382
12596
|
export type OfferingBackendMetadataRequest = {
|
|
12383
|
-
backend_metadata?:
|
|
12597
|
+
backend_metadata?: {
|
|
12598
|
+
[key: string]: unknown;
|
|
12599
|
+
};
|
|
12384
12600
|
};
|
|
12385
12601
|
export type OfferingComplianceChecklistUpdateRequest = {
|
|
12386
12602
|
compliance_checklist?: string | null;
|
|
@@ -12564,7 +12780,9 @@ export type OfferingCreateRequest = {
|
|
|
12564
12780
|
access_url?: string;
|
|
12565
12781
|
customer?: string | null;
|
|
12566
12782
|
category: string;
|
|
12567
|
-
attributes?:
|
|
12783
|
+
attributes?: {
|
|
12784
|
+
[key: string]: unknown;
|
|
12785
|
+
};
|
|
12568
12786
|
options?: OfferingOptionsRequest;
|
|
12569
12787
|
resource_options?: OfferingOptionsRequest;
|
|
12570
12788
|
components?: Array<OfferingComponentRequest>;
|
|
@@ -12594,9 +12812,13 @@ export type OfferingCreateRequest = {
|
|
|
12594
12812
|
/**
|
|
12595
12813
|
* Validation rules for resource backend_id: format regex and uniqueness scope.
|
|
12596
12814
|
*/
|
|
12597
|
-
backend_id_rules?:
|
|
12815
|
+
backend_id_rules?: {
|
|
12816
|
+
[key: string]: unknown;
|
|
12817
|
+
};
|
|
12598
12818
|
image?: Blob | File | null;
|
|
12599
|
-
backend_metadata?:
|
|
12819
|
+
backend_metadata?: {
|
|
12820
|
+
[key: string]: unknown;
|
|
12821
|
+
};
|
|
12600
12822
|
compliance_checklist?: string | null;
|
|
12601
12823
|
offering_group?: string | null;
|
|
12602
12824
|
limits?: {
|
|
@@ -12621,7 +12843,9 @@ export type OfferingEstimatedCostPolicy = {
|
|
|
12621
12843
|
/**
|
|
12622
12844
|
* Fields for saving actions extra data. Keys are name of actions.
|
|
12623
12845
|
*/
|
|
12624
|
-
options?:
|
|
12846
|
+
options?: {
|
|
12847
|
+
[key: string]: unknown;
|
|
12848
|
+
};
|
|
12625
12849
|
readonly affected_resources_count: number;
|
|
12626
12850
|
limit_cost: number;
|
|
12627
12851
|
period?: PolicyPeriodEnum;
|
|
@@ -12638,7 +12862,9 @@ export type OfferingEstimatedCostPolicyRequest = {
|
|
|
12638
12862
|
/**
|
|
12639
12863
|
* Fields for saving actions extra data. Keys are name of actions.
|
|
12640
12864
|
*/
|
|
12641
|
-
options?:
|
|
12865
|
+
options?: {
|
|
12866
|
+
[key: string]: unknown;
|
|
12867
|
+
};
|
|
12642
12868
|
limit_cost: number;
|
|
12643
12869
|
period?: PolicyPeriodEnum;
|
|
12644
12870
|
organization_groups?: Array<string>;
|
|
@@ -12656,9 +12882,15 @@ export type OfferingExportData = {
|
|
|
12656
12882
|
endpoints?: Array<ExportEndpointData>;
|
|
12657
12883
|
organization_groups?: Array<ExportOrganizationGroupData>;
|
|
12658
12884
|
terms_of_service?: Array<ExportTermsOfServiceData>;
|
|
12659
|
-
plugin_options?:
|
|
12660
|
-
|
|
12661
|
-
|
|
12885
|
+
plugin_options?: {
|
|
12886
|
+
[key: string]: unknown;
|
|
12887
|
+
};
|
|
12888
|
+
secret_options?: {
|
|
12889
|
+
[key: string]: unknown;
|
|
12890
|
+
};
|
|
12891
|
+
resource_options?: {
|
|
12892
|
+
[key: string]: unknown;
|
|
12893
|
+
};
|
|
12662
12894
|
};
|
|
12663
12895
|
export type OfferingExportDataRequest = {
|
|
12664
12896
|
offering: ExportOfferingDataRequest;
|
|
@@ -12669,9 +12901,15 @@ export type OfferingExportDataRequest = {
|
|
|
12669
12901
|
endpoints?: Array<ExportEndpointDataRequest>;
|
|
12670
12902
|
organization_groups?: Array<ExportOrganizationGroupDataRequest>;
|
|
12671
12903
|
terms_of_service?: Array<ExportTermsOfServiceDataRequest>;
|
|
12672
|
-
plugin_options?:
|
|
12673
|
-
|
|
12674
|
-
|
|
12904
|
+
plugin_options?: {
|
|
12905
|
+
[key: string]: unknown;
|
|
12906
|
+
};
|
|
12907
|
+
secret_options?: {
|
|
12908
|
+
[key: string]: unknown;
|
|
12909
|
+
};
|
|
12910
|
+
resource_options?: {
|
|
12911
|
+
[key: string]: unknown;
|
|
12912
|
+
};
|
|
12675
12913
|
};
|
|
12676
12914
|
export type OfferingExportParametersRequest = {
|
|
12677
12915
|
/**
|
|
@@ -12872,7 +13110,9 @@ export type OfferingImportResponse = {
|
|
|
12872
13110
|
export type OfferingIntegrationUpdateRequest = {
|
|
12873
13111
|
secret_options?: MergedSecretOptionsRequest;
|
|
12874
13112
|
plugin_options?: MergedPluginOptionsRequest;
|
|
12875
|
-
service_attributes?:
|
|
13113
|
+
service_attributes?: {
|
|
13114
|
+
[key: string]: unknown;
|
|
13115
|
+
};
|
|
12876
13116
|
backend_id?: string;
|
|
12877
13117
|
};
|
|
12878
13118
|
export type OfferingLocationUpdateRequest = {
|
|
@@ -13225,11 +13465,15 @@ export type OfferingSoftwareCatalog = {
|
|
|
13225
13465
|
/**
|
|
13226
13466
|
* List of enabled CPU families: ['x86_64', 'aarch64']
|
|
13227
13467
|
*/
|
|
13228
|
-
enabled_cpu_family?:
|
|
13468
|
+
enabled_cpu_family?: {
|
|
13469
|
+
[key: string]: unknown;
|
|
13470
|
+
};
|
|
13229
13471
|
/**
|
|
13230
13472
|
* List of enabled CPU microarchitectures: ['generic', 'zen3']
|
|
13231
13473
|
*/
|
|
13232
|
-
enabled_cpu_microarchitectures?:
|
|
13474
|
+
enabled_cpu_microarchitectures?: {
|
|
13475
|
+
[key: string]: unknown;
|
|
13476
|
+
};
|
|
13233
13477
|
partition?: string | null;
|
|
13234
13478
|
readonly partition_name: string;
|
|
13235
13479
|
};
|
|
@@ -13239,11 +13483,15 @@ export type OfferingSoftwareCatalogRequest = {
|
|
|
13239
13483
|
/**
|
|
13240
13484
|
* List of enabled CPU families: ['x86_64', 'aarch64']
|
|
13241
13485
|
*/
|
|
13242
|
-
enabled_cpu_family?:
|
|
13486
|
+
enabled_cpu_family?: {
|
|
13487
|
+
[key: string]: unknown;
|
|
13488
|
+
};
|
|
13243
13489
|
/**
|
|
13244
13490
|
* List of enabled CPU microarchitectures: ['generic', 'zen3']
|
|
13245
13491
|
*/
|
|
13246
|
-
enabled_cpu_microarchitectures?:
|
|
13492
|
+
enabled_cpu_microarchitectures?: {
|
|
13493
|
+
[key: string]: unknown;
|
|
13494
|
+
};
|
|
13247
13495
|
partition?: string | null;
|
|
13248
13496
|
};
|
|
13249
13497
|
export type OfferingState = 'Draft' | 'Active' | 'Paused' | 'Archived' | 'Unavailable';
|
|
@@ -13394,7 +13642,9 @@ export type OfferingUsagePolicy = {
|
|
|
13394
13642
|
/**
|
|
13395
13643
|
* Fields for saving actions extra data. Keys are name of actions.
|
|
13396
13644
|
*/
|
|
13397
|
-
options?:
|
|
13645
|
+
options?: {
|
|
13646
|
+
[key: string]: unknown;
|
|
13647
|
+
};
|
|
13398
13648
|
readonly affected_resources_count: number;
|
|
13399
13649
|
organization_groups?: Array<string>;
|
|
13400
13650
|
/**
|
|
@@ -13411,8 +13661,10 @@ export type OfferingUsagePolicyRequest = {
|
|
|
13411
13661
|
/**
|
|
13412
13662
|
* Fields for saving actions extra data. Keys are name of actions.
|
|
13413
13663
|
*/
|
|
13414
|
-
options?:
|
|
13415
|
-
|
|
13664
|
+
options?: {
|
|
13665
|
+
[key: string]: unknown;
|
|
13666
|
+
};
|
|
13667
|
+
organization_groups?: Array<string>;
|
|
13416
13668
|
/**
|
|
13417
13669
|
* If True, policy applies to all customers. Mutually exclusive with organization_groups.
|
|
13418
13670
|
*/
|
|
@@ -13461,7 +13713,9 @@ export type OfferingUser = {
|
|
|
13461
13713
|
/**
|
|
13462
13714
|
* Person's affiliation within organization such as student, faculty, staff.
|
|
13463
13715
|
*/
|
|
13464
|
-
readonly user_affiliations:
|
|
13716
|
+
readonly user_affiliations: {
|
|
13717
|
+
[key: string]: unknown;
|
|
13718
|
+
};
|
|
13465
13719
|
/**
|
|
13466
13720
|
* User's gender (male, female, or unknown)
|
|
13467
13721
|
*/
|
|
@@ -13480,7 +13734,9 @@ export type OfferingUser = {
|
|
|
13480
13734
|
/**
|
|
13481
13735
|
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
13482
13736
|
*/
|
|
13483
|
-
readonly user_nationalities:
|
|
13737
|
+
readonly user_nationalities: {
|
|
13738
|
+
[key: string]: unknown;
|
|
13739
|
+
};
|
|
13484
13740
|
readonly user_organization_country: string;
|
|
13485
13741
|
/**
|
|
13486
13742
|
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
@@ -13493,7 +13749,9 @@ export type OfferingUser = {
|
|
|
13493
13749
|
/**
|
|
13494
13750
|
* REFEDS assurance profile URIs from identity provider
|
|
13495
13751
|
*/
|
|
13496
|
-
readonly user_eduperson_assurance:
|
|
13752
|
+
readonly user_eduperson_assurance: {
|
|
13753
|
+
[key: string]: unknown;
|
|
13754
|
+
};
|
|
13497
13755
|
readonly user_civil_number: string | null;
|
|
13498
13756
|
readonly user_birth_date: string | null;
|
|
13499
13757
|
/**
|
|
@@ -13505,7 +13763,9 @@ export type OfferingUser = {
|
|
|
13505
13763
|
/**
|
|
13506
13764
|
* List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
|
|
13507
13765
|
*/
|
|
13508
|
-
readonly user_active_isds:
|
|
13766
|
+
readonly user_active_isds: {
|
|
13767
|
+
[key: string]: unknown;
|
|
13768
|
+
};
|
|
13509
13769
|
readonly created: string;
|
|
13510
13770
|
readonly modified: string;
|
|
13511
13771
|
readonly customer_uuid: string;
|
|
@@ -13845,15 +14105,21 @@ export type OnboardingVerification = {
|
|
|
13845
14105
|
/**
|
|
13846
14106
|
* Roles the user has in the company
|
|
13847
14107
|
*/
|
|
13848
|
-
readonly verified_user_roles:
|
|
14108
|
+
readonly verified_user_roles: {
|
|
14109
|
+
[key: string]: unknown;
|
|
14110
|
+
};
|
|
13849
14111
|
/**
|
|
13850
14112
|
* Company information retrieved during validation
|
|
13851
14113
|
*/
|
|
13852
|
-
readonly verified_company_data:
|
|
14114
|
+
readonly verified_company_data: {
|
|
14115
|
+
[key: string]: unknown;
|
|
14116
|
+
};
|
|
13853
14117
|
/**
|
|
13854
14118
|
* Raw API response for debugging and auditing
|
|
13855
14119
|
*/
|
|
13856
|
-
readonly raw_response:
|
|
14120
|
+
readonly raw_response: {
|
|
14121
|
+
[key: string]: unknown;
|
|
14122
|
+
};
|
|
13857
14123
|
readonly error_traceback: string;
|
|
13858
14124
|
readonly error_message: string;
|
|
13859
14125
|
/**
|
|
@@ -13998,7 +14264,9 @@ export type OpenStackBackup = {
|
|
|
13998
14264
|
* Guaranteed time of backup retention. If null - keep forever.
|
|
13999
14265
|
*/
|
|
14000
14266
|
kept_until?: string | null;
|
|
14001
|
-
readonly metadata:
|
|
14267
|
+
readonly metadata: {
|
|
14268
|
+
[key: string]: unknown;
|
|
14269
|
+
};
|
|
14002
14270
|
/**
|
|
14003
14271
|
* Instance that this backup is created from
|
|
14004
14272
|
*/
|
|
@@ -14435,7 +14703,9 @@ export type OpenStackInstance = {
|
|
|
14435
14703
|
/**
|
|
14436
14704
|
* Details about ongoing or completed actions
|
|
14437
14705
|
*/
|
|
14438
|
-
readonly action_details:
|
|
14706
|
+
readonly action_details: {
|
|
14707
|
+
[key: string]: unknown;
|
|
14708
|
+
};
|
|
14439
14709
|
/**
|
|
14440
14710
|
* UUID of the OpenStack tenant
|
|
14441
14711
|
*/
|
|
@@ -15315,7 +15585,9 @@ export type OpenStackRouter = {
|
|
|
15315
15585
|
* Whether SNAT is enabled on the external gateway. None means OpenStack default (True).
|
|
15316
15586
|
*/
|
|
15317
15587
|
enable_snat?: boolean | null;
|
|
15318
|
-
readonly external_fixed_ips:
|
|
15588
|
+
readonly external_fixed_ips: {
|
|
15589
|
+
[key: string]: unknown;
|
|
15590
|
+
};
|
|
15319
15591
|
readonly marketplace_offering_uuid: string | null;
|
|
15320
15592
|
readonly marketplace_offering_name: string | null;
|
|
15321
15593
|
readonly marketplace_offering_type: string | null;
|
|
@@ -15623,12 +15895,16 @@ export type OpenStackSnapshot = {
|
|
|
15623
15895
|
* Size in MiB
|
|
15624
15896
|
*/
|
|
15625
15897
|
readonly size: number;
|
|
15626
|
-
metadata?:
|
|
15898
|
+
metadata?: {
|
|
15899
|
+
[key: string]: unknown;
|
|
15900
|
+
};
|
|
15627
15901
|
readonly runtime_state: string;
|
|
15628
15902
|
readonly source_volume_name: string;
|
|
15629
15903
|
readonly source_volume_marketplace_uuid: string;
|
|
15630
15904
|
readonly action: string;
|
|
15631
|
-
readonly action_details:
|
|
15905
|
+
readonly action_details: {
|
|
15906
|
+
[key: string]: unknown;
|
|
15907
|
+
};
|
|
15632
15908
|
readonly restorations: Array<OpenStackSnapshotRestoration>;
|
|
15633
15909
|
readonly backups: Array<OpenStackSnapshotBackup>;
|
|
15634
15910
|
/**
|
|
@@ -15656,7 +15932,9 @@ export type OpenStackSnapshotBackup = {
|
|
|
15656
15932
|
export type OpenStackSnapshotRequest = {
|
|
15657
15933
|
name: string;
|
|
15658
15934
|
description?: string;
|
|
15659
|
-
metadata?:
|
|
15935
|
+
metadata?: {
|
|
15936
|
+
[key: string]: unknown;
|
|
15937
|
+
};
|
|
15660
15938
|
/**
|
|
15661
15939
|
* Guaranteed time of snapshot retention. If null - keep forever.
|
|
15662
15940
|
*/
|
|
@@ -15971,7 +16249,9 @@ export type OpenStackVolume = {
|
|
|
15971
16249
|
* Indicates if this volume can be used to boot an instance
|
|
15972
16250
|
*/
|
|
15973
16251
|
bootable?: boolean;
|
|
15974
|
-
readonly metadata:
|
|
16252
|
+
readonly metadata: {
|
|
16253
|
+
[key: string]: unknown;
|
|
16254
|
+
};
|
|
15975
16255
|
/**
|
|
15976
16256
|
* Image that this volume was created from, if any
|
|
15977
16257
|
*/
|
|
@@ -16000,7 +16280,9 @@ export type OpenStackVolume = {
|
|
|
16000
16280
|
*/
|
|
16001
16281
|
readonly device: string;
|
|
16002
16282
|
readonly action: string;
|
|
16003
|
-
readonly action_details:
|
|
16283
|
+
readonly action_details: {
|
|
16284
|
+
[key: string]: unknown;
|
|
16285
|
+
};
|
|
16004
16286
|
/**
|
|
16005
16287
|
* Instance that this volume is attached to, if any
|
|
16006
16288
|
*/
|
|
@@ -16112,7 +16394,9 @@ export type OrcidSyncResponse = {
|
|
|
16112
16394
|
last_sync: string;
|
|
16113
16395
|
};
|
|
16114
16396
|
export type OrderApproveByProviderRequest = {
|
|
16115
|
-
attributes?:
|
|
16397
|
+
attributes?: {
|
|
16398
|
+
[key: string]: unknown;
|
|
16399
|
+
};
|
|
16116
16400
|
};
|
|
16117
16401
|
export type OrderAttachment = {
|
|
16118
16402
|
attachment?: string | null;
|
|
@@ -16170,7 +16454,9 @@ export type OrderDetails = {
|
|
|
16170
16454
|
/**
|
|
16171
16455
|
* Public data used by specific plugin, such as storage mode for OpenStack.
|
|
16172
16456
|
*/
|
|
16173
|
-
readonly offering_plugin_options:
|
|
16457
|
+
readonly offering_plugin_options: {
|
|
16458
|
+
[key: string]: unknown;
|
|
16459
|
+
};
|
|
16174
16460
|
readonly provider_name: string;
|
|
16175
16461
|
readonly provider_uuid: string;
|
|
16176
16462
|
readonly provider_slug: string;
|
|
@@ -16183,7 +16469,9 @@ export type OrderDetails = {
|
|
|
16183
16469
|
readonly plan_name: string | null;
|
|
16184
16470
|
readonly plan_uuid: string | null;
|
|
16185
16471
|
readonly plan_description: string | null;
|
|
16186
|
-
attributes?:
|
|
16472
|
+
attributes?: {
|
|
16473
|
+
[key: string]: unknown;
|
|
16474
|
+
};
|
|
16187
16475
|
limits?: {
|
|
16188
16476
|
[key: string]: number;
|
|
16189
16477
|
};
|
|
@@ -16368,7 +16656,9 @@ export type OrderUpdate = {
|
|
|
16368
16656
|
limits?: {
|
|
16369
16657
|
[key: string]: number;
|
|
16370
16658
|
};
|
|
16371
|
-
attributes?:
|
|
16659
|
+
attributes?: {
|
|
16660
|
+
[key: string]: unknown;
|
|
16661
|
+
};
|
|
16372
16662
|
/**
|
|
16373
16663
|
* Enables delayed processing of resource provisioning order.
|
|
16374
16664
|
*/
|
|
@@ -16378,7 +16668,9 @@ export type OrderUpdateRequest = {
|
|
|
16378
16668
|
limits?: {
|
|
16379
16669
|
[key: string]: number;
|
|
16380
16670
|
};
|
|
16381
|
-
attributes?:
|
|
16671
|
+
attributes?: {
|
|
16672
|
+
[key: string]: unknown;
|
|
16673
|
+
};
|
|
16382
16674
|
/**
|
|
16383
16675
|
* Enables delayed processing of resource provisioning order.
|
|
16384
16676
|
*/
|
|
@@ -16592,7 +16884,9 @@ export type PatchedAttributeRequest = {
|
|
|
16592
16884
|
* A value must be provided for the attribute.
|
|
16593
16885
|
*/
|
|
16594
16886
|
required?: boolean;
|
|
16595
|
-
default?:
|
|
16887
|
+
default?: {
|
|
16888
|
+
[key: string]: unknown;
|
|
16889
|
+
} | null;
|
|
16596
16890
|
};
|
|
16597
16891
|
export type PatchedAwsInstanceRequest = {
|
|
16598
16892
|
name?: string;
|
|
@@ -16621,7 +16915,9 @@ export type PatchedAzureVirtualMachineRequest = {
|
|
|
16621
16915
|
export type PatchedBroadcastMessageRequest = {
|
|
16622
16916
|
subject?: string;
|
|
16623
16917
|
body?: string;
|
|
16624
|
-
query?:
|
|
16918
|
+
query?: {
|
|
16919
|
+
[key: string]: unknown;
|
|
16920
|
+
};
|
|
16625
16921
|
send_at?: string | null;
|
|
16626
16922
|
};
|
|
16627
16923
|
export type PatchedCallAssignmentConfigurationRequest = {
|
|
@@ -16699,8 +16995,12 @@ export type PatchedCallManagingOrganisationRequest = {
|
|
|
16699
16995
|
export type PatchedCallResourceTemplateRequest = {
|
|
16700
16996
|
name?: string;
|
|
16701
16997
|
description?: string;
|
|
16702
|
-
attributes?:
|
|
16703
|
-
|
|
16998
|
+
attributes?: {
|
|
16999
|
+
[key: string]: unknown;
|
|
17000
|
+
};
|
|
17001
|
+
limits?: {
|
|
17002
|
+
[key: string]: unknown;
|
|
17003
|
+
};
|
|
16704
17004
|
/**
|
|
16705
17005
|
* If True, every proposal must include this resource type
|
|
16706
17006
|
*/
|
|
@@ -16851,7 +17151,9 @@ export type PatchedCustomerComponentUsagePolicyRequest = {
|
|
|
16851
17151
|
/**
|
|
16852
17152
|
* Fields for saving actions extra data. Keys are name of actions.
|
|
16853
17153
|
*/
|
|
16854
|
-
options?:
|
|
17154
|
+
options?: {
|
|
17155
|
+
[key: string]: unknown;
|
|
17156
|
+
};
|
|
16855
17157
|
component_limits_set?: Array<NestedCustomerUsagePolicyComponentRequest>;
|
|
16856
17158
|
};
|
|
16857
17159
|
export type PatchedCustomerEstimatedCostPolicyRequest = {
|
|
@@ -16860,7 +17162,9 @@ export type PatchedCustomerEstimatedCostPolicyRequest = {
|
|
|
16860
17162
|
/**
|
|
16861
17163
|
* Fields for saving actions extra data. Keys are name of actions.
|
|
16862
17164
|
*/
|
|
16863
|
-
options?:
|
|
17165
|
+
options?: {
|
|
17166
|
+
[key: string]: unknown;
|
|
17167
|
+
};
|
|
16864
17168
|
limit_cost?: number;
|
|
16865
17169
|
period?: PolicyPeriodEnum;
|
|
16866
17170
|
};
|
|
@@ -16894,12 +17198,18 @@ export type PatchedCustomerRequest = {
|
|
|
16894
17198
|
* Number of extra days after project end date before resources are terminated
|
|
16895
17199
|
*/
|
|
16896
17200
|
grace_period_days?: number | null;
|
|
16897
|
-
user_email_patterns?:
|
|
16898
|
-
|
|
17201
|
+
user_email_patterns?: {
|
|
17202
|
+
[key: string]: unknown;
|
|
17203
|
+
};
|
|
17204
|
+
user_affiliations?: {
|
|
17205
|
+
[key: string]: unknown;
|
|
17206
|
+
};
|
|
16899
17207
|
/**
|
|
16900
17208
|
* List of allowed identity sources (identity providers).
|
|
16901
17209
|
*/
|
|
16902
|
-
user_identity_sources?:
|
|
17210
|
+
user_identity_sources?: {
|
|
17211
|
+
[key: string]: unknown;
|
|
17212
|
+
};
|
|
16903
17213
|
name?: string;
|
|
16904
17214
|
/**
|
|
16905
17215
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -17010,12 +17320,18 @@ export type PatchedGroupInvitationUpdateRequest = {
|
|
|
17010
17320
|
* UUID of the project role to grant if auto_create_project is enabled
|
|
17011
17321
|
*/
|
|
17012
17322
|
project_role?: string | null;
|
|
17013
|
-
user_affiliations?:
|
|
17014
|
-
|
|
17323
|
+
user_affiliations?: {
|
|
17324
|
+
[key: string]: unknown;
|
|
17325
|
+
};
|
|
17326
|
+
user_email_patterns?: {
|
|
17327
|
+
[key: string]: unknown;
|
|
17328
|
+
};
|
|
17015
17329
|
/**
|
|
17016
17330
|
* List of allowed identity sources (identity providers).
|
|
17017
17331
|
*/
|
|
17018
|
-
user_identity_sources?:
|
|
17332
|
+
user_identity_sources?: {
|
|
17333
|
+
[key: string]: unknown;
|
|
17334
|
+
};
|
|
17019
17335
|
/**
|
|
17020
17336
|
* Custom description text displayed to users viewing this invitation.
|
|
17021
17337
|
*/
|
|
@@ -17055,7 +17371,9 @@ export type PatchedIdentityProviderRequest = {
|
|
|
17055
17371
|
* The endpoint for user details management.
|
|
17056
17372
|
*/
|
|
17057
17373
|
management_url?: string;
|
|
17058
|
-
protected_fields?:
|
|
17374
|
+
protected_fields?: {
|
|
17375
|
+
[key: string]: unknown;
|
|
17376
|
+
};
|
|
17059
17377
|
/**
|
|
17060
17378
|
* Space-separated list of scopes to request during authentication.
|
|
17061
17379
|
*/
|
|
@@ -17071,7 +17389,9 @@ export type PatchedIdentityProviderRequest = {
|
|
|
17071
17389
|
/**
|
|
17072
17390
|
* A JSON object mapping Waldur User model fields to OIDC claims. Example: {"first_name": "given_name", "last_name": "family_name", "email": "email"}
|
|
17073
17391
|
*/
|
|
17074
|
-
attribute_mapping?:
|
|
17392
|
+
attribute_mapping?: {
|
|
17393
|
+
[key: string]: unknown;
|
|
17394
|
+
};
|
|
17075
17395
|
/**
|
|
17076
17396
|
* Space-separated list of extra fields to persist.
|
|
17077
17397
|
*/
|
|
@@ -17079,7 +17399,9 @@ export type PatchedIdentityProviderRequest = {
|
|
|
17079
17399
|
/**
|
|
17080
17400
|
* List of allowed redirect URLs for OAuth authentication. URLs must be exact matches (origin only: scheme + domain + port). HTTPS required except for localhost. No wildcards, paths, query params, or fragments. Example: ["https://portal1.example.com", "https://portal2.example.com:8443"]. If empty, falls back to HOMEPORT_URL setting.
|
|
17081
17401
|
*/
|
|
17082
|
-
allowed_redirects?:
|
|
17402
|
+
allowed_redirects?: {
|
|
17403
|
+
[key: string]: unknown;
|
|
17404
|
+
};
|
|
17083
17405
|
};
|
|
17084
17406
|
export type PatchedInvitationUpdateRequest = {
|
|
17085
17407
|
/**
|
|
@@ -17268,7 +17590,9 @@ export type PatchedOfferingEstimatedCostPolicyRequest = {
|
|
|
17268
17590
|
/**
|
|
17269
17591
|
* Fields for saving actions extra data. Keys are name of actions.
|
|
17270
17592
|
*/
|
|
17271
|
-
options?:
|
|
17593
|
+
options?: {
|
|
17594
|
+
[key: string]: unknown;
|
|
17595
|
+
};
|
|
17272
17596
|
limit_cost?: number;
|
|
17273
17597
|
period?: PolicyPeriodEnum;
|
|
17274
17598
|
organization_groups?: Array<string>;
|
|
@@ -17395,11 +17719,15 @@ export type PatchedOfferingSoftwareCatalogUpdateRequest = {
|
|
|
17395
17719
|
/**
|
|
17396
17720
|
* List of enabled CPU families: ['x86_64', 'aarch64']
|
|
17397
17721
|
*/
|
|
17398
|
-
enabled_cpu_family?:
|
|
17722
|
+
enabled_cpu_family?: {
|
|
17723
|
+
[key: string]: unknown;
|
|
17724
|
+
};
|
|
17399
17725
|
/**
|
|
17400
17726
|
* List of enabled CPU microarchitectures: ['generic', 'zen3']
|
|
17401
17727
|
*/
|
|
17402
|
-
enabled_cpu_microarchitectures?:
|
|
17728
|
+
enabled_cpu_microarchitectures?: {
|
|
17729
|
+
[key: string]: unknown;
|
|
17730
|
+
};
|
|
17403
17731
|
partition?: string | null;
|
|
17404
17732
|
};
|
|
17405
17733
|
export type PatchedOfferingTermsOfServiceRequest = {
|
|
@@ -17417,7 +17745,9 @@ export type PatchedOfferingUsagePolicyRequest = {
|
|
|
17417
17745
|
/**
|
|
17418
17746
|
* Fields for saving actions extra data. Keys are name of actions.
|
|
17419
17747
|
*/
|
|
17420
|
-
options?:
|
|
17748
|
+
options?: {
|
|
17749
|
+
[key: string]: unknown;
|
|
17750
|
+
};
|
|
17421
17751
|
organization_groups?: Array<string>;
|
|
17422
17752
|
/**
|
|
17423
17753
|
* If True, policy applies to all customers. Mutually exclusive with organization_groups.
|
|
@@ -17534,7 +17864,9 @@ export type PatchedOpenStackSecurityGroupUpdateRequest = {
|
|
|
17534
17864
|
export type PatchedOpenStackSnapshotRequest = {
|
|
17535
17865
|
name?: string;
|
|
17536
17866
|
description?: string;
|
|
17537
|
-
metadata?:
|
|
17867
|
+
metadata?: {
|
|
17868
|
+
[key: string]: unknown;
|
|
17869
|
+
};
|
|
17538
17870
|
/**
|
|
17539
17871
|
* Guaranteed time of snapshot retention. If null - keep forever.
|
|
17540
17872
|
*/
|
|
@@ -17586,7 +17918,9 @@ export type PatchedOrderUpdateRequest = {
|
|
|
17586
17918
|
limits?: {
|
|
17587
17919
|
[key: string]: number;
|
|
17588
17920
|
};
|
|
17589
|
-
attributes?:
|
|
17921
|
+
attributes?: {
|
|
17922
|
+
[key: string]: unknown;
|
|
17923
|
+
};
|
|
17590
17924
|
/**
|
|
17591
17925
|
* Enables delayed processing of resource provisioning order.
|
|
17592
17926
|
*/
|
|
@@ -17638,7 +17972,9 @@ export type PatchedProjectEstimatedCostPolicyRequest = {
|
|
|
17638
17972
|
/**
|
|
17639
17973
|
* Fields for saving actions extra data. Keys are name of actions.
|
|
17640
17974
|
*/
|
|
17641
|
-
options?:
|
|
17975
|
+
options?: {
|
|
17976
|
+
[key: string]: unknown;
|
|
17977
|
+
};
|
|
17642
17978
|
limit_cost?: number;
|
|
17643
17979
|
period?: PolicyPeriodEnum;
|
|
17644
17980
|
};
|
|
@@ -17700,12 +18036,18 @@ export type PatchedProjectRequest = {
|
|
|
17700
18036
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
17701
18037
|
*/
|
|
17702
18038
|
grace_period_days?: number | null;
|
|
17703
|
-
user_email_patterns?:
|
|
17704
|
-
|
|
18039
|
+
user_email_patterns?: {
|
|
18040
|
+
[key: string]: unknown;
|
|
18041
|
+
};
|
|
18042
|
+
user_affiliations?: {
|
|
18043
|
+
[key: string]: unknown;
|
|
18044
|
+
};
|
|
17705
18045
|
/**
|
|
17706
18046
|
* List of allowed identity sources (identity providers).
|
|
17707
18047
|
*/
|
|
17708
|
-
user_identity_sources?:
|
|
18048
|
+
user_identity_sources?: {
|
|
18049
|
+
[key: string]: unknown;
|
|
18050
|
+
};
|
|
17709
18051
|
affiliation_uuid?: string | null;
|
|
17710
18052
|
science_sub_domain?: string | null;
|
|
17711
18053
|
};
|
|
@@ -17745,11 +18087,15 @@ export type PatchedProjectTemplateRequest = {
|
|
|
17745
18087
|
/**
|
|
17746
18088
|
* The mapping of credits to allocation units, i.e. how many allocation units to award per credit allocated.
|
|
17747
18089
|
*/
|
|
17748
|
-
allocation_units_mapping?:
|
|
18090
|
+
allocation_units_mapping?: {
|
|
18091
|
+
[key: string]: unknown;
|
|
18092
|
+
};
|
|
17749
18093
|
/**
|
|
17750
18094
|
* The mapping of role names from the remote portal to role information in this portal for users in projects created in this class.
|
|
17751
18095
|
*/
|
|
17752
|
-
role_mapping?:
|
|
18096
|
+
role_mapping?: {
|
|
18097
|
+
[key: string]: unknown;
|
|
18098
|
+
};
|
|
17753
18099
|
};
|
|
17754
18100
|
export type PatchedProposalProjectRoleMappingRequest = {
|
|
17755
18101
|
call?: string;
|
|
@@ -17801,27 +18147,39 @@ export type PatchedProtectedCallRequest = {
|
|
|
17801
18147
|
/**
|
|
17802
18148
|
* List of email regex patterns. User must match one.
|
|
17803
18149
|
*/
|
|
17804
|
-
user_email_patterns?:
|
|
18150
|
+
user_email_patterns?: {
|
|
18151
|
+
[key: string]: unknown;
|
|
18152
|
+
};
|
|
17805
18153
|
/**
|
|
17806
18154
|
* List of allowed affiliations. User must have one.
|
|
17807
18155
|
*/
|
|
17808
|
-
user_affiliations?:
|
|
18156
|
+
user_affiliations?: {
|
|
18157
|
+
[key: string]: unknown;
|
|
18158
|
+
};
|
|
17809
18159
|
/**
|
|
17810
18160
|
* List of allowed identity sources (identity providers).
|
|
17811
18161
|
*/
|
|
17812
|
-
user_identity_sources?:
|
|
18162
|
+
user_identity_sources?: {
|
|
18163
|
+
[key: string]: unknown;
|
|
18164
|
+
};
|
|
17813
18165
|
/**
|
|
17814
18166
|
* List of allowed nationality codes (ISO 3166-1 alpha-2). User must have one.
|
|
17815
18167
|
*/
|
|
17816
|
-
user_nationalities?:
|
|
18168
|
+
user_nationalities?: {
|
|
18169
|
+
[key: string]: unknown;
|
|
18170
|
+
};
|
|
17817
18171
|
/**
|
|
17818
18172
|
* List of allowed organization type URNs (SCHAC). User must match one.
|
|
17819
18173
|
*/
|
|
17820
|
-
user_organization_types?:
|
|
18174
|
+
user_organization_types?: {
|
|
18175
|
+
[key: string]: unknown;
|
|
18176
|
+
};
|
|
17821
18177
|
/**
|
|
17822
18178
|
* List of required assurance URIs (REFEDS). User must have ALL of these.
|
|
17823
18179
|
*/
|
|
17824
|
-
user_assurance_levels?:
|
|
18180
|
+
user_assurance_levels?: {
|
|
18181
|
+
[key: string]: unknown;
|
|
18182
|
+
};
|
|
17825
18183
|
applicant_visibility_config?: CallApplicantVisibilityConfigRequest | null;
|
|
17826
18184
|
};
|
|
17827
18185
|
export type PatchedProtectedRoundRequest = {
|
|
@@ -17874,11 +18232,15 @@ export type PatchedQuestionAdminRequest = {
|
|
|
17874
18232
|
/**
|
|
17875
18233
|
* List of allowed file extensions (e.g., ['.pdf', '.doc', '.docx']). If empty, all file types are allowed.
|
|
17876
18234
|
*/
|
|
17877
|
-
allowed_file_types?:
|
|
18235
|
+
allowed_file_types?: {
|
|
18236
|
+
[key: string]: unknown;
|
|
18237
|
+
};
|
|
17878
18238
|
/**
|
|
17879
18239
|
* List of allowed MIME types (e.g., ['application/pdf', 'application/msword']). If empty, MIME type validation is not enforced. When both extensions and MIME types are specified, files must match both criteria for security.
|
|
17880
18240
|
*/
|
|
17881
|
-
allowed_mime_types?:
|
|
18241
|
+
allowed_mime_types?: {
|
|
18242
|
+
[key: string]: unknown;
|
|
18243
|
+
};
|
|
17882
18244
|
/**
|
|
17883
18245
|
* Maximum file size in megabytes. If not set, no size limit is enforced.
|
|
17884
18246
|
*/
|
|
@@ -17915,7 +18277,9 @@ export type PatchedQuestionAdminRequest = {
|
|
|
17915
18277
|
/**
|
|
17916
18278
|
* Answer value that trigger review.
|
|
17917
18279
|
*/
|
|
17918
|
-
review_answer_value?:
|
|
18280
|
+
review_answer_value?: {
|
|
18281
|
+
[key: string]: unknown;
|
|
18282
|
+
} | null;
|
|
17919
18283
|
/**
|
|
17920
18284
|
* This question always requires review regardless of answer
|
|
17921
18285
|
*/
|
|
@@ -17923,7 +18287,9 @@ export type PatchedQuestionAdminRequest = {
|
|
|
17923
18287
|
/**
|
|
17924
18288
|
* Answer value that triggers display of user guidance.
|
|
17925
18289
|
*/
|
|
17926
|
-
guidance_answer_value?:
|
|
18290
|
+
guidance_answer_value?: {
|
|
18291
|
+
[key: string]: unknown;
|
|
18292
|
+
} | null;
|
|
17927
18293
|
/**
|
|
17928
18294
|
* Operator to use when comparing answer with guidance_answer_value
|
|
17929
18295
|
*/
|
|
@@ -17944,7 +18310,9 @@ export type PatchedQuestionDependencyRequest = {
|
|
|
17944
18310
|
/**
|
|
17945
18311
|
* The answer value(s) that make this question visible
|
|
17946
18312
|
*/
|
|
17947
|
-
required_answer_value?:
|
|
18313
|
+
required_answer_value?: {
|
|
18314
|
+
[key: string]: unknown;
|
|
18315
|
+
};
|
|
17948
18316
|
operator?: ChecklistOperators;
|
|
17949
18317
|
};
|
|
17950
18318
|
export type PatchedQuestionOptionsAdminRequest = {
|
|
@@ -17992,7 +18360,9 @@ export type PatchedRancherHpaRequest = {
|
|
|
17992
18360
|
workload?: string | null;
|
|
17993
18361
|
min_replicas?: number;
|
|
17994
18362
|
max_replicas?: number;
|
|
17995
|
-
metrics?:
|
|
18363
|
+
metrics?: {
|
|
18364
|
+
[key: string]: unknown;
|
|
18365
|
+
};
|
|
17996
18366
|
};
|
|
17997
18367
|
export type PatchedRancherIngressRequest = {
|
|
17998
18368
|
name?: string;
|
|
@@ -18005,7 +18375,9 @@ export type PatchedRancherIngressRequest = {
|
|
|
18005
18375
|
runtime_state?: string;
|
|
18006
18376
|
rancher_project?: string;
|
|
18007
18377
|
namespace?: string;
|
|
18008
|
-
rules?:
|
|
18378
|
+
rules?: {
|
|
18379
|
+
[key: string]: unknown;
|
|
18380
|
+
};
|
|
18009
18381
|
};
|
|
18010
18382
|
export type PatchedRancherServiceRequest = {
|
|
18011
18383
|
name?: string;
|
|
@@ -18021,7 +18393,9 @@ export type PatchedRancherServiceRequest = {
|
|
|
18021
18393
|
* An IPv4 or IPv6 address.
|
|
18022
18394
|
*/
|
|
18023
18395
|
cluster_ip?: string | string | null;
|
|
18024
|
-
selector?:
|
|
18396
|
+
selector?: {
|
|
18397
|
+
[key: string]: unknown;
|
|
18398
|
+
} | null;
|
|
18025
18399
|
target_workloads?: Array<RancherNestedWorkloadRequest>;
|
|
18026
18400
|
};
|
|
18027
18401
|
export type PatchedRancherWorkloadRequest = {
|
|
@@ -18062,13 +18436,19 @@ export type PatchedRequestTypeAdminRequest = {
|
|
|
18062
18436
|
order?: number;
|
|
18063
18437
|
};
|
|
18064
18438
|
export type PatchedRequestedOfferingRequest = {
|
|
18065
|
-
attributes?:
|
|
18439
|
+
attributes?: {
|
|
18440
|
+
[key: string]: unknown;
|
|
18441
|
+
};
|
|
18066
18442
|
plan?: string | null;
|
|
18067
18443
|
description?: string;
|
|
18068
18444
|
};
|
|
18069
18445
|
export type PatchedRequestedResourceRequest = {
|
|
18070
|
-
attributes?:
|
|
18071
|
-
|
|
18446
|
+
attributes?: {
|
|
18447
|
+
[key: string]: unknown;
|
|
18448
|
+
};
|
|
18449
|
+
limits?: {
|
|
18450
|
+
[key: string]: unknown;
|
|
18451
|
+
};
|
|
18072
18452
|
description?: string;
|
|
18073
18453
|
requested_offering_uuid?: string;
|
|
18074
18454
|
call_resource_template_uuid?: string;
|
|
@@ -18080,7 +18460,9 @@ export type PatchedResourceProjectRequest = {
|
|
|
18080
18460
|
/**
|
|
18081
18461
|
* Dictionary mapping component types to quota values. Same format as Resource.limits.
|
|
18082
18462
|
*/
|
|
18083
|
-
limits?:
|
|
18463
|
+
limits?: {
|
|
18464
|
+
[key: string]: unknown;
|
|
18465
|
+
};
|
|
18084
18466
|
};
|
|
18085
18467
|
export type PatchedResourceUpdateRequest = {
|
|
18086
18468
|
name?: string;
|
|
@@ -18146,7 +18528,9 @@ export type PatchedReviewerProfileCreateRequest = {
|
|
|
18146
18528
|
/**
|
|
18147
18529
|
* List of name variants used in publications
|
|
18148
18530
|
*/
|
|
18149
|
-
alternative_names?:
|
|
18531
|
+
alternative_names?: {
|
|
18532
|
+
[key: string]: unknown;
|
|
18533
|
+
};
|
|
18150
18534
|
/**
|
|
18151
18535
|
* Whether reviewer is currently accepting review requests
|
|
18152
18536
|
*/
|
|
@@ -18164,7 +18548,9 @@ export type PatchedReviewerProfileRequest = {
|
|
|
18164
18548
|
/**
|
|
18165
18549
|
* List of name variants used in publications
|
|
18166
18550
|
*/
|
|
18167
|
-
alternative_names?:
|
|
18551
|
+
alternative_names?: {
|
|
18552
|
+
[key: string]: unknown;
|
|
18553
|
+
};
|
|
18168
18554
|
/**
|
|
18169
18555
|
* Whether reviewer is currently accepting review requests
|
|
18170
18556
|
*/
|
|
@@ -18186,11 +18572,15 @@ export type PatchedReviewerPublicationRequest = {
|
|
|
18186
18572
|
/**
|
|
18187
18573
|
* List of co-author names and identifiers
|
|
18188
18574
|
*/
|
|
18189
|
-
coauthors?:
|
|
18575
|
+
coauthors?: {
|
|
18576
|
+
[key: string]: unknown;
|
|
18577
|
+
};
|
|
18190
18578
|
/**
|
|
18191
18579
|
* External identifiers: {"semantic_scholar": "...", "pubmed": "..."}
|
|
18192
18580
|
*/
|
|
18193
|
-
external_ids?:
|
|
18581
|
+
external_ids?: {
|
|
18582
|
+
[key: string]: unknown;
|
|
18583
|
+
};
|
|
18194
18584
|
/**
|
|
18195
18585
|
* User can exclude old papers from expertise matching
|
|
18196
18586
|
*/
|
|
@@ -18208,7 +18598,9 @@ export type PatchedRobotAccountRequest = {
|
|
|
18208
18598
|
* Users who have access to this robot account.
|
|
18209
18599
|
*/
|
|
18210
18600
|
users?: Array<string>;
|
|
18211
|
-
keys?:
|
|
18601
|
+
keys?: {
|
|
18602
|
+
[key: string]: unknown;
|
|
18603
|
+
};
|
|
18212
18604
|
responsible_user?: string | null;
|
|
18213
18605
|
};
|
|
18214
18606
|
export type PatchedRoleDetailsRequest = {
|
|
@@ -18323,7 +18715,9 @@ export type PatchedServiceProviderRequest = {
|
|
|
18323
18715
|
/**
|
|
18324
18716
|
* List of allowed domains for offering endpoints. Only staff can modify this field.
|
|
18325
18717
|
*/
|
|
18326
|
-
allowed_domains?:
|
|
18718
|
+
allowed_domains?: {
|
|
18719
|
+
[key: string]: unknown;
|
|
18720
|
+
};
|
|
18327
18721
|
};
|
|
18328
18722
|
export type PatchedSlurmAllocationRequest = {
|
|
18329
18723
|
name?: string;
|
|
@@ -18335,7 +18729,9 @@ export type PatchedSlurmPeriodicUsagePolicyRequest = {
|
|
|
18335
18729
|
/**
|
|
18336
18730
|
* Fields for saving actions extra data. Keys are name of actions.
|
|
18337
18731
|
*/
|
|
18338
|
-
options?:
|
|
18732
|
+
options?: {
|
|
18733
|
+
[key: string]: unknown;
|
|
18734
|
+
};
|
|
18339
18735
|
organization_groups?: Array<string>;
|
|
18340
18736
|
/**
|
|
18341
18737
|
* If True, policy applies to all customers. Mutually exclusive with organization_groups.
|
|
@@ -18354,7 +18750,9 @@ export type PatchedSlurmPeriodicUsagePolicyRequest = {
|
|
|
18354
18750
|
/**
|
|
18355
18751
|
* TRES billing weights (e.g., {"CPU": 0.015625, "Mem": 0.001953125, "GRES/gpu": 0.25})
|
|
18356
18752
|
*/
|
|
18357
|
-
tres_billing_weights?:
|
|
18753
|
+
tres_billing_weights?: {
|
|
18754
|
+
[key: string]: unknown;
|
|
18755
|
+
};
|
|
18358
18756
|
/**
|
|
18359
18757
|
* Maximum percentage of base allocation that can carry over from unused previous period (0-100)
|
|
18360
18758
|
*/
|
|
@@ -18397,7 +18795,9 @@ export type PatchedSoftwareCatalogRequest = {
|
|
|
18397
18795
|
/**
|
|
18398
18796
|
* Catalog-specific metadata (architecture maps, API endpoints, etc.)
|
|
18399
18797
|
*/
|
|
18400
|
-
metadata?:
|
|
18798
|
+
metadata?: {
|
|
18799
|
+
[key: string]: unknown;
|
|
18800
|
+
};
|
|
18401
18801
|
/**
|
|
18402
18802
|
* Whether to automatically update this catalog via scheduled tasks
|
|
18403
18803
|
*/
|
|
@@ -18412,15 +18812,21 @@ export type PatchedSoftwarePackageRequest = {
|
|
|
18412
18812
|
/**
|
|
18413
18813
|
* Package categories (e.g., ['bio', 'hpc', 'build-tools'])
|
|
18414
18814
|
*/
|
|
18415
|
-
categories?:
|
|
18815
|
+
categories?: {
|
|
18816
|
+
[key: string]: unknown;
|
|
18817
|
+
};
|
|
18416
18818
|
/**
|
|
18417
18819
|
* Software licenses (e.g., ['GPL-3.0', 'MIT'])
|
|
18418
18820
|
*/
|
|
18419
|
-
licenses?:
|
|
18821
|
+
licenses?: {
|
|
18822
|
+
[key: string]: unknown;
|
|
18823
|
+
};
|
|
18420
18824
|
/**
|
|
18421
18825
|
* Package maintainers
|
|
18422
18826
|
*/
|
|
18423
|
-
maintainers?:
|
|
18827
|
+
maintainers?: {
|
|
18828
|
+
[key: string]: unknown;
|
|
18829
|
+
};
|
|
18424
18830
|
/**
|
|
18425
18831
|
* Whether this package is an extension of another package
|
|
18426
18832
|
*/
|
|
@@ -18555,7 +18961,9 @@ export type PatchedUserRequest = {
|
|
|
18555
18961
|
/**
|
|
18556
18962
|
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
18557
18963
|
*/
|
|
18558
|
-
nationalities?:
|
|
18964
|
+
nationalities?: {
|
|
18965
|
+
[key: string]: unknown;
|
|
18966
|
+
};
|
|
18559
18967
|
organization_country?: string;
|
|
18560
18968
|
/**
|
|
18561
18969
|
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
@@ -18568,7 +18976,9 @@ export type PatchedUserRequest = {
|
|
|
18568
18976
|
/**
|
|
18569
18977
|
* REFEDS assurance profile URIs from identity provider
|
|
18570
18978
|
*/
|
|
18571
|
-
eduperson_assurance?:
|
|
18979
|
+
eduperson_assurance?: {
|
|
18980
|
+
[key: string]: unknown;
|
|
18981
|
+
};
|
|
18572
18982
|
/**
|
|
18573
18983
|
* Designates whether the user is allowed to manage remote user identities.
|
|
18574
18984
|
*/
|
|
@@ -18580,7 +18990,9 @@ export type PatchedUserRequest = {
|
|
|
18580
18990
|
/**
|
|
18581
18991
|
* List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
|
|
18582
18992
|
*/
|
|
18583
|
-
managed_isds?:
|
|
18993
|
+
managed_isds?: {
|
|
18994
|
+
[key: string]: unknown;
|
|
18995
|
+
};
|
|
18584
18996
|
/**
|
|
18585
18997
|
* Reason why the user was deactivated. Visible to staff and support.
|
|
18586
18998
|
*/
|
|
@@ -19074,7 +19486,9 @@ export type Project = {
|
|
|
19074
19486
|
/**
|
|
19075
19487
|
* Metadata about project termination (read-only)
|
|
19076
19488
|
*/
|
|
19077
|
-
readonly termination_metadata:
|
|
19489
|
+
readonly termination_metadata: {
|
|
19490
|
+
[key: string]: unknown;
|
|
19491
|
+
} | null;
|
|
19078
19492
|
/**
|
|
19079
19493
|
* Internal notes visible only to staff and support users (HTML content will be sanitized)
|
|
19080
19494
|
*/
|
|
@@ -19095,12 +19509,18 @@ export type Project = {
|
|
|
19095
19509
|
* True if the project is past its end date but still within the grace period.
|
|
19096
19510
|
*/
|
|
19097
19511
|
readonly is_in_grace_period: boolean;
|
|
19098
|
-
user_email_patterns?:
|
|
19099
|
-
|
|
19512
|
+
user_email_patterns?: {
|
|
19513
|
+
[key: string]: unknown;
|
|
19514
|
+
};
|
|
19515
|
+
user_affiliations?: {
|
|
19516
|
+
[key: string]: unknown;
|
|
19517
|
+
};
|
|
19100
19518
|
/**
|
|
19101
19519
|
* List of allowed identity sources (identity providers).
|
|
19102
19520
|
*/
|
|
19103
|
-
user_identity_sources?:
|
|
19521
|
+
user_identity_sources?: {
|
|
19522
|
+
[key: string]: unknown;
|
|
19523
|
+
};
|
|
19104
19524
|
affiliation: AffiliatedOrganization | null;
|
|
19105
19525
|
affiliation_uuid?: string | null;
|
|
19106
19526
|
readonly affiliation_name: string;
|
|
@@ -19356,7 +19776,9 @@ export type ProjectEstimatedCostPolicy = {
|
|
|
19356
19776
|
/**
|
|
19357
19777
|
* Fields for saving actions extra data. Keys are name of actions.
|
|
19358
19778
|
*/
|
|
19359
|
-
options?:
|
|
19779
|
+
options?: {
|
|
19780
|
+
[key: string]: unknown;
|
|
19781
|
+
};
|
|
19360
19782
|
readonly affected_resources_count: number;
|
|
19361
19783
|
limit_cost: number;
|
|
19362
19784
|
period?: PolicyPeriodEnum;
|
|
@@ -19371,7 +19793,9 @@ export type ProjectEstimatedCostPolicyRequest = {
|
|
|
19371
19793
|
/**
|
|
19372
19794
|
* Fields for saving actions extra data. Keys are name of actions.
|
|
19373
19795
|
*/
|
|
19374
|
-
options?:
|
|
19796
|
+
options?: {
|
|
19797
|
+
[key: string]: unknown;
|
|
19798
|
+
};
|
|
19375
19799
|
limit_cost: number;
|
|
19376
19800
|
period?: PolicyPeriodEnum;
|
|
19377
19801
|
};
|
|
@@ -19544,12 +19968,18 @@ export type ProjectRequest = {
|
|
|
19544
19968
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
19545
19969
|
*/
|
|
19546
19970
|
grace_period_days?: number | null;
|
|
19547
|
-
user_email_patterns?:
|
|
19548
|
-
|
|
19971
|
+
user_email_patterns?: {
|
|
19972
|
+
[key: string]: unknown;
|
|
19973
|
+
};
|
|
19974
|
+
user_affiliations?: {
|
|
19975
|
+
[key: string]: unknown;
|
|
19976
|
+
};
|
|
19549
19977
|
/**
|
|
19550
19978
|
* List of allowed identity sources (identity providers).
|
|
19551
19979
|
*/
|
|
19552
|
-
user_identity_sources?:
|
|
19980
|
+
user_identity_sources?: {
|
|
19981
|
+
[key: string]: unknown;
|
|
19982
|
+
};
|
|
19553
19983
|
affiliation_uuid?: string | null;
|
|
19554
19984
|
science_sub_domain?: string | null;
|
|
19555
19985
|
};
|
|
@@ -19647,11 +20077,15 @@ export type ProjectTemplate = {
|
|
|
19647
20077
|
/**
|
|
19648
20078
|
* The mapping of credits to allocation units, i.e. how many allocation units to award per credit allocated.
|
|
19649
20079
|
*/
|
|
19650
|
-
allocation_units_mapping?:
|
|
20080
|
+
allocation_units_mapping?: {
|
|
20081
|
+
[key: string]: unknown;
|
|
20082
|
+
};
|
|
19651
20083
|
/**
|
|
19652
20084
|
* The mapping of role names from the remote portal to role information in this portal for users in projects created in this class.
|
|
19653
20085
|
*/
|
|
19654
|
-
role_mapping?:
|
|
20086
|
+
role_mapping?: {
|
|
20087
|
+
[key: string]: unknown;
|
|
20088
|
+
};
|
|
19655
20089
|
/**
|
|
19656
20090
|
* Serialize the role mapping dictionary returned by get_role_mapping()
|
|
19657
20091
|
*/
|
|
@@ -19689,11 +20123,15 @@ export type ProjectTemplateRequest = {
|
|
|
19689
20123
|
/**
|
|
19690
20124
|
* The mapping of credits to allocation units, i.e. how many allocation units to award per credit allocated.
|
|
19691
20125
|
*/
|
|
19692
|
-
allocation_units_mapping?:
|
|
20126
|
+
allocation_units_mapping?: {
|
|
20127
|
+
[key: string]: unknown;
|
|
20128
|
+
};
|
|
19693
20129
|
/**
|
|
19694
20130
|
* The mapping of role names from the remote portal to role information in this portal for users in projects created in this class.
|
|
19695
20131
|
*/
|
|
19696
|
-
role_mapping?:
|
|
20132
|
+
role_mapping?: {
|
|
20133
|
+
[key: string]: unknown;
|
|
20134
|
+
};
|
|
19697
20135
|
};
|
|
19698
20136
|
export type ProjectType = {
|
|
19699
20137
|
readonly uuid: string;
|
|
@@ -19828,7 +20266,9 @@ export type Proposal = {
|
|
|
19828
20266
|
/**
|
|
19829
20267
|
* Person's affiliation within organization such as student, faculty, staff.
|
|
19830
20268
|
*/
|
|
19831
|
-
readonly applicant_affiliations:
|
|
20269
|
+
readonly applicant_affiliations: {
|
|
20270
|
+
[key: string]: unknown;
|
|
20271
|
+
};
|
|
19832
20272
|
/**
|
|
19833
20273
|
* User's gender (male, female, or unknown)
|
|
19834
20274
|
*/
|
|
@@ -19847,11 +20287,15 @@ export type Proposal = {
|
|
|
19847
20287
|
/**
|
|
19848
20288
|
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
19849
20289
|
*/
|
|
19850
|
-
readonly applicant_nationalities:
|
|
20290
|
+
readonly applicant_nationalities: {
|
|
20291
|
+
[key: string]: unknown;
|
|
20292
|
+
};
|
|
19851
20293
|
/**
|
|
19852
20294
|
* REFEDS assurance profile URIs from identity provider
|
|
19853
20295
|
*/
|
|
19854
|
-
readonly applicant_eduperson_assurance:
|
|
20296
|
+
readonly applicant_eduperson_assurance: {
|
|
20297
|
+
[key: string]: unknown;
|
|
20298
|
+
};
|
|
19855
20299
|
/**
|
|
19856
20300
|
* Source of identity
|
|
19857
20301
|
*
|
|
@@ -19863,7 +20307,9 @@ export type Proposal = {
|
|
|
19863
20307
|
/**
|
|
19864
20308
|
* List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
|
|
19865
20309
|
*/
|
|
19866
|
-
readonly applicant_active_isds:
|
|
20310
|
+
readonly applicant_active_isds: {
|
|
20311
|
+
[key: string]: unknown;
|
|
20312
|
+
};
|
|
19867
20313
|
/**
|
|
19868
20314
|
* Duration in days after provisioning of resources.
|
|
19869
20315
|
*/
|
|
@@ -20129,27 +20575,39 @@ export type ProtectedCall = {
|
|
|
20129
20575
|
/**
|
|
20130
20576
|
* List of email regex patterns. User must match one.
|
|
20131
20577
|
*/
|
|
20132
|
-
user_email_patterns?:
|
|
20578
|
+
user_email_patterns?: {
|
|
20579
|
+
[key: string]: unknown;
|
|
20580
|
+
};
|
|
20133
20581
|
/**
|
|
20134
20582
|
* List of allowed affiliations. User must have one.
|
|
20135
20583
|
*/
|
|
20136
|
-
user_affiliations?:
|
|
20584
|
+
user_affiliations?: {
|
|
20585
|
+
[key: string]: unknown;
|
|
20586
|
+
};
|
|
20137
20587
|
/**
|
|
20138
20588
|
* List of allowed identity sources (identity providers).
|
|
20139
20589
|
*/
|
|
20140
|
-
user_identity_sources?:
|
|
20590
|
+
user_identity_sources?: {
|
|
20591
|
+
[key: string]: unknown;
|
|
20592
|
+
};
|
|
20141
20593
|
/**
|
|
20142
20594
|
* List of allowed nationality codes (ISO 3166-1 alpha-2). User must have one.
|
|
20143
20595
|
*/
|
|
20144
|
-
user_nationalities?:
|
|
20596
|
+
user_nationalities?: {
|
|
20597
|
+
[key: string]: unknown;
|
|
20598
|
+
};
|
|
20145
20599
|
/**
|
|
20146
20600
|
* List of allowed organization type URNs (SCHAC). User must match one.
|
|
20147
20601
|
*/
|
|
20148
|
-
user_organization_types?:
|
|
20602
|
+
user_organization_types?: {
|
|
20603
|
+
[key: string]: unknown;
|
|
20604
|
+
};
|
|
20149
20605
|
/**
|
|
20150
20606
|
* List of required assurance URIs (REFEDS). User must have ALL of these.
|
|
20151
20607
|
*/
|
|
20152
|
-
user_assurance_levels?:
|
|
20608
|
+
user_assurance_levels?: {
|
|
20609
|
+
[key: string]: unknown;
|
|
20610
|
+
};
|
|
20153
20611
|
applicant_visibility_config?: CallApplicantVisibilityConfig | null;
|
|
20154
20612
|
};
|
|
20155
20613
|
export type ProtectedCallRequest = {
|
|
@@ -20184,27 +20642,39 @@ export type ProtectedCallRequest = {
|
|
|
20184
20642
|
/**
|
|
20185
20643
|
* List of email regex patterns. User must match one.
|
|
20186
20644
|
*/
|
|
20187
|
-
user_email_patterns?:
|
|
20645
|
+
user_email_patterns?: {
|
|
20646
|
+
[key: string]: unknown;
|
|
20647
|
+
};
|
|
20188
20648
|
/**
|
|
20189
20649
|
* List of allowed affiliations. User must have one.
|
|
20190
20650
|
*/
|
|
20191
|
-
user_affiliations?:
|
|
20651
|
+
user_affiliations?: {
|
|
20652
|
+
[key: string]: unknown;
|
|
20653
|
+
};
|
|
20192
20654
|
/**
|
|
20193
20655
|
* List of allowed identity sources (identity providers).
|
|
20194
20656
|
*/
|
|
20195
|
-
user_identity_sources?:
|
|
20657
|
+
user_identity_sources?: {
|
|
20658
|
+
[key: string]: unknown;
|
|
20659
|
+
};
|
|
20196
20660
|
/**
|
|
20197
20661
|
* List of allowed nationality codes (ISO 3166-1 alpha-2). User must have one.
|
|
20198
20662
|
*/
|
|
20199
|
-
user_nationalities?:
|
|
20663
|
+
user_nationalities?: {
|
|
20664
|
+
[key: string]: unknown;
|
|
20665
|
+
};
|
|
20200
20666
|
/**
|
|
20201
20667
|
* List of allowed organization type URNs (SCHAC). User must match one.
|
|
20202
20668
|
*/
|
|
20203
|
-
user_organization_types?:
|
|
20669
|
+
user_organization_types?: {
|
|
20670
|
+
[key: string]: unknown;
|
|
20671
|
+
};
|
|
20204
20672
|
/**
|
|
20205
20673
|
* List of required assurance URIs (REFEDS). User must have ALL of these.
|
|
20206
20674
|
*/
|
|
20207
|
-
user_assurance_levels?:
|
|
20675
|
+
user_assurance_levels?: {
|
|
20676
|
+
[key: string]: unknown;
|
|
20677
|
+
};
|
|
20208
20678
|
applicant_visibility_config?: CallApplicantVisibilityConfigRequest | null;
|
|
20209
20679
|
};
|
|
20210
20680
|
export type ProtectedProposalList = {
|
|
@@ -20308,11 +20778,15 @@ export type ProviderOffering = {
|
|
|
20308
20778
|
/**
|
|
20309
20779
|
* Fields describing resource provision form.
|
|
20310
20780
|
*/
|
|
20311
|
-
options?:
|
|
20781
|
+
options?: {
|
|
20782
|
+
[key: string]: unknown;
|
|
20783
|
+
};
|
|
20312
20784
|
/**
|
|
20313
20785
|
* Fields describing resource report form.
|
|
20314
20786
|
*/
|
|
20315
|
-
resource_options?:
|
|
20787
|
+
resource_options?: {
|
|
20788
|
+
[key: string]: unknown;
|
|
20789
|
+
};
|
|
20316
20790
|
secret_options: MergedSecretOptions;
|
|
20317
20791
|
thumbnail?: string | null;
|
|
20318
20792
|
readonly offering_group_uuid: string | null;
|
|
@@ -20428,7 +20902,9 @@ export type ProviderOfferingDetails = {
|
|
|
20428
20902
|
/**
|
|
20429
20903
|
* Validation rules for resource backend_id: format regex and uniqueness scope.
|
|
20430
20904
|
*/
|
|
20431
|
-
backend_id_rules?:
|
|
20905
|
+
backend_id_rules?: {
|
|
20906
|
+
[key: string]: unknown;
|
|
20907
|
+
};
|
|
20432
20908
|
readonly organization_groups: Array<OrganizationGroup>;
|
|
20433
20909
|
readonly tags: Array<NestedTag>;
|
|
20434
20910
|
image?: string | null;
|
|
@@ -20438,7 +20914,9 @@ export type ProviderOfferingDetails = {
|
|
|
20438
20914
|
readonly parent_description: string | null;
|
|
20439
20915
|
readonly parent_uuid: string | null;
|
|
20440
20916
|
readonly parent_name: string | null;
|
|
20441
|
-
backend_metadata?:
|
|
20917
|
+
backend_metadata?: {
|
|
20918
|
+
[key: string]: unknown;
|
|
20919
|
+
};
|
|
20442
20920
|
readonly has_compliance_requirements: boolean;
|
|
20443
20921
|
/**
|
|
20444
20922
|
* Classify offering components by billing type.
|
|
@@ -20550,7 +21028,9 @@ export type ProviderRequestedOffering = {
|
|
|
20550
21028
|
readonly category_uuid: string;
|
|
20551
21029
|
readonly category_name: string;
|
|
20552
21030
|
readonly call_managing_organisation: string;
|
|
20553
|
-
attributes?:
|
|
21031
|
+
attributes?: {
|
|
21032
|
+
[key: string]: unknown;
|
|
21033
|
+
};
|
|
20554
21034
|
readonly plan: string | null;
|
|
20555
21035
|
plan_details: BasePublicPlan;
|
|
20556
21036
|
options: OfferingOptions;
|
|
@@ -20574,8 +21054,12 @@ export type ProviderRequestedResource = {
|
|
|
20574
21054
|
readonly resource_name: string;
|
|
20575
21055
|
readonly call_resource_template: string;
|
|
20576
21056
|
readonly call_resource_template_name: string;
|
|
20577
|
-
attributes?:
|
|
20578
|
-
|
|
21057
|
+
attributes?: {
|
|
21058
|
+
[key: string]: unknown;
|
|
21059
|
+
};
|
|
21060
|
+
limits?: {
|
|
21061
|
+
[key: string]: unknown;
|
|
21062
|
+
};
|
|
20579
21063
|
description?: string;
|
|
20580
21064
|
created_by?: string | null;
|
|
20581
21065
|
readonly created_by_name: string;
|
|
@@ -20822,7 +21306,9 @@ export type PublicOfferingDetails = {
|
|
|
20822
21306
|
readonly parent_description: string | null;
|
|
20823
21307
|
readonly parent_uuid: string | null;
|
|
20824
21308
|
readonly parent_name: string | null;
|
|
20825
|
-
backend_metadata?:
|
|
21309
|
+
backend_metadata?: {
|
|
21310
|
+
[key: string]: unknown;
|
|
21311
|
+
};
|
|
20826
21312
|
readonly has_compliance_requirements: boolean;
|
|
20827
21313
|
/**
|
|
20828
21314
|
* Classify offering components by billing type.
|
|
@@ -20995,11 +21481,15 @@ export type Question = {
|
|
|
20995
21481
|
/**
|
|
20996
21482
|
* List of allowed file extensions (e.g., ['.pdf', '.doc', '.docx']). If empty, all file types are allowed.
|
|
20997
21483
|
*/
|
|
20998
|
-
allowed_file_types?:
|
|
21484
|
+
allowed_file_types?: {
|
|
21485
|
+
[key: string]: unknown;
|
|
21486
|
+
};
|
|
20999
21487
|
/**
|
|
21000
21488
|
* List of allowed MIME types (e.g., ['application/pdf', 'application/msword']). If empty, MIME type validation is not enforced. When both extensions and MIME types are specified, files must match both criteria for security.
|
|
21001
21489
|
*/
|
|
21002
|
-
allowed_mime_types?:
|
|
21490
|
+
allowed_mime_types?: {
|
|
21491
|
+
[key: string]: unknown;
|
|
21492
|
+
};
|
|
21003
21493
|
/**
|
|
21004
21494
|
* Maximum file size in megabytes. If not set, no size limit is enforced.
|
|
21005
21495
|
*/
|
|
@@ -21036,7 +21526,9 @@ export type Question = {
|
|
|
21036
21526
|
/**
|
|
21037
21527
|
* Answer value that trigger review.
|
|
21038
21528
|
*/
|
|
21039
|
-
review_answer_value?:
|
|
21529
|
+
review_answer_value?: {
|
|
21530
|
+
[key: string]: unknown;
|
|
21531
|
+
} | null;
|
|
21040
21532
|
/**
|
|
21041
21533
|
* This question always requires review regardless of answer
|
|
21042
21534
|
*/
|
|
@@ -21044,7 +21536,9 @@ export type Question = {
|
|
|
21044
21536
|
/**
|
|
21045
21537
|
* Answer value that triggers display of user guidance.
|
|
21046
21538
|
*/
|
|
21047
|
-
guidance_answer_value?:
|
|
21539
|
+
guidance_answer_value?: {
|
|
21540
|
+
[key: string]: unknown;
|
|
21541
|
+
} | null;
|
|
21048
21542
|
/**
|
|
21049
21543
|
* Operator to use when comparing answer with guidance_answer_value
|
|
21050
21544
|
*/
|
|
@@ -21083,11 +21577,15 @@ export type QuestionAdmin = {
|
|
|
21083
21577
|
/**
|
|
21084
21578
|
* List of allowed file extensions (e.g., ['.pdf', '.doc', '.docx']). If empty, all file types are allowed.
|
|
21085
21579
|
*/
|
|
21086
|
-
allowed_file_types?:
|
|
21580
|
+
allowed_file_types?: {
|
|
21581
|
+
[key: string]: unknown;
|
|
21582
|
+
};
|
|
21087
21583
|
/**
|
|
21088
21584
|
* List of allowed MIME types (e.g., ['application/pdf', 'application/msword']). If empty, MIME type validation is not enforced. When both extensions and MIME types are specified, files must match both criteria for security.
|
|
21089
21585
|
*/
|
|
21090
|
-
allowed_mime_types?:
|
|
21586
|
+
allowed_mime_types?: {
|
|
21587
|
+
[key: string]: unknown;
|
|
21588
|
+
};
|
|
21091
21589
|
/**
|
|
21092
21590
|
* Maximum file size in megabytes. If not set, no size limit is enforced.
|
|
21093
21591
|
*/
|
|
@@ -21124,7 +21622,9 @@ export type QuestionAdmin = {
|
|
|
21124
21622
|
/**
|
|
21125
21623
|
* Answer value that trigger review.
|
|
21126
21624
|
*/
|
|
21127
|
-
review_answer_value?:
|
|
21625
|
+
review_answer_value?: {
|
|
21626
|
+
[key: string]: unknown;
|
|
21627
|
+
} | null;
|
|
21128
21628
|
/**
|
|
21129
21629
|
* This question always requires review regardless of answer
|
|
21130
21630
|
*/
|
|
@@ -21132,7 +21632,9 @@ export type QuestionAdmin = {
|
|
|
21132
21632
|
/**
|
|
21133
21633
|
* Answer value that triggers display of user guidance.
|
|
21134
21634
|
*/
|
|
21135
|
-
guidance_answer_value?:
|
|
21635
|
+
guidance_answer_value?: {
|
|
21636
|
+
[key: string]: unknown;
|
|
21637
|
+
} | null;
|
|
21136
21638
|
/**
|
|
21137
21639
|
* Operator to use when comparing answer with guidance_answer_value
|
|
21138
21640
|
*/
|
|
@@ -21174,11 +21676,15 @@ export type QuestionAdminRequest = {
|
|
|
21174
21676
|
/**
|
|
21175
21677
|
* List of allowed file extensions (e.g., ['.pdf', '.doc', '.docx']). If empty, all file types are allowed.
|
|
21176
21678
|
*/
|
|
21177
|
-
allowed_file_types?:
|
|
21679
|
+
allowed_file_types?: {
|
|
21680
|
+
[key: string]: unknown;
|
|
21681
|
+
};
|
|
21178
21682
|
/**
|
|
21179
21683
|
* List of allowed MIME types (e.g., ['application/pdf', 'application/msword']). If empty, MIME type validation is not enforced. When both extensions and MIME types are specified, files must match both criteria for security.
|
|
21180
21684
|
*/
|
|
21181
|
-
allowed_mime_types?:
|
|
21685
|
+
allowed_mime_types?: {
|
|
21686
|
+
[key: string]: unknown;
|
|
21687
|
+
};
|
|
21182
21688
|
/**
|
|
21183
21689
|
* Maximum file size in megabytes. If not set, no size limit is enforced.
|
|
21184
21690
|
*/
|
|
@@ -21215,7 +21721,9 @@ export type QuestionAdminRequest = {
|
|
|
21215
21721
|
/**
|
|
21216
21722
|
* Answer value that trigger review.
|
|
21217
21723
|
*/
|
|
21218
|
-
review_answer_value?:
|
|
21724
|
+
review_answer_value?: {
|
|
21725
|
+
[key: string]: unknown;
|
|
21726
|
+
} | null;
|
|
21219
21727
|
/**
|
|
21220
21728
|
* This question always requires review regardless of answer
|
|
21221
21729
|
*/
|
|
@@ -21223,7 +21731,9 @@ export type QuestionAdminRequest = {
|
|
|
21223
21731
|
/**
|
|
21224
21732
|
* Answer value that triggers display of user guidance.
|
|
21225
21733
|
*/
|
|
21226
|
-
guidance_answer_value?:
|
|
21734
|
+
guidance_answer_value?: {
|
|
21735
|
+
[key: string]: unknown;
|
|
21736
|
+
} | null;
|
|
21227
21737
|
/**
|
|
21228
21738
|
* Operator to use when comparing answer with guidance_answer_value
|
|
21229
21739
|
*/
|
|
@@ -21270,7 +21780,9 @@ export type QuestionAnswer = {
|
|
|
21270
21780
|
export type QuestionCondition = {
|
|
21271
21781
|
question_description: string;
|
|
21272
21782
|
operator: string;
|
|
21273
|
-
required_value:
|
|
21783
|
+
required_value: {
|
|
21784
|
+
[key: string]: unknown;
|
|
21785
|
+
};
|
|
21274
21786
|
};
|
|
21275
21787
|
export type QuestionDependency = {
|
|
21276
21788
|
readonly uuid: string;
|
|
@@ -21282,7 +21794,9 @@ export type QuestionDependency = {
|
|
|
21282
21794
|
/**
|
|
21283
21795
|
* The answer value(s) that make this question visible
|
|
21284
21796
|
*/
|
|
21285
|
-
required_answer_value:
|
|
21797
|
+
required_answer_value: {
|
|
21798
|
+
[key: string]: unknown;
|
|
21799
|
+
};
|
|
21286
21800
|
operator?: ChecklistOperators;
|
|
21287
21801
|
};
|
|
21288
21802
|
export type QuestionDependencyInfo = {
|
|
@@ -21295,7 +21809,9 @@ export type QuestionDependencyRequest = {
|
|
|
21295
21809
|
/**
|
|
21296
21810
|
* The answer value(s) that make this question visible
|
|
21297
21811
|
*/
|
|
21298
|
-
required_answer_value:
|
|
21812
|
+
required_answer_value: {
|
|
21813
|
+
[key: string]: unknown;
|
|
21814
|
+
};
|
|
21299
21815
|
operator?: ChecklistOperators;
|
|
21300
21816
|
};
|
|
21301
21817
|
export type QuestionOptions = {
|
|
@@ -21340,11 +21856,15 @@ export type QuestionWithAnswer = {
|
|
|
21340
21856
|
/**
|
|
21341
21857
|
* List of allowed file extensions (e.g., ['.pdf', '.doc', '.docx']). If empty, all file types are allowed.
|
|
21342
21858
|
*/
|
|
21343
|
-
readonly allowed_file_types:
|
|
21859
|
+
readonly allowed_file_types: {
|
|
21860
|
+
[key: string]: unknown;
|
|
21861
|
+
};
|
|
21344
21862
|
/**
|
|
21345
21863
|
* List of allowed MIME types (e.g., ['application/pdf', 'application/msword']). If empty, MIME type validation is not enforced. When both extensions and MIME types are specified, files must match both criteria for security.
|
|
21346
21864
|
*/
|
|
21347
|
-
readonly allowed_mime_types:
|
|
21865
|
+
readonly allowed_mime_types: {
|
|
21866
|
+
[key: string]: unknown;
|
|
21867
|
+
};
|
|
21348
21868
|
/**
|
|
21349
21869
|
* Maximum file size in megabytes. If not set, no size limit is enforced.
|
|
21350
21870
|
*/
|
|
@@ -21402,11 +21922,15 @@ export type QuestionWithAnswerReviewer = {
|
|
|
21402
21922
|
/**
|
|
21403
21923
|
* List of allowed file extensions (e.g., ['.pdf', '.doc', '.docx']). If empty, all file types are allowed.
|
|
21404
21924
|
*/
|
|
21405
|
-
readonly allowed_file_types:
|
|
21925
|
+
readonly allowed_file_types: {
|
|
21926
|
+
[key: string]: unknown;
|
|
21927
|
+
};
|
|
21406
21928
|
/**
|
|
21407
21929
|
* List of allowed MIME types (e.g., ['application/pdf', 'application/msword']). If empty, MIME type validation is not enforced. When both extensions and MIME types are specified, files must match both criteria for security.
|
|
21408
21930
|
*/
|
|
21409
|
-
readonly allowed_mime_types:
|
|
21931
|
+
readonly allowed_mime_types: {
|
|
21932
|
+
[key: string]: unknown;
|
|
21933
|
+
};
|
|
21410
21934
|
/**
|
|
21411
21935
|
* Maximum file size in megabytes. If not set, no size limit is enforced.
|
|
21412
21936
|
*/
|
|
@@ -21444,7 +21968,9 @@ export type QuestionWithAnswerReviewer = {
|
|
|
21444
21968
|
/**
|
|
21445
21969
|
* Answer value that trigger review.
|
|
21446
21970
|
*/
|
|
21447
|
-
review_answer_value?:
|
|
21971
|
+
review_answer_value?: {
|
|
21972
|
+
[key: string]: unknown;
|
|
21973
|
+
} | null;
|
|
21448
21974
|
/**
|
|
21449
21975
|
* This question always requires review regardless of answer
|
|
21450
21976
|
*/
|
|
@@ -21640,11 +22166,15 @@ export type RancherCluster = {
|
|
|
21640
22166
|
/**
|
|
21641
22167
|
* Cluster capacity in the format {'cpu': '10', 'ram': '49125240Ki', 'pods': '330'}
|
|
21642
22168
|
*/
|
|
21643
|
-
readonly capacity:
|
|
22169
|
+
readonly capacity: {
|
|
22170
|
+
[key: string]: unknown;
|
|
22171
|
+
};
|
|
21644
22172
|
/**
|
|
21645
22173
|
* Cluster requested resources in the format {'cpu': '1450m', 'memory': '884Mi', 'pods': '13'}
|
|
21646
22174
|
*/
|
|
21647
|
-
readonly requested:
|
|
22175
|
+
readonly requested: {
|
|
22176
|
+
[key: string]: unknown;
|
|
22177
|
+
};
|
|
21648
22178
|
/**
|
|
21649
22179
|
* Kubernetes version used in the cluster.
|
|
21650
22180
|
*/
|
|
@@ -21803,7 +22333,9 @@ export type RancherHpa = {
|
|
|
21803
22333
|
max_replicas?: number;
|
|
21804
22334
|
readonly current_replicas: number;
|
|
21805
22335
|
readonly desired_replicas: number;
|
|
21806
|
-
metrics:
|
|
22336
|
+
metrics: {
|
|
22337
|
+
[key: string]: unknown;
|
|
22338
|
+
};
|
|
21807
22339
|
};
|
|
21808
22340
|
export type RancherHpaRequest = {
|
|
21809
22341
|
name: string;
|
|
@@ -21811,7 +22343,9 @@ export type RancherHpaRequest = {
|
|
|
21811
22343
|
workload?: string | null;
|
|
21812
22344
|
min_replicas?: number;
|
|
21813
22345
|
max_replicas?: number;
|
|
21814
|
-
metrics:
|
|
22346
|
+
metrics: {
|
|
22347
|
+
[key: string]: unknown;
|
|
22348
|
+
};
|
|
21815
22349
|
};
|
|
21816
22350
|
export type RancherImportYamlRequest = {
|
|
21817
22351
|
yaml: string;
|
|
@@ -21849,7 +22383,9 @@ export type RancherIngress = {
|
|
|
21849
22383
|
readonly rancher_project_name: string;
|
|
21850
22384
|
namespace?: string;
|
|
21851
22385
|
readonly namespace_name: string;
|
|
21852
|
-
rules?:
|
|
22386
|
+
rules?: {
|
|
22387
|
+
[key: string]: unknown;
|
|
22388
|
+
};
|
|
21853
22389
|
readonly marketplace_offering_uuid: string | null;
|
|
21854
22390
|
readonly marketplace_offering_name: string | null;
|
|
21855
22391
|
readonly marketplace_offering_type: string | null;
|
|
@@ -21875,7 +22411,9 @@ export type RancherIngressRequest = {
|
|
|
21875
22411
|
runtime_state?: string;
|
|
21876
22412
|
rancher_project: string;
|
|
21877
22413
|
namespace?: string;
|
|
21878
|
-
rules?:
|
|
22414
|
+
rules?: {
|
|
22415
|
+
[key: string]: unknown;
|
|
22416
|
+
};
|
|
21879
22417
|
};
|
|
21880
22418
|
export type RancherNamespace = {
|
|
21881
22419
|
readonly url: string;
|
|
@@ -21904,7 +22442,9 @@ export type RancherNestedNode = {
|
|
|
21904
22442
|
/**
|
|
21905
22443
|
* Initial data for instance creating.
|
|
21906
22444
|
*/
|
|
21907
|
-
readonly initial_data:
|
|
22445
|
+
readonly initial_data: {
|
|
22446
|
+
[key: string]: unknown;
|
|
22447
|
+
};
|
|
21908
22448
|
readonly runtime_state: string;
|
|
21909
22449
|
readonly k8s_version: string;
|
|
21910
22450
|
readonly docker_version: string;
|
|
@@ -21920,8 +22460,12 @@ export type RancherNestedNode = {
|
|
|
21920
22460
|
readonly ram_total: number | null;
|
|
21921
22461
|
readonly pods_allocated: number | null;
|
|
21922
22462
|
readonly pods_total: number | null;
|
|
21923
|
-
readonly labels:
|
|
21924
|
-
|
|
22463
|
+
readonly labels: {
|
|
22464
|
+
[key: string]: unknown;
|
|
22465
|
+
};
|
|
22466
|
+
readonly annotations: {
|
|
22467
|
+
[key: string]: unknown;
|
|
22468
|
+
};
|
|
21925
22469
|
};
|
|
21926
22470
|
export type RancherNestedNodeRequest = {
|
|
21927
22471
|
subnet: string | null;
|
|
@@ -21990,8 +22534,12 @@ export type RancherNode = {
|
|
|
21990
22534
|
readonly ram_total: number | null;
|
|
21991
22535
|
readonly pods_allocated: number | null;
|
|
21992
22536
|
readonly pods_total: number | null;
|
|
21993
|
-
readonly labels:
|
|
21994
|
-
|
|
22537
|
+
readonly labels: {
|
|
22538
|
+
[key: string]: unknown;
|
|
22539
|
+
};
|
|
22540
|
+
readonly annotations: {
|
|
22541
|
+
[key: string]: unknown;
|
|
22542
|
+
};
|
|
21995
22543
|
readonly runtime_state: string;
|
|
21996
22544
|
};
|
|
21997
22545
|
export type RancherNodeRoleEnum = 'agent' | 'server';
|
|
@@ -22040,7 +22588,9 @@ export type RancherService = {
|
|
|
22040
22588
|
* An IPv4 or IPv6 address.
|
|
22041
22589
|
*/
|
|
22042
22590
|
cluster_ip?: string | string | null;
|
|
22043
|
-
selector?:
|
|
22591
|
+
selector?: {
|
|
22592
|
+
[key: string]: unknown;
|
|
22593
|
+
} | null;
|
|
22044
22594
|
target_workloads: Array<RancherNestedWorkload>;
|
|
22045
22595
|
readonly marketplace_offering_uuid: string | null;
|
|
22046
22596
|
readonly marketplace_offering_name: string | null;
|
|
@@ -22089,7 +22639,9 @@ export type RancherServiceCreate = {
|
|
|
22089
22639
|
* An IPv4 or IPv6 address.
|
|
22090
22640
|
*/
|
|
22091
22641
|
cluster_ip?: string | string | null;
|
|
22092
|
-
selector?:
|
|
22642
|
+
selector?: {
|
|
22643
|
+
[key: string]: unknown;
|
|
22644
|
+
} | null;
|
|
22093
22645
|
target_workloads?: Array<RancherWorkloadCreate>;
|
|
22094
22646
|
readonly marketplace_offering_uuid: string | null;
|
|
22095
22647
|
readonly marketplace_offering_name: string | null;
|
|
@@ -22119,7 +22671,9 @@ export type RancherServiceCreateRequest = {
|
|
|
22119
22671
|
* An IPv4 or IPv6 address.
|
|
22120
22672
|
*/
|
|
22121
22673
|
cluster_ip?: string | string | null;
|
|
22122
|
-
selector?:
|
|
22674
|
+
selector?: {
|
|
22675
|
+
[key: string]: unknown;
|
|
22676
|
+
} | null;
|
|
22123
22677
|
target_workloads?: Array<RancherWorkloadCreateRequest>;
|
|
22124
22678
|
};
|
|
22125
22679
|
export type RancherServiceRequest = {
|
|
@@ -22136,7 +22690,9 @@ export type RancherServiceRequest = {
|
|
|
22136
22690
|
* An IPv4 or IPv6 address.
|
|
22137
22691
|
*/
|
|
22138
22692
|
cluster_ip?: string | string | null;
|
|
22139
|
-
selector?:
|
|
22693
|
+
selector?: {
|
|
22694
|
+
[key: string]: unknown;
|
|
22695
|
+
} | null;
|
|
22140
22696
|
target_workloads: Array<RancherNestedWorkloadRequest>;
|
|
22141
22697
|
};
|
|
22142
22698
|
export type RancherTemplate = {
|
|
@@ -22164,7 +22720,9 @@ export type RancherTemplateBaseQuestion = {
|
|
|
22164
22720
|
/**
|
|
22165
22721
|
* Validate
|
|
22166
22722
|
*/
|
|
22167
|
-
validate_?:
|
|
22723
|
+
validate_?: {
|
|
22724
|
+
[key: string]: unknown;
|
|
22725
|
+
};
|
|
22168
22726
|
type: RancherTemplateQuestionType;
|
|
22169
22727
|
default?: string | null;
|
|
22170
22728
|
group?: string;
|
|
@@ -22178,7 +22736,9 @@ export type RancherTemplateQuestion = {
|
|
|
22178
22736
|
/**
|
|
22179
22737
|
* Validate
|
|
22180
22738
|
*/
|
|
22181
|
-
validate_?:
|
|
22739
|
+
validate_?: {
|
|
22740
|
+
[key: string]: unknown;
|
|
22741
|
+
};
|
|
22182
22742
|
type: RancherTemplateQuestionType;
|
|
22183
22743
|
default?: string | null;
|
|
22184
22744
|
group?: string;
|
|
@@ -22648,7 +23208,9 @@ export type RequestedOffering = {
|
|
|
22648
23208
|
readonly category_uuid: string;
|
|
22649
23209
|
readonly category_name: string;
|
|
22650
23210
|
readonly call_managing_organisation: string;
|
|
22651
|
-
attributes?:
|
|
23211
|
+
attributes?: {
|
|
23212
|
+
[key: string]: unknown;
|
|
23213
|
+
};
|
|
22652
23214
|
plan?: string | null;
|
|
22653
23215
|
plan_details: BasePublicPlan;
|
|
22654
23216
|
options: OfferingOptions;
|
|
@@ -22663,7 +23225,9 @@ export type RequestedOffering = {
|
|
|
22663
23225
|
};
|
|
22664
23226
|
export type RequestedOfferingRequest = {
|
|
22665
23227
|
offering: string;
|
|
22666
|
-
attributes?:
|
|
23228
|
+
attributes?: {
|
|
23229
|
+
[key: string]: unknown;
|
|
23230
|
+
};
|
|
22667
23231
|
plan?: string | null;
|
|
22668
23232
|
description?: string;
|
|
22669
23233
|
};
|
|
@@ -22676,15 +23240,23 @@ export type RequestedResource = {
|
|
|
22676
23240
|
readonly resource_name: string;
|
|
22677
23241
|
readonly call_resource_template: string;
|
|
22678
23242
|
readonly call_resource_template_name: string;
|
|
22679
|
-
attributes?:
|
|
22680
|
-
|
|
23243
|
+
attributes?: {
|
|
23244
|
+
[key: string]: unknown;
|
|
23245
|
+
};
|
|
23246
|
+
limits?: {
|
|
23247
|
+
[key: string]: unknown;
|
|
23248
|
+
};
|
|
22681
23249
|
description?: string;
|
|
22682
23250
|
readonly created_by: string | null;
|
|
22683
23251
|
readonly created_by_name: string;
|
|
22684
23252
|
};
|
|
22685
23253
|
export type RequestedResourceRequest = {
|
|
22686
|
-
attributes?:
|
|
22687
|
-
|
|
23254
|
+
attributes?: {
|
|
23255
|
+
[key: string]: unknown;
|
|
23256
|
+
};
|
|
23257
|
+
limits?: {
|
|
23258
|
+
[key: string]: unknown;
|
|
23259
|
+
};
|
|
22688
23260
|
description?: string;
|
|
22689
23261
|
requested_offering_uuid?: string;
|
|
22690
23262
|
call_resource_template_uuid?: string;
|
|
@@ -22712,7 +23284,9 @@ export type Resource = {
|
|
|
22712
23284
|
/**
|
|
22713
23285
|
* Public data used by specific plugin, such as storage mode for OpenStack.
|
|
22714
23286
|
*/
|
|
22715
|
-
readonly offering_plugin_options:
|
|
23287
|
+
readonly offering_plugin_options: {
|
|
23288
|
+
[key: string]: unknown;
|
|
23289
|
+
};
|
|
22716
23290
|
readonly provider_name: string;
|
|
22717
23291
|
readonly provider_uuid: string;
|
|
22718
23292
|
readonly provider_slug: string;
|
|
@@ -22812,7 +23386,9 @@ export type Resource = {
|
|
|
22812
23386
|
readonly endpoints: Array<NestedEndpoint>;
|
|
22813
23387
|
readonly error_message: string;
|
|
22814
23388
|
readonly error_traceback: string;
|
|
22815
|
-
readonly options:
|
|
23389
|
+
readonly options: {
|
|
23390
|
+
[key: string]: unknown;
|
|
23391
|
+
} | null;
|
|
22816
23392
|
readonly available_actions: Array<string>;
|
|
22817
23393
|
readonly last_sync: string;
|
|
22818
23394
|
order_in_progress: OrderDetails | null;
|
|
@@ -22834,7 +23410,9 @@ export type ResourceBackendIdRequest = {
|
|
|
22834
23410
|
backend_id?: string;
|
|
22835
23411
|
};
|
|
22836
23412
|
export type ResourceBackendMetadataRequest = {
|
|
22837
|
-
backend_metadata:
|
|
23413
|
+
backend_metadata: {
|
|
23414
|
+
[key: string]: unknown;
|
|
23415
|
+
};
|
|
22838
23416
|
};
|
|
22839
23417
|
export type ResourceClassSummary = {
|
|
22840
23418
|
used: number;
|
|
@@ -22903,7 +23481,9 @@ export type ResourceLimitChangeRequest = {
|
|
|
22903
23481
|
readonly customer_name: string;
|
|
22904
23482
|
readonly offering_uuid: string;
|
|
22905
23483
|
readonly offering_name: string;
|
|
22906
|
-
requested_limits:
|
|
23484
|
+
requested_limits: {
|
|
23485
|
+
[key: string]: unknown;
|
|
23486
|
+
};
|
|
22907
23487
|
readonly current_limits: {
|
|
22908
23488
|
[key: string]: unknown;
|
|
22909
23489
|
};
|
|
@@ -22923,17 +23503,23 @@ export type ResourceLimitChangeRequest = {
|
|
|
22923
23503
|
};
|
|
22924
23504
|
export type ResourceLimitChangeRequestCreate = {
|
|
22925
23505
|
resource: string;
|
|
22926
|
-
requested_limits:
|
|
23506
|
+
requested_limits: {
|
|
23507
|
+
[key: string]: unknown;
|
|
23508
|
+
};
|
|
22927
23509
|
readonly uuid: string;
|
|
22928
23510
|
readonly state: string;
|
|
22929
23511
|
};
|
|
22930
23512
|
export type ResourceLimitChangeRequestCreateRequest = {
|
|
22931
23513
|
resource: string;
|
|
22932
|
-
requested_limits:
|
|
23514
|
+
requested_limits: {
|
|
23515
|
+
[key: string]: unknown;
|
|
23516
|
+
};
|
|
22933
23517
|
};
|
|
22934
23518
|
export type ResourceLimitChangeRequestRequest = {
|
|
22935
23519
|
resource: string;
|
|
22936
|
-
requested_limits:
|
|
23520
|
+
requested_limits: {
|
|
23521
|
+
[key: string]: unknown;
|
|
23522
|
+
};
|
|
22937
23523
|
/**
|
|
22938
23524
|
* Optional comment provided during review
|
|
22939
23525
|
*/
|
|
@@ -22991,7 +23577,9 @@ export type ResourceOfferingRequest = {
|
|
|
22991
23577
|
name: string;
|
|
22992
23578
|
};
|
|
22993
23579
|
export type ResourceOptionsRequest = {
|
|
22994
|
-
options?:
|
|
23580
|
+
options?: {
|
|
23581
|
+
[key: string]: unknown;
|
|
23582
|
+
} | null;
|
|
22995
23583
|
};
|
|
22996
23584
|
export type ResourcePausedRequest = {
|
|
22997
23585
|
paused?: boolean;
|
|
@@ -23015,11 +23603,15 @@ export type ResourceProject = {
|
|
|
23015
23603
|
/**
|
|
23016
23604
|
* Dictionary mapping component types to quota values. Same format as Resource.limits.
|
|
23017
23605
|
*/
|
|
23018
|
-
limits?:
|
|
23606
|
+
limits?: {
|
|
23607
|
+
[key: string]: unknown;
|
|
23608
|
+
};
|
|
23019
23609
|
/**
|
|
23020
23610
|
* Dictionary mapping component types to current usage amounts. Populated by backend synchronization.
|
|
23021
23611
|
*/
|
|
23022
|
-
readonly current_usages:
|
|
23612
|
+
readonly current_usages: {
|
|
23613
|
+
[key: string]: unknown;
|
|
23614
|
+
};
|
|
23023
23615
|
readonly resource_uuid: string;
|
|
23024
23616
|
readonly resource_name: string;
|
|
23025
23617
|
readonly created: string;
|
|
@@ -23031,7 +23623,9 @@ export type ResourceProject = {
|
|
|
23031
23623
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
23032
23624
|
*/
|
|
23033
23625
|
readonly removed_by_username: string;
|
|
23034
|
-
readonly termination_metadata:
|
|
23626
|
+
readonly termination_metadata: {
|
|
23627
|
+
[key: string]: unknown;
|
|
23628
|
+
};
|
|
23035
23629
|
};
|
|
23036
23630
|
export type ResourceProjectBackendIdRequest = {
|
|
23037
23631
|
backend_id: string;
|
|
@@ -23059,7 +23653,9 @@ export type ResourceProjectRequest = {
|
|
|
23059
23653
|
/**
|
|
23060
23654
|
* Dictionary mapping component types to quota values. Same format as Resource.limits.
|
|
23061
23655
|
*/
|
|
23062
|
-
limits?:
|
|
23656
|
+
limits?: {
|
|
23657
|
+
[key: string]: unknown;
|
|
23658
|
+
};
|
|
23063
23659
|
};
|
|
23064
23660
|
export type ResourceProvisioningStats = {
|
|
23065
23661
|
/**
|
|
@@ -23174,7 +23770,9 @@ export type ResourceSetLimitsRequest = {
|
|
|
23174
23770
|
/**
|
|
23175
23771
|
* Dictionary mapping component types to their new limit values
|
|
23176
23772
|
*/
|
|
23177
|
-
limits:
|
|
23773
|
+
limits: {
|
|
23774
|
+
[key: string]: unknown;
|
|
23775
|
+
};
|
|
23178
23776
|
};
|
|
23179
23777
|
export type ResourceSetStateErredRequest = {
|
|
23180
23778
|
error_message?: string;
|
|
@@ -23188,7 +23786,9 @@ export type ResourceSuggestNameRequest = {
|
|
|
23188
23786
|
project: string;
|
|
23189
23787
|
offering: string;
|
|
23190
23788
|
plan?: string | null;
|
|
23191
|
-
attributes?:
|
|
23789
|
+
attributes?: {
|
|
23790
|
+
[key: string]: unknown;
|
|
23791
|
+
};
|
|
23192
23792
|
};
|
|
23193
23793
|
export type ResourceSwitchPlanRequest = {
|
|
23194
23794
|
plan: string;
|
|
@@ -23217,7 +23817,9 @@ export type ResourceTerminateRequest = {
|
|
|
23217
23817
|
*
|
|
23218
23818
|
* Optional attributes/parameters to pass to the termination operation
|
|
23219
23819
|
*/
|
|
23220
|
-
attributes?:
|
|
23820
|
+
attributes?: {
|
|
23821
|
+
[key: string]: unknown;
|
|
23822
|
+
};
|
|
23221
23823
|
};
|
|
23222
23824
|
export type ResourceUpdate = {
|
|
23223
23825
|
name: string;
|
|
@@ -23550,7 +24152,9 @@ export type ReviewerProfile = {
|
|
|
23550
24152
|
/**
|
|
23551
24153
|
* List of name variants used in publications
|
|
23552
24154
|
*/
|
|
23553
|
-
alternative_names?:
|
|
24155
|
+
alternative_names?: {
|
|
24156
|
+
[key: string]: unknown;
|
|
24157
|
+
};
|
|
23554
24158
|
readonly affiliations: Array<ReviewerAffiliation>;
|
|
23555
24159
|
readonly expertise_set: Array<ReviewerExpertise>;
|
|
23556
24160
|
readonly publications: Array<ReviewerPublication>;
|
|
@@ -23588,7 +24192,9 @@ export type ReviewerProfileCreateRequest = {
|
|
|
23588
24192
|
/**
|
|
23589
24193
|
* List of name variants used in publications
|
|
23590
24194
|
*/
|
|
23591
|
-
alternative_names?:
|
|
24195
|
+
alternative_names?: {
|
|
24196
|
+
[key: string]: unknown;
|
|
24197
|
+
};
|
|
23592
24198
|
/**
|
|
23593
24199
|
* Whether reviewer is currently accepting review requests
|
|
23594
24200
|
*/
|
|
@@ -23606,7 +24212,9 @@ export type ReviewerProfileRequest = {
|
|
|
23606
24212
|
/**
|
|
23607
24213
|
* List of name variants used in publications
|
|
23608
24214
|
*/
|
|
23609
|
-
alternative_names?:
|
|
24215
|
+
alternative_names?: {
|
|
24216
|
+
[key: string]: unknown;
|
|
24217
|
+
};
|
|
23610
24218
|
/**
|
|
23611
24219
|
* Whether reviewer is currently accepting review requests
|
|
23612
24220
|
*/
|
|
@@ -23629,11 +24237,15 @@ export type ReviewerPublication = {
|
|
|
23629
24237
|
/**
|
|
23630
24238
|
* List of co-author names and identifiers
|
|
23631
24239
|
*/
|
|
23632
|
-
coauthors?:
|
|
24240
|
+
coauthors?: {
|
|
24241
|
+
[key: string]: unknown;
|
|
24242
|
+
};
|
|
23633
24243
|
/**
|
|
23634
24244
|
* External identifiers: {"semantic_scholar": "...", "pubmed": "..."}
|
|
23635
24245
|
*/
|
|
23636
|
-
external_ids?:
|
|
24246
|
+
external_ids?: {
|
|
24247
|
+
[key: string]: unknown;
|
|
24248
|
+
};
|
|
23637
24249
|
/**
|
|
23638
24250
|
* User can exclude old papers from expertise matching
|
|
23639
24251
|
*/
|
|
@@ -23656,11 +24268,15 @@ export type ReviewerPublicationRequest = {
|
|
|
23656
24268
|
/**
|
|
23657
24269
|
* List of co-author names and identifiers
|
|
23658
24270
|
*/
|
|
23659
|
-
coauthors?:
|
|
24271
|
+
coauthors?: {
|
|
24272
|
+
[key: string]: unknown;
|
|
24273
|
+
};
|
|
23660
24274
|
/**
|
|
23661
24275
|
* External identifiers: {"semantic_scholar": "...", "pubmed": "..."}
|
|
23662
24276
|
*/
|
|
23663
|
-
external_ids?:
|
|
24277
|
+
external_ids?: {
|
|
24278
|
+
[key: string]: unknown;
|
|
24279
|
+
};
|
|
23664
24280
|
/**
|
|
23665
24281
|
* User can exclude old papers from expertise matching
|
|
23666
24282
|
*/
|
|
@@ -23715,11 +24331,15 @@ export type ReviewerSuggestion = {
|
|
|
23715
24331
|
/**
|
|
23716
24332
|
* Keywords from reviewer's expertise that matched the source text
|
|
23717
24333
|
*/
|
|
23718
|
-
readonly matched_keywords:
|
|
24334
|
+
readonly matched_keywords: {
|
|
24335
|
+
[key: string]: unknown;
|
|
24336
|
+
};
|
|
23719
24337
|
/**
|
|
23720
24338
|
* Top proposals with highest affinity: [{uuid, name, slug, affinity}, ...]
|
|
23721
24339
|
*/
|
|
23722
|
-
readonly top_matching_proposals:
|
|
24340
|
+
readonly top_matching_proposals: {
|
|
24341
|
+
[key: string]: unknown;
|
|
24342
|
+
};
|
|
23723
24343
|
/**
|
|
23724
24344
|
* What content was used to generate this suggestion
|
|
23725
24345
|
*/
|
|
@@ -24119,7 +24739,9 @@ export type RobotAccount = {
|
|
|
24119
24739
|
* Users who have access to this robot account.
|
|
24120
24740
|
*/
|
|
24121
24741
|
users?: Array<string>;
|
|
24122
|
-
keys?:
|
|
24742
|
+
keys?: {
|
|
24743
|
+
[key: string]: unknown;
|
|
24744
|
+
};
|
|
24123
24745
|
readonly backend_id: string;
|
|
24124
24746
|
readonly fingerprints: Array<Fingerprint>;
|
|
24125
24747
|
responsible_user?: string | null;
|
|
@@ -24140,7 +24762,9 @@ export type RobotAccountDetails = {
|
|
|
24140
24762
|
*/
|
|
24141
24763
|
type: string;
|
|
24142
24764
|
readonly users: Array<BasicUser>;
|
|
24143
|
-
keys?:
|
|
24765
|
+
keys?: {
|
|
24766
|
+
[key: string]: unknown;
|
|
24767
|
+
};
|
|
24144
24768
|
readonly backend_id: string;
|
|
24145
24769
|
readonly fingerprints: Array<Fingerprint>;
|
|
24146
24770
|
responsible_user: BasicUser | null;
|
|
@@ -24173,7 +24797,9 @@ export type RobotAccountRequest = {
|
|
|
24173
24797
|
* Users who have access to this robot account.
|
|
24174
24798
|
*/
|
|
24175
24799
|
users?: Array<string>;
|
|
24176
|
-
keys?:
|
|
24800
|
+
keys?: {
|
|
24801
|
+
[key: string]: unknown;
|
|
24802
|
+
};
|
|
24177
24803
|
responsible_user?: string | null;
|
|
24178
24804
|
};
|
|
24179
24805
|
export type RobotAccountStates = 'Requested' | 'Creating' | 'OK' | 'Requested deletion' | 'Deleted' | 'Error';
|
|
@@ -24432,7 +25058,9 @@ export type RoleModifyRequest = {
|
|
|
24432
25058
|
* Description [cs]
|
|
24433
25059
|
*/
|
|
24434
25060
|
description_cs?: string | null;
|
|
24435
|
-
permissions:
|
|
25061
|
+
permissions: {
|
|
25062
|
+
[key: string]: unknown;
|
|
25063
|
+
};
|
|
24436
25064
|
is_active?: boolean;
|
|
24437
25065
|
content_type: string;
|
|
24438
25066
|
};
|
|
@@ -24767,7 +25395,9 @@ export type ServiceProvider = {
|
|
|
24767
25395
|
/**
|
|
24768
25396
|
* List of allowed domains for offering endpoints. Only staff can modify this field.
|
|
24769
25397
|
*/
|
|
24770
|
-
allowed_domains?:
|
|
25398
|
+
allowed_domains?: {
|
|
25399
|
+
[key: string]: unknown;
|
|
25400
|
+
};
|
|
24771
25401
|
};
|
|
24772
25402
|
export type ServiceProviderAccess = {
|
|
24773
25403
|
offering_uuid: string;
|
|
@@ -24823,7 +25453,9 @@ export type ServiceProviderRequest = {
|
|
|
24823
25453
|
/**
|
|
24824
25454
|
* List of allowed domains for offering endpoints. Only staff can modify this field.
|
|
24825
25455
|
*/
|
|
24826
|
-
allowed_domains?:
|
|
25456
|
+
allowed_domains?: {
|
|
25457
|
+
[key: string]: unknown;
|
|
25458
|
+
};
|
|
24827
25459
|
};
|
|
24828
25460
|
export type ServiceProviderRevenues = {
|
|
24829
25461
|
/**
|
|
@@ -24984,7 +25616,9 @@ export type SetTokenQuotaRequest = {
|
|
|
24984
25616
|
export type SettingsItem = {
|
|
24985
25617
|
key: string;
|
|
24986
25618
|
description: string;
|
|
24987
|
-
default?:
|
|
25619
|
+
default?: {
|
|
25620
|
+
[key: string]: unknown;
|
|
25621
|
+
};
|
|
24988
25622
|
type: string;
|
|
24989
25623
|
options?: Array<SettingsItemOption>;
|
|
24990
25624
|
};
|
|
@@ -25177,7 +25811,9 @@ export type SlurmCommandHistory = {
|
|
|
25177
25811
|
/**
|
|
25178
25812
|
* Command parameters as key-value pairs
|
|
25179
25813
|
*/
|
|
25180
|
-
parameters?:
|
|
25814
|
+
parameters?: {
|
|
25815
|
+
[key: string]: unknown;
|
|
25816
|
+
};
|
|
25181
25817
|
readonly executed_at: string;
|
|
25182
25818
|
/**
|
|
25183
25819
|
* Whether command was executed in production or emulator mode
|
|
@@ -25230,7 +25866,9 @@ export type SlurmPeriodicUsagePolicy = {
|
|
|
25230
25866
|
/**
|
|
25231
25867
|
* Fields for saving actions extra data. Keys are name of actions.
|
|
25232
25868
|
*/
|
|
25233
|
-
options?:
|
|
25869
|
+
options?: {
|
|
25870
|
+
[key: string]: unknown;
|
|
25871
|
+
};
|
|
25234
25872
|
readonly affected_resources_count: number;
|
|
25235
25873
|
organization_groups?: Array<string>;
|
|
25236
25874
|
/**
|
|
@@ -25251,7 +25889,9 @@ export type SlurmPeriodicUsagePolicy = {
|
|
|
25251
25889
|
/**
|
|
25252
25890
|
* TRES billing weights (e.g., {"CPU": 0.015625, "Mem": 0.001953125, "GRES/gpu": 0.25})
|
|
25253
25891
|
*/
|
|
25254
|
-
tres_billing_weights?:
|
|
25892
|
+
tres_billing_weights?: {
|
|
25893
|
+
[key: string]: unknown;
|
|
25894
|
+
};
|
|
25255
25895
|
/**
|
|
25256
25896
|
* Maximum percentage of base allocation that can carry over from unused previous period (0-100)
|
|
25257
25897
|
*/
|
|
@@ -25283,7 +25923,9 @@ export type SlurmPeriodicUsagePolicyRequest = {
|
|
|
25283
25923
|
/**
|
|
25284
25924
|
* Fields for saving actions extra data. Keys are name of actions.
|
|
25285
25925
|
*/
|
|
25286
|
-
options?:
|
|
25926
|
+
options?: {
|
|
25927
|
+
[key: string]: unknown;
|
|
25928
|
+
};
|
|
25287
25929
|
organization_groups?: Array<string>;
|
|
25288
25930
|
/**
|
|
25289
25931
|
* If True, policy applies to all customers. Mutually exclusive with organization_groups.
|
|
@@ -25302,7 +25944,9 @@ export type SlurmPeriodicUsagePolicyRequest = {
|
|
|
25302
25944
|
/**
|
|
25303
25945
|
* TRES billing weights (e.g., {"CPU": 0.015625, "Mem": 0.001953125, "GRES/gpu": 0.25})
|
|
25304
25946
|
*/
|
|
25305
|
-
tres_billing_weights?:
|
|
25947
|
+
tres_billing_weights?: {
|
|
25948
|
+
[key: string]: unknown;
|
|
25949
|
+
};
|
|
25306
25950
|
/**
|
|
25307
25951
|
* Maximum percentage of base allocation that can carry over from unused previous period (0-100)
|
|
25308
25952
|
*/
|
|
@@ -25400,15 +26044,21 @@ export type SlurmPolicyEvaluationLog = {
|
|
|
25400
26044
|
/**
|
|
25401
26045
|
* List of actions taken during this evaluation (e.g. ['pause', 'notify'])
|
|
25402
26046
|
*/
|
|
25403
|
-
actions_taken?:
|
|
26047
|
+
actions_taken?: {
|
|
26048
|
+
[key: string]: unknown;
|
|
26049
|
+
};
|
|
25404
26050
|
/**
|
|
25405
26051
|
* Resource state before evaluation: {paused: bool, downscaled: bool}
|
|
25406
26052
|
*/
|
|
25407
|
-
previous_state?:
|
|
26053
|
+
previous_state?: {
|
|
26054
|
+
[key: string]: unknown;
|
|
26055
|
+
};
|
|
25408
26056
|
/**
|
|
25409
26057
|
* Resource state after evaluation: {paused: bool, downscaled: bool}
|
|
25410
26058
|
*/
|
|
25411
|
-
new_state?:
|
|
26059
|
+
new_state?: {
|
|
26060
|
+
[key: string]: unknown;
|
|
26061
|
+
};
|
|
25412
26062
|
/**
|
|
25413
26063
|
* Whether a STOMP message was sent to the site agent
|
|
25414
26064
|
*/
|
|
@@ -25420,7 +26070,9 @@ export type SlurmPolicyEvaluationLog = {
|
|
|
25420
26070
|
/**
|
|
25421
26071
|
* Response payload from the site agent
|
|
25422
26072
|
*/
|
|
25423
|
-
site_agent_response?:
|
|
26073
|
+
site_agent_response?: {
|
|
26074
|
+
[key: string]: unknown;
|
|
26075
|
+
} | null;
|
|
25424
26076
|
/**
|
|
25425
26077
|
* When this evaluation was performed
|
|
25426
26078
|
*/
|
|
@@ -25518,7 +26170,9 @@ export type SoftwareCatalog = {
|
|
|
25518
26170
|
/**
|
|
25519
26171
|
* Catalog-specific metadata (architecture maps, API endpoints, etc.)
|
|
25520
26172
|
*/
|
|
25521
|
-
metadata?:
|
|
26173
|
+
metadata?: {
|
|
26174
|
+
[key: string]: unknown;
|
|
26175
|
+
};
|
|
25522
26176
|
/**
|
|
25523
26177
|
* Whether to automatically update this catalog via scheduled tasks
|
|
25524
26178
|
*/
|
|
@@ -25562,7 +26216,9 @@ export type SoftwareCatalogRequest = {
|
|
|
25562
26216
|
/**
|
|
25563
26217
|
* Catalog-specific metadata (architecture maps, API endpoints, etc.)
|
|
25564
26218
|
*/
|
|
25565
|
-
metadata?:
|
|
26219
|
+
metadata?: {
|
|
26220
|
+
[key: string]: unknown;
|
|
26221
|
+
};
|
|
25566
26222
|
/**
|
|
25567
26223
|
* Whether to automatically update this catalog via scheduled tasks
|
|
25568
26224
|
*/
|
|
@@ -25591,15 +26247,21 @@ export type SoftwarePackage = {
|
|
|
25591
26247
|
/**
|
|
25592
26248
|
* Package categories (e.g., ['bio', 'hpc', 'build-tools'])
|
|
25593
26249
|
*/
|
|
25594
|
-
categories?:
|
|
26250
|
+
categories?: {
|
|
26251
|
+
[key: string]: unknown;
|
|
26252
|
+
};
|
|
25595
26253
|
/**
|
|
25596
26254
|
* Software licenses (e.g., ['GPL-3.0', 'MIT'])
|
|
25597
26255
|
*/
|
|
25598
|
-
licenses?:
|
|
26256
|
+
licenses?: {
|
|
26257
|
+
[key: string]: unknown;
|
|
26258
|
+
};
|
|
25599
26259
|
/**
|
|
25600
26260
|
* Package maintainers
|
|
25601
26261
|
*/
|
|
25602
|
-
maintainers?:
|
|
26262
|
+
maintainers?: {
|
|
26263
|
+
[key: string]: unknown;
|
|
26264
|
+
};
|
|
25603
26265
|
/**
|
|
25604
26266
|
* Whether this package is an extension of another package
|
|
25605
26267
|
*/
|
|
@@ -25622,15 +26284,21 @@ export type SoftwarePackageRequest = {
|
|
|
25622
26284
|
/**
|
|
25623
26285
|
* Package categories (e.g., ['bio', 'hpc', 'build-tools'])
|
|
25624
26286
|
*/
|
|
25625
|
-
categories?:
|
|
26287
|
+
categories?: {
|
|
26288
|
+
[key: string]: unknown;
|
|
26289
|
+
};
|
|
25626
26290
|
/**
|
|
25627
26291
|
* Software licenses (e.g., ['GPL-3.0', 'MIT'])
|
|
25628
26292
|
*/
|
|
25629
|
-
licenses?:
|
|
26293
|
+
licenses?: {
|
|
26294
|
+
[key: string]: unknown;
|
|
26295
|
+
};
|
|
25630
26296
|
/**
|
|
25631
26297
|
* Package maintainers
|
|
25632
26298
|
*/
|
|
25633
|
-
maintainers?:
|
|
26299
|
+
maintainers?: {
|
|
26300
|
+
[key: string]: unknown;
|
|
26301
|
+
};
|
|
25634
26302
|
/**
|
|
25635
26303
|
* Whether this package is an extension of another package
|
|
25636
26304
|
*/
|
|
@@ -25660,11 +26328,15 @@ export type SoftwareTarget = {
|
|
|
25660
26328
|
/**
|
|
25661
26329
|
* Target-specific metadata (build options, system requirements, etc.)
|
|
25662
26330
|
*/
|
|
25663
|
-
readonly metadata:
|
|
26331
|
+
readonly metadata: {
|
|
26332
|
+
[key: string]: unknown;
|
|
26333
|
+
};
|
|
25664
26334
|
/**
|
|
25665
26335
|
* List of GPU architectures this target supports (e.g., ['nvidia/cc70', 'nvidia/cc90'])
|
|
25666
26336
|
*/
|
|
25667
|
-
readonly gpu_architectures:
|
|
26337
|
+
readonly gpu_architectures: {
|
|
26338
|
+
[key: string]: unknown;
|
|
26339
|
+
};
|
|
25668
26340
|
};
|
|
25669
26341
|
export type SoftwareToolchain = {
|
|
25670
26342
|
name?: string;
|
|
@@ -25684,11 +26356,15 @@ export type SoftwareVersion = {
|
|
|
25684
26356
|
/**
|
|
25685
26357
|
* Package dependencies (format varies by catalog type)
|
|
25686
26358
|
*/
|
|
25687
|
-
readonly dependencies:
|
|
26359
|
+
readonly dependencies: {
|
|
26360
|
+
[key: string]: unknown;
|
|
26361
|
+
};
|
|
25688
26362
|
/**
|
|
25689
26363
|
* Version-specific metadata (toolchains, build info, modules, etc.)
|
|
25690
26364
|
*/
|
|
25691
|
-
readonly metadata:
|
|
26365
|
+
readonly metadata: {
|
|
26366
|
+
[key: string]: unknown;
|
|
26367
|
+
};
|
|
25692
26368
|
readonly package_name: string;
|
|
25693
26369
|
readonly catalog_type: string;
|
|
25694
26370
|
readonly target_count: number;
|
|
@@ -25934,7 +26610,9 @@ export type SystemLog = {
|
|
|
25934
26610
|
readonly level_number: number;
|
|
25935
26611
|
readonly logger_name: string;
|
|
25936
26612
|
readonly message: string;
|
|
25937
|
-
readonly context:
|
|
26613
|
+
readonly context: {
|
|
26614
|
+
[key: string]: unknown;
|
|
26615
|
+
};
|
|
25938
26616
|
};
|
|
25939
26617
|
export type SystemLogInstance = {
|
|
25940
26618
|
readonly source: string;
|
|
@@ -26169,7 +26847,9 @@ export type ThreadSession = {
|
|
|
26169
26847
|
readonly uuid: string;
|
|
26170
26848
|
name?: string;
|
|
26171
26849
|
readonly chat_session: string;
|
|
26172
|
-
readonly flags:
|
|
26850
|
+
readonly flags: {
|
|
26851
|
+
[key: string]: unknown;
|
|
26852
|
+
};
|
|
26173
26853
|
is_archived?: boolean;
|
|
26174
26854
|
readonly message_count: number;
|
|
26175
26855
|
readonly input_tokens: number | null;
|
|
@@ -26299,7 +26979,9 @@ export type ToolExecuteRequest = {
|
|
|
26299
26979
|
/**
|
|
26300
26980
|
* Tool arguments.
|
|
26301
26981
|
*/
|
|
26302
|
-
arguments?:
|
|
26982
|
+
arguments?: {
|
|
26983
|
+
[key: string]: unknown;
|
|
26984
|
+
};
|
|
26303
26985
|
};
|
|
26304
26986
|
export type TopQueue = {
|
|
26305
26987
|
/**
|
|
@@ -26349,7 +27031,9 @@ export type TopologyNode = {
|
|
|
26349
27031
|
name: string;
|
|
26350
27032
|
uuid?: string | null;
|
|
26351
27033
|
attrs: {
|
|
26352
|
-
[key: string]:
|
|
27034
|
+
[key: string]: {
|
|
27035
|
+
[key: string]: unknown;
|
|
27036
|
+
};
|
|
26353
27037
|
};
|
|
26354
27038
|
};
|
|
26355
27039
|
export type TopologyNodeTypeEnum = 'tenant' | 'router' | 'network' | 'subnet' | 'port' | 'instance' | 'floating_ip' | 'external_network' | 'rbac_share';
|
|
@@ -26590,7 +27274,9 @@ export type User = {
|
|
|
26590
27274
|
/**
|
|
26591
27275
|
* Person's affiliation within organization such as student, faculty, staff.
|
|
26592
27276
|
*/
|
|
26593
|
-
readonly affiliations:
|
|
27277
|
+
readonly affiliations: {
|
|
27278
|
+
[key: string]: unknown;
|
|
27279
|
+
};
|
|
26594
27280
|
first_name?: string;
|
|
26595
27281
|
last_name?: string;
|
|
26596
27282
|
birth_date?: string | null;
|
|
@@ -26627,7 +27313,9 @@ export type User = {
|
|
|
26627
27313
|
/**
|
|
26628
27314
|
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
26629
27315
|
*/
|
|
26630
|
-
nationalities?:
|
|
27316
|
+
nationalities?: {
|
|
27317
|
+
[key: string]: unknown;
|
|
27318
|
+
};
|
|
26631
27319
|
organization_country?: string;
|
|
26632
27320
|
/**
|
|
26633
27321
|
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
@@ -26640,7 +27328,9 @@ export type User = {
|
|
|
26640
27328
|
/**
|
|
26641
27329
|
* REFEDS assurance profile URIs from identity provider
|
|
26642
27330
|
*/
|
|
26643
|
-
eduperson_assurance?:
|
|
27331
|
+
eduperson_assurance?: {
|
|
27332
|
+
[key: string]: unknown;
|
|
27333
|
+
};
|
|
26644
27334
|
/**
|
|
26645
27335
|
* Designates whether the user is allowed to manage remote user identities.
|
|
26646
27336
|
*/
|
|
@@ -26652,15 +27342,21 @@ export type User = {
|
|
|
26652
27342
|
/**
|
|
26653
27343
|
* Per-attribute source and freshness tracking. Format: {'field_name': {'source': 'isd:<name>', 'timestamp': 'ISO8601'}}.
|
|
26654
27344
|
*/
|
|
26655
|
-
readonly attribute_sources?:
|
|
27345
|
+
readonly attribute_sources?: {
|
|
27346
|
+
[key: string]: unknown;
|
|
27347
|
+
};
|
|
26656
27348
|
/**
|
|
26657
27349
|
* List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
|
|
26658
27350
|
*/
|
|
26659
|
-
managed_isds?:
|
|
27351
|
+
managed_isds?: {
|
|
27352
|
+
[key: string]: unknown;
|
|
27353
|
+
};
|
|
26660
27354
|
/**
|
|
26661
27355
|
* List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
|
|
26662
27356
|
*/
|
|
26663
|
-
readonly active_isds?:
|
|
27357
|
+
readonly active_isds?: {
|
|
27358
|
+
[key: string]: unknown;
|
|
27359
|
+
};
|
|
26664
27360
|
/**
|
|
26665
27361
|
* Reason why the user was deactivated. Visible to staff and support.
|
|
26666
27362
|
*/
|
|
@@ -27010,7 +27706,9 @@ export type UserMe = {
|
|
|
27010
27706
|
/**
|
|
27011
27707
|
* Person's affiliation within organization such as student, faculty, staff.
|
|
27012
27708
|
*/
|
|
27013
|
-
readonly affiliations:
|
|
27709
|
+
readonly affiliations: {
|
|
27710
|
+
[key: string]: unknown;
|
|
27711
|
+
};
|
|
27014
27712
|
first_name?: string;
|
|
27015
27713
|
last_name?: string;
|
|
27016
27714
|
birth_date?: string | null;
|
|
@@ -27047,7 +27745,9 @@ export type UserMe = {
|
|
|
27047
27745
|
/**
|
|
27048
27746
|
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
27049
27747
|
*/
|
|
27050
|
-
nationalities?:
|
|
27748
|
+
nationalities?: {
|
|
27749
|
+
[key: string]: unknown;
|
|
27750
|
+
};
|
|
27051
27751
|
organization_country?: string;
|
|
27052
27752
|
/**
|
|
27053
27753
|
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
@@ -27060,7 +27760,9 @@ export type UserMe = {
|
|
|
27060
27760
|
/**
|
|
27061
27761
|
* REFEDS assurance profile URIs from identity provider
|
|
27062
27762
|
*/
|
|
27063
|
-
eduperson_assurance?:
|
|
27763
|
+
eduperson_assurance?: {
|
|
27764
|
+
[key: string]: unknown;
|
|
27765
|
+
};
|
|
27064
27766
|
/**
|
|
27065
27767
|
* Designates whether the user is allowed to manage remote user identities.
|
|
27066
27768
|
*/
|
|
@@ -27072,15 +27774,21 @@ export type UserMe = {
|
|
|
27072
27774
|
/**
|
|
27073
27775
|
* Per-attribute source and freshness tracking. Format: {'field_name': {'source': 'isd:<name>', 'timestamp': 'ISO8601'}}.
|
|
27074
27776
|
*/
|
|
27075
|
-
readonly attribute_sources?:
|
|
27777
|
+
readonly attribute_sources?: {
|
|
27778
|
+
[key: string]: unknown;
|
|
27779
|
+
};
|
|
27076
27780
|
/**
|
|
27077
27781
|
* List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
|
|
27078
27782
|
*/
|
|
27079
|
-
managed_isds?:
|
|
27783
|
+
managed_isds?: {
|
|
27784
|
+
[key: string]: unknown;
|
|
27785
|
+
};
|
|
27080
27786
|
/**
|
|
27081
27787
|
* List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
|
|
27082
27788
|
*/
|
|
27083
|
-
readonly active_isds?:
|
|
27789
|
+
readonly active_isds?: {
|
|
27790
|
+
[key: string]: unknown;
|
|
27791
|
+
};
|
|
27084
27792
|
/**
|
|
27085
27793
|
* Reason why the user was deactivated. Visible to staff and support.
|
|
27086
27794
|
*/
|
|
@@ -27230,7 +27938,9 @@ export type UserRequest = {
|
|
|
27230
27938
|
/**
|
|
27231
27939
|
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
27232
27940
|
*/
|
|
27233
|
-
nationalities?:
|
|
27941
|
+
nationalities?: {
|
|
27942
|
+
[key: string]: unknown;
|
|
27943
|
+
};
|
|
27234
27944
|
organization_country?: string;
|
|
27235
27945
|
/**
|
|
27236
27946
|
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
@@ -27243,7 +27953,9 @@ export type UserRequest = {
|
|
|
27243
27953
|
/**
|
|
27244
27954
|
* REFEDS assurance profile URIs from identity provider
|
|
27245
27955
|
*/
|
|
27246
|
-
eduperson_assurance?:
|
|
27956
|
+
eduperson_assurance?: {
|
|
27957
|
+
[key: string]: unknown;
|
|
27958
|
+
};
|
|
27247
27959
|
/**
|
|
27248
27960
|
* Designates whether the user is allowed to manage remote user identities.
|
|
27249
27961
|
*/
|
|
@@ -27255,7 +27967,9 @@ export type UserRequest = {
|
|
|
27255
27967
|
/**
|
|
27256
27968
|
* List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
|
|
27257
27969
|
*/
|
|
27258
|
-
managed_isds?:
|
|
27970
|
+
managed_isds?: {
|
|
27971
|
+
[key: string]: unknown;
|
|
27972
|
+
};
|
|
27259
27973
|
/**
|
|
27260
27974
|
* Reason why the user was deactivated. Visible to staff and support.
|
|
27261
27975
|
*/
|
|
@@ -28048,12 +28762,18 @@ export type CustomerRequestForm = {
|
|
|
28048
28762
|
* Number of extra days after project end date before resources are terminated
|
|
28049
28763
|
*/
|
|
28050
28764
|
grace_period_days?: number | null;
|
|
28051
|
-
user_email_patterns?:
|
|
28052
|
-
|
|
28765
|
+
user_email_patterns?: {
|
|
28766
|
+
[key: string]: unknown;
|
|
28767
|
+
};
|
|
28768
|
+
user_affiliations?: {
|
|
28769
|
+
[key: string]: unknown;
|
|
28770
|
+
};
|
|
28053
28771
|
/**
|
|
28054
28772
|
* List of allowed identity sources (identity providers).
|
|
28055
28773
|
*/
|
|
28056
|
-
user_identity_sources?:
|
|
28774
|
+
user_identity_sources?: {
|
|
28775
|
+
[key: string]: unknown;
|
|
28776
|
+
};
|
|
28057
28777
|
name: string;
|
|
28058
28778
|
/**
|
|
28059
28779
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -28136,12 +28856,18 @@ export type CustomerRequestMultipart = {
|
|
|
28136
28856
|
* Number of extra days after project end date before resources are terminated
|
|
28137
28857
|
*/
|
|
28138
28858
|
grace_period_days?: number | null;
|
|
28139
|
-
user_email_patterns?:
|
|
28140
|
-
|
|
28859
|
+
user_email_patterns?: {
|
|
28860
|
+
[key: string]: unknown;
|
|
28861
|
+
};
|
|
28862
|
+
user_affiliations?: {
|
|
28863
|
+
[key: string]: unknown;
|
|
28864
|
+
};
|
|
28141
28865
|
/**
|
|
28142
28866
|
* List of allowed identity sources (identity providers).
|
|
28143
28867
|
*/
|
|
28144
|
-
user_identity_sources?:
|
|
28868
|
+
user_identity_sources?: {
|
|
28869
|
+
[key: string]: unknown;
|
|
28870
|
+
};
|
|
28145
28871
|
name: string;
|
|
28146
28872
|
/**
|
|
28147
28873
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -28224,12 +28950,18 @@ export type PatchedCustomerRequestForm = {
|
|
|
28224
28950
|
* Number of extra days after project end date before resources are terminated
|
|
28225
28951
|
*/
|
|
28226
28952
|
grace_period_days?: number | null;
|
|
28227
|
-
user_email_patterns?:
|
|
28228
|
-
|
|
28953
|
+
user_email_patterns?: {
|
|
28954
|
+
[key: string]: unknown;
|
|
28955
|
+
};
|
|
28956
|
+
user_affiliations?: {
|
|
28957
|
+
[key: string]: unknown;
|
|
28958
|
+
};
|
|
28229
28959
|
/**
|
|
28230
28960
|
* List of allowed identity sources (identity providers).
|
|
28231
28961
|
*/
|
|
28232
|
-
user_identity_sources?:
|
|
28962
|
+
user_identity_sources?: {
|
|
28963
|
+
[key: string]: unknown;
|
|
28964
|
+
};
|
|
28233
28965
|
name?: string;
|
|
28234
28966
|
/**
|
|
28235
28967
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -28312,12 +29044,18 @@ export type PatchedCustomerRequestMultipart = {
|
|
|
28312
29044
|
* Number of extra days after project end date before resources are terminated
|
|
28313
29045
|
*/
|
|
28314
29046
|
grace_period_days?: number | null;
|
|
28315
|
-
user_email_patterns?:
|
|
28316
|
-
|
|
29047
|
+
user_email_patterns?: {
|
|
29048
|
+
[key: string]: unknown;
|
|
29049
|
+
};
|
|
29050
|
+
user_affiliations?: {
|
|
29051
|
+
[key: string]: unknown;
|
|
29052
|
+
};
|
|
28317
29053
|
/**
|
|
28318
29054
|
* List of allowed identity sources (identity providers).
|
|
28319
29055
|
*/
|
|
28320
|
-
user_identity_sources?:
|
|
29056
|
+
user_identity_sources?: {
|
|
29057
|
+
[key: string]: unknown;
|
|
29058
|
+
};
|
|
28321
29059
|
name?: string;
|
|
28322
29060
|
/**
|
|
28323
29061
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -28567,7 +29305,9 @@ export type OfferingCreateRequestForm = {
|
|
|
28567
29305
|
access_url?: string;
|
|
28568
29306
|
customer?: string | null;
|
|
28569
29307
|
category: string;
|
|
28570
|
-
attributes?:
|
|
29308
|
+
attributes?: {
|
|
29309
|
+
[key: string]: unknown;
|
|
29310
|
+
};
|
|
28571
29311
|
options?: OfferingOptionsRequest;
|
|
28572
29312
|
resource_options?: OfferingOptionsRequest;
|
|
28573
29313
|
components?: Array<OfferingComponentRequest>;
|
|
@@ -28597,9 +29337,13 @@ export type OfferingCreateRequestForm = {
|
|
|
28597
29337
|
/**
|
|
28598
29338
|
* Validation rules for resource backend_id: format regex and uniqueness scope.
|
|
28599
29339
|
*/
|
|
28600
|
-
backend_id_rules?:
|
|
29340
|
+
backend_id_rules?: {
|
|
29341
|
+
[key: string]: unknown;
|
|
29342
|
+
};
|
|
28601
29343
|
image?: Blob | File | null;
|
|
28602
|
-
backend_metadata?:
|
|
29344
|
+
backend_metadata?: {
|
|
29345
|
+
[key: string]: unknown;
|
|
29346
|
+
};
|
|
28603
29347
|
compliance_checklist?: string | null;
|
|
28604
29348
|
offering_group?: string | null;
|
|
28605
29349
|
limits?: {
|
|
@@ -28623,7 +29367,9 @@ export type OfferingCreateRequestMultipart = {
|
|
|
28623
29367
|
access_url?: string;
|
|
28624
29368
|
customer?: string | null;
|
|
28625
29369
|
category: string;
|
|
28626
|
-
attributes?:
|
|
29370
|
+
attributes?: {
|
|
29371
|
+
[key: string]: unknown;
|
|
29372
|
+
};
|
|
28627
29373
|
options?: OfferingOptionsRequest;
|
|
28628
29374
|
resource_options?: OfferingOptionsRequest;
|
|
28629
29375
|
components?: Array<OfferingComponentRequest>;
|
|
@@ -28653,9 +29399,13 @@ export type OfferingCreateRequestMultipart = {
|
|
|
28653
29399
|
/**
|
|
28654
29400
|
* Validation rules for resource backend_id: format regex and uniqueness scope.
|
|
28655
29401
|
*/
|
|
28656
|
-
backend_id_rules?:
|
|
29402
|
+
backend_id_rules?: {
|
|
29403
|
+
[key: string]: unknown;
|
|
29404
|
+
};
|
|
28657
29405
|
image?: Blob | File | null;
|
|
28658
|
-
backend_metadata?:
|
|
29406
|
+
backend_metadata?: {
|
|
29407
|
+
[key: string]: unknown;
|
|
29408
|
+
};
|
|
28659
29409
|
compliance_checklist?: string | null;
|
|
28660
29410
|
offering_group?: string | null;
|
|
28661
29411
|
limits?: {
|
|
@@ -28760,7 +29510,9 @@ export type ServiceProviderRequestForm = {
|
|
|
28760
29510
|
/**
|
|
28761
29511
|
* List of allowed domains for offering endpoints. Only staff can modify this field.
|
|
28762
29512
|
*/
|
|
28763
|
-
allowed_domains?:
|
|
29513
|
+
allowed_domains?: {
|
|
29514
|
+
[key: string]: unknown;
|
|
29515
|
+
};
|
|
28764
29516
|
};
|
|
28765
29517
|
export type ServiceProviderRequestMultipart = {
|
|
28766
29518
|
description?: string;
|
|
@@ -28770,7 +29522,9 @@ export type ServiceProviderRequestMultipart = {
|
|
|
28770
29522
|
/**
|
|
28771
29523
|
* List of allowed domains for offering endpoints. Only staff can modify this field.
|
|
28772
29524
|
*/
|
|
28773
|
-
allowed_domains?:
|
|
29525
|
+
allowed_domains?: {
|
|
29526
|
+
[key: string]: unknown;
|
|
29527
|
+
};
|
|
28774
29528
|
};
|
|
28775
29529
|
export type PatchedServiceProviderRequestForm = {
|
|
28776
29530
|
description?: string;
|
|
@@ -28779,7 +29533,9 @@ export type PatchedServiceProviderRequestForm = {
|
|
|
28779
29533
|
/**
|
|
28780
29534
|
* List of allowed domains for offering endpoints. Only staff can modify this field.
|
|
28781
29535
|
*/
|
|
28782
|
-
allowed_domains?:
|
|
29536
|
+
allowed_domains?: {
|
|
29537
|
+
[key: string]: unknown;
|
|
29538
|
+
};
|
|
28783
29539
|
};
|
|
28784
29540
|
export type PatchedServiceProviderRequestMultipart = {
|
|
28785
29541
|
description?: string;
|
|
@@ -28788,7 +29544,9 @@ export type PatchedServiceProviderRequestMultipart = {
|
|
|
28788
29544
|
/**
|
|
28789
29545
|
* List of allowed domains for offering endpoints. Only staff can modify this field.
|
|
28790
29546
|
*/
|
|
28791
|
-
allowed_domains?:
|
|
29547
|
+
allowed_domains?: {
|
|
29548
|
+
[key: string]: unknown;
|
|
29549
|
+
};
|
|
28792
29550
|
};
|
|
28793
29551
|
export type OnboardingJustificationDocumentationRequestForm = {
|
|
28794
29552
|
/**
|
|
@@ -28844,12 +29602,18 @@ export type ProjectRequestForm = {
|
|
|
28844
29602
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
28845
29603
|
*/
|
|
28846
29604
|
grace_period_days?: number | null;
|
|
28847
|
-
user_email_patterns?:
|
|
28848
|
-
|
|
29605
|
+
user_email_patterns?: {
|
|
29606
|
+
[key: string]: unknown;
|
|
29607
|
+
};
|
|
29608
|
+
user_affiliations?: {
|
|
29609
|
+
[key: string]: unknown;
|
|
29610
|
+
};
|
|
28849
29611
|
/**
|
|
28850
29612
|
* List of allowed identity sources (identity providers).
|
|
28851
29613
|
*/
|
|
28852
|
-
user_identity_sources?:
|
|
29614
|
+
user_identity_sources?: {
|
|
29615
|
+
[key: string]: unknown;
|
|
29616
|
+
};
|
|
28853
29617
|
affiliation_uuid?: string | null;
|
|
28854
29618
|
science_sub_domain?: string | null;
|
|
28855
29619
|
};
|
|
@@ -28895,12 +29659,18 @@ export type ProjectRequestMultipart = {
|
|
|
28895
29659
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
28896
29660
|
*/
|
|
28897
29661
|
grace_period_days?: number | null;
|
|
28898
|
-
user_email_patterns?:
|
|
28899
|
-
|
|
29662
|
+
user_email_patterns?: {
|
|
29663
|
+
[key: string]: unknown;
|
|
29664
|
+
};
|
|
29665
|
+
user_affiliations?: {
|
|
29666
|
+
[key: string]: unknown;
|
|
29667
|
+
};
|
|
28900
29668
|
/**
|
|
28901
29669
|
* List of allowed identity sources (identity providers).
|
|
28902
29670
|
*/
|
|
28903
|
-
user_identity_sources?:
|
|
29671
|
+
user_identity_sources?: {
|
|
29672
|
+
[key: string]: unknown;
|
|
29673
|
+
};
|
|
28904
29674
|
affiliation_uuid?: string | null;
|
|
28905
29675
|
science_sub_domain?: string | null;
|
|
28906
29676
|
};
|
|
@@ -28946,12 +29716,18 @@ export type PatchedProjectRequestForm = {
|
|
|
28946
29716
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
28947
29717
|
*/
|
|
28948
29718
|
grace_period_days?: number | null;
|
|
28949
|
-
user_email_patterns?:
|
|
28950
|
-
|
|
29719
|
+
user_email_patterns?: {
|
|
29720
|
+
[key: string]: unknown;
|
|
29721
|
+
};
|
|
29722
|
+
user_affiliations?: {
|
|
29723
|
+
[key: string]: unknown;
|
|
29724
|
+
};
|
|
28951
29725
|
/**
|
|
28952
29726
|
* List of allowed identity sources (identity providers).
|
|
28953
29727
|
*/
|
|
28954
|
-
user_identity_sources?:
|
|
29728
|
+
user_identity_sources?: {
|
|
29729
|
+
[key: string]: unknown;
|
|
29730
|
+
};
|
|
28955
29731
|
affiliation_uuid?: string | null;
|
|
28956
29732
|
science_sub_domain?: string | null;
|
|
28957
29733
|
};
|
|
@@ -28997,12 +29773,18 @@ export type PatchedProjectRequestMultipart = {
|
|
|
28997
29773
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
28998
29774
|
*/
|
|
28999
29775
|
grace_period_days?: number | null;
|
|
29000
|
-
user_email_patterns?:
|
|
29001
|
-
|
|
29776
|
+
user_email_patterns?: {
|
|
29777
|
+
[key: string]: unknown;
|
|
29778
|
+
};
|
|
29779
|
+
user_affiliations?: {
|
|
29780
|
+
[key: string]: unknown;
|
|
29781
|
+
};
|
|
29002
29782
|
/**
|
|
29003
29783
|
* List of allowed identity sources (identity providers).
|
|
29004
29784
|
*/
|
|
29005
|
-
user_identity_sources?:
|
|
29785
|
+
user_identity_sources?: {
|
|
29786
|
+
[key: string]: unknown;
|
|
29787
|
+
};
|
|
29006
29788
|
affiliation_uuid?: string | null;
|
|
29007
29789
|
science_sub_domain?: string | null;
|
|
29008
29790
|
};
|
|
@@ -29139,6 +29921,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
29139
29921
|
SMAX_CREATION_SOURCE_NAME?: string;
|
|
29140
29922
|
SMAX_REQUESTS_OFFERING?: string;
|
|
29141
29923
|
SMAX_VERIFY_SSL?: boolean;
|
|
29924
|
+
SMAX_CERTIFICATE?: string;
|
|
29142
29925
|
SMAX_WEBHOOK_SHARED_SECRET?: string;
|
|
29143
29926
|
ENABLE_MOCK_SERVICE_ACCOUNT_BACKEND?: boolean;
|
|
29144
29927
|
ENABLE_MOCK_COURSE_ACCOUNT_BACKEND?: boolean;
|
|
@@ -29436,6 +30219,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
29436
30219
|
SMAX_CREATION_SOURCE_NAME?: string;
|
|
29437
30220
|
SMAX_REQUESTS_OFFERING?: string;
|
|
29438
30221
|
SMAX_VERIFY_SSL?: boolean;
|
|
30222
|
+
SMAX_CERTIFICATE?: string;
|
|
29439
30223
|
SMAX_WEBHOOK_SHARED_SECRET?: string;
|
|
29440
30224
|
ENABLE_MOCK_SERVICE_ACCOUNT_BACKEND?: boolean;
|
|
29441
30225
|
ENABLE_MOCK_COURSE_ACCOUNT_BACKEND?: boolean;
|
|
@@ -29734,7 +30518,9 @@ export type UserRequestForm = {
|
|
|
29734
30518
|
/**
|
|
29735
30519
|
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
29736
30520
|
*/
|
|
29737
|
-
nationalities?:
|
|
30521
|
+
nationalities?: {
|
|
30522
|
+
[key: string]: unknown;
|
|
30523
|
+
};
|
|
29738
30524
|
organization_country?: string;
|
|
29739
30525
|
/**
|
|
29740
30526
|
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
@@ -29747,7 +30533,9 @@ export type UserRequestForm = {
|
|
|
29747
30533
|
/**
|
|
29748
30534
|
* REFEDS assurance profile URIs from identity provider
|
|
29749
30535
|
*/
|
|
29750
|
-
eduperson_assurance?:
|
|
30536
|
+
eduperson_assurance?: {
|
|
30537
|
+
[key: string]: unknown;
|
|
30538
|
+
};
|
|
29751
30539
|
/**
|
|
29752
30540
|
* Designates whether the user is allowed to manage remote user identities.
|
|
29753
30541
|
*/
|
|
@@ -29759,7 +30547,9 @@ export type UserRequestForm = {
|
|
|
29759
30547
|
/**
|
|
29760
30548
|
* List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
|
|
29761
30549
|
*/
|
|
29762
|
-
managed_isds?:
|
|
30550
|
+
managed_isds?: {
|
|
30551
|
+
[key: string]: unknown;
|
|
30552
|
+
};
|
|
29763
30553
|
/**
|
|
29764
30554
|
* Reason why the user was deactivated. Visible to staff and support.
|
|
29765
30555
|
*/
|
|
@@ -29833,7 +30623,9 @@ export type UserRequestMultipart = {
|
|
|
29833
30623
|
/**
|
|
29834
30624
|
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
29835
30625
|
*/
|
|
29836
|
-
nationalities?:
|
|
30626
|
+
nationalities?: {
|
|
30627
|
+
[key: string]: unknown;
|
|
30628
|
+
};
|
|
29837
30629
|
organization_country?: string;
|
|
29838
30630
|
/**
|
|
29839
30631
|
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
@@ -29846,7 +30638,9 @@ export type UserRequestMultipart = {
|
|
|
29846
30638
|
/**
|
|
29847
30639
|
* REFEDS assurance profile URIs from identity provider
|
|
29848
30640
|
*/
|
|
29849
|
-
eduperson_assurance?:
|
|
30641
|
+
eduperson_assurance?: {
|
|
30642
|
+
[key: string]: unknown;
|
|
30643
|
+
};
|
|
29850
30644
|
/**
|
|
29851
30645
|
* Designates whether the user is allowed to manage remote user identities.
|
|
29852
30646
|
*/
|
|
@@ -29858,7 +30652,9 @@ export type UserRequestMultipart = {
|
|
|
29858
30652
|
/**
|
|
29859
30653
|
* List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
|
|
29860
30654
|
*/
|
|
29861
|
-
managed_isds?:
|
|
30655
|
+
managed_isds?: {
|
|
30656
|
+
[key: string]: unknown;
|
|
30657
|
+
};
|
|
29862
30658
|
/**
|
|
29863
30659
|
* Reason why the user was deactivated. Visible to staff and support.
|
|
29864
30660
|
*/
|
|
@@ -29931,7 +30727,9 @@ export type PatchedUserRequestForm = {
|
|
|
29931
30727
|
/**
|
|
29932
30728
|
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
29933
30729
|
*/
|
|
29934
|
-
nationalities?:
|
|
30730
|
+
nationalities?: {
|
|
30731
|
+
[key: string]: unknown;
|
|
30732
|
+
};
|
|
29935
30733
|
organization_country?: string;
|
|
29936
30734
|
/**
|
|
29937
30735
|
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
@@ -29944,7 +30742,9 @@ export type PatchedUserRequestForm = {
|
|
|
29944
30742
|
/**
|
|
29945
30743
|
* REFEDS assurance profile URIs from identity provider
|
|
29946
30744
|
*/
|
|
29947
|
-
eduperson_assurance?:
|
|
30745
|
+
eduperson_assurance?: {
|
|
30746
|
+
[key: string]: unknown;
|
|
30747
|
+
};
|
|
29948
30748
|
/**
|
|
29949
30749
|
* Designates whether the user is allowed to manage remote user identities.
|
|
29950
30750
|
*/
|
|
@@ -29956,7 +30756,9 @@ export type PatchedUserRequestForm = {
|
|
|
29956
30756
|
/**
|
|
29957
30757
|
* List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
|
|
29958
30758
|
*/
|
|
29959
|
-
managed_isds?:
|
|
30759
|
+
managed_isds?: {
|
|
30760
|
+
[key: string]: unknown;
|
|
30761
|
+
};
|
|
29960
30762
|
/**
|
|
29961
30763
|
* Reason why the user was deactivated. Visible to staff and support.
|
|
29962
30764
|
*/
|
|
@@ -30029,7 +30831,9 @@ export type PatchedUserRequestMultipart = {
|
|
|
30029
30831
|
/**
|
|
30030
30832
|
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
30031
30833
|
*/
|
|
30032
|
-
nationalities?:
|
|
30834
|
+
nationalities?: {
|
|
30835
|
+
[key: string]: unknown;
|
|
30836
|
+
};
|
|
30033
30837
|
organization_country?: string;
|
|
30034
30838
|
/**
|
|
30035
30839
|
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
@@ -30042,7 +30846,9 @@ export type PatchedUserRequestMultipart = {
|
|
|
30042
30846
|
/**
|
|
30043
30847
|
* REFEDS assurance profile URIs from identity provider
|
|
30044
30848
|
*/
|
|
30045
|
-
eduperson_assurance?:
|
|
30849
|
+
eduperson_assurance?: {
|
|
30850
|
+
[key: string]: unknown;
|
|
30851
|
+
};
|
|
30046
30852
|
/**
|
|
30047
30853
|
* Designates whether the user is allowed to manage remote user identities.
|
|
30048
30854
|
*/
|
|
@@ -30054,7 +30860,9 @@ export type PatchedUserRequestMultipart = {
|
|
|
30054
30860
|
/**
|
|
30055
30861
|
* List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
|
|
30056
30862
|
*/
|
|
30057
|
-
managed_isds?:
|
|
30863
|
+
managed_isds?: {
|
|
30864
|
+
[key: string]: unknown;
|
|
30865
|
+
};
|
|
30058
30866
|
/**
|
|
30059
30867
|
* Reason why the user was deactivated. Visible to staff and support.
|
|
30060
30868
|
*/
|