waldur-js-client 8.0.9-dev.56 → 8.0.9-dev.57
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types.gen.d.ts +104 -167
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -277,6 +277,14 @@ export type AgentConnectionSummary = {
|
|
|
277
277
|
*/
|
|
278
278
|
readonly total_queued_messages: number;
|
|
279
279
|
};
|
|
280
|
+
export type AgentDependency = {
|
|
281
|
+
package: string;
|
|
282
|
+
version: string;
|
|
283
|
+
};
|
|
284
|
+
export type AgentDependencyRequest = {
|
|
285
|
+
package: string;
|
|
286
|
+
version: string;
|
|
287
|
+
};
|
|
280
288
|
export type AgentEventSubscriptionCreateRequest = {
|
|
281
289
|
/**
|
|
282
290
|
* The type of object to observe for events
|
|
@@ -317,9 +325,7 @@ export type AgentIdentity = {
|
|
|
317
325
|
readonly created_by: string | null;
|
|
318
326
|
name: string;
|
|
319
327
|
version?: string | null;
|
|
320
|
-
dependencies
|
|
321
|
-
[key: string]: unknown;
|
|
322
|
-
};
|
|
328
|
+
readonly dependencies: Array<AgentDependency>;
|
|
323
329
|
/**
|
|
324
330
|
* Example: '/etc/waldur/agent.yaml'
|
|
325
331
|
*/
|
|
@@ -340,9 +346,6 @@ export type AgentIdentityRequest = {
|
|
|
340
346
|
offering: string;
|
|
341
347
|
name: string;
|
|
342
348
|
version?: string | null;
|
|
343
|
-
dependencies?: {
|
|
344
|
-
[key: string]: unknown;
|
|
345
|
-
};
|
|
346
349
|
/**
|
|
347
350
|
* Example: '/etc/waldur/agent.yaml'
|
|
348
351
|
*/
|
|
@@ -825,9 +828,7 @@ export type Answer = {
|
|
|
825
828
|
};
|
|
826
829
|
export type AnswerSubmitRequest = {
|
|
827
830
|
question_uuid: string;
|
|
828
|
-
answer_data:
|
|
829
|
-
[key: string]: unknown;
|
|
830
|
-
} | null;
|
|
831
|
+
answer_data: unknown;
|
|
831
832
|
};
|
|
832
833
|
export type AnswerSubmitResponse = {
|
|
833
834
|
detail: string;
|
|
@@ -3360,7 +3361,7 @@ export type CallResourceTemplate = {
|
|
|
3360
3361
|
[key: string]: unknown;
|
|
3361
3362
|
};
|
|
3362
3363
|
limits?: {
|
|
3363
|
-
[key: string]:
|
|
3364
|
+
[key: string]: number;
|
|
3364
3365
|
};
|
|
3365
3366
|
/**
|
|
3366
3367
|
* If True, every proposal must include this resource type
|
|
@@ -3381,7 +3382,7 @@ export type CallResourceTemplateRequest = {
|
|
|
3381
3382
|
[key: string]: unknown;
|
|
3382
3383
|
};
|
|
3383
3384
|
limits?: {
|
|
3384
|
-
[key: string]:
|
|
3385
|
+
[key: string]: number;
|
|
3385
3386
|
};
|
|
3386
3387
|
/**
|
|
3387
3388
|
* If True, every proposal must include this resource type
|
|
@@ -7417,9 +7418,7 @@ export type EventSubscription = {
|
|
|
7417
7418
|
/**
|
|
7418
7419
|
* 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}]
|
|
7419
7420
|
*/
|
|
7420
|
-
observable_objects?:
|
|
7421
|
-
[key: string]: unknown;
|
|
7422
|
-
};
|
|
7421
|
+
observable_objects?: Array<EventSubscriptionObservableObject>;
|
|
7423
7422
|
readonly created: string;
|
|
7424
7423
|
readonly modified: string;
|
|
7425
7424
|
/**
|
|
@@ -7427,6 +7426,16 @@ export type EventSubscription = {
|
|
|
7427
7426
|
*/
|
|
7428
7427
|
source_ip: string | string | null;
|
|
7429
7428
|
};
|
|
7429
|
+
export type EventSubscriptionObservableObject = {
|
|
7430
|
+
offering_uuid?: string;
|
|
7431
|
+
object_type: string;
|
|
7432
|
+
object_id?: number;
|
|
7433
|
+
};
|
|
7434
|
+
export type EventSubscriptionObservableObjectRequest = {
|
|
7435
|
+
offering_uuid?: string;
|
|
7436
|
+
object_type: string;
|
|
7437
|
+
object_id?: number;
|
|
7438
|
+
};
|
|
7430
7439
|
export type EventSubscriptionQueue = {
|
|
7431
7440
|
readonly uuid: string;
|
|
7432
7441
|
readonly url: string;
|
|
@@ -7474,9 +7483,7 @@ export type EventSubscriptionRequest = {
|
|
|
7474
7483
|
/**
|
|
7475
7484
|
* 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}]
|
|
7476
7485
|
*/
|
|
7477
|
-
observable_objects?:
|
|
7478
|
-
[key: string]: unknown;
|
|
7479
|
-
};
|
|
7486
|
+
observable_objects?: Array<EventSubscriptionObservableObjectRequest>;
|
|
7480
7487
|
};
|
|
7481
7488
|
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';
|
|
7482
7489
|
export type ExecuteActionErrorResponse = {
|
|
@@ -10009,12 +10016,7 @@ export type ManagedProject = {
|
|
|
10009
10016
|
* The destination used to send instructions from the remote portal.
|
|
10010
10017
|
*/
|
|
10011
10018
|
destination: string;
|
|
10012
|
-
|
|
10013
|
-
* Details of the project as provided by the remote OpenPortal.
|
|
10014
|
-
*/
|
|
10015
|
-
readonly details: {
|
|
10016
|
-
[key: string]: unknown;
|
|
10017
|
-
};
|
|
10019
|
+
details: ManagedProjectDetails;
|
|
10018
10020
|
project: string;
|
|
10019
10021
|
project_data: BasicProject;
|
|
10020
10022
|
project_template: string;
|
|
@@ -10026,6 +10028,13 @@ export type ManagedProject = {
|
|
|
10026
10028
|
*/
|
|
10027
10029
|
local_identifier?: string | null;
|
|
10028
10030
|
};
|
|
10031
|
+
export type ManagedProjectDetails = {
|
|
10032
|
+
name?: string | null;
|
|
10033
|
+
description?: string | null;
|
|
10034
|
+
allocation?: string | null;
|
|
10035
|
+
start_date?: string | null;
|
|
10036
|
+
end_date?: string | null;
|
|
10037
|
+
};
|
|
10029
10038
|
export type ManagedRancherCreateNodeRequest = {
|
|
10030
10039
|
role: RancherNodeRoleEnum;
|
|
10031
10040
|
system_volume_size?: number;
|
|
@@ -11096,9 +11105,7 @@ export type MergedSecretOptions = {
|
|
|
11096
11105
|
/**
|
|
11097
11106
|
* Script environment variables
|
|
11098
11107
|
*/
|
|
11099
|
-
environ?:
|
|
11100
|
-
[key: string]: unknown;
|
|
11101
|
-
};
|
|
11108
|
+
environ?: Array<ScriptEnvVar>;
|
|
11102
11109
|
/**
|
|
11103
11110
|
* Script for resource creation
|
|
11104
11111
|
*/
|
|
@@ -11260,9 +11267,7 @@ export type MergedSecretOptionsRequest = {
|
|
|
11260
11267
|
/**
|
|
11261
11268
|
* Script environment variables
|
|
11262
11269
|
*/
|
|
11263
|
-
environ?:
|
|
11264
|
-
[key: string]: unknown;
|
|
11265
|
-
};
|
|
11270
|
+
environ?: Array<ScriptEnvVarRequest>;
|
|
11266
11271
|
/**
|
|
11267
11272
|
* Script for resource creation
|
|
11268
11273
|
*/
|
|
@@ -16955,7 +16960,7 @@ export type PatchedCallResourceTemplateRequest = {
|
|
|
16955
16960
|
[key: string]: unknown;
|
|
16956
16961
|
};
|
|
16957
16962
|
limits?: {
|
|
16958
|
-
[key: string]:
|
|
16963
|
+
[key: string]: number;
|
|
16959
16964
|
};
|
|
16960
16965
|
/**
|
|
16961
16966
|
* If True, every proposal must include this resource type
|
|
@@ -18204,12 +18209,7 @@ export type PatchedQuestionAdminRequest = {
|
|
|
18204
18209
|
*/
|
|
18205
18210
|
rich_text_toolbar_level?: RichTextToolbarLevelEnum | BlankEnum;
|
|
18206
18211
|
operator?: ChecklistOperators | BlankEnum;
|
|
18207
|
-
|
|
18208
|
-
* Answer value that trigger review.
|
|
18209
|
-
*/
|
|
18210
|
-
review_answer_value?: {
|
|
18211
|
-
[key: string]: unknown;
|
|
18212
|
-
} | null;
|
|
18212
|
+
review_answer_value?: unknown;
|
|
18213
18213
|
/**
|
|
18214
18214
|
* This question always requires review regardless of answer
|
|
18215
18215
|
*/
|
|
@@ -18237,12 +18237,7 @@ export type PatchedQuestionAdminRequest = {
|
|
|
18237
18237
|
export type PatchedQuestionDependencyRequest = {
|
|
18238
18238
|
question?: string;
|
|
18239
18239
|
depends_on_question?: string;
|
|
18240
|
-
|
|
18241
|
-
* The answer value(s) that make this question visible
|
|
18242
|
-
*/
|
|
18243
|
-
required_answer_value?: {
|
|
18244
|
-
[key: string]: unknown;
|
|
18245
|
-
};
|
|
18240
|
+
required_answer_value?: unknown;
|
|
18246
18241
|
operator?: ChecklistOperators;
|
|
18247
18242
|
};
|
|
18248
18243
|
export type PatchedQuestionOptionsAdminRequest = {
|
|
@@ -18290,9 +18285,7 @@ export type PatchedRancherHpaRequest = {
|
|
|
18290
18285
|
workload?: string | null;
|
|
18291
18286
|
min_replicas?: number;
|
|
18292
18287
|
max_replicas?: number;
|
|
18293
|
-
metrics?:
|
|
18294
|
-
[key: string]: unknown;
|
|
18295
|
-
};
|
|
18288
|
+
metrics?: Array<RancherHpaMetricRequest>;
|
|
18296
18289
|
};
|
|
18297
18290
|
export type PatchedRancherIngressRequest = {
|
|
18298
18291
|
name?: string;
|
|
@@ -18737,24 +18730,6 @@ export type PatchedSoftwarePackageRequest = {
|
|
|
18737
18730
|
name?: string;
|
|
18738
18731
|
description?: string;
|
|
18739
18732
|
homepage?: string | null;
|
|
18740
|
-
/**
|
|
18741
|
-
* Package categories (e.g., ['bio', 'hpc', 'build-tools'])
|
|
18742
|
-
*/
|
|
18743
|
-
categories?: {
|
|
18744
|
-
[key: string]: unknown;
|
|
18745
|
-
};
|
|
18746
|
-
/**
|
|
18747
|
-
* Software licenses (e.g., ['GPL-3.0', 'MIT'])
|
|
18748
|
-
*/
|
|
18749
|
-
licenses?: {
|
|
18750
|
-
[key: string]: unknown;
|
|
18751
|
-
};
|
|
18752
|
-
/**
|
|
18753
|
-
* Package maintainers
|
|
18754
|
-
*/
|
|
18755
|
-
maintainers?: {
|
|
18756
|
-
[key: string]: unknown;
|
|
18757
|
-
};
|
|
18758
18733
|
/**
|
|
18759
18734
|
* Whether this package is an extension of another package
|
|
18760
18735
|
*/
|
|
@@ -21438,12 +21413,7 @@ export type Question = {
|
|
|
21438
21413
|
*/
|
|
21439
21414
|
rich_text_toolbar_level?: RichTextToolbarLevelEnum | BlankEnum;
|
|
21440
21415
|
operator?: ChecklistOperators | BlankEnum;
|
|
21441
|
-
|
|
21442
|
-
* Answer value that trigger review.
|
|
21443
|
-
*/
|
|
21444
|
-
review_answer_value?: {
|
|
21445
|
-
[key: string]: unknown;
|
|
21446
|
-
} | null;
|
|
21416
|
+
review_answer_value?: unknown;
|
|
21447
21417
|
/**
|
|
21448
21418
|
* This question always requires review regardless of answer
|
|
21449
21419
|
*/
|
|
@@ -21524,12 +21494,7 @@ export type QuestionAdmin = {
|
|
|
21524
21494
|
*/
|
|
21525
21495
|
rich_text_toolbar_level?: RichTextToolbarLevelEnum | BlankEnum;
|
|
21526
21496
|
operator?: ChecklistOperators | BlankEnum;
|
|
21527
|
-
|
|
21528
|
-
* Answer value that trigger review.
|
|
21529
|
-
*/
|
|
21530
|
-
review_answer_value?: {
|
|
21531
|
-
[key: string]: unknown;
|
|
21532
|
-
} | null;
|
|
21497
|
+
review_answer_value?: unknown;
|
|
21533
21498
|
/**
|
|
21534
21499
|
* This question always requires review regardless of answer
|
|
21535
21500
|
*/
|
|
@@ -21613,12 +21578,7 @@ export type QuestionAdminRequest = {
|
|
|
21613
21578
|
*/
|
|
21614
21579
|
rich_text_toolbar_level?: RichTextToolbarLevelEnum | BlankEnum;
|
|
21615
21580
|
operator?: ChecklistOperators | BlankEnum;
|
|
21616
|
-
|
|
21617
|
-
* Answer value that trigger review.
|
|
21618
|
-
*/
|
|
21619
|
-
review_answer_value?: {
|
|
21620
|
-
[key: string]: unknown;
|
|
21621
|
-
} | null;
|
|
21581
|
+
review_answer_value?: unknown;
|
|
21622
21582
|
/**
|
|
21623
21583
|
* This question always requires review regardless of answer
|
|
21624
21584
|
*/
|
|
@@ -21686,12 +21646,7 @@ export type QuestionDependency = {
|
|
|
21686
21646
|
readonly question_name: string;
|
|
21687
21647
|
depends_on_question: string;
|
|
21688
21648
|
readonly depends_on_question_name: string;
|
|
21689
|
-
|
|
21690
|
-
* The answer value(s) that make this question visible
|
|
21691
|
-
*/
|
|
21692
|
-
required_answer_value: {
|
|
21693
|
-
[key: string]: unknown;
|
|
21694
|
-
};
|
|
21649
|
+
required_answer_value?: unknown;
|
|
21695
21650
|
operator?: ChecklistOperators;
|
|
21696
21651
|
};
|
|
21697
21652
|
export type QuestionDependencyInfo = {
|
|
@@ -21701,12 +21656,7 @@ export type QuestionDependencyInfo = {
|
|
|
21701
21656
|
export type QuestionDependencyRequest = {
|
|
21702
21657
|
question: string;
|
|
21703
21658
|
depends_on_question: string;
|
|
21704
|
-
|
|
21705
|
-
* The answer value(s) that make this question visible
|
|
21706
|
-
*/
|
|
21707
|
-
required_answer_value: {
|
|
21708
|
-
[key: string]: unknown;
|
|
21709
|
-
};
|
|
21659
|
+
required_answer_value?: unknown;
|
|
21710
21660
|
operator?: ChecklistOperators;
|
|
21711
21661
|
};
|
|
21712
21662
|
export type QuestionOptions = {
|
|
@@ -21860,12 +21810,7 @@ export type QuestionWithAnswerReviewer = {
|
|
|
21860
21810
|
rich_text_toolbar_level: RichTextToolbarLevelEnum;
|
|
21861
21811
|
dependencies_info: QuestionDependencyInfo | null;
|
|
21862
21812
|
operator?: ChecklistOperators | BlankEnum;
|
|
21863
|
-
|
|
21864
|
-
* Answer value that trigger review.
|
|
21865
|
-
*/
|
|
21866
|
-
review_answer_value?: {
|
|
21867
|
-
[key: string]: unknown;
|
|
21868
|
-
} | null;
|
|
21813
|
+
review_answer_value?: unknown;
|
|
21869
21814
|
/**
|
|
21870
21815
|
* This question always requires review regardless of answer
|
|
21871
21816
|
*/
|
|
@@ -22058,17 +22003,11 @@ export type RancherCluster = {
|
|
|
22058
22003
|
install_longhorn?: boolean;
|
|
22059
22004
|
readonly management_security_group: string;
|
|
22060
22005
|
readonly public_ips: Array<RancherNestedPublicIp>;
|
|
22061
|
-
/**
|
|
22062
|
-
* Cluster capacity in the format {'cpu': '10', 'ram': '49125240Ki', 'pods': '330'}
|
|
22063
|
-
*/
|
|
22064
22006
|
readonly capacity: {
|
|
22065
|
-
[key: string]:
|
|
22007
|
+
[key: string]: number;
|
|
22066
22008
|
};
|
|
22067
|
-
/**
|
|
22068
|
-
* Cluster requested resources in the format {'cpu': '1450m', 'memory': '884Mi', 'pods': '13'}
|
|
22069
|
-
*/
|
|
22070
22009
|
readonly requested: {
|
|
22071
|
-
[key: string]:
|
|
22010
|
+
[key: string]: number;
|
|
22072
22011
|
};
|
|
22073
22012
|
/**
|
|
22074
22013
|
* Kubernetes version used in the cluster.
|
|
@@ -22228,9 +22167,27 @@ export type RancherHpa = {
|
|
|
22228
22167
|
max_replicas?: number;
|
|
22229
22168
|
readonly current_replicas: number;
|
|
22230
22169
|
readonly desired_replicas: number;
|
|
22231
|
-
metrics:
|
|
22232
|
-
|
|
22233
|
-
|
|
22170
|
+
metrics: Array<RancherHpaMetric>;
|
|
22171
|
+
};
|
|
22172
|
+
export type RancherHpaMetric = {
|
|
22173
|
+
name: string;
|
|
22174
|
+
type: string;
|
|
22175
|
+
target: RancherHpaMetricTarget;
|
|
22176
|
+
};
|
|
22177
|
+
export type RancherHpaMetricRequest = {
|
|
22178
|
+
name: string;
|
|
22179
|
+
type: string;
|
|
22180
|
+
target: RancherHpaMetricTargetRequest;
|
|
22181
|
+
};
|
|
22182
|
+
export type RancherHpaMetricTarget = {
|
|
22183
|
+
type: string;
|
|
22184
|
+
utilization?: number | null;
|
|
22185
|
+
averageValue?: string | null;
|
|
22186
|
+
};
|
|
22187
|
+
export type RancherHpaMetricTargetRequest = {
|
|
22188
|
+
type: string;
|
|
22189
|
+
utilization?: number | null;
|
|
22190
|
+
averageValue?: string | null;
|
|
22234
22191
|
};
|
|
22235
22192
|
export type RancherHpaRequest = {
|
|
22236
22193
|
name: string;
|
|
@@ -22238,9 +22195,7 @@ export type RancherHpaRequest = {
|
|
|
22238
22195
|
workload?: string | null;
|
|
22239
22196
|
min_replicas?: number;
|
|
22240
22197
|
max_replicas?: number;
|
|
22241
|
-
metrics:
|
|
22242
|
-
[key: string]: unknown;
|
|
22243
|
-
};
|
|
22198
|
+
metrics: Array<RancherHpaMetricRequest>;
|
|
22244
22199
|
};
|
|
22245
22200
|
export type RancherImportYamlRequest = {
|
|
22246
22201
|
yaml: string;
|
|
@@ -24223,18 +24178,8 @@ export type ReviewerSuggestion = {
|
|
|
24223
24178
|
readonly reviewed_by_name: string;
|
|
24224
24179
|
readonly reviewed_at: string | null;
|
|
24225
24180
|
rejection_reason?: string;
|
|
24226
|
-
|
|
24227
|
-
|
|
24228
|
-
*/
|
|
24229
|
-
readonly matched_keywords: {
|
|
24230
|
-
[key: string]: unknown;
|
|
24231
|
-
};
|
|
24232
|
-
/**
|
|
24233
|
-
* Top proposals with highest affinity: [{uuid, name, slug, affinity}, ...]
|
|
24234
|
-
*/
|
|
24235
|
-
readonly top_matching_proposals: {
|
|
24236
|
-
[key: string]: unknown;
|
|
24237
|
-
};
|
|
24181
|
+
readonly matched_keywords: Array<string>;
|
|
24182
|
+
readonly top_matching_proposals: Array<ReviewerSuggestionTopMatchingProposal>;
|
|
24238
24183
|
/**
|
|
24239
24184
|
* What content was used to generate this suggestion
|
|
24240
24185
|
*/
|
|
@@ -24254,6 +24199,28 @@ export type ReviewerSuggestionRequest = {
|
|
|
24254
24199
|
rejection_reason?: string;
|
|
24255
24200
|
};
|
|
24256
24201
|
export type ReviewerSuggestionStatusEnum = 'pending' | 'confirmed' | 'rejected' | 'invited';
|
|
24202
|
+
export type ReviewerSuggestionTopMatchingProposal = {
|
|
24203
|
+
uuid: string;
|
|
24204
|
+
name?: string;
|
|
24205
|
+
slug?: string;
|
|
24206
|
+
affinity: number;
|
|
24207
|
+
keyword_score?: number | null;
|
|
24208
|
+
text_score?: number | null;
|
|
24209
|
+
has_coi?: boolean | null;
|
|
24210
|
+
coi_type?: string | null;
|
|
24211
|
+
coi_severity?: string | null;
|
|
24212
|
+
};
|
|
24213
|
+
export type ReviewerSuggestionTopMatchingProposalRequest = {
|
|
24214
|
+
uuid: string;
|
|
24215
|
+
name?: string;
|
|
24216
|
+
slug?: string;
|
|
24217
|
+
affinity: number;
|
|
24218
|
+
keyword_score?: number | null;
|
|
24219
|
+
text_score?: number | null;
|
|
24220
|
+
has_coi?: boolean | null;
|
|
24221
|
+
coi_type?: string | null;
|
|
24222
|
+
coi_severity?: string | null;
|
|
24223
|
+
};
|
|
24257
24224
|
export type RichTextToolbarLevelEnum = 'minimal' | 'standard' | 'extended';
|
|
24258
24225
|
export type RmqClientProperties = {
|
|
24259
24226
|
/**
|
|
@@ -25189,6 +25156,14 @@ export type ScriptAsyncDryRunResponse = {
|
|
|
25189
25156
|
export type ScriptDryRunResponse = {
|
|
25190
25157
|
output: string;
|
|
25191
25158
|
};
|
|
25159
|
+
export type ScriptEnvVar = {
|
|
25160
|
+
name: string;
|
|
25161
|
+
value: string;
|
|
25162
|
+
};
|
|
25163
|
+
export type ScriptEnvVarRequest = {
|
|
25164
|
+
name: string;
|
|
25165
|
+
value: string;
|
|
25166
|
+
};
|
|
25192
25167
|
export type Secret = {
|
|
25193
25168
|
name: string;
|
|
25194
25169
|
id: string;
|
|
@@ -25930,12 +25905,7 @@ export type SlurmPolicyEvaluationLog = {
|
|
|
25930
25905
|
* Grace limit percentage threshold (e.g. 120 for 20% grace)
|
|
25931
25906
|
*/
|
|
25932
25907
|
grace_limit_percentage: number;
|
|
25933
|
-
|
|
25934
|
-
* List of actions taken during this evaluation (e.g. ['pause', 'notify'])
|
|
25935
|
-
*/
|
|
25936
|
-
actions_taken?: {
|
|
25937
|
-
[key: string]: unknown;
|
|
25938
|
-
};
|
|
25908
|
+
readonly actions_taken: Array<string>;
|
|
25939
25909
|
/**
|
|
25940
25910
|
* Resource state before evaluation: {paused: bool, downscaled: bool}
|
|
25941
25911
|
*/
|
|
@@ -26133,24 +26103,9 @@ export type SoftwarePackage = {
|
|
|
26133
26103
|
name: string;
|
|
26134
26104
|
description?: string;
|
|
26135
26105
|
homepage?: string | null;
|
|
26136
|
-
|
|
26137
|
-
|
|
26138
|
-
|
|
26139
|
-
categories?: {
|
|
26140
|
-
[key: string]: unknown;
|
|
26141
|
-
};
|
|
26142
|
-
/**
|
|
26143
|
-
* Software licenses (e.g., ['GPL-3.0', 'MIT'])
|
|
26144
|
-
*/
|
|
26145
|
-
licenses?: {
|
|
26146
|
-
[key: string]: unknown;
|
|
26147
|
-
};
|
|
26148
|
-
/**
|
|
26149
|
-
* Package maintainers
|
|
26150
|
-
*/
|
|
26151
|
-
maintainers?: {
|
|
26152
|
-
[key: string]: unknown;
|
|
26153
|
-
};
|
|
26106
|
+
readonly categories: Array<string>;
|
|
26107
|
+
readonly licenses: Array<string>;
|
|
26108
|
+
readonly maintainers: Array<string>;
|
|
26154
26109
|
/**
|
|
26155
26110
|
* Whether this package is an extension of another package
|
|
26156
26111
|
*/
|
|
@@ -26170,24 +26125,6 @@ export type SoftwarePackageRequest = {
|
|
|
26170
26125
|
name: string;
|
|
26171
26126
|
description?: string;
|
|
26172
26127
|
homepage?: string | null;
|
|
26173
|
-
/**
|
|
26174
|
-
* Package categories (e.g., ['bio', 'hpc', 'build-tools'])
|
|
26175
|
-
*/
|
|
26176
|
-
categories?: {
|
|
26177
|
-
[key: string]: unknown;
|
|
26178
|
-
};
|
|
26179
|
-
/**
|
|
26180
|
-
* Software licenses (e.g., ['GPL-3.0', 'MIT'])
|
|
26181
|
-
*/
|
|
26182
|
-
licenses?: {
|
|
26183
|
-
[key: string]: unknown;
|
|
26184
|
-
};
|
|
26185
|
-
/**
|
|
26186
|
-
* Package maintainers
|
|
26187
|
-
*/
|
|
26188
|
-
maintainers?: {
|
|
26189
|
-
[key: string]: unknown;
|
|
26190
|
-
};
|
|
26191
26128
|
/**
|
|
26192
26129
|
* Whether this package is an extension of another package
|
|
26193
26130
|
*/
|