waldur-js-client 7.9.9-dev.0 → 7.9.9-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 +175 -3
- package/dist/sdk.gen.js +859 -2
- package/dist/types.gen.d.ts +2516 -32
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -9,6 +9,13 @@ export type AccessSubnetRequest = {
|
|
|
9
9
|
description?: string;
|
|
10
10
|
customer: string;
|
|
11
11
|
};
|
|
12
|
+
export type AccessTypeEnum = 'staff' | 'support' | 'staff_and_support';
|
|
13
|
+
export type AccessorTypeEnum = 'staff' | 'support' | 'organization_member' | 'service_provider' | 'self';
|
|
14
|
+
export type AccessorUser = {
|
|
15
|
+
uuid: string;
|
|
16
|
+
username: string;
|
|
17
|
+
full_name: string;
|
|
18
|
+
};
|
|
12
19
|
export type AccountNameGenerationPolicyEnum = 'project_slug';
|
|
13
20
|
export type ActiveQueriesStats = {
|
|
14
21
|
/**
|
|
@@ -81,6 +88,18 @@ export type AdminAnnouncementRequest = {
|
|
|
81
88
|
type?: AdminAnnouncementTypeEnum;
|
|
82
89
|
};
|
|
83
90
|
export type AdminAnnouncementTypeEnum = 'information' | 'warning' | 'danger';
|
|
91
|
+
export type AdminUser = {
|
|
92
|
+
user_uuid: string;
|
|
93
|
+
username: string;
|
|
94
|
+
full_name: string;
|
|
95
|
+
access_type: AccessTypeEnum;
|
|
96
|
+
};
|
|
97
|
+
export type AdministrativeAccess = {
|
|
98
|
+
description: string;
|
|
99
|
+
staff_count?: number;
|
|
100
|
+
support_count?: number;
|
|
101
|
+
users?: Array<AdminUser>;
|
|
102
|
+
};
|
|
84
103
|
export type AffiliationTypeEnum = 'employment' | 'education' | 'visiting' | 'honorary' | 'consulting';
|
|
85
104
|
export type AffinityMatrixEntry = {
|
|
86
105
|
uuid: string;
|
|
@@ -1903,6 +1922,52 @@ export type CachePerformance = {
|
|
|
1903
1922
|
*/
|
|
1904
1923
|
readonly effective_cache_size: string;
|
|
1905
1924
|
};
|
|
1925
|
+
export type CallApplicantAttributeConfig = {
|
|
1926
|
+
readonly uuid: string;
|
|
1927
|
+
readonly call_uuid: string;
|
|
1928
|
+
readonly call_name: string;
|
|
1929
|
+
expose_full_name?: boolean;
|
|
1930
|
+
expose_email?: boolean;
|
|
1931
|
+
expose_organization?: boolean;
|
|
1932
|
+
expose_affiliations?: boolean;
|
|
1933
|
+
expose_organization_type?: boolean;
|
|
1934
|
+
expose_organization_country?: boolean;
|
|
1935
|
+
expose_nationality?: boolean;
|
|
1936
|
+
expose_nationalities?: boolean;
|
|
1937
|
+
expose_country_of_residence?: boolean;
|
|
1938
|
+
expose_eduperson_assurance?: boolean;
|
|
1939
|
+
expose_identity_source?: boolean;
|
|
1940
|
+
/**
|
|
1941
|
+
* If True, reviewers see applicant identity. If False, proposals are anonymized for reviewers.
|
|
1942
|
+
*/
|
|
1943
|
+
reviewers_see_applicant_details?: boolean;
|
|
1944
|
+
/**
|
|
1945
|
+
* Return list of currently exposed field names.
|
|
1946
|
+
*/
|
|
1947
|
+
readonly exposed_fields: Array<string>;
|
|
1948
|
+
/**
|
|
1949
|
+
* Return True if this is a default (unsaved) config.
|
|
1950
|
+
*/
|
|
1951
|
+
readonly is_default: boolean;
|
|
1952
|
+
};
|
|
1953
|
+
export type CallApplicantAttributeConfigRequest = {
|
|
1954
|
+
call?: string;
|
|
1955
|
+
expose_full_name?: boolean;
|
|
1956
|
+
expose_email?: boolean;
|
|
1957
|
+
expose_organization?: boolean;
|
|
1958
|
+
expose_affiliations?: boolean;
|
|
1959
|
+
expose_organization_type?: boolean;
|
|
1960
|
+
expose_organization_country?: boolean;
|
|
1961
|
+
expose_nationality?: boolean;
|
|
1962
|
+
expose_nationalities?: boolean;
|
|
1963
|
+
expose_country_of_residence?: boolean;
|
|
1964
|
+
expose_eduperson_assurance?: boolean;
|
|
1965
|
+
expose_identity_source?: boolean;
|
|
1966
|
+
/**
|
|
1967
|
+
* If True, reviewers see applicant identity. If False, proposals are anonymized for reviewers.
|
|
1968
|
+
*/
|
|
1969
|
+
reviewers_see_applicant_details?: boolean;
|
|
1970
|
+
};
|
|
1906
1971
|
export type CallAssignmentConfiguration = {
|
|
1907
1972
|
readonly uuid: string;
|
|
1908
1973
|
readonly call: string;
|
|
@@ -3424,6 +3489,11 @@ export type ConstanceSettings = {
|
|
|
3424
3489
|
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
3425
3490
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
3426
3491
|
WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
|
|
3492
|
+
DEFAULT_OFFERING_USER_ATTRIBUTES?: Array<string>;
|
|
3493
|
+
INVITATION_ALLOWED_FIELDS?: Array<string>;
|
|
3494
|
+
ENABLED_USER_PROFILE_ATTRIBUTES?: Array<string>;
|
|
3495
|
+
MANDATORY_USER_ATTRIBUTES?: Array<string>;
|
|
3496
|
+
ENFORCE_MANDATORY_USER_ATTRIBUTES?: boolean;
|
|
3427
3497
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
3428
3498
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
3429
3499
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
@@ -3462,6 +3532,9 @@ export type ConstanceSettings = {
|
|
|
3462
3532
|
USER_ACTIONS_NOTIFICATION_THRESHOLD?: number;
|
|
3463
3533
|
USER_ACTIONS_EXECUTION_RETENTION_DAYS?: number;
|
|
3464
3534
|
USER_ACTIONS_DEFAULT_EXPIRATION_REMINDERS?: Array<string>;
|
|
3535
|
+
USER_DATA_ACCESS_LOGGING_ENABLED?: boolean;
|
|
3536
|
+
USER_DATA_ACCESS_LOG_RETENTION_DAYS?: number;
|
|
3537
|
+
USER_DATA_ACCESS_LOG_SELF_ACCESS?: boolean;
|
|
3465
3538
|
};
|
|
3466
3539
|
export type ConstanceSettingsRequest = {
|
|
3467
3540
|
SITE_NAME?: string;
|
|
@@ -3623,6 +3696,11 @@ export type ConstanceSettingsRequest = {
|
|
|
3623
3696
|
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
3624
3697
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
3625
3698
|
WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
|
|
3699
|
+
DEFAULT_OFFERING_USER_ATTRIBUTES?: Array<string>;
|
|
3700
|
+
INVITATION_ALLOWED_FIELDS?: Array<string>;
|
|
3701
|
+
ENABLED_USER_PROFILE_ATTRIBUTES?: Array<string>;
|
|
3702
|
+
MANDATORY_USER_ATTRIBUTES?: Array<string>;
|
|
3703
|
+
ENFORCE_MANDATORY_USER_ATTRIBUTES?: boolean;
|
|
3626
3704
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
3627
3705
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
3628
3706
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
@@ -3661,6 +3739,9 @@ export type ConstanceSettingsRequest = {
|
|
|
3661
3739
|
USER_ACTIONS_NOTIFICATION_THRESHOLD?: number;
|
|
3662
3740
|
USER_ACTIONS_EXECUTION_RETENTION_DAYS?: number;
|
|
3663
3741
|
USER_ACTIONS_DEFAULT_EXPIRATION_REMINDERS?: Array<string>;
|
|
3742
|
+
USER_DATA_ACCESS_LOGGING_ENABLED?: boolean;
|
|
3743
|
+
USER_DATA_ACCESS_LOG_RETENTION_DAYS?: number;
|
|
3744
|
+
USER_DATA_ACCESS_LOG_SELF_ACCESS?: boolean;
|
|
3664
3745
|
};
|
|
3665
3746
|
export type ContainerFormatEnum = 'bare' | 'ovf' | 'aki' | 'ami' | 'ari';
|
|
3666
3747
|
export type CoreAuthToken = {
|
|
@@ -3925,6 +4006,7 @@ export type CreateRouterRequest = {
|
|
|
3925
4006
|
tenant: string;
|
|
3926
4007
|
name: string;
|
|
3927
4008
|
};
|
|
4009
|
+
export type CurrentQosStatusEnum = 'normal' | 'notification' | 'slowdown' | 'blocked';
|
|
3928
4010
|
export type Customer = {
|
|
3929
4011
|
readonly url?: string;
|
|
3930
4012
|
readonly uuid?: string;
|
|
@@ -4362,6 +4444,41 @@ export type DlqQueue = {
|
|
|
4362
4444
|
*/
|
|
4363
4445
|
readonly consumers: number;
|
|
4364
4446
|
};
|
|
4447
|
+
export type DailyOrderStats = {
|
|
4448
|
+
/**
|
|
4449
|
+
* Date of the statistics
|
|
4450
|
+
*/
|
|
4451
|
+
date: string;
|
|
4452
|
+
/**
|
|
4453
|
+
* Total number of orders
|
|
4454
|
+
*/
|
|
4455
|
+
total: number;
|
|
4456
|
+
/**
|
|
4457
|
+
* Total cost of orders
|
|
4458
|
+
*/
|
|
4459
|
+
total_cost: string | null;
|
|
4460
|
+
/**
|
|
4461
|
+
* Revenue from create/update orders
|
|
4462
|
+
*/
|
|
4463
|
+
revenue: string | null;
|
|
4464
|
+
/**
|
|
4465
|
+
* Order counts grouped by state
|
|
4466
|
+
*/
|
|
4467
|
+
by_state: {
|
|
4468
|
+
[key: string]: number;
|
|
4469
|
+
};
|
|
4470
|
+
/**
|
|
4471
|
+
* Order counts grouped by type
|
|
4472
|
+
*/
|
|
4473
|
+
by_type: {
|
|
4474
|
+
[key: string]: number;
|
|
4475
|
+
};
|
|
4476
|
+
};
|
|
4477
|
+
export type DataAccessSummary = {
|
|
4478
|
+
total_administrative_access: number | null;
|
|
4479
|
+
total_organizational_access: number;
|
|
4480
|
+
total_provider_access: number;
|
|
4481
|
+
};
|
|
4365
4482
|
export type DataVolume = {
|
|
4366
4483
|
size: number;
|
|
4367
4484
|
volume_type?: string | null;
|
|
@@ -4453,6 +4570,7 @@ export type DeadLetterQueue = {
|
|
|
4453
4570
|
readonly note: string;
|
|
4454
4571
|
};
|
|
4455
4572
|
export type DecidingEntityEnum = 'by_call_manager' | 'automatic';
|
|
4573
|
+
export type DefaultPermissionEnum = '2770' | '2775' | '2777' | '770' | '775' | '777';
|
|
4456
4574
|
export type DeleteAttachmentsRequest = {
|
|
4457
4575
|
attachment_ids: Array<string>;
|
|
4458
4576
|
};
|
|
@@ -4704,6 +4822,40 @@ export type DiscoverCustomFieldsRequestRequest = {
|
|
|
4704
4822
|
*/
|
|
4705
4823
|
request_type_id?: string;
|
|
4706
4824
|
};
|
|
4825
|
+
export type DiscoverMetadataRequestRequest = {
|
|
4826
|
+
/**
|
|
4827
|
+
* OIDC discovery URL (e.g., https://idp.example.com/.well-known/openid-configuration)
|
|
4828
|
+
*/
|
|
4829
|
+
discovery_url: string;
|
|
4830
|
+
/**
|
|
4831
|
+
* Whether to verify SSL certificate
|
|
4832
|
+
*/
|
|
4833
|
+
verify_ssl?: boolean;
|
|
4834
|
+
};
|
|
4835
|
+
export type DiscoverMetadataResponse = {
|
|
4836
|
+
/**
|
|
4837
|
+
* List of claims supported by the OIDC provider
|
|
4838
|
+
*/
|
|
4839
|
+
claims_supported: Array<string>;
|
|
4840
|
+
/**
|
|
4841
|
+
* List of scopes supported by the OIDC provider
|
|
4842
|
+
*/
|
|
4843
|
+
scopes_supported: Array<string>;
|
|
4844
|
+
/**
|
|
4845
|
+
* OIDC endpoints (authorization, token, userinfo, logout)
|
|
4846
|
+
*/
|
|
4847
|
+
endpoints: {
|
|
4848
|
+
[key: string]: string;
|
|
4849
|
+
};
|
|
4850
|
+
/**
|
|
4851
|
+
* Waldur User fields with suggested OIDC claim mappings
|
|
4852
|
+
*/
|
|
4853
|
+
waldur_fields: Array<WaldurFieldSuggestion>;
|
|
4854
|
+
/**
|
|
4855
|
+
* Recommended scopes to request based on claim mappings
|
|
4856
|
+
*/
|
|
4857
|
+
suggested_scopes: Array<string>;
|
|
4858
|
+
};
|
|
4707
4859
|
export type DiscoverPrioritiesRequestRequest = {
|
|
4708
4860
|
/**
|
|
4709
4861
|
* Atlassian API URL (e.g., https://your-domain.atlassian.net)
|
|
@@ -4776,6 +4928,10 @@ export type DryRunRequest = {
|
|
|
4776
4928
|
};
|
|
4777
4929
|
export type DryRunStateEnum = 1 | 2 | 3 | 4;
|
|
4778
4930
|
export type DryRunTypeEnum = 'Create' | 'Update' | 'Terminate' | 'Restore' | 'Pull';
|
|
4931
|
+
export type EligibilityCheck = {
|
|
4932
|
+
is_eligible: boolean;
|
|
4933
|
+
restrictions: Array<string>;
|
|
4934
|
+
};
|
|
4779
4935
|
export type EmailHook = {
|
|
4780
4936
|
readonly url: string;
|
|
4781
4937
|
readonly uuid: string;
|
|
@@ -4843,7 +4999,7 @@ export type EventMetadataResponse = {
|
|
|
4843
4999
|
* Map of event group keys to lists of event type enums from EventType
|
|
4844
5000
|
*/
|
|
4845
5001
|
event_groups: {
|
|
4846
|
-
[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' | '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_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_update_succeeded' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked'>;
|
|
5002
|
+
[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' | '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_update_succeeded' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked'>;
|
|
4847
5003
|
};
|
|
4848
5004
|
};
|
|
4849
5005
|
export type EventStats = {
|
|
@@ -4873,6 +5029,48 @@ export type EventSubscription = {
|
|
|
4873
5029
|
*/
|
|
4874
5030
|
source_ip: string | null;
|
|
4875
5031
|
};
|
|
5032
|
+
export type EventSubscriptionQueue = {
|
|
5033
|
+
readonly uuid: string;
|
|
5034
|
+
readonly url: string;
|
|
5035
|
+
readonly event_subscription: string;
|
|
5036
|
+
readonly event_subscription_uuid: string;
|
|
5037
|
+
readonly offering_uuid: string;
|
|
5038
|
+
/**
|
|
5039
|
+
* Observable object type (e.g., 'resource', 'order')
|
|
5040
|
+
*/
|
|
5041
|
+
object_type: string;
|
|
5042
|
+
readonly queue_name: string;
|
|
5043
|
+
readonly vhost: string;
|
|
5044
|
+
readonly created: string;
|
|
5045
|
+
};
|
|
5046
|
+
export type EventSubscriptionQueueCreateRequest = {
|
|
5047
|
+
/**
|
|
5048
|
+
* UUID of the offering to receive events for
|
|
5049
|
+
*/
|
|
5050
|
+
offering_uuid: string;
|
|
5051
|
+
/**
|
|
5052
|
+
* Type of observable object (e.g., 'resource', 'order')
|
|
5053
|
+
*/
|
|
5054
|
+
object_type: ObservableObjectTypeEnum;
|
|
5055
|
+
};
|
|
5056
|
+
export type EventSubscriptionQueuesOverview = {
|
|
5057
|
+
/**
|
|
5058
|
+
* Total number of vhosts with subscription queues
|
|
5059
|
+
*/
|
|
5060
|
+
readonly total_vhosts: number;
|
|
5061
|
+
/**
|
|
5062
|
+
* Total number of subscription queues
|
|
5063
|
+
*/
|
|
5064
|
+
readonly total_queues: number;
|
|
5065
|
+
/**
|
|
5066
|
+
* Total messages across all subscription queues
|
|
5067
|
+
*/
|
|
5068
|
+
readonly total_messages: number;
|
|
5069
|
+
/**
|
|
5070
|
+
* Top 10 queues by message count
|
|
5071
|
+
*/
|
|
5072
|
+
readonly top_queues_by_messages: Array<TopQueue>;
|
|
5073
|
+
};
|
|
4876
5074
|
export type EventSubscriptionRequest = {
|
|
4877
5075
|
description?: string;
|
|
4878
5076
|
/**
|
|
@@ -4880,7 +5078,7 @@ export type EventSubscriptionRequest = {
|
|
|
4880
5078
|
*/
|
|
4881
5079
|
observable_objects?: unknown;
|
|
4882
5080
|
};
|
|
4883
|
-
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' | '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_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_update_succeeded' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked';
|
|
5081
|
+
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' | '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_update_succeeded' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked';
|
|
4884
5082
|
export type ExecuteActionErrorResponse = {
|
|
4885
5083
|
error: string;
|
|
4886
5084
|
};
|
|
@@ -4898,6 +5096,7 @@ export type ExecuteActionResponse = {
|
|
|
4898
5096
|
[key: string]: unknown;
|
|
4899
5097
|
};
|
|
4900
5098
|
};
|
|
5099
|
+
export type ExecutionModeEnum = 'production' | 'emulator';
|
|
4901
5100
|
export type ExecutionStateEnum = 'Scheduled' | 'Processing' | 'OK' | 'Erred';
|
|
4902
5101
|
export type ExpertiseCategory = {
|
|
4903
5102
|
readonly url: string;
|
|
@@ -5248,6 +5447,7 @@ export type FreeipaProfileRequest = {
|
|
|
5248
5447
|
*/
|
|
5249
5448
|
agreement_date?: string;
|
|
5250
5449
|
};
|
|
5450
|
+
export type GenderEnum = 0 | 1 | 2 | 9;
|
|
5251
5451
|
export type GenerateAssignmentsRequest = {
|
|
5252
5452
|
/**
|
|
5253
5453
|
* Specific proposal UUIDs to generate assignments for. If empty, generates for all submitted proposals needing reviewers.
|
|
@@ -5298,6 +5498,21 @@ export type GenerateSuggestionsResponse = {
|
|
|
5298
5498
|
source_used: string;
|
|
5299
5499
|
suggestions: Array<string>;
|
|
5300
5500
|
};
|
|
5501
|
+
export type GlobalUserDataAccessLog = {
|
|
5502
|
+
uuid: string;
|
|
5503
|
+
timestamp: string;
|
|
5504
|
+
accessor_type: AccessorTypeEnum;
|
|
5505
|
+
accessed_fields: Array<string>;
|
|
5506
|
+
user: TargetUser;
|
|
5507
|
+
accessor: AccessorUser;
|
|
5508
|
+
/**
|
|
5509
|
+
* An IPv4 or IPv6 address.
|
|
5510
|
+
*/
|
|
5511
|
+
ip_address: string | null;
|
|
5512
|
+
context: {
|
|
5513
|
+
[key: string]: unknown;
|
|
5514
|
+
};
|
|
5515
|
+
};
|
|
5301
5516
|
export type GoogleCalendar = {
|
|
5302
5517
|
backend_id?: string | null;
|
|
5303
5518
|
public?: boolean;
|
|
@@ -7082,6 +7297,10 @@ export type MergedPluginOptions = {
|
|
|
7082
7297
|
* Enable display of order actions for service provider
|
|
7083
7298
|
*/
|
|
7084
7299
|
enable_display_of_order_actions_for_service_provider?: boolean;
|
|
7300
|
+
/**
|
|
7301
|
+
* Enable SLURM periodic usage policy configuration. When enabled, allows configuring QoS-based threshold enforcement, carryover logic, and fairshare decay for site-agent managed SLURM offerings.
|
|
7302
|
+
*/
|
|
7303
|
+
slurm_periodic_policy_enabled?: boolean;
|
|
7085
7304
|
/**
|
|
7086
7305
|
* If set to False, all orders require manual provider approval, including for service provider owners and staff
|
|
7087
7306
|
*/
|
|
@@ -7332,6 +7551,10 @@ export type MergedPluginOptionsRequest = {
|
|
|
7332
7551
|
* Enable display of order actions for service provider
|
|
7333
7552
|
*/
|
|
7334
7553
|
enable_display_of_order_actions_for_service_provider?: boolean;
|
|
7554
|
+
/**
|
|
7555
|
+
* Enable SLURM periodic usage policy configuration. When enabled, allows configuring QoS-based threshold enforcement, carryover logic, and fairshare decay for site-agent managed SLURM offerings.
|
|
7556
|
+
*/
|
|
7557
|
+
slurm_periodic_policy_enabled?: boolean;
|
|
7335
7558
|
/**
|
|
7336
7559
|
* If set to False, all orders require manual provider approval, including for service provider owners and staff
|
|
7337
7560
|
*/
|
|
@@ -9552,6 +9775,47 @@ export type OfferingUser = {
|
|
|
9552
9775
|
* Email address
|
|
9553
9776
|
*/
|
|
9554
9777
|
readonly user_email?: string;
|
|
9778
|
+
readonly user_phone_number?: string;
|
|
9779
|
+
readonly user_organization?: string;
|
|
9780
|
+
readonly user_job_title?: string;
|
|
9781
|
+
/**
|
|
9782
|
+
* Person's affiliation within organization such as student, faculty, staff.
|
|
9783
|
+
*/
|
|
9784
|
+
readonly user_affiliations?: unknown;
|
|
9785
|
+
/**
|
|
9786
|
+
* ISO 5218 gender code
|
|
9787
|
+
*/
|
|
9788
|
+
user_gender?: GenderEnum | NullEnum | null;
|
|
9789
|
+
/**
|
|
9790
|
+
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
9791
|
+
*/
|
|
9792
|
+
readonly user_personal_title?: string;
|
|
9793
|
+
readonly user_place_of_birth?: string;
|
|
9794
|
+
readonly user_country_of_residence?: string;
|
|
9795
|
+
/**
|
|
9796
|
+
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
9797
|
+
*/
|
|
9798
|
+
readonly user_nationality?: string;
|
|
9799
|
+
/**
|
|
9800
|
+
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
9801
|
+
*/
|
|
9802
|
+
readonly user_nationalities?: unknown;
|
|
9803
|
+
readonly user_organization_country?: string;
|
|
9804
|
+
/**
|
|
9805
|
+
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
9806
|
+
*/
|
|
9807
|
+
readonly user_organization_type?: string;
|
|
9808
|
+
/**
|
|
9809
|
+
* REFEDS assurance profile URIs from identity provider
|
|
9810
|
+
*/
|
|
9811
|
+
readonly user_eduperson_assurance?: unknown;
|
|
9812
|
+
readonly user_civil_number?: string | null;
|
|
9813
|
+
readonly user_birth_date?: string | null;
|
|
9814
|
+
/**
|
|
9815
|
+
* Source of identity
|
|
9816
|
+
* Indicates what identity provider was used.
|
|
9817
|
+
*/
|
|
9818
|
+
readonly user_identity_source?: string;
|
|
9555
9819
|
readonly created?: string;
|
|
9556
9820
|
readonly modified?: string;
|
|
9557
9821
|
readonly customer_uuid?: string;
|
|
@@ -9588,6 +9852,62 @@ export type OfferingUser = {
|
|
|
9588
9852
|
[key: string]: string;
|
|
9589
9853
|
} | null;
|
|
9590
9854
|
};
|
|
9855
|
+
export type OfferingUserAttributeConfig = {
|
|
9856
|
+
readonly uuid: string;
|
|
9857
|
+
readonly created: string;
|
|
9858
|
+
readonly modified: string;
|
|
9859
|
+
readonly offering_uuid: string;
|
|
9860
|
+
readonly offering_name: string;
|
|
9861
|
+
expose_username?: boolean;
|
|
9862
|
+
expose_full_name?: boolean;
|
|
9863
|
+
expose_email?: boolean;
|
|
9864
|
+
expose_phone_number?: boolean;
|
|
9865
|
+
expose_organization?: boolean;
|
|
9866
|
+
expose_job_title?: boolean;
|
|
9867
|
+
expose_affiliations?: boolean;
|
|
9868
|
+
expose_gender?: boolean;
|
|
9869
|
+
expose_personal_title?: boolean;
|
|
9870
|
+
expose_place_of_birth?: boolean;
|
|
9871
|
+
expose_country_of_residence?: boolean;
|
|
9872
|
+
expose_nationality?: boolean;
|
|
9873
|
+
expose_nationalities?: boolean;
|
|
9874
|
+
expose_organization_country?: boolean;
|
|
9875
|
+
expose_organization_type?: boolean;
|
|
9876
|
+
expose_eduperson_assurance?: boolean;
|
|
9877
|
+
expose_civil_number?: boolean;
|
|
9878
|
+
expose_birth_date?: boolean;
|
|
9879
|
+
expose_identity_source?: boolean;
|
|
9880
|
+
/**
|
|
9881
|
+
* Return list of field names currently configured for exposure.
|
|
9882
|
+
*/
|
|
9883
|
+
readonly exposed_fields: Array<string>;
|
|
9884
|
+
/**
|
|
9885
|
+
* Return True if this is a default (unsaved) config.
|
|
9886
|
+
*/
|
|
9887
|
+
readonly is_default: boolean;
|
|
9888
|
+
};
|
|
9889
|
+
export type OfferingUserAttributeConfigRequest = {
|
|
9890
|
+
offering?: string;
|
|
9891
|
+
expose_username?: boolean;
|
|
9892
|
+
expose_full_name?: boolean;
|
|
9893
|
+
expose_email?: boolean;
|
|
9894
|
+
expose_phone_number?: boolean;
|
|
9895
|
+
expose_organization?: boolean;
|
|
9896
|
+
expose_job_title?: boolean;
|
|
9897
|
+
expose_affiliations?: boolean;
|
|
9898
|
+
expose_gender?: boolean;
|
|
9899
|
+
expose_personal_title?: boolean;
|
|
9900
|
+
expose_place_of_birth?: boolean;
|
|
9901
|
+
expose_country_of_residence?: boolean;
|
|
9902
|
+
expose_nationality?: boolean;
|
|
9903
|
+
expose_nationalities?: boolean;
|
|
9904
|
+
expose_organization_country?: boolean;
|
|
9905
|
+
expose_organization_type?: boolean;
|
|
9906
|
+
expose_eduperson_assurance?: boolean;
|
|
9907
|
+
expose_civil_number?: boolean;
|
|
9908
|
+
expose_birth_date?: boolean;
|
|
9909
|
+
expose_identity_source?: boolean;
|
|
9910
|
+
};
|
|
9591
9911
|
export type OfferingUserRequest = {
|
|
9592
9912
|
user?: string;
|
|
9593
9913
|
offering?: string;
|
|
@@ -10181,6 +10501,7 @@ export type OpenStackImage = {
|
|
|
10181
10501
|
min_ram?: number;
|
|
10182
10502
|
settings: string;
|
|
10183
10503
|
backend_id: string;
|
|
10504
|
+
backend_created_at?: string | null;
|
|
10184
10505
|
};
|
|
10185
10506
|
export type OpenStackInstance = {
|
|
10186
10507
|
readonly url?: string;
|
|
@@ -11498,6 +11819,7 @@ export type OptionField = {
|
|
|
11498
11819
|
max?: number;
|
|
11499
11820
|
cascade_config?: CascadeConfig;
|
|
11500
11821
|
component_multiplier_config?: ComponentMultiplierConfig;
|
|
11822
|
+
storage_folder_config?: StorageFolderConfig;
|
|
11501
11823
|
default_configs?: K8sDefaultConfiguration;
|
|
11502
11824
|
};
|
|
11503
11825
|
export type OptionFieldRequest = {
|
|
@@ -11511,9 +11833,10 @@ export type OptionFieldRequest = {
|
|
|
11511
11833
|
max?: number;
|
|
11512
11834
|
cascade_config?: CascadeConfigRequest;
|
|
11513
11835
|
component_multiplier_config?: ComponentMultiplierConfigRequest;
|
|
11836
|
+
storage_folder_config?: StorageFolderConfigRequest;
|
|
11514
11837
|
default_configs?: K8sDefaultConfigurationRequest;
|
|
11515
11838
|
};
|
|
11516
|
-
export type OptionFieldTypeEnum = 'boolean' | 'integer' | 'money' | 'string' | 'text' | 'html_text' | 'select_string' | 'select_string_multi' | 'select_openstack_tenant' | 'select_multiple_openstack_tenants' | 'select_openstack_instance' | 'select_multiple_openstack_instances' | 'date' | 'time' | 'conditional_cascade' | 'component_multiplier' | 'single_datacenter_k8s_config' | 'multi_datacenter_k8s_config';
|
|
11839
|
+
export type OptionFieldTypeEnum = 'boolean' | 'integer' | 'money' | 'string' | 'text' | 'html_text' | 'select_string' | 'select_string_multi' | 'select_openstack_tenant' | 'select_multiple_openstack_tenants' | 'select_openstack_instance' | 'select_multiple_openstack_instances' | 'date' | 'time' | 'conditional_cascade' | 'component_multiplier' | 'single_datacenter_k8s_config' | 'multi_datacenter_k8s_config' | 'storage_folder_manager';
|
|
11517
11840
|
export type OrcidCallbackRequest = {
|
|
11518
11841
|
/**
|
|
11519
11842
|
* Authorization code from ORCID OAuth callback
|
|
@@ -11679,6 +12002,66 @@ export type OrderErrorDetailsRequest = {
|
|
|
11679
12002
|
error_traceback?: string;
|
|
11680
12003
|
};
|
|
11681
12004
|
export type OrderState = 'pending-consumer' | 'pending-provider' | 'pending-project' | 'pending-start-date' | 'executing' | 'done' | 'erred' | 'canceled' | 'rejected';
|
|
12005
|
+
export type OrderStatsResponse = {
|
|
12006
|
+
/**
|
|
12007
|
+
* Summary statistics
|
|
12008
|
+
*/
|
|
12009
|
+
summary: OrderStatsSummary;
|
|
12010
|
+
/**
|
|
12011
|
+
* Total order counts grouped by state
|
|
12012
|
+
*/
|
|
12013
|
+
by_state: {
|
|
12014
|
+
[key: string]: number;
|
|
12015
|
+
};
|
|
12016
|
+
/**
|
|
12017
|
+
* Total order counts grouped by type
|
|
12018
|
+
*/
|
|
12019
|
+
by_type: {
|
|
12020
|
+
[key: string]: number;
|
|
12021
|
+
};
|
|
12022
|
+
/**
|
|
12023
|
+
* Daily breakdown
|
|
12024
|
+
*/
|
|
12025
|
+
daily: Array<DailyOrderStats>;
|
|
12026
|
+
};
|
|
12027
|
+
export type OrderStatsSummary = {
|
|
12028
|
+
/**
|
|
12029
|
+
* Total number of orders
|
|
12030
|
+
*/
|
|
12031
|
+
total: number;
|
|
12032
|
+
/**
|
|
12033
|
+
* Total cost of orders
|
|
12034
|
+
*/
|
|
12035
|
+
total_cost: string | null;
|
|
12036
|
+
/**
|
|
12037
|
+
* Total revenue from create/update orders
|
|
12038
|
+
*/
|
|
12039
|
+
total_revenue: string | null;
|
|
12040
|
+
/**
|
|
12041
|
+
* Number of pending orders
|
|
12042
|
+
*/
|
|
12043
|
+
pending: number;
|
|
12044
|
+
/**
|
|
12045
|
+
* Number of executing orders
|
|
12046
|
+
*/
|
|
12047
|
+
executing: number;
|
|
12048
|
+
/**
|
|
12049
|
+
* Number of completed orders
|
|
12050
|
+
*/
|
|
12051
|
+
done: number;
|
|
12052
|
+
/**
|
|
12053
|
+
* Number of erred orders
|
|
12054
|
+
*/
|
|
12055
|
+
erred: number;
|
|
12056
|
+
/**
|
|
12057
|
+
* Number of canceled orders
|
|
12058
|
+
*/
|
|
12059
|
+
canceled: number;
|
|
12060
|
+
/**
|
|
12061
|
+
* Number of rejected orders
|
|
12062
|
+
*/
|
|
12063
|
+
rejected: number;
|
|
12064
|
+
};
|
|
11682
12065
|
export type OrderUuid = {
|
|
11683
12066
|
/**
|
|
11684
12067
|
* UUID of the created or updated order
|
|
@@ -11710,6 +12093,18 @@ export type OrganizationGroupRequest = {
|
|
|
11710
12093
|
export type OrganizationGroupsRequest = {
|
|
11711
12094
|
organization_groups?: Array<string>;
|
|
11712
12095
|
};
|
|
12096
|
+
export type OrganizationalAccess = {
|
|
12097
|
+
scope_type: string;
|
|
12098
|
+
scope_uuid: string;
|
|
12099
|
+
scope_name: string;
|
|
12100
|
+
users: Array<OrganizationalUser>;
|
|
12101
|
+
};
|
|
12102
|
+
export type OrganizationalUser = {
|
|
12103
|
+
user_uuid: string;
|
|
12104
|
+
username: string;
|
|
12105
|
+
full_name: string;
|
|
12106
|
+
role: string | null;
|
|
12107
|
+
};
|
|
11713
12108
|
export type PaidRequest = {
|
|
11714
12109
|
date: string;
|
|
11715
12110
|
proof?: Blob | File;
|
|
@@ -11775,6 +12170,24 @@ export type PatchedBroadcastMessageRequest = {
|
|
|
11775
12170
|
query?: unknown;
|
|
11776
12171
|
send_at?: string | null;
|
|
11777
12172
|
};
|
|
12173
|
+
export type PatchedCallApplicantAttributeConfigRequest = {
|
|
12174
|
+
call?: string;
|
|
12175
|
+
expose_full_name?: boolean;
|
|
12176
|
+
expose_email?: boolean;
|
|
12177
|
+
expose_organization?: boolean;
|
|
12178
|
+
expose_affiliations?: boolean;
|
|
12179
|
+
expose_organization_type?: boolean;
|
|
12180
|
+
expose_organization_country?: boolean;
|
|
12181
|
+
expose_nationality?: boolean;
|
|
12182
|
+
expose_nationalities?: boolean;
|
|
12183
|
+
expose_country_of_residence?: boolean;
|
|
12184
|
+
expose_eduperson_assurance?: boolean;
|
|
12185
|
+
expose_identity_source?: boolean;
|
|
12186
|
+
/**
|
|
12187
|
+
* If True, reviewers see applicant identity. If False, proposals are anonymized for reviewers.
|
|
12188
|
+
*/
|
|
12189
|
+
reviewers_see_applicant_details?: boolean;
|
|
12190
|
+
};
|
|
11778
12191
|
export type PatchedCallAssignmentConfigurationRequest = {
|
|
11779
12192
|
/**
|
|
11780
12193
|
* Automatically assign next-best reviewer when someone declines. If False, manager must manually approve reassignments.
|
|
@@ -12441,6 +12854,28 @@ export type PatchedOfferingUsagePolicyRequest = {
|
|
|
12441
12854
|
component_limits_set?: Array<NestedOfferingComponentLimitRequest>;
|
|
12442
12855
|
period?: PeriodEnum;
|
|
12443
12856
|
};
|
|
12857
|
+
export type PatchedOfferingUserAttributeConfigRequest = {
|
|
12858
|
+
offering?: string;
|
|
12859
|
+
expose_username?: boolean;
|
|
12860
|
+
expose_full_name?: boolean;
|
|
12861
|
+
expose_email?: boolean;
|
|
12862
|
+
expose_phone_number?: boolean;
|
|
12863
|
+
expose_organization?: boolean;
|
|
12864
|
+
expose_job_title?: boolean;
|
|
12865
|
+
expose_affiliations?: boolean;
|
|
12866
|
+
expose_gender?: boolean;
|
|
12867
|
+
expose_personal_title?: boolean;
|
|
12868
|
+
expose_place_of_birth?: boolean;
|
|
12869
|
+
expose_country_of_residence?: boolean;
|
|
12870
|
+
expose_nationality?: boolean;
|
|
12871
|
+
expose_nationalities?: boolean;
|
|
12872
|
+
expose_organization_country?: boolean;
|
|
12873
|
+
expose_organization_type?: boolean;
|
|
12874
|
+
expose_eduperson_assurance?: boolean;
|
|
12875
|
+
expose_civil_number?: boolean;
|
|
12876
|
+
expose_birth_date?: boolean;
|
|
12877
|
+
expose_identity_source?: boolean;
|
|
12878
|
+
};
|
|
12444
12879
|
export type PatchedOfferingUserRequest = {
|
|
12445
12880
|
user?: string;
|
|
12446
12881
|
offering?: string;
|
|
@@ -12768,6 +13203,30 @@ export type PatchedProtectedCallRequest = {
|
|
|
12768
13203
|
* Template for proposal slugs. Supports: {call_slug}, {round_slug}, {org_slug}, {year}, {month}, {counter}, {counter_padded}. Default: {round_slug}-{counter_padded}
|
|
12769
13204
|
*/
|
|
12770
13205
|
proposal_slug_template?: string | null;
|
|
13206
|
+
/**
|
|
13207
|
+
* List of email regex patterns. User must match one.
|
|
13208
|
+
*/
|
|
13209
|
+
user_email_patterns?: unknown;
|
|
13210
|
+
/**
|
|
13211
|
+
* List of allowed affiliations. User must have one.
|
|
13212
|
+
*/
|
|
13213
|
+
user_affiliations?: unknown;
|
|
13214
|
+
/**
|
|
13215
|
+
* List of allowed identity sources (identity providers).
|
|
13216
|
+
*/
|
|
13217
|
+
user_identity_sources?: unknown;
|
|
13218
|
+
/**
|
|
13219
|
+
* List of allowed nationality codes (ISO 3166-1 alpha-2). User must have one.
|
|
13220
|
+
*/
|
|
13221
|
+
user_nationalities?: unknown;
|
|
13222
|
+
/**
|
|
13223
|
+
* List of allowed organization type URNs (SCHAC). User must match one.
|
|
13224
|
+
*/
|
|
13225
|
+
user_organization_types?: unknown;
|
|
13226
|
+
/**
|
|
13227
|
+
* List of required assurance URIs (REFEDS). User must have ALL of these.
|
|
13228
|
+
*/
|
|
13229
|
+
user_assurance_levels?: unknown;
|
|
12771
13230
|
};
|
|
12772
13231
|
export type PatchedProtectedRoundRequest = {
|
|
12773
13232
|
start_time?: string;
|
|
@@ -13396,6 +13855,33 @@ export type PatchedUserRequest = {
|
|
|
13396
13855
|
last_name?: string;
|
|
13397
13856
|
birth_date?: string | null;
|
|
13398
13857
|
image?: (Blob | File) | null;
|
|
13858
|
+
/**
|
|
13859
|
+
* ISO 5218 gender code
|
|
13860
|
+
*/
|
|
13861
|
+
gender?: GenderEnum | NullEnum | null;
|
|
13862
|
+
/**
|
|
13863
|
+
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
13864
|
+
*/
|
|
13865
|
+
personal_title?: string;
|
|
13866
|
+
place_of_birth?: string;
|
|
13867
|
+
country_of_residence?: string;
|
|
13868
|
+
/**
|
|
13869
|
+
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
13870
|
+
*/
|
|
13871
|
+
nationality?: string;
|
|
13872
|
+
/**
|
|
13873
|
+
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
13874
|
+
*/
|
|
13875
|
+
nationalities?: unknown;
|
|
13876
|
+
organization_country?: string;
|
|
13877
|
+
/**
|
|
13878
|
+
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
13879
|
+
*/
|
|
13880
|
+
organization_type?: string;
|
|
13881
|
+
/**
|
|
13882
|
+
* REFEDS assurance profile URIs from identity provider
|
|
13883
|
+
*/
|
|
13884
|
+
eduperson_assurance?: unknown;
|
|
13399
13885
|
};
|
|
13400
13886
|
export type PatchedVmwareVirtualMachineRequest = {
|
|
13401
13887
|
description?: string;
|
|
@@ -13556,7 +14042,9 @@ export type PersonIdentifierFieldsResponse = {
|
|
|
13556
14042
|
};
|
|
13557
14043
|
};
|
|
13558
14044
|
export type PlanComponent = {
|
|
14045
|
+
readonly offering_uuid: string;
|
|
13559
14046
|
readonly offering_name: string;
|
|
14047
|
+
readonly plan_uuid: string;
|
|
13560
14048
|
readonly plan_name: string;
|
|
13561
14049
|
plan_unit: BillingUnit;
|
|
13562
14050
|
/**
|
|
@@ -13650,6 +14138,24 @@ export type Priority = {
|
|
|
13650
14138
|
icon_url?: string;
|
|
13651
14139
|
};
|
|
13652
14140
|
export type ProficiencyLevelEnum = 'expert' | 'familiar' | 'basic';
|
|
14141
|
+
export type ProfileCompleteness = {
|
|
14142
|
+
/**
|
|
14143
|
+
* Whether all mandatory profile fields are filled.
|
|
14144
|
+
*/
|
|
14145
|
+
is_complete: boolean;
|
|
14146
|
+
/**
|
|
14147
|
+
* List of mandatory fields that are missing.
|
|
14148
|
+
*/
|
|
14149
|
+
missing_fields: Array<string>;
|
|
14150
|
+
/**
|
|
14151
|
+
* List of all mandatory fields.
|
|
14152
|
+
*/
|
|
14153
|
+
mandatory_fields: Array<string>;
|
|
14154
|
+
/**
|
|
14155
|
+
* Whether enforcement of mandatory attributes is enabled.
|
|
14156
|
+
*/
|
|
14157
|
+
enforcement_enabled: boolean;
|
|
14158
|
+
};
|
|
13653
14159
|
export type Project = {
|
|
13654
14160
|
readonly url?: string;
|
|
13655
14161
|
readonly uuid?: string;
|
|
@@ -14371,6 +14877,10 @@ export type ProtectedCall = {
|
|
|
14371
14877
|
* Whether proposal applicants can see review comments and scores
|
|
14372
14878
|
*/
|
|
14373
14879
|
reviews_visible_to_submitters?: boolean;
|
|
14880
|
+
/**
|
|
14881
|
+
* Check if call has any eligibility restrictions configured.
|
|
14882
|
+
*/
|
|
14883
|
+
readonly has_eligibility_restrictions?: boolean;
|
|
14374
14884
|
created_by?: string | null;
|
|
14375
14885
|
reference_code?: string;
|
|
14376
14886
|
/**
|
|
@@ -14382,6 +14892,30 @@ export type ProtectedCall = {
|
|
|
14382
14892
|
* Template for proposal slugs. Supports: {call_slug}, {round_slug}, {org_slug}, {year}, {month}, {counter}, {counter_padded}. Default: {round_slug}-{counter_padded}
|
|
14383
14893
|
*/
|
|
14384
14894
|
proposal_slug_template?: string | null;
|
|
14895
|
+
/**
|
|
14896
|
+
* List of email regex patterns. User must match one.
|
|
14897
|
+
*/
|
|
14898
|
+
user_email_patterns?: unknown;
|
|
14899
|
+
/**
|
|
14900
|
+
* List of allowed affiliations. User must have one.
|
|
14901
|
+
*/
|
|
14902
|
+
user_affiliations?: unknown;
|
|
14903
|
+
/**
|
|
14904
|
+
* List of allowed identity sources (identity providers).
|
|
14905
|
+
*/
|
|
14906
|
+
user_identity_sources?: unknown;
|
|
14907
|
+
/**
|
|
14908
|
+
* List of allowed nationality codes (ISO 3166-1 alpha-2). User must have one.
|
|
14909
|
+
*/
|
|
14910
|
+
user_nationalities?: unknown;
|
|
14911
|
+
/**
|
|
14912
|
+
* List of allowed organization type URNs (SCHAC). User must match one.
|
|
14913
|
+
*/
|
|
14914
|
+
user_organization_types?: unknown;
|
|
14915
|
+
/**
|
|
14916
|
+
* List of required assurance URIs (REFEDS). User must have ALL of these.
|
|
14917
|
+
*/
|
|
14918
|
+
user_assurance_levels?: unknown;
|
|
14385
14919
|
};
|
|
14386
14920
|
export type ProtectedCallRequest = {
|
|
14387
14921
|
/**
|
|
@@ -14412,6 +14946,30 @@ export type ProtectedCallRequest = {
|
|
|
14412
14946
|
* Template for proposal slugs. Supports: {call_slug}, {round_slug}, {org_slug}, {year}, {month}, {counter}, {counter_padded}. Default: {round_slug}-{counter_padded}
|
|
14413
14947
|
*/
|
|
14414
14948
|
proposal_slug_template?: string | null;
|
|
14949
|
+
/**
|
|
14950
|
+
* List of email regex patterns. User must match one.
|
|
14951
|
+
*/
|
|
14952
|
+
user_email_patterns?: unknown;
|
|
14953
|
+
/**
|
|
14954
|
+
* List of allowed affiliations. User must have one.
|
|
14955
|
+
*/
|
|
14956
|
+
user_affiliations?: unknown;
|
|
14957
|
+
/**
|
|
14958
|
+
* List of allowed identity sources (identity providers).
|
|
14959
|
+
*/
|
|
14960
|
+
user_identity_sources?: unknown;
|
|
14961
|
+
/**
|
|
14962
|
+
* List of allowed nationality codes (ISO 3166-1 alpha-2). User must have one.
|
|
14963
|
+
*/
|
|
14964
|
+
user_nationalities?: unknown;
|
|
14965
|
+
/**
|
|
14966
|
+
* List of allowed organization type URNs (SCHAC). User must match one.
|
|
14967
|
+
*/
|
|
14968
|
+
user_organization_types?: unknown;
|
|
14969
|
+
/**
|
|
14970
|
+
* List of required assurance URIs (REFEDS). User must have ALL of these.
|
|
14971
|
+
*/
|
|
14972
|
+
user_assurance_levels?: unknown;
|
|
14415
14973
|
};
|
|
14416
14974
|
export type ProtectedProposalList = {
|
|
14417
14975
|
readonly uuid: string;
|
|
@@ -14461,6 +15019,34 @@ export type ProtectedRoundRequest = {
|
|
|
14461
15019
|
minimum_number_of_reviewers?: number | null;
|
|
14462
15020
|
};
|
|
14463
15021
|
export type ProtocolEnum = 'tcp' | 'udp' | 'icmp';
|
|
15022
|
+
export type ProviderCustomerStats = {
|
|
15023
|
+
/**
|
|
15024
|
+
* Total number of customers
|
|
15025
|
+
*/
|
|
15026
|
+
total: number;
|
|
15027
|
+
/**
|
|
15028
|
+
* New customers this month
|
|
15029
|
+
*/
|
|
15030
|
+
new_this_month: number;
|
|
15031
|
+
/**
|
|
15032
|
+
* Top customers by revenue
|
|
15033
|
+
*/
|
|
15034
|
+
top_by_revenue: Array<{
|
|
15035
|
+
[key: string]: unknown;
|
|
15036
|
+
}>;
|
|
15037
|
+
/**
|
|
15038
|
+
* Top customers by resource count
|
|
15039
|
+
*/
|
|
15040
|
+
top_by_resources: Array<{
|
|
15041
|
+
[key: string]: unknown;
|
|
15042
|
+
}>;
|
|
15043
|
+
/**
|
|
15044
|
+
* Monthly customer counts
|
|
15045
|
+
*/
|
|
15046
|
+
monthly: Array<{
|
|
15047
|
+
[key: string]: unknown;
|
|
15048
|
+
}>;
|
|
15049
|
+
};
|
|
14464
15050
|
export type ProviderOffering = {
|
|
14465
15051
|
readonly uuid?: string;
|
|
14466
15052
|
readonly customer_uuid?: string;
|
|
@@ -14660,6 +15246,14 @@ export type ProviderOfferingDetailsRequest = {
|
|
|
14660
15246
|
backend_metadata?: unknown;
|
|
14661
15247
|
compliance_checklist?: string | null;
|
|
14662
15248
|
};
|
|
15249
|
+
export type ProviderOfferingStats = {
|
|
15250
|
+
/**
|
|
15251
|
+
* Offering statistics including resources, revenue, and utilization
|
|
15252
|
+
*/
|
|
15253
|
+
offerings: Array<{
|
|
15254
|
+
[key: string]: unknown;
|
|
15255
|
+
}>;
|
|
15256
|
+
};
|
|
14663
15257
|
export type ProviderPlanDetails = {
|
|
14664
15258
|
readonly url: string;
|
|
14665
15259
|
readonly uuid: string;
|
|
@@ -14760,6 +15354,36 @@ export type ProviderRequestedResource = {
|
|
|
14760
15354
|
readonly proposal_name: string;
|
|
14761
15355
|
proposal: string;
|
|
14762
15356
|
};
|
|
15357
|
+
export type ProviderResourceStats = {
|
|
15358
|
+
/**
|
|
15359
|
+
* Total number of resources
|
|
15360
|
+
*/
|
|
15361
|
+
total: number;
|
|
15362
|
+
/**
|
|
15363
|
+
* Resource counts grouped by state
|
|
15364
|
+
*/
|
|
15365
|
+
by_state: {
|
|
15366
|
+
[key: string]: number;
|
|
15367
|
+
};
|
|
15368
|
+
/**
|
|
15369
|
+
* Resource counts grouped by offering
|
|
15370
|
+
*/
|
|
15371
|
+
by_offering: Array<{
|
|
15372
|
+
[key: string]: unknown;
|
|
15373
|
+
}>;
|
|
15374
|
+
/**
|
|
15375
|
+
* Monthly resource counts
|
|
15376
|
+
*/
|
|
15377
|
+
monthly: Array<{
|
|
15378
|
+
[key: string]: unknown;
|
|
15379
|
+
}>;
|
|
15380
|
+
};
|
|
15381
|
+
export type ProviderTeamUser = {
|
|
15382
|
+
user_uuid: string;
|
|
15383
|
+
username: string;
|
|
15384
|
+
full_name: string;
|
|
15385
|
+
role: string | null;
|
|
15386
|
+
};
|
|
14763
15387
|
export type ProviderUser = {
|
|
14764
15388
|
readonly uuid?: string;
|
|
14765
15389
|
readonly full_name?: string;
|
|
@@ -14804,6 +15428,10 @@ export type PublicCall = {
|
|
|
14804
15428
|
* Whether proposal applicants can see review comments and scores. If False, applicants only see final approval/rejection status.
|
|
14805
15429
|
*/
|
|
14806
15430
|
reviews_visible_to_submitters?: boolean;
|
|
15431
|
+
/**
|
|
15432
|
+
* Check if call has any eligibility restrictions configured.
|
|
15433
|
+
*/
|
|
15434
|
+
readonly has_eligibility_restrictions?: boolean;
|
|
14807
15435
|
};
|
|
14808
15436
|
export type PublicInvitation = {
|
|
14809
15437
|
readonly call_name: string;
|
|
@@ -16784,6 +17412,64 @@ export type ResourceLimitPeriod = {
|
|
|
16784
17412
|
*/
|
|
16785
17413
|
total?: string;
|
|
16786
17414
|
};
|
|
17415
|
+
export type ResourceMissingUsage = {
|
|
17416
|
+
/**
|
|
17417
|
+
* UUID of the resource
|
|
17418
|
+
*/
|
|
17419
|
+
uuid: string;
|
|
17420
|
+
/**
|
|
17421
|
+
* Name of the resource
|
|
17422
|
+
*/
|
|
17423
|
+
name: string;
|
|
17424
|
+
/**
|
|
17425
|
+
* Current state of the resource
|
|
17426
|
+
*/
|
|
17427
|
+
state: string;
|
|
17428
|
+
/**
|
|
17429
|
+
* Creation date of the resource
|
|
17430
|
+
*/
|
|
17431
|
+
created: string;
|
|
17432
|
+
/**
|
|
17433
|
+
* Name of the offering
|
|
17434
|
+
*/
|
|
17435
|
+
offering_name: string;
|
|
17436
|
+
/**
|
|
17437
|
+
* UUID of the offering
|
|
17438
|
+
*/
|
|
17439
|
+
offering_uuid: string;
|
|
17440
|
+
/**
|
|
17441
|
+
* Name of the service provider
|
|
17442
|
+
*/
|
|
17443
|
+
provider_name: string;
|
|
17444
|
+
/**
|
|
17445
|
+
* UUID of the service provider
|
|
17446
|
+
*/
|
|
17447
|
+
provider_uuid: string;
|
|
17448
|
+
/**
|
|
17449
|
+
* Name of the customer organization
|
|
17450
|
+
*/
|
|
17451
|
+
customer_name: string;
|
|
17452
|
+
/**
|
|
17453
|
+
* UUID of the customer organization
|
|
17454
|
+
*/
|
|
17455
|
+
customer_uuid: string;
|
|
17456
|
+
/**
|
|
17457
|
+
* Name of the project
|
|
17458
|
+
*/
|
|
17459
|
+
project_name: string;
|
|
17460
|
+
/**
|
|
17461
|
+
* UUID of the project
|
|
17462
|
+
*/
|
|
17463
|
+
project_uuid: string;
|
|
17464
|
+
/**
|
|
17465
|
+
* Date of the last usage report
|
|
17466
|
+
*/
|
|
17467
|
+
last_usage_date: string | null;
|
|
17468
|
+
/**
|
|
17469
|
+
* Number of days since last usage report
|
|
17470
|
+
*/
|
|
17471
|
+
days_since_last_report: number | null;
|
|
17472
|
+
};
|
|
16787
17473
|
export type ResourceOffering = {
|
|
16788
17474
|
name: string;
|
|
16789
17475
|
readonly uuid: string;
|
|
@@ -18230,6 +18916,16 @@ export type ServiceProvider = {
|
|
|
18230
18916
|
readonly organization_groups?: Array<OrganizationGroup>;
|
|
18231
18917
|
readonly offering_count?: number;
|
|
18232
18918
|
};
|
|
18919
|
+
export type ServiceProviderAccess = {
|
|
18920
|
+
offering_uuid: string;
|
|
18921
|
+
offering_name: string;
|
|
18922
|
+
provider_name: string | null;
|
|
18923
|
+
provider_uuid: string | null;
|
|
18924
|
+
exposed_fields: Array<string>;
|
|
18925
|
+
consent_date: string | null;
|
|
18926
|
+
consent_version: string | null;
|
|
18927
|
+
provider_team?: Array<ProviderTeamUser>;
|
|
18928
|
+
};
|
|
18233
18929
|
export type ServiceProviderApiSecretCode = {
|
|
18234
18930
|
/**
|
|
18235
18931
|
* API secret code for authenticating service provider requests
|
|
@@ -18397,6 +19093,24 @@ export type SilenceActionResponse = {
|
|
|
18397
19093
|
status: string;
|
|
18398
19094
|
duration_days?: number | null;
|
|
18399
19095
|
};
|
|
19096
|
+
export type SiteAgentConfigGenerationRequest = {
|
|
19097
|
+
/**
|
|
19098
|
+
* List of SLURM offering UUIDs to include in configuration
|
|
19099
|
+
*/
|
|
19100
|
+
offering_uuids: Array<string>;
|
|
19101
|
+
/**
|
|
19102
|
+
* Include SLURM periodic usage policy settings in configuration
|
|
19103
|
+
*/
|
|
19104
|
+
include_policy_settings?: boolean;
|
|
19105
|
+
/**
|
|
19106
|
+
* Waldur API URL (defaults to current server URL)
|
|
19107
|
+
*/
|
|
19108
|
+
waldur_api_url?: string;
|
|
19109
|
+
/**
|
|
19110
|
+
* Timezone for the site agent
|
|
19111
|
+
*/
|
|
19112
|
+
timezone?: string;
|
|
19113
|
+
};
|
|
18400
19114
|
export type SlurmAllocation = {
|
|
18401
19115
|
readonly url?: string;
|
|
18402
19116
|
readonly uuid?: string;
|
|
@@ -18477,6 +19191,58 @@ export type SlurmAssociation = {
|
|
|
18477
19191
|
username: string;
|
|
18478
19192
|
allocation: string;
|
|
18479
19193
|
};
|
|
19194
|
+
export type SlurmCommand = {
|
|
19195
|
+
/**
|
|
19196
|
+
* Command type: fairshare, limits, qos, reset_usage
|
|
19197
|
+
*/
|
|
19198
|
+
type: string;
|
|
19199
|
+
/**
|
|
19200
|
+
* Human-readable description
|
|
19201
|
+
*/
|
|
19202
|
+
description: string;
|
|
19203
|
+
/**
|
|
19204
|
+
* Actual shell command
|
|
19205
|
+
*/
|
|
19206
|
+
command: string;
|
|
19207
|
+
/**
|
|
19208
|
+
* Command parameters
|
|
19209
|
+
*/
|
|
19210
|
+
parameters: {
|
|
19211
|
+
[key: string]: unknown;
|
|
19212
|
+
};
|
|
19213
|
+
};
|
|
19214
|
+
export type SlurmCommandHistory = {
|
|
19215
|
+
readonly uuid: string;
|
|
19216
|
+
/**
|
|
19217
|
+
* Type of command: fairshare, limits, qos, reset_usage
|
|
19218
|
+
*/
|
|
19219
|
+
command_type: string;
|
|
19220
|
+
/**
|
|
19221
|
+
* Human-readable description of what the command does
|
|
19222
|
+
*/
|
|
19223
|
+
description: string;
|
|
19224
|
+
/**
|
|
19225
|
+
* Actual shell command that was/would be executed
|
|
19226
|
+
*/
|
|
19227
|
+
shell_command: string;
|
|
19228
|
+
/**
|
|
19229
|
+
* Command parameters as key-value pairs
|
|
19230
|
+
*/
|
|
19231
|
+
parameters?: unknown;
|
|
19232
|
+
readonly executed_at: string;
|
|
19233
|
+
/**
|
|
19234
|
+
* Whether command was executed in production or emulator mode
|
|
19235
|
+
*/
|
|
19236
|
+
execution_mode?: ExecutionModeEnum;
|
|
19237
|
+
/**
|
|
19238
|
+
* Whether the command execution was successful
|
|
19239
|
+
*/
|
|
19240
|
+
success?: boolean;
|
|
19241
|
+
/**
|
|
19242
|
+
* Error message if command execution failed
|
|
19243
|
+
*/
|
|
19244
|
+
error_message?: string;
|
|
19245
|
+
};
|
|
18480
19246
|
export type SlurmPeriodicUsagePolicy = {
|
|
18481
19247
|
readonly uuid: string;
|
|
18482
19248
|
readonly url: string;
|
|
@@ -18581,6 +19347,91 @@ export type SlurmPeriodicUsagePolicyRequest = {
|
|
|
18581
19347
|
*/
|
|
18582
19348
|
qos_strategy?: QosStrategyEnum;
|
|
18583
19349
|
};
|
|
19350
|
+
export type SlurmPolicyCarryover = {
|
|
19351
|
+
previous_usage: number;
|
|
19352
|
+
days_elapsed: number;
|
|
19353
|
+
half_life: number;
|
|
19354
|
+
decay_factor: number;
|
|
19355
|
+
effective_usage: number;
|
|
19356
|
+
base_allocation: number;
|
|
19357
|
+
unused_carryover: number;
|
|
19358
|
+
total_allocation: number;
|
|
19359
|
+
};
|
|
19360
|
+
export type SlurmPolicyDateProjection = {
|
|
19361
|
+
days: number | null;
|
|
19362
|
+
date: string | null;
|
|
19363
|
+
status: SlurmPolicyDateProjectionStatusEnum;
|
|
19364
|
+
};
|
|
19365
|
+
export type SlurmPolicyDateProjectionStatusEnum = 'never' | 'exceeded' | 'projected';
|
|
19366
|
+
export type SlurmPolicyDateProjections = {
|
|
19367
|
+
notification: SlurmPolicyDateProjection;
|
|
19368
|
+
slowdown: SlurmPolicyDateProjection;
|
|
19369
|
+
blocked: SlurmPolicyDateProjection;
|
|
19370
|
+
};
|
|
19371
|
+
export type SlurmPolicyPreviewRequestRequest = {
|
|
19372
|
+
/**
|
|
19373
|
+
* Base allocation for the period (in node-hours or billing units)
|
|
19374
|
+
*/
|
|
19375
|
+
allocation?: number;
|
|
19376
|
+
/**
|
|
19377
|
+
* Grace ratio for overconsumption allowance (0.2 = 20%)
|
|
19378
|
+
*/
|
|
19379
|
+
grace_ratio?: number;
|
|
19380
|
+
/**
|
|
19381
|
+
* Usage from the previous period
|
|
19382
|
+
*/
|
|
19383
|
+
previous_usage?: number;
|
|
19384
|
+
/**
|
|
19385
|
+
* Decay half-life in days for fairshare calculations
|
|
19386
|
+
*/
|
|
19387
|
+
fairshare_decay_half_life?: number;
|
|
19388
|
+
/**
|
|
19389
|
+
* Whether unused allocation carries over to next period
|
|
19390
|
+
*/
|
|
19391
|
+
carryover_enabled?: boolean;
|
|
19392
|
+
/**
|
|
19393
|
+
* Days elapsed since previous period (90 for quarterly)
|
|
19394
|
+
*/
|
|
19395
|
+
days_elapsed?: number;
|
|
19396
|
+
/**
|
|
19397
|
+
* Optional resource UUID to use for current usage data
|
|
19398
|
+
*/
|
|
19399
|
+
resource_uuid?: string | null;
|
|
19400
|
+
/**
|
|
19401
|
+
* Current usage in this period (manual input or from resource)
|
|
19402
|
+
*/
|
|
19403
|
+
current_usage?: number;
|
|
19404
|
+
/**
|
|
19405
|
+
* Average daily usage rate for projections
|
|
19406
|
+
*/
|
|
19407
|
+
daily_usage_rate?: number;
|
|
19408
|
+
};
|
|
19409
|
+
export type SlurmPolicyPreviewResponse = {
|
|
19410
|
+
base_allocation: number;
|
|
19411
|
+
effective_allocation: number;
|
|
19412
|
+
carryover_enabled: boolean;
|
|
19413
|
+
carryover: SlurmPolicyCarryover | null;
|
|
19414
|
+
thresholds: SlurmPolicyThresholds;
|
|
19415
|
+
grace_ratio: number;
|
|
19416
|
+
half_life: number;
|
|
19417
|
+
current_usage?: number;
|
|
19418
|
+
daily_usage_rate?: number;
|
|
19419
|
+
usage_percentage?: number;
|
|
19420
|
+
current_qos_status?: CurrentQosStatusEnum;
|
|
19421
|
+
date_projections?: SlurmPolicyDateProjections;
|
|
19422
|
+
preview_commands?: Array<SlurmCommand>;
|
|
19423
|
+
command_history?: Array<SlurmCommandHistory>;
|
|
19424
|
+
billing_period_start?: string;
|
|
19425
|
+
billing_period_end?: string;
|
|
19426
|
+
};
|
|
19427
|
+
export type SlurmPolicyThresholds = {
|
|
19428
|
+
allocation: number;
|
|
19429
|
+
grace_ratio: number;
|
|
19430
|
+
notification_ratio: number;
|
|
19431
|
+
notification_threshold: number;
|
|
19432
|
+
slowdown_threshold: number;
|
|
19433
|
+
blocked_threshold: number;
|
|
19434
|
+
};
|
|
18584
19435
|
export type SmaxWebHookReceiver = {
|
|
18585
19436
|
id: string;
|
|
18586
19437
|
};
|
|
@@ -18788,6 +19639,36 @@ export type StateTransitionError = {
|
|
|
18788
19639
|
*/
|
|
18789
19640
|
detail: string;
|
|
18790
19641
|
};
|
|
19642
|
+
export type StorageDataType = {
|
|
19643
|
+
key: string;
|
|
19644
|
+
label: string;
|
|
19645
|
+
};
|
|
19646
|
+
export type StorageDataTypeRequest = {
|
|
19647
|
+
key: string;
|
|
19648
|
+
label: string;
|
|
19649
|
+
};
|
|
19650
|
+
export type StorageFolderConfig = {
|
|
19651
|
+
component_type: string;
|
|
19652
|
+
default_hard_quota_multiplier?: number;
|
|
19653
|
+
inode_soft_multiplier?: number;
|
|
19654
|
+
inode_hard_multiplier?: number;
|
|
19655
|
+
storage_data_types: Array<StorageDataType>;
|
|
19656
|
+
/**
|
|
19657
|
+
* Default permission to auto-select
|
|
19658
|
+
*/
|
|
19659
|
+
default_permission?: DefaultPermissionEnum;
|
|
19660
|
+
};
|
|
19661
|
+
export type StorageFolderConfigRequest = {
|
|
19662
|
+
component_type: string;
|
|
19663
|
+
default_hard_quota_multiplier?: number;
|
|
19664
|
+
inode_soft_multiplier?: number;
|
|
19665
|
+
inode_hard_multiplier?: number;
|
|
19666
|
+
storage_data_types: Array<StorageDataTypeRequest>;
|
|
19667
|
+
/**
|
|
19668
|
+
* Default permission to auto-select
|
|
19669
|
+
*/
|
|
19670
|
+
default_permission?: DefaultPermissionEnum;
|
|
19671
|
+
};
|
|
18791
19672
|
export type StorageModeEnum = 'fixed' | 'dynamic';
|
|
18792
19673
|
export type SubNetMapping = {
|
|
18793
19674
|
src_cidr: string;
|
|
@@ -18825,24 +19706,6 @@ export type SubresourceOffering = {
|
|
|
18825
19706
|
*/
|
|
18826
19707
|
readonly type: string;
|
|
18827
19708
|
};
|
|
18828
|
-
export type SubscriptionQueuesOverview = {
|
|
18829
|
-
/**
|
|
18830
|
-
* Total number of vhosts with subscription queues
|
|
18831
|
-
*/
|
|
18832
|
-
readonly total_vhosts: number;
|
|
18833
|
-
/**
|
|
18834
|
-
* Total number of subscription queues
|
|
18835
|
-
*/
|
|
18836
|
-
readonly total_queues: number;
|
|
18837
|
-
/**
|
|
18838
|
-
* Total messages across all subscription queues
|
|
18839
|
-
*/
|
|
18840
|
-
readonly total_messages: number;
|
|
18841
|
-
/**
|
|
18842
|
-
* Top 10 queues by message count
|
|
18843
|
-
*/
|
|
18844
|
-
readonly top_queues_by_messages: Array<TopQueue>;
|
|
18845
|
-
};
|
|
18846
19709
|
export type SuggestAlternativeReviewers = {
|
|
18847
19710
|
/**
|
|
18848
19711
|
* List of alternative reviewers with affinity scores
|
|
@@ -18917,6 +19780,11 @@ export type TagRequest = {
|
|
|
18917
19780
|
export type TagsRequest = {
|
|
18918
19781
|
tags?: Array<string>;
|
|
18919
19782
|
};
|
|
19783
|
+
export type TargetUser = {
|
|
19784
|
+
uuid: string;
|
|
19785
|
+
username: string;
|
|
19786
|
+
full_name: string;
|
|
19787
|
+
};
|
|
18920
19788
|
export type Template = {
|
|
18921
19789
|
readonly url: string;
|
|
18922
19790
|
readonly uuid: string;
|
|
@@ -19181,6 +20049,33 @@ export type User = {
|
|
|
19181
20049
|
readonly identity_source?: string;
|
|
19182
20050
|
readonly has_active_session?: boolean;
|
|
19183
20051
|
readonly ip_address?: string | null;
|
|
20052
|
+
/**
|
|
20053
|
+
* ISO 5218 gender code
|
|
20054
|
+
*/
|
|
20055
|
+
gender?: GenderEnum | NullEnum | null;
|
|
20056
|
+
/**
|
|
20057
|
+
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
20058
|
+
*/
|
|
20059
|
+
personal_title?: string;
|
|
20060
|
+
place_of_birth?: string;
|
|
20061
|
+
country_of_residence?: string;
|
|
20062
|
+
/**
|
|
20063
|
+
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
20064
|
+
*/
|
|
20065
|
+
nationality?: string;
|
|
20066
|
+
/**
|
|
20067
|
+
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
20068
|
+
*/
|
|
20069
|
+
nationalities?: unknown;
|
|
20070
|
+
organization_country?: string;
|
|
20071
|
+
/**
|
|
20072
|
+
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
20073
|
+
*/
|
|
20074
|
+
organization_type?: string;
|
|
20075
|
+
/**
|
|
20076
|
+
* REFEDS assurance profile URIs from identity provider
|
|
20077
|
+
*/
|
|
20078
|
+
eduperson_assurance?: unknown;
|
|
19184
20079
|
};
|
|
19185
20080
|
export type UserAction = {
|
|
19186
20081
|
readonly uuid: string;
|
|
@@ -19248,6 +20143,10 @@ export type UserActionSummary = {
|
|
|
19248
20143
|
};
|
|
19249
20144
|
overdue: number;
|
|
19250
20145
|
};
|
|
20146
|
+
export type UserActiveStatusCount = {
|
|
20147
|
+
status: string;
|
|
20148
|
+
count: number;
|
|
20149
|
+
};
|
|
19251
20150
|
export type UserAffiliationCount = {
|
|
19252
20151
|
/**
|
|
19253
20152
|
* Affiliation name
|
|
@@ -19346,6 +20245,27 @@ export type UserConsentInfo = {
|
|
|
19346
20245
|
readonly agreement_date: string;
|
|
19347
20246
|
readonly is_revoked: boolean;
|
|
19348
20247
|
};
|
|
20248
|
+
export type UserDataAccess = {
|
|
20249
|
+
administrative_access: AdministrativeAccess;
|
|
20250
|
+
organizational_access: Array<OrganizationalAccess>;
|
|
20251
|
+
service_provider_access: Array<ServiceProviderAccess>;
|
|
20252
|
+
summary: DataAccessSummary;
|
|
20253
|
+
};
|
|
20254
|
+
export type UserDataAccessLog = {
|
|
20255
|
+
uuid: string;
|
|
20256
|
+
timestamp: string;
|
|
20257
|
+
accessor_type: AccessorTypeEnum;
|
|
20258
|
+
accessed_fields: Array<string>;
|
|
20259
|
+
accessor_category?: string;
|
|
20260
|
+
accessor?: AccessorUser;
|
|
20261
|
+
/**
|
|
20262
|
+
* An IPv4 or IPv6 address.
|
|
20263
|
+
*/
|
|
20264
|
+
ip_address?: string | null;
|
|
20265
|
+
context?: {
|
|
20266
|
+
[key: string]: unknown;
|
|
20267
|
+
};
|
|
20268
|
+
};
|
|
19349
20269
|
export type UserEmailChangeRequest = {
|
|
19350
20270
|
email: string;
|
|
19351
20271
|
};
|
|
@@ -19373,6 +20293,10 @@ export type UserInfoRequest = {
|
|
|
19373
20293
|
shortname?: string | null;
|
|
19374
20294
|
user: string;
|
|
19375
20295
|
};
|
|
20296
|
+
export type UserLanguageCount = {
|
|
20297
|
+
language: string;
|
|
20298
|
+
count: number;
|
|
20299
|
+
};
|
|
19376
20300
|
export type UserOfferingConsent = {
|
|
19377
20301
|
readonly uuid: string;
|
|
19378
20302
|
readonly user_uuid: string;
|
|
@@ -19396,6 +20320,10 @@ export type UserOfferingConsent = {
|
|
|
19396
20320
|
readonly modified: string;
|
|
19397
20321
|
readonly has_consent: boolean;
|
|
19398
20322
|
readonly requires_reconsent: boolean;
|
|
20323
|
+
/**
|
|
20324
|
+
* List of user attributes that will be shared with service provider
|
|
20325
|
+
*/
|
|
20326
|
+
readonly collected_attributes: Array<string>;
|
|
19399
20327
|
};
|
|
19400
20328
|
export type UserOfferingConsentCreate = {
|
|
19401
20329
|
offering: string;
|
|
@@ -19416,6 +20344,10 @@ export type UserOrganizationCount = {
|
|
|
19416
20344
|
*/
|
|
19417
20345
|
count: number;
|
|
19418
20346
|
};
|
|
20347
|
+
export type UserRegistrationTrend = {
|
|
20348
|
+
month: string;
|
|
20349
|
+
count: number;
|
|
20350
|
+
};
|
|
19419
20351
|
export type UserRequest = {
|
|
19420
20352
|
/**
|
|
19421
20353
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
@@ -19463,6 +20395,33 @@ export type UserRequest = {
|
|
|
19463
20395
|
last_name?: string;
|
|
19464
20396
|
birth_date?: string | null;
|
|
19465
20397
|
image?: (Blob | File) | null;
|
|
20398
|
+
/**
|
|
20399
|
+
* ISO 5218 gender code
|
|
20400
|
+
*/
|
|
20401
|
+
gender?: GenderEnum | NullEnum | null;
|
|
20402
|
+
/**
|
|
20403
|
+
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
20404
|
+
*/
|
|
20405
|
+
personal_title?: string;
|
|
20406
|
+
place_of_birth?: string;
|
|
20407
|
+
country_of_residence?: string;
|
|
20408
|
+
/**
|
|
20409
|
+
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
20410
|
+
*/
|
|
20411
|
+
nationality?: string;
|
|
20412
|
+
/**
|
|
20413
|
+
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
20414
|
+
*/
|
|
20415
|
+
nationalities?: unknown;
|
|
20416
|
+
organization_country?: string;
|
|
20417
|
+
/**
|
|
20418
|
+
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
20419
|
+
*/
|
|
20420
|
+
organization_type?: string;
|
|
20421
|
+
/**
|
|
20422
|
+
* REFEDS assurance profile URIs from identity provider
|
|
20423
|
+
*/
|
|
20424
|
+
eduperson_assurance?: unknown;
|
|
19466
20425
|
};
|
|
19467
20426
|
export type UserRoleCreateRequest = {
|
|
19468
20427
|
role: string;
|
|
@@ -19906,6 +20865,24 @@ export type VolumeTypeMappingRequest = {
|
|
|
19906
20865
|
src_type_uuid: string;
|
|
19907
20866
|
dst_type_uuid: string;
|
|
19908
20867
|
};
|
|
20868
|
+
export type WaldurFieldSuggestion = {
|
|
20869
|
+
/**
|
|
20870
|
+
* Waldur User model field name
|
|
20871
|
+
*/
|
|
20872
|
+
field: string;
|
|
20873
|
+
/**
|
|
20874
|
+
* Human-readable field description
|
|
20875
|
+
*/
|
|
20876
|
+
description: string;
|
|
20877
|
+
/**
|
|
20878
|
+
* OIDC claims that could map to this field, ordered by likelihood
|
|
20879
|
+
*/
|
|
20880
|
+
suggested_claims: Array<string>;
|
|
20881
|
+
/**
|
|
20882
|
+
* Claims from this IdP that match the suggestions
|
|
20883
|
+
*/
|
|
20884
|
+
available_claims: Array<string>;
|
|
20885
|
+
};
|
|
19909
20886
|
export type WebHook = {
|
|
19910
20887
|
readonly url: string;
|
|
19911
20888
|
readonly uuid: string;
|
|
@@ -21117,6 +22094,11 @@ export type ConstanceSettingsRequestForm = {
|
|
|
21117
22094
|
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
21118
22095
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
21119
22096
|
WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
|
|
22097
|
+
DEFAULT_OFFERING_USER_ATTRIBUTES?: Array<string>;
|
|
22098
|
+
INVITATION_ALLOWED_FIELDS?: Array<string>;
|
|
22099
|
+
ENABLED_USER_PROFILE_ATTRIBUTES?: Array<string>;
|
|
22100
|
+
MANDATORY_USER_ATTRIBUTES?: Array<string>;
|
|
22101
|
+
ENFORCE_MANDATORY_USER_ATTRIBUTES?: boolean;
|
|
21120
22102
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
21121
22103
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
21122
22104
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
@@ -21155,6 +22137,9 @@ export type ConstanceSettingsRequestForm = {
|
|
|
21155
22137
|
USER_ACTIONS_NOTIFICATION_THRESHOLD?: number;
|
|
21156
22138
|
USER_ACTIONS_EXECUTION_RETENTION_DAYS?: number;
|
|
21157
22139
|
USER_ACTIONS_DEFAULT_EXPIRATION_REMINDERS?: Array<string>;
|
|
22140
|
+
USER_DATA_ACCESS_LOGGING_ENABLED?: boolean;
|
|
22141
|
+
USER_DATA_ACCESS_LOG_RETENTION_DAYS?: number;
|
|
22142
|
+
USER_DATA_ACCESS_LOG_SELF_ACCESS?: boolean;
|
|
21158
22143
|
};
|
|
21159
22144
|
export type ConstanceSettingsRequestMultipart = {
|
|
21160
22145
|
SITE_NAME?: string;
|
|
@@ -21316,6 +22301,11 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
21316
22301
|
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
21317
22302
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
21318
22303
|
WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
|
|
22304
|
+
DEFAULT_OFFERING_USER_ATTRIBUTES?: Array<string>;
|
|
22305
|
+
INVITATION_ALLOWED_FIELDS?: Array<string>;
|
|
22306
|
+
ENABLED_USER_PROFILE_ATTRIBUTES?: Array<string>;
|
|
22307
|
+
MANDATORY_USER_ATTRIBUTES?: Array<string>;
|
|
22308
|
+
ENFORCE_MANDATORY_USER_ATTRIBUTES?: boolean;
|
|
21319
22309
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
21320
22310
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
21321
22311
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
@@ -21354,6 +22344,9 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
21354
22344
|
USER_ACTIONS_NOTIFICATION_THRESHOLD?: number;
|
|
21355
22345
|
USER_ACTIONS_EXECUTION_RETENTION_DAYS?: number;
|
|
21356
22346
|
USER_ACTIONS_DEFAULT_EXPIRATION_REMINDERS?: Array<string>;
|
|
22347
|
+
USER_DATA_ACCESS_LOGGING_ENABLED?: boolean;
|
|
22348
|
+
USER_DATA_ACCESS_LOG_RETENTION_DAYS?: number;
|
|
22349
|
+
USER_DATA_ACCESS_LOG_SELF_ACCESS?: boolean;
|
|
21357
22350
|
};
|
|
21358
22351
|
export type PaymentRequestForm = {
|
|
21359
22352
|
profile: string;
|
|
@@ -21468,6 +22461,33 @@ export type UserRequestForm = {
|
|
|
21468
22461
|
last_name?: string;
|
|
21469
22462
|
birth_date?: string | null;
|
|
21470
22463
|
image?: (Blob | File) | null;
|
|
22464
|
+
/**
|
|
22465
|
+
* ISO 5218 gender code
|
|
22466
|
+
*/
|
|
22467
|
+
gender?: GenderEnum | NullEnum | null;
|
|
22468
|
+
/**
|
|
22469
|
+
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
22470
|
+
*/
|
|
22471
|
+
personal_title?: string;
|
|
22472
|
+
place_of_birth?: string;
|
|
22473
|
+
country_of_residence?: string;
|
|
22474
|
+
/**
|
|
22475
|
+
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
22476
|
+
*/
|
|
22477
|
+
nationality?: string;
|
|
22478
|
+
/**
|
|
22479
|
+
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
22480
|
+
*/
|
|
22481
|
+
nationalities?: unknown;
|
|
22482
|
+
organization_country?: string;
|
|
22483
|
+
/**
|
|
22484
|
+
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
22485
|
+
*/
|
|
22486
|
+
organization_type?: string;
|
|
22487
|
+
/**
|
|
22488
|
+
* REFEDS assurance profile URIs from identity provider
|
|
22489
|
+
*/
|
|
22490
|
+
eduperson_assurance?: unknown;
|
|
21471
22491
|
};
|
|
21472
22492
|
export type UserRequestMultipart = {
|
|
21473
22493
|
/**
|
|
@@ -21516,6 +22536,33 @@ export type UserRequestMultipart = {
|
|
|
21516
22536
|
last_name?: string;
|
|
21517
22537
|
birth_date?: string | null;
|
|
21518
22538
|
image?: (Blob | File) | null;
|
|
22539
|
+
/**
|
|
22540
|
+
* ISO 5218 gender code
|
|
22541
|
+
*/
|
|
22542
|
+
gender?: GenderEnum | NullEnum | null;
|
|
22543
|
+
/**
|
|
22544
|
+
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
22545
|
+
*/
|
|
22546
|
+
personal_title?: string;
|
|
22547
|
+
place_of_birth?: string;
|
|
22548
|
+
country_of_residence?: string;
|
|
22549
|
+
/**
|
|
22550
|
+
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
22551
|
+
*/
|
|
22552
|
+
nationality?: string;
|
|
22553
|
+
/**
|
|
22554
|
+
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
22555
|
+
*/
|
|
22556
|
+
nationalities?: unknown;
|
|
22557
|
+
organization_country?: string;
|
|
22558
|
+
/**
|
|
22559
|
+
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
22560
|
+
*/
|
|
22561
|
+
organization_type?: string;
|
|
22562
|
+
/**
|
|
22563
|
+
* REFEDS assurance profile URIs from identity provider
|
|
22564
|
+
*/
|
|
22565
|
+
eduperson_assurance?: unknown;
|
|
21519
22566
|
};
|
|
21520
22567
|
export type PatchedUserRequestForm = {
|
|
21521
22568
|
/**
|
|
@@ -21563,6 +22610,33 @@ export type PatchedUserRequestForm = {
|
|
|
21563
22610
|
last_name?: string;
|
|
21564
22611
|
birth_date?: string | null;
|
|
21565
22612
|
image?: (Blob | File) | null;
|
|
22613
|
+
/**
|
|
22614
|
+
* ISO 5218 gender code
|
|
22615
|
+
*/
|
|
22616
|
+
gender?: GenderEnum | NullEnum | null;
|
|
22617
|
+
/**
|
|
22618
|
+
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
22619
|
+
*/
|
|
22620
|
+
personal_title?: string;
|
|
22621
|
+
place_of_birth?: string;
|
|
22622
|
+
country_of_residence?: string;
|
|
22623
|
+
/**
|
|
22624
|
+
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
22625
|
+
*/
|
|
22626
|
+
nationality?: string;
|
|
22627
|
+
/**
|
|
22628
|
+
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
22629
|
+
*/
|
|
22630
|
+
nationalities?: unknown;
|
|
22631
|
+
organization_country?: string;
|
|
22632
|
+
/**
|
|
22633
|
+
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
22634
|
+
*/
|
|
22635
|
+
organization_type?: string;
|
|
22636
|
+
/**
|
|
22637
|
+
* REFEDS assurance profile URIs from identity provider
|
|
22638
|
+
*/
|
|
22639
|
+
eduperson_assurance?: unknown;
|
|
21566
22640
|
};
|
|
21567
22641
|
export type PatchedUserRequestMultipart = {
|
|
21568
22642
|
/**
|
|
@@ -21610,6 +22684,33 @@ export type PatchedUserRequestMultipart = {
|
|
|
21610
22684
|
last_name?: string;
|
|
21611
22685
|
birth_date?: string | null;
|
|
21612
22686
|
image?: (Blob | File) | null;
|
|
22687
|
+
/**
|
|
22688
|
+
* ISO 5218 gender code
|
|
22689
|
+
*/
|
|
22690
|
+
gender?: GenderEnum | NullEnum | null;
|
|
22691
|
+
/**
|
|
22692
|
+
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
22693
|
+
*/
|
|
22694
|
+
personal_title?: string;
|
|
22695
|
+
place_of_birth?: string;
|
|
22696
|
+
country_of_residence?: string;
|
|
22697
|
+
/**
|
|
22698
|
+
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
22699
|
+
*/
|
|
22700
|
+
nationality?: string;
|
|
22701
|
+
/**
|
|
22702
|
+
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
22703
|
+
*/
|
|
22704
|
+
nationalities?: unknown;
|
|
22705
|
+
organization_country?: string;
|
|
22706
|
+
/**
|
|
22707
|
+
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
22708
|
+
*/
|
|
22709
|
+
organization_type?: string;
|
|
22710
|
+
/**
|
|
22711
|
+
* REFEDS assurance profile URIs from identity provider
|
|
22712
|
+
*/
|
|
22713
|
+
eduperson_assurance?: unknown;
|
|
21613
22714
|
};
|
|
21614
22715
|
/**
|
|
21615
22716
|
* A page number within the paginated result set.
|
|
@@ -28531,6 +29632,107 @@ export type DailyQuotasRetrieveResponses = {
|
|
|
28531
29632
|
};
|
|
28532
29633
|
};
|
|
28533
29634
|
export type DailyQuotasRetrieveResponse = DailyQuotasRetrieveResponses[keyof DailyQuotasRetrieveResponses];
|
|
29635
|
+
export type DataAccessLogsListData = {
|
|
29636
|
+
body?: never;
|
|
29637
|
+
path?: never;
|
|
29638
|
+
query?: {
|
|
29639
|
+
/**
|
|
29640
|
+
* Type of accessor
|
|
29641
|
+
*
|
|
29642
|
+
*
|
|
29643
|
+
*/
|
|
29644
|
+
accessor_type?: 'organization_member' | 'self' | 'service_provider' | 'staff' | 'support';
|
|
29645
|
+
accessor_uuid?: string;
|
|
29646
|
+
end_date?: string;
|
|
29647
|
+
/**
|
|
29648
|
+
* Ordering
|
|
29649
|
+
*
|
|
29650
|
+
*
|
|
29651
|
+
*/
|
|
29652
|
+
o?: Array<'-accessor_type' | '-accessor_username' | '-timestamp' | '-user_username' | 'accessor_type' | 'accessor_username' | 'timestamp' | 'user_username'>;
|
|
29653
|
+
/**
|
|
29654
|
+
* A page number within the paginated result set.
|
|
29655
|
+
*/
|
|
29656
|
+
page?: number;
|
|
29657
|
+
/**
|
|
29658
|
+
* Number of results to return per page.
|
|
29659
|
+
*/
|
|
29660
|
+
page_size?: number;
|
|
29661
|
+
query?: string;
|
|
29662
|
+
start_date?: string;
|
|
29663
|
+
user_uuid?: string;
|
|
29664
|
+
};
|
|
29665
|
+
url: '/api/data-access-logs/';
|
|
29666
|
+
};
|
|
29667
|
+
export type DataAccessLogsListResponses = {
|
|
29668
|
+
200: Array<GlobalUserDataAccessLog>;
|
|
29669
|
+
};
|
|
29670
|
+
export type DataAccessLogsListResponse = DataAccessLogsListResponses[keyof DataAccessLogsListResponses];
|
|
29671
|
+
export type DataAccessLogsCountData = {
|
|
29672
|
+
body?: never;
|
|
29673
|
+
path?: never;
|
|
29674
|
+
query?: {
|
|
29675
|
+
/**
|
|
29676
|
+
* Type of accessor
|
|
29677
|
+
*
|
|
29678
|
+
*
|
|
29679
|
+
*/
|
|
29680
|
+
accessor_type?: 'organization_member' | 'self' | 'service_provider' | 'staff' | 'support';
|
|
29681
|
+
accessor_uuid?: string;
|
|
29682
|
+
end_date?: string;
|
|
29683
|
+
/**
|
|
29684
|
+
* Ordering
|
|
29685
|
+
*
|
|
29686
|
+
*
|
|
29687
|
+
*/
|
|
29688
|
+
o?: Array<'-accessor_type' | '-accessor_username' | '-timestamp' | '-user_username' | 'accessor_type' | 'accessor_username' | 'timestamp' | 'user_username'>;
|
|
29689
|
+
/**
|
|
29690
|
+
* A page number within the paginated result set.
|
|
29691
|
+
*/
|
|
29692
|
+
page?: number;
|
|
29693
|
+
/**
|
|
29694
|
+
* Number of results to return per page.
|
|
29695
|
+
*/
|
|
29696
|
+
page_size?: number;
|
|
29697
|
+
query?: string;
|
|
29698
|
+
start_date?: string;
|
|
29699
|
+
user_uuid?: string;
|
|
29700
|
+
};
|
|
29701
|
+
url: '/api/data-access-logs/';
|
|
29702
|
+
};
|
|
29703
|
+
export type DataAccessLogsCountResponses = {
|
|
29704
|
+
/**
|
|
29705
|
+
* No response body
|
|
29706
|
+
*/
|
|
29707
|
+
200: unknown;
|
|
29708
|
+
};
|
|
29709
|
+
export type DataAccessLogsDestroyData = {
|
|
29710
|
+
body?: never;
|
|
29711
|
+
path: {
|
|
29712
|
+
uuid: string;
|
|
29713
|
+
};
|
|
29714
|
+
query?: never;
|
|
29715
|
+
url: '/api/data-access-logs/{uuid}/';
|
|
29716
|
+
};
|
|
29717
|
+
export type DataAccessLogsDestroyResponses = {
|
|
29718
|
+
/**
|
|
29719
|
+
* No response body
|
|
29720
|
+
*/
|
|
29721
|
+
204: void;
|
|
29722
|
+
};
|
|
29723
|
+
export type DataAccessLogsDestroyResponse = DataAccessLogsDestroyResponses[keyof DataAccessLogsDestroyResponses];
|
|
29724
|
+
export type DataAccessLogsRetrieveData = {
|
|
29725
|
+
body?: never;
|
|
29726
|
+
path: {
|
|
29727
|
+
uuid: string;
|
|
29728
|
+
};
|
|
29729
|
+
query?: never;
|
|
29730
|
+
url: '/api/data-access-logs/{uuid}/';
|
|
29731
|
+
};
|
|
29732
|
+
export type DataAccessLogsRetrieveResponses = {
|
|
29733
|
+
200: GlobalUserDataAccessLog;
|
|
29734
|
+
};
|
|
29735
|
+
export type DataAccessLogsRetrieveResponse = DataAccessLogsRetrieveResponses[keyof DataAccessLogsRetrieveResponses];
|
|
28534
29736
|
export type DatabaseStatsRetrieveData = {
|
|
28535
29737
|
body?: never;
|
|
28536
29738
|
path?: never;
|
|
@@ -28626,7 +29828,7 @@ export type DebugPubsubQueuesRetrieveErrors = {
|
|
|
28626
29828
|
};
|
|
28627
29829
|
export type DebugPubsubQueuesRetrieveError = DebugPubsubQueuesRetrieveErrors[keyof DebugPubsubQueuesRetrieveErrors];
|
|
28628
29830
|
export type DebugPubsubQueuesRetrieveResponses = {
|
|
28629
|
-
200:
|
|
29831
|
+
200: EventSubscriptionQueuesOverview;
|
|
28630
29832
|
};
|
|
28631
29833
|
export type DebugPubsubQueuesRetrieveResponse = DebugPubsubQueuesRetrieveResponses[keyof DebugPubsubQueuesRetrieveResponses];
|
|
28632
29834
|
export type DigitaloceanDropletsListData = {
|
|
@@ -29262,6 +30464,91 @@ export type EmailLogsRetrieveResponses = {
|
|
|
29262
30464
|
200: EmailLog;
|
|
29263
30465
|
};
|
|
29264
30466
|
export type EmailLogsRetrieveResponse = EmailLogsRetrieveResponses[keyof EmailLogsRetrieveResponses];
|
|
30467
|
+
export type EventSubscriptionQueuesListData = {
|
|
30468
|
+
body?: never;
|
|
30469
|
+
path?: never;
|
|
30470
|
+
query?: {
|
|
30471
|
+
event_subscription_uuid?: string;
|
|
30472
|
+
/**
|
|
30473
|
+
* Ordering
|
|
30474
|
+
*
|
|
30475
|
+
*
|
|
30476
|
+
*/
|
|
30477
|
+
o?: Array<'-created' | 'created'>;
|
|
30478
|
+
object_type?: string;
|
|
30479
|
+
offering_uuid?: string;
|
|
30480
|
+
/**
|
|
30481
|
+
* A page number within the paginated result set.
|
|
30482
|
+
*/
|
|
30483
|
+
page?: number;
|
|
30484
|
+
/**
|
|
30485
|
+
* Number of results to return per page.
|
|
30486
|
+
*/
|
|
30487
|
+
page_size?: number;
|
|
30488
|
+
};
|
|
30489
|
+
url: '/api/event-subscription-queues/';
|
|
30490
|
+
};
|
|
30491
|
+
export type EventSubscriptionQueuesListResponses = {
|
|
30492
|
+
200: Array<EventSubscriptionQueue>;
|
|
30493
|
+
};
|
|
30494
|
+
export type EventSubscriptionQueuesListResponse = EventSubscriptionQueuesListResponses[keyof EventSubscriptionQueuesListResponses];
|
|
30495
|
+
export type EventSubscriptionQueuesCountData = {
|
|
30496
|
+
body?: never;
|
|
30497
|
+
path?: never;
|
|
30498
|
+
query?: {
|
|
30499
|
+
event_subscription_uuid?: string;
|
|
30500
|
+
/**
|
|
30501
|
+
* Ordering
|
|
30502
|
+
*
|
|
30503
|
+
*
|
|
30504
|
+
*/
|
|
30505
|
+
o?: Array<'-created' | 'created'>;
|
|
30506
|
+
object_type?: string;
|
|
30507
|
+
offering_uuid?: string;
|
|
30508
|
+
/**
|
|
30509
|
+
* A page number within the paginated result set.
|
|
30510
|
+
*/
|
|
30511
|
+
page?: number;
|
|
30512
|
+
/**
|
|
30513
|
+
* Number of results to return per page.
|
|
30514
|
+
*/
|
|
30515
|
+
page_size?: number;
|
|
30516
|
+
};
|
|
30517
|
+
url: '/api/event-subscription-queues/';
|
|
30518
|
+
};
|
|
30519
|
+
export type EventSubscriptionQueuesCountResponses = {
|
|
30520
|
+
/**
|
|
30521
|
+
* No response body
|
|
30522
|
+
*/
|
|
30523
|
+
200: unknown;
|
|
30524
|
+
};
|
|
30525
|
+
export type EventSubscriptionQueuesDestroyData = {
|
|
30526
|
+
body?: never;
|
|
30527
|
+
path: {
|
|
30528
|
+
uuid: string;
|
|
30529
|
+
};
|
|
30530
|
+
query?: never;
|
|
30531
|
+
url: '/api/event-subscription-queues/{uuid}/';
|
|
30532
|
+
};
|
|
30533
|
+
export type EventSubscriptionQueuesDestroyResponses = {
|
|
30534
|
+
/**
|
|
30535
|
+
* No response body
|
|
30536
|
+
*/
|
|
30537
|
+
204: void;
|
|
30538
|
+
};
|
|
30539
|
+
export type EventSubscriptionQueuesDestroyResponse = EventSubscriptionQueuesDestroyResponses[keyof EventSubscriptionQueuesDestroyResponses];
|
|
30540
|
+
export type EventSubscriptionQueuesRetrieveData = {
|
|
30541
|
+
body?: never;
|
|
30542
|
+
path: {
|
|
30543
|
+
uuid: string;
|
|
30544
|
+
};
|
|
30545
|
+
query?: never;
|
|
30546
|
+
url: '/api/event-subscription-queues/{uuid}/';
|
|
30547
|
+
};
|
|
30548
|
+
export type EventSubscriptionQueuesRetrieveResponses = {
|
|
30549
|
+
200: EventSubscriptionQueue;
|
|
30550
|
+
};
|
|
30551
|
+
export type EventSubscriptionQueuesRetrieveResponse = EventSubscriptionQueuesRetrieveResponses[keyof EventSubscriptionQueuesRetrieveResponses];
|
|
29265
30552
|
export type EventSubscriptionsListData = {
|
|
29266
30553
|
body?: never;
|
|
29267
30554
|
path?: never;
|
|
@@ -29355,6 +30642,19 @@ export type EventSubscriptionsRetrieveResponses = {
|
|
|
29355
30642
|
200: EventSubscription;
|
|
29356
30643
|
};
|
|
29357
30644
|
export type EventSubscriptionsRetrieveResponse = EventSubscriptionsRetrieveResponses[keyof EventSubscriptionsRetrieveResponses];
|
|
30645
|
+
export type EventSubscriptionsCreateQueueData = {
|
|
30646
|
+
body: EventSubscriptionQueueCreateRequest;
|
|
30647
|
+
path: {
|
|
30648
|
+
uuid: string;
|
|
30649
|
+
};
|
|
30650
|
+
query?: never;
|
|
30651
|
+
url: '/api/event-subscriptions/{uuid}/create_queue/';
|
|
30652
|
+
};
|
|
30653
|
+
export type EventSubscriptionsCreateQueueResponses = {
|
|
30654
|
+
200: EventSubscriptionQueue;
|
|
30655
|
+
201: EventSubscriptionQueue;
|
|
30656
|
+
};
|
|
30657
|
+
export type EventSubscriptionsCreateQueueResponse = EventSubscriptionsCreateQueueResponses[keyof EventSubscriptionsCreateQueueResponses];
|
|
29358
30658
|
export type EventsListData = {
|
|
29359
30659
|
body?: never;
|
|
29360
30660
|
path?: never;
|
|
@@ -30540,6 +31840,37 @@ export type IdentityProvidersUpdateResponses = {
|
|
|
30540
31840
|
200: IdentityProvider;
|
|
30541
31841
|
};
|
|
30542
31842
|
export type IdentityProvidersUpdateResponse = IdentityProvidersUpdateResponses[keyof IdentityProvidersUpdateResponses];
|
|
31843
|
+
export type IdentityProvidersDiscoverMetadataData = {
|
|
31844
|
+
body: DiscoverMetadataRequestRequest;
|
|
31845
|
+
path?: never;
|
|
31846
|
+
query?: never;
|
|
31847
|
+
url: '/api/identity-providers/discover_metadata/';
|
|
31848
|
+
};
|
|
31849
|
+
export type IdentityProvidersDiscoverMetadataResponses = {
|
|
31850
|
+
200: DiscoverMetadataResponse;
|
|
31851
|
+
};
|
|
31852
|
+
export type IdentityProvidersDiscoverMetadataResponse = IdentityProvidersDiscoverMetadataResponses[keyof IdentityProvidersDiscoverMetadataResponses];
|
|
31853
|
+
export type IdentityProvidersGenerateMappingData = {
|
|
31854
|
+
body: DiscoverMetadataRequestRequest;
|
|
31855
|
+
path?: never;
|
|
31856
|
+
query?: never;
|
|
31857
|
+
url: '/api/identity-providers/generate-mapping/';
|
|
31858
|
+
};
|
|
31859
|
+
export type IdentityProvidersGenerateMappingResponses = {
|
|
31860
|
+
200: {
|
|
31861
|
+
/**
|
|
31862
|
+
* Suggested mapping of Waldur fields to OIDC claims
|
|
31863
|
+
*/
|
|
31864
|
+
attribute_mapping?: {
|
|
31865
|
+
[key: string]: string;
|
|
31866
|
+
};
|
|
31867
|
+
/**
|
|
31868
|
+
* Suggested scopes to request (space-separated)
|
|
31869
|
+
*/
|
|
31870
|
+
extra_scope?: string;
|
|
31871
|
+
};
|
|
31872
|
+
};
|
|
31873
|
+
export type IdentityProvidersGenerateMappingResponse = IdentityProvidersGenerateMappingResponses[keyof IdentityProvidersGenerateMappingResponses];
|
|
30543
31874
|
export type InvoiceItemsListData = {
|
|
30544
31875
|
body?: never;
|
|
30545
31876
|
path?: never;
|
|
@@ -35287,7 +36618,7 @@ export type MarketplaceOfferingUsersListData = {
|
|
|
35287
36618
|
* Created after
|
|
35288
36619
|
*/
|
|
35289
36620
|
created?: string;
|
|
35290
|
-
field?: Array<'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_restricted' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_email' | 'user_full_name' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
|
|
36621
|
+
field?: Array<'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_restricted' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_affiliations' | 'user_birth_date' | 'user_civil_number' | 'user_country_of_residence' | 'user_eduperson_assurance' | 'user_email' | 'user_full_name' | 'user_gender' | 'user_identity_source' | 'user_job_title' | 'user_nationalities' | 'user_nationality' | 'user_organization' | 'user_organization_country' | 'user_organization_type' | 'user_personal_title' | 'user_phone_number' | 'user_place_of_birth' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
|
|
35291
36622
|
/**
|
|
35292
36623
|
* User Has Consent
|
|
35293
36624
|
*/
|
|
@@ -35459,7 +36790,7 @@ export type MarketplaceOfferingUsersRetrieveData = {
|
|
|
35459
36790
|
uuid: string;
|
|
35460
36791
|
};
|
|
35461
36792
|
query?: {
|
|
35462
|
-
field?: Array<'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_restricted' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_email' | 'user_full_name' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
|
|
36793
|
+
field?: Array<'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_restricted' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_affiliations' | 'user_birth_date' | 'user_civil_number' | 'user_country_of_residence' | 'user_eduperson_assurance' | 'user_email' | 'user_full_name' | 'user_gender' | 'user_identity_source' | 'user_job_title' | 'user_nationalities' | 'user_nationality' | 'user_organization' | 'user_organization_country' | 'user_organization_type' | 'user_personal_title' | 'user_phone_number' | 'user_place_of_birth' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
|
|
35463
36794
|
};
|
|
35464
36795
|
url: '/api/marketplace-offering-users/{uuid}/';
|
|
35465
36796
|
};
|
|
@@ -37995,6 +39326,21 @@ export type MarketplaceProviderOfferingsCustomersListResponses = {
|
|
|
37995
39326
|
200: Array<ProviderOfferingCustomer>;
|
|
37996
39327
|
};
|
|
37997
39328
|
export type MarketplaceProviderOfferingsCustomersListResponse = MarketplaceProviderOfferingsCustomersListResponses[keyof MarketplaceProviderOfferingsCustomersListResponses];
|
|
39329
|
+
export type MarketplaceProviderOfferingsDeleteUserAttributeConfigDestroyData = {
|
|
39330
|
+
body?: never;
|
|
39331
|
+
path: {
|
|
39332
|
+
uuid: string;
|
|
39333
|
+
};
|
|
39334
|
+
query?: never;
|
|
39335
|
+
url: '/api/marketplace-provider-offerings/{uuid}/delete-user-attribute-config/';
|
|
39336
|
+
};
|
|
39337
|
+
export type MarketplaceProviderOfferingsDeleteUserAttributeConfigDestroyResponses = {
|
|
39338
|
+
/**
|
|
39339
|
+
* No response body
|
|
39340
|
+
*/
|
|
39341
|
+
204: void;
|
|
39342
|
+
};
|
|
39343
|
+
export type MarketplaceProviderOfferingsDeleteUserAttributeConfigDestroyResponse = MarketplaceProviderOfferingsDeleteUserAttributeConfigDestroyResponses[keyof MarketplaceProviderOfferingsDeleteUserAttributeConfigDestroyResponses];
|
|
37998
39344
|
export type MarketplaceProviderOfferingsDeleteEndpointData = {
|
|
37999
39345
|
body: EndpointUuidRequest;
|
|
38000
39346
|
path: {
|
|
@@ -38513,7 +39859,7 @@ export type MarketplaceProviderOfferingsListCustomerUsersListData = {
|
|
|
38513
39859
|
uuid: string;
|
|
38514
39860
|
};
|
|
38515
39861
|
query?: {
|
|
38516
|
-
field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'birth_date' | 'civil_number' | 'date_joined' | 'description' | 'email' | 'first_name' | 'full_name' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'native_name' | 'notifications_enabled' | 'organization' | 'permissions' | 'phone_number' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid'>;
|
|
39862
|
+
field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | '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'>;
|
|
38517
39863
|
/**
|
|
38518
39864
|
* A page number within the paginated result set.
|
|
38519
39865
|
*/
|
|
@@ -38962,6 +40308,42 @@ export type MarketplaceProviderOfferingsUnpauseResponses = {
|
|
|
38962
40308
|
200: DetailState;
|
|
38963
40309
|
};
|
|
38964
40310
|
export type MarketplaceProviderOfferingsUnpauseResponse = MarketplaceProviderOfferingsUnpauseResponses[keyof MarketplaceProviderOfferingsUnpauseResponses];
|
|
40311
|
+
export type MarketplaceProviderOfferingsUpdateUserAttributeConfigPartialUpdateData = {
|
|
40312
|
+
body?: PatchedOfferingUserAttributeConfigRequest;
|
|
40313
|
+
path: {
|
|
40314
|
+
uuid: string;
|
|
40315
|
+
};
|
|
40316
|
+
query?: never;
|
|
40317
|
+
url: '/api/marketplace-provider-offerings/{uuid}/update-user-attribute-config/';
|
|
40318
|
+
};
|
|
40319
|
+
export type MarketplaceProviderOfferingsUpdateUserAttributeConfigPartialUpdateResponses = {
|
|
40320
|
+
200: OfferingUserAttributeConfig;
|
|
40321
|
+
};
|
|
40322
|
+
export type MarketplaceProviderOfferingsUpdateUserAttributeConfigPartialUpdateResponse = MarketplaceProviderOfferingsUpdateUserAttributeConfigPartialUpdateResponses[keyof MarketplaceProviderOfferingsUpdateUserAttributeConfigPartialUpdateResponses];
|
|
40323
|
+
export type MarketplaceProviderOfferingsUpdateUserAttributeConfigData = {
|
|
40324
|
+
body?: OfferingUserAttributeConfigRequest;
|
|
40325
|
+
path: {
|
|
40326
|
+
uuid: string;
|
|
40327
|
+
};
|
|
40328
|
+
query?: never;
|
|
40329
|
+
url: '/api/marketplace-provider-offerings/{uuid}/update-user-attribute-config/';
|
|
40330
|
+
};
|
|
40331
|
+
export type MarketplaceProviderOfferingsUpdateUserAttributeConfigResponses = {
|
|
40332
|
+
200: OfferingUserAttributeConfig;
|
|
40333
|
+
};
|
|
40334
|
+
export type MarketplaceProviderOfferingsUpdateUserAttributeConfigResponse = MarketplaceProviderOfferingsUpdateUserAttributeConfigResponses[keyof MarketplaceProviderOfferingsUpdateUserAttributeConfigResponses];
|
|
40335
|
+
export type MarketplaceProviderOfferingsUpdateUserAttributeConfigUpdateData = {
|
|
40336
|
+
body?: OfferingUserAttributeConfigRequest;
|
|
40337
|
+
path: {
|
|
40338
|
+
uuid: string;
|
|
40339
|
+
};
|
|
40340
|
+
query?: never;
|
|
40341
|
+
url: '/api/marketplace-provider-offerings/{uuid}/update-user-attribute-config/';
|
|
40342
|
+
};
|
|
40343
|
+
export type MarketplaceProviderOfferingsUpdateUserAttributeConfigUpdateResponses = {
|
|
40344
|
+
200: OfferingUserAttributeConfig;
|
|
40345
|
+
};
|
|
40346
|
+
export type MarketplaceProviderOfferingsUpdateUserAttributeConfigUpdateResponse = MarketplaceProviderOfferingsUpdateUserAttributeConfigUpdateResponses[keyof MarketplaceProviderOfferingsUpdateUserAttributeConfigUpdateResponses];
|
|
38965
40347
|
export type MarketplaceProviderOfferingsUpdateAttributesData = {
|
|
38966
40348
|
body?: {
|
|
38967
40349
|
[key: string]: unknown;
|
|
@@ -39182,6 +40564,18 @@ export type MarketplaceProviderOfferingsUpdateUserResponses = {
|
|
|
39182
40564
|
200: UserRoleExpirationTime;
|
|
39183
40565
|
};
|
|
39184
40566
|
export type MarketplaceProviderOfferingsUpdateUserResponse = MarketplaceProviderOfferingsUpdateUserResponses[keyof MarketplaceProviderOfferingsUpdateUserResponses];
|
|
40567
|
+
export type MarketplaceProviderOfferingsUserAttributeConfigRetrieveData = {
|
|
40568
|
+
body?: never;
|
|
40569
|
+
path: {
|
|
40570
|
+
uuid: string;
|
|
40571
|
+
};
|
|
40572
|
+
query?: never;
|
|
40573
|
+
url: '/api/marketplace-provider-offerings/{uuid}/user-attribute-config/';
|
|
40574
|
+
};
|
|
40575
|
+
export type MarketplaceProviderOfferingsUserAttributeConfigRetrieveResponses = {
|
|
40576
|
+
200: OfferingUserAttributeConfig;
|
|
40577
|
+
};
|
|
40578
|
+
export type MarketplaceProviderOfferingsUserAttributeConfigRetrieveResponse = MarketplaceProviderOfferingsUserAttributeConfigRetrieveResponses[keyof MarketplaceProviderOfferingsUserAttributeConfigRetrieveResponses];
|
|
39185
40579
|
export type MarketplaceProviderOfferingsUserHasResourceAccessRetrieveData = {
|
|
39186
40580
|
body?: never;
|
|
39187
40581
|
path: {
|
|
@@ -43338,6 +44732,18 @@ export type MarketplaceServiceProvidersDeleteUserResponses = {
|
|
|
43338
44732
|
*/
|
|
43339
44733
|
200: unknown;
|
|
43340
44734
|
};
|
|
44735
|
+
export type MarketplaceServiceProvidersGenerateSiteAgentConfigData = {
|
|
44736
|
+
body: SiteAgentConfigGenerationRequest;
|
|
44737
|
+
path: {
|
|
44738
|
+
uuid: string;
|
|
44739
|
+
};
|
|
44740
|
+
query?: never;
|
|
44741
|
+
url: '/api/marketplace-service-providers/{uuid}/generate_site_agent_config/';
|
|
44742
|
+
};
|
|
44743
|
+
export type MarketplaceServiceProvidersGenerateSiteAgentConfigResponses = {
|
|
44744
|
+
200: Blob | File;
|
|
44745
|
+
};
|
|
44746
|
+
export type MarketplaceServiceProvidersGenerateSiteAgentConfigResponse = MarketplaceServiceProvidersGenerateSiteAgentConfigResponses[keyof MarketplaceServiceProvidersGenerateSiteAgentConfigResponses];
|
|
43341
44747
|
export type MarketplaceServiceProvidersListUsersListData = {
|
|
43342
44748
|
body?: never;
|
|
43343
44749
|
path: {
|
|
@@ -44047,6 +45453,16 @@ export type MarketplaceSlurmPeriodicUsagePoliciesActionsCountResponses = {
|
|
|
44047
45453
|
*/
|
|
44048
45454
|
200: unknown;
|
|
44049
45455
|
};
|
|
45456
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesPreviewImpactData = {
|
|
45457
|
+
body?: SlurmPolicyPreviewRequestRequest;
|
|
45458
|
+
path?: never;
|
|
45459
|
+
query?: never;
|
|
45460
|
+
url: '/api/marketplace-slurm-periodic-usage-policies/preview_impact/';
|
|
45461
|
+
};
|
|
45462
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesPreviewImpactResponses = {
|
|
45463
|
+
200: SlurmPolicyPreviewResponse;
|
|
45464
|
+
};
|
|
45465
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesPreviewImpactResponse = MarketplaceSlurmPeriodicUsagePoliciesPreviewImpactResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesPreviewImpactResponses];
|
|
44050
45466
|
export type MarketplaceSoftwareCatalogsListData = {
|
|
44051
45467
|
body?: never;
|
|
44052
45468
|
path?: never;
|
|
@@ -45171,6 +46587,62 @@ export type MarketplaceStatsOfferingsCounterStatsCountResponses = {
|
|
|
45171
46587
|
*/
|
|
45172
46588
|
200: unknown;
|
|
45173
46589
|
};
|
|
46590
|
+
export type MarketplaceStatsOrderStatsRetrieveData = {
|
|
46591
|
+
body?: never;
|
|
46592
|
+
path?: never;
|
|
46593
|
+
query?: {
|
|
46594
|
+
/**
|
|
46595
|
+
* Filter by customer UUID.
|
|
46596
|
+
*/
|
|
46597
|
+
customer_uuid?: string;
|
|
46598
|
+
/**
|
|
46599
|
+
* End date in YYYY-MM-DD format. Defaults to today.
|
|
46600
|
+
*/
|
|
46601
|
+
end?: string;
|
|
46602
|
+
/**
|
|
46603
|
+
* Filter by service provider UUID.
|
|
46604
|
+
*/
|
|
46605
|
+
provider_uuid?: string;
|
|
46606
|
+
/**
|
|
46607
|
+
* Start date in YYYY-MM-DD format. Defaults to 30 days ago.
|
|
46608
|
+
*/
|
|
46609
|
+
start?: string;
|
|
46610
|
+
};
|
|
46611
|
+
url: '/api/marketplace-stats/order_stats/';
|
|
46612
|
+
};
|
|
46613
|
+
export type MarketplaceStatsOrderStatsRetrieveResponses = {
|
|
46614
|
+
200: OrderStatsResponse;
|
|
46615
|
+
};
|
|
46616
|
+
export type MarketplaceStatsOrderStatsRetrieveResponse = MarketplaceStatsOrderStatsRetrieveResponses[keyof MarketplaceStatsOrderStatsRetrieveResponses];
|
|
46617
|
+
export type MarketplaceStatsOrderStatsCountData = {
|
|
46618
|
+
body?: never;
|
|
46619
|
+
path?: never;
|
|
46620
|
+
query?: {
|
|
46621
|
+
/**
|
|
46622
|
+
* Filter by customer UUID.
|
|
46623
|
+
*/
|
|
46624
|
+
customer_uuid?: string;
|
|
46625
|
+
/**
|
|
46626
|
+
* End date in YYYY-MM-DD format. Defaults to today.
|
|
46627
|
+
*/
|
|
46628
|
+
end?: string;
|
|
46629
|
+
/**
|
|
46630
|
+
* Filter by service provider UUID.
|
|
46631
|
+
*/
|
|
46632
|
+
provider_uuid?: string;
|
|
46633
|
+
/**
|
|
46634
|
+
* Start date in YYYY-MM-DD format. Defaults to 30 days ago.
|
|
46635
|
+
*/
|
|
46636
|
+
start?: string;
|
|
46637
|
+
};
|
|
46638
|
+
url: '/api/marketplace-stats/order_stats/';
|
|
46639
|
+
};
|
|
46640
|
+
export type MarketplaceStatsOrderStatsCountResponses = {
|
|
46641
|
+
/**
|
|
46642
|
+
* No response body
|
|
46643
|
+
*/
|
|
46644
|
+
200: unknown;
|
|
46645
|
+
};
|
|
45174
46646
|
export type MarketplaceStatsOrganizationProjectCountListData = {
|
|
45175
46647
|
body?: never;
|
|
45176
46648
|
path?: never;
|
|
@@ -45339,6 +46811,102 @@ export type MarketplaceStatsProjectsUsagesGroupedByOecdCountResponses = {
|
|
|
45339
46811
|
*/
|
|
45340
46812
|
200: unknown;
|
|
45341
46813
|
};
|
|
46814
|
+
export type MarketplaceStatsProviderCustomersRetrieveData = {
|
|
46815
|
+
body?: never;
|
|
46816
|
+
path?: never;
|
|
46817
|
+
query: {
|
|
46818
|
+
/**
|
|
46819
|
+
* Service provider UUID.
|
|
46820
|
+
*/
|
|
46821
|
+
provider_uuid: string;
|
|
46822
|
+
};
|
|
46823
|
+
url: '/api/marketplace-stats/provider_customers/';
|
|
46824
|
+
};
|
|
46825
|
+
export type MarketplaceStatsProviderCustomersRetrieveResponses = {
|
|
46826
|
+
200: ProviderCustomerStats;
|
|
46827
|
+
};
|
|
46828
|
+
export type MarketplaceStatsProviderCustomersRetrieveResponse = MarketplaceStatsProviderCustomersRetrieveResponses[keyof MarketplaceStatsProviderCustomersRetrieveResponses];
|
|
46829
|
+
export type MarketplaceStatsProviderCustomersCountData = {
|
|
46830
|
+
body?: never;
|
|
46831
|
+
path?: never;
|
|
46832
|
+
query: {
|
|
46833
|
+
/**
|
|
46834
|
+
* Service provider UUID.
|
|
46835
|
+
*/
|
|
46836
|
+
provider_uuid: string;
|
|
46837
|
+
};
|
|
46838
|
+
url: '/api/marketplace-stats/provider_customers/';
|
|
46839
|
+
};
|
|
46840
|
+
export type MarketplaceStatsProviderCustomersCountResponses = {
|
|
46841
|
+
/**
|
|
46842
|
+
* No response body
|
|
46843
|
+
*/
|
|
46844
|
+
200: unknown;
|
|
46845
|
+
};
|
|
46846
|
+
export type MarketplaceStatsProviderOfferingsRetrieveData = {
|
|
46847
|
+
body?: never;
|
|
46848
|
+
path?: never;
|
|
46849
|
+
query: {
|
|
46850
|
+
/**
|
|
46851
|
+
* Service provider UUID.
|
|
46852
|
+
*/
|
|
46853
|
+
provider_uuid: string;
|
|
46854
|
+
};
|
|
46855
|
+
url: '/api/marketplace-stats/provider_offerings/';
|
|
46856
|
+
};
|
|
46857
|
+
export type MarketplaceStatsProviderOfferingsRetrieveResponses = {
|
|
46858
|
+
200: ProviderOfferingStats;
|
|
46859
|
+
};
|
|
46860
|
+
export type MarketplaceStatsProviderOfferingsRetrieveResponse = MarketplaceStatsProviderOfferingsRetrieveResponses[keyof MarketplaceStatsProviderOfferingsRetrieveResponses];
|
|
46861
|
+
export type MarketplaceStatsProviderOfferingsCountData = {
|
|
46862
|
+
body?: never;
|
|
46863
|
+
path?: never;
|
|
46864
|
+
query: {
|
|
46865
|
+
/**
|
|
46866
|
+
* Service provider UUID.
|
|
46867
|
+
*/
|
|
46868
|
+
provider_uuid: string;
|
|
46869
|
+
};
|
|
46870
|
+
url: '/api/marketplace-stats/provider_offerings/';
|
|
46871
|
+
};
|
|
46872
|
+
export type MarketplaceStatsProviderOfferingsCountResponses = {
|
|
46873
|
+
/**
|
|
46874
|
+
* No response body
|
|
46875
|
+
*/
|
|
46876
|
+
200: unknown;
|
|
46877
|
+
};
|
|
46878
|
+
export type MarketplaceStatsProviderResourcesRetrieveData = {
|
|
46879
|
+
body?: never;
|
|
46880
|
+
path?: never;
|
|
46881
|
+
query: {
|
|
46882
|
+
/**
|
|
46883
|
+
* Service provider UUID.
|
|
46884
|
+
*/
|
|
46885
|
+
provider_uuid: string;
|
|
46886
|
+
};
|
|
46887
|
+
url: '/api/marketplace-stats/provider_resources/';
|
|
46888
|
+
};
|
|
46889
|
+
export type MarketplaceStatsProviderResourcesRetrieveResponses = {
|
|
46890
|
+
200: ProviderResourceStats;
|
|
46891
|
+
};
|
|
46892
|
+
export type MarketplaceStatsProviderResourcesRetrieveResponse = MarketplaceStatsProviderResourcesRetrieveResponses[keyof MarketplaceStatsProviderResourcesRetrieveResponses];
|
|
46893
|
+
export type MarketplaceStatsProviderResourcesCountData = {
|
|
46894
|
+
body?: never;
|
|
46895
|
+
path?: never;
|
|
46896
|
+
query: {
|
|
46897
|
+
/**
|
|
46898
|
+
* Service provider UUID.
|
|
46899
|
+
*/
|
|
46900
|
+
provider_uuid: string;
|
|
46901
|
+
};
|
|
46902
|
+
url: '/api/marketplace-stats/provider_resources/';
|
|
46903
|
+
};
|
|
46904
|
+
export type MarketplaceStatsProviderResourcesCountResponses = {
|
|
46905
|
+
/**
|
|
46906
|
+
* No response body
|
|
46907
|
+
*/
|
|
46908
|
+
200: unknown;
|
|
46909
|
+
};
|
|
45342
46910
|
export type MarketplaceStatsResourceProvisioningStatsListData = {
|
|
45343
46911
|
body?: never;
|
|
45344
46912
|
path?: never;
|
|
@@ -45427,6 +46995,62 @@ export type MarketplaceStatsResourcesLimitsCountResponses = {
|
|
|
45427
46995
|
*/
|
|
45428
46996
|
200: unknown;
|
|
45429
46997
|
};
|
|
46998
|
+
export type MarketplaceStatsResourcesMissingUsageListData = {
|
|
46999
|
+
body?: never;
|
|
47000
|
+
path?: never;
|
|
47001
|
+
query?: {
|
|
47002
|
+
/**
|
|
47003
|
+
* Billing period in YYYY-MM format. Defaults to current month.
|
|
47004
|
+
*/
|
|
47005
|
+
billing_period?: string;
|
|
47006
|
+
/**
|
|
47007
|
+
* A page number within the paginated result set.
|
|
47008
|
+
*/
|
|
47009
|
+
page?: number;
|
|
47010
|
+
/**
|
|
47011
|
+
* Number of results to return per page.
|
|
47012
|
+
*/
|
|
47013
|
+
page_size?: number;
|
|
47014
|
+
/**
|
|
47015
|
+
* Filter by service provider UUID.
|
|
47016
|
+
*/
|
|
47017
|
+
provider_uuid?: string;
|
|
47018
|
+
};
|
|
47019
|
+
url: '/api/marketplace-stats/resources_missing_usage/';
|
|
47020
|
+
};
|
|
47021
|
+
export type MarketplaceStatsResourcesMissingUsageListResponses = {
|
|
47022
|
+
200: Array<ResourceMissingUsage>;
|
|
47023
|
+
};
|
|
47024
|
+
export type MarketplaceStatsResourcesMissingUsageListResponse = MarketplaceStatsResourcesMissingUsageListResponses[keyof MarketplaceStatsResourcesMissingUsageListResponses];
|
|
47025
|
+
export type MarketplaceStatsResourcesMissingUsageCountData = {
|
|
47026
|
+
body?: never;
|
|
47027
|
+
path?: never;
|
|
47028
|
+
query?: {
|
|
47029
|
+
/**
|
|
47030
|
+
* Billing period in YYYY-MM format. Defaults to current month.
|
|
47031
|
+
*/
|
|
47032
|
+
billing_period?: string;
|
|
47033
|
+
/**
|
|
47034
|
+
* A page number within the paginated result set.
|
|
47035
|
+
*/
|
|
47036
|
+
page?: number;
|
|
47037
|
+
/**
|
|
47038
|
+
* Number of results to return per page.
|
|
47039
|
+
*/
|
|
47040
|
+
page_size?: number;
|
|
47041
|
+
/**
|
|
47042
|
+
* Filter by service provider UUID.
|
|
47043
|
+
*/
|
|
47044
|
+
provider_uuid?: string;
|
|
47045
|
+
};
|
|
47046
|
+
url: '/api/marketplace-stats/resources_missing_usage/';
|
|
47047
|
+
};
|
|
47048
|
+
export type MarketplaceStatsResourcesMissingUsageCountResponses = {
|
|
47049
|
+
/**
|
|
47050
|
+
* No response body
|
|
47051
|
+
*/
|
|
47052
|
+
200: unknown;
|
|
47053
|
+
};
|
|
45430
47054
|
export type MarketplaceStatsTotalCostOfActiveResourcesPerOfferingListData = {
|
|
45431
47055
|
body?: never;
|
|
45432
47056
|
path?: never;
|
|
@@ -49627,6 +51251,10 @@ export type OpenstackImagesListData = {
|
|
|
49627
51251
|
* Settings UUID
|
|
49628
51252
|
*/
|
|
49629
51253
|
settings_uuid?: string;
|
|
51254
|
+
/**
|
|
51255
|
+
* Show duplicate image names
|
|
51256
|
+
*/
|
|
51257
|
+
show_duplicate_names?: boolean;
|
|
49630
51258
|
/**
|
|
49631
51259
|
* Tenant URL
|
|
49632
51260
|
*/
|
|
@@ -49674,6 +51302,10 @@ export type OpenstackImagesCountData = {
|
|
|
49674
51302
|
* Settings UUID
|
|
49675
51303
|
*/
|
|
49676
51304
|
settings_uuid?: string;
|
|
51305
|
+
/**
|
|
51306
|
+
* Show duplicate image names
|
|
51307
|
+
*/
|
|
51308
|
+
show_duplicate_names?: boolean;
|
|
49677
51309
|
/**
|
|
49678
51310
|
* Tenant URL
|
|
49679
51311
|
*/
|
|
@@ -56338,7 +57970,7 @@ export type ProposalProtectedCallsListData = {
|
|
|
56338
57970
|
customer?: string;
|
|
56339
57971
|
customer_keyword?: string;
|
|
56340
57972
|
customer_uuid?: string;
|
|
56341
|
-
field?: Array<'backend_id' | 'compliance_checklist' | 'compliance_checklist_name' | 'created' | 'created_by' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'manager' | 'manager_uuid' | 'name' | 'offerings' | 'proposal_slug_template' | 'reference_code' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid'>;
|
|
57973
|
+
field?: Array<'backend_id' | 'compliance_checklist' | 'compliance_checklist_name' | 'created' | 'created_by' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'has_eligibility_restrictions' | 'manager' | 'manager_uuid' | 'name' | 'offerings' | 'proposal_slug_template' | 'reference_code' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'user_affiliations' | 'user_assurance_levels' | 'user_email_patterns' | 'user_identity_sources' | 'user_nationalities' | 'user_organization_types' | 'uuid'>;
|
|
56342
57974
|
has_active_round?: boolean;
|
|
56343
57975
|
name?: string;
|
|
56344
57976
|
/**
|
|
@@ -56431,7 +58063,7 @@ export type ProposalProtectedCallsRetrieveData = {
|
|
|
56431
58063
|
uuid: string;
|
|
56432
58064
|
};
|
|
56433
58065
|
query?: {
|
|
56434
|
-
field?: Array<'backend_id' | 'compliance_checklist' | 'compliance_checklist_name' | 'created' | 'created_by' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'manager' | 'manager_uuid' | 'name' | 'offerings' | 'proposal_slug_template' | 'reference_code' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid'>;
|
|
58066
|
+
field?: Array<'backend_id' | 'compliance_checklist' | 'compliance_checklist_name' | 'created' | 'created_by' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'has_eligibility_restrictions' | 'manager' | 'manager_uuid' | 'name' | 'offerings' | 'proposal_slug_template' | 'reference_code' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'user_affiliations' | 'user_assurance_levels' | 'user_email_patterns' | 'user_identity_sources' | 'user_nationalities' | 'user_organization_types' | 'uuid'>;
|
|
56435
58067
|
};
|
|
56436
58068
|
url: '/api/proposal-protected-calls/{uuid}/';
|
|
56437
58069
|
};
|
|
@@ -56510,6 +58142,18 @@ export type ProposalProtectedCallsAffinityMatrixRetrieveResponses = {
|
|
|
56510
58142
|
200: AffinityMatrixResponse;
|
|
56511
58143
|
};
|
|
56512
58144
|
export type ProposalProtectedCallsAffinityMatrixRetrieveResponse = ProposalProtectedCallsAffinityMatrixRetrieveResponses[keyof ProposalProtectedCallsAffinityMatrixRetrieveResponses];
|
|
58145
|
+
export type ProposalProtectedCallsApplicantAttributeConfigRetrieveData = {
|
|
58146
|
+
body?: never;
|
|
58147
|
+
path: {
|
|
58148
|
+
uuid: string;
|
|
58149
|
+
};
|
|
58150
|
+
query?: never;
|
|
58151
|
+
url: '/api/proposal-protected-calls/{uuid}/applicant_attribute_config/';
|
|
58152
|
+
};
|
|
58153
|
+
export type ProposalProtectedCallsApplicantAttributeConfigRetrieveResponses = {
|
|
58154
|
+
200: CallApplicantAttributeConfig;
|
|
58155
|
+
};
|
|
58156
|
+
export type ProposalProtectedCallsApplicantAttributeConfigRetrieveResponse = ProposalProtectedCallsApplicantAttributeConfigRetrieveResponses[keyof ProposalProtectedCallsApplicantAttributeConfigRetrieveResponses];
|
|
56513
58157
|
export type ProposalProtectedCallsArchiveData = {
|
|
56514
58158
|
body?: never;
|
|
56515
58159
|
path: {
|
|
@@ -56643,6 +58287,21 @@ export type ProposalProtectedCallsCreateManualAssignmentResponses = {
|
|
|
56643
58287
|
200: CreateManualAssignmentResponse;
|
|
56644
58288
|
};
|
|
56645
58289
|
export type ProposalProtectedCallsCreateManualAssignmentResponse = ProposalProtectedCallsCreateManualAssignmentResponses[keyof ProposalProtectedCallsCreateManualAssignmentResponses];
|
|
58290
|
+
export type ProposalProtectedCallsDeleteApplicantAttributeConfigDestroyData = {
|
|
58291
|
+
body?: never;
|
|
58292
|
+
path: {
|
|
58293
|
+
uuid: string;
|
|
58294
|
+
};
|
|
58295
|
+
query?: never;
|
|
58296
|
+
url: '/api/proposal-protected-calls/{uuid}/delete_applicant_attribute_config/';
|
|
58297
|
+
};
|
|
58298
|
+
export type ProposalProtectedCallsDeleteApplicantAttributeConfigDestroyResponses = {
|
|
58299
|
+
/**
|
|
58300
|
+
* No response body
|
|
58301
|
+
*/
|
|
58302
|
+
204: void;
|
|
58303
|
+
};
|
|
58304
|
+
export type ProposalProtectedCallsDeleteApplicantAttributeConfigDestroyResponse = ProposalProtectedCallsDeleteApplicantAttributeConfigDestroyResponses[keyof ProposalProtectedCallsDeleteApplicantAttributeConfigDestroyResponses];
|
|
56646
58305
|
export type ProposalProtectedCallsDeleteUserData = {
|
|
56647
58306
|
body: UserRoleDeleteRequest;
|
|
56648
58307
|
path: {
|
|
@@ -57288,6 +58947,30 @@ export type ProposalProtectedCallsSuggestionsListResponses = {
|
|
|
57288
58947
|
200: Array<ReviewerSuggestion>;
|
|
57289
58948
|
};
|
|
57290
58949
|
export type ProposalProtectedCallsSuggestionsListResponse = ProposalProtectedCallsSuggestionsListResponses[keyof ProposalProtectedCallsSuggestionsListResponses];
|
|
58950
|
+
export type ProposalProtectedCallsUpdateApplicantAttributeConfigPartialUpdateData = {
|
|
58951
|
+
body?: PatchedCallApplicantAttributeConfigRequest;
|
|
58952
|
+
path: {
|
|
58953
|
+
uuid: string;
|
|
58954
|
+
};
|
|
58955
|
+
query?: never;
|
|
58956
|
+
url: '/api/proposal-protected-calls/{uuid}/update_applicant_attribute_config/';
|
|
58957
|
+
};
|
|
58958
|
+
export type ProposalProtectedCallsUpdateApplicantAttributeConfigPartialUpdateResponses = {
|
|
58959
|
+
200: CallApplicantAttributeConfig;
|
|
58960
|
+
};
|
|
58961
|
+
export type ProposalProtectedCallsUpdateApplicantAttributeConfigPartialUpdateResponse = ProposalProtectedCallsUpdateApplicantAttributeConfigPartialUpdateResponses[keyof ProposalProtectedCallsUpdateApplicantAttributeConfigPartialUpdateResponses];
|
|
58962
|
+
export type ProposalProtectedCallsUpdateApplicantAttributeConfigData = {
|
|
58963
|
+
body?: CallApplicantAttributeConfigRequest;
|
|
58964
|
+
path: {
|
|
58965
|
+
uuid: string;
|
|
58966
|
+
};
|
|
58967
|
+
query?: never;
|
|
58968
|
+
url: '/api/proposal-protected-calls/{uuid}/update_applicant_attribute_config/';
|
|
58969
|
+
};
|
|
58970
|
+
export type ProposalProtectedCallsUpdateApplicantAttributeConfigResponses = {
|
|
58971
|
+
200: CallApplicantAttributeConfig;
|
|
58972
|
+
};
|
|
58973
|
+
export type ProposalProtectedCallsUpdateApplicantAttributeConfigResponse = ProposalProtectedCallsUpdateApplicantAttributeConfigResponses[keyof ProposalProtectedCallsUpdateApplicantAttributeConfigResponses];
|
|
57291
58974
|
export type ProposalProtectedCallsUpdateUserData = {
|
|
57292
58975
|
body: UserRoleUpdateRequest;
|
|
57293
58976
|
path: {
|
|
@@ -57389,7 +59072,7 @@ export type ProposalPublicCallsListData = {
|
|
|
57389
59072
|
customer?: string;
|
|
57390
59073
|
customer_keyword?: string;
|
|
57391
59074
|
customer_uuid?: string;
|
|
57392
|
-
field?: Array<'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'manager' | 'manager_uuid' | 'name' | 'offerings' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid'>;
|
|
59075
|
+
field?: Array<'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'has_eligibility_restrictions' | 'manager' | 'manager_uuid' | 'name' | 'offerings' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid'>;
|
|
57393
59076
|
has_active_round?: boolean;
|
|
57394
59077
|
name?: string;
|
|
57395
59078
|
/**
|
|
@@ -57457,7 +59140,7 @@ export type ProposalPublicCallsRetrieveData = {
|
|
|
57457
59140
|
uuid: string;
|
|
57458
59141
|
};
|
|
57459
59142
|
query?: {
|
|
57460
|
-
field?: Array<'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'manager' | 'manager_uuid' | 'name' | 'offerings' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid'>;
|
|
59143
|
+
field?: Array<'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'has_eligibility_restrictions' | 'manager' | 'manager_uuid' | 'name' | 'offerings' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid'>;
|
|
57461
59144
|
};
|
|
57462
59145
|
url: '/api/proposal-public-calls/{uuid}/';
|
|
57463
59146
|
};
|
|
@@ -57465,6 +59148,18 @@ export type ProposalPublicCallsRetrieveResponses = {
|
|
|
57465
59148
|
200: PublicCall;
|
|
57466
59149
|
};
|
|
57467
59150
|
export type ProposalPublicCallsRetrieveResponse = ProposalPublicCallsRetrieveResponses[keyof ProposalPublicCallsRetrieveResponses];
|
|
59151
|
+
export type ProposalPublicCallsCheckEligibilityRetrieveData = {
|
|
59152
|
+
body?: never;
|
|
59153
|
+
path: {
|
|
59154
|
+
uuid: string;
|
|
59155
|
+
};
|
|
59156
|
+
query?: never;
|
|
59157
|
+
url: '/api/proposal-public-calls/{uuid}/check_eligibility/';
|
|
59158
|
+
};
|
|
59159
|
+
export type ProposalPublicCallsCheckEligibilityRetrieveResponses = {
|
|
59160
|
+
200: EligibilityCheck;
|
|
59161
|
+
};
|
|
59162
|
+
export type ProposalPublicCallsCheckEligibilityRetrieveResponse = ProposalPublicCallsCheckEligibilityRetrieveResponses[keyof ProposalPublicCallsCheckEligibilityRetrieveResponses];
|
|
57468
59163
|
export type ProposalRequestedOfferingsListData = {
|
|
57469
59164
|
body?: never;
|
|
57470
59165
|
path?: never;
|
|
@@ -65283,7 +66978,7 @@ export type UsersListData = {
|
|
|
65283
66978
|
* Email
|
|
65284
66979
|
*/
|
|
65285
66980
|
email?: string;
|
|
65286
|
-
field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'birth_date' | 'civil_number' | 'date_joined' | 'description' | 'email' | 'first_name' | 'full_name' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'native_name' | 'notifications_enabled' | 'organization' | 'permissions' | 'phone_number' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid'>;
|
|
66981
|
+
field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | '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'>;
|
|
65287
66982
|
/**
|
|
65288
66983
|
* Full name
|
|
65289
66984
|
*/
|
|
@@ -65505,7 +67200,7 @@ export type UsersRetrieveData = {
|
|
|
65505
67200
|
uuid: string;
|
|
65506
67201
|
};
|
|
65507
67202
|
query?: {
|
|
65508
|
-
field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'birth_date' | 'civil_number' | 'date_joined' | 'description' | 'email' | 'first_name' | 'full_name' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'native_name' | 'notifications_enabled' | 'organization' | 'permissions' | 'phone_number' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid'>;
|
|
67203
|
+
field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | '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'>;
|
|
65509
67204
|
};
|
|
65510
67205
|
url: '/api/users/{uuid}/';
|
|
65511
67206
|
};
|
|
@@ -65579,6 +67274,137 @@ export type UsersChangePasswordResponses = {
|
|
|
65579
67274
|
*/
|
|
65580
67275
|
200: unknown;
|
|
65581
67276
|
};
|
|
67277
|
+
export type UsersDataAccessRetrieveData = {
|
|
67278
|
+
body?: never;
|
|
67279
|
+
path: {
|
|
67280
|
+
uuid: string;
|
|
67281
|
+
};
|
|
67282
|
+
query?: never;
|
|
67283
|
+
url: '/api/users/{uuid}/data_access/';
|
|
67284
|
+
};
|
|
67285
|
+
export type UsersDataAccessRetrieveResponses = {
|
|
67286
|
+
200: UserDataAccess;
|
|
67287
|
+
};
|
|
67288
|
+
export type UsersDataAccessRetrieveResponse = UsersDataAccessRetrieveResponses[keyof UsersDataAccessRetrieveResponses];
|
|
67289
|
+
export type UsersDataAccessHistoryListData = {
|
|
67290
|
+
body?: never;
|
|
67291
|
+
path: {
|
|
67292
|
+
uuid: string;
|
|
67293
|
+
};
|
|
67294
|
+
query?: {
|
|
67295
|
+
/**
|
|
67296
|
+
* Filter by accessor type (staff, support, organization_member, self)
|
|
67297
|
+
*/
|
|
67298
|
+
accessor_type?: string;
|
|
67299
|
+
/**
|
|
67300
|
+
* Agreement date after
|
|
67301
|
+
*/
|
|
67302
|
+
agreement_date?: string;
|
|
67303
|
+
civil_number?: string;
|
|
67304
|
+
/**
|
|
67305
|
+
* Customer UUID
|
|
67306
|
+
*/
|
|
67307
|
+
customer_uuid?: string;
|
|
67308
|
+
/**
|
|
67309
|
+
* Date joined after
|
|
67310
|
+
*/
|
|
67311
|
+
date_joined?: string;
|
|
67312
|
+
description?: string;
|
|
67313
|
+
/**
|
|
67314
|
+
* Email
|
|
67315
|
+
*/
|
|
67316
|
+
email?: string;
|
|
67317
|
+
/**
|
|
67318
|
+
* Filter logs until this date (inclusive)
|
|
67319
|
+
*/
|
|
67320
|
+
end_date?: string;
|
|
67321
|
+
/**
|
|
67322
|
+
* Full name
|
|
67323
|
+
*/
|
|
67324
|
+
full_name?: string;
|
|
67325
|
+
/**
|
|
67326
|
+
* Is active
|
|
67327
|
+
*/
|
|
67328
|
+
is_active?: boolean;
|
|
67329
|
+
/**
|
|
67330
|
+
* Is staff
|
|
67331
|
+
*/
|
|
67332
|
+
is_staff?: boolean;
|
|
67333
|
+
/**
|
|
67334
|
+
* Is support
|
|
67335
|
+
*/
|
|
67336
|
+
is_support?: boolean;
|
|
67337
|
+
/**
|
|
67338
|
+
* Job title
|
|
67339
|
+
*/
|
|
67340
|
+
job_title?: string;
|
|
67341
|
+
/**
|
|
67342
|
+
* Date modified after
|
|
67343
|
+
*/
|
|
67344
|
+
modified?: string;
|
|
67345
|
+
/**
|
|
67346
|
+
* Native name
|
|
67347
|
+
*/
|
|
67348
|
+
native_name?: string;
|
|
67349
|
+
/**
|
|
67350
|
+
* Ordering
|
|
67351
|
+
*
|
|
67352
|
+
*
|
|
67353
|
+
*/
|
|
67354
|
+
o?: Array<'-description' | '-email' | '-full_name' | '-is_active' | '-is_staff' | '-is_support' | '-job_title' | '-native_name' | '-organization' | '-phone_number' | '-registration_method' | '-username' | 'description' | 'email' | 'full_name' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'native_name' | 'organization' | 'phone_number' | 'registration_method' | 'username'>;
|
|
67355
|
+
/**
|
|
67356
|
+
* Organization
|
|
67357
|
+
*/
|
|
67358
|
+
organization?: string;
|
|
67359
|
+
/**
|
|
67360
|
+
* Organization roles
|
|
67361
|
+
*/
|
|
67362
|
+
organization_roles?: string;
|
|
67363
|
+
/**
|
|
67364
|
+
* A page number within the paginated result set.
|
|
67365
|
+
*/
|
|
67366
|
+
page?: number;
|
|
67367
|
+
/**
|
|
67368
|
+
* Number of results to return per page.
|
|
67369
|
+
*/
|
|
67370
|
+
page_size?: number;
|
|
67371
|
+
phone_number?: string;
|
|
67372
|
+
/**
|
|
67373
|
+
* Project roles
|
|
67374
|
+
*/
|
|
67375
|
+
project_roles?: string;
|
|
67376
|
+
/**
|
|
67377
|
+
* Project UUID
|
|
67378
|
+
*/
|
|
67379
|
+
project_uuid?: string;
|
|
67380
|
+
/**
|
|
67381
|
+
* Filter by first name, last name, civil number, username or email
|
|
67382
|
+
*/
|
|
67383
|
+
query?: string;
|
|
67384
|
+
registration_method?: string;
|
|
67385
|
+
/**
|
|
67386
|
+
* Filter logs from this date (inclusive)
|
|
67387
|
+
*/
|
|
67388
|
+
start_date?: string;
|
|
67389
|
+
/**
|
|
67390
|
+
* User keyword
|
|
67391
|
+
*/
|
|
67392
|
+
user_keyword?: string;
|
|
67393
|
+
/**
|
|
67394
|
+
* Username (exact)
|
|
67395
|
+
*/
|
|
67396
|
+
username?: string;
|
|
67397
|
+
/**
|
|
67398
|
+
* Comma-separated usernames
|
|
67399
|
+
*/
|
|
67400
|
+
username_list?: string;
|
|
67401
|
+
};
|
|
67402
|
+
url: '/api/users/{uuid}/data_access_history/';
|
|
67403
|
+
};
|
|
67404
|
+
export type UsersDataAccessHistoryListResponses = {
|
|
67405
|
+
200: Array<UserDataAccessLog>;
|
|
67406
|
+
};
|
|
67407
|
+
export type UsersDataAccessHistoryListResponse = UsersDataAccessHistoryListResponses[keyof UsersDataAccessHistoryListResponses];
|
|
65582
67408
|
export type UsersPullRemoteUserData = {
|
|
65583
67409
|
body?: never;
|
|
65584
67410
|
path: {
|
|
@@ -65633,7 +67459,7 @@ export type UsersMeRetrieveData = {
|
|
|
65633
67459
|
body?: never;
|
|
65634
67460
|
path?: never;
|
|
65635
67461
|
query?: {
|
|
65636
|
-
field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'birth_date' | 'civil_number' | 'date_joined' | 'description' | 'email' | 'first_name' | 'full_name' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'native_name' | 'notifications_enabled' | 'organization' | 'permissions' | 'phone_number' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid'>;
|
|
67462
|
+
field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | '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'>;
|
|
65637
67463
|
};
|
|
65638
67464
|
url: '/api/users/me/';
|
|
65639
67465
|
};
|
|
@@ -65653,6 +67479,664 @@ export type UsersMeCountResponses = {
|
|
|
65653
67479
|
*/
|
|
65654
67480
|
200: unknown;
|
|
65655
67481
|
};
|
|
67482
|
+
export type UsersProfileCompletenessRetrieveData = {
|
|
67483
|
+
body?: never;
|
|
67484
|
+
path?: never;
|
|
67485
|
+
query?: never;
|
|
67486
|
+
url: '/api/users/profile_completeness/';
|
|
67487
|
+
};
|
|
67488
|
+
export type UsersProfileCompletenessRetrieveResponses = {
|
|
67489
|
+
200: ProfileCompleteness;
|
|
67490
|
+
};
|
|
67491
|
+
export type UsersProfileCompletenessRetrieveResponse = UsersProfileCompletenessRetrieveResponses[keyof UsersProfileCompletenessRetrieveResponses];
|
|
67492
|
+
export type UsersProfileCompletenessCountData = {
|
|
67493
|
+
body?: never;
|
|
67494
|
+
path?: never;
|
|
67495
|
+
query?: never;
|
|
67496
|
+
url: '/api/users/profile_completeness/';
|
|
67497
|
+
};
|
|
67498
|
+
export type UsersProfileCompletenessCountResponses = {
|
|
67499
|
+
/**
|
|
67500
|
+
* No response body
|
|
67501
|
+
*/
|
|
67502
|
+
200: unknown;
|
|
67503
|
+
};
|
|
67504
|
+
export type UsersUserActiveStatusCountListData = {
|
|
67505
|
+
body?: never;
|
|
67506
|
+
path?: never;
|
|
67507
|
+
query?: {
|
|
67508
|
+
/**
|
|
67509
|
+
* Agreement date after
|
|
67510
|
+
*/
|
|
67511
|
+
agreement_date?: string;
|
|
67512
|
+
civil_number?: string;
|
|
67513
|
+
/**
|
|
67514
|
+
* Customer UUID
|
|
67515
|
+
*/
|
|
67516
|
+
customer_uuid?: string;
|
|
67517
|
+
/**
|
|
67518
|
+
* Date joined after
|
|
67519
|
+
*/
|
|
67520
|
+
date_joined?: string;
|
|
67521
|
+
description?: string;
|
|
67522
|
+
/**
|
|
67523
|
+
* Email
|
|
67524
|
+
*/
|
|
67525
|
+
email?: string;
|
|
67526
|
+
/**
|
|
67527
|
+
* Full name
|
|
67528
|
+
*/
|
|
67529
|
+
full_name?: string;
|
|
67530
|
+
/**
|
|
67531
|
+
* Is active
|
|
67532
|
+
*/
|
|
67533
|
+
is_active?: boolean;
|
|
67534
|
+
/**
|
|
67535
|
+
* Is staff
|
|
67536
|
+
*/
|
|
67537
|
+
is_staff?: boolean;
|
|
67538
|
+
/**
|
|
67539
|
+
* Is support
|
|
67540
|
+
*/
|
|
67541
|
+
is_support?: boolean;
|
|
67542
|
+
/**
|
|
67543
|
+
* Job title
|
|
67544
|
+
*/
|
|
67545
|
+
job_title?: string;
|
|
67546
|
+
/**
|
|
67547
|
+
* Date modified after
|
|
67548
|
+
*/
|
|
67549
|
+
modified?: string;
|
|
67550
|
+
/**
|
|
67551
|
+
* Native name
|
|
67552
|
+
*/
|
|
67553
|
+
native_name?: string;
|
|
67554
|
+
/**
|
|
67555
|
+
* Ordering
|
|
67556
|
+
*
|
|
67557
|
+
*
|
|
67558
|
+
*/
|
|
67559
|
+
o?: Array<'-description' | '-email' | '-full_name' | '-is_active' | '-is_staff' | '-is_support' | '-job_title' | '-native_name' | '-organization' | '-phone_number' | '-registration_method' | '-username' | 'description' | 'email' | 'full_name' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'native_name' | 'organization' | 'phone_number' | 'registration_method' | 'username'>;
|
|
67560
|
+
/**
|
|
67561
|
+
* Organization
|
|
67562
|
+
*/
|
|
67563
|
+
organization?: string;
|
|
67564
|
+
/**
|
|
67565
|
+
* Organization roles
|
|
67566
|
+
*/
|
|
67567
|
+
organization_roles?: string;
|
|
67568
|
+
/**
|
|
67569
|
+
* A page number within the paginated result set.
|
|
67570
|
+
*/
|
|
67571
|
+
page?: number;
|
|
67572
|
+
/**
|
|
67573
|
+
* Number of results to return per page.
|
|
67574
|
+
*/
|
|
67575
|
+
page_size?: number;
|
|
67576
|
+
phone_number?: string;
|
|
67577
|
+
/**
|
|
67578
|
+
* Project roles
|
|
67579
|
+
*/
|
|
67580
|
+
project_roles?: string;
|
|
67581
|
+
/**
|
|
67582
|
+
* Project UUID
|
|
67583
|
+
*/
|
|
67584
|
+
project_uuid?: string;
|
|
67585
|
+
/**
|
|
67586
|
+
* Filter by first name, last name, civil number, username or email
|
|
67587
|
+
*/
|
|
67588
|
+
query?: string;
|
|
67589
|
+
registration_method?: string;
|
|
67590
|
+
/**
|
|
67591
|
+
* User keyword
|
|
67592
|
+
*/
|
|
67593
|
+
user_keyword?: string;
|
|
67594
|
+
/**
|
|
67595
|
+
* Username (exact)
|
|
67596
|
+
*/
|
|
67597
|
+
username?: string;
|
|
67598
|
+
/**
|
|
67599
|
+
* Comma-separated usernames
|
|
67600
|
+
*/
|
|
67601
|
+
username_list?: string;
|
|
67602
|
+
};
|
|
67603
|
+
url: '/api/users/user_active_status_count/';
|
|
67604
|
+
};
|
|
67605
|
+
export type UsersUserActiveStatusCountListResponses = {
|
|
67606
|
+
200: Array<UserActiveStatusCount>;
|
|
67607
|
+
};
|
|
67608
|
+
export type UsersUserActiveStatusCountListResponse = UsersUserActiveStatusCountListResponses[keyof UsersUserActiveStatusCountListResponses];
|
|
67609
|
+
export type UsersUserActiveStatusCountCountData = {
|
|
67610
|
+
body?: never;
|
|
67611
|
+
path?: never;
|
|
67612
|
+
query?: {
|
|
67613
|
+
/**
|
|
67614
|
+
* Agreement date after
|
|
67615
|
+
*/
|
|
67616
|
+
agreement_date?: string;
|
|
67617
|
+
civil_number?: string;
|
|
67618
|
+
/**
|
|
67619
|
+
* Customer UUID
|
|
67620
|
+
*/
|
|
67621
|
+
customer_uuid?: string;
|
|
67622
|
+
/**
|
|
67623
|
+
* Date joined after
|
|
67624
|
+
*/
|
|
67625
|
+
date_joined?: string;
|
|
67626
|
+
description?: string;
|
|
67627
|
+
/**
|
|
67628
|
+
* Email
|
|
67629
|
+
*/
|
|
67630
|
+
email?: string;
|
|
67631
|
+
/**
|
|
67632
|
+
* Full name
|
|
67633
|
+
*/
|
|
67634
|
+
full_name?: string;
|
|
67635
|
+
/**
|
|
67636
|
+
* Is active
|
|
67637
|
+
*/
|
|
67638
|
+
is_active?: boolean;
|
|
67639
|
+
/**
|
|
67640
|
+
* Is staff
|
|
67641
|
+
*/
|
|
67642
|
+
is_staff?: boolean;
|
|
67643
|
+
/**
|
|
67644
|
+
* Is support
|
|
67645
|
+
*/
|
|
67646
|
+
is_support?: boolean;
|
|
67647
|
+
/**
|
|
67648
|
+
* Job title
|
|
67649
|
+
*/
|
|
67650
|
+
job_title?: string;
|
|
67651
|
+
/**
|
|
67652
|
+
* Date modified after
|
|
67653
|
+
*/
|
|
67654
|
+
modified?: string;
|
|
67655
|
+
/**
|
|
67656
|
+
* Native name
|
|
67657
|
+
*/
|
|
67658
|
+
native_name?: string;
|
|
67659
|
+
/**
|
|
67660
|
+
* Ordering
|
|
67661
|
+
*
|
|
67662
|
+
*
|
|
67663
|
+
*/
|
|
67664
|
+
o?: Array<'-description' | '-email' | '-full_name' | '-is_active' | '-is_staff' | '-is_support' | '-job_title' | '-native_name' | '-organization' | '-phone_number' | '-registration_method' | '-username' | 'description' | 'email' | 'full_name' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'native_name' | 'organization' | 'phone_number' | 'registration_method' | 'username'>;
|
|
67665
|
+
/**
|
|
67666
|
+
* Organization
|
|
67667
|
+
*/
|
|
67668
|
+
organization?: string;
|
|
67669
|
+
/**
|
|
67670
|
+
* Organization roles
|
|
67671
|
+
*/
|
|
67672
|
+
organization_roles?: string;
|
|
67673
|
+
/**
|
|
67674
|
+
* A page number within the paginated result set.
|
|
67675
|
+
*/
|
|
67676
|
+
page?: number;
|
|
67677
|
+
/**
|
|
67678
|
+
* Number of results to return per page.
|
|
67679
|
+
*/
|
|
67680
|
+
page_size?: number;
|
|
67681
|
+
phone_number?: string;
|
|
67682
|
+
/**
|
|
67683
|
+
* Project roles
|
|
67684
|
+
*/
|
|
67685
|
+
project_roles?: string;
|
|
67686
|
+
/**
|
|
67687
|
+
* Project UUID
|
|
67688
|
+
*/
|
|
67689
|
+
project_uuid?: string;
|
|
67690
|
+
/**
|
|
67691
|
+
* Filter by first name, last name, civil number, username or email
|
|
67692
|
+
*/
|
|
67693
|
+
query?: string;
|
|
67694
|
+
registration_method?: string;
|
|
67695
|
+
/**
|
|
67696
|
+
* User keyword
|
|
67697
|
+
*/
|
|
67698
|
+
user_keyword?: string;
|
|
67699
|
+
/**
|
|
67700
|
+
* Username (exact)
|
|
67701
|
+
*/
|
|
67702
|
+
username?: string;
|
|
67703
|
+
/**
|
|
67704
|
+
* Comma-separated usernames
|
|
67705
|
+
*/
|
|
67706
|
+
username_list?: string;
|
|
67707
|
+
};
|
|
67708
|
+
url: '/api/users/user_active_status_count/';
|
|
67709
|
+
};
|
|
67710
|
+
export type UsersUserActiveStatusCountCountResponses = {
|
|
67711
|
+
/**
|
|
67712
|
+
* No response body
|
|
67713
|
+
*/
|
|
67714
|
+
200: unknown;
|
|
67715
|
+
};
|
|
67716
|
+
export type UsersUserLanguageCountListData = {
|
|
67717
|
+
body?: never;
|
|
67718
|
+
path?: never;
|
|
67719
|
+
query?: {
|
|
67720
|
+
/**
|
|
67721
|
+
* Agreement date after
|
|
67722
|
+
*/
|
|
67723
|
+
agreement_date?: string;
|
|
67724
|
+
civil_number?: string;
|
|
67725
|
+
/**
|
|
67726
|
+
* Customer UUID
|
|
67727
|
+
*/
|
|
67728
|
+
customer_uuid?: string;
|
|
67729
|
+
/**
|
|
67730
|
+
* Date joined after
|
|
67731
|
+
*/
|
|
67732
|
+
date_joined?: string;
|
|
67733
|
+
description?: string;
|
|
67734
|
+
/**
|
|
67735
|
+
* Email
|
|
67736
|
+
*/
|
|
67737
|
+
email?: string;
|
|
67738
|
+
/**
|
|
67739
|
+
* Full name
|
|
67740
|
+
*/
|
|
67741
|
+
full_name?: string;
|
|
67742
|
+
/**
|
|
67743
|
+
* Is active
|
|
67744
|
+
*/
|
|
67745
|
+
is_active?: boolean;
|
|
67746
|
+
/**
|
|
67747
|
+
* Is staff
|
|
67748
|
+
*/
|
|
67749
|
+
is_staff?: boolean;
|
|
67750
|
+
/**
|
|
67751
|
+
* Is support
|
|
67752
|
+
*/
|
|
67753
|
+
is_support?: boolean;
|
|
67754
|
+
/**
|
|
67755
|
+
* Job title
|
|
67756
|
+
*/
|
|
67757
|
+
job_title?: string;
|
|
67758
|
+
/**
|
|
67759
|
+
* Date modified after
|
|
67760
|
+
*/
|
|
67761
|
+
modified?: string;
|
|
67762
|
+
/**
|
|
67763
|
+
* Native name
|
|
67764
|
+
*/
|
|
67765
|
+
native_name?: string;
|
|
67766
|
+
/**
|
|
67767
|
+
* Ordering
|
|
67768
|
+
*
|
|
67769
|
+
*
|
|
67770
|
+
*/
|
|
67771
|
+
o?: Array<'-description' | '-email' | '-full_name' | '-is_active' | '-is_staff' | '-is_support' | '-job_title' | '-native_name' | '-organization' | '-phone_number' | '-registration_method' | '-username' | 'description' | 'email' | 'full_name' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'native_name' | 'organization' | 'phone_number' | 'registration_method' | 'username'>;
|
|
67772
|
+
/**
|
|
67773
|
+
* Organization
|
|
67774
|
+
*/
|
|
67775
|
+
organization?: string;
|
|
67776
|
+
/**
|
|
67777
|
+
* Organization roles
|
|
67778
|
+
*/
|
|
67779
|
+
organization_roles?: string;
|
|
67780
|
+
/**
|
|
67781
|
+
* A page number within the paginated result set.
|
|
67782
|
+
*/
|
|
67783
|
+
page?: number;
|
|
67784
|
+
/**
|
|
67785
|
+
* Number of results to return per page.
|
|
67786
|
+
*/
|
|
67787
|
+
page_size?: number;
|
|
67788
|
+
phone_number?: string;
|
|
67789
|
+
/**
|
|
67790
|
+
* Project roles
|
|
67791
|
+
*/
|
|
67792
|
+
project_roles?: string;
|
|
67793
|
+
/**
|
|
67794
|
+
* Project UUID
|
|
67795
|
+
*/
|
|
67796
|
+
project_uuid?: string;
|
|
67797
|
+
/**
|
|
67798
|
+
* Filter by first name, last name, civil number, username or email
|
|
67799
|
+
*/
|
|
67800
|
+
query?: string;
|
|
67801
|
+
registration_method?: string;
|
|
67802
|
+
/**
|
|
67803
|
+
* User keyword
|
|
67804
|
+
*/
|
|
67805
|
+
user_keyword?: string;
|
|
67806
|
+
/**
|
|
67807
|
+
* Username (exact)
|
|
67808
|
+
*/
|
|
67809
|
+
username?: string;
|
|
67810
|
+
/**
|
|
67811
|
+
* Comma-separated usernames
|
|
67812
|
+
*/
|
|
67813
|
+
username_list?: string;
|
|
67814
|
+
};
|
|
67815
|
+
url: '/api/users/user_language_count/';
|
|
67816
|
+
};
|
|
67817
|
+
export type UsersUserLanguageCountListResponses = {
|
|
67818
|
+
200: Array<UserLanguageCount>;
|
|
67819
|
+
};
|
|
67820
|
+
export type UsersUserLanguageCountListResponse = UsersUserLanguageCountListResponses[keyof UsersUserLanguageCountListResponses];
|
|
67821
|
+
export type UsersUserLanguageCountCountData = {
|
|
67822
|
+
body?: never;
|
|
67823
|
+
path?: never;
|
|
67824
|
+
query?: {
|
|
67825
|
+
/**
|
|
67826
|
+
* Agreement date after
|
|
67827
|
+
*/
|
|
67828
|
+
agreement_date?: string;
|
|
67829
|
+
civil_number?: string;
|
|
67830
|
+
/**
|
|
67831
|
+
* Customer UUID
|
|
67832
|
+
*/
|
|
67833
|
+
customer_uuid?: string;
|
|
67834
|
+
/**
|
|
67835
|
+
* Date joined after
|
|
67836
|
+
*/
|
|
67837
|
+
date_joined?: string;
|
|
67838
|
+
description?: string;
|
|
67839
|
+
/**
|
|
67840
|
+
* Email
|
|
67841
|
+
*/
|
|
67842
|
+
email?: string;
|
|
67843
|
+
/**
|
|
67844
|
+
* Full name
|
|
67845
|
+
*/
|
|
67846
|
+
full_name?: string;
|
|
67847
|
+
/**
|
|
67848
|
+
* Is active
|
|
67849
|
+
*/
|
|
67850
|
+
is_active?: boolean;
|
|
67851
|
+
/**
|
|
67852
|
+
* Is staff
|
|
67853
|
+
*/
|
|
67854
|
+
is_staff?: boolean;
|
|
67855
|
+
/**
|
|
67856
|
+
* Is support
|
|
67857
|
+
*/
|
|
67858
|
+
is_support?: boolean;
|
|
67859
|
+
/**
|
|
67860
|
+
* Job title
|
|
67861
|
+
*/
|
|
67862
|
+
job_title?: string;
|
|
67863
|
+
/**
|
|
67864
|
+
* Date modified after
|
|
67865
|
+
*/
|
|
67866
|
+
modified?: string;
|
|
67867
|
+
/**
|
|
67868
|
+
* Native name
|
|
67869
|
+
*/
|
|
67870
|
+
native_name?: string;
|
|
67871
|
+
/**
|
|
67872
|
+
* Ordering
|
|
67873
|
+
*
|
|
67874
|
+
*
|
|
67875
|
+
*/
|
|
67876
|
+
o?: Array<'-description' | '-email' | '-full_name' | '-is_active' | '-is_staff' | '-is_support' | '-job_title' | '-native_name' | '-organization' | '-phone_number' | '-registration_method' | '-username' | 'description' | 'email' | 'full_name' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'native_name' | 'organization' | 'phone_number' | 'registration_method' | 'username'>;
|
|
67877
|
+
/**
|
|
67878
|
+
* Organization
|
|
67879
|
+
*/
|
|
67880
|
+
organization?: string;
|
|
67881
|
+
/**
|
|
67882
|
+
* Organization roles
|
|
67883
|
+
*/
|
|
67884
|
+
organization_roles?: string;
|
|
67885
|
+
/**
|
|
67886
|
+
* A page number within the paginated result set.
|
|
67887
|
+
*/
|
|
67888
|
+
page?: number;
|
|
67889
|
+
/**
|
|
67890
|
+
* Number of results to return per page.
|
|
67891
|
+
*/
|
|
67892
|
+
page_size?: number;
|
|
67893
|
+
phone_number?: string;
|
|
67894
|
+
/**
|
|
67895
|
+
* Project roles
|
|
67896
|
+
*/
|
|
67897
|
+
project_roles?: string;
|
|
67898
|
+
/**
|
|
67899
|
+
* Project UUID
|
|
67900
|
+
*/
|
|
67901
|
+
project_uuid?: string;
|
|
67902
|
+
/**
|
|
67903
|
+
* Filter by first name, last name, civil number, username or email
|
|
67904
|
+
*/
|
|
67905
|
+
query?: string;
|
|
67906
|
+
registration_method?: string;
|
|
67907
|
+
/**
|
|
67908
|
+
* User keyword
|
|
67909
|
+
*/
|
|
67910
|
+
user_keyword?: string;
|
|
67911
|
+
/**
|
|
67912
|
+
* Username (exact)
|
|
67913
|
+
*/
|
|
67914
|
+
username?: string;
|
|
67915
|
+
/**
|
|
67916
|
+
* Comma-separated usernames
|
|
67917
|
+
*/
|
|
67918
|
+
username_list?: string;
|
|
67919
|
+
};
|
|
67920
|
+
url: '/api/users/user_language_count/';
|
|
67921
|
+
};
|
|
67922
|
+
export type UsersUserLanguageCountCountResponses = {
|
|
67923
|
+
/**
|
|
67924
|
+
* No response body
|
|
67925
|
+
*/
|
|
67926
|
+
200: unknown;
|
|
67927
|
+
};
|
|
67928
|
+
export type UsersUserRegistrationTrendListData = {
|
|
67929
|
+
body?: never;
|
|
67930
|
+
path?: never;
|
|
67931
|
+
query?: {
|
|
67932
|
+
/**
|
|
67933
|
+
* Agreement date after
|
|
67934
|
+
*/
|
|
67935
|
+
agreement_date?: string;
|
|
67936
|
+
civil_number?: string;
|
|
67937
|
+
/**
|
|
67938
|
+
* Customer UUID
|
|
67939
|
+
*/
|
|
67940
|
+
customer_uuid?: string;
|
|
67941
|
+
/**
|
|
67942
|
+
* Date joined after
|
|
67943
|
+
*/
|
|
67944
|
+
date_joined?: string;
|
|
67945
|
+
description?: string;
|
|
67946
|
+
/**
|
|
67947
|
+
* Email
|
|
67948
|
+
*/
|
|
67949
|
+
email?: string;
|
|
67950
|
+
/**
|
|
67951
|
+
* Full name
|
|
67952
|
+
*/
|
|
67953
|
+
full_name?: string;
|
|
67954
|
+
/**
|
|
67955
|
+
* Is active
|
|
67956
|
+
*/
|
|
67957
|
+
is_active?: boolean;
|
|
67958
|
+
/**
|
|
67959
|
+
* Is staff
|
|
67960
|
+
*/
|
|
67961
|
+
is_staff?: boolean;
|
|
67962
|
+
/**
|
|
67963
|
+
* Is support
|
|
67964
|
+
*/
|
|
67965
|
+
is_support?: boolean;
|
|
67966
|
+
/**
|
|
67967
|
+
* Job title
|
|
67968
|
+
*/
|
|
67969
|
+
job_title?: string;
|
|
67970
|
+
/**
|
|
67971
|
+
* Date modified after
|
|
67972
|
+
*/
|
|
67973
|
+
modified?: string;
|
|
67974
|
+
/**
|
|
67975
|
+
* Native name
|
|
67976
|
+
*/
|
|
67977
|
+
native_name?: string;
|
|
67978
|
+
/**
|
|
67979
|
+
* Ordering
|
|
67980
|
+
*
|
|
67981
|
+
*
|
|
67982
|
+
*/
|
|
67983
|
+
o?: Array<'-description' | '-email' | '-full_name' | '-is_active' | '-is_staff' | '-is_support' | '-job_title' | '-native_name' | '-organization' | '-phone_number' | '-registration_method' | '-username' | 'description' | 'email' | 'full_name' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'native_name' | 'organization' | 'phone_number' | 'registration_method' | 'username'>;
|
|
67984
|
+
/**
|
|
67985
|
+
* Organization
|
|
67986
|
+
*/
|
|
67987
|
+
organization?: string;
|
|
67988
|
+
/**
|
|
67989
|
+
* Organization roles
|
|
67990
|
+
*/
|
|
67991
|
+
organization_roles?: string;
|
|
67992
|
+
/**
|
|
67993
|
+
* A page number within the paginated result set.
|
|
67994
|
+
*/
|
|
67995
|
+
page?: number;
|
|
67996
|
+
/**
|
|
67997
|
+
* Number of results to return per page.
|
|
67998
|
+
*/
|
|
67999
|
+
page_size?: number;
|
|
68000
|
+
phone_number?: string;
|
|
68001
|
+
/**
|
|
68002
|
+
* Project roles
|
|
68003
|
+
*/
|
|
68004
|
+
project_roles?: string;
|
|
68005
|
+
/**
|
|
68006
|
+
* Project UUID
|
|
68007
|
+
*/
|
|
68008
|
+
project_uuid?: string;
|
|
68009
|
+
/**
|
|
68010
|
+
* Filter by first name, last name, civil number, username or email
|
|
68011
|
+
*/
|
|
68012
|
+
query?: string;
|
|
68013
|
+
registration_method?: string;
|
|
68014
|
+
/**
|
|
68015
|
+
* User keyword
|
|
68016
|
+
*/
|
|
68017
|
+
user_keyword?: string;
|
|
68018
|
+
/**
|
|
68019
|
+
* Username (exact)
|
|
68020
|
+
*/
|
|
68021
|
+
username?: string;
|
|
68022
|
+
/**
|
|
68023
|
+
* Comma-separated usernames
|
|
68024
|
+
*/
|
|
68025
|
+
username_list?: string;
|
|
68026
|
+
};
|
|
68027
|
+
url: '/api/users/user_registration_trend/';
|
|
68028
|
+
};
|
|
68029
|
+
export type UsersUserRegistrationTrendListResponses = {
|
|
68030
|
+
200: Array<UserRegistrationTrend>;
|
|
68031
|
+
};
|
|
68032
|
+
export type UsersUserRegistrationTrendListResponse = UsersUserRegistrationTrendListResponses[keyof UsersUserRegistrationTrendListResponses];
|
|
68033
|
+
export type UsersUserRegistrationTrendCountData = {
|
|
68034
|
+
body?: never;
|
|
68035
|
+
path?: never;
|
|
68036
|
+
query?: {
|
|
68037
|
+
/**
|
|
68038
|
+
* Agreement date after
|
|
68039
|
+
*/
|
|
68040
|
+
agreement_date?: string;
|
|
68041
|
+
civil_number?: string;
|
|
68042
|
+
/**
|
|
68043
|
+
* Customer UUID
|
|
68044
|
+
*/
|
|
68045
|
+
customer_uuid?: string;
|
|
68046
|
+
/**
|
|
68047
|
+
* Date joined after
|
|
68048
|
+
*/
|
|
68049
|
+
date_joined?: string;
|
|
68050
|
+
description?: string;
|
|
68051
|
+
/**
|
|
68052
|
+
* Email
|
|
68053
|
+
*/
|
|
68054
|
+
email?: string;
|
|
68055
|
+
/**
|
|
68056
|
+
* Full name
|
|
68057
|
+
*/
|
|
68058
|
+
full_name?: string;
|
|
68059
|
+
/**
|
|
68060
|
+
* Is active
|
|
68061
|
+
*/
|
|
68062
|
+
is_active?: boolean;
|
|
68063
|
+
/**
|
|
68064
|
+
* Is staff
|
|
68065
|
+
*/
|
|
68066
|
+
is_staff?: boolean;
|
|
68067
|
+
/**
|
|
68068
|
+
* Is support
|
|
68069
|
+
*/
|
|
68070
|
+
is_support?: boolean;
|
|
68071
|
+
/**
|
|
68072
|
+
* Job title
|
|
68073
|
+
*/
|
|
68074
|
+
job_title?: string;
|
|
68075
|
+
/**
|
|
68076
|
+
* Date modified after
|
|
68077
|
+
*/
|
|
68078
|
+
modified?: string;
|
|
68079
|
+
/**
|
|
68080
|
+
* Native name
|
|
68081
|
+
*/
|
|
68082
|
+
native_name?: string;
|
|
68083
|
+
/**
|
|
68084
|
+
* Ordering
|
|
68085
|
+
*
|
|
68086
|
+
*
|
|
68087
|
+
*/
|
|
68088
|
+
o?: Array<'-description' | '-email' | '-full_name' | '-is_active' | '-is_staff' | '-is_support' | '-job_title' | '-native_name' | '-organization' | '-phone_number' | '-registration_method' | '-username' | 'description' | 'email' | 'full_name' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'native_name' | 'organization' | 'phone_number' | 'registration_method' | 'username'>;
|
|
68089
|
+
/**
|
|
68090
|
+
* Organization
|
|
68091
|
+
*/
|
|
68092
|
+
organization?: string;
|
|
68093
|
+
/**
|
|
68094
|
+
* Organization roles
|
|
68095
|
+
*/
|
|
68096
|
+
organization_roles?: string;
|
|
68097
|
+
/**
|
|
68098
|
+
* A page number within the paginated result set.
|
|
68099
|
+
*/
|
|
68100
|
+
page?: number;
|
|
68101
|
+
/**
|
|
68102
|
+
* Number of results to return per page.
|
|
68103
|
+
*/
|
|
68104
|
+
page_size?: number;
|
|
68105
|
+
phone_number?: string;
|
|
68106
|
+
/**
|
|
68107
|
+
* Project roles
|
|
68108
|
+
*/
|
|
68109
|
+
project_roles?: string;
|
|
68110
|
+
/**
|
|
68111
|
+
* Project UUID
|
|
68112
|
+
*/
|
|
68113
|
+
project_uuid?: string;
|
|
68114
|
+
/**
|
|
68115
|
+
* Filter by first name, last name, civil number, username or email
|
|
68116
|
+
*/
|
|
68117
|
+
query?: string;
|
|
68118
|
+
registration_method?: string;
|
|
68119
|
+
/**
|
|
68120
|
+
* User keyword
|
|
68121
|
+
*/
|
|
68122
|
+
user_keyword?: string;
|
|
68123
|
+
/**
|
|
68124
|
+
* Username (exact)
|
|
68125
|
+
*/
|
|
68126
|
+
username?: string;
|
|
68127
|
+
/**
|
|
68128
|
+
* Comma-separated usernames
|
|
68129
|
+
*/
|
|
68130
|
+
username_list?: string;
|
|
68131
|
+
};
|
|
68132
|
+
url: '/api/users/user_registration_trend/';
|
|
68133
|
+
};
|
|
68134
|
+
export type UsersUserRegistrationTrendCountResponses = {
|
|
68135
|
+
/**
|
|
68136
|
+
* No response body
|
|
68137
|
+
*/
|
|
68138
|
+
200: unknown;
|
|
68139
|
+
};
|
|
65656
68140
|
export type VersionRetrieveData = {
|
|
65657
68141
|
body?: never;
|
|
65658
68142
|
path?: never;
|