waldur-js-client 8.0.9-dev.54 → 8.0.9-dev.56

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.
Files changed (2) hide show
  1. package/dist/types.gen.d.ts +1119 -537
  2. package/package.json +1 -1
@@ -299,7 +299,9 @@ export type AgentEventSubscriptionWithConnection = {
299
299
  /**
300
300
  * List of observable object configurations
301
301
  */
302
- readonly observable_objects: unknown;
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?: unknown;
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?: unknown;
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?: unknown;
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: unknown;
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: unknown;
705
- readonly offering_uuids: unknown;
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: unknown;
710
- readonly pii_categories: unknown;
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?: unknown;
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: unknown;
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: unknown;
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?: unknown;
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?: unknown;
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?: unknown;
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?: unknown;
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: unknown;
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: unknown;
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,18 +2902,25 @@ export type BroadcastMessage = {
2866
2902
  readonly created: string;
2867
2903
  subject: string;
2868
2904
  body: string;
2869
- query: unknown;
2905
+ query: QueryOutput;
2870
2906
  readonly author_full_name: string;
2871
- readonly emails: unknown;
2907
+ readonly emails: {
2908
+ [key: string]: unknown;
2909
+ };
2872
2910
  state: BroadcastMessageStateEnum;
2873
2911
  send_at?: string | null;
2874
2912
  };
2875
- export type BroadcastMessageRequest = {
2913
+ export type BroadcastMessageCreateRequest = {
2876
2914
  subject: string;
2877
2915
  body: string;
2878
- query: unknown;
2916
+ query: BroadcastMessageQueryRequest;
2879
2917
  send_at?: string | null;
2880
2918
  };
2919
+ export type BroadcastMessageQueryRequest = {
2920
+ customers?: Array<string>;
2921
+ offerings?: Array<string>;
2922
+ all_users?: boolean;
2923
+ };
2881
2924
  export type BroadcastMessageStateEnum = 'DRAFT' | 'SCHEDULED' | 'SENT';
2882
2925
  export type BulkRoundCreateRequestRequest = {
2883
2926
  start_time: string;
@@ -2957,7 +3000,9 @@ export type CoiDisclosureForm = {
2957
3000
  has_financial_interests?: boolean;
2958
3001
  readonly financial_interests: Array<CoiDisclosureFinancialInterest>;
2959
3002
  has_personal_relationships?: boolean;
2960
- personal_relationships?: unknown;
3003
+ personal_relationships?: {
3004
+ [key: string]: unknown;
3005
+ };
2961
3006
  has_other_conflicts?: boolean;
2962
3007
  other_conflicts_description?: string;
2963
3008
  /**
@@ -2979,7 +3024,9 @@ export type CoiDisclosureFormRequest = {
2979
3024
  certification_statement?: string;
2980
3025
  has_financial_interests?: boolean;
2981
3026
  has_personal_relationships?: boolean;
2982
- personal_relationships?: unknown;
3027
+ personal_relationships?: {
3028
+ [key: string]: unknown;
3029
+ };
2983
3030
  has_other_conflicts?: boolean;
2984
3031
  other_conflicts_description?: string;
2985
3032
  /**
@@ -3223,8 +3270,12 @@ export type CallComplianceOverviewProposalCompliance = {
3223
3270
  };
3224
3271
  export type CallComplianceOverviewProposalReviewTrigger = {
3225
3272
  question: string;
3226
- answer: unknown;
3227
- trigger_value: unknown;
3273
+ answer: {
3274
+ [key: string]: unknown;
3275
+ };
3276
+ trigger_value: {
3277
+ [key: string]: unknown;
3278
+ };
3228
3279
  operator: string;
3229
3280
  };
3230
3281
  export type CallComplianceReviewRequest = {
@@ -3305,8 +3356,12 @@ export type CallResourceTemplate = {
3305
3356
  readonly url: string;
3306
3357
  name: string;
3307
3358
  description?: string;
3308
- attributes?: unknown;
3309
- limits?: unknown;
3359
+ attributes?: {
3360
+ [key: string]: unknown;
3361
+ };
3362
+ limits?: {
3363
+ [key: string]: unknown;
3364
+ };
3310
3365
  /**
3311
3366
  * If True, every proposal must include this resource type
3312
3367
  */
@@ -3322,8 +3377,12 @@ export type CallResourceTemplate = {
3322
3377
  export type CallResourceTemplateRequest = {
3323
3378
  name: string;
3324
3379
  description?: string;
3325
- attributes?: unknown;
3326
- limits?: unknown;
3380
+ attributes?: {
3381
+ [key: string]: unknown;
3382
+ };
3383
+ limits?: {
3384
+ [key: string]: unknown;
3385
+ };
3327
3386
  /**
3328
3387
  * If True, every proposal must include this resource type
3329
3388
  */
@@ -3617,16 +3676,24 @@ export type CascadeStep = {
3617
3676
  label: string;
3618
3677
  type: CascadeStepTypeEnum;
3619
3678
  depends_on?: string;
3620
- choices?: unknown;
3621
- choices_map?: unknown;
3679
+ choices?: {
3680
+ [key: string]: unknown;
3681
+ };
3682
+ choices_map?: {
3683
+ [key: string]: unknown;
3684
+ };
3622
3685
  };
3623
3686
  export type CascadeStepRequest = {
3624
3687
  name: string;
3625
3688
  label: string;
3626
3689
  type: CascadeStepTypeEnum;
3627
3690
  depends_on?: string;
3628
- choices?: unknown;
3629
- choices_map?: unknown;
3691
+ choices?: {
3692
+ [key: string]: unknown;
3693
+ };
3694
+ choices_map?: {
3695
+ [key: string]: unknown;
3696
+ };
3630
3697
  };
3631
3698
  export type CascadeStepTypeEnum = 'select_string' | 'select_string_multi';
3632
3699
  export type CatalogSummary = {
@@ -3922,7 +3989,9 @@ export type CeleryTask = {
3922
3989
  /**
3923
3990
  * Positional arguments passed to the task
3924
3991
  */
3925
- readonly args: Array<unknown>;
3992
+ readonly args: Array<{
3993
+ [key: string]: unknown;
3994
+ }>;
3926
3995
  /**
3927
3996
  * Keyword arguments passed to the task
3928
3997
  */
@@ -4768,7 +4837,9 @@ export type ConflictOfInterest = {
4768
4837
  /**
4769
4838
  * Structured evidence: {"papers": [...], "affiliation_overlap": {...}}
4770
4839
  */
4771
- readonly evidence_data: unknown;
4840
+ readonly evidence_data: {
4841
+ [key: string]: unknown;
4842
+ };
4772
4843
  status?: ConflictOfInterestStatusEnum;
4773
4844
  readonly status_display: string;
4774
4845
  readonly reviewed_by: string | null;
@@ -4971,6 +5042,7 @@ export type ConstanceSettings = {
4971
5042
  SMAX_CREATION_SOURCE_NAME?: string;
4972
5043
  SMAX_REQUESTS_OFFERING?: string;
4973
5044
  SMAX_VERIFY_SSL?: boolean;
5045
+ SMAX_CERTIFICATE?: string;
4974
5046
  SMAX_WEBHOOK_SHARED_SECRET?: string;
4975
5047
  ENABLE_MOCK_SERVICE_ACCOUNT_BACKEND?: boolean;
4976
5048
  ENABLE_MOCK_COURSE_ACCOUNT_BACKEND?: boolean;
@@ -5268,6 +5340,7 @@ export type ConstanceSettingsRequest = {
5268
5340
  SMAX_CREATION_SOURCE_NAME?: string;
5269
5341
  SMAX_REQUESTS_OFFERING?: string;
5270
5342
  SMAX_VERIFY_SSL?: boolean;
5343
+ SMAX_CERTIFICATE?: string;
5271
5344
  SMAX_WEBHOOK_SHARED_SECRET?: string;
5272
5345
  ENABLE_MOCK_SERVICE_ACCOUNT_BACKEND?: boolean;
5273
5346
  ENABLE_MOCK_COURSE_ACCOUNT_BACKEND?: boolean;
@@ -5911,12 +5984,18 @@ export type Customer = {
5911
5984
  * Number of extra days after project end date before resources are terminated
5912
5985
  */
5913
5986
  grace_period_days?: number | null;
5914
- user_email_patterns?: unknown;
5915
- user_affiliations?: unknown;
5987
+ user_email_patterns?: {
5988
+ [key: string]: unknown;
5989
+ };
5990
+ user_affiliations?: {
5991
+ [key: string]: unknown;
5992
+ };
5916
5993
  /**
5917
5994
  * List of allowed identity sources (identity providers).
5918
5995
  */
5919
- user_identity_sources?: unknown;
5996
+ user_identity_sources?: {
5997
+ [key: string]: unknown;
5998
+ };
5920
5999
  /**
5921
6000
  * Affiliations offered to project creators of this organization.
5922
6001
  */
@@ -6037,7 +6116,9 @@ export type CustomerComponentUsagePolicy = {
6037
6116
  /**
6038
6117
  * Fields for saving actions extra data. Keys are name of actions.
6039
6118
  */
6040
- options?: unknown;
6119
+ options?: {
6120
+ [key: string]: unknown;
6121
+ };
6041
6122
  readonly affected_resources_count: number;
6042
6123
  component_limits_set: Array<NestedCustomerUsagePolicyComponent>;
6043
6124
  };
@@ -6047,7 +6128,9 @@ export type CustomerComponentUsagePolicyRequest = {
6047
6128
  /**
6048
6129
  * Fields for saving actions extra data. Keys are name of actions.
6049
6130
  */
6050
- options?: unknown;
6131
+ options?: {
6132
+ [key: string]: unknown;
6133
+ };
6051
6134
  component_limits_set: Array<NestedCustomerUsagePolicyComponentRequest>;
6052
6135
  };
6053
6136
  export type CustomerContactUpdate = {
@@ -6138,7 +6221,9 @@ export type CustomerEstimatedCostPolicy = {
6138
6221
  /**
6139
6222
  * Fields for saving actions extra data. Keys are name of actions.
6140
6223
  */
6141
- options?: unknown;
6224
+ options?: {
6225
+ [key: string]: unknown;
6226
+ };
6142
6227
  readonly affected_resources_count: number;
6143
6228
  limit_cost: number;
6144
6229
  period?: PolicyPeriodEnum;
@@ -6152,7 +6237,9 @@ export type CustomerEstimatedCostPolicyRequest = {
6152
6237
  /**
6153
6238
  * Fields for saving actions extra data. Keys are name of actions.
6154
6239
  */
6155
- options?: unknown;
6240
+ options?: {
6241
+ [key: string]: unknown;
6242
+ };
6156
6243
  limit_cost: number;
6157
6244
  period?: PolicyPeriodEnum;
6158
6245
  };
@@ -6293,12 +6380,18 @@ export type CustomerRequest = {
6293
6380
  * Number of extra days after project end date before resources are terminated
6294
6381
  */
6295
6382
  grace_period_days?: number | null;
6296
- user_email_patterns?: unknown;
6297
- user_affiliations?: unknown;
6383
+ user_email_patterns?: {
6384
+ [key: string]: unknown;
6385
+ };
6386
+ user_affiliations?: {
6387
+ [key: string]: unknown;
6388
+ };
6298
6389
  /**
6299
6390
  * List of allowed identity sources (identity providers).
6300
6391
  */
6301
- user_identity_sources?: unknown;
6392
+ user_identity_sources?: {
6393
+ [key: string]: unknown;
6394
+ };
6302
6395
  name: string;
6303
6396
  /**
6304
6397
  * URL-friendly identifier. Only editable by staff users.
@@ -7157,7 +7250,9 @@ export type DiskFormatEnum = 'qcow2' | 'raw' | 'vhd' | 'vmdk' | 'vdi' | 'iso' |
7157
7250
  export type DryRun = {
7158
7251
  readonly url: string;
7159
7252
  readonly uuid: string;
7160
- readonly order_attributes: unknown;
7253
+ readonly order_attributes: {
7254
+ [key: string]: unknown;
7255
+ };
7161
7256
  readonly order_type: string;
7162
7257
  order_offering?: string | null;
7163
7258
  state: DryRunStateEnum;
@@ -7168,7 +7263,9 @@ export type DryRun = {
7168
7263
  export type DryRunRequest = {
7169
7264
  plan?: string | null;
7170
7265
  type?: DryRunTypeEnum;
7171
- attributes?: unknown;
7266
+ attributes?: {
7267
+ [key: string]: unknown;
7268
+ };
7172
7269
  order_offering?: string | null;
7173
7270
  };
7174
7271
  export type DryRunStateEnum = 1 | 2 | 3 | 4;
@@ -7285,7 +7382,9 @@ export type Event = {
7285
7382
  readonly created: string;
7286
7383
  event_type: string;
7287
7384
  message: string;
7288
- readonly context: unknown;
7385
+ readonly context: {
7386
+ [key: string]: unknown;
7387
+ };
7289
7388
  };
7290
7389
  export type EventCount = {
7291
7390
  count: number;
@@ -7318,7 +7417,9 @@ export type EventSubscription = {
7318
7417
  /**
7319
7418
  * 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
7419
  */
7321
- observable_objects?: unknown;
7420
+ observable_objects?: {
7421
+ [key: string]: unknown;
7422
+ };
7322
7423
  readonly created: string;
7323
7424
  readonly modified: string;
7324
7425
  /**
@@ -7373,7 +7474,9 @@ export type EventSubscriptionRequest = {
7373
7474
  /**
7374
7475
  * 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
7476
  */
7376
- observable_objects?: unknown;
7477
+ observable_objects?: {
7478
+ [key: string]: unknown;
7479
+ };
7377
7480
  };
7378
7481
  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
7482
  export type ExecuteActionErrorResponse = {
@@ -7468,8 +7571,12 @@ export type ExportOfferingData = {
7468
7571
  longitude: number | null;
7469
7572
  access_url: string;
7470
7573
  paused_reason: string;
7471
- attributes?: unknown;
7472
- options?: unknown;
7574
+ attributes?: {
7575
+ [key: string]: unknown;
7576
+ };
7577
+ options?: {
7578
+ [key: string]: unknown;
7579
+ };
7473
7580
  };
7474
7581
  export type ExportOfferingDataRequest = {
7475
7582
  name: string;
@@ -7488,8 +7595,12 @@ export type ExportOfferingDataRequest = {
7488
7595
  longitude: number | null;
7489
7596
  access_url: string;
7490
7597
  paused_reason: string;
7491
- attributes?: unknown;
7492
- options?: unknown;
7598
+ attributes?: {
7599
+ [key: string]: unknown;
7600
+ };
7601
+ options?: {
7602
+ [key: string]: unknown;
7603
+ };
7493
7604
  };
7494
7605
  export type ExportOrganizationGroupData = {
7495
7606
  name: string;
@@ -7644,8 +7755,12 @@ export type ExternalSubnet = {
7644
7755
  gateway_ip?: string | string | null;
7645
7756
  ip_version?: number;
7646
7757
  enable_dhcp?: boolean;
7647
- allocation_pools?: unknown;
7648
- dns_nameservers?: unknown;
7758
+ allocation_pools?: {
7759
+ [key: string]: unknown;
7760
+ };
7761
+ dns_nameservers?: {
7762
+ [key: string]: unknown;
7763
+ };
7649
7764
  /**
7650
7765
  * Public CIDR mapped to this subnet (for carrier-grade NAT overlay)
7651
7766
  */
@@ -7770,8 +7885,12 @@ export type FilterCheckResult = {
7770
7885
  name: string;
7771
7886
  configured: boolean;
7772
7887
  matched: boolean;
7773
- user_value?: unknown;
7774
- rule_value?: unknown;
7888
+ user_value?: {
7889
+ [key: string]: unknown;
7890
+ } | null;
7891
+ rule_value?: {
7892
+ [key: string]: unknown;
7893
+ } | null;
7775
7894
  reason: string;
7776
7895
  };
7777
7896
  export type FinancialReport = {
@@ -7850,7 +7969,9 @@ export type FirecrestJob = {
7850
7969
  /**
7851
7970
  * Job output
7852
7971
  */
7853
- readonly report: unknown;
7972
+ readonly report: {
7973
+ [key: string]: unknown;
7974
+ } | null;
7854
7975
  };
7855
7976
  export type FirecrestJobRequest = {
7856
7977
  name: string;
@@ -8062,7 +8183,9 @@ export type GoogleCredentials = {
8062
8183
  /**
8063
8184
  * List of allowed domains for offering endpoints. Only staff can modify this field.
8064
8185
  */
8065
- allowed_domains?: unknown;
8186
+ allowed_domains?: {
8187
+ [key: string]: unknown;
8188
+ };
8066
8189
  readonly calendar_token: string;
8067
8190
  readonly calendar_refresh_token: string;
8068
8191
  readonly google_auth_url: string;
@@ -8140,12 +8263,9 @@ export type GroupInvitation = {
8140
8263
  * UUID of the project role to grant if auto_create_project is enabled
8141
8264
  */
8142
8265
  project_role?: string | null;
8143
- user_affiliations?: unknown;
8144
- user_email_patterns?: unknown;
8145
- /**
8146
- * List of allowed identity sources (identity providers).
8147
- */
8148
- user_identity_sources?: unknown;
8266
+ user_affiliations?: Array<string>;
8267
+ user_email_patterns?: Array<string>;
8268
+ user_identity_sources?: Array<string>;
8149
8269
  /**
8150
8270
  * Image URL of the invitation scope (Customer or Project)
8151
8271
  */
@@ -8192,12 +8312,9 @@ export type GroupInvitationRequest = {
8192
8312
  * UUID of the project role to grant if auto_create_project is enabled
8193
8313
  */
8194
8314
  project_role?: string | null;
8195
- user_affiliations?: unknown;
8196
- user_email_patterns?: unknown;
8197
- /**
8198
- * List of allowed identity sources (identity providers).
8199
- */
8200
- user_identity_sources?: unknown;
8315
+ user_affiliations?: Array<string>;
8316
+ user_email_patterns?: Array<string>;
8317
+ user_identity_sources?: Array<string>;
8201
8318
  /**
8202
8319
  * Custom description text displayed to users viewing this invitation.
8203
8320
  */
@@ -8240,12 +8357,9 @@ export type GroupInvitationUpdate = {
8240
8357
  * UUID of the project role to grant if auto_create_project is enabled
8241
8358
  */
8242
8359
  project_role?: string | null;
8243
- user_affiliations?: unknown;
8244
- user_email_patterns?: unknown;
8245
- /**
8246
- * List of allowed identity sources (identity providers).
8247
- */
8248
- user_identity_sources?: unknown;
8360
+ user_affiliations?: Array<string>;
8361
+ user_email_patterns?: Array<string>;
8362
+ user_identity_sources?: Array<string>;
8249
8363
  /**
8250
8364
  * Custom description text displayed to users viewing this invitation.
8251
8365
  */
@@ -8288,12 +8402,9 @@ export type GroupInvitationUpdateRequest = {
8288
8402
  * UUID of the project role to grant if auto_create_project is enabled
8289
8403
  */
8290
8404
  project_role?: string | null;
8291
- user_affiliations?: unknown;
8292
- user_email_patterns?: unknown;
8293
- /**
8294
- * List of allowed identity sources (identity providers).
8295
- */
8296
- user_identity_sources?: unknown;
8405
+ user_affiliations?: Array<string>;
8406
+ user_email_patterns?: Array<string>;
8407
+ user_identity_sources?: Array<string>;
8297
8408
  /**
8298
8409
  * Custom description text displayed to users viewing this invitation.
8299
8410
  */
@@ -8414,6 +8525,14 @@ export type IsdUserCount = {
8414
8525
  stale_user_count: number;
8415
8526
  oldest_sync: string | null;
8416
8527
  };
8528
+ export type IdNamePair = {
8529
+ name: string;
8530
+ uuid: string;
8531
+ };
8532
+ export type IdNamePairRequest = {
8533
+ name: string;
8534
+ uuid: string;
8535
+ };
8417
8536
  export type IdentityBridgeAllowedFields = {
8418
8537
  allowed_fields: Array<string>;
8419
8538
  };
@@ -8492,6 +8611,8 @@ export type IdentityManager = {
8492
8611
  managed_isds: Array<string>;
8493
8612
  };
8494
8613
  export type IdentityProvider = {
8614
+ protected_fields?: Array<string>;
8615
+ allowed_redirects?: Array<string>;
8495
8616
  provider: string;
8496
8617
  is_active?: boolean;
8497
8618
  /**
@@ -8533,7 +8654,6 @@ export type IdentityProvider = {
8533
8654
  * The endpoint for user details management.
8534
8655
  */
8535
8656
  management_url?: string;
8536
- protected_fields?: unknown;
8537
8657
  /**
8538
8658
  * Space-separated list of scopes to request during authentication.
8539
8659
  */
@@ -8549,17 +8669,17 @@ export type IdentityProvider = {
8549
8669
  /**
8550
8670
  * A JSON object mapping Waldur User model fields to OIDC claims. Example: {"first_name": "given_name", "last_name": "family_name", "email": "email"}
8551
8671
  */
8552
- attribute_mapping?: unknown;
8672
+ attribute_mapping?: {
8673
+ [key: string]: unknown;
8674
+ };
8553
8675
  /**
8554
8676
  * Space-separated list of extra fields to persist.
8555
8677
  */
8556
8678
  extra_fields?: string | null;
8557
- /**
8558
- * 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
- */
8560
- allowed_redirects?: unknown;
8561
8679
  };
8562
8680
  export type IdentityProviderRequest = {
8681
+ protected_fields?: Array<string>;
8682
+ allowed_redirects?: Array<string>;
8563
8683
  provider: string;
8564
8684
  is_active?: boolean;
8565
8685
  /**
@@ -8585,7 +8705,6 @@ export type IdentityProviderRequest = {
8585
8705
  * The endpoint for user details management.
8586
8706
  */
8587
8707
  management_url?: string;
8588
- protected_fields?: unknown;
8589
8708
  /**
8590
8709
  * Space-separated list of scopes to request during authentication.
8591
8710
  */
@@ -8601,15 +8720,13 @@ export type IdentityProviderRequest = {
8601
8720
  /**
8602
8721
  * A JSON object mapping Waldur User model fields to OIDC claims. Example: {"first_name": "given_name", "last_name": "family_name", "email": "email"}
8603
8722
  */
8604
- attribute_mapping?: unknown;
8723
+ attribute_mapping?: {
8724
+ [key: string]: unknown;
8725
+ };
8605
8726
  /**
8606
8727
  * Space-separated list of extra fields to persist.
8607
8728
  */
8608
8729
  extra_fields?: string | null;
8609
- /**
8610
- * 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
- */
8612
- allowed_redirects?: unknown;
8613
8730
  };
8614
8731
  export type ImageCreateRequest = {
8615
8732
  name: string;
@@ -8678,7 +8795,9 @@ export type ImportResourceRequest = {
8678
8795
  */
8679
8796
  project: string;
8680
8797
  plan?: string;
8681
- additional_details?: unknown;
8798
+ additional_details?: {
8799
+ [key: string]: unknown;
8800
+ } | null;
8682
8801
  };
8683
8802
  export type ImportUsageError = {
8684
8803
  customer_name: string;
@@ -9088,7 +9207,9 @@ export type InvoiceItemDetail = {
9088
9207
  /**
9089
9208
  * Stores data about scope
9090
9209
  */
9091
- details?: unknown;
9210
+ details?: {
9211
+ [key: string]: unknown;
9212
+ };
9092
9213
  readonly offering_uuid: string;
9093
9214
  readonly offering_name: string | null;
9094
9215
  readonly offering_component_type: string | null;
@@ -9250,7 +9371,9 @@ export type Issue = {
9250
9371
  /**
9251
9372
  * Internal processing log for debugging order lifecycle events. Visible only to staff.
9252
9373
  */
9253
- readonly processing_log?: unknown;
9374
+ readonly processing_log?: {
9375
+ [key: string]: unknown;
9376
+ };
9254
9377
  /**
9255
9378
  * Return order UUID if the issue's resource is an Order.
9256
9379
  */
@@ -9889,7 +10012,9 @@ export type ManagedProject = {
9889
10012
  /**
9890
10013
  * Details of the project as provided by the remote OpenPortal.
9891
10014
  */
9892
- readonly details: unknown;
10015
+ readonly details: {
10016
+ [key: string]: unknown;
10017
+ };
9893
10018
  project: string;
9894
10019
  project_data: BasicProject;
9895
10020
  project_template: string;
@@ -10050,7 +10175,9 @@ export type MarketplaceServiceProviderUser = {
10050
10175
  /**
10051
10176
  * Person's affiliation within organization such as student, faculty, staff.
10052
10177
  */
10053
- affiliations?: unknown;
10178
+ affiliations?: {
10179
+ [key: string]: unknown;
10180
+ };
10054
10181
  /**
10055
10182
  * Active
10056
10183
  *
@@ -10076,7 +10203,9 @@ export type MarketplaceServiceProviderUser = {
10076
10203
  /**
10077
10204
  * List of all citizenships (ISO 3166-1 alpha-2 codes)
10078
10205
  */
10079
- nationalities?: unknown;
10206
+ nationalities?: {
10207
+ [key: string]: unknown;
10208
+ };
10080
10209
  organization_country?: string;
10081
10210
  /**
10082
10211
  * SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
@@ -10089,7 +10218,9 @@ export type MarketplaceServiceProviderUser = {
10089
10218
  /**
10090
10219
  * REFEDS assurance profile URIs from identity provider
10091
10220
  */
10092
- eduperson_assurance?: unknown;
10221
+ eduperson_assurance?: {
10222
+ [key: string]: unknown;
10223
+ };
10093
10224
  civil_number?: string | null;
10094
10225
  birth_date?: string | null;
10095
10226
  /**
@@ -10101,7 +10232,9 @@ export type MarketplaceServiceProviderUser = {
10101
10232
  /**
10102
10233
  * List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
10103
10234
  */
10104
- active_isds?: unknown;
10235
+ active_isds?: {
10236
+ [key: string]: unknown;
10237
+ };
10105
10238
  };
10106
10239
  export type MatchingAlgorithm = 'minmax' | 'fairflow' | 'hungarian';
10107
10240
  export type MatchingConfiguration = {
@@ -10963,7 +11096,9 @@ export type MergedSecretOptions = {
10963
11096
  /**
10964
11097
  * Script environment variables
10965
11098
  */
10966
- environ?: unknown;
11099
+ environ?: {
11100
+ [key: string]: unknown;
11101
+ };
10967
11102
  /**
10968
11103
  * Script for resource creation
10969
11104
  */
@@ -11125,7 +11260,9 @@ export type MergedSecretOptionsRequest = {
11125
11260
  /**
11126
11261
  * Script environment variables
11127
11262
  */
11128
- environ?: unknown;
11263
+ environ?: {
11264
+ [key: string]: unknown;
11265
+ };
11129
11266
  /**
11130
11267
  * Script for resource creation
11131
11268
  */
@@ -11269,8 +11406,12 @@ export type Message = {
11269
11406
  readonly output_tokens: number | null;
11270
11407
  readonly is_flagged?: boolean;
11271
11408
  severity?: InjectionSeverityEnum;
11272
- readonly injection_categories?: unknown;
11273
- readonly pii_categories?: unknown;
11409
+ readonly injection_categories?: {
11410
+ [key: string]: unknown;
11411
+ };
11412
+ readonly pii_categories?: {
11413
+ [key: string]: unknown;
11414
+ };
11274
11415
  action_taken?: ActionTakenEnum;
11275
11416
  /**
11276
11417
  * User feedback: True=thumbs up, False=thumbs down, None=no feedback.
@@ -11469,14 +11610,18 @@ export type NestedAgentService = {
11469
11610
  name: string;
11470
11611
  mode?: string | null;
11471
11612
  state: AgentServiceState;
11472
- statistics?: unknown;
11613
+ statistics?: {
11614
+ [key: string]: unknown;
11615
+ };
11473
11616
  readonly created: string;
11474
11617
  readonly modified: string;
11475
11618
  };
11476
11619
  export type NestedAgentServiceRequest = {
11477
11620
  name: string;
11478
11621
  mode?: string | null;
11479
- statistics?: unknown;
11622
+ statistics?: {
11623
+ [key: string]: unknown;
11624
+ };
11480
11625
  };
11481
11626
  export type NestedAttribute = {
11482
11627
  readonly uuid: string;
@@ -11488,7 +11633,9 @@ export type NestedAttribute = {
11488
11633
  * A value must be provided for the attribute.
11489
11634
  */
11490
11635
  required?: boolean;
11491
- default?: unknown;
11636
+ default?: {
11637
+ [key: string]: unknown;
11638
+ } | null;
11492
11639
  };
11493
11640
  export type NestedAttributeOption = {
11494
11641
  readonly uuid: string;
@@ -11512,7 +11659,9 @@ export type NestedAttributeRequest = {
11512
11659
  * A value must be provided for the attribute.
11513
11660
  */
11514
11661
  required?: boolean;
11515
- default?: unknown;
11662
+ default?: {
11663
+ [key: string]: unknown;
11664
+ } | null;
11516
11665
  };
11517
11666
  export type NestedCampaign = {
11518
11667
  readonly uuid: string;
@@ -11931,7 +12080,9 @@ export type NestedRequestedOffering = {
11931
12080
  readonly category_uuid: string;
11932
12081
  readonly category_name: string;
11933
12082
  readonly call_managing_organisation: string;
11934
- attributes?: unknown;
12083
+ attributes?: {
12084
+ [key: string]: unknown;
12085
+ };
11935
12086
  plan?: string | null;
11936
12087
  plan_details: BasePublicPlan;
11937
12088
  options: OfferingOptions;
@@ -11940,7 +12091,9 @@ export type NestedRequestedOffering = {
11940
12091
  };
11941
12092
  export type NestedRequestedOfferingRequest = {
11942
12093
  offering: string;
11943
- attributes?: unknown;
12094
+ attributes?: {
12095
+ [key: string]: unknown;
12096
+ };
11944
12097
  plan?: string | null;
11945
12098
  };
11946
12099
  export type NestedResourceProjectPermission = {
@@ -12071,11 +12224,15 @@ export type NestedSoftwareCatalog = {
12071
12224
  /**
12072
12225
  * List of enabled CPU families: ['x86_64', 'aarch64']
12073
12226
  */
12074
- enabled_cpu_family?: unknown;
12227
+ enabled_cpu_family?: {
12228
+ [key: string]: unknown;
12229
+ };
12075
12230
  /**
12076
12231
  * List of enabled CPU microarchitectures: ['generic', 'zen3']
12077
12232
  */
12078
- enabled_cpu_microarchitectures?: unknown;
12233
+ enabled_cpu_microarchitectures?: {
12234
+ [key: string]: unknown;
12235
+ };
12079
12236
  readonly package_count: number;
12080
12237
  partition: PartitionSummary | null;
12081
12238
  };
@@ -12083,11 +12240,15 @@ export type NestedSoftwareCatalogRequest = {
12083
12240
  /**
12084
12241
  * List of enabled CPU families: ['x86_64', 'aarch64']
12085
12242
  */
12086
- enabled_cpu_family?: unknown;
12243
+ enabled_cpu_family?: {
12244
+ [key: string]: unknown;
12245
+ };
12087
12246
  /**
12088
12247
  * List of enabled CPU microarchitectures: ['generic', 'zen3']
12089
12248
  */
12090
- enabled_cpu_microarchitectures?: unknown;
12249
+ enabled_cpu_microarchitectures?: {
12250
+ [key: string]: unknown;
12251
+ };
12091
12252
  };
12092
12253
  export type NestedSoftwareTarget = {
12093
12254
  readonly uuid: string;
@@ -12110,11 +12271,15 @@ export type NestedSoftwareTarget = {
12110
12271
  /**
12111
12272
  * Target-specific metadata (build options, system requirements, etc.)
12112
12273
  */
12113
- metadata?: unknown;
12274
+ metadata?: {
12275
+ [key: string]: unknown;
12276
+ };
12114
12277
  /**
12115
12278
  * List of GPU architectures this target supports (e.g., ['nvidia/cc70', 'nvidia/cc90'])
12116
12279
  */
12117
- gpu_architectures?: unknown;
12280
+ gpu_architectures?: {
12281
+ [key: string]: unknown;
12282
+ };
12118
12283
  };
12119
12284
  export type NestedSoftwareTargetRequest = {
12120
12285
  /**
@@ -12136,11 +12301,15 @@ export type NestedSoftwareTargetRequest = {
12136
12301
  /**
12137
12302
  * Target-specific metadata (build options, system requirements, etc.)
12138
12303
  */
12139
- metadata?: unknown;
12304
+ metadata?: {
12305
+ [key: string]: unknown;
12306
+ };
12140
12307
  /**
12141
12308
  * List of GPU architectures this target supports (e.g., ['nvidia/cc70', 'nvidia/cc90'])
12142
12309
  */
12143
- gpu_architectures?: unknown;
12310
+ gpu_architectures?: {
12311
+ [key: string]: unknown;
12312
+ };
12144
12313
  };
12145
12314
  export type NestedSoftwareVersion = {
12146
12315
  readonly uuid: string;
@@ -12355,7 +12524,9 @@ export type Offering = {
12355
12524
  readonly parent_description: string | null;
12356
12525
  readonly parent_uuid: string | null;
12357
12526
  readonly parent_name: string | null;
12358
- backend_metadata?: unknown;
12527
+ backend_metadata?: {
12528
+ [key: string]: unknown;
12529
+ };
12359
12530
  readonly has_compliance_requirements: boolean;
12360
12531
  /**
12361
12532
  * Classify offering components by billing type.
@@ -12377,10 +12548,14 @@ export type OfferingBackendIdRulesUpdateRequest = {
12377
12548
  /**
12378
12549
  * Validation rules for resource backend_id: format regex and uniqueness scope.
12379
12550
  */
12380
- backend_id_rules?: unknown;
12551
+ backend_id_rules?: {
12552
+ [key: string]: unknown;
12553
+ };
12381
12554
  };
12382
12555
  export type OfferingBackendMetadataRequest = {
12383
- backend_metadata?: unknown;
12556
+ backend_metadata?: {
12557
+ [key: string]: unknown;
12558
+ };
12384
12559
  };
12385
12560
  export type OfferingComplianceChecklistUpdateRequest = {
12386
12561
  compliance_checklist?: string | null;
@@ -12564,7 +12739,9 @@ export type OfferingCreateRequest = {
12564
12739
  access_url?: string;
12565
12740
  customer?: string | null;
12566
12741
  category: string;
12567
- attributes?: unknown;
12742
+ attributes?: {
12743
+ [key: string]: unknown;
12744
+ };
12568
12745
  options?: OfferingOptionsRequest;
12569
12746
  resource_options?: OfferingOptionsRequest;
12570
12747
  components?: Array<OfferingComponentRequest>;
@@ -12594,9 +12771,13 @@ export type OfferingCreateRequest = {
12594
12771
  /**
12595
12772
  * Validation rules for resource backend_id: format regex and uniqueness scope.
12596
12773
  */
12597
- backend_id_rules?: unknown;
12774
+ backend_id_rules?: {
12775
+ [key: string]: unknown;
12776
+ };
12598
12777
  image?: Blob | File | null;
12599
- backend_metadata?: unknown;
12778
+ backend_metadata?: {
12779
+ [key: string]: unknown;
12780
+ };
12600
12781
  compliance_checklist?: string | null;
12601
12782
  offering_group?: string | null;
12602
12783
  limits?: {
@@ -12621,7 +12802,9 @@ export type OfferingEstimatedCostPolicy = {
12621
12802
  /**
12622
12803
  * Fields for saving actions extra data. Keys are name of actions.
12623
12804
  */
12624
- options?: unknown;
12805
+ options?: {
12806
+ [key: string]: unknown;
12807
+ };
12625
12808
  readonly affected_resources_count: number;
12626
12809
  limit_cost: number;
12627
12810
  period?: PolicyPeriodEnum;
@@ -12638,7 +12821,9 @@ export type OfferingEstimatedCostPolicyRequest = {
12638
12821
  /**
12639
12822
  * Fields for saving actions extra data. Keys are name of actions.
12640
12823
  */
12641
- options?: unknown;
12824
+ options?: {
12825
+ [key: string]: unknown;
12826
+ };
12642
12827
  limit_cost: number;
12643
12828
  period?: PolicyPeriodEnum;
12644
12829
  organization_groups?: Array<string>;
@@ -12656,9 +12841,15 @@ export type OfferingExportData = {
12656
12841
  endpoints?: Array<ExportEndpointData>;
12657
12842
  organization_groups?: Array<ExportOrganizationGroupData>;
12658
12843
  terms_of_service?: Array<ExportTermsOfServiceData>;
12659
- plugin_options?: unknown;
12660
- secret_options?: unknown;
12661
- resource_options?: unknown;
12844
+ plugin_options?: {
12845
+ [key: string]: unknown;
12846
+ };
12847
+ secret_options?: {
12848
+ [key: string]: unknown;
12849
+ };
12850
+ resource_options?: {
12851
+ [key: string]: unknown;
12852
+ };
12662
12853
  };
12663
12854
  export type OfferingExportDataRequest = {
12664
12855
  offering: ExportOfferingDataRequest;
@@ -12669,9 +12860,15 @@ export type OfferingExportDataRequest = {
12669
12860
  endpoints?: Array<ExportEndpointDataRequest>;
12670
12861
  organization_groups?: Array<ExportOrganizationGroupDataRequest>;
12671
12862
  terms_of_service?: Array<ExportTermsOfServiceDataRequest>;
12672
- plugin_options?: unknown;
12673
- secret_options?: unknown;
12674
- resource_options?: unknown;
12863
+ plugin_options?: {
12864
+ [key: string]: unknown;
12865
+ };
12866
+ secret_options?: {
12867
+ [key: string]: unknown;
12868
+ };
12869
+ resource_options?: {
12870
+ [key: string]: unknown;
12871
+ };
12675
12872
  };
12676
12873
  export type OfferingExportParametersRequest = {
12677
12874
  /**
@@ -12872,7 +13069,9 @@ export type OfferingImportResponse = {
12872
13069
  export type OfferingIntegrationUpdateRequest = {
12873
13070
  secret_options?: MergedSecretOptionsRequest;
12874
13071
  plugin_options?: MergedPluginOptionsRequest;
12875
- service_attributes?: unknown;
13072
+ service_attributes?: {
13073
+ [key: string]: unknown;
13074
+ };
12876
13075
  backend_id?: string;
12877
13076
  };
12878
13077
  export type OfferingLocationUpdateRequest = {
@@ -13225,11 +13424,15 @@ export type OfferingSoftwareCatalog = {
13225
13424
  /**
13226
13425
  * List of enabled CPU families: ['x86_64', 'aarch64']
13227
13426
  */
13228
- enabled_cpu_family?: unknown;
13427
+ enabled_cpu_family?: {
13428
+ [key: string]: unknown;
13429
+ };
13229
13430
  /**
13230
13431
  * List of enabled CPU microarchitectures: ['generic', 'zen3']
13231
13432
  */
13232
- enabled_cpu_microarchitectures?: unknown;
13433
+ enabled_cpu_microarchitectures?: {
13434
+ [key: string]: unknown;
13435
+ };
13233
13436
  partition?: string | null;
13234
13437
  readonly partition_name: string;
13235
13438
  };
@@ -13239,11 +13442,15 @@ export type OfferingSoftwareCatalogRequest = {
13239
13442
  /**
13240
13443
  * List of enabled CPU families: ['x86_64', 'aarch64']
13241
13444
  */
13242
- enabled_cpu_family?: unknown;
13445
+ enabled_cpu_family?: {
13446
+ [key: string]: unknown;
13447
+ };
13243
13448
  /**
13244
13449
  * List of enabled CPU microarchitectures: ['generic', 'zen3']
13245
13450
  */
13246
- enabled_cpu_microarchitectures?: unknown;
13451
+ enabled_cpu_microarchitectures?: {
13452
+ [key: string]: unknown;
13453
+ };
13247
13454
  partition?: string | null;
13248
13455
  };
13249
13456
  export type OfferingState = 'Draft' | 'Active' | 'Paused' | 'Archived' | 'Unavailable';
@@ -13394,7 +13601,9 @@ export type OfferingUsagePolicy = {
13394
13601
  /**
13395
13602
  * Fields for saving actions extra data. Keys are name of actions.
13396
13603
  */
13397
- options?: unknown;
13604
+ options?: {
13605
+ [key: string]: unknown;
13606
+ };
13398
13607
  readonly affected_resources_count: number;
13399
13608
  organization_groups?: Array<string>;
13400
13609
  /**
@@ -13411,7 +13620,9 @@ export type OfferingUsagePolicyRequest = {
13411
13620
  /**
13412
13621
  * Fields for saving actions extra data. Keys are name of actions.
13413
13622
  */
13414
- options?: unknown;
13623
+ options?: {
13624
+ [key: string]: unknown;
13625
+ };
13415
13626
  organization_groups?: Array<string>;
13416
13627
  /**
13417
13628
  * If True, policy applies to all customers. Mutually exclusive with organization_groups.
@@ -13461,7 +13672,9 @@ export type OfferingUser = {
13461
13672
  /**
13462
13673
  * Person's affiliation within organization such as student, faculty, staff.
13463
13674
  */
13464
- readonly user_affiliations: unknown;
13675
+ readonly user_affiliations: {
13676
+ [key: string]: unknown;
13677
+ };
13465
13678
  /**
13466
13679
  * User's gender (male, female, or unknown)
13467
13680
  */
@@ -13480,7 +13693,9 @@ export type OfferingUser = {
13480
13693
  /**
13481
13694
  * List of all citizenships (ISO 3166-1 alpha-2 codes)
13482
13695
  */
13483
- readonly user_nationalities: unknown;
13696
+ readonly user_nationalities: {
13697
+ [key: string]: unknown;
13698
+ };
13484
13699
  readonly user_organization_country: string;
13485
13700
  /**
13486
13701
  * SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
@@ -13493,7 +13708,9 @@ export type OfferingUser = {
13493
13708
  /**
13494
13709
  * REFEDS assurance profile URIs from identity provider
13495
13710
  */
13496
- readonly user_eduperson_assurance: unknown;
13711
+ readonly user_eduperson_assurance: {
13712
+ [key: string]: unknown;
13713
+ };
13497
13714
  readonly user_civil_number: string | null;
13498
13715
  readonly user_birth_date: string | null;
13499
13716
  /**
@@ -13505,7 +13722,9 @@ export type OfferingUser = {
13505
13722
  /**
13506
13723
  * List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
13507
13724
  */
13508
- readonly user_active_isds: unknown;
13725
+ readonly user_active_isds: {
13726
+ [key: string]: unknown;
13727
+ };
13509
13728
  readonly created: string;
13510
13729
  readonly modified: string;
13511
13730
  readonly customer_uuid: string;
@@ -13845,15 +14064,21 @@ export type OnboardingVerification = {
13845
14064
  /**
13846
14065
  * Roles the user has in the company
13847
14066
  */
13848
- readonly verified_user_roles: unknown;
14067
+ readonly verified_user_roles: {
14068
+ [key: string]: unknown;
14069
+ };
13849
14070
  /**
13850
14071
  * Company information retrieved during validation
13851
14072
  */
13852
- readonly verified_company_data: unknown;
14073
+ readonly verified_company_data: {
14074
+ [key: string]: unknown;
14075
+ };
13853
14076
  /**
13854
14077
  * Raw API response for debugging and auditing
13855
14078
  */
13856
- readonly raw_response: unknown;
14079
+ readonly raw_response: {
14080
+ [key: string]: unknown;
14081
+ };
13857
14082
  readonly error_traceback: string;
13858
14083
  readonly error_message: string;
13859
14084
  /**
@@ -13998,7 +14223,9 @@ export type OpenStackBackup = {
13998
14223
  * Guaranteed time of backup retention. If null - keep forever.
13999
14224
  */
14000
14225
  kept_until?: string | null;
14001
- readonly metadata: unknown;
14226
+ readonly metadata: {
14227
+ [key: string]: unknown;
14228
+ };
14002
14229
  /**
14003
14230
  * Instance that this backup is created from
14004
14231
  */
@@ -14435,7 +14662,9 @@ export type OpenStackInstance = {
14435
14662
  /**
14436
14663
  * Details about ongoing or completed actions
14437
14664
  */
14438
- readonly action_details: unknown;
14665
+ readonly action_details: {
14666
+ [key: string]: unknown;
14667
+ };
14439
14668
  /**
14440
14669
  * UUID of the OpenStack tenant
14441
14670
  */
@@ -15315,7 +15544,9 @@ export type OpenStackRouter = {
15315
15544
  * Whether SNAT is enabled on the external gateway. None means OpenStack default (True).
15316
15545
  */
15317
15546
  enable_snat?: boolean | null;
15318
- readonly external_fixed_ips: unknown;
15547
+ readonly external_fixed_ips: {
15548
+ [key: string]: unknown;
15549
+ };
15319
15550
  readonly marketplace_offering_uuid: string | null;
15320
15551
  readonly marketplace_offering_name: string | null;
15321
15552
  readonly marketplace_offering_type: string | null;
@@ -15623,12 +15854,16 @@ export type OpenStackSnapshot = {
15623
15854
  * Size in MiB
15624
15855
  */
15625
15856
  readonly size: number;
15626
- metadata?: unknown;
15857
+ metadata?: {
15858
+ [key: string]: unknown;
15859
+ };
15627
15860
  readonly runtime_state: string;
15628
15861
  readonly source_volume_name: string;
15629
15862
  readonly source_volume_marketplace_uuid: string;
15630
15863
  readonly action: string;
15631
- readonly action_details: unknown;
15864
+ readonly action_details: {
15865
+ [key: string]: unknown;
15866
+ };
15632
15867
  readonly restorations: Array<OpenStackSnapshotRestoration>;
15633
15868
  readonly backups: Array<OpenStackSnapshotBackup>;
15634
15869
  /**
@@ -15656,7 +15891,9 @@ export type OpenStackSnapshotBackup = {
15656
15891
  export type OpenStackSnapshotRequest = {
15657
15892
  name: string;
15658
15893
  description?: string;
15659
- metadata?: unknown;
15894
+ metadata?: {
15895
+ [key: string]: unknown;
15896
+ };
15660
15897
  /**
15661
15898
  * Guaranteed time of snapshot retention. If null - keep forever.
15662
15899
  */
@@ -15971,7 +16208,9 @@ export type OpenStackVolume = {
15971
16208
  * Indicates if this volume can be used to boot an instance
15972
16209
  */
15973
16210
  bootable?: boolean;
15974
- readonly metadata: unknown;
16211
+ readonly metadata: {
16212
+ [key: string]: unknown;
16213
+ };
15975
16214
  /**
15976
16215
  * Image that this volume was created from, if any
15977
16216
  */
@@ -16000,7 +16239,9 @@ export type OpenStackVolume = {
16000
16239
  */
16001
16240
  readonly device: string;
16002
16241
  readonly action: string;
16003
- readonly action_details: unknown;
16242
+ readonly action_details: {
16243
+ [key: string]: unknown;
16244
+ };
16004
16245
  /**
16005
16246
  * Instance that this volume is attached to, if any
16006
16247
  */
@@ -16112,7 +16353,9 @@ export type OrcidSyncResponse = {
16112
16353
  last_sync: string;
16113
16354
  };
16114
16355
  export type OrderApproveByProviderRequest = {
16115
- attributes?: unknown;
16356
+ attributes?: {
16357
+ [key: string]: unknown;
16358
+ };
16116
16359
  };
16117
16360
  export type OrderAttachment = {
16118
16361
  attachment?: string | null;
@@ -16170,7 +16413,9 @@ export type OrderDetails = {
16170
16413
  /**
16171
16414
  * Public data used by specific plugin, such as storage mode for OpenStack.
16172
16415
  */
16173
- readonly offering_plugin_options: unknown;
16416
+ readonly offering_plugin_options: {
16417
+ [key: string]: unknown;
16418
+ };
16174
16419
  readonly provider_name: string;
16175
16420
  readonly provider_uuid: string;
16176
16421
  readonly provider_slug: string;
@@ -16183,7 +16428,9 @@ export type OrderDetails = {
16183
16428
  readonly plan_name: string | null;
16184
16429
  readonly plan_uuid: string | null;
16185
16430
  readonly plan_description: string | null;
16186
- attributes?: unknown;
16431
+ attributes?: {
16432
+ [key: string]: unknown;
16433
+ };
16187
16434
  limits?: {
16188
16435
  [key: string]: number;
16189
16436
  };
@@ -16368,7 +16615,9 @@ export type OrderUpdate = {
16368
16615
  limits?: {
16369
16616
  [key: string]: number;
16370
16617
  };
16371
- attributes?: unknown;
16618
+ attributes?: {
16619
+ [key: string]: unknown;
16620
+ };
16372
16621
  /**
16373
16622
  * Enables delayed processing of resource provisioning order.
16374
16623
  */
@@ -16378,7 +16627,9 @@ export type OrderUpdateRequest = {
16378
16627
  limits?: {
16379
16628
  [key: string]: number;
16380
16629
  };
16381
- attributes?: unknown;
16630
+ attributes?: {
16631
+ [key: string]: unknown;
16632
+ };
16382
16633
  /**
16383
16634
  * Enables delayed processing of resource provisioning order.
16384
16635
  */
@@ -16592,7 +16843,9 @@ export type PatchedAttributeRequest = {
16592
16843
  * A value must be provided for the attribute.
16593
16844
  */
16594
16845
  required?: boolean;
16595
- default?: unknown;
16846
+ default?: {
16847
+ [key: string]: unknown;
16848
+ } | null;
16596
16849
  };
16597
16850
  export type PatchedAwsInstanceRequest = {
16598
16851
  name?: string;
@@ -16621,7 +16874,6 @@ export type PatchedAzureVirtualMachineRequest = {
16621
16874
  export type PatchedBroadcastMessageRequest = {
16622
16875
  subject?: string;
16623
16876
  body?: string;
16624
- query?: unknown;
16625
16877
  send_at?: string | null;
16626
16878
  };
16627
16879
  export type PatchedCallAssignmentConfigurationRequest = {
@@ -16699,8 +16951,12 @@ export type PatchedCallManagingOrganisationRequest = {
16699
16951
  export type PatchedCallResourceTemplateRequest = {
16700
16952
  name?: string;
16701
16953
  description?: string;
16702
- attributes?: unknown;
16703
- limits?: unknown;
16954
+ attributes?: {
16955
+ [key: string]: unknown;
16956
+ };
16957
+ limits?: {
16958
+ [key: string]: unknown;
16959
+ };
16704
16960
  /**
16705
16961
  * If True, every proposal must include this resource type
16706
16962
  */
@@ -16851,7 +17107,9 @@ export type PatchedCustomerComponentUsagePolicyRequest = {
16851
17107
  /**
16852
17108
  * Fields for saving actions extra data. Keys are name of actions.
16853
17109
  */
16854
- options?: unknown;
17110
+ options?: {
17111
+ [key: string]: unknown;
17112
+ };
16855
17113
  component_limits_set?: Array<NestedCustomerUsagePolicyComponentRequest>;
16856
17114
  };
16857
17115
  export type PatchedCustomerEstimatedCostPolicyRequest = {
@@ -16860,7 +17118,9 @@ export type PatchedCustomerEstimatedCostPolicyRequest = {
16860
17118
  /**
16861
17119
  * Fields for saving actions extra data. Keys are name of actions.
16862
17120
  */
16863
- options?: unknown;
17121
+ options?: {
17122
+ [key: string]: unknown;
17123
+ };
16864
17124
  limit_cost?: number;
16865
17125
  period?: PolicyPeriodEnum;
16866
17126
  };
@@ -16894,12 +17154,18 @@ export type PatchedCustomerRequest = {
16894
17154
  * Number of extra days after project end date before resources are terminated
16895
17155
  */
16896
17156
  grace_period_days?: number | null;
16897
- user_email_patterns?: unknown;
16898
- user_affiliations?: unknown;
17157
+ user_email_patterns?: {
17158
+ [key: string]: unknown;
17159
+ };
17160
+ user_affiliations?: {
17161
+ [key: string]: unknown;
17162
+ };
16899
17163
  /**
16900
17164
  * List of allowed identity sources (identity providers).
16901
17165
  */
16902
- user_identity_sources?: unknown;
17166
+ user_identity_sources?: {
17167
+ [key: string]: unknown;
17168
+ };
16903
17169
  name?: string;
16904
17170
  /**
16905
17171
  * URL-friendly identifier. Only editable by staff users.
@@ -17010,12 +17276,9 @@ export type PatchedGroupInvitationUpdateRequest = {
17010
17276
  * UUID of the project role to grant if auto_create_project is enabled
17011
17277
  */
17012
17278
  project_role?: string | null;
17013
- user_affiliations?: unknown;
17014
- user_email_patterns?: unknown;
17015
- /**
17016
- * List of allowed identity sources (identity providers).
17017
- */
17018
- user_identity_sources?: unknown;
17279
+ user_affiliations?: Array<string>;
17280
+ user_email_patterns?: Array<string>;
17281
+ user_identity_sources?: Array<string>;
17019
17282
  /**
17020
17283
  * Custom description text displayed to users viewing this invitation.
17021
17284
  */
@@ -17030,6 +17293,8 @@ export type PatchedGroupInvitationUpdateRequest = {
17030
17293
  allow_custom_project_details?: boolean;
17031
17294
  };
17032
17295
  export type PatchedIdentityProviderRequest = {
17296
+ protected_fields?: Array<string>;
17297
+ allowed_redirects?: Array<string>;
17033
17298
  provider?: string;
17034
17299
  is_active?: boolean;
17035
17300
  /**
@@ -17055,7 +17320,6 @@ export type PatchedIdentityProviderRequest = {
17055
17320
  * The endpoint for user details management.
17056
17321
  */
17057
17322
  management_url?: string;
17058
- protected_fields?: unknown;
17059
17323
  /**
17060
17324
  * Space-separated list of scopes to request during authentication.
17061
17325
  */
@@ -17071,15 +17335,13 @@ export type PatchedIdentityProviderRequest = {
17071
17335
  /**
17072
17336
  * A JSON object mapping Waldur User model fields to OIDC claims. Example: {"first_name": "given_name", "last_name": "family_name", "email": "email"}
17073
17337
  */
17074
- attribute_mapping?: unknown;
17338
+ attribute_mapping?: {
17339
+ [key: string]: unknown;
17340
+ };
17075
17341
  /**
17076
17342
  * Space-separated list of extra fields to persist.
17077
17343
  */
17078
17344
  extra_fields?: string | null;
17079
- /**
17080
- * 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
- */
17082
- allowed_redirects?: unknown;
17083
17345
  };
17084
17346
  export type PatchedInvitationUpdateRequest = {
17085
17347
  /**
@@ -17268,7 +17530,9 @@ export type PatchedOfferingEstimatedCostPolicyRequest = {
17268
17530
  /**
17269
17531
  * Fields for saving actions extra data. Keys are name of actions.
17270
17532
  */
17271
- options?: unknown;
17533
+ options?: {
17534
+ [key: string]: unknown;
17535
+ };
17272
17536
  limit_cost?: number;
17273
17537
  period?: PolicyPeriodEnum;
17274
17538
  organization_groups?: Array<string>;
@@ -17395,11 +17659,15 @@ export type PatchedOfferingSoftwareCatalogUpdateRequest = {
17395
17659
  /**
17396
17660
  * List of enabled CPU families: ['x86_64', 'aarch64']
17397
17661
  */
17398
- enabled_cpu_family?: unknown;
17662
+ enabled_cpu_family?: {
17663
+ [key: string]: unknown;
17664
+ };
17399
17665
  /**
17400
17666
  * List of enabled CPU microarchitectures: ['generic', 'zen3']
17401
17667
  */
17402
- enabled_cpu_microarchitectures?: unknown;
17668
+ enabled_cpu_microarchitectures?: {
17669
+ [key: string]: unknown;
17670
+ };
17403
17671
  partition?: string | null;
17404
17672
  };
17405
17673
  export type PatchedOfferingTermsOfServiceRequest = {
@@ -17417,7 +17685,9 @@ export type PatchedOfferingUsagePolicyRequest = {
17417
17685
  /**
17418
17686
  * Fields for saving actions extra data. Keys are name of actions.
17419
17687
  */
17420
- options?: unknown;
17688
+ options?: {
17689
+ [key: string]: unknown;
17690
+ };
17421
17691
  organization_groups?: Array<string>;
17422
17692
  /**
17423
17693
  * If True, policy applies to all customers. Mutually exclusive with organization_groups.
@@ -17534,7 +17804,9 @@ export type PatchedOpenStackSecurityGroupUpdateRequest = {
17534
17804
  export type PatchedOpenStackSnapshotRequest = {
17535
17805
  name?: string;
17536
17806
  description?: string;
17537
- metadata?: unknown;
17807
+ metadata?: {
17808
+ [key: string]: unknown;
17809
+ };
17538
17810
  /**
17539
17811
  * Guaranteed time of snapshot retention. If null - keep forever.
17540
17812
  */
@@ -17586,7 +17858,9 @@ export type PatchedOrderUpdateRequest = {
17586
17858
  limits?: {
17587
17859
  [key: string]: number;
17588
17860
  };
17589
- attributes?: unknown;
17861
+ attributes?: {
17862
+ [key: string]: unknown;
17863
+ };
17590
17864
  /**
17591
17865
  * Enables delayed processing of resource provisioning order.
17592
17866
  */
@@ -17638,7 +17912,9 @@ export type PatchedProjectEstimatedCostPolicyRequest = {
17638
17912
  /**
17639
17913
  * Fields for saving actions extra data. Keys are name of actions.
17640
17914
  */
17641
- options?: unknown;
17915
+ options?: {
17916
+ [key: string]: unknown;
17917
+ };
17642
17918
  limit_cost?: number;
17643
17919
  period?: PolicyPeriodEnum;
17644
17920
  };
@@ -17700,12 +17976,18 @@ export type PatchedProjectRequest = {
17700
17976
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
17701
17977
  */
17702
17978
  grace_period_days?: number | null;
17703
- user_email_patterns?: unknown;
17704
- user_affiliations?: unknown;
17979
+ user_email_patterns?: {
17980
+ [key: string]: unknown;
17981
+ };
17982
+ user_affiliations?: {
17983
+ [key: string]: unknown;
17984
+ };
17705
17985
  /**
17706
17986
  * List of allowed identity sources (identity providers).
17707
17987
  */
17708
- user_identity_sources?: unknown;
17988
+ user_identity_sources?: {
17989
+ [key: string]: unknown;
17990
+ };
17709
17991
  affiliation_uuid?: string | null;
17710
17992
  science_sub_domain?: string | null;
17711
17993
  };
@@ -17745,11 +18027,15 @@ export type PatchedProjectTemplateRequest = {
17745
18027
  /**
17746
18028
  * The mapping of credits to allocation units, i.e. how many allocation units to award per credit allocated.
17747
18029
  */
17748
- allocation_units_mapping?: unknown;
18030
+ allocation_units_mapping?: {
18031
+ [key: string]: unknown;
18032
+ };
17749
18033
  /**
17750
18034
  * The mapping of role names from the remote portal to role information in this portal for users in projects created in this class.
17751
18035
  */
17752
- role_mapping?: unknown;
18036
+ role_mapping?: {
18037
+ [key: string]: unknown;
18038
+ };
17753
18039
  };
17754
18040
  export type PatchedProposalProjectRoleMappingRequest = {
17755
18041
  call?: string;
@@ -17801,27 +18087,39 @@ export type PatchedProtectedCallRequest = {
17801
18087
  /**
17802
18088
  * List of email regex patterns. User must match one.
17803
18089
  */
17804
- user_email_patterns?: unknown;
18090
+ user_email_patterns?: {
18091
+ [key: string]: unknown;
18092
+ };
17805
18093
  /**
17806
18094
  * List of allowed affiliations. User must have one.
17807
18095
  */
17808
- user_affiliations?: unknown;
18096
+ user_affiliations?: {
18097
+ [key: string]: unknown;
18098
+ };
17809
18099
  /**
17810
18100
  * List of allowed identity sources (identity providers).
17811
18101
  */
17812
- user_identity_sources?: unknown;
18102
+ user_identity_sources?: {
18103
+ [key: string]: unknown;
18104
+ };
17813
18105
  /**
17814
18106
  * List of allowed nationality codes (ISO 3166-1 alpha-2). User must have one.
17815
18107
  */
17816
- user_nationalities?: unknown;
18108
+ user_nationalities?: {
18109
+ [key: string]: unknown;
18110
+ };
17817
18111
  /**
17818
18112
  * List of allowed organization type URNs (SCHAC). User must match one.
17819
18113
  */
17820
- user_organization_types?: unknown;
18114
+ user_organization_types?: {
18115
+ [key: string]: unknown;
18116
+ };
17821
18117
  /**
17822
18118
  * List of required assurance URIs (REFEDS). User must have ALL of these.
17823
18119
  */
17824
- user_assurance_levels?: unknown;
18120
+ user_assurance_levels?: {
18121
+ [key: string]: unknown;
18122
+ };
17825
18123
  applicant_visibility_config?: CallApplicantVisibilityConfigRequest | null;
17826
18124
  };
17827
18125
  export type PatchedProtectedRoundRequest = {
@@ -17871,14 +18169,8 @@ export type PatchedQuestionAdminRequest = {
17871
18169
  * Maximum value allowed for NUMBER, YEAR, and RATING type questions
17872
18170
  */
17873
18171
  max_value?: string | null;
17874
- /**
17875
- * List of allowed file extensions (e.g., ['.pdf', '.doc', '.docx']). If empty, all file types are allowed.
17876
- */
17877
- allowed_file_types?: unknown;
17878
- /**
17879
- * 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
- */
17881
- allowed_mime_types?: unknown;
18172
+ allowed_file_types?: Array<string>;
18173
+ allowed_mime_types?: Array<string>;
17882
18174
  /**
17883
18175
  * Maximum file size in megabytes. If not set, no size limit is enforced.
17884
18176
  */
@@ -17915,7 +18207,9 @@ export type PatchedQuestionAdminRequest = {
17915
18207
  /**
17916
18208
  * Answer value that trigger review.
17917
18209
  */
17918
- review_answer_value?: unknown;
18210
+ review_answer_value?: {
18211
+ [key: string]: unknown;
18212
+ } | null;
17919
18213
  /**
17920
18214
  * This question always requires review regardless of answer
17921
18215
  */
@@ -17923,7 +18217,9 @@ export type PatchedQuestionAdminRequest = {
17923
18217
  /**
17924
18218
  * Answer value that triggers display of user guidance.
17925
18219
  */
17926
- guidance_answer_value?: unknown;
18220
+ guidance_answer_value?: {
18221
+ [key: string]: unknown;
18222
+ } | null;
17927
18223
  /**
17928
18224
  * Operator to use when comparing answer with guidance_answer_value
17929
18225
  */
@@ -17944,7 +18240,9 @@ export type PatchedQuestionDependencyRequest = {
17944
18240
  /**
17945
18241
  * The answer value(s) that make this question visible
17946
18242
  */
17947
- required_answer_value?: unknown;
18243
+ required_answer_value?: {
18244
+ [key: string]: unknown;
18245
+ };
17948
18246
  operator?: ChecklistOperators;
17949
18247
  };
17950
18248
  export type PatchedQuestionOptionsAdminRequest = {
@@ -17992,7 +18290,9 @@ export type PatchedRancherHpaRequest = {
17992
18290
  workload?: string | null;
17993
18291
  min_replicas?: number;
17994
18292
  max_replicas?: number;
17995
- metrics?: unknown;
18293
+ metrics?: {
18294
+ [key: string]: unknown;
18295
+ };
17996
18296
  };
17997
18297
  export type PatchedRancherIngressRequest = {
17998
18298
  name?: string;
@@ -18005,7 +18305,9 @@ export type PatchedRancherIngressRequest = {
18005
18305
  runtime_state?: string;
18006
18306
  rancher_project?: string;
18007
18307
  namespace?: string;
18008
- rules?: unknown;
18308
+ rules?: {
18309
+ [key: string]: unknown;
18310
+ };
18009
18311
  };
18010
18312
  export type PatchedRancherServiceRequest = {
18011
18313
  name?: string;
@@ -18021,7 +18323,9 @@ export type PatchedRancherServiceRequest = {
18021
18323
  * An IPv4 or IPv6 address.
18022
18324
  */
18023
18325
  cluster_ip?: string | string | null;
18024
- selector?: unknown;
18326
+ selector?: {
18327
+ [key: string]: unknown;
18328
+ } | null;
18025
18329
  target_workloads?: Array<RancherNestedWorkloadRequest>;
18026
18330
  };
18027
18331
  export type PatchedRancherWorkloadRequest = {
@@ -18062,13 +18366,19 @@ export type PatchedRequestTypeAdminRequest = {
18062
18366
  order?: number;
18063
18367
  };
18064
18368
  export type PatchedRequestedOfferingRequest = {
18065
- attributes?: unknown;
18369
+ attributes?: {
18370
+ [key: string]: unknown;
18371
+ };
18066
18372
  plan?: string | null;
18067
18373
  description?: string;
18068
18374
  };
18069
18375
  export type PatchedRequestedResourceRequest = {
18070
- attributes?: unknown;
18071
- limits?: unknown;
18376
+ attributes?: {
18377
+ [key: string]: unknown;
18378
+ };
18379
+ limits?: {
18380
+ [key: string]: unknown;
18381
+ };
18072
18382
  description?: string;
18073
18383
  requested_offering_uuid?: string;
18074
18384
  call_resource_template_uuid?: string;
@@ -18080,7 +18390,9 @@ export type PatchedResourceProjectRequest = {
18080
18390
  /**
18081
18391
  * Dictionary mapping component types to quota values. Same format as Resource.limits.
18082
18392
  */
18083
- limits?: unknown;
18393
+ limits?: {
18394
+ [key: string]: unknown;
18395
+ };
18084
18396
  };
18085
18397
  export type PatchedResourceUpdateRequest = {
18086
18398
  name?: string;
@@ -18146,7 +18458,9 @@ export type PatchedReviewerProfileCreateRequest = {
18146
18458
  /**
18147
18459
  * List of name variants used in publications
18148
18460
  */
18149
- alternative_names?: unknown;
18461
+ alternative_names?: {
18462
+ [key: string]: unknown;
18463
+ };
18150
18464
  /**
18151
18465
  * Whether reviewer is currently accepting review requests
18152
18466
  */
@@ -18164,7 +18478,9 @@ export type PatchedReviewerProfileRequest = {
18164
18478
  /**
18165
18479
  * List of name variants used in publications
18166
18480
  */
18167
- alternative_names?: unknown;
18481
+ alternative_names?: {
18482
+ [key: string]: unknown;
18483
+ };
18168
18484
  /**
18169
18485
  * Whether reviewer is currently accepting review requests
18170
18486
  */
@@ -18186,11 +18502,15 @@ export type PatchedReviewerPublicationRequest = {
18186
18502
  /**
18187
18503
  * List of co-author names and identifiers
18188
18504
  */
18189
- coauthors?: unknown;
18505
+ coauthors?: {
18506
+ [key: string]: unknown;
18507
+ };
18190
18508
  /**
18191
18509
  * External identifiers: {"semantic_scholar": "...", "pubmed": "..."}
18192
18510
  */
18193
- external_ids?: unknown;
18511
+ external_ids?: {
18512
+ [key: string]: unknown;
18513
+ };
18194
18514
  /**
18195
18515
  * User can exclude old papers from expertise matching
18196
18516
  */
@@ -18208,7 +18528,7 @@ export type PatchedRobotAccountRequest = {
18208
18528
  * Users who have access to this robot account.
18209
18529
  */
18210
18530
  users?: Array<string>;
18211
- keys?: unknown;
18531
+ keys?: Array<string>;
18212
18532
  responsible_user?: string | null;
18213
18533
  };
18214
18534
  export type PatchedRoleDetailsRequest = {
@@ -18323,7 +18643,9 @@ export type PatchedServiceProviderRequest = {
18323
18643
  /**
18324
18644
  * List of allowed domains for offering endpoints. Only staff can modify this field.
18325
18645
  */
18326
- allowed_domains?: unknown;
18646
+ allowed_domains?: {
18647
+ [key: string]: unknown;
18648
+ };
18327
18649
  };
18328
18650
  export type PatchedSlurmAllocationRequest = {
18329
18651
  name?: string;
@@ -18335,7 +18657,9 @@ export type PatchedSlurmPeriodicUsagePolicyRequest = {
18335
18657
  /**
18336
18658
  * Fields for saving actions extra data. Keys are name of actions.
18337
18659
  */
18338
- options?: unknown;
18660
+ options?: {
18661
+ [key: string]: unknown;
18662
+ };
18339
18663
  organization_groups?: Array<string>;
18340
18664
  /**
18341
18665
  * If True, policy applies to all customers. Mutually exclusive with organization_groups.
@@ -18354,7 +18678,9 @@ export type PatchedSlurmPeriodicUsagePolicyRequest = {
18354
18678
  /**
18355
18679
  * TRES billing weights (e.g., {"CPU": 0.015625, "Mem": 0.001953125, "GRES/gpu": 0.25})
18356
18680
  */
18357
- tres_billing_weights?: unknown;
18681
+ tres_billing_weights?: {
18682
+ [key: string]: unknown;
18683
+ };
18358
18684
  /**
18359
18685
  * Maximum percentage of base allocation that can carry over from unused previous period (0-100)
18360
18686
  */
@@ -18397,7 +18723,9 @@ export type PatchedSoftwareCatalogRequest = {
18397
18723
  /**
18398
18724
  * Catalog-specific metadata (architecture maps, API endpoints, etc.)
18399
18725
  */
18400
- metadata?: unknown;
18726
+ metadata?: {
18727
+ [key: string]: unknown;
18728
+ };
18401
18729
  /**
18402
18730
  * Whether to automatically update this catalog via scheduled tasks
18403
18731
  */
@@ -18412,15 +18740,21 @@ export type PatchedSoftwarePackageRequest = {
18412
18740
  /**
18413
18741
  * Package categories (e.g., ['bio', 'hpc', 'build-tools'])
18414
18742
  */
18415
- categories?: unknown;
18743
+ categories?: {
18744
+ [key: string]: unknown;
18745
+ };
18416
18746
  /**
18417
18747
  * Software licenses (e.g., ['GPL-3.0', 'MIT'])
18418
18748
  */
18419
- licenses?: unknown;
18749
+ licenses?: {
18750
+ [key: string]: unknown;
18751
+ };
18420
18752
  /**
18421
18753
  * Package maintainers
18422
18754
  */
18423
- maintainers?: unknown;
18755
+ maintainers?: {
18756
+ [key: string]: unknown;
18757
+ };
18424
18758
  /**
18425
18759
  * Whether this package is an extension of another package
18426
18760
  */
@@ -18533,6 +18867,7 @@ export type PatchedUserRequest = {
18533
18867
  */
18534
18868
  notifications_enabled?: boolean;
18535
18869
  preferred_language?: string;
18870
+ affiliations?: Array<string>;
18536
18871
  first_name?: string;
18537
18872
  last_name?: string;
18538
18873
  birth_date?: string | null;
@@ -18552,10 +18887,7 @@ export type PatchedUserRequest = {
18552
18887
  * Primary citizenship (ISO 3166-1 alpha-2 code)
18553
18888
  */
18554
18889
  nationality?: string;
18555
- /**
18556
- * List of all citizenships (ISO 3166-1 alpha-2 codes)
18557
- */
18558
- nationalities?: unknown;
18890
+ nationalities?: Array<string>;
18559
18891
  organization_country?: string;
18560
18892
  /**
18561
18893
  * SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
@@ -18565,10 +18897,7 @@ export type PatchedUserRequest = {
18565
18897
  * Company registration code of the user's organization, if known
18566
18898
  */
18567
18899
  organization_registry_code?: string;
18568
- /**
18569
- * REFEDS assurance profile URIs from identity provider
18570
- */
18571
- eduperson_assurance?: unknown;
18900
+ eduperson_assurance?: Array<string>;
18572
18901
  /**
18573
18902
  * Designates whether the user is allowed to manage remote user identities.
18574
18903
  */
@@ -18577,10 +18906,8 @@ export type PatchedUserRequest = {
18577
18906
  * Designates whether the user is allowed to create and use personal access tokens.
18578
18907
  */
18579
18908
  can_use_personal_access_tokens?: boolean;
18580
- /**
18581
- * 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
- */
18583
- managed_isds?: unknown;
18909
+ managed_isds?: Array<string>;
18910
+ active_isds?: Array<string>;
18584
18911
  /**
18585
18912
  * Reason why the user was deactivated. Visible to staff and support.
18586
18913
  */
@@ -19074,7 +19401,9 @@ export type Project = {
19074
19401
  /**
19075
19402
  * Metadata about project termination (read-only)
19076
19403
  */
19077
- readonly termination_metadata: unknown;
19404
+ readonly termination_metadata: {
19405
+ [key: string]: unknown;
19406
+ } | null;
19078
19407
  /**
19079
19408
  * Internal notes visible only to staff and support users (HTML content will be sanitized)
19080
19409
  */
@@ -19095,12 +19424,18 @@ export type Project = {
19095
19424
  * True if the project is past its end date but still within the grace period.
19096
19425
  */
19097
19426
  readonly is_in_grace_period: boolean;
19098
- user_email_patterns?: unknown;
19099
- user_affiliations?: unknown;
19427
+ user_email_patterns?: {
19428
+ [key: string]: unknown;
19429
+ };
19430
+ user_affiliations?: {
19431
+ [key: string]: unknown;
19432
+ };
19100
19433
  /**
19101
19434
  * List of allowed identity sources (identity providers).
19102
19435
  */
19103
- user_identity_sources?: unknown;
19436
+ user_identity_sources?: {
19437
+ [key: string]: unknown;
19438
+ };
19104
19439
  affiliation: AffiliatedOrganization | null;
19105
19440
  affiliation_uuid?: string | null;
19106
19441
  readonly affiliation_name: string;
@@ -19356,7 +19691,9 @@ export type ProjectEstimatedCostPolicy = {
19356
19691
  /**
19357
19692
  * Fields for saving actions extra data. Keys are name of actions.
19358
19693
  */
19359
- options?: unknown;
19694
+ options?: {
19695
+ [key: string]: unknown;
19696
+ };
19360
19697
  readonly affected_resources_count: number;
19361
19698
  limit_cost: number;
19362
19699
  period?: PolicyPeriodEnum;
@@ -19371,7 +19708,9 @@ export type ProjectEstimatedCostPolicyRequest = {
19371
19708
  /**
19372
19709
  * Fields for saving actions extra data. Keys are name of actions.
19373
19710
  */
19374
- options?: unknown;
19711
+ options?: {
19712
+ [key: string]: unknown;
19713
+ };
19375
19714
  limit_cost: number;
19376
19715
  period?: PolicyPeriodEnum;
19377
19716
  };
@@ -19544,12 +19883,18 @@ export type ProjectRequest = {
19544
19883
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
19545
19884
  */
19546
19885
  grace_period_days?: number | null;
19547
- user_email_patterns?: unknown;
19548
- user_affiliations?: unknown;
19886
+ user_email_patterns?: {
19887
+ [key: string]: unknown;
19888
+ };
19889
+ user_affiliations?: {
19890
+ [key: string]: unknown;
19891
+ };
19549
19892
  /**
19550
19893
  * List of allowed identity sources (identity providers).
19551
19894
  */
19552
- user_identity_sources?: unknown;
19895
+ user_identity_sources?: {
19896
+ [key: string]: unknown;
19897
+ };
19553
19898
  affiliation_uuid?: string | null;
19554
19899
  science_sub_domain?: string | null;
19555
19900
  };
@@ -19647,11 +19992,15 @@ export type ProjectTemplate = {
19647
19992
  /**
19648
19993
  * The mapping of credits to allocation units, i.e. how many allocation units to award per credit allocated.
19649
19994
  */
19650
- allocation_units_mapping?: unknown;
19995
+ allocation_units_mapping?: {
19996
+ [key: string]: unknown;
19997
+ };
19651
19998
  /**
19652
19999
  * The mapping of role names from the remote portal to role information in this portal for users in projects created in this class.
19653
20000
  */
19654
- role_mapping?: unknown;
20001
+ role_mapping?: {
20002
+ [key: string]: unknown;
20003
+ };
19655
20004
  /**
19656
20005
  * Serialize the role mapping dictionary returned by get_role_mapping()
19657
20006
  */
@@ -19689,11 +20038,15 @@ export type ProjectTemplateRequest = {
19689
20038
  /**
19690
20039
  * The mapping of credits to allocation units, i.e. how many allocation units to award per credit allocated.
19691
20040
  */
19692
- allocation_units_mapping?: unknown;
20041
+ allocation_units_mapping?: {
20042
+ [key: string]: unknown;
20043
+ };
19693
20044
  /**
19694
20045
  * The mapping of role names from the remote portal to role information in this portal for users in projects created in this class.
19695
20046
  */
19696
- role_mapping?: unknown;
20047
+ role_mapping?: {
20048
+ [key: string]: unknown;
20049
+ };
19697
20050
  };
19698
20051
  export type ProjectType = {
19699
20052
  readonly uuid: string;
@@ -19828,7 +20181,9 @@ export type Proposal = {
19828
20181
  /**
19829
20182
  * Person's affiliation within organization such as student, faculty, staff.
19830
20183
  */
19831
- readonly applicant_affiliations: unknown;
20184
+ readonly applicant_affiliations: {
20185
+ [key: string]: unknown;
20186
+ };
19832
20187
  /**
19833
20188
  * User's gender (male, female, or unknown)
19834
20189
  */
@@ -19847,11 +20202,15 @@ export type Proposal = {
19847
20202
  /**
19848
20203
  * List of all citizenships (ISO 3166-1 alpha-2 codes)
19849
20204
  */
19850
- readonly applicant_nationalities: unknown;
20205
+ readonly applicant_nationalities: {
20206
+ [key: string]: unknown;
20207
+ };
19851
20208
  /**
19852
20209
  * REFEDS assurance profile URIs from identity provider
19853
20210
  */
19854
- readonly applicant_eduperson_assurance: unknown;
20211
+ readonly applicant_eduperson_assurance: {
20212
+ [key: string]: unknown;
20213
+ };
19855
20214
  /**
19856
20215
  * Source of identity
19857
20216
  *
@@ -19863,7 +20222,9 @@ export type Proposal = {
19863
20222
  /**
19864
20223
  * List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
19865
20224
  */
19866
- readonly applicant_active_isds: unknown;
20225
+ readonly applicant_active_isds: {
20226
+ [key: string]: unknown;
20227
+ };
19867
20228
  /**
19868
20229
  * Duration in days after provisioning of resources.
19869
20230
  */
@@ -20129,27 +20490,39 @@ export type ProtectedCall = {
20129
20490
  /**
20130
20491
  * List of email regex patterns. User must match one.
20131
20492
  */
20132
- user_email_patterns?: unknown;
20493
+ user_email_patterns?: {
20494
+ [key: string]: unknown;
20495
+ };
20133
20496
  /**
20134
20497
  * List of allowed affiliations. User must have one.
20135
20498
  */
20136
- user_affiliations?: unknown;
20499
+ user_affiliations?: {
20500
+ [key: string]: unknown;
20501
+ };
20137
20502
  /**
20138
20503
  * List of allowed identity sources (identity providers).
20139
20504
  */
20140
- user_identity_sources?: unknown;
20505
+ user_identity_sources?: {
20506
+ [key: string]: unknown;
20507
+ };
20141
20508
  /**
20142
20509
  * List of allowed nationality codes (ISO 3166-1 alpha-2). User must have one.
20143
20510
  */
20144
- user_nationalities?: unknown;
20511
+ user_nationalities?: {
20512
+ [key: string]: unknown;
20513
+ };
20145
20514
  /**
20146
20515
  * List of allowed organization type URNs (SCHAC). User must match one.
20147
20516
  */
20148
- user_organization_types?: unknown;
20517
+ user_organization_types?: {
20518
+ [key: string]: unknown;
20519
+ };
20149
20520
  /**
20150
20521
  * List of required assurance URIs (REFEDS). User must have ALL of these.
20151
20522
  */
20152
- user_assurance_levels?: unknown;
20523
+ user_assurance_levels?: {
20524
+ [key: string]: unknown;
20525
+ };
20153
20526
  applicant_visibility_config?: CallApplicantVisibilityConfig | null;
20154
20527
  };
20155
20528
  export type ProtectedCallRequest = {
@@ -20184,27 +20557,39 @@ export type ProtectedCallRequest = {
20184
20557
  /**
20185
20558
  * List of email regex patterns. User must match one.
20186
20559
  */
20187
- user_email_patterns?: unknown;
20560
+ user_email_patterns?: {
20561
+ [key: string]: unknown;
20562
+ };
20188
20563
  /**
20189
20564
  * List of allowed affiliations. User must have one.
20190
20565
  */
20191
- user_affiliations?: unknown;
20566
+ user_affiliations?: {
20567
+ [key: string]: unknown;
20568
+ };
20192
20569
  /**
20193
20570
  * List of allowed identity sources (identity providers).
20194
20571
  */
20195
- user_identity_sources?: unknown;
20572
+ user_identity_sources?: {
20573
+ [key: string]: unknown;
20574
+ };
20196
20575
  /**
20197
20576
  * List of allowed nationality codes (ISO 3166-1 alpha-2). User must have one.
20198
20577
  */
20199
- user_nationalities?: unknown;
20578
+ user_nationalities?: {
20579
+ [key: string]: unknown;
20580
+ };
20200
20581
  /**
20201
20582
  * List of allowed organization type URNs (SCHAC). User must match one.
20202
20583
  */
20203
- user_organization_types?: unknown;
20584
+ user_organization_types?: {
20585
+ [key: string]: unknown;
20586
+ };
20204
20587
  /**
20205
20588
  * List of required assurance URIs (REFEDS). User must have ALL of these.
20206
20589
  */
20207
- user_assurance_levels?: unknown;
20590
+ user_assurance_levels?: {
20591
+ [key: string]: unknown;
20592
+ };
20208
20593
  applicant_visibility_config?: CallApplicantVisibilityConfigRequest | null;
20209
20594
  };
20210
20595
  export type ProtectedProposalList = {
@@ -20308,11 +20693,15 @@ export type ProviderOffering = {
20308
20693
  /**
20309
20694
  * Fields describing resource provision form.
20310
20695
  */
20311
- options?: unknown;
20696
+ options?: {
20697
+ [key: string]: unknown;
20698
+ };
20312
20699
  /**
20313
20700
  * Fields describing resource report form.
20314
20701
  */
20315
- resource_options?: unknown;
20702
+ resource_options?: {
20703
+ [key: string]: unknown;
20704
+ };
20316
20705
  secret_options: MergedSecretOptions;
20317
20706
  thumbnail?: string | null;
20318
20707
  readonly offering_group_uuid: string | null;
@@ -20428,7 +20817,9 @@ export type ProviderOfferingDetails = {
20428
20817
  /**
20429
20818
  * Validation rules for resource backend_id: format regex and uniqueness scope.
20430
20819
  */
20431
- backend_id_rules?: unknown;
20820
+ backend_id_rules?: {
20821
+ [key: string]: unknown;
20822
+ };
20432
20823
  readonly organization_groups: Array<OrganizationGroup>;
20433
20824
  readonly tags: Array<NestedTag>;
20434
20825
  image?: string | null;
@@ -20438,7 +20829,9 @@ export type ProviderOfferingDetails = {
20438
20829
  readonly parent_description: string | null;
20439
20830
  readonly parent_uuid: string | null;
20440
20831
  readonly parent_name: string | null;
20441
- backend_metadata?: unknown;
20832
+ backend_metadata?: {
20833
+ [key: string]: unknown;
20834
+ };
20442
20835
  readonly has_compliance_requirements: boolean;
20443
20836
  /**
20444
20837
  * Classify offering components by billing type.
@@ -20550,7 +20943,9 @@ export type ProviderRequestedOffering = {
20550
20943
  readonly category_uuid: string;
20551
20944
  readonly category_name: string;
20552
20945
  readonly call_managing_organisation: string;
20553
- attributes?: unknown;
20946
+ attributes?: {
20947
+ [key: string]: unknown;
20948
+ };
20554
20949
  readonly plan: string | null;
20555
20950
  plan_details: BasePublicPlan;
20556
20951
  options: OfferingOptions;
@@ -20574,8 +20969,12 @@ export type ProviderRequestedResource = {
20574
20969
  readonly resource_name: string;
20575
20970
  readonly call_resource_template: string;
20576
20971
  readonly call_resource_template_name: string;
20577
- attributes?: unknown;
20578
- limits?: unknown;
20972
+ attributes?: {
20973
+ [key: string]: unknown;
20974
+ };
20975
+ limits?: {
20976
+ [key: string]: unknown;
20977
+ };
20579
20978
  description?: string;
20580
20979
  created_by?: string | null;
20581
20980
  readonly created_by_name: string;
@@ -20822,7 +21221,9 @@ export type PublicOfferingDetails = {
20822
21221
  readonly parent_description: string | null;
20823
21222
  readonly parent_uuid: string | null;
20824
21223
  readonly parent_name: string | null;
20825
- backend_metadata?: unknown;
21224
+ backend_metadata?: {
21225
+ [key: string]: unknown;
21226
+ };
20826
21227
  readonly has_compliance_requirements: boolean;
20827
21228
  /**
20828
21229
  * Classify offering components by billing type.
@@ -20938,6 +21339,16 @@ export type PullMarketplaceScriptResourceRequest = {
20938
21339
  resource_uuid: string;
20939
21340
  };
20940
21341
  export type QosStrategyEnum = 'threshold' | 'progressive';
21342
+ export type QueryOutput = {
21343
+ customers?: Array<IdNamePair>;
21344
+ offerings?: Array<IdNamePair>;
21345
+ all_users?: boolean;
21346
+ };
21347
+ export type QueryOutputRequest = {
21348
+ customers?: Array<IdNamePairRequest>;
21349
+ offerings?: Array<IdNamePairRequest>;
21350
+ all_users?: boolean;
21351
+ };
20941
21352
  export type QueryPerformance = {
20942
21353
  /**
20943
21354
  * Total sequential scans (potentially expensive)
@@ -20992,14 +21403,8 @@ export type Question = {
20992
21403
  * Maximum value allowed for NUMBER, YEAR, and RATING type questions
20993
21404
  */
20994
21405
  max_value?: string | null;
20995
- /**
20996
- * List of allowed file extensions (e.g., ['.pdf', '.doc', '.docx']). If empty, all file types are allowed.
20997
- */
20998
- allowed_file_types?: unknown;
20999
- /**
21000
- * 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
- */
21002
- allowed_mime_types?: unknown;
21406
+ allowed_file_types?: Array<string>;
21407
+ allowed_mime_types?: Array<string>;
21003
21408
  /**
21004
21409
  * Maximum file size in megabytes. If not set, no size limit is enforced.
21005
21410
  */
@@ -21036,7 +21441,9 @@ export type Question = {
21036
21441
  /**
21037
21442
  * Answer value that trigger review.
21038
21443
  */
21039
- review_answer_value?: unknown;
21444
+ review_answer_value?: {
21445
+ [key: string]: unknown;
21446
+ } | null;
21040
21447
  /**
21041
21448
  * This question always requires review regardless of answer
21042
21449
  */
@@ -21044,7 +21451,9 @@ export type Question = {
21044
21451
  /**
21045
21452
  * Answer value that triggers display of user guidance.
21046
21453
  */
21047
- guidance_answer_value?: unknown;
21454
+ guidance_answer_value?: {
21455
+ [key: string]: unknown;
21456
+ } | null;
21048
21457
  /**
21049
21458
  * Operator to use when comparing answer with guidance_answer_value
21050
21459
  */
@@ -21080,14 +21489,8 @@ export type QuestionAdmin = {
21080
21489
  * Maximum value allowed for NUMBER, YEAR, and RATING type questions
21081
21490
  */
21082
21491
  max_value?: string | null;
21083
- /**
21084
- * List of allowed file extensions (e.g., ['.pdf', '.doc', '.docx']). If empty, all file types are allowed.
21085
- */
21086
- allowed_file_types?: unknown;
21087
- /**
21088
- * 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
- */
21090
- allowed_mime_types?: unknown;
21492
+ allowed_file_types?: Array<string>;
21493
+ allowed_mime_types?: Array<string>;
21091
21494
  /**
21092
21495
  * Maximum file size in megabytes. If not set, no size limit is enforced.
21093
21496
  */
@@ -21124,7 +21527,9 @@ export type QuestionAdmin = {
21124
21527
  /**
21125
21528
  * Answer value that trigger review.
21126
21529
  */
21127
- review_answer_value?: unknown;
21530
+ review_answer_value?: {
21531
+ [key: string]: unknown;
21532
+ } | null;
21128
21533
  /**
21129
21534
  * This question always requires review regardless of answer
21130
21535
  */
@@ -21132,7 +21537,9 @@ export type QuestionAdmin = {
21132
21537
  /**
21133
21538
  * Answer value that triggers display of user guidance.
21134
21539
  */
21135
- guidance_answer_value?: unknown;
21540
+ guidance_answer_value?: {
21541
+ [key: string]: unknown;
21542
+ } | null;
21136
21543
  /**
21137
21544
  * Operator to use when comparing answer with guidance_answer_value
21138
21545
  */
@@ -21171,14 +21578,8 @@ export type QuestionAdminRequest = {
21171
21578
  * Maximum value allowed for NUMBER, YEAR, and RATING type questions
21172
21579
  */
21173
21580
  max_value?: string | null;
21174
- /**
21175
- * List of allowed file extensions (e.g., ['.pdf', '.doc', '.docx']). If empty, all file types are allowed.
21176
- */
21177
- allowed_file_types?: unknown;
21178
- /**
21179
- * 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
- */
21181
- allowed_mime_types?: unknown;
21581
+ allowed_file_types?: Array<string>;
21582
+ allowed_mime_types?: Array<string>;
21182
21583
  /**
21183
21584
  * Maximum file size in megabytes. If not set, no size limit is enforced.
21184
21585
  */
@@ -21215,7 +21616,9 @@ export type QuestionAdminRequest = {
21215
21616
  /**
21216
21617
  * Answer value that trigger review.
21217
21618
  */
21218
- review_answer_value?: unknown;
21619
+ review_answer_value?: {
21620
+ [key: string]: unknown;
21621
+ } | null;
21219
21622
  /**
21220
21623
  * This question always requires review regardless of answer
21221
21624
  */
@@ -21223,7 +21626,9 @@ export type QuestionAdminRequest = {
21223
21626
  /**
21224
21627
  * Answer value that triggers display of user guidance.
21225
21628
  */
21226
- guidance_answer_value?: unknown;
21629
+ guidance_answer_value?: {
21630
+ [key: string]: unknown;
21631
+ } | null;
21227
21632
  /**
21228
21633
  * Operator to use when comparing answer with guidance_answer_value
21229
21634
  */
@@ -21270,7 +21675,9 @@ export type QuestionAnswer = {
21270
21675
  export type QuestionCondition = {
21271
21676
  question_description: string;
21272
21677
  operator: string;
21273
- required_value: unknown;
21678
+ required_value: {
21679
+ [key: string]: unknown;
21680
+ };
21274
21681
  };
21275
21682
  export type QuestionDependency = {
21276
21683
  readonly uuid: string;
@@ -21282,7 +21689,9 @@ export type QuestionDependency = {
21282
21689
  /**
21283
21690
  * The answer value(s) that make this question visible
21284
21691
  */
21285
- required_answer_value: unknown;
21692
+ required_answer_value: {
21693
+ [key: string]: unknown;
21694
+ };
21286
21695
  operator?: ChecklistOperators;
21287
21696
  };
21288
21697
  export type QuestionDependencyInfo = {
@@ -21295,7 +21704,9 @@ export type QuestionDependencyRequest = {
21295
21704
  /**
21296
21705
  * The answer value(s) that make this question visible
21297
21706
  */
21298
- required_answer_value: unknown;
21707
+ required_answer_value: {
21708
+ [key: string]: unknown;
21709
+ };
21299
21710
  operator?: ChecklistOperators;
21300
21711
  };
21301
21712
  export type QuestionOptions = {
@@ -21340,11 +21751,15 @@ export type QuestionWithAnswer = {
21340
21751
  /**
21341
21752
  * List of allowed file extensions (e.g., ['.pdf', '.doc', '.docx']). If empty, all file types are allowed.
21342
21753
  */
21343
- readonly allowed_file_types: unknown;
21754
+ readonly allowed_file_types: {
21755
+ [key: string]: unknown;
21756
+ };
21344
21757
  /**
21345
21758
  * 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
21759
  */
21347
- readonly allowed_mime_types: unknown;
21760
+ readonly allowed_mime_types: {
21761
+ [key: string]: unknown;
21762
+ };
21348
21763
  /**
21349
21764
  * Maximum file size in megabytes. If not set, no size limit is enforced.
21350
21765
  */
@@ -21402,11 +21817,15 @@ export type QuestionWithAnswerReviewer = {
21402
21817
  /**
21403
21818
  * List of allowed file extensions (e.g., ['.pdf', '.doc', '.docx']). If empty, all file types are allowed.
21404
21819
  */
21405
- readonly allowed_file_types: unknown;
21820
+ readonly allowed_file_types: {
21821
+ [key: string]: unknown;
21822
+ };
21406
21823
  /**
21407
21824
  * 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
21825
  */
21409
- readonly allowed_mime_types: unknown;
21826
+ readonly allowed_mime_types: {
21827
+ [key: string]: unknown;
21828
+ };
21410
21829
  /**
21411
21830
  * Maximum file size in megabytes. If not set, no size limit is enforced.
21412
21831
  */
@@ -21444,7 +21863,9 @@ export type QuestionWithAnswerReviewer = {
21444
21863
  /**
21445
21864
  * Answer value that trigger review.
21446
21865
  */
21447
- review_answer_value?: unknown;
21866
+ review_answer_value?: {
21867
+ [key: string]: unknown;
21868
+ } | null;
21448
21869
  /**
21449
21870
  * This question always requires review regardless of answer
21450
21871
  */
@@ -21640,11 +22061,15 @@ export type RancherCluster = {
21640
22061
  /**
21641
22062
  * Cluster capacity in the format {'cpu': '10', 'ram': '49125240Ki', 'pods': '330'}
21642
22063
  */
21643
- readonly capacity: unknown;
22064
+ readonly capacity: {
22065
+ [key: string]: unknown;
22066
+ };
21644
22067
  /**
21645
22068
  * Cluster requested resources in the format {'cpu': '1450m', 'memory': '884Mi', 'pods': '13'}
21646
22069
  */
21647
- readonly requested: unknown;
22070
+ readonly requested: {
22071
+ [key: string]: unknown;
22072
+ };
21648
22073
  /**
21649
22074
  * Kubernetes version used in the cluster.
21650
22075
  */
@@ -21803,7 +22228,9 @@ export type RancherHpa = {
21803
22228
  max_replicas?: number;
21804
22229
  readonly current_replicas: number;
21805
22230
  readonly desired_replicas: number;
21806
- metrics: unknown;
22231
+ metrics: {
22232
+ [key: string]: unknown;
22233
+ };
21807
22234
  };
21808
22235
  export type RancherHpaRequest = {
21809
22236
  name: string;
@@ -21811,7 +22238,9 @@ export type RancherHpaRequest = {
21811
22238
  workload?: string | null;
21812
22239
  min_replicas?: number;
21813
22240
  max_replicas?: number;
21814
- metrics: unknown;
22241
+ metrics: {
22242
+ [key: string]: unknown;
22243
+ };
21815
22244
  };
21816
22245
  export type RancherImportYamlRequest = {
21817
22246
  yaml: string;
@@ -21849,7 +22278,9 @@ export type RancherIngress = {
21849
22278
  readonly rancher_project_name: string;
21850
22279
  namespace?: string;
21851
22280
  readonly namespace_name: string;
21852
- rules?: unknown;
22281
+ rules?: {
22282
+ [key: string]: unknown;
22283
+ };
21853
22284
  readonly marketplace_offering_uuid: string | null;
21854
22285
  readonly marketplace_offering_name: string | null;
21855
22286
  readonly marketplace_offering_type: string | null;
@@ -21875,7 +22306,9 @@ export type RancherIngressRequest = {
21875
22306
  runtime_state?: string;
21876
22307
  rancher_project: string;
21877
22308
  namespace?: string;
21878
- rules?: unknown;
22309
+ rules?: {
22310
+ [key: string]: unknown;
22311
+ };
21879
22312
  };
21880
22313
  export type RancherNamespace = {
21881
22314
  readonly url: string;
@@ -21904,7 +22337,9 @@ export type RancherNestedNode = {
21904
22337
  /**
21905
22338
  * Initial data for instance creating.
21906
22339
  */
21907
- readonly initial_data: unknown;
22340
+ readonly initial_data: {
22341
+ [key: string]: unknown;
22342
+ };
21908
22343
  readonly runtime_state: string;
21909
22344
  readonly k8s_version: string;
21910
22345
  readonly docker_version: string;
@@ -21920,8 +22355,12 @@ export type RancherNestedNode = {
21920
22355
  readonly ram_total: number | null;
21921
22356
  readonly pods_allocated: number | null;
21922
22357
  readonly pods_total: number | null;
21923
- readonly labels: unknown;
21924
- readonly annotations: unknown;
22358
+ readonly labels: {
22359
+ [key: string]: unknown;
22360
+ };
22361
+ readonly annotations: {
22362
+ [key: string]: unknown;
22363
+ };
21925
22364
  };
21926
22365
  export type RancherNestedNodeRequest = {
21927
22366
  subnet: string | null;
@@ -21990,8 +22429,12 @@ export type RancherNode = {
21990
22429
  readonly ram_total: number | null;
21991
22430
  readonly pods_allocated: number | null;
21992
22431
  readonly pods_total: number | null;
21993
- readonly labels: unknown;
21994
- readonly annotations: unknown;
22432
+ readonly labels: {
22433
+ [key: string]: unknown;
22434
+ };
22435
+ readonly annotations: {
22436
+ [key: string]: unknown;
22437
+ };
21995
22438
  readonly runtime_state: string;
21996
22439
  };
21997
22440
  export type RancherNodeRoleEnum = 'agent' | 'server';
@@ -22040,7 +22483,9 @@ export type RancherService = {
22040
22483
  * An IPv4 or IPv6 address.
22041
22484
  */
22042
22485
  cluster_ip?: string | string | null;
22043
- selector?: unknown;
22486
+ selector?: {
22487
+ [key: string]: unknown;
22488
+ } | null;
22044
22489
  target_workloads: Array<RancherNestedWorkload>;
22045
22490
  readonly marketplace_offering_uuid: string | null;
22046
22491
  readonly marketplace_offering_name: string | null;
@@ -22089,7 +22534,9 @@ export type RancherServiceCreate = {
22089
22534
  * An IPv4 or IPv6 address.
22090
22535
  */
22091
22536
  cluster_ip?: string | string | null;
22092
- selector?: unknown;
22537
+ selector?: {
22538
+ [key: string]: unknown;
22539
+ } | null;
22093
22540
  target_workloads?: Array<RancherWorkloadCreate>;
22094
22541
  readonly marketplace_offering_uuid: string | null;
22095
22542
  readonly marketplace_offering_name: string | null;
@@ -22119,7 +22566,9 @@ export type RancherServiceCreateRequest = {
22119
22566
  * An IPv4 or IPv6 address.
22120
22567
  */
22121
22568
  cluster_ip?: string | string | null;
22122
- selector?: unknown;
22569
+ selector?: {
22570
+ [key: string]: unknown;
22571
+ } | null;
22123
22572
  target_workloads?: Array<RancherWorkloadCreateRequest>;
22124
22573
  };
22125
22574
  export type RancherServiceRequest = {
@@ -22136,7 +22585,9 @@ export type RancherServiceRequest = {
22136
22585
  * An IPv4 or IPv6 address.
22137
22586
  */
22138
22587
  cluster_ip?: string | string | null;
22139
- selector?: unknown;
22588
+ selector?: {
22589
+ [key: string]: unknown;
22590
+ } | null;
22140
22591
  target_workloads: Array<RancherNestedWorkloadRequest>;
22141
22592
  };
22142
22593
  export type RancherTemplate = {
@@ -22164,7 +22615,9 @@ export type RancherTemplateBaseQuestion = {
22164
22615
  /**
22165
22616
  * Validate
22166
22617
  */
22167
- validate_?: unknown;
22618
+ validate_?: {
22619
+ [key: string]: unknown;
22620
+ };
22168
22621
  type: RancherTemplateQuestionType;
22169
22622
  default?: string | null;
22170
22623
  group?: string;
@@ -22178,7 +22631,9 @@ export type RancherTemplateQuestion = {
22178
22631
  /**
22179
22632
  * Validate
22180
22633
  */
22181
- validate_?: unknown;
22634
+ validate_?: {
22635
+ [key: string]: unknown;
22636
+ };
22182
22637
  type: RancherTemplateQuestionType;
22183
22638
  default?: string | null;
22184
22639
  group?: string;
@@ -22648,7 +23103,9 @@ export type RequestedOffering = {
22648
23103
  readonly category_uuid: string;
22649
23104
  readonly category_name: string;
22650
23105
  readonly call_managing_organisation: string;
22651
- attributes?: unknown;
23106
+ attributes?: {
23107
+ [key: string]: unknown;
23108
+ };
22652
23109
  plan?: string | null;
22653
23110
  plan_details: BasePublicPlan;
22654
23111
  options: OfferingOptions;
@@ -22663,7 +23120,9 @@ export type RequestedOffering = {
22663
23120
  };
22664
23121
  export type RequestedOfferingRequest = {
22665
23122
  offering: string;
22666
- attributes?: unknown;
23123
+ attributes?: {
23124
+ [key: string]: unknown;
23125
+ };
22667
23126
  plan?: string | null;
22668
23127
  description?: string;
22669
23128
  };
@@ -22676,15 +23135,23 @@ export type RequestedResource = {
22676
23135
  readonly resource_name: string;
22677
23136
  readonly call_resource_template: string;
22678
23137
  readonly call_resource_template_name: string;
22679
- attributes?: unknown;
22680
- limits?: unknown;
23138
+ attributes?: {
23139
+ [key: string]: unknown;
23140
+ };
23141
+ limits?: {
23142
+ [key: string]: unknown;
23143
+ };
22681
23144
  description?: string;
22682
23145
  readonly created_by: string | null;
22683
23146
  readonly created_by_name: string;
22684
23147
  };
22685
23148
  export type RequestedResourceRequest = {
22686
- attributes?: unknown;
22687
- limits?: unknown;
23149
+ attributes?: {
23150
+ [key: string]: unknown;
23151
+ };
23152
+ limits?: {
23153
+ [key: string]: unknown;
23154
+ };
22688
23155
  description?: string;
22689
23156
  requested_offering_uuid?: string;
22690
23157
  call_resource_template_uuid?: string;
@@ -22712,7 +23179,9 @@ export type Resource = {
22712
23179
  /**
22713
23180
  * Public data used by specific plugin, such as storage mode for OpenStack.
22714
23181
  */
22715
- readonly offering_plugin_options: unknown;
23182
+ readonly offering_plugin_options: {
23183
+ [key: string]: unknown;
23184
+ };
22716
23185
  readonly provider_name: string;
22717
23186
  readonly provider_uuid: string;
22718
23187
  readonly provider_slug: string;
@@ -22812,7 +23281,9 @@ export type Resource = {
22812
23281
  readonly endpoints: Array<NestedEndpoint>;
22813
23282
  readonly error_message: string;
22814
23283
  readonly error_traceback: string;
22815
- readonly options: unknown;
23284
+ readonly options: {
23285
+ [key: string]: unknown;
23286
+ } | null;
22816
23287
  readonly available_actions: Array<string>;
22817
23288
  readonly last_sync: string;
22818
23289
  order_in_progress: OrderDetails | null;
@@ -22834,7 +23305,9 @@ export type ResourceBackendIdRequest = {
22834
23305
  backend_id?: string;
22835
23306
  };
22836
23307
  export type ResourceBackendMetadataRequest = {
22837
- backend_metadata: unknown;
23308
+ backend_metadata: {
23309
+ [key: string]: unknown;
23310
+ };
22838
23311
  };
22839
23312
  export type ResourceClassSummary = {
22840
23313
  used: number;
@@ -22903,7 +23376,9 @@ export type ResourceLimitChangeRequest = {
22903
23376
  readonly customer_name: string;
22904
23377
  readonly offering_uuid: string;
22905
23378
  readonly offering_name: string;
22906
- requested_limits: unknown;
23379
+ requested_limits: {
23380
+ [key: string]: unknown;
23381
+ };
22907
23382
  readonly current_limits: {
22908
23383
  [key: string]: unknown;
22909
23384
  };
@@ -22923,17 +23398,23 @@ export type ResourceLimitChangeRequest = {
22923
23398
  };
22924
23399
  export type ResourceLimitChangeRequestCreate = {
22925
23400
  resource: string;
22926
- requested_limits: unknown;
23401
+ requested_limits: {
23402
+ [key: string]: unknown;
23403
+ };
22927
23404
  readonly uuid: string;
22928
23405
  readonly state: string;
22929
23406
  };
22930
23407
  export type ResourceLimitChangeRequestCreateRequest = {
22931
23408
  resource: string;
22932
- requested_limits: unknown;
23409
+ requested_limits: {
23410
+ [key: string]: unknown;
23411
+ };
22933
23412
  };
22934
23413
  export type ResourceLimitChangeRequestRequest = {
22935
23414
  resource: string;
22936
- requested_limits: unknown;
23415
+ requested_limits: {
23416
+ [key: string]: unknown;
23417
+ };
22937
23418
  /**
22938
23419
  * Optional comment provided during review
22939
23420
  */
@@ -22991,7 +23472,9 @@ export type ResourceOfferingRequest = {
22991
23472
  name: string;
22992
23473
  };
22993
23474
  export type ResourceOptionsRequest = {
22994
- options?: unknown;
23475
+ options?: {
23476
+ [key: string]: unknown;
23477
+ } | null;
22995
23478
  };
22996
23479
  export type ResourcePausedRequest = {
22997
23480
  paused?: boolean;
@@ -23015,11 +23498,15 @@ export type ResourceProject = {
23015
23498
  /**
23016
23499
  * Dictionary mapping component types to quota values. Same format as Resource.limits.
23017
23500
  */
23018
- limits?: unknown;
23501
+ limits?: {
23502
+ [key: string]: unknown;
23503
+ };
23019
23504
  /**
23020
23505
  * Dictionary mapping component types to current usage amounts. Populated by backend synchronization.
23021
23506
  */
23022
- readonly current_usages: unknown;
23507
+ readonly current_usages: {
23508
+ [key: string]: unknown;
23509
+ };
23023
23510
  readonly resource_uuid: string;
23024
23511
  readonly resource_name: string;
23025
23512
  readonly created: string;
@@ -23031,7 +23518,9 @@ export type ResourceProject = {
23031
23518
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
23032
23519
  */
23033
23520
  readonly removed_by_username: string;
23034
- readonly termination_metadata: unknown;
23521
+ readonly termination_metadata: {
23522
+ [key: string]: unknown;
23523
+ };
23035
23524
  };
23036
23525
  export type ResourceProjectBackendIdRequest = {
23037
23526
  backend_id: string;
@@ -23059,7 +23548,9 @@ export type ResourceProjectRequest = {
23059
23548
  /**
23060
23549
  * Dictionary mapping component types to quota values. Same format as Resource.limits.
23061
23550
  */
23062
- limits?: unknown;
23551
+ limits?: {
23552
+ [key: string]: unknown;
23553
+ };
23063
23554
  };
23064
23555
  export type ResourceProvisioningStats = {
23065
23556
  /**
@@ -23174,7 +23665,9 @@ export type ResourceSetLimitsRequest = {
23174
23665
  /**
23175
23666
  * Dictionary mapping component types to their new limit values
23176
23667
  */
23177
- limits: unknown;
23668
+ limits: {
23669
+ [key: string]: unknown;
23670
+ };
23178
23671
  };
23179
23672
  export type ResourceSetStateErredRequest = {
23180
23673
  error_message?: string;
@@ -23188,7 +23681,9 @@ export type ResourceSuggestNameRequest = {
23188
23681
  project: string;
23189
23682
  offering: string;
23190
23683
  plan?: string | null;
23191
- attributes?: unknown;
23684
+ attributes?: {
23685
+ [key: string]: unknown;
23686
+ };
23192
23687
  };
23193
23688
  export type ResourceSwitchPlanRequest = {
23194
23689
  plan: string;
@@ -23217,7 +23712,9 @@ export type ResourceTerminateRequest = {
23217
23712
  *
23218
23713
  * Optional attributes/parameters to pass to the termination operation
23219
23714
  */
23220
- attributes?: unknown;
23715
+ attributes?: {
23716
+ [key: string]: unknown;
23717
+ };
23221
23718
  };
23222
23719
  export type ResourceUpdate = {
23223
23720
  name: string;
@@ -23550,7 +24047,9 @@ export type ReviewerProfile = {
23550
24047
  /**
23551
24048
  * List of name variants used in publications
23552
24049
  */
23553
- alternative_names?: unknown;
24050
+ alternative_names?: {
24051
+ [key: string]: unknown;
24052
+ };
23554
24053
  readonly affiliations: Array<ReviewerAffiliation>;
23555
24054
  readonly expertise_set: Array<ReviewerExpertise>;
23556
24055
  readonly publications: Array<ReviewerPublication>;
@@ -23588,7 +24087,9 @@ export type ReviewerProfileCreateRequest = {
23588
24087
  /**
23589
24088
  * List of name variants used in publications
23590
24089
  */
23591
- alternative_names?: unknown;
24090
+ alternative_names?: {
24091
+ [key: string]: unknown;
24092
+ };
23592
24093
  /**
23593
24094
  * Whether reviewer is currently accepting review requests
23594
24095
  */
@@ -23606,7 +24107,9 @@ export type ReviewerProfileRequest = {
23606
24107
  /**
23607
24108
  * List of name variants used in publications
23608
24109
  */
23609
- alternative_names?: unknown;
24110
+ alternative_names?: {
24111
+ [key: string]: unknown;
24112
+ };
23610
24113
  /**
23611
24114
  * Whether reviewer is currently accepting review requests
23612
24115
  */
@@ -23629,11 +24132,15 @@ export type ReviewerPublication = {
23629
24132
  /**
23630
24133
  * List of co-author names and identifiers
23631
24134
  */
23632
- coauthors?: unknown;
24135
+ coauthors?: {
24136
+ [key: string]: unknown;
24137
+ };
23633
24138
  /**
23634
24139
  * External identifiers: {"semantic_scholar": "...", "pubmed": "..."}
23635
24140
  */
23636
- external_ids?: unknown;
24141
+ external_ids?: {
24142
+ [key: string]: unknown;
24143
+ };
23637
24144
  /**
23638
24145
  * User can exclude old papers from expertise matching
23639
24146
  */
@@ -23656,11 +24163,15 @@ export type ReviewerPublicationRequest = {
23656
24163
  /**
23657
24164
  * List of co-author names and identifiers
23658
24165
  */
23659
- coauthors?: unknown;
24166
+ coauthors?: {
24167
+ [key: string]: unknown;
24168
+ };
23660
24169
  /**
23661
24170
  * External identifiers: {"semantic_scholar": "...", "pubmed": "..."}
23662
24171
  */
23663
- external_ids?: unknown;
24172
+ external_ids?: {
24173
+ [key: string]: unknown;
24174
+ };
23664
24175
  /**
23665
24176
  * User can exclude old papers from expertise matching
23666
24177
  */
@@ -23715,11 +24226,15 @@ export type ReviewerSuggestion = {
23715
24226
  /**
23716
24227
  * Keywords from reviewer's expertise that matched the source text
23717
24228
  */
23718
- readonly matched_keywords: unknown;
24229
+ readonly matched_keywords: {
24230
+ [key: string]: unknown;
24231
+ };
23719
24232
  /**
23720
24233
  * Top proposals with highest affinity: [{uuid, name, slug, affinity}, ...]
23721
24234
  */
23722
- readonly top_matching_proposals: unknown;
24235
+ readonly top_matching_proposals: {
24236
+ [key: string]: unknown;
24237
+ };
23723
24238
  /**
23724
24239
  * What content was used to generate this suggestion
23725
24240
  */
@@ -24119,7 +24634,7 @@ export type RobotAccount = {
24119
24634
  * Users who have access to this robot account.
24120
24635
  */
24121
24636
  users?: Array<string>;
24122
- keys?: unknown;
24637
+ keys?: Array<string>;
24123
24638
  readonly backend_id: string;
24124
24639
  readonly fingerprints: Array<Fingerprint>;
24125
24640
  responsible_user?: string | null;
@@ -24140,7 +24655,7 @@ export type RobotAccountDetails = {
24140
24655
  */
24141
24656
  type: string;
24142
24657
  readonly users: Array<BasicUser>;
24143
- keys?: unknown;
24658
+ keys?: Array<string>;
24144
24659
  readonly backend_id: string;
24145
24660
  readonly fingerprints: Array<Fingerprint>;
24146
24661
  responsible_user: BasicUser | null;
@@ -24173,7 +24688,7 @@ export type RobotAccountRequest = {
24173
24688
  * Users who have access to this robot account.
24174
24689
  */
24175
24690
  users?: Array<string>;
24176
- keys?: unknown;
24691
+ keys?: Array<string>;
24177
24692
  responsible_user?: string | null;
24178
24693
  };
24179
24694
  export type RobotAccountStates = 'Requested' | 'Creating' | 'OK' | 'Requested deletion' | 'Deleted' | 'Error';
@@ -24432,7 +24947,9 @@ export type RoleModifyRequest = {
24432
24947
  * Description [cs]
24433
24948
  */
24434
24949
  description_cs?: string | null;
24435
- permissions: unknown;
24950
+ permissions: {
24951
+ [key: string]: unknown;
24952
+ };
24436
24953
  is_active?: boolean;
24437
24954
  content_type: string;
24438
24955
  };
@@ -24767,7 +25284,9 @@ export type ServiceProvider = {
24767
25284
  /**
24768
25285
  * List of allowed domains for offering endpoints. Only staff can modify this field.
24769
25286
  */
24770
- allowed_domains?: unknown;
25287
+ allowed_domains?: {
25288
+ [key: string]: unknown;
25289
+ };
24771
25290
  };
24772
25291
  export type ServiceProviderAccess = {
24773
25292
  offering_uuid: string;
@@ -24823,7 +25342,9 @@ export type ServiceProviderRequest = {
24823
25342
  /**
24824
25343
  * List of allowed domains for offering endpoints. Only staff can modify this field.
24825
25344
  */
24826
- allowed_domains?: unknown;
25345
+ allowed_domains?: {
25346
+ [key: string]: unknown;
25347
+ };
24827
25348
  };
24828
25349
  export type ServiceProviderRevenues = {
24829
25350
  /**
@@ -24984,7 +25505,9 @@ export type SetTokenQuotaRequest = {
24984
25505
  export type SettingsItem = {
24985
25506
  key: string;
24986
25507
  description: string;
24987
- default?: unknown;
25508
+ default?: {
25509
+ [key: string]: unknown;
25510
+ };
24988
25511
  type: string;
24989
25512
  options?: Array<SettingsItemOption>;
24990
25513
  };
@@ -25177,7 +25700,9 @@ export type SlurmCommandHistory = {
25177
25700
  /**
25178
25701
  * Command parameters as key-value pairs
25179
25702
  */
25180
- parameters?: unknown;
25703
+ parameters?: {
25704
+ [key: string]: unknown;
25705
+ };
25181
25706
  readonly executed_at: string;
25182
25707
  /**
25183
25708
  * Whether command was executed in production or emulator mode
@@ -25230,7 +25755,9 @@ export type SlurmPeriodicUsagePolicy = {
25230
25755
  /**
25231
25756
  * Fields for saving actions extra data. Keys are name of actions.
25232
25757
  */
25233
- options?: unknown;
25758
+ options?: {
25759
+ [key: string]: unknown;
25760
+ };
25234
25761
  readonly affected_resources_count: number;
25235
25762
  organization_groups?: Array<string>;
25236
25763
  /**
@@ -25251,7 +25778,9 @@ export type SlurmPeriodicUsagePolicy = {
25251
25778
  /**
25252
25779
  * TRES billing weights (e.g., {"CPU": 0.015625, "Mem": 0.001953125, "GRES/gpu": 0.25})
25253
25780
  */
25254
- tres_billing_weights?: unknown;
25781
+ tres_billing_weights?: {
25782
+ [key: string]: unknown;
25783
+ };
25255
25784
  /**
25256
25785
  * Maximum percentage of base allocation that can carry over from unused previous period (0-100)
25257
25786
  */
@@ -25283,7 +25812,9 @@ export type SlurmPeriodicUsagePolicyRequest = {
25283
25812
  /**
25284
25813
  * Fields for saving actions extra data. Keys are name of actions.
25285
25814
  */
25286
- options?: unknown;
25815
+ options?: {
25816
+ [key: string]: unknown;
25817
+ };
25287
25818
  organization_groups?: Array<string>;
25288
25819
  /**
25289
25820
  * If True, policy applies to all customers. Mutually exclusive with organization_groups.
@@ -25302,7 +25833,9 @@ export type SlurmPeriodicUsagePolicyRequest = {
25302
25833
  /**
25303
25834
  * TRES billing weights (e.g., {"CPU": 0.015625, "Mem": 0.001953125, "GRES/gpu": 0.25})
25304
25835
  */
25305
- tres_billing_weights?: unknown;
25836
+ tres_billing_weights?: {
25837
+ [key: string]: unknown;
25838
+ };
25306
25839
  /**
25307
25840
  * Maximum percentage of base allocation that can carry over from unused previous period (0-100)
25308
25841
  */
@@ -25400,15 +25933,21 @@ export type SlurmPolicyEvaluationLog = {
25400
25933
  /**
25401
25934
  * List of actions taken during this evaluation (e.g. ['pause', 'notify'])
25402
25935
  */
25403
- actions_taken?: unknown;
25936
+ actions_taken?: {
25937
+ [key: string]: unknown;
25938
+ };
25404
25939
  /**
25405
25940
  * Resource state before evaluation: {paused: bool, downscaled: bool}
25406
25941
  */
25407
- previous_state?: unknown;
25942
+ previous_state?: {
25943
+ [key: string]: unknown;
25944
+ };
25408
25945
  /**
25409
25946
  * Resource state after evaluation: {paused: bool, downscaled: bool}
25410
25947
  */
25411
- new_state?: unknown;
25948
+ new_state?: {
25949
+ [key: string]: unknown;
25950
+ };
25412
25951
  /**
25413
25952
  * Whether a STOMP message was sent to the site agent
25414
25953
  */
@@ -25420,7 +25959,9 @@ export type SlurmPolicyEvaluationLog = {
25420
25959
  /**
25421
25960
  * Response payload from the site agent
25422
25961
  */
25423
- site_agent_response?: unknown;
25962
+ site_agent_response?: {
25963
+ [key: string]: unknown;
25964
+ } | null;
25424
25965
  /**
25425
25966
  * When this evaluation was performed
25426
25967
  */
@@ -25518,7 +26059,9 @@ export type SoftwareCatalog = {
25518
26059
  /**
25519
26060
  * Catalog-specific metadata (architecture maps, API endpoints, etc.)
25520
26061
  */
25521
- metadata?: unknown;
26062
+ metadata?: {
26063
+ [key: string]: unknown;
26064
+ };
25522
26065
  /**
25523
26066
  * Whether to automatically update this catalog via scheduled tasks
25524
26067
  */
@@ -25562,7 +26105,9 @@ export type SoftwareCatalogRequest = {
25562
26105
  /**
25563
26106
  * Catalog-specific metadata (architecture maps, API endpoints, etc.)
25564
26107
  */
25565
- metadata?: unknown;
26108
+ metadata?: {
26109
+ [key: string]: unknown;
26110
+ };
25566
26111
  /**
25567
26112
  * Whether to automatically update this catalog via scheduled tasks
25568
26113
  */
@@ -25591,15 +26136,21 @@ export type SoftwarePackage = {
25591
26136
  /**
25592
26137
  * Package categories (e.g., ['bio', 'hpc', 'build-tools'])
25593
26138
  */
25594
- categories?: unknown;
26139
+ categories?: {
26140
+ [key: string]: unknown;
26141
+ };
25595
26142
  /**
25596
26143
  * Software licenses (e.g., ['GPL-3.0', 'MIT'])
25597
26144
  */
25598
- licenses?: unknown;
26145
+ licenses?: {
26146
+ [key: string]: unknown;
26147
+ };
25599
26148
  /**
25600
26149
  * Package maintainers
25601
26150
  */
25602
- maintainers?: unknown;
26151
+ maintainers?: {
26152
+ [key: string]: unknown;
26153
+ };
25603
26154
  /**
25604
26155
  * Whether this package is an extension of another package
25605
26156
  */
@@ -25622,15 +26173,21 @@ export type SoftwarePackageRequest = {
25622
26173
  /**
25623
26174
  * Package categories (e.g., ['bio', 'hpc', 'build-tools'])
25624
26175
  */
25625
- categories?: unknown;
26176
+ categories?: {
26177
+ [key: string]: unknown;
26178
+ };
25626
26179
  /**
25627
26180
  * Software licenses (e.g., ['GPL-3.0', 'MIT'])
25628
26181
  */
25629
- licenses?: unknown;
26182
+ licenses?: {
26183
+ [key: string]: unknown;
26184
+ };
25630
26185
  /**
25631
26186
  * Package maintainers
25632
26187
  */
25633
- maintainers?: unknown;
26188
+ maintainers?: {
26189
+ [key: string]: unknown;
26190
+ };
25634
26191
  /**
25635
26192
  * Whether this package is an extension of another package
25636
26193
  */
@@ -25660,11 +26217,15 @@ export type SoftwareTarget = {
25660
26217
  /**
25661
26218
  * Target-specific metadata (build options, system requirements, etc.)
25662
26219
  */
25663
- readonly metadata: unknown;
26220
+ readonly metadata: {
26221
+ [key: string]: unknown;
26222
+ };
25664
26223
  /**
25665
26224
  * List of GPU architectures this target supports (e.g., ['nvidia/cc70', 'nvidia/cc90'])
25666
26225
  */
25667
- readonly gpu_architectures: unknown;
26226
+ readonly gpu_architectures: {
26227
+ [key: string]: unknown;
26228
+ };
25668
26229
  };
25669
26230
  export type SoftwareToolchain = {
25670
26231
  name?: string;
@@ -25684,11 +26245,15 @@ export type SoftwareVersion = {
25684
26245
  /**
25685
26246
  * Package dependencies (format varies by catalog type)
25686
26247
  */
25687
- readonly dependencies: unknown;
26248
+ readonly dependencies: {
26249
+ [key: string]: unknown;
26250
+ };
25688
26251
  /**
25689
26252
  * Version-specific metadata (toolchains, build info, modules, etc.)
25690
26253
  */
25691
- readonly metadata: unknown;
26254
+ readonly metadata: {
26255
+ [key: string]: unknown;
26256
+ };
25692
26257
  readonly package_name: string;
25693
26258
  readonly catalog_type: string;
25694
26259
  readonly target_count: number;
@@ -25934,7 +26499,9 @@ export type SystemLog = {
25934
26499
  readonly level_number: number;
25935
26500
  readonly logger_name: string;
25936
26501
  readonly message: string;
25937
- readonly context: unknown;
26502
+ readonly context: {
26503
+ [key: string]: unknown;
26504
+ };
25938
26505
  };
25939
26506
  export type SystemLogInstance = {
25940
26507
  readonly source: string;
@@ -26169,7 +26736,9 @@ export type ThreadSession = {
26169
26736
  readonly uuid: string;
26170
26737
  name?: string;
26171
26738
  readonly chat_session: string;
26172
- readonly flags: unknown;
26739
+ readonly flags: {
26740
+ [key: string]: unknown;
26741
+ };
26173
26742
  is_archived?: boolean;
26174
26743
  readonly message_count: number;
26175
26744
  readonly input_tokens: number | null;
@@ -26299,7 +26868,9 @@ export type ToolExecuteRequest = {
26299
26868
  /**
26300
26869
  * Tool arguments.
26301
26870
  */
26302
- arguments?: unknown;
26871
+ arguments?: {
26872
+ [key: string]: unknown;
26873
+ };
26303
26874
  };
26304
26875
  export type TopQueue = {
26305
26876
  /**
@@ -26349,7 +26920,9 @@ export type TopologyNode = {
26349
26920
  name: string;
26350
26921
  uuid?: string | null;
26351
26922
  attrs: {
26352
- [key: string]: unknown;
26923
+ [key: string]: {
26924
+ [key: string]: unknown;
26925
+ };
26353
26926
  };
26354
26927
  };
26355
26928
  export type TopologyNodeTypeEnum = 'tenant' | 'router' | 'network' | 'subnet' | 'port' | 'instance' | 'floating_ip' | 'external_network' | 'rbac_share';
@@ -26587,10 +27160,7 @@ export type User = {
26587
27160
  preferred_language?: string;
26588
27161
  readonly permissions: Array<Permission>;
26589
27162
  readonly requested_email: string | null;
26590
- /**
26591
- * Person's affiliation within organization such as student, faculty, staff.
26592
- */
26593
- readonly affiliations: unknown;
27163
+ affiliations?: Array<string>;
26594
27164
  first_name?: string;
26595
27165
  last_name?: string;
26596
27166
  birth_date?: string | null;
@@ -26624,10 +27194,7 @@ export type User = {
26624
27194
  * Primary citizenship (ISO 3166-1 alpha-2 code)
26625
27195
  */
26626
27196
  nationality?: string;
26627
- /**
26628
- * List of all citizenships (ISO 3166-1 alpha-2 codes)
26629
- */
26630
- nationalities?: unknown;
27197
+ nationalities?: Array<string>;
26631
27198
  organization_country?: string;
26632
27199
  /**
26633
27200
  * SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
@@ -26637,10 +27204,7 @@ export type User = {
26637
27204
  * Company registration code of the user's organization, if known
26638
27205
  */
26639
27206
  organization_registry_code?: string;
26640
- /**
26641
- * REFEDS assurance profile URIs from identity provider
26642
- */
26643
- eduperson_assurance?: unknown;
27207
+ eduperson_assurance?: Array<string>;
26644
27208
  /**
26645
27209
  * Designates whether the user is allowed to manage remote user identities.
26646
27210
  */
@@ -26652,15 +27216,11 @@ export type User = {
26652
27216
  /**
26653
27217
  * Per-attribute source and freshness tracking. Format: {'field_name': {'source': 'isd:<name>', 'timestamp': 'ISO8601'}}.
26654
27218
  */
26655
- readonly attribute_sources?: unknown;
26656
- /**
26657
- * 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
- */
26659
- managed_isds?: unknown;
26660
- /**
26661
- * List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
26662
- */
26663
- readonly active_isds?: unknown;
27219
+ readonly attribute_sources?: {
27220
+ [key: string]: unknown;
27221
+ };
27222
+ managed_isds?: Array<string>;
27223
+ active_isds?: Array<string>;
26664
27224
  /**
26665
27225
  * Reason why the user was deactivated. Visible to staff and support.
26666
27226
  */
@@ -27007,10 +27567,7 @@ export type UserMe = {
27007
27567
  preferred_language?: string;
27008
27568
  readonly permissions: Array<Permission>;
27009
27569
  readonly requested_email: string | null;
27010
- /**
27011
- * Person's affiliation within organization such as student, faculty, staff.
27012
- */
27013
- readonly affiliations: unknown;
27570
+ affiliations?: Array<string>;
27014
27571
  first_name?: string;
27015
27572
  last_name?: string;
27016
27573
  birth_date?: string | null;
@@ -27044,10 +27601,7 @@ export type UserMe = {
27044
27601
  * Primary citizenship (ISO 3166-1 alpha-2 code)
27045
27602
  */
27046
27603
  nationality?: string;
27047
- /**
27048
- * List of all citizenships (ISO 3166-1 alpha-2 codes)
27049
- */
27050
- nationalities?: unknown;
27604
+ nationalities?: Array<string>;
27051
27605
  organization_country?: string;
27052
27606
  /**
27053
27607
  * SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
@@ -27057,10 +27611,7 @@ export type UserMe = {
27057
27611
  * Company registration code of the user's organization, if known
27058
27612
  */
27059
27613
  organization_registry_code?: string;
27060
- /**
27061
- * REFEDS assurance profile URIs from identity provider
27062
- */
27063
- eduperson_assurance?: unknown;
27614
+ eduperson_assurance?: Array<string>;
27064
27615
  /**
27065
27616
  * Designates whether the user is allowed to manage remote user identities.
27066
27617
  */
@@ -27072,15 +27623,11 @@ export type UserMe = {
27072
27623
  /**
27073
27624
  * Per-attribute source and freshness tracking. Format: {'field_name': {'source': 'isd:<name>', 'timestamp': 'ISO8601'}}.
27074
27625
  */
27075
- readonly attribute_sources?: unknown;
27076
- /**
27077
- * 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
- */
27079
- managed_isds?: unknown;
27080
- /**
27081
- * List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
27082
- */
27083
- readonly active_isds?: unknown;
27626
+ readonly attribute_sources?: {
27627
+ [key: string]: unknown;
27628
+ };
27629
+ managed_isds?: Array<string>;
27630
+ active_isds?: Array<string>;
27084
27631
  /**
27085
27632
  * Reason why the user was deactivated. Visible to staff and support.
27086
27633
  */
@@ -27208,6 +27755,7 @@ export type UserRequest = {
27208
27755
  */
27209
27756
  notifications_enabled?: boolean;
27210
27757
  preferred_language?: string;
27758
+ affiliations?: Array<string>;
27211
27759
  first_name?: string;
27212
27760
  last_name?: string;
27213
27761
  birth_date?: string | null;
@@ -27227,10 +27775,7 @@ export type UserRequest = {
27227
27775
  * Primary citizenship (ISO 3166-1 alpha-2 code)
27228
27776
  */
27229
27777
  nationality?: string;
27230
- /**
27231
- * List of all citizenships (ISO 3166-1 alpha-2 codes)
27232
- */
27233
- nationalities?: unknown;
27778
+ nationalities?: Array<string>;
27234
27779
  organization_country?: string;
27235
27780
  /**
27236
27781
  * SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
@@ -27240,10 +27785,7 @@ export type UserRequest = {
27240
27785
  * Company registration code of the user's organization, if known
27241
27786
  */
27242
27787
  organization_registry_code?: string;
27243
- /**
27244
- * REFEDS assurance profile URIs from identity provider
27245
- */
27246
- eduperson_assurance?: unknown;
27788
+ eduperson_assurance?: Array<string>;
27247
27789
  /**
27248
27790
  * Designates whether the user is allowed to manage remote user identities.
27249
27791
  */
@@ -27252,10 +27794,8 @@ export type UserRequest = {
27252
27794
  * Designates whether the user is allowed to create and use personal access tokens.
27253
27795
  */
27254
27796
  can_use_personal_access_tokens?: boolean;
27255
- /**
27256
- * 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
- */
27258
- managed_isds?: unknown;
27797
+ managed_isds?: Array<string>;
27798
+ active_isds?: Array<string>;
27259
27799
  /**
27260
27800
  * Reason why the user was deactivated. Visible to staff and support.
27261
27801
  */
@@ -28048,12 +28588,18 @@ export type CustomerRequestForm = {
28048
28588
  * Number of extra days after project end date before resources are terminated
28049
28589
  */
28050
28590
  grace_period_days?: number | null;
28051
- user_email_patterns?: unknown;
28052
- user_affiliations?: unknown;
28591
+ user_email_patterns?: {
28592
+ [key: string]: unknown;
28593
+ };
28594
+ user_affiliations?: {
28595
+ [key: string]: unknown;
28596
+ };
28053
28597
  /**
28054
28598
  * List of allowed identity sources (identity providers).
28055
28599
  */
28056
- user_identity_sources?: unknown;
28600
+ user_identity_sources?: {
28601
+ [key: string]: unknown;
28602
+ };
28057
28603
  name: string;
28058
28604
  /**
28059
28605
  * URL-friendly identifier. Only editable by staff users.
@@ -28136,12 +28682,18 @@ export type CustomerRequestMultipart = {
28136
28682
  * Number of extra days after project end date before resources are terminated
28137
28683
  */
28138
28684
  grace_period_days?: number | null;
28139
- user_email_patterns?: unknown;
28140
- user_affiliations?: unknown;
28685
+ user_email_patterns?: {
28686
+ [key: string]: unknown;
28687
+ };
28688
+ user_affiliations?: {
28689
+ [key: string]: unknown;
28690
+ };
28141
28691
  /**
28142
28692
  * List of allowed identity sources (identity providers).
28143
28693
  */
28144
- user_identity_sources?: unknown;
28694
+ user_identity_sources?: {
28695
+ [key: string]: unknown;
28696
+ };
28145
28697
  name: string;
28146
28698
  /**
28147
28699
  * URL-friendly identifier. Only editable by staff users.
@@ -28224,12 +28776,18 @@ export type PatchedCustomerRequestForm = {
28224
28776
  * Number of extra days after project end date before resources are terminated
28225
28777
  */
28226
28778
  grace_period_days?: number | null;
28227
- user_email_patterns?: unknown;
28228
- user_affiliations?: unknown;
28779
+ user_email_patterns?: {
28780
+ [key: string]: unknown;
28781
+ };
28782
+ user_affiliations?: {
28783
+ [key: string]: unknown;
28784
+ };
28229
28785
  /**
28230
28786
  * List of allowed identity sources (identity providers).
28231
28787
  */
28232
- user_identity_sources?: unknown;
28788
+ user_identity_sources?: {
28789
+ [key: string]: unknown;
28790
+ };
28233
28791
  name?: string;
28234
28792
  /**
28235
28793
  * URL-friendly identifier. Only editable by staff users.
@@ -28312,12 +28870,18 @@ export type PatchedCustomerRequestMultipart = {
28312
28870
  * Number of extra days after project end date before resources are terminated
28313
28871
  */
28314
28872
  grace_period_days?: number | null;
28315
- user_email_patterns?: unknown;
28316
- user_affiliations?: unknown;
28873
+ user_email_patterns?: {
28874
+ [key: string]: unknown;
28875
+ };
28876
+ user_affiliations?: {
28877
+ [key: string]: unknown;
28878
+ };
28317
28879
  /**
28318
28880
  * List of allowed identity sources (identity providers).
28319
28881
  */
28320
- user_identity_sources?: unknown;
28882
+ user_identity_sources?: {
28883
+ [key: string]: unknown;
28884
+ };
28321
28885
  name?: string;
28322
28886
  /**
28323
28887
  * URL-friendly identifier. Only editable by staff users.
@@ -28567,7 +29131,9 @@ export type OfferingCreateRequestForm = {
28567
29131
  access_url?: string;
28568
29132
  customer?: string | null;
28569
29133
  category: string;
28570
- attributes?: unknown;
29134
+ attributes?: {
29135
+ [key: string]: unknown;
29136
+ };
28571
29137
  options?: OfferingOptionsRequest;
28572
29138
  resource_options?: OfferingOptionsRequest;
28573
29139
  components?: Array<OfferingComponentRequest>;
@@ -28597,9 +29163,13 @@ export type OfferingCreateRequestForm = {
28597
29163
  /**
28598
29164
  * Validation rules for resource backend_id: format regex and uniqueness scope.
28599
29165
  */
28600
- backend_id_rules?: unknown;
29166
+ backend_id_rules?: {
29167
+ [key: string]: unknown;
29168
+ };
28601
29169
  image?: Blob | File | null;
28602
- backend_metadata?: unknown;
29170
+ backend_metadata?: {
29171
+ [key: string]: unknown;
29172
+ };
28603
29173
  compliance_checklist?: string | null;
28604
29174
  offering_group?: string | null;
28605
29175
  limits?: {
@@ -28623,7 +29193,9 @@ export type OfferingCreateRequestMultipart = {
28623
29193
  access_url?: string;
28624
29194
  customer?: string | null;
28625
29195
  category: string;
28626
- attributes?: unknown;
29196
+ attributes?: {
29197
+ [key: string]: unknown;
29198
+ };
28627
29199
  options?: OfferingOptionsRequest;
28628
29200
  resource_options?: OfferingOptionsRequest;
28629
29201
  components?: Array<OfferingComponentRequest>;
@@ -28653,9 +29225,13 @@ export type OfferingCreateRequestMultipart = {
28653
29225
  /**
28654
29226
  * Validation rules for resource backend_id: format regex and uniqueness scope.
28655
29227
  */
28656
- backend_id_rules?: unknown;
29228
+ backend_id_rules?: {
29229
+ [key: string]: unknown;
29230
+ };
28657
29231
  image?: Blob | File | null;
28658
- backend_metadata?: unknown;
29232
+ backend_metadata?: {
29233
+ [key: string]: unknown;
29234
+ };
28659
29235
  compliance_checklist?: string | null;
28660
29236
  offering_group?: string | null;
28661
29237
  limits?: {
@@ -28760,7 +29336,9 @@ export type ServiceProviderRequestForm = {
28760
29336
  /**
28761
29337
  * List of allowed domains for offering endpoints. Only staff can modify this field.
28762
29338
  */
28763
- allowed_domains?: unknown;
29339
+ allowed_domains?: {
29340
+ [key: string]: unknown;
29341
+ };
28764
29342
  };
28765
29343
  export type ServiceProviderRequestMultipart = {
28766
29344
  description?: string;
@@ -28770,7 +29348,9 @@ export type ServiceProviderRequestMultipart = {
28770
29348
  /**
28771
29349
  * List of allowed domains for offering endpoints. Only staff can modify this field.
28772
29350
  */
28773
- allowed_domains?: unknown;
29351
+ allowed_domains?: {
29352
+ [key: string]: unknown;
29353
+ };
28774
29354
  };
28775
29355
  export type PatchedServiceProviderRequestForm = {
28776
29356
  description?: string;
@@ -28779,7 +29359,9 @@ export type PatchedServiceProviderRequestForm = {
28779
29359
  /**
28780
29360
  * List of allowed domains for offering endpoints. Only staff can modify this field.
28781
29361
  */
28782
- allowed_domains?: unknown;
29362
+ allowed_domains?: {
29363
+ [key: string]: unknown;
29364
+ };
28783
29365
  };
28784
29366
  export type PatchedServiceProviderRequestMultipart = {
28785
29367
  description?: string;
@@ -28788,7 +29370,9 @@ export type PatchedServiceProviderRequestMultipart = {
28788
29370
  /**
28789
29371
  * List of allowed domains for offering endpoints. Only staff can modify this field.
28790
29372
  */
28791
- allowed_domains?: unknown;
29373
+ allowed_domains?: {
29374
+ [key: string]: unknown;
29375
+ };
28792
29376
  };
28793
29377
  export type OnboardingJustificationDocumentationRequestForm = {
28794
29378
  /**
@@ -28844,12 +29428,18 @@ export type ProjectRequestForm = {
28844
29428
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
28845
29429
  */
28846
29430
  grace_period_days?: number | null;
28847
- user_email_patterns?: unknown;
28848
- user_affiliations?: unknown;
29431
+ user_email_patterns?: {
29432
+ [key: string]: unknown;
29433
+ };
29434
+ user_affiliations?: {
29435
+ [key: string]: unknown;
29436
+ };
28849
29437
  /**
28850
29438
  * List of allowed identity sources (identity providers).
28851
29439
  */
28852
- user_identity_sources?: unknown;
29440
+ user_identity_sources?: {
29441
+ [key: string]: unknown;
29442
+ };
28853
29443
  affiliation_uuid?: string | null;
28854
29444
  science_sub_domain?: string | null;
28855
29445
  };
@@ -28895,12 +29485,18 @@ export type ProjectRequestMultipart = {
28895
29485
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
28896
29486
  */
28897
29487
  grace_period_days?: number | null;
28898
- user_email_patterns?: unknown;
28899
- user_affiliations?: unknown;
29488
+ user_email_patterns?: {
29489
+ [key: string]: unknown;
29490
+ };
29491
+ user_affiliations?: {
29492
+ [key: string]: unknown;
29493
+ };
28900
29494
  /**
28901
29495
  * List of allowed identity sources (identity providers).
28902
29496
  */
28903
- user_identity_sources?: unknown;
29497
+ user_identity_sources?: {
29498
+ [key: string]: unknown;
29499
+ };
28904
29500
  affiliation_uuid?: string | null;
28905
29501
  science_sub_domain?: string | null;
28906
29502
  };
@@ -28946,12 +29542,18 @@ export type PatchedProjectRequestForm = {
28946
29542
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
28947
29543
  */
28948
29544
  grace_period_days?: number | null;
28949
- user_email_patterns?: unknown;
28950
- user_affiliations?: unknown;
29545
+ user_email_patterns?: {
29546
+ [key: string]: unknown;
29547
+ };
29548
+ user_affiliations?: {
29549
+ [key: string]: unknown;
29550
+ };
28951
29551
  /**
28952
29552
  * List of allowed identity sources (identity providers).
28953
29553
  */
28954
- user_identity_sources?: unknown;
29554
+ user_identity_sources?: {
29555
+ [key: string]: unknown;
29556
+ };
28955
29557
  affiliation_uuid?: string | null;
28956
29558
  science_sub_domain?: string | null;
28957
29559
  };
@@ -28997,12 +29599,18 @@ export type PatchedProjectRequestMultipart = {
28997
29599
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
28998
29600
  */
28999
29601
  grace_period_days?: number | null;
29000
- user_email_patterns?: unknown;
29001
- user_affiliations?: unknown;
29602
+ user_email_patterns?: {
29603
+ [key: string]: unknown;
29604
+ };
29605
+ user_affiliations?: {
29606
+ [key: string]: unknown;
29607
+ };
29002
29608
  /**
29003
29609
  * List of allowed identity sources (identity providers).
29004
29610
  */
29005
- user_identity_sources?: unknown;
29611
+ user_identity_sources?: {
29612
+ [key: string]: unknown;
29613
+ };
29006
29614
  affiliation_uuid?: string | null;
29007
29615
  science_sub_domain?: string | null;
29008
29616
  };
@@ -29139,6 +29747,7 @@ export type ConstanceSettingsRequestForm = {
29139
29747
  SMAX_CREATION_SOURCE_NAME?: string;
29140
29748
  SMAX_REQUESTS_OFFERING?: string;
29141
29749
  SMAX_VERIFY_SSL?: boolean;
29750
+ SMAX_CERTIFICATE?: string;
29142
29751
  SMAX_WEBHOOK_SHARED_SECRET?: string;
29143
29752
  ENABLE_MOCK_SERVICE_ACCOUNT_BACKEND?: boolean;
29144
29753
  ENABLE_MOCK_COURSE_ACCOUNT_BACKEND?: boolean;
@@ -29436,6 +30045,7 @@ export type ConstanceSettingsRequestMultipart = {
29436
30045
  SMAX_CREATION_SOURCE_NAME?: string;
29437
30046
  SMAX_REQUESTS_OFFERING?: string;
29438
30047
  SMAX_VERIFY_SSL?: boolean;
30048
+ SMAX_CERTIFICATE?: string;
29439
30049
  SMAX_WEBHOOK_SHARED_SECRET?: string;
29440
30050
  ENABLE_MOCK_SERVICE_ACCOUNT_BACKEND?: boolean;
29441
30051
  ENABLE_MOCK_COURSE_ACCOUNT_BACKEND?: boolean;
@@ -29712,6 +30322,7 @@ export type UserRequestForm = {
29712
30322
  */
29713
30323
  notifications_enabled?: boolean;
29714
30324
  preferred_language?: string;
30325
+ affiliations?: Array<string>;
29715
30326
  first_name?: string;
29716
30327
  last_name?: string;
29717
30328
  birth_date?: string | null;
@@ -29731,10 +30342,7 @@ export type UserRequestForm = {
29731
30342
  * Primary citizenship (ISO 3166-1 alpha-2 code)
29732
30343
  */
29733
30344
  nationality?: string;
29734
- /**
29735
- * List of all citizenships (ISO 3166-1 alpha-2 codes)
29736
- */
29737
- nationalities?: unknown;
30345
+ nationalities?: Array<string>;
29738
30346
  organization_country?: string;
29739
30347
  /**
29740
30348
  * SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
@@ -29744,10 +30352,7 @@ export type UserRequestForm = {
29744
30352
  * Company registration code of the user's organization, if known
29745
30353
  */
29746
30354
  organization_registry_code?: string;
29747
- /**
29748
- * REFEDS assurance profile URIs from identity provider
29749
- */
29750
- eduperson_assurance?: unknown;
30355
+ eduperson_assurance?: Array<string>;
29751
30356
  /**
29752
30357
  * Designates whether the user is allowed to manage remote user identities.
29753
30358
  */
@@ -29756,10 +30361,8 @@ export type UserRequestForm = {
29756
30361
  * Designates whether the user is allowed to create and use personal access tokens.
29757
30362
  */
29758
30363
  can_use_personal_access_tokens?: boolean;
29759
- /**
29760
- * 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
- */
29762
- managed_isds?: unknown;
30364
+ managed_isds?: Array<string>;
30365
+ active_isds?: Array<string>;
29763
30366
  /**
29764
30367
  * Reason why the user was deactivated. Visible to staff and support.
29765
30368
  */
@@ -29811,6 +30414,7 @@ export type UserRequestMultipart = {
29811
30414
  */
29812
30415
  notifications_enabled?: boolean;
29813
30416
  preferred_language?: string;
30417
+ affiliations?: Array<string>;
29814
30418
  first_name?: string;
29815
30419
  last_name?: string;
29816
30420
  birth_date?: string | null;
@@ -29830,10 +30434,7 @@ export type UserRequestMultipart = {
29830
30434
  * Primary citizenship (ISO 3166-1 alpha-2 code)
29831
30435
  */
29832
30436
  nationality?: string;
29833
- /**
29834
- * List of all citizenships (ISO 3166-1 alpha-2 codes)
29835
- */
29836
- nationalities?: unknown;
30437
+ nationalities?: Array<string>;
29837
30438
  organization_country?: string;
29838
30439
  /**
29839
30440
  * SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
@@ -29843,10 +30444,7 @@ export type UserRequestMultipart = {
29843
30444
  * Company registration code of the user's organization, if known
29844
30445
  */
29845
30446
  organization_registry_code?: string;
29846
- /**
29847
- * REFEDS assurance profile URIs from identity provider
29848
- */
29849
- eduperson_assurance?: unknown;
30447
+ eduperson_assurance?: Array<string>;
29850
30448
  /**
29851
30449
  * Designates whether the user is allowed to manage remote user identities.
29852
30450
  */
@@ -29855,10 +30453,8 @@ export type UserRequestMultipart = {
29855
30453
  * Designates whether the user is allowed to create and use personal access tokens.
29856
30454
  */
29857
30455
  can_use_personal_access_tokens?: boolean;
29858
- /**
29859
- * 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
- */
29861
- managed_isds?: unknown;
30456
+ managed_isds?: Array<string>;
30457
+ active_isds?: Array<string>;
29862
30458
  /**
29863
30459
  * Reason why the user was deactivated. Visible to staff and support.
29864
30460
  */
@@ -29909,6 +30505,7 @@ export type PatchedUserRequestForm = {
29909
30505
  */
29910
30506
  notifications_enabled?: boolean;
29911
30507
  preferred_language?: string;
30508
+ affiliations?: Array<string>;
29912
30509
  first_name?: string;
29913
30510
  last_name?: string;
29914
30511
  birth_date?: string | null;
@@ -29928,10 +30525,7 @@ export type PatchedUserRequestForm = {
29928
30525
  * Primary citizenship (ISO 3166-1 alpha-2 code)
29929
30526
  */
29930
30527
  nationality?: string;
29931
- /**
29932
- * List of all citizenships (ISO 3166-1 alpha-2 codes)
29933
- */
29934
- nationalities?: unknown;
30528
+ nationalities?: Array<string>;
29935
30529
  organization_country?: string;
29936
30530
  /**
29937
30531
  * SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
@@ -29941,10 +30535,7 @@ export type PatchedUserRequestForm = {
29941
30535
  * Company registration code of the user's organization, if known
29942
30536
  */
29943
30537
  organization_registry_code?: string;
29944
- /**
29945
- * REFEDS assurance profile URIs from identity provider
29946
- */
29947
- eduperson_assurance?: unknown;
30538
+ eduperson_assurance?: Array<string>;
29948
30539
  /**
29949
30540
  * Designates whether the user is allowed to manage remote user identities.
29950
30541
  */
@@ -29953,10 +30544,8 @@ export type PatchedUserRequestForm = {
29953
30544
  * Designates whether the user is allowed to create and use personal access tokens.
29954
30545
  */
29955
30546
  can_use_personal_access_tokens?: boolean;
29956
- /**
29957
- * 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
- */
29959
- managed_isds?: unknown;
30547
+ managed_isds?: Array<string>;
30548
+ active_isds?: Array<string>;
29960
30549
  /**
29961
30550
  * Reason why the user was deactivated. Visible to staff and support.
29962
30551
  */
@@ -30007,6 +30596,7 @@ export type PatchedUserRequestMultipart = {
30007
30596
  */
30008
30597
  notifications_enabled?: boolean;
30009
30598
  preferred_language?: string;
30599
+ affiliations?: Array<string>;
30010
30600
  first_name?: string;
30011
30601
  last_name?: string;
30012
30602
  birth_date?: string | null;
@@ -30026,10 +30616,7 @@ export type PatchedUserRequestMultipart = {
30026
30616
  * Primary citizenship (ISO 3166-1 alpha-2 code)
30027
30617
  */
30028
30618
  nationality?: string;
30029
- /**
30030
- * List of all citizenships (ISO 3166-1 alpha-2 codes)
30031
- */
30032
- nationalities?: unknown;
30619
+ nationalities?: Array<string>;
30033
30620
  organization_country?: string;
30034
30621
  /**
30035
30622
  * SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
@@ -30039,10 +30626,7 @@ export type PatchedUserRequestMultipart = {
30039
30626
  * Company registration code of the user's organization, if known
30040
30627
  */
30041
30628
  organization_registry_code?: string;
30042
- /**
30043
- * REFEDS assurance profile URIs from identity provider
30044
- */
30045
- eduperson_assurance?: unknown;
30629
+ eduperson_assurance?: Array<string>;
30046
30630
  /**
30047
30631
  * Designates whether the user is allowed to manage remote user identities.
30048
30632
  */
@@ -30051,10 +30635,8 @@ export type PatchedUserRequestMultipart = {
30051
30635
  * Designates whether the user is allowed to create and use personal access tokens.
30052
30636
  */
30053
30637
  can_use_personal_access_tokens?: boolean;
30054
- /**
30055
- * 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
- */
30057
- managed_isds?: unknown;
30638
+ managed_isds?: Array<string>;
30639
+ active_isds?: Array<string>;
30058
30640
  /**
30059
30641
  * Reason why the user was deactivated. Visible to staff and support.
30060
30642
  */
@@ -36129,7 +36711,7 @@ export type BroadcastMessagesCountResponses = {
36129
36711
  200: unknown;
36130
36712
  };
36131
36713
  export type BroadcastMessagesCreateData = {
36132
- body: BroadcastMessageRequest;
36714
+ body: BroadcastMessageCreateRequest;
36133
36715
  path?: never;
36134
36716
  query?: never;
36135
36717
  url: '/api/broadcast-messages/';
@@ -36180,7 +36762,7 @@ export type BroadcastMessagesPartialUpdateResponses = {
36180
36762
  };
36181
36763
  export type BroadcastMessagesPartialUpdateResponse = BroadcastMessagesPartialUpdateResponses[keyof BroadcastMessagesPartialUpdateResponses];
36182
36764
  export type BroadcastMessagesUpdateData = {
36183
- body: BroadcastMessageRequest;
36765
+ body: BroadcastMessageCreateRequest;
36184
36766
  path: {
36185
36767
  uuid: string;
36186
36768
  };