waldur-js-client 8.0.7-dev.0 → 8.0.7-dev.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/sdk.gen.d.ts +102 -1
- package/dist/sdk.gen.js +509 -0
- package/dist/types.gen.d.ts +1012 -20
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -223,7 +223,7 @@ export type AgentIdentity = {
|
|
|
223
223
|
* UUID of an offering with a site-agent compatible type.
|
|
224
224
|
*/
|
|
225
225
|
offering: string;
|
|
226
|
-
readonly created_by: string;
|
|
226
|
+
readonly created_by: string | null;
|
|
227
227
|
name: string;
|
|
228
228
|
version?: string | null;
|
|
229
229
|
dependencies?: unknown;
|
|
@@ -1273,6 +1273,12 @@ export type AssignmentItem = {
|
|
|
1273
1273
|
* Number of times this proposal has been reassigned.
|
|
1274
1274
|
*/
|
|
1275
1275
|
readonly reassign_count: number;
|
|
1276
|
+
/**
|
|
1277
|
+
* Reason for manager override of COI block.
|
|
1278
|
+
*/
|
|
1279
|
+
readonly override_reason: string;
|
|
1280
|
+
readonly overridden_by_name: string;
|
|
1281
|
+
readonly overridden_at: string | null;
|
|
1276
1282
|
readonly created: string;
|
|
1277
1283
|
};
|
|
1278
1284
|
export type AssignmentItemDeclineRequest = {
|
|
@@ -1437,12 +1443,57 @@ export type AttachmentRequest = {
|
|
|
1437
1443
|
issue: string;
|
|
1438
1444
|
file: Blob | File;
|
|
1439
1445
|
};
|
|
1446
|
+
export type Attribute = {
|
|
1447
|
+
readonly url: string;
|
|
1448
|
+
readonly uuid: string;
|
|
1449
|
+
key: string;
|
|
1450
|
+
readonly created: string;
|
|
1451
|
+
title: string;
|
|
1452
|
+
section: string;
|
|
1453
|
+
readonly section_title: string;
|
|
1454
|
+
type: AttributeTypeEnum;
|
|
1455
|
+
/**
|
|
1456
|
+
* A value must be provided for the attribute.
|
|
1457
|
+
*/
|
|
1458
|
+
required?: boolean;
|
|
1459
|
+
default?: unknown;
|
|
1460
|
+
};
|
|
1461
|
+
export type AttributeOption = {
|
|
1462
|
+
readonly url: string;
|
|
1463
|
+
readonly uuid: string;
|
|
1464
|
+
readonly id: number;
|
|
1465
|
+
key: string;
|
|
1466
|
+
title: string;
|
|
1467
|
+
attribute: string;
|
|
1468
|
+
readonly attribute_title: string;
|
|
1469
|
+
/**
|
|
1470
|
+
* Return True if this option is the default for its attribute.
|
|
1471
|
+
*/
|
|
1472
|
+
readonly is_default: boolean;
|
|
1473
|
+
};
|
|
1474
|
+
export type AttributeOptionRequest = {
|
|
1475
|
+
key: string;
|
|
1476
|
+
title: string;
|
|
1477
|
+
attribute: string;
|
|
1478
|
+
};
|
|
1479
|
+
export type AttributeRequest = {
|
|
1480
|
+
key: string;
|
|
1481
|
+
title: string;
|
|
1482
|
+
section: string;
|
|
1483
|
+
type: AttributeTypeEnum;
|
|
1484
|
+
/**
|
|
1485
|
+
* A value must be provided for the attribute.
|
|
1486
|
+
*/
|
|
1487
|
+
required?: boolean;
|
|
1488
|
+
default?: unknown;
|
|
1489
|
+
};
|
|
1440
1490
|
export type AttributeSourceDetail = {
|
|
1441
1491
|
source: string;
|
|
1442
1492
|
timestamp: string;
|
|
1443
1493
|
age_days: number;
|
|
1444
1494
|
is_stale: boolean;
|
|
1445
1495
|
};
|
|
1496
|
+
export type AttributeTypeEnum = 'boolean' | 'string' | 'text' | 'integer' | 'choice' | 'list';
|
|
1446
1497
|
export type AuthMethodEnum = 'api_token' | 'personal_access_token' | 'basic';
|
|
1447
1498
|
export type AuthResult = {
|
|
1448
1499
|
readonly uuid: string;
|
|
@@ -2295,6 +2346,7 @@ export type BookingResource = {
|
|
|
2295
2346
|
readonly provider_name?: string;
|
|
2296
2347
|
readonly provider_uuid?: string;
|
|
2297
2348
|
readonly provider_slug?: string;
|
|
2349
|
+
readonly provider_description?: string;
|
|
2298
2350
|
readonly category_title?: string;
|
|
2299
2351
|
readonly category_uuid?: string;
|
|
2300
2352
|
readonly category_icon?: string;
|
|
@@ -2328,6 +2380,10 @@ export type BookingResource = {
|
|
|
2328
2380
|
* The date is inclusive. Once reached, all project resource will be scheduled for termination.
|
|
2329
2381
|
*/
|
|
2330
2382
|
readonly project_end_date?: string | null;
|
|
2383
|
+
/**
|
|
2384
|
+
* Effective project end date including grace period. After this date, resources will be terminated.
|
|
2385
|
+
*/
|
|
2386
|
+
readonly project_effective_end_date?: string;
|
|
2331
2387
|
readonly project_end_date_requested_by?: string;
|
|
2332
2388
|
readonly customer_uuid?: string;
|
|
2333
2389
|
readonly customer_name?: string;
|
|
@@ -2866,6 +2922,12 @@ export type CallReviewerPool = {
|
|
|
2866
2922
|
* Count reviews in 'submitted' state.
|
|
2867
2923
|
*/
|
|
2868
2924
|
readonly reviews_completed: number;
|
|
2925
|
+
/**
|
|
2926
|
+
* Reason for manager override of invitation status.
|
|
2927
|
+
*/
|
|
2928
|
+
readonly override_reason: string;
|
|
2929
|
+
readonly overridden_by_name: string;
|
|
2930
|
+
readonly overridden_at: string | null;
|
|
2869
2931
|
};
|
|
2870
2932
|
export type CallReviewerPoolUpdate = {
|
|
2871
2933
|
/**
|
|
@@ -4298,10 +4360,12 @@ export type ConstanceSettings = {
|
|
|
4298
4360
|
ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
|
|
4299
4361
|
ONBOARDING_BREG_API_URL?: string;
|
|
4300
4362
|
LLM_CHAT_ENABLED?: boolean;
|
|
4363
|
+
LLM_CHAT_ENABLED_ROLES?: LlmchatenabledrolesEnum;
|
|
4301
4364
|
LLM_INFERENCES_BACKEND_TYPE?: string;
|
|
4302
4365
|
LLM_INFERENCES_API_URL?: string;
|
|
4303
4366
|
LLM_INFERENCES_API_TOKEN?: string;
|
|
4304
4367
|
LLM_INFERENCES_MODEL?: string;
|
|
4368
|
+
LLM_COMPLETION_KWARGS?: string;
|
|
4305
4369
|
LLM_TOKEN_LIMIT_DAILY?: number;
|
|
4306
4370
|
LLM_TOKEN_LIMIT_WEEKLY?: number;
|
|
4307
4371
|
LLM_TOKEN_LIMIT_MONTHLY?: number;
|
|
@@ -4346,6 +4410,7 @@ export type ConstanceSettings = {
|
|
|
4346
4410
|
ENABLE_PROJECT_DIGEST?: boolean;
|
|
4347
4411
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
4348
4412
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
4413
|
+
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
4349
4414
|
};
|
|
4350
4415
|
export type ConstanceSettingsRequest = {
|
|
4351
4416
|
SITE_NAME?: string;
|
|
@@ -4543,10 +4608,12 @@ export type ConstanceSettingsRequest = {
|
|
|
4543
4608
|
ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
|
|
4544
4609
|
ONBOARDING_BREG_API_URL?: string;
|
|
4545
4610
|
LLM_CHAT_ENABLED?: boolean;
|
|
4611
|
+
LLM_CHAT_ENABLED_ROLES?: LlmchatenabledrolesEnum;
|
|
4546
4612
|
LLM_INFERENCES_BACKEND_TYPE?: string;
|
|
4547
4613
|
LLM_INFERENCES_API_URL?: string;
|
|
4548
4614
|
LLM_INFERENCES_API_TOKEN?: string;
|
|
4549
4615
|
LLM_INFERENCES_MODEL?: string;
|
|
4616
|
+
LLM_COMPLETION_KWARGS?: string;
|
|
4550
4617
|
LLM_TOKEN_LIMIT_DAILY?: number;
|
|
4551
4618
|
LLM_TOKEN_LIMIT_WEEKLY?: number;
|
|
4552
4619
|
LLM_TOKEN_LIMIT_MONTHLY?: number;
|
|
@@ -4591,6 +4658,7 @@ export type ConstanceSettingsRequest = {
|
|
|
4591
4658
|
ENABLE_PROJECT_DIGEST?: boolean;
|
|
4592
4659
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
4593
4660
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
4661
|
+
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
4594
4662
|
};
|
|
4595
4663
|
export type ConsumptionStatisticsResponse = {
|
|
4596
4664
|
total_records: number;
|
|
@@ -5507,7 +5575,7 @@ export type CustomerServiceAccount = {
|
|
|
5507
5575
|
email?: string;
|
|
5508
5576
|
readonly expires_at: string | null;
|
|
5509
5577
|
preferred_identifier?: string;
|
|
5510
|
-
customer: string;
|
|
5578
|
+
customer: string | null;
|
|
5511
5579
|
readonly customer_uuid: string;
|
|
5512
5580
|
readonly customer_name: string;
|
|
5513
5581
|
};
|
|
@@ -5517,7 +5585,7 @@ export type CustomerServiceAccountRequest = {
|
|
|
5517
5585
|
error_traceback?: string;
|
|
5518
5586
|
email?: string;
|
|
5519
5587
|
preferred_identifier?: string;
|
|
5520
|
-
customer: string;
|
|
5588
|
+
customer: string | null;
|
|
5521
5589
|
};
|
|
5522
5590
|
export type CustomerUser = {
|
|
5523
5591
|
readonly url?: string;
|
|
@@ -6239,6 +6307,7 @@ export type DryRunRequest = {
|
|
|
6239
6307
|
};
|
|
6240
6308
|
export type DryRunStateEnum = 1 | 2 | 3 | 4;
|
|
6241
6309
|
export type DryRunTypeEnum = 'Create' | 'Update' | 'Terminate' | 'Restore' | 'Pull';
|
|
6310
|
+
export type EnabledreportingscreensEnum = 'resource-usage' | 'user-usage' | 'quotas' | 'usage-monitoring' | 'usage-trends' | 'organization-summary' | 'project-detail' | 'resources-geography' | 'project-classification' | 'usage-by-customer' | 'usage-by-org-type' | 'usage-by-creator' | 'call-performance' | 'review-progress' | 'resource-demand' | 'capacity' | 'provider-overview' | 'provider-revenue' | 'provider-orders' | 'provider-resources' | 'provider-customers' | 'provider-offerings' | 'openstack-instances' | 'user-demographics' | 'user-organizations' | 'user-affiliations' | 'user-roles' | 'growth' | 'revenue' | 'pricelist' | 'orders' | 'offering-costs' | 'maintenance-overview' | 'provisioning-stats';
|
|
6242
6311
|
export type EligibilityCheck = {
|
|
6243
6312
|
is_eligible: boolean;
|
|
6244
6313
|
restrictions: Array<string>;
|
|
@@ -6310,7 +6379,7 @@ export type EventMetadataResponse = {
|
|
|
6310
6379
|
* Map of event group keys to lists of event type enums from EventType
|
|
6311
6380
|
*/
|
|
6312
6381
|
event_groups: {
|
|
6313
|
-
[key: string]: Array<'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' | '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_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_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_user_created' | 'marketplace_resource_user_deleted' | '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_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | '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_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_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | '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' | '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_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_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' | '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' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task'>;
|
|
6382
|
+
[key: string]: Array<'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' | '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_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_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_user_created' | 'marketplace_resource_user_deleted' | '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_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | '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_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' | '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' | '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_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_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' | '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' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task'>;
|
|
6314
6383
|
};
|
|
6315
6384
|
};
|
|
6316
6385
|
export type EventStats = {
|
|
@@ -6389,7 +6458,7 @@ export type EventSubscriptionRequest = {
|
|
|
6389
6458
|
*/
|
|
6390
6459
|
observable_objects?: unknown;
|
|
6391
6460
|
};
|
|
6392
|
-
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' | '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_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_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_user_created' | 'marketplace_resource_user_deleted' | '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_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | '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_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_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | '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' | '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_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_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' | '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' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task';
|
|
6461
|
+
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' | '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_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_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_user_created' | 'marketplace_resource_user_deleted' | '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_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | '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_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' | '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' | '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_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_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' | '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' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task';
|
|
6393
6462
|
export type ExecuteActionErrorResponse = {
|
|
6394
6463
|
error: string;
|
|
6395
6464
|
};
|
|
@@ -6870,6 +6939,12 @@ export type FlavorResponse = {
|
|
|
6870
6939
|
*/
|
|
6871
6940
|
disk: number;
|
|
6872
6941
|
};
|
|
6942
|
+
export type ForceAcceptPoolRequest = {
|
|
6943
|
+
override_reason: string;
|
|
6944
|
+
};
|
|
6945
|
+
export type ForceUnblockRequest = {
|
|
6946
|
+
override_reason: string;
|
|
6947
|
+
};
|
|
6873
6948
|
export type FreeipaProfile = {
|
|
6874
6949
|
readonly uuid: string;
|
|
6875
6950
|
/**
|
|
@@ -8330,6 +8405,7 @@ export type KeycloakUserGroupMembershipRequest = {
|
|
|
8330
8405
|
export type KeycloakUserGroupMembershipState = 'pending' | 'active';
|
|
8331
8406
|
export type KeywordSearchModeEnum = 'expertise_only' | 'full_text';
|
|
8332
8407
|
export type KindEnum = 'default' | 'course' | 'public';
|
|
8408
|
+
export type LlmchatenabledrolesEnum = 'disabled' | 'staff' | 'staff_and_support' | 'all';
|
|
8333
8409
|
export type LoginpagelayoutEnum = 'split-screen' | 'centered-card' | 'minimal' | 'full-hero' | 'gradient' | 'stacked' | 'right-split' | 'glassmorphism' | 'neumorphism' | 'animated-gradient' | 'video-background' | 'bottom-sheet' | 'tabbed' | 'wizard' | 'stats' | 'news' | 'carousel' | 'logo-watermark' | 'brand-pattern' | 'duotone' | 'diagonal' | 'time-based' | 'seasonal' | 'weather';
|
|
8334
8410
|
export type LbAlgorithmEnum = 'ROUND_ROBIN' | 'LEAST_CONNECTIONS' | 'SOURCE_IP' | 'SOURCE_IP_PORT';
|
|
8335
8411
|
export type LexisLink = {
|
|
@@ -9857,8 +9933,9 @@ export type Message = {
|
|
|
9857
9933
|
readonly thread: string;
|
|
9858
9934
|
role: MessageRoleEnum;
|
|
9859
9935
|
content: string;
|
|
9936
|
+
readonly tool_calls: unknown;
|
|
9860
9937
|
readonly sequence_index: number;
|
|
9861
|
-
readonly replaces: string;
|
|
9938
|
+
readonly replaces: string | null;
|
|
9862
9939
|
readonly created: string;
|
|
9863
9940
|
readonly is_flagged: boolean;
|
|
9864
9941
|
severity: InjectionSeverityEnum;
|
|
@@ -10048,9 +10125,10 @@ export type NestedAgentServiceRequest = {
|
|
|
10048
10125
|
statistics?: unknown;
|
|
10049
10126
|
};
|
|
10050
10127
|
export type NestedAttribute = {
|
|
10128
|
+
readonly uuid?: string;
|
|
10051
10129
|
key?: string;
|
|
10052
10130
|
title?: string;
|
|
10053
|
-
type?:
|
|
10131
|
+
type?: AttributeTypeEnum;
|
|
10054
10132
|
options?: Array<NestedAttributeOption>;
|
|
10055
10133
|
/**
|
|
10056
10134
|
* A value must be provided for the attribute.
|
|
@@ -10059,8 +10137,13 @@ export type NestedAttribute = {
|
|
|
10059
10137
|
default?: unknown;
|
|
10060
10138
|
};
|
|
10061
10139
|
export type NestedAttributeOption = {
|
|
10140
|
+
readonly uuid?: string;
|
|
10062
10141
|
key?: string;
|
|
10063
10142
|
title?: string;
|
|
10143
|
+
/**
|
|
10144
|
+
* Return True if this option is the default for its attribute.
|
|
10145
|
+
*/
|
|
10146
|
+
readonly is_default?: boolean;
|
|
10064
10147
|
};
|
|
10065
10148
|
export type NestedAttributeOptionRequest = {
|
|
10066
10149
|
key: string;
|
|
@@ -10069,7 +10152,7 @@ export type NestedAttributeOptionRequest = {
|
|
|
10069
10152
|
export type NestedAttributeRequest = {
|
|
10070
10153
|
key: string;
|
|
10071
10154
|
title: string;
|
|
10072
|
-
type:
|
|
10155
|
+
type: AttributeTypeEnum;
|
|
10073
10156
|
options: Array<NestedAttributeOptionRequest>;
|
|
10074
10157
|
/**
|
|
10075
10158
|
* A value must be provided for the attribute.
|
|
@@ -10077,7 +10160,6 @@ export type NestedAttributeRequest = {
|
|
|
10077
10160
|
required?: boolean;
|
|
10078
10161
|
default?: unknown;
|
|
10079
10162
|
};
|
|
10080
|
-
export type NestedAttributeTypeEnum = 'boolean' | 'string' | 'text' | 'integer' | 'choice' | 'list';
|
|
10081
10163
|
export type NestedCampaign = {
|
|
10082
10164
|
readonly uuid?: string;
|
|
10083
10165
|
name?: string;
|
|
@@ -10827,6 +10909,8 @@ export type Offering = {
|
|
|
10827
10909
|
description?: string;
|
|
10828
10910
|
full_description?: string;
|
|
10829
10911
|
privacy_policy_link?: string;
|
|
10912
|
+
helpdesk_url?: string;
|
|
10913
|
+
documentation_url?: string;
|
|
10830
10914
|
/**
|
|
10831
10915
|
* Publicly accessible offering access URL
|
|
10832
10916
|
*/
|
|
@@ -11059,6 +11143,8 @@ export type OfferingCreateRequest = {
|
|
|
11059
11143
|
description?: string;
|
|
11060
11144
|
full_description?: string;
|
|
11061
11145
|
privacy_policy_link?: string;
|
|
11146
|
+
helpdesk_url?: string;
|
|
11147
|
+
documentation_url?: string;
|
|
11062
11148
|
/**
|
|
11063
11149
|
* Publicly accessible offering access URL
|
|
11064
11150
|
*/
|
|
@@ -11457,6 +11543,8 @@ export type OfferingOverviewUpdateRequest = {
|
|
|
11457
11543
|
description?: string;
|
|
11458
11544
|
full_description?: string;
|
|
11459
11545
|
privacy_policy_link?: string;
|
|
11546
|
+
helpdesk_url?: string;
|
|
11547
|
+
documentation_url?: string;
|
|
11460
11548
|
/**
|
|
11461
11549
|
* Publicly accessible offering access URL
|
|
11462
11550
|
*/
|
|
@@ -14620,6 +14708,7 @@ export type OrderDetails = {
|
|
|
14620
14708
|
readonly provider_name?: string;
|
|
14621
14709
|
readonly provider_uuid?: string;
|
|
14622
14710
|
readonly provider_slug?: string;
|
|
14711
|
+
readonly provider_description?: string;
|
|
14623
14712
|
readonly category_title?: string;
|
|
14624
14713
|
readonly category_uuid?: string;
|
|
14625
14714
|
readonly category_icon?: string;
|
|
@@ -15004,6 +15093,22 @@ export type PatchedAssignmentItemRequest = {
|
|
|
15004
15093
|
*/
|
|
15005
15094
|
decline_reason?: string;
|
|
15006
15095
|
};
|
|
15096
|
+
export type PatchedAttributeOptionRequest = {
|
|
15097
|
+
key?: string;
|
|
15098
|
+
title?: string;
|
|
15099
|
+
attribute?: string;
|
|
15100
|
+
};
|
|
15101
|
+
export type PatchedAttributeRequest = {
|
|
15102
|
+
key?: string;
|
|
15103
|
+
title?: string;
|
|
15104
|
+
section?: string;
|
|
15105
|
+
type?: AttributeTypeEnum;
|
|
15106
|
+
/**
|
|
15107
|
+
* A value must be provided for the attribute.
|
|
15108
|
+
*/
|
|
15109
|
+
required?: boolean;
|
|
15110
|
+
default?: unknown;
|
|
15111
|
+
};
|
|
15007
15112
|
export type PatchedAwsInstanceRequest = {
|
|
15008
15113
|
name?: string;
|
|
15009
15114
|
description?: string;
|
|
@@ -15327,7 +15432,7 @@ export type PatchedCustomerServiceAccountRequest = {
|
|
|
15327
15432
|
error_traceback?: string;
|
|
15328
15433
|
email?: string;
|
|
15329
15434
|
preferred_identifier?: string;
|
|
15330
|
-
customer?: string;
|
|
15435
|
+
customer?: string | null;
|
|
15331
15436
|
};
|
|
15332
15437
|
export type PatchedDigitalOceanDropletRequest = {
|
|
15333
15438
|
name?: string;
|
|
@@ -16094,7 +16199,7 @@ export type PatchedProjectServiceAccountRequest = {
|
|
|
16094
16199
|
error_traceback?: string;
|
|
16095
16200
|
email?: string;
|
|
16096
16201
|
preferred_identifier?: string;
|
|
16097
|
-
project?: string;
|
|
16202
|
+
project?: string | null;
|
|
16098
16203
|
};
|
|
16099
16204
|
export type PatchedProjectTemplateRequest = {
|
|
16100
16205
|
name?: string;
|
|
@@ -17304,6 +17409,14 @@ export type Project = {
|
|
|
17304
17409
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
17305
17410
|
*/
|
|
17306
17411
|
grace_period_days?: number | null;
|
|
17412
|
+
/**
|
|
17413
|
+
* Effective end date including grace period. After this date, project resources will be terminated.
|
|
17414
|
+
*/
|
|
17415
|
+
readonly effective_end_date?: string;
|
|
17416
|
+
/**
|
|
17417
|
+
* True if the project is past its end date but still within the grace period.
|
|
17418
|
+
*/
|
|
17419
|
+
readonly is_in_grace_period?: boolean;
|
|
17307
17420
|
user_email_patterns?: unknown;
|
|
17308
17421
|
user_affiliations?: unknown;
|
|
17309
17422
|
/**
|
|
@@ -17454,6 +17567,60 @@ export type ProjectDigestPreviewResponse = {
|
|
|
17454
17567
|
html_body: string;
|
|
17455
17568
|
text_body: string;
|
|
17456
17569
|
};
|
|
17570
|
+
export type ProjectEndDateChangeRequest = {
|
|
17571
|
+
readonly url: string;
|
|
17572
|
+
readonly uuid: string;
|
|
17573
|
+
readonly state: string;
|
|
17574
|
+
project: string;
|
|
17575
|
+
readonly project_uuid: string;
|
|
17576
|
+
readonly project_name: string;
|
|
17577
|
+
readonly customer_uuid: string;
|
|
17578
|
+
readonly customer_name: string;
|
|
17579
|
+
/**
|
|
17580
|
+
* The requested new end date for the project
|
|
17581
|
+
*/
|
|
17582
|
+
requested_end_date: string;
|
|
17583
|
+
readonly created: string;
|
|
17584
|
+
readonly created_by_uuid: string | null;
|
|
17585
|
+
readonly created_by_full_name: string | null;
|
|
17586
|
+
/**
|
|
17587
|
+
* Timestamp when the review was completed
|
|
17588
|
+
*/
|
|
17589
|
+
readonly reviewed_at: string | null;
|
|
17590
|
+
readonly reviewed_by_uuid: string | null;
|
|
17591
|
+
readonly reviewed_by_full_name: string | null;
|
|
17592
|
+
/**
|
|
17593
|
+
* Optional comment provided during review
|
|
17594
|
+
*/
|
|
17595
|
+
review_comment?: string | null;
|
|
17596
|
+
};
|
|
17597
|
+
export type ProjectEndDateChangeRequestCreate = {
|
|
17598
|
+
project: string;
|
|
17599
|
+
/**
|
|
17600
|
+
* The requested new end date for the project
|
|
17601
|
+
*/
|
|
17602
|
+
requested_end_date: string;
|
|
17603
|
+
readonly uuid: string;
|
|
17604
|
+
readonly state: string;
|
|
17605
|
+
};
|
|
17606
|
+
export type ProjectEndDateChangeRequestCreateRequest = {
|
|
17607
|
+
project: string;
|
|
17608
|
+
/**
|
|
17609
|
+
* The requested new end date for the project
|
|
17610
|
+
*/
|
|
17611
|
+
requested_end_date: string;
|
|
17612
|
+
};
|
|
17613
|
+
export type ProjectEndDateChangeRequestRequest = {
|
|
17614
|
+
project: string;
|
|
17615
|
+
/**
|
|
17616
|
+
* The requested new end date for the project
|
|
17617
|
+
*/
|
|
17618
|
+
requested_end_date: string;
|
|
17619
|
+
/**
|
|
17620
|
+
* Optional comment provided during review
|
|
17621
|
+
*/
|
|
17622
|
+
review_comment?: string | null;
|
|
17623
|
+
};
|
|
17457
17624
|
export type ProjectEstimatedCostPolicy = {
|
|
17458
17625
|
readonly uuid: string;
|
|
17459
17626
|
readonly url: string;
|
|
@@ -17637,7 +17804,7 @@ export type ProjectServiceAccount = {
|
|
|
17637
17804
|
email?: string;
|
|
17638
17805
|
readonly expires_at: string | null;
|
|
17639
17806
|
preferred_identifier?: string;
|
|
17640
|
-
project: string;
|
|
17807
|
+
project: string | null;
|
|
17641
17808
|
readonly project_uuid: string;
|
|
17642
17809
|
readonly project_name: string;
|
|
17643
17810
|
readonly customer_uuid: string;
|
|
@@ -17650,7 +17817,7 @@ export type ProjectServiceAccountRequest = {
|
|
|
17650
17817
|
error_traceback?: string;
|
|
17651
17818
|
email?: string;
|
|
17652
17819
|
preferred_identifier?: string;
|
|
17653
|
-
project: string;
|
|
17820
|
+
project: string | null;
|
|
17654
17821
|
};
|
|
17655
17822
|
export type ProjectTemplate = {
|
|
17656
17823
|
readonly uuid: string;
|
|
@@ -18243,6 +18410,8 @@ export type ProviderOfferingDetails = {
|
|
|
18243
18410
|
description?: string;
|
|
18244
18411
|
full_description?: string;
|
|
18245
18412
|
privacy_policy_link?: string;
|
|
18413
|
+
helpdesk_url?: string;
|
|
18414
|
+
documentation_url?: string;
|
|
18246
18415
|
/**
|
|
18247
18416
|
* Publicly accessible offering access URL
|
|
18248
18417
|
*/
|
|
@@ -18345,6 +18514,8 @@ export type ProviderOfferingDetailsRequest = {
|
|
|
18345
18514
|
description?: string;
|
|
18346
18515
|
full_description?: string;
|
|
18347
18516
|
privacy_policy_link?: string;
|
|
18517
|
+
helpdesk_url?: string;
|
|
18518
|
+
documentation_url?: string;
|
|
18348
18519
|
/**
|
|
18349
18520
|
* Publicly accessible offering access URL
|
|
18350
18521
|
*/
|
|
@@ -18649,6 +18820,8 @@ export type PublicOfferingDetails = {
|
|
|
18649
18820
|
description?: string;
|
|
18650
18821
|
full_description?: string;
|
|
18651
18822
|
privacy_policy_link?: string;
|
|
18823
|
+
helpdesk_url?: string;
|
|
18824
|
+
documentation_url?: string;
|
|
18652
18825
|
/**
|
|
18653
18826
|
* Publicly accessible offering access URL
|
|
18654
18827
|
*/
|
|
@@ -20491,6 +20664,7 @@ export type Resource = {
|
|
|
20491
20664
|
readonly provider_name?: string;
|
|
20492
20665
|
readonly provider_uuid?: string;
|
|
20493
20666
|
readonly provider_slug?: string;
|
|
20667
|
+
readonly provider_description?: string;
|
|
20494
20668
|
readonly category_title?: string;
|
|
20495
20669
|
readonly category_uuid?: string;
|
|
20496
20670
|
readonly category_icon?: string;
|
|
@@ -20524,6 +20698,10 @@ export type Resource = {
|
|
|
20524
20698
|
* The date is inclusive. Once reached, all project resource will be scheduled for termination.
|
|
20525
20699
|
*/
|
|
20526
20700
|
readonly project_end_date?: string | null;
|
|
20701
|
+
/**
|
|
20702
|
+
* Effective project end date including grace period. After this date, resources will be terminated.
|
|
20703
|
+
*/
|
|
20704
|
+
readonly project_effective_end_date?: string;
|
|
20527
20705
|
readonly project_end_date_requested_by?: string;
|
|
20528
20706
|
readonly customer_uuid?: string;
|
|
20529
20707
|
readonly customer_name?: string;
|
|
@@ -24962,6 +25140,10 @@ export type OpenStackCreateInstancePortRequest = {
|
|
|
24962
25140
|
*/
|
|
24963
25141
|
subnet?: string | null;
|
|
24964
25142
|
port?: string;
|
|
25143
|
+
/**
|
|
25144
|
+
* If True, security groups and rules will be applied to this port
|
|
25145
|
+
*/
|
|
25146
|
+
port_security_enabled?: boolean;
|
|
24965
25147
|
};
|
|
24966
25148
|
export type OpenStackDataVolumeRequest = {
|
|
24967
25149
|
size: number;
|
|
@@ -25571,6 +25753,8 @@ export type OfferingCreateRequestForm = {
|
|
|
25571
25753
|
description?: string;
|
|
25572
25754
|
full_description?: string;
|
|
25573
25755
|
privacy_policy_link?: string;
|
|
25756
|
+
helpdesk_url?: string;
|
|
25757
|
+
documentation_url?: string;
|
|
25574
25758
|
/**
|
|
25575
25759
|
* Publicly accessible offering access URL
|
|
25576
25760
|
*/
|
|
@@ -25624,6 +25808,8 @@ export type OfferingCreateRequestMultipart = {
|
|
|
25624
25808
|
description?: string;
|
|
25625
25809
|
full_description?: string;
|
|
25626
25810
|
privacy_policy_link?: string;
|
|
25811
|
+
helpdesk_url?: string;
|
|
25812
|
+
documentation_url?: string;
|
|
25627
25813
|
/**
|
|
25628
25814
|
* Publicly accessible offering access URL
|
|
25629
25815
|
*/
|
|
@@ -26174,10 +26360,12 @@ export type ConstanceSettingsRequestForm = {
|
|
|
26174
26360
|
ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
|
|
26175
26361
|
ONBOARDING_BREG_API_URL?: string;
|
|
26176
26362
|
LLM_CHAT_ENABLED?: boolean;
|
|
26363
|
+
LLM_CHAT_ENABLED_ROLES?: LlmchatenabledrolesEnum;
|
|
26177
26364
|
LLM_INFERENCES_BACKEND_TYPE?: string;
|
|
26178
26365
|
LLM_INFERENCES_API_URL?: string;
|
|
26179
26366
|
LLM_INFERENCES_API_TOKEN?: string;
|
|
26180
26367
|
LLM_INFERENCES_MODEL?: string;
|
|
26368
|
+
LLM_COMPLETION_KWARGS?: string;
|
|
26181
26369
|
LLM_TOKEN_LIMIT_DAILY?: number;
|
|
26182
26370
|
LLM_TOKEN_LIMIT_WEEKLY?: number;
|
|
26183
26371
|
LLM_TOKEN_LIMIT_MONTHLY?: number;
|
|
@@ -26222,6 +26410,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
26222
26410
|
ENABLE_PROJECT_DIGEST?: boolean;
|
|
26223
26411
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
26224
26412
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
26413
|
+
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
26225
26414
|
};
|
|
26226
26415
|
export type ConstanceSettingsRequestMultipart = {
|
|
26227
26416
|
SITE_NAME?: string;
|
|
@@ -26419,10 +26608,12 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
26419
26608
|
ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
|
|
26420
26609
|
ONBOARDING_BREG_API_URL?: string;
|
|
26421
26610
|
LLM_CHAT_ENABLED?: boolean;
|
|
26611
|
+
LLM_CHAT_ENABLED_ROLES?: LlmchatenabledrolesEnum;
|
|
26422
26612
|
LLM_INFERENCES_BACKEND_TYPE?: string;
|
|
26423
26613
|
LLM_INFERENCES_API_URL?: string;
|
|
26424
26614
|
LLM_INFERENCES_API_TOKEN?: string;
|
|
26425
26615
|
LLM_INFERENCES_MODEL?: string;
|
|
26616
|
+
LLM_COMPLETION_KWARGS?: string;
|
|
26426
26617
|
LLM_TOKEN_LIMIT_DAILY?: number;
|
|
26427
26618
|
LLM_TOKEN_LIMIT_WEEKLY?: number;
|
|
26428
26619
|
LLM_TOKEN_LIMIT_MONTHLY?: number;
|
|
@@ -26467,6 +26658,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
26467
26658
|
ENABLE_PROJECT_DIGEST?: boolean;
|
|
26468
26659
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
26469
26660
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
26661
|
+
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
26470
26662
|
};
|
|
26471
26663
|
export type PaymentRequestForm = {
|
|
26472
26664
|
profile: string;
|
|
@@ -26892,8 +27084,8 @@ export type AzureSqlDatabaseFieldEnum = 'access_url' | 'backend_id' | 'charset'
|
|
|
26892
27084
|
export type AzureSqlServerFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fqdn' | 'is_limit_based' | 'is_usage_based' | 'location' | 'location_name' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'password' | 'project' | 'project_name' | 'project_uuid' | 'resource_group' | 'resource_group_name' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'storage_mb' | 'url' | 'username' | 'uuid';
|
|
26893
27085
|
export type AzureVirtualMachineFieldEnum = 'access_url' | 'backend_id' | 'cores' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'disk' | 'error_message' | 'error_traceback' | 'external_ips' | 'image' | 'image_name' | 'internal_ips' | 'is_limit_based' | 'is_usage_based' | 'key_fingerprint' | 'key_name' | 'latitude' | 'location' | 'location_name' | 'longitude' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'min_disk' | 'min_ram' | 'modified' | 'name' | 'password' | 'project' | 'project_name' | 'project_uuid' | 'ram' | 'resource_group' | 'resource_group_name' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'size_name' | 'ssh_public_key' | 'start_time' | 'state' | 'url' | 'user_data' | 'username' | 'uuid';
|
|
26894
27086
|
export type BackendResourceReqOEnum = '-created' | 'created';
|
|
26895
|
-
export type OfferingFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details';
|
|
26896
|
-
export type BookingResourceFieldEnum = 'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid';
|
|
27087
|
+
export type OfferingFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details';
|
|
27088
|
+
export type BookingResourceFieldEnum = 'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_effective_end_date' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid';
|
|
26897
27089
|
export type BookingResourceOEnum = '-created' | '-name' | '-schedules' | '-type' | 'created' | 'name' | 'schedules' | 'type';
|
|
26898
27090
|
export type BroadcastMessageFieldEnum = 'author_full_name' | 'body' | 'created' | 'emails' | 'query' | 'send_at' | 'state' | 'subject' | 'uuid';
|
|
26899
27091
|
export type BroadcastMessageOEnum = '-author_full_name' | '-created' | '-subject' | 'author_full_name' | 'created' | 'subject';
|
|
@@ -26928,7 +27120,7 @@ export type SshKeyFieldEnum = 'fingerprint_md5' | 'fingerprint_sha256' | 'finger
|
|
|
26928
27120
|
export type SshKeyOEnum = '-name' | 'name';
|
|
26929
27121
|
export type MaintenanceAnnouncementOEnum = '-created' | '-name' | '-scheduled_end' | '-scheduled_start' | 'created' | 'name' | 'scheduled_end' | 'scheduled_start';
|
|
26930
27122
|
export type MaintenanceAnnouncementTemplateOEnum = '-created' | '-name' | 'created' | 'name';
|
|
26931
|
-
export type ResourceFieldEnum = 'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid';
|
|
27123
|
+
export type ResourceFieldEnum = 'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_effective_end_date' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid';
|
|
26932
27124
|
export type MarketplaceCategoryFieldEnum = 'articles' | 'available_offerings_count' | 'columns' | 'components' | 'default_tenant_category' | 'default_vm_category' | 'default_volume_category' | 'description' | 'group' | 'icon' | 'offering_count' | 'sections' | 'title' | 'url' | 'uuid';
|
|
26933
27125
|
export type CategoryComponentUsageFieldEnum = 'category_title' | 'category_uuid' | 'date' | 'fixed_usage' | 'measured_unit' | 'name' | 'reported_usage' | 'scope' | 'type';
|
|
26934
27126
|
export type CategoryGroupFieldEnum = 'description' | 'icon' | 'title' | 'url' | 'uuid';
|
|
@@ -26946,16 +27138,16 @@ export type OfferingTermsOfServiceOEnum = '-created' | '-modified' | '-version'
|
|
|
26946
27138
|
export type UserChecklistCompletionOEnum = '-is_completed' | '-modified' | 'is_completed' | 'modified';
|
|
26947
27139
|
export type OfferingUserFieldEnum = 'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_profile_complete' | 'is_restricted' | 'missing_profile_attributes' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_active_isds' | 'user_affiliations' | 'user_birth_date' | 'user_civil_number' | 'user_country_of_residence' | 'user_eduperson_assurance' | 'user_email' | 'user_first_name' | 'user_full_name' | 'user_gender' | 'user_identity_source' | 'user_job_title' | 'user_last_name' | 'user_nationalities' | 'user_nationality' | 'user_organization' | 'user_organization_country' | 'user_organization_registry_code' | 'user_organization_type' | 'user_personal_title' | 'user_phone_number' | 'user_place_of_birth' | 'user_username' | 'user_uuid' | 'username' | 'uuid';
|
|
26948
27140
|
export type OfferingUserOEnum = '-created' | '-modified' | '-username' | 'created' | 'modified' | 'username';
|
|
26949
|
-
export type OrderDetailsFieldEnum = 'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_message' | 'consumer_message_attachment' | 'consumer_rejection_comment' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_email' | 'created_by_full_name' | 'created_by_organization' | 'created_by_organization_registry_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'order_subtype' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_message' | 'provider_message_attachment' | 'provider_message_url' | 'provider_name' | 'provider_rejection_comment' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'slug' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid';
|
|
27141
|
+
export type OrderDetailsFieldEnum = 'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_message' | 'consumer_message_attachment' | 'consumer_rejection_comment' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_email' | 'created_by_full_name' | 'created_by_organization' | 'created_by_organization_registry_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'order_subtype' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_message' | 'provider_message_attachment' | 'provider_message_url' | 'provider_name' | 'provider_rejection_comment' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'slug' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid';
|
|
26950
27142
|
export type OrderDetailsOEnum = '-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state';
|
|
26951
27143
|
export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'draft' | 'pending' | 'rejected';
|
|
26952
|
-
export type ProviderOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_id_rules' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details';
|
|
27144
|
+
export type ProviderOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_id_rules' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details';
|
|
26953
27145
|
export type ProviderOfferingDetailsOEnum = '-created' | '-name' | '-state' | '-total_cost' | '-total_cost_estimated' | '-total_customers' | '-type' | 'created' | 'name' | 'state' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type';
|
|
26954
27146
|
export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
|
|
26955
|
-
export type ProjectFieldEnum = 'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
|
|
27147
|
+
export type ProjectFieldEnum = 'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'effective_end_date' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_in_grace_period' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
|
|
26956
27148
|
export type UserFieldEnum = 'active_isds' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'has_usable_password' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_identity_manager' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'managed_isds' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'permissions' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
|
|
26957
27149
|
export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
|
|
26958
|
-
export type PublicOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details';
|
|
27150
|
+
export type PublicOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details';
|
|
26959
27151
|
export type RobotAccountDetailsFieldEnum = 'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fingerprints' | 'keys' | 'modified' | 'offering_plugin_options' | 'project_name' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'resource' | 'resource_name' | 'resource_uuid' | 'responsible_user' | 'state' | 'type' | 'url' | 'user_keys' | 'username' | 'users' | 'uuid';
|
|
26960
27152
|
export type ServiceProviderFieldEnum = 'allowed_domains' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'enable_notifications' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid';
|
|
26961
27153
|
export type MarketplaceProviderCustomerProjectFieldEnum = 'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid';
|
|
@@ -28758,6 +28950,18 @@ export type AssignmentItemsDeclineResponses = {
|
|
|
28758
28950
|
200: AssignmentItemResponse;
|
|
28759
28951
|
};
|
|
28760
28952
|
export type AssignmentItemsDeclineResponse = AssignmentItemsDeclineResponses[keyof AssignmentItemsDeclineResponses];
|
|
28953
|
+
export type AssignmentItemsForceUnblockData = {
|
|
28954
|
+
body: ForceUnblockRequest;
|
|
28955
|
+
path: {
|
|
28956
|
+
uuid: string;
|
|
28957
|
+
};
|
|
28958
|
+
query?: never;
|
|
28959
|
+
url: '/api/assignment-items/{uuid}/force-unblock/';
|
|
28960
|
+
};
|
|
28961
|
+
export type AssignmentItemsForceUnblockResponses = {
|
|
28962
|
+
200: AssignmentItem;
|
|
28963
|
+
};
|
|
28964
|
+
export type AssignmentItemsForceUnblockResponse = AssignmentItemsForceUnblockResponses[keyof AssignmentItemsForceUnblockResponses];
|
|
28761
28965
|
export type AssignmentItemsReassignData = {
|
|
28762
28966
|
body: ReassignItemRequest;
|
|
28763
28967
|
path: {
|
|
@@ -31347,6 +31551,10 @@ export type BackendResourceRequestsListData = {
|
|
|
31347
31551
|
* Created after
|
|
31348
31552
|
*/
|
|
31349
31553
|
created?: string;
|
|
31554
|
+
/**
|
|
31555
|
+
* Created before
|
|
31556
|
+
*/
|
|
31557
|
+
created_before?: string;
|
|
31350
31558
|
/**
|
|
31351
31559
|
* Modified after
|
|
31352
31560
|
*/
|
|
@@ -31355,6 +31563,10 @@ export type BackendResourceRequestsListData = {
|
|
|
31355
31563
|
* Modified after
|
|
31356
31564
|
*/
|
|
31357
31565
|
modified?: string;
|
|
31566
|
+
/**
|
|
31567
|
+
* Modified before
|
|
31568
|
+
*/
|
|
31569
|
+
modified_before?: string;
|
|
31358
31570
|
/**
|
|
31359
31571
|
* Ordering
|
|
31360
31572
|
*
|
|
@@ -31398,6 +31610,10 @@ export type BackendResourceRequestsCountData = {
|
|
|
31398
31610
|
* Created after
|
|
31399
31611
|
*/
|
|
31400
31612
|
created?: string;
|
|
31613
|
+
/**
|
|
31614
|
+
* Created before
|
|
31615
|
+
*/
|
|
31616
|
+
created_before?: string;
|
|
31401
31617
|
/**
|
|
31402
31618
|
* Modified after
|
|
31403
31619
|
*/
|
|
@@ -31406,6 +31622,10 @@ export type BackendResourceRequestsCountData = {
|
|
|
31406
31622
|
* Modified after
|
|
31407
31623
|
*/
|
|
31408
31624
|
modified?: string;
|
|
31625
|
+
/**
|
|
31626
|
+
* Modified before
|
|
31627
|
+
*/
|
|
31628
|
+
modified_before?: string;
|
|
31409
31629
|
/**
|
|
31410
31630
|
* Ordering
|
|
31411
31631
|
*
|
|
@@ -31519,10 +31739,18 @@ export type BackendResourcesListData = {
|
|
|
31519
31739
|
* Created after
|
|
31520
31740
|
*/
|
|
31521
31741
|
created?: string;
|
|
31742
|
+
/**
|
|
31743
|
+
* Created before
|
|
31744
|
+
*/
|
|
31745
|
+
created_before?: string;
|
|
31522
31746
|
/**
|
|
31523
31747
|
* Modified after
|
|
31524
31748
|
*/
|
|
31525
31749
|
modified?: string;
|
|
31750
|
+
/**
|
|
31751
|
+
* Modified before
|
|
31752
|
+
*/
|
|
31753
|
+
modified_before?: string;
|
|
31526
31754
|
/**
|
|
31527
31755
|
* Name
|
|
31528
31756
|
*/
|
|
@@ -31572,10 +31800,18 @@ export type BackendResourcesCountData = {
|
|
|
31572
31800
|
* Created after
|
|
31573
31801
|
*/
|
|
31574
31802
|
created?: string;
|
|
31803
|
+
/**
|
|
31804
|
+
* Created before
|
|
31805
|
+
*/
|
|
31806
|
+
created_before?: string;
|
|
31575
31807
|
/**
|
|
31576
31808
|
* Modified after
|
|
31577
31809
|
*/
|
|
31578
31810
|
modified?: string;
|
|
31811
|
+
/**
|
|
31812
|
+
* Modified before
|
|
31813
|
+
*/
|
|
31814
|
+
modified_before?: string;
|
|
31579
31815
|
/**
|
|
31580
31816
|
* Name
|
|
31581
31817
|
*/
|
|
@@ -31798,6 +32034,10 @@ export type BookingResourcesListData = {
|
|
|
31798
32034
|
* Created after
|
|
31799
32035
|
*/
|
|
31800
32036
|
created?: string;
|
|
32037
|
+
/**
|
|
32038
|
+
* Created before
|
|
32039
|
+
*/
|
|
32040
|
+
created_before?: string;
|
|
31801
32041
|
/**
|
|
31802
32042
|
* Customer URL
|
|
31803
32043
|
*/
|
|
@@ -31835,6 +32075,10 @@ export type BookingResourcesListData = {
|
|
|
31835
32075
|
* Modified after
|
|
31836
32076
|
*/
|
|
31837
32077
|
modified?: string;
|
|
32078
|
+
/**
|
|
32079
|
+
* Modified before
|
|
32080
|
+
*/
|
|
32081
|
+
modified_before?: string;
|
|
31838
32082
|
/**
|
|
31839
32083
|
* Name
|
|
31840
32084
|
*/
|
|
@@ -31975,6 +32219,10 @@ export type BookingResourcesCountData = {
|
|
|
31975
32219
|
* Created after
|
|
31976
32220
|
*/
|
|
31977
32221
|
created?: string;
|
|
32222
|
+
/**
|
|
32223
|
+
* Created before
|
|
32224
|
+
*/
|
|
32225
|
+
created_before?: string;
|
|
31978
32226
|
/**
|
|
31979
32227
|
* Customer URL
|
|
31980
32228
|
*/
|
|
@@ -32011,6 +32259,10 @@ export type BookingResourcesCountData = {
|
|
|
32011
32259
|
* Modified after
|
|
32012
32260
|
*/
|
|
32013
32261
|
modified?: string;
|
|
32262
|
+
/**
|
|
32263
|
+
* Modified before
|
|
32264
|
+
*/
|
|
32265
|
+
modified_before?: string;
|
|
32014
32266
|
/**
|
|
32015
32267
|
* Name
|
|
32016
32268
|
*/
|
|
@@ -33001,6 +33253,18 @@ export type CallReviewerPoolsDeclineResponses = {
|
|
|
33001
33253
|
200: InvitationDeclineResponse;
|
|
33002
33254
|
};
|
|
33003
33255
|
export type CallReviewerPoolsDeclineResponse = CallReviewerPoolsDeclineResponses[keyof CallReviewerPoolsDeclineResponses];
|
|
33256
|
+
export type CallReviewerPoolsForceAcceptData = {
|
|
33257
|
+
body: ForceAcceptPoolRequest;
|
|
33258
|
+
path: {
|
|
33259
|
+
uuid: string;
|
|
33260
|
+
};
|
|
33261
|
+
query?: never;
|
|
33262
|
+
url: '/api/call-reviewer-pools/{uuid}/force-accept/';
|
|
33263
|
+
};
|
|
33264
|
+
export type CallReviewerPoolsForceAcceptResponses = {
|
|
33265
|
+
200: CallReviewerPool;
|
|
33266
|
+
};
|
|
33267
|
+
export type CallReviewerPoolsForceAcceptResponse = CallReviewerPoolsForceAcceptResponses[keyof CallReviewerPoolsForceAcceptResponses];
|
|
33004
33268
|
export type CallRoundsListData = {
|
|
33005
33269
|
body?: never;
|
|
33006
33270
|
path?: never;
|
|
@@ -38777,6 +39041,10 @@ export type KeysListData = {
|
|
|
38777
39041
|
* Created after
|
|
38778
39042
|
*/
|
|
38779
39043
|
created?: string;
|
|
39044
|
+
/**
|
|
39045
|
+
* Created before
|
|
39046
|
+
*/
|
|
39047
|
+
created_before?: string;
|
|
38780
39048
|
field?: Array<SshKeyFieldEnum>;
|
|
38781
39049
|
fingerprint_md5?: string;
|
|
38782
39050
|
fingerprint_sha256?: string;
|
|
@@ -38786,6 +39054,10 @@ export type KeysListData = {
|
|
|
38786
39054
|
* Modified after
|
|
38787
39055
|
*/
|
|
38788
39056
|
modified?: string;
|
|
39057
|
+
/**
|
|
39058
|
+
* Modified before
|
|
39059
|
+
*/
|
|
39060
|
+
modified_before?: string;
|
|
38789
39061
|
/**
|
|
38790
39062
|
* Name
|
|
38791
39063
|
*/
|
|
@@ -38831,6 +39103,10 @@ export type KeysCountData = {
|
|
|
38831
39103
|
* Created after
|
|
38832
39104
|
*/
|
|
38833
39105
|
created?: string;
|
|
39106
|
+
/**
|
|
39107
|
+
* Created before
|
|
39108
|
+
*/
|
|
39109
|
+
created_before?: string;
|
|
38834
39110
|
fingerprint_md5?: string;
|
|
38835
39111
|
fingerprint_sha256?: string;
|
|
38836
39112
|
fingerprint_sha512?: string;
|
|
@@ -38839,6 +39115,10 @@ export type KeysCountData = {
|
|
|
38839
39115
|
* Modified after
|
|
38840
39116
|
*/
|
|
38841
39117
|
modified?: string;
|
|
39118
|
+
/**
|
|
39119
|
+
* Modified before
|
|
39120
|
+
*/
|
|
39121
|
+
modified_before?: string;
|
|
38842
39122
|
/**
|
|
38843
39123
|
* Name
|
|
38844
39124
|
*/
|
|
@@ -38943,6 +39223,10 @@ export type KeysHistoryListData = {
|
|
|
38943
39223
|
* Modified after
|
|
38944
39224
|
*/
|
|
38945
39225
|
modified?: string;
|
|
39226
|
+
/**
|
|
39227
|
+
* Modified before
|
|
39228
|
+
*/
|
|
39229
|
+
modified_before?: string;
|
|
38946
39230
|
/**
|
|
38947
39231
|
* Name
|
|
38948
39232
|
*/
|
|
@@ -39848,6 +40132,224 @@ export type ManagedRancherClusterResourcesAddNodeResponses = {
|
|
|
39848
40132
|
200: RancherNode;
|
|
39849
40133
|
};
|
|
39850
40134
|
export type ManagedRancherClusterResourcesAddNodeResponse = ManagedRancherClusterResourcesAddNodeResponses[keyof ManagedRancherClusterResourcesAddNodeResponses];
|
|
40135
|
+
export type MarketplaceAttributeOptionsListData = {
|
|
40136
|
+
body?: never;
|
|
40137
|
+
path?: never;
|
|
40138
|
+
query?: {
|
|
40139
|
+
/**
|
|
40140
|
+
* Attribute URL
|
|
40141
|
+
*/
|
|
40142
|
+
attribute?: string;
|
|
40143
|
+
/**
|
|
40144
|
+
* A page number within the paginated result set.
|
|
40145
|
+
*/
|
|
40146
|
+
page?: number;
|
|
40147
|
+
/**
|
|
40148
|
+
* Number of results to return per page.
|
|
40149
|
+
*/
|
|
40150
|
+
page_size?: number;
|
|
40151
|
+
};
|
|
40152
|
+
url: '/api/marketplace-attribute-options/';
|
|
40153
|
+
};
|
|
40154
|
+
export type MarketplaceAttributeOptionsListResponses = {
|
|
40155
|
+
200: Array<AttributeOption>;
|
|
40156
|
+
};
|
|
40157
|
+
export type MarketplaceAttributeOptionsListResponse = MarketplaceAttributeOptionsListResponses[keyof MarketplaceAttributeOptionsListResponses];
|
|
40158
|
+
export type MarketplaceAttributeOptionsCountData = {
|
|
40159
|
+
body?: never;
|
|
40160
|
+
path?: never;
|
|
40161
|
+
query?: {
|
|
40162
|
+
/**
|
|
40163
|
+
* Attribute URL
|
|
40164
|
+
*/
|
|
40165
|
+
attribute?: string;
|
|
40166
|
+
/**
|
|
40167
|
+
* A page number within the paginated result set.
|
|
40168
|
+
*/
|
|
40169
|
+
page?: number;
|
|
40170
|
+
/**
|
|
40171
|
+
* Number of results to return per page.
|
|
40172
|
+
*/
|
|
40173
|
+
page_size?: number;
|
|
40174
|
+
};
|
|
40175
|
+
url: '/api/marketplace-attribute-options/';
|
|
40176
|
+
};
|
|
40177
|
+
export type MarketplaceAttributeOptionsCountResponses = {
|
|
40178
|
+
/**
|
|
40179
|
+
* No response body
|
|
40180
|
+
*/
|
|
40181
|
+
200: unknown;
|
|
40182
|
+
};
|
|
40183
|
+
export type MarketplaceAttributeOptionsCreateData = {
|
|
40184
|
+
body: AttributeOptionRequest;
|
|
40185
|
+
path?: never;
|
|
40186
|
+
query?: never;
|
|
40187
|
+
url: '/api/marketplace-attribute-options/';
|
|
40188
|
+
};
|
|
40189
|
+
export type MarketplaceAttributeOptionsCreateResponses = {
|
|
40190
|
+
201: AttributeOption;
|
|
40191
|
+
};
|
|
40192
|
+
export type MarketplaceAttributeOptionsCreateResponse = MarketplaceAttributeOptionsCreateResponses[keyof MarketplaceAttributeOptionsCreateResponses];
|
|
40193
|
+
export type MarketplaceAttributeOptionsDestroyData = {
|
|
40194
|
+
body?: never;
|
|
40195
|
+
path: {
|
|
40196
|
+
uuid: string;
|
|
40197
|
+
};
|
|
40198
|
+
query?: never;
|
|
40199
|
+
url: '/api/marketplace-attribute-options/{uuid}/';
|
|
40200
|
+
};
|
|
40201
|
+
export type MarketplaceAttributeOptionsDestroyResponses = {
|
|
40202
|
+
/**
|
|
40203
|
+
* No response body
|
|
40204
|
+
*/
|
|
40205
|
+
204: void;
|
|
40206
|
+
};
|
|
40207
|
+
export type MarketplaceAttributeOptionsDestroyResponse = MarketplaceAttributeOptionsDestroyResponses[keyof MarketplaceAttributeOptionsDestroyResponses];
|
|
40208
|
+
export type MarketplaceAttributeOptionsRetrieveData = {
|
|
40209
|
+
body?: never;
|
|
40210
|
+
path: {
|
|
40211
|
+
uuid: string;
|
|
40212
|
+
};
|
|
40213
|
+
query?: never;
|
|
40214
|
+
url: '/api/marketplace-attribute-options/{uuid}/';
|
|
40215
|
+
};
|
|
40216
|
+
export type MarketplaceAttributeOptionsRetrieveResponses = {
|
|
40217
|
+
200: AttributeOption;
|
|
40218
|
+
};
|
|
40219
|
+
export type MarketplaceAttributeOptionsRetrieveResponse = MarketplaceAttributeOptionsRetrieveResponses[keyof MarketplaceAttributeOptionsRetrieveResponses];
|
|
40220
|
+
export type MarketplaceAttributeOptionsPartialUpdateData = {
|
|
40221
|
+
body?: PatchedAttributeOptionRequest;
|
|
40222
|
+
path: {
|
|
40223
|
+
uuid: string;
|
|
40224
|
+
};
|
|
40225
|
+
query?: never;
|
|
40226
|
+
url: '/api/marketplace-attribute-options/{uuid}/';
|
|
40227
|
+
};
|
|
40228
|
+
export type MarketplaceAttributeOptionsPartialUpdateResponses = {
|
|
40229
|
+
200: AttributeOption;
|
|
40230
|
+
};
|
|
40231
|
+
export type MarketplaceAttributeOptionsPartialUpdateResponse = MarketplaceAttributeOptionsPartialUpdateResponses[keyof MarketplaceAttributeOptionsPartialUpdateResponses];
|
|
40232
|
+
export type MarketplaceAttributeOptionsUpdateData = {
|
|
40233
|
+
body: AttributeOptionRequest;
|
|
40234
|
+
path: {
|
|
40235
|
+
uuid: string;
|
|
40236
|
+
};
|
|
40237
|
+
query?: never;
|
|
40238
|
+
url: '/api/marketplace-attribute-options/{uuid}/';
|
|
40239
|
+
};
|
|
40240
|
+
export type MarketplaceAttributeOptionsUpdateResponses = {
|
|
40241
|
+
200: AttributeOption;
|
|
40242
|
+
};
|
|
40243
|
+
export type MarketplaceAttributeOptionsUpdateResponse = MarketplaceAttributeOptionsUpdateResponses[keyof MarketplaceAttributeOptionsUpdateResponses];
|
|
40244
|
+
export type MarketplaceAttributesListData = {
|
|
40245
|
+
body?: never;
|
|
40246
|
+
path?: never;
|
|
40247
|
+
query?: {
|
|
40248
|
+
/**
|
|
40249
|
+
* A page number within the paginated result set.
|
|
40250
|
+
*/
|
|
40251
|
+
page?: number;
|
|
40252
|
+
/**
|
|
40253
|
+
* Number of results to return per page.
|
|
40254
|
+
*/
|
|
40255
|
+
page_size?: number;
|
|
40256
|
+
/**
|
|
40257
|
+
* Section URL
|
|
40258
|
+
*/
|
|
40259
|
+
section?: string;
|
|
40260
|
+
};
|
|
40261
|
+
url: '/api/marketplace-attributes/';
|
|
40262
|
+
};
|
|
40263
|
+
export type MarketplaceAttributesListResponses = {
|
|
40264
|
+
200: Array<Attribute>;
|
|
40265
|
+
};
|
|
40266
|
+
export type MarketplaceAttributesListResponse = MarketplaceAttributesListResponses[keyof MarketplaceAttributesListResponses];
|
|
40267
|
+
export type MarketplaceAttributesCountData = {
|
|
40268
|
+
body?: never;
|
|
40269
|
+
path?: never;
|
|
40270
|
+
query?: {
|
|
40271
|
+
/**
|
|
40272
|
+
* A page number within the paginated result set.
|
|
40273
|
+
*/
|
|
40274
|
+
page?: number;
|
|
40275
|
+
/**
|
|
40276
|
+
* Number of results to return per page.
|
|
40277
|
+
*/
|
|
40278
|
+
page_size?: number;
|
|
40279
|
+
/**
|
|
40280
|
+
* Section URL
|
|
40281
|
+
*/
|
|
40282
|
+
section?: string;
|
|
40283
|
+
};
|
|
40284
|
+
url: '/api/marketplace-attributes/';
|
|
40285
|
+
};
|
|
40286
|
+
export type MarketplaceAttributesCountResponses = {
|
|
40287
|
+
/**
|
|
40288
|
+
* No response body
|
|
40289
|
+
*/
|
|
40290
|
+
200: unknown;
|
|
40291
|
+
};
|
|
40292
|
+
export type MarketplaceAttributesCreateData = {
|
|
40293
|
+
body: AttributeRequest;
|
|
40294
|
+
path?: never;
|
|
40295
|
+
query?: never;
|
|
40296
|
+
url: '/api/marketplace-attributes/';
|
|
40297
|
+
};
|
|
40298
|
+
export type MarketplaceAttributesCreateResponses = {
|
|
40299
|
+
201: Attribute;
|
|
40300
|
+
};
|
|
40301
|
+
export type MarketplaceAttributesCreateResponse = MarketplaceAttributesCreateResponses[keyof MarketplaceAttributesCreateResponses];
|
|
40302
|
+
export type MarketplaceAttributesDestroyData = {
|
|
40303
|
+
body?: never;
|
|
40304
|
+
path: {
|
|
40305
|
+
uuid: string;
|
|
40306
|
+
};
|
|
40307
|
+
query?: never;
|
|
40308
|
+
url: '/api/marketplace-attributes/{uuid}/';
|
|
40309
|
+
};
|
|
40310
|
+
export type MarketplaceAttributesDestroyResponses = {
|
|
40311
|
+
/**
|
|
40312
|
+
* No response body
|
|
40313
|
+
*/
|
|
40314
|
+
204: void;
|
|
40315
|
+
};
|
|
40316
|
+
export type MarketplaceAttributesDestroyResponse = MarketplaceAttributesDestroyResponses[keyof MarketplaceAttributesDestroyResponses];
|
|
40317
|
+
export type MarketplaceAttributesRetrieveData = {
|
|
40318
|
+
body?: never;
|
|
40319
|
+
path: {
|
|
40320
|
+
uuid: string;
|
|
40321
|
+
};
|
|
40322
|
+
query?: never;
|
|
40323
|
+
url: '/api/marketplace-attributes/{uuid}/';
|
|
40324
|
+
};
|
|
40325
|
+
export type MarketplaceAttributesRetrieveResponses = {
|
|
40326
|
+
200: Attribute;
|
|
40327
|
+
};
|
|
40328
|
+
export type MarketplaceAttributesRetrieveResponse = MarketplaceAttributesRetrieveResponses[keyof MarketplaceAttributesRetrieveResponses];
|
|
40329
|
+
export type MarketplaceAttributesPartialUpdateData = {
|
|
40330
|
+
body?: PatchedAttributeRequest;
|
|
40331
|
+
path: {
|
|
40332
|
+
uuid: string;
|
|
40333
|
+
};
|
|
40334
|
+
query?: never;
|
|
40335
|
+
url: '/api/marketplace-attributes/{uuid}/';
|
|
40336
|
+
};
|
|
40337
|
+
export type MarketplaceAttributesPartialUpdateResponses = {
|
|
40338
|
+
200: Attribute;
|
|
40339
|
+
};
|
|
40340
|
+
export type MarketplaceAttributesPartialUpdateResponse = MarketplaceAttributesPartialUpdateResponses[keyof MarketplaceAttributesPartialUpdateResponses];
|
|
40341
|
+
export type MarketplaceAttributesUpdateData = {
|
|
40342
|
+
body: AttributeRequest;
|
|
40343
|
+
path: {
|
|
40344
|
+
uuid: string;
|
|
40345
|
+
};
|
|
40346
|
+
query?: never;
|
|
40347
|
+
url: '/api/marketplace-attributes/{uuid}/';
|
|
40348
|
+
};
|
|
40349
|
+
export type MarketplaceAttributesUpdateResponses = {
|
|
40350
|
+
200: Attribute;
|
|
40351
|
+
};
|
|
40352
|
+
export type MarketplaceAttributesUpdateResponse = MarketplaceAttributesUpdateResponses[keyof MarketplaceAttributesUpdateResponses];
|
|
39851
40353
|
export type MarketplaceBookingsListData = {
|
|
39852
40354
|
body?: never;
|
|
39853
40355
|
path: {
|
|
@@ -41066,6 +41568,18 @@ export type MarketplaceCourseAccountsRetrieveResponses = {
|
|
|
41066
41568
|
200: CourseAccount;
|
|
41067
41569
|
};
|
|
41068
41570
|
export type MarketplaceCourseAccountsRetrieveResponse = MarketplaceCourseAccountsRetrieveResponses[keyof MarketplaceCourseAccountsRetrieveResponses];
|
|
41571
|
+
export type MarketplaceCourseAccountsRetryData = {
|
|
41572
|
+
body?: never;
|
|
41573
|
+
path: {
|
|
41574
|
+
uuid: string;
|
|
41575
|
+
};
|
|
41576
|
+
query?: never;
|
|
41577
|
+
url: '/api/marketplace-course-accounts/{uuid}/retry/';
|
|
41578
|
+
};
|
|
41579
|
+
export type MarketplaceCourseAccountsRetryResponses = {
|
|
41580
|
+
202: CourseAccount;
|
|
41581
|
+
};
|
|
41582
|
+
export type MarketplaceCourseAccountsRetryResponse = MarketplaceCourseAccountsRetryResponses[keyof MarketplaceCourseAccountsRetryResponses];
|
|
41069
41583
|
export type MarketplaceCourseAccountsCreateBulkData = {
|
|
41070
41584
|
body: CourseAccountsBulkCreateRequest;
|
|
41071
41585
|
path?: never;
|
|
@@ -42027,6 +42541,10 @@ export type MarketplaceOfferingPermissionsListData = {
|
|
|
42027
42541
|
* Created after
|
|
42028
42542
|
*/
|
|
42029
42543
|
created?: string;
|
|
42544
|
+
/**
|
|
42545
|
+
* Created before
|
|
42546
|
+
*/
|
|
42547
|
+
created_before?: string;
|
|
42030
42548
|
customer?: string;
|
|
42031
42549
|
/**
|
|
42032
42550
|
* User full name contains
|
|
@@ -42036,6 +42554,10 @@ export type MarketplaceOfferingPermissionsListData = {
|
|
|
42036
42554
|
* Modified after
|
|
42037
42555
|
*/
|
|
42038
42556
|
modified?: string;
|
|
42557
|
+
/**
|
|
42558
|
+
* Modified before
|
|
42559
|
+
*/
|
|
42560
|
+
modified_before?: string;
|
|
42039
42561
|
native_name?: string;
|
|
42040
42562
|
/**
|
|
42041
42563
|
* Ordering
|
|
@@ -42094,6 +42616,10 @@ export type MarketplaceOfferingPermissionsCountData = {
|
|
|
42094
42616
|
* Created after
|
|
42095
42617
|
*/
|
|
42096
42618
|
created?: string;
|
|
42619
|
+
/**
|
|
42620
|
+
* Created before
|
|
42621
|
+
*/
|
|
42622
|
+
created_before?: string;
|
|
42097
42623
|
customer?: string;
|
|
42098
42624
|
/**
|
|
42099
42625
|
* User full name contains
|
|
@@ -42103,6 +42629,10 @@ export type MarketplaceOfferingPermissionsCountData = {
|
|
|
42103
42629
|
* Modified after
|
|
42104
42630
|
*/
|
|
42105
42631
|
modified?: string;
|
|
42632
|
+
/**
|
|
42633
|
+
* Modified before
|
|
42634
|
+
*/
|
|
42635
|
+
modified_before?: string;
|
|
42106
42636
|
native_name?: string;
|
|
42107
42637
|
/**
|
|
42108
42638
|
* Ordering
|
|
@@ -42163,6 +42693,10 @@ export type MarketplaceOfferingPermissionsLogListData = {
|
|
|
42163
42693
|
* Created after
|
|
42164
42694
|
*/
|
|
42165
42695
|
created?: string;
|
|
42696
|
+
/**
|
|
42697
|
+
* Created before
|
|
42698
|
+
*/
|
|
42699
|
+
created_before?: string;
|
|
42166
42700
|
customer?: string;
|
|
42167
42701
|
/**
|
|
42168
42702
|
* User full name contains
|
|
@@ -42172,6 +42706,10 @@ export type MarketplaceOfferingPermissionsLogListData = {
|
|
|
42172
42706
|
* Modified after
|
|
42173
42707
|
*/
|
|
42174
42708
|
modified?: string;
|
|
42709
|
+
/**
|
|
42710
|
+
* Modified before
|
|
42711
|
+
*/
|
|
42712
|
+
modified_before?: string;
|
|
42175
42713
|
native_name?: string;
|
|
42176
42714
|
/**
|
|
42177
42715
|
* Ordering
|
|
@@ -42230,6 +42768,10 @@ export type MarketplaceOfferingPermissionsLogCountData = {
|
|
|
42230
42768
|
* Created after
|
|
42231
42769
|
*/
|
|
42232
42770
|
created?: string;
|
|
42771
|
+
/**
|
|
42772
|
+
* Created before
|
|
42773
|
+
*/
|
|
42774
|
+
created_before?: string;
|
|
42233
42775
|
customer?: string;
|
|
42234
42776
|
/**
|
|
42235
42777
|
* User full name contains
|
|
@@ -42239,6 +42781,10 @@ export type MarketplaceOfferingPermissionsLogCountData = {
|
|
|
42239
42781
|
* Modified after
|
|
42240
42782
|
*/
|
|
42241
42783
|
modified?: string;
|
|
42784
|
+
/**
|
|
42785
|
+
* Modified before
|
|
42786
|
+
*/
|
|
42787
|
+
modified_before?: string;
|
|
42242
42788
|
native_name?: string;
|
|
42243
42789
|
/**
|
|
42244
42790
|
* Ordering
|
|
@@ -42681,11 +43227,19 @@ export type MarketplaceOfferingUserChecklistCompletionsListData = {
|
|
|
42681
43227
|
* Created after
|
|
42682
43228
|
*/
|
|
42683
43229
|
created?: string;
|
|
43230
|
+
/**
|
|
43231
|
+
* Created before
|
|
43232
|
+
*/
|
|
43233
|
+
created_before?: string;
|
|
42684
43234
|
is_completed?: boolean;
|
|
42685
43235
|
/**
|
|
42686
43236
|
* Modified after
|
|
42687
43237
|
*/
|
|
42688
43238
|
modified?: string;
|
|
43239
|
+
/**
|
|
43240
|
+
* Modified before
|
|
43241
|
+
*/
|
|
43242
|
+
modified_before?: string;
|
|
42689
43243
|
/**
|
|
42690
43244
|
* Ordering
|
|
42691
43245
|
*
|
|
@@ -42723,11 +43277,19 @@ export type MarketplaceOfferingUserChecklistCompletionsCountData = {
|
|
|
42723
43277
|
* Created after
|
|
42724
43278
|
*/
|
|
42725
43279
|
created?: string;
|
|
43280
|
+
/**
|
|
43281
|
+
* Created before
|
|
43282
|
+
*/
|
|
43283
|
+
created_before?: string;
|
|
42726
43284
|
is_completed?: boolean;
|
|
42727
43285
|
/**
|
|
42728
43286
|
* Modified after
|
|
42729
43287
|
*/
|
|
42730
43288
|
modified?: string;
|
|
43289
|
+
/**
|
|
43290
|
+
* Modified before
|
|
43291
|
+
*/
|
|
43292
|
+
modified_before?: string;
|
|
42731
43293
|
/**
|
|
42732
43294
|
* Ordering
|
|
42733
43295
|
*
|
|
@@ -42903,6 +43465,10 @@ export type MarketplaceOfferingUsersListData = {
|
|
|
42903
43465
|
* Created after
|
|
42904
43466
|
*/
|
|
42905
43467
|
created?: string;
|
|
43468
|
+
/**
|
|
43469
|
+
* Created before
|
|
43470
|
+
*/
|
|
43471
|
+
created_before?: string;
|
|
42906
43472
|
field?: Array<OfferingUserFieldEnum>;
|
|
42907
43473
|
/**
|
|
42908
43474
|
* User has complete profile for the offering
|
|
@@ -42920,6 +43486,10 @@ export type MarketplaceOfferingUsersListData = {
|
|
|
42920
43486
|
* Modified after
|
|
42921
43487
|
*/
|
|
42922
43488
|
modified?: string;
|
|
43489
|
+
/**
|
|
43490
|
+
* Modified before
|
|
43491
|
+
*/
|
|
43492
|
+
modified_before?: string;
|
|
42923
43493
|
/**
|
|
42924
43494
|
* Ordering
|
|
42925
43495
|
*
|
|
@@ -42981,6 +43551,10 @@ export type MarketplaceOfferingUsersCountData = {
|
|
|
42981
43551
|
* Created after
|
|
42982
43552
|
*/
|
|
42983
43553
|
created?: string;
|
|
43554
|
+
/**
|
|
43555
|
+
* Created before
|
|
43556
|
+
*/
|
|
43557
|
+
created_before?: string;
|
|
42984
43558
|
/**
|
|
42985
43559
|
* User has complete profile for the offering
|
|
42986
43560
|
*/
|
|
@@ -42997,6 +43571,10 @@ export type MarketplaceOfferingUsersCountData = {
|
|
|
42997
43571
|
* Modified after
|
|
42998
43572
|
*/
|
|
42999
43573
|
modified?: string;
|
|
43574
|
+
/**
|
|
43575
|
+
* Modified before
|
|
43576
|
+
*/
|
|
43577
|
+
modified_before?: string;
|
|
43000
43578
|
/**
|
|
43001
43579
|
* Ordering
|
|
43002
43580
|
*
|
|
@@ -43482,6 +44060,10 @@ export type MarketplaceOrdersListData = {
|
|
|
43482
44060
|
* Created after
|
|
43483
44061
|
*/
|
|
43484
44062
|
created?: string;
|
|
44063
|
+
/**
|
|
44064
|
+
* Created before
|
|
44065
|
+
*/
|
|
44066
|
+
created_before?: string;
|
|
43485
44067
|
/**
|
|
43486
44068
|
* Customer UUID
|
|
43487
44069
|
*/
|
|
@@ -43491,6 +44073,10 @@ export type MarketplaceOrdersListData = {
|
|
|
43491
44073
|
* Modified after
|
|
43492
44074
|
*/
|
|
43493
44075
|
modified?: string;
|
|
44076
|
+
/**
|
|
44077
|
+
* Modified before
|
|
44078
|
+
*/
|
|
44079
|
+
modified_before?: string;
|
|
43494
44080
|
/**
|
|
43495
44081
|
* Ordering
|
|
43496
44082
|
*
|
|
@@ -43586,6 +44172,10 @@ export type MarketplaceOrdersCountData = {
|
|
|
43586
44172
|
* Created after
|
|
43587
44173
|
*/
|
|
43588
44174
|
created?: string;
|
|
44175
|
+
/**
|
|
44176
|
+
* Created before
|
|
44177
|
+
*/
|
|
44178
|
+
created_before?: string;
|
|
43589
44179
|
/**
|
|
43590
44180
|
* Customer UUID
|
|
43591
44181
|
*/
|
|
@@ -43594,6 +44184,10 @@ export type MarketplaceOrdersCountData = {
|
|
|
43594
44184
|
* Modified after
|
|
43595
44185
|
*/
|
|
43596
44186
|
modified?: string;
|
|
44187
|
+
/**
|
|
44188
|
+
* Modified before
|
|
44189
|
+
*/
|
|
44190
|
+
modified_before?: string;
|
|
43597
44191
|
/**
|
|
43598
44192
|
* Ordering
|
|
43599
44193
|
*
|
|
@@ -44799,6 +45393,10 @@ export type MarketplaceProviderOfferingsListData = {
|
|
|
44799
45393
|
* Created after
|
|
44800
45394
|
*/
|
|
44801
45395
|
created?: string;
|
|
45396
|
+
/**
|
|
45397
|
+
* Created before
|
|
45398
|
+
*/
|
|
45399
|
+
created_before?: string;
|
|
44802
45400
|
/**
|
|
44803
45401
|
* Customer URL
|
|
44804
45402
|
*/
|
|
@@ -44832,6 +45430,10 @@ export type MarketplaceProviderOfferingsListData = {
|
|
|
44832
45430
|
* Modified after
|
|
44833
45431
|
*/
|
|
44834
45432
|
modified?: string;
|
|
45433
|
+
/**
|
|
45434
|
+
* Modified before
|
|
45435
|
+
*/
|
|
45436
|
+
modified_before?: string;
|
|
44835
45437
|
/**
|
|
44836
45438
|
* Name
|
|
44837
45439
|
*/
|
|
@@ -44968,6 +45570,10 @@ export type MarketplaceProviderOfferingsCountData = {
|
|
|
44968
45570
|
* Created after
|
|
44969
45571
|
*/
|
|
44970
45572
|
created?: string;
|
|
45573
|
+
/**
|
|
45574
|
+
* Created before
|
|
45575
|
+
*/
|
|
45576
|
+
created_before?: string;
|
|
44971
45577
|
/**
|
|
44972
45578
|
* Customer URL
|
|
44973
45579
|
*/
|
|
@@ -45000,6 +45606,10 @@ export type MarketplaceProviderOfferingsCountData = {
|
|
|
45000
45606
|
* Modified after
|
|
45001
45607
|
*/
|
|
45002
45608
|
modified?: string;
|
|
45609
|
+
/**
|
|
45610
|
+
* Modified before
|
|
45611
|
+
*/
|
|
45612
|
+
modified_before?: string;
|
|
45003
45613
|
/**
|
|
45004
45614
|
* Name
|
|
45005
45615
|
*/
|
|
@@ -45269,6 +45879,10 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
|
|
|
45269
45879
|
* Created after
|
|
45270
45880
|
*/
|
|
45271
45881
|
created?: string;
|
|
45882
|
+
/**
|
|
45883
|
+
* Created before
|
|
45884
|
+
*/
|
|
45885
|
+
created_before?: string;
|
|
45272
45886
|
/**
|
|
45273
45887
|
* Customer URL
|
|
45274
45888
|
*/
|
|
@@ -45305,6 +45919,10 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
|
|
|
45305
45919
|
* Modified after
|
|
45306
45920
|
*/
|
|
45307
45921
|
modified?: string;
|
|
45922
|
+
/**
|
|
45923
|
+
* Modified before
|
|
45924
|
+
*/
|
|
45925
|
+
modified_before?: string;
|
|
45308
45926
|
/**
|
|
45309
45927
|
* Name
|
|
45310
45928
|
*/
|
|
@@ -45448,6 +46066,10 @@ export type MarketplaceProviderOfferingsCostsListData = {
|
|
|
45448
46066
|
* Created after
|
|
45449
46067
|
*/
|
|
45450
46068
|
created?: string;
|
|
46069
|
+
/**
|
|
46070
|
+
* Created before
|
|
46071
|
+
*/
|
|
46072
|
+
created_before?: string;
|
|
45451
46073
|
/**
|
|
45452
46074
|
* Customer URL
|
|
45453
46075
|
*/
|
|
@@ -45484,6 +46106,10 @@ export type MarketplaceProviderOfferingsCostsListData = {
|
|
|
45484
46106
|
* Modified after
|
|
45485
46107
|
*/
|
|
45486
46108
|
modified?: string;
|
|
46109
|
+
/**
|
|
46110
|
+
* Modified before
|
|
46111
|
+
*/
|
|
46112
|
+
modified_before?: string;
|
|
45487
46113
|
/**
|
|
45488
46114
|
* Name
|
|
45489
46115
|
*/
|
|
@@ -45640,6 +46266,10 @@ export type MarketplaceProviderOfferingsCustomersListData = {
|
|
|
45640
46266
|
* Created after
|
|
45641
46267
|
*/
|
|
45642
46268
|
created?: string;
|
|
46269
|
+
/**
|
|
46270
|
+
* Created before
|
|
46271
|
+
*/
|
|
46272
|
+
created_before?: string;
|
|
45643
46273
|
/**
|
|
45644
46274
|
* Customer URL
|
|
45645
46275
|
*/
|
|
@@ -45673,6 +46303,10 @@ export type MarketplaceProviderOfferingsCustomersListData = {
|
|
|
45673
46303
|
* Modified after
|
|
45674
46304
|
*/
|
|
45675
46305
|
modified?: string;
|
|
46306
|
+
/**
|
|
46307
|
+
* Modified before
|
|
46308
|
+
*/
|
|
46309
|
+
modified_before?: string;
|
|
45676
46310
|
/**
|
|
45677
46311
|
* Name
|
|
45678
46312
|
*/
|
|
@@ -45991,6 +46625,10 @@ export type MarketplaceProviderOfferingsHistoryListData = {
|
|
|
45991
46625
|
* Modified after
|
|
45992
46626
|
*/
|
|
45993
46627
|
modified?: string;
|
|
46628
|
+
/**
|
|
46629
|
+
* Modified before
|
|
46630
|
+
*/
|
|
46631
|
+
modified_before?: string;
|
|
45994
46632
|
/**
|
|
45995
46633
|
* Name
|
|
45996
46634
|
*/
|
|
@@ -46188,6 +46826,10 @@ export type MarketplaceProviderOfferingsListCourseAccountsListData = {
|
|
|
46188
46826
|
* Created after
|
|
46189
46827
|
*/
|
|
46190
46828
|
created?: string;
|
|
46829
|
+
/**
|
|
46830
|
+
* Created before
|
|
46831
|
+
*/
|
|
46832
|
+
created_before?: string;
|
|
46191
46833
|
/**
|
|
46192
46834
|
* Customer URL
|
|
46193
46835
|
*/
|
|
@@ -46220,6 +46862,10 @@ export type MarketplaceProviderOfferingsListCourseAccountsListData = {
|
|
|
46220
46862
|
* Modified after
|
|
46221
46863
|
*/
|
|
46222
46864
|
modified?: string;
|
|
46865
|
+
/**
|
|
46866
|
+
* Modified before
|
|
46867
|
+
*/
|
|
46868
|
+
modified_before?: string;
|
|
46223
46869
|
/**
|
|
46224
46870
|
* Name
|
|
46225
46871
|
*/
|
|
@@ -46380,6 +47026,10 @@ export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
|
|
|
46380
47026
|
* Created after
|
|
46381
47027
|
*/
|
|
46382
47028
|
created?: string;
|
|
47029
|
+
/**
|
|
47030
|
+
* Created before
|
|
47031
|
+
*/
|
|
47032
|
+
created_before?: string;
|
|
46383
47033
|
/**
|
|
46384
47034
|
* Customer URL
|
|
46385
47035
|
*/
|
|
@@ -46412,6 +47062,10 @@ export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
|
|
|
46412
47062
|
* Modified after
|
|
46413
47063
|
*/
|
|
46414
47064
|
modified?: string;
|
|
47065
|
+
/**
|
|
47066
|
+
* Modified before
|
|
47067
|
+
*/
|
|
47068
|
+
modified_before?: string;
|
|
46415
47069
|
/**
|
|
46416
47070
|
* Name
|
|
46417
47071
|
*/
|
|
@@ -46572,6 +47226,10 @@ export type MarketplaceProviderOfferingsListProjectServiceAccountsListData = {
|
|
|
46572
47226
|
* Created after
|
|
46573
47227
|
*/
|
|
46574
47228
|
created?: string;
|
|
47229
|
+
/**
|
|
47230
|
+
* Created before
|
|
47231
|
+
*/
|
|
47232
|
+
created_before?: string;
|
|
46575
47233
|
/**
|
|
46576
47234
|
* Customer URL
|
|
46577
47235
|
*/
|
|
@@ -46604,6 +47262,10 @@ export type MarketplaceProviderOfferingsListProjectServiceAccountsListData = {
|
|
|
46604
47262
|
* Modified after
|
|
46605
47263
|
*/
|
|
46606
47264
|
modified?: string;
|
|
47265
|
+
/**
|
|
47266
|
+
* Modified before
|
|
47267
|
+
*/
|
|
47268
|
+
modified_before?: string;
|
|
46607
47269
|
/**
|
|
46608
47270
|
* Name
|
|
46609
47271
|
*/
|
|
@@ -47307,6 +47969,10 @@ export type MarketplaceProviderOfferingsGroupsListData = {
|
|
|
47307
47969
|
* Created after
|
|
47308
47970
|
*/
|
|
47309
47971
|
created?: string;
|
|
47972
|
+
/**
|
|
47973
|
+
* Created before
|
|
47974
|
+
*/
|
|
47975
|
+
created_before?: string;
|
|
47310
47976
|
/**
|
|
47311
47977
|
* Customer URL
|
|
47312
47978
|
*/
|
|
@@ -47335,6 +48001,10 @@ export type MarketplaceProviderOfferingsGroupsListData = {
|
|
|
47335
48001
|
* Modified after
|
|
47336
48002
|
*/
|
|
47337
48003
|
modified?: string;
|
|
48004
|
+
/**
|
|
48005
|
+
* Modified before
|
|
48006
|
+
*/
|
|
48007
|
+
modified_before?: string;
|
|
47338
48008
|
/**
|
|
47339
48009
|
* Name
|
|
47340
48010
|
*/
|
|
@@ -47471,6 +48141,10 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
|
|
|
47471
48141
|
* Created after
|
|
47472
48142
|
*/
|
|
47473
48143
|
created?: string;
|
|
48144
|
+
/**
|
|
48145
|
+
* Created before
|
|
48146
|
+
*/
|
|
48147
|
+
created_before?: string;
|
|
47474
48148
|
/**
|
|
47475
48149
|
* Customer URL
|
|
47476
48150
|
*/
|
|
@@ -47499,6 +48173,10 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
|
|
|
47499
48173
|
* Modified after
|
|
47500
48174
|
*/
|
|
47501
48175
|
modified?: string;
|
|
48176
|
+
/**
|
|
48177
|
+
* Modified before
|
|
48178
|
+
*/
|
|
48179
|
+
modified_before?: string;
|
|
47502
48180
|
/**
|
|
47503
48181
|
* Name
|
|
47504
48182
|
*/
|
|
@@ -47634,6 +48312,10 @@ export type MarketplaceProviderResourcesListData = {
|
|
|
47634
48312
|
* Created after
|
|
47635
48313
|
*/
|
|
47636
48314
|
created?: string;
|
|
48315
|
+
/**
|
|
48316
|
+
* Created before
|
|
48317
|
+
*/
|
|
48318
|
+
created_before?: string;
|
|
47637
48319
|
/**
|
|
47638
48320
|
* Customer URL
|
|
47639
48321
|
*/
|
|
@@ -47671,6 +48353,10 @@ export type MarketplaceProviderResourcesListData = {
|
|
|
47671
48353
|
* Modified after
|
|
47672
48354
|
*/
|
|
47673
48355
|
modified?: string;
|
|
48356
|
+
/**
|
|
48357
|
+
* Modified before
|
|
48358
|
+
*/
|
|
48359
|
+
modified_before?: string;
|
|
47674
48360
|
/**
|
|
47675
48361
|
* Name
|
|
47676
48362
|
*/
|
|
@@ -47814,6 +48500,10 @@ export type MarketplaceProviderResourcesCountData = {
|
|
|
47814
48500
|
* Created after
|
|
47815
48501
|
*/
|
|
47816
48502
|
created?: string;
|
|
48503
|
+
/**
|
|
48504
|
+
* Created before
|
|
48505
|
+
*/
|
|
48506
|
+
created_before?: string;
|
|
47817
48507
|
/**
|
|
47818
48508
|
* Customer URL
|
|
47819
48509
|
*/
|
|
@@ -47850,6 +48540,10 @@ export type MarketplaceProviderResourcesCountData = {
|
|
|
47850
48540
|
* Modified after
|
|
47851
48541
|
*/
|
|
47852
48542
|
modified?: string;
|
|
48543
|
+
/**
|
|
48544
|
+
* Modified before
|
|
48545
|
+
*/
|
|
48546
|
+
modified_before?: string;
|
|
47853
48547
|
/**
|
|
47854
48548
|
* Name
|
|
47855
48549
|
*/
|
|
@@ -48109,6 +48803,10 @@ export type MarketplaceProviderResourcesHistoryListData = {
|
|
|
48109
48803
|
* Modified after
|
|
48110
48804
|
*/
|
|
48111
48805
|
modified?: string;
|
|
48806
|
+
/**
|
|
48807
|
+
* Modified before
|
|
48808
|
+
*/
|
|
48809
|
+
modified_before?: string;
|
|
48112
48810
|
/**
|
|
48113
48811
|
* Name
|
|
48114
48812
|
*/
|
|
@@ -48663,6 +49361,10 @@ export type MarketplacePublicOfferingsListData = {
|
|
|
48663
49361
|
* Created after
|
|
48664
49362
|
*/
|
|
48665
49363
|
created?: string;
|
|
49364
|
+
/**
|
|
49365
|
+
* Created before
|
|
49366
|
+
*/
|
|
49367
|
+
created_before?: string;
|
|
48666
49368
|
/**
|
|
48667
49369
|
* Customer URL
|
|
48668
49370
|
*/
|
|
@@ -48692,6 +49394,10 @@ export type MarketplacePublicOfferingsListData = {
|
|
|
48692
49394
|
* Modified after
|
|
48693
49395
|
*/
|
|
48694
49396
|
modified?: string;
|
|
49397
|
+
/**
|
|
49398
|
+
* Modified before
|
|
49399
|
+
*/
|
|
49400
|
+
modified_before?: string;
|
|
48695
49401
|
/**
|
|
48696
49402
|
* Name
|
|
48697
49403
|
*/
|
|
@@ -48828,6 +49534,10 @@ export type MarketplacePublicOfferingsCountData = {
|
|
|
48828
49534
|
* Created after
|
|
48829
49535
|
*/
|
|
48830
49536
|
created?: string;
|
|
49537
|
+
/**
|
|
49538
|
+
* Created before
|
|
49539
|
+
*/
|
|
49540
|
+
created_before?: string;
|
|
48831
49541
|
/**
|
|
48832
49542
|
* Customer URL
|
|
48833
49543
|
*/
|
|
@@ -48856,6 +49566,10 @@ export type MarketplacePublicOfferingsCountData = {
|
|
|
48856
49566
|
* Modified after
|
|
48857
49567
|
*/
|
|
48858
49568
|
modified?: string;
|
|
49569
|
+
/**
|
|
49570
|
+
* Modified before
|
|
49571
|
+
*/
|
|
49572
|
+
modified_before?: string;
|
|
48859
49573
|
/**
|
|
48860
49574
|
* Name
|
|
48861
49575
|
*/
|
|
@@ -49308,6 +50022,10 @@ export type MarketplaceResourcesListData = {
|
|
|
49308
50022
|
* Created after
|
|
49309
50023
|
*/
|
|
49310
50024
|
created?: string;
|
|
50025
|
+
/**
|
|
50026
|
+
* Created before
|
|
50027
|
+
*/
|
|
50028
|
+
created_before?: string;
|
|
49311
50029
|
/**
|
|
49312
50030
|
* Customer URL
|
|
49313
50031
|
*/
|
|
@@ -49345,6 +50063,10 @@ export type MarketplaceResourcesListData = {
|
|
|
49345
50063
|
* Modified after
|
|
49346
50064
|
*/
|
|
49347
50065
|
modified?: string;
|
|
50066
|
+
/**
|
|
50067
|
+
* Modified before
|
|
50068
|
+
*/
|
|
50069
|
+
modified_before?: string;
|
|
49348
50070
|
/**
|
|
49349
50071
|
* Name
|
|
49350
50072
|
*/
|
|
@@ -49488,6 +50210,10 @@ export type MarketplaceResourcesCountData = {
|
|
|
49488
50210
|
* Created after
|
|
49489
50211
|
*/
|
|
49490
50212
|
created?: string;
|
|
50213
|
+
/**
|
|
50214
|
+
* Created before
|
|
50215
|
+
*/
|
|
50216
|
+
created_before?: string;
|
|
49491
50217
|
/**
|
|
49492
50218
|
* Customer URL
|
|
49493
50219
|
*/
|
|
@@ -49524,6 +50250,10 @@ export type MarketplaceResourcesCountData = {
|
|
|
49524
50250
|
* Modified after
|
|
49525
50251
|
*/
|
|
49526
50252
|
modified?: string;
|
|
50253
|
+
/**
|
|
50254
|
+
* Modified before
|
|
50255
|
+
*/
|
|
50256
|
+
modified_before?: string;
|
|
49527
50257
|
/**
|
|
49528
50258
|
* Name
|
|
49529
50259
|
*/
|
|
@@ -49795,6 +50525,10 @@ export type MarketplaceResourcesHistoryListData = {
|
|
|
49795
50525
|
* Modified after
|
|
49796
50526
|
*/
|
|
49797
50527
|
modified?: string;
|
|
50528
|
+
/**
|
|
50529
|
+
* Modified before
|
|
50530
|
+
*/
|
|
50531
|
+
modified_before?: string;
|
|
49798
50532
|
/**
|
|
49799
50533
|
* Name
|
|
49800
50534
|
*/
|
|
@@ -50220,6 +50954,10 @@ export type MarketplaceRobotAccountsListData = {
|
|
|
50220
50954
|
* Created after
|
|
50221
50955
|
*/
|
|
50222
50956
|
created?: string;
|
|
50957
|
+
/**
|
|
50958
|
+
* Created before
|
|
50959
|
+
*/
|
|
50960
|
+
created_before?: string;
|
|
50223
50961
|
/**
|
|
50224
50962
|
* Customer UUID
|
|
50225
50963
|
*/
|
|
@@ -50229,6 +50967,10 @@ export type MarketplaceRobotAccountsListData = {
|
|
|
50229
50967
|
* Modified after
|
|
50230
50968
|
*/
|
|
50231
50969
|
modified?: string;
|
|
50970
|
+
/**
|
|
50971
|
+
* Modified before
|
|
50972
|
+
*/
|
|
50973
|
+
modified_before?: string;
|
|
50232
50974
|
/**
|
|
50233
50975
|
* A page number within the paginated result set.
|
|
50234
50976
|
*/
|
|
@@ -50253,6 +50995,10 @@ export type MarketplaceRobotAccountsListData = {
|
|
|
50253
50995
|
* Resource UUID
|
|
50254
50996
|
*/
|
|
50255
50997
|
resource_uuid?: string;
|
|
50998
|
+
/**
|
|
50999
|
+
* Responsible user UUID
|
|
51000
|
+
*/
|
|
51001
|
+
responsible_user_uuid?: string;
|
|
50256
51002
|
/**
|
|
50257
51003
|
* Robot account state
|
|
50258
51004
|
*
|
|
@@ -50260,6 +51006,14 @@ export type MarketplaceRobotAccountsListData = {
|
|
|
50260
51006
|
*/
|
|
50261
51007
|
state?: RemoteResourceSyncStatusRemoteStateEnum;
|
|
50262
51008
|
type?: string;
|
|
51009
|
+
/**
|
|
51010
|
+
* Connected user email contains
|
|
51011
|
+
*/
|
|
51012
|
+
user_email?: string;
|
|
51013
|
+
/**
|
|
51014
|
+
* Username contains
|
|
51015
|
+
*/
|
|
51016
|
+
username?: string;
|
|
50263
51017
|
};
|
|
50264
51018
|
url: '/api/marketplace-robot-accounts/';
|
|
50265
51019
|
};
|
|
@@ -50275,6 +51029,10 @@ export type MarketplaceRobotAccountsCountData = {
|
|
|
50275
51029
|
* Created after
|
|
50276
51030
|
*/
|
|
50277
51031
|
created?: string;
|
|
51032
|
+
/**
|
|
51033
|
+
* Created before
|
|
51034
|
+
*/
|
|
51035
|
+
created_before?: string;
|
|
50278
51036
|
/**
|
|
50279
51037
|
* Customer UUID
|
|
50280
51038
|
*/
|
|
@@ -50283,6 +51041,10 @@ export type MarketplaceRobotAccountsCountData = {
|
|
|
50283
51041
|
* Modified after
|
|
50284
51042
|
*/
|
|
50285
51043
|
modified?: string;
|
|
51044
|
+
/**
|
|
51045
|
+
* Modified before
|
|
51046
|
+
*/
|
|
51047
|
+
modified_before?: string;
|
|
50286
51048
|
/**
|
|
50287
51049
|
* A page number within the paginated result set.
|
|
50288
51050
|
*/
|
|
@@ -50307,6 +51069,10 @@ export type MarketplaceRobotAccountsCountData = {
|
|
|
50307
51069
|
* Resource UUID
|
|
50308
51070
|
*/
|
|
50309
51071
|
resource_uuid?: string;
|
|
51072
|
+
/**
|
|
51073
|
+
* Responsible user UUID
|
|
51074
|
+
*/
|
|
51075
|
+
responsible_user_uuid?: string;
|
|
50310
51076
|
/**
|
|
50311
51077
|
* Robot account state
|
|
50312
51078
|
*
|
|
@@ -50314,6 +51080,14 @@ export type MarketplaceRobotAccountsCountData = {
|
|
|
50314
51080
|
*/
|
|
50315
51081
|
state?: RemoteResourceSyncStatusRemoteStateEnum;
|
|
50316
51082
|
type?: string;
|
|
51083
|
+
/**
|
|
51084
|
+
* Connected user email contains
|
|
51085
|
+
*/
|
|
51086
|
+
user_email?: string;
|
|
51087
|
+
/**
|
|
51088
|
+
* Username contains
|
|
51089
|
+
*/
|
|
51090
|
+
username?: string;
|
|
50317
51091
|
};
|
|
50318
51092
|
url: '/api/marketplace-robot-accounts/';
|
|
50319
51093
|
};
|
|
@@ -51067,6 +51841,10 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
|
|
|
51067
51841
|
* Created after
|
|
51068
51842
|
*/
|
|
51069
51843
|
created?: string;
|
|
51844
|
+
/**
|
|
51845
|
+
* Created before
|
|
51846
|
+
*/
|
|
51847
|
+
created_before?: string;
|
|
51070
51848
|
/**
|
|
51071
51849
|
* Multiple values may be separated by commas.
|
|
51072
51850
|
*/
|
|
@@ -51096,6 +51874,10 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
|
|
|
51096
51874
|
* Modified after
|
|
51097
51875
|
*/
|
|
51098
51876
|
modified?: string;
|
|
51877
|
+
/**
|
|
51878
|
+
* Modified before
|
|
51879
|
+
*/
|
|
51880
|
+
modified_before?: string;
|
|
51099
51881
|
/**
|
|
51100
51882
|
* Name
|
|
51101
51883
|
*/
|
|
@@ -51217,6 +51999,10 @@ export type MarketplaceServiceProvidersKeysListData = {
|
|
|
51217
51999
|
* Created after
|
|
51218
52000
|
*/
|
|
51219
52001
|
created?: string;
|
|
52002
|
+
/**
|
|
52003
|
+
* Created before
|
|
52004
|
+
*/
|
|
52005
|
+
created_before?: string;
|
|
51220
52006
|
field?: Array<SshKeyFieldEnum>;
|
|
51221
52007
|
fingerprint_md5?: string;
|
|
51222
52008
|
fingerprint_sha256?: string;
|
|
@@ -51226,6 +52012,10 @@ export type MarketplaceServiceProvidersKeysListData = {
|
|
|
51226
52012
|
* Modified after
|
|
51227
52013
|
*/
|
|
51228
52014
|
modified?: string;
|
|
52015
|
+
/**
|
|
52016
|
+
* Modified before
|
|
52017
|
+
*/
|
|
52018
|
+
modified_before?: string;
|
|
51229
52019
|
/**
|
|
51230
52020
|
* Name
|
|
51231
52021
|
*/
|
|
@@ -51298,6 +52088,10 @@ export type MarketplaceServiceProvidersOfferingsListData = {
|
|
|
51298
52088
|
* Created after
|
|
51299
52089
|
*/
|
|
51300
52090
|
created?: string;
|
|
52091
|
+
/**
|
|
52092
|
+
* Created before
|
|
52093
|
+
*/
|
|
52094
|
+
created_before?: string;
|
|
51301
52095
|
/**
|
|
51302
52096
|
* Customer URL
|
|
51303
52097
|
*/
|
|
@@ -51327,6 +52121,10 @@ export type MarketplaceServiceProvidersOfferingsListData = {
|
|
|
51327
52121
|
* Modified after
|
|
51328
52122
|
*/
|
|
51329
52123
|
modified?: string;
|
|
52124
|
+
/**
|
|
52125
|
+
* Modified before
|
|
52126
|
+
*/
|
|
52127
|
+
modified_before?: string;
|
|
51330
52128
|
/**
|
|
51331
52129
|
* Name
|
|
51332
52130
|
*/
|
|
@@ -51440,6 +52238,10 @@ export type MarketplaceServiceProvidersProjectPermissionsListData = {
|
|
|
51440
52238
|
* Created after
|
|
51441
52239
|
*/
|
|
51442
52240
|
created?: string;
|
|
52241
|
+
/**
|
|
52242
|
+
* Created before
|
|
52243
|
+
*/
|
|
52244
|
+
created_before?: string;
|
|
51443
52245
|
expiration_time?: string;
|
|
51444
52246
|
field?: Array<ProjectPermissionLogFieldEnum>;
|
|
51445
52247
|
/**
|
|
@@ -51450,6 +52252,10 @@ export type MarketplaceServiceProvidersProjectPermissionsListData = {
|
|
|
51450
52252
|
* Modified after
|
|
51451
52253
|
*/
|
|
51452
52254
|
modified?: string;
|
|
52255
|
+
/**
|
|
52256
|
+
* Modified before
|
|
52257
|
+
*/
|
|
52258
|
+
modified_before?: string;
|
|
51453
52259
|
native_name?: string;
|
|
51454
52260
|
/**
|
|
51455
52261
|
* Ordering
|
|
@@ -51565,6 +52371,10 @@ export type MarketplaceServiceProvidersProjectsListData = {
|
|
|
51565
52371
|
* Created after
|
|
51566
52372
|
*/
|
|
51567
52373
|
created?: string;
|
|
52374
|
+
/**
|
|
52375
|
+
* Created before
|
|
52376
|
+
*/
|
|
52377
|
+
created_before?: string;
|
|
51568
52378
|
/**
|
|
51569
52379
|
* Multiple values may be separated by commas.
|
|
51570
52380
|
*/
|
|
@@ -51594,6 +52404,10 @@ export type MarketplaceServiceProvidersProjectsListData = {
|
|
|
51594
52404
|
* Modified after
|
|
51595
52405
|
*/
|
|
51596
52406
|
modified?: string;
|
|
52407
|
+
/**
|
|
52408
|
+
* Modified before
|
|
52409
|
+
*/
|
|
52410
|
+
modified_before?: string;
|
|
51597
52411
|
/**
|
|
51598
52412
|
* Name
|
|
51599
52413
|
*/
|
|
@@ -58593,6 +59407,10 @@ export type OpenportalUnmanagedProjectsListData = {
|
|
|
58593
59407
|
* Created after
|
|
58594
59408
|
*/
|
|
58595
59409
|
created?: string;
|
|
59410
|
+
/**
|
|
59411
|
+
* Created before
|
|
59412
|
+
*/
|
|
59413
|
+
created_before?: string;
|
|
58596
59414
|
/**
|
|
58597
59415
|
* Multiple values may be separated by commas.
|
|
58598
59416
|
*/
|
|
@@ -58626,6 +59444,10 @@ export type OpenportalUnmanagedProjectsListData = {
|
|
|
58626
59444
|
* Modified after
|
|
58627
59445
|
*/
|
|
58628
59446
|
modified?: string;
|
|
59447
|
+
/**
|
|
59448
|
+
* Modified before
|
|
59449
|
+
*/
|
|
59450
|
+
modified_before?: string;
|
|
58629
59451
|
/**
|
|
58630
59452
|
* Name
|
|
58631
59453
|
*/
|
|
@@ -58696,6 +59518,10 @@ export type OpenportalUnmanagedProjectsCountData = {
|
|
|
58696
59518
|
* Created after
|
|
58697
59519
|
*/
|
|
58698
59520
|
created?: string;
|
|
59521
|
+
/**
|
|
59522
|
+
* Created before
|
|
59523
|
+
*/
|
|
59524
|
+
created_before?: string;
|
|
58699
59525
|
/**
|
|
58700
59526
|
* Multiple values may be separated by commas.
|
|
58701
59527
|
*/
|
|
@@ -58728,6 +59554,10 @@ export type OpenportalUnmanagedProjectsCountData = {
|
|
|
58728
59554
|
* Modified after
|
|
58729
59555
|
*/
|
|
58730
59556
|
modified?: string;
|
|
59557
|
+
/**
|
|
59558
|
+
* Modified before
|
|
59559
|
+
*/
|
|
59560
|
+
modified_before?: string;
|
|
58731
59561
|
/**
|
|
58732
59562
|
* Name
|
|
58733
59563
|
*/
|
|
@@ -66600,6 +67430,136 @@ export type ProjectCreditsUpdateResponses = {
|
|
|
66600
67430
|
200: ProjectCredit;
|
|
66601
67431
|
};
|
|
66602
67432
|
export type ProjectCreditsUpdateResponse = ProjectCreditsUpdateResponses[keyof ProjectCreditsUpdateResponses];
|
|
67433
|
+
export type ProjectEndDateChangeRequestsListData = {
|
|
67434
|
+
body?: never;
|
|
67435
|
+
path?: never;
|
|
67436
|
+
query?: {
|
|
67437
|
+
/**
|
|
67438
|
+
* Created by UUID
|
|
67439
|
+
*/
|
|
67440
|
+
created_by_uuid?: string;
|
|
67441
|
+
/**
|
|
67442
|
+
* Customer UUID
|
|
67443
|
+
*/
|
|
67444
|
+
customer_uuid?: string;
|
|
67445
|
+
/**
|
|
67446
|
+
* A page number within the paginated result set.
|
|
67447
|
+
*/
|
|
67448
|
+
page?: number;
|
|
67449
|
+
/**
|
|
67450
|
+
* Number of results to return per page.
|
|
67451
|
+
*/
|
|
67452
|
+
page_size?: number;
|
|
67453
|
+
/**
|
|
67454
|
+
* Project UUID
|
|
67455
|
+
*/
|
|
67456
|
+
project_uuid?: string;
|
|
67457
|
+
state?: Array<RemoteProjectUpdateRequestStateEnum>;
|
|
67458
|
+
};
|
|
67459
|
+
url: '/api/project-end-date-change-requests/';
|
|
67460
|
+
};
|
|
67461
|
+
export type ProjectEndDateChangeRequestsListResponses = {
|
|
67462
|
+
200: Array<ProjectEndDateChangeRequest>;
|
|
67463
|
+
};
|
|
67464
|
+
export type ProjectEndDateChangeRequestsListResponse = ProjectEndDateChangeRequestsListResponses[keyof ProjectEndDateChangeRequestsListResponses];
|
|
67465
|
+
export type ProjectEndDateChangeRequestsCountData = {
|
|
67466
|
+
body?: never;
|
|
67467
|
+
path?: never;
|
|
67468
|
+
query?: {
|
|
67469
|
+
/**
|
|
67470
|
+
* Created by UUID
|
|
67471
|
+
*/
|
|
67472
|
+
created_by_uuid?: string;
|
|
67473
|
+
/**
|
|
67474
|
+
* Customer UUID
|
|
67475
|
+
*/
|
|
67476
|
+
customer_uuid?: string;
|
|
67477
|
+
/**
|
|
67478
|
+
* A page number within the paginated result set.
|
|
67479
|
+
*/
|
|
67480
|
+
page?: number;
|
|
67481
|
+
/**
|
|
67482
|
+
* Number of results to return per page.
|
|
67483
|
+
*/
|
|
67484
|
+
page_size?: number;
|
|
67485
|
+
/**
|
|
67486
|
+
* Project UUID
|
|
67487
|
+
*/
|
|
67488
|
+
project_uuid?: string;
|
|
67489
|
+
state?: Array<RemoteProjectUpdateRequestStateEnum>;
|
|
67490
|
+
};
|
|
67491
|
+
url: '/api/project-end-date-change-requests/';
|
|
67492
|
+
};
|
|
67493
|
+
export type ProjectEndDateChangeRequestsCountResponses = {
|
|
67494
|
+
/**
|
|
67495
|
+
* No response body
|
|
67496
|
+
*/
|
|
67497
|
+
200: unknown;
|
|
67498
|
+
};
|
|
67499
|
+
export type ProjectEndDateChangeRequestsCreateData = {
|
|
67500
|
+
body: ProjectEndDateChangeRequestCreateRequest;
|
|
67501
|
+
path?: never;
|
|
67502
|
+
query?: never;
|
|
67503
|
+
url: '/api/project-end-date-change-requests/';
|
|
67504
|
+
};
|
|
67505
|
+
export type ProjectEndDateChangeRequestsCreateResponses = {
|
|
67506
|
+
201: ProjectEndDateChangeRequestCreate;
|
|
67507
|
+
};
|
|
67508
|
+
export type ProjectEndDateChangeRequestsCreateResponse = ProjectEndDateChangeRequestsCreateResponses[keyof ProjectEndDateChangeRequestsCreateResponses];
|
|
67509
|
+
export type ProjectEndDateChangeRequestsRetrieveData = {
|
|
67510
|
+
body?: never;
|
|
67511
|
+
path: {
|
|
67512
|
+
uuid: string;
|
|
67513
|
+
};
|
|
67514
|
+
query?: never;
|
|
67515
|
+
url: '/api/project-end-date-change-requests/{uuid}/';
|
|
67516
|
+
};
|
|
67517
|
+
export type ProjectEndDateChangeRequestsRetrieveResponses = {
|
|
67518
|
+
200: ProjectEndDateChangeRequest;
|
|
67519
|
+
};
|
|
67520
|
+
export type ProjectEndDateChangeRequestsRetrieveResponse = ProjectEndDateChangeRequestsRetrieveResponses[keyof ProjectEndDateChangeRequestsRetrieveResponses];
|
|
67521
|
+
export type ProjectEndDateChangeRequestsApproveData = {
|
|
67522
|
+
body?: ReviewCommentRequest;
|
|
67523
|
+
path: {
|
|
67524
|
+
uuid: string;
|
|
67525
|
+
};
|
|
67526
|
+
query?: never;
|
|
67527
|
+
url: '/api/project-end-date-change-requests/{uuid}/approve/';
|
|
67528
|
+
};
|
|
67529
|
+
export type ProjectEndDateChangeRequestsApproveResponses = {
|
|
67530
|
+
/**
|
|
67531
|
+
* No response body
|
|
67532
|
+
*/
|
|
67533
|
+
200: unknown;
|
|
67534
|
+
};
|
|
67535
|
+
export type ProjectEndDateChangeRequestsCancelData = {
|
|
67536
|
+
body: ProjectEndDateChangeRequestRequest;
|
|
67537
|
+
path: {
|
|
67538
|
+
uuid: string;
|
|
67539
|
+
};
|
|
67540
|
+
query?: never;
|
|
67541
|
+
url: '/api/project-end-date-change-requests/{uuid}/cancel/';
|
|
67542
|
+
};
|
|
67543
|
+
export type ProjectEndDateChangeRequestsCancelResponses = {
|
|
67544
|
+
/**
|
|
67545
|
+
* No response body
|
|
67546
|
+
*/
|
|
67547
|
+
200: unknown;
|
|
67548
|
+
};
|
|
67549
|
+
export type ProjectEndDateChangeRequestsRejectData = {
|
|
67550
|
+
body?: ReviewCommentRequest;
|
|
67551
|
+
path: {
|
|
67552
|
+
uuid: string;
|
|
67553
|
+
};
|
|
67554
|
+
query?: never;
|
|
67555
|
+
url: '/api/project-end-date-change-requests/{uuid}/reject/';
|
|
67556
|
+
};
|
|
67557
|
+
export type ProjectEndDateChangeRequestsRejectResponses = {
|
|
67558
|
+
/**
|
|
67559
|
+
* No response body
|
|
67560
|
+
*/
|
|
67561
|
+
200: unknown;
|
|
67562
|
+
};
|
|
66603
67563
|
export type ProjectPermissionsReviewsListData = {
|
|
66604
67564
|
body?: never;
|
|
66605
67565
|
path?: never;
|
|
@@ -66845,6 +67805,10 @@ export type ProjectsListData = {
|
|
|
66845
67805
|
* Created after
|
|
66846
67806
|
*/
|
|
66847
67807
|
created?: string;
|
|
67808
|
+
/**
|
|
67809
|
+
* Created before
|
|
67810
|
+
*/
|
|
67811
|
+
created_before?: string;
|
|
66848
67812
|
/**
|
|
66849
67813
|
* Multiple values may be separated by commas.
|
|
66850
67814
|
*/
|
|
@@ -66878,6 +67842,10 @@ export type ProjectsListData = {
|
|
|
66878
67842
|
* Modified after
|
|
66879
67843
|
*/
|
|
66880
67844
|
modified?: string;
|
|
67845
|
+
/**
|
|
67846
|
+
* Modified before
|
|
67847
|
+
*/
|
|
67848
|
+
modified_before?: string;
|
|
66881
67849
|
/**
|
|
66882
67850
|
* Name
|
|
66883
67851
|
*/
|
|
@@ -66948,6 +67916,10 @@ export type ProjectsCountData = {
|
|
|
66948
67916
|
* Created after
|
|
66949
67917
|
*/
|
|
66950
67918
|
created?: string;
|
|
67919
|
+
/**
|
|
67920
|
+
* Created before
|
|
67921
|
+
*/
|
|
67922
|
+
created_before?: string;
|
|
66951
67923
|
/**
|
|
66952
67924
|
* Multiple values may be separated by commas.
|
|
66953
67925
|
*/
|
|
@@ -66980,6 +67952,10 @@ export type ProjectsCountData = {
|
|
|
66980
67952
|
* Modified after
|
|
66981
67953
|
*/
|
|
66982
67954
|
modified?: string;
|
|
67955
|
+
/**
|
|
67956
|
+
* Modified before
|
|
67957
|
+
*/
|
|
67958
|
+
modified_before?: string;
|
|
66983
67959
|
/**
|
|
66984
67960
|
* Name
|
|
66985
67961
|
*/
|
|
@@ -77439,6 +78415,10 @@ export type UserPermissionsListData = {
|
|
|
77439
78415
|
* Created after
|
|
77440
78416
|
*/
|
|
77441
78417
|
created?: string;
|
|
78418
|
+
/**
|
|
78419
|
+
* Created before
|
|
78420
|
+
*/
|
|
78421
|
+
created_before?: string;
|
|
77442
78422
|
expiration_time?: string;
|
|
77443
78423
|
/**
|
|
77444
78424
|
* User full name contains
|
|
@@ -77448,6 +78428,10 @@ export type UserPermissionsListData = {
|
|
|
77448
78428
|
* Modified after
|
|
77449
78429
|
*/
|
|
77450
78430
|
modified?: string;
|
|
78431
|
+
/**
|
|
78432
|
+
* Modified before
|
|
78433
|
+
*/
|
|
78434
|
+
modified_before?: string;
|
|
77451
78435
|
native_name?: string;
|
|
77452
78436
|
/**
|
|
77453
78437
|
* Ordering
|
|
@@ -77505,6 +78489,10 @@ export type UserPermissionsCountData = {
|
|
|
77505
78489
|
* Created after
|
|
77506
78490
|
*/
|
|
77507
78491
|
created?: string;
|
|
78492
|
+
/**
|
|
78493
|
+
* Created before
|
|
78494
|
+
*/
|
|
78495
|
+
created_before?: string;
|
|
77508
78496
|
expiration_time?: string;
|
|
77509
78497
|
/**
|
|
77510
78498
|
* User full name contains
|
|
@@ -77514,6 +78502,10 @@ export type UserPermissionsCountData = {
|
|
|
77514
78502
|
* Modified after
|
|
77515
78503
|
*/
|
|
77516
78504
|
modified?: string;
|
|
78505
|
+
/**
|
|
78506
|
+
* Modified before
|
|
78507
|
+
*/
|
|
78508
|
+
modified_before?: string;
|
|
77517
78509
|
native_name?: string;
|
|
77518
78510
|
/**
|
|
77519
78511
|
* Ordering
|