waldur-js-client 8.0.9-dev.2 → 8.0.9-dev.21
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 +129 -4
- package/dist/sdk.gen.js +949 -3
- package/dist/types.gen.d.ts +1496 -12
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -77,6 +77,20 @@ export type ActiveQuery = {
|
|
|
77
77
|
*/
|
|
78
78
|
readonly query_preview: string;
|
|
79
79
|
};
|
|
80
|
+
export type AdjustResourceDatesRequest = {
|
|
81
|
+
/**
|
|
82
|
+
* New start date of the originating order.
|
|
83
|
+
*/
|
|
84
|
+
start_date: string;
|
|
85
|
+
/**
|
|
86
|
+
* New end date of the resource.
|
|
87
|
+
*/
|
|
88
|
+
end_date: string;
|
|
89
|
+
/**
|
|
90
|
+
* Optional reason captured in the audit trail.
|
|
91
|
+
*/
|
|
92
|
+
comment?: string;
|
|
93
|
+
};
|
|
80
94
|
export type AdminAnnouncement = {
|
|
81
95
|
readonly uuid?: string;
|
|
82
96
|
description?: string;
|
|
@@ -587,6 +601,15 @@ export type AllocationUserUsage = {
|
|
|
587
601
|
username: string;
|
|
588
602
|
readonly full_name: string;
|
|
589
603
|
};
|
|
604
|
+
export type AllowedScopeInputRequest = {
|
|
605
|
+
type: string;
|
|
606
|
+
uuid: string;
|
|
607
|
+
};
|
|
608
|
+
export type AllowedScopeOutput = {
|
|
609
|
+
type: string;
|
|
610
|
+
uuid: string | null;
|
|
611
|
+
name: string | null;
|
|
612
|
+
};
|
|
590
613
|
export type AmountRangeEnum = 'none' | 'under_5k' | '5k_10k' | '10k_50k' | 'over_50k';
|
|
591
614
|
export type AnonymousChatBudgetSnapshot = {
|
|
592
615
|
tokens_today: number;
|
|
@@ -1854,6 +1877,10 @@ export type AvailableArrowCustomersResponse = {
|
|
|
1854
1877
|
waldur_customers: Array<WaldurCustomerBrief>;
|
|
1855
1878
|
suggestions: Array<CustomerMappingSuggestion>;
|
|
1856
1879
|
};
|
|
1880
|
+
export type AvailableBindingTarget = {
|
|
1881
|
+
permission: string;
|
|
1882
|
+
types: Array<string>;
|
|
1883
|
+
};
|
|
1857
1884
|
export type AvailableChecklist = {
|
|
1858
1885
|
readonly uuid: string;
|
|
1859
1886
|
readonly name: string;
|
|
@@ -2818,6 +2845,19 @@ export type BroadcastMessageRequest = {
|
|
|
2818
2845
|
send_at?: string | null;
|
|
2819
2846
|
};
|
|
2820
2847
|
export type BroadcastMessageStateEnum = 'DRAFT' | 'SCHEDULED' | 'SENT';
|
|
2848
|
+
export type BulkRoundCreateRequestRequest = {
|
|
2849
|
+
start_time: string;
|
|
2850
|
+
review_strategy?: ReviewStrategyEnum;
|
|
2851
|
+
deciding_entity?: DecidingEntityEnum;
|
|
2852
|
+
allocation_time?: AllocationTimeEnum;
|
|
2853
|
+
review_duration_in_days?: number | null;
|
|
2854
|
+
minimum_number_of_reviewers?: number | null;
|
|
2855
|
+
minimal_average_scoring?: string | null;
|
|
2856
|
+
cadence: CadenceEnum;
|
|
2857
|
+
custom_interval_months?: number | null;
|
|
2858
|
+
submission_window_days: number;
|
|
2859
|
+
number_of_rounds: number;
|
|
2860
|
+
};
|
|
2821
2861
|
export type BulkSilenceResponse = {
|
|
2822
2862
|
status: string;
|
|
2823
2863
|
count: number;
|
|
@@ -2958,6 +2998,7 @@ export type CachedProjectUsageReport = {
|
|
|
2958
2998
|
is_complete?: boolean;
|
|
2959
2999
|
report: ProjectUsageReport;
|
|
2960
3000
|
};
|
|
3001
|
+
export type CadenceEnum = 'monthly' | 'quarterly' | 'biannual' | 'yearly' | 'custom';
|
|
2961
3002
|
export type CallApplicantVisibilityConfig = {
|
|
2962
3003
|
readonly uuid?: string;
|
|
2963
3004
|
readonly created?: string;
|
|
@@ -4885,6 +4926,12 @@ export type ConstanceSettings = {
|
|
|
4885
4926
|
SCIM_API_URL?: string;
|
|
4886
4927
|
SCIM_API_KEY?: string;
|
|
4887
4928
|
SCIM_URN_NAMESPACE?: string;
|
|
4929
|
+
SCIM_INBOUND_ENABLED?: boolean;
|
|
4930
|
+
SCIM_INBOUND_SOURCE_NAME?: string;
|
|
4931
|
+
SCIM_INBOUND_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
4932
|
+
SCIM_PULL_API_URL?: string;
|
|
4933
|
+
SCIM_PULL_API_KEY?: string;
|
|
4934
|
+
SCIM_PULL_SOURCE_NAME?: string;
|
|
4888
4935
|
KEYCLOAK_ICON?: string | null;
|
|
4889
4936
|
COUNTRIES?: Array<string>;
|
|
4890
4937
|
OIDC_AUTH_URL?: string;
|
|
@@ -4989,6 +5036,7 @@ export type ConstanceSettings = {
|
|
|
4989
5036
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
4990
5037
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
4991
5038
|
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
5039
|
+
SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
|
|
4992
5040
|
PAT_ENABLED?: boolean;
|
|
4993
5041
|
PAT_MAX_LIFETIME_DAYS?: number;
|
|
4994
5042
|
PAT_MAX_TOKENS_PER_USER?: number;
|
|
@@ -5154,6 +5202,12 @@ export type ConstanceSettingsRequest = {
|
|
|
5154
5202
|
SCIM_API_URL?: string;
|
|
5155
5203
|
SCIM_API_KEY?: string;
|
|
5156
5204
|
SCIM_URN_NAMESPACE?: string;
|
|
5205
|
+
SCIM_INBOUND_ENABLED?: boolean;
|
|
5206
|
+
SCIM_INBOUND_SOURCE_NAME?: string;
|
|
5207
|
+
SCIM_INBOUND_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
5208
|
+
SCIM_PULL_API_URL?: string;
|
|
5209
|
+
SCIM_PULL_API_KEY?: string;
|
|
5210
|
+
SCIM_PULL_SOURCE_NAME?: string;
|
|
5157
5211
|
KEYCLOAK_ICON?: (Blob | File) | null;
|
|
5158
5212
|
COUNTRIES?: Array<string>;
|
|
5159
5213
|
OIDC_AUTH_URL?: string;
|
|
@@ -5258,6 +5312,7 @@ export type ConstanceSettingsRequest = {
|
|
|
5258
5312
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
5259
5313
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
5260
5314
|
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
5315
|
+
SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
|
|
5261
5316
|
PAT_ENABLED?: boolean;
|
|
5262
5317
|
PAT_MAX_LIFETIME_DAYS?: number;
|
|
5263
5318
|
PAT_MAX_TOKENS_PER_USER?: number;
|
|
@@ -5848,6 +5903,12 @@ export type CustomerBillingSummaryResponse = {
|
|
|
5848
5903
|
recent_consumption_records: Array<CustomerBillingSummaryConsumptionRecord>;
|
|
5849
5904
|
recent_billing_syncs: Array<CustomerBillingSummaryBillingSync>;
|
|
5850
5905
|
};
|
|
5906
|
+
export type CustomerCandidate = {
|
|
5907
|
+
readonly uuid: string;
|
|
5908
|
+
name: string;
|
|
5909
|
+
abbreviation?: string;
|
|
5910
|
+
readonly url: string | null;
|
|
5911
|
+
};
|
|
5851
5912
|
export type CustomerComponentUsagePolicy = {
|
|
5852
5913
|
readonly uuid: string;
|
|
5853
5914
|
readonly url: string;
|
|
@@ -6971,6 +7032,19 @@ export type DryRunRequest = {
|
|
|
6971
7032
|
};
|
|
6972
7033
|
export type DryRunStateEnum = 1 | 2 | 3 | 4;
|
|
6973
7034
|
export type DryRunTypeEnum = 'Create' | 'Update' | 'Terminate' | 'Restore' | 'Pull';
|
|
7035
|
+
export type DuplicateCallRequestRequest = {
|
|
7036
|
+
name: string;
|
|
7037
|
+
copy_documents?: boolean;
|
|
7038
|
+
copy_offerings?: boolean;
|
|
7039
|
+
copy_rounds?: boolean;
|
|
7040
|
+
copy_workflow_steps?: boolean;
|
|
7041
|
+
copy_resource_templates?: boolean;
|
|
7042
|
+
copy_role_mappings?: boolean;
|
|
7043
|
+
copy_applicant_visibility_config?: boolean;
|
|
7044
|
+
copy_coi_configuration?: boolean;
|
|
7045
|
+
copy_matching_configuration?: boolean;
|
|
7046
|
+
copy_assignment_configuration?: boolean;
|
|
7047
|
+
};
|
|
6974
7048
|
export type EnabledreportingscreensEnum = 'resource-usage' | 'user-usage' | 'quotas' | 'usage-monitoring' | 'usage-trends' | 'organization-summary' | 'project-detail' | 'resources-geography' | 'project-classification' | 'usage-by-customer' | 'usage-by-org-type' | 'usage-by-creator' | 'call-performance' | 'review-progress' | 'resource-demand' | 'capacity' | 'provider-overview' | 'provider-revenue' | 'provider-orders' | 'provider-resources' | 'provider-customers' | 'provider-offerings' | 'openstack-instances' | 'offering-usage' | 'user-analytics' | 'user-demographics' | 'user-organizations' | 'user-affiliations' | 'user-roles' | 'growth' | 'revenue' | 'pricelist' | 'orders' | 'offering-costs' | 'maintenance-overview' | 'provisioning-stats';
|
|
6975
7049
|
export type EligibilityCheck = {
|
|
6976
7050
|
is_eligible: boolean;
|
|
@@ -7043,7 +7117,7 @@ export type EventMetadataResponse = {
|
|
|
7043
7117
|
* Map of event group keys to lists of event type enums from EventType
|
|
7044
7118
|
*/
|
|
7045
7119
|
event_groups: {
|
|
7046
|
-
[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' | 'create_of_project_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_updated' | 'marketplace_offering_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' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_end_date_change_request_approved' | 'project_end_date_change_request_created' | 'project_end_date_change_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'request_slurm_resource_downscaling' | 'request_slurm_resource_pausing' | 'reset_downscaling' | 'reset_member_restriction' | 'reset_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'slurm_policy_evaluation' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'update_of_project_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'chat_pii_detected' | 'chat_feedback_submitted' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task' | 'pat_created' | 'pat_revoked' | 'pat_rotated' | 'pat_expired' | 'pat_used_from_new_ip'>;
|
|
7120
|
+
[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' | 'create_of_project_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_limit_change_request_created' | 'marketplace_resource_limit_change_request_approved' | 'marketplace_resource_limit_change_request_rejected' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_instance_security_groups_changed' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_load_balancer_created' | 'openstack_load_balancer_updated' | 'openstack_load_balancer_deleted' | 'openstack_load_balancer_security_groups_changed' | 'openstack_listener_created' | 'openstack_listener_updated' | 'openstack_listener_deleted' | 'openstack_pool_created' | 'openstack_pool_updated' | 'openstack_pool_deleted' | 'openstack_pool_member_created' | 'openstack_pool_member_updated' | 'openstack_pool_member_deleted' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_port_security_enabled' | 'openstack_port_security_disabled' | 'openstack_port_allowed_address_pairs_changed' | 'openstack_port_security_groups_changed' | 'openstack_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_rules_changed' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_end_date_change_request_approved' | 'project_end_date_change_request_created' | 'project_end_date_change_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'request_slurm_resource_downscaling' | 'request_slurm_resource_pausing' | 'reset_downscaling' | 'reset_member_restriction' | 'reset_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'slurm_policy_evaluation' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'update_of_project_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'chat_pii_detected' | 'chat_feedback_submitted' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task' | 'pat_created' | 'pat_revoked' | 'pat_rotated' | 'pat_expired' | 'pat_used_from_new_ip'>;
|
|
7047
7121
|
};
|
|
7048
7122
|
};
|
|
7049
7123
|
export type EventStats = {
|
|
@@ -7122,7 +7196,7 @@ export type EventSubscriptionRequest = {
|
|
|
7122
7196
|
*/
|
|
7123
7197
|
observable_objects?: unknown;
|
|
7124
7198
|
};
|
|
7125
|
-
export type EventTypesEnum = 'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'create_of_project_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_updated' | 'marketplace_offering_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' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_end_date_change_request_approved' | 'project_end_date_change_request_created' | 'project_end_date_change_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'request_slurm_resource_downscaling' | 'request_slurm_resource_pausing' | 'reset_downscaling' | 'reset_member_restriction' | 'reset_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'slurm_policy_evaluation' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'update_of_project_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'chat_pii_detected' | 'chat_feedback_submitted' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task' | 'pat_created' | 'pat_revoked' | 'pat_rotated' | 'pat_expired' | 'pat_used_from_new_ip';
|
|
7199
|
+
export type EventTypesEnum = 'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'create_of_project_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_limit_change_request_created' | 'marketplace_resource_limit_change_request_approved' | 'marketplace_resource_limit_change_request_rejected' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_instance_security_groups_changed' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_load_balancer_created' | 'openstack_load_balancer_updated' | 'openstack_load_balancer_deleted' | 'openstack_load_balancer_security_groups_changed' | 'openstack_listener_created' | 'openstack_listener_updated' | 'openstack_listener_deleted' | 'openstack_pool_created' | 'openstack_pool_updated' | 'openstack_pool_deleted' | 'openstack_pool_member_created' | 'openstack_pool_member_updated' | 'openstack_pool_member_deleted' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_port_security_enabled' | 'openstack_port_security_disabled' | 'openstack_port_allowed_address_pairs_changed' | 'openstack_port_security_groups_changed' | 'openstack_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_rules_changed' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_end_date_change_request_approved' | 'project_end_date_change_request_created' | 'project_end_date_change_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'request_slurm_resource_downscaling' | 'request_slurm_resource_pausing' | 'reset_downscaling' | 'reset_member_restriction' | 'reset_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'slurm_policy_evaluation' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'update_of_project_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'chat_pii_detected' | 'chat_feedback_submitted' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task' | 'pat_created' | 'pat_revoked' | 'pat_rotated' | 'pat_expired' | 'pat_used_from_new_ip';
|
|
7126
7200
|
export type ExecuteActionErrorResponse = {
|
|
7127
7201
|
error: string;
|
|
7128
7202
|
};
|
|
@@ -7502,6 +7576,14 @@ export type FetchLicenseInfoResponse = {
|
|
|
7502
7576
|
[key: string]: unknown;
|
|
7503
7577
|
};
|
|
7504
7578
|
};
|
|
7579
|
+
export type FilterCheckResult = {
|
|
7580
|
+
name: string;
|
|
7581
|
+
configured: boolean;
|
|
7582
|
+
matched: boolean;
|
|
7583
|
+
user_value?: unknown;
|
|
7584
|
+
rule_value?: unknown;
|
|
7585
|
+
reason: string;
|
|
7586
|
+
};
|
|
7505
7587
|
export type FinancialReport = {
|
|
7506
7588
|
name: string;
|
|
7507
7589
|
readonly uuid: string;
|
|
@@ -9178,6 +9260,7 @@ export type KeywordSearchModeEnum = 'expertise_only' | 'full_text';
|
|
|
9178
9260
|
export type KindEnum = 'default' | 'course' | 'public';
|
|
9179
9261
|
export type LoginpagelayoutEnum = 'split-screen' | 'centered-card' | 'minimal' | 'full-hero' | 'gradient' | 'stacked' | 'right-split' | 'glassmorphism' | 'neumorphism' | 'animated-gradient' | 'video-background' | 'bottom-sheet' | 'tabbed' | 'wizard' | 'stats' | 'news' | 'carousel' | 'logo-watermark' | 'brand-pattern' | 'duotone' | 'diagonal' | 'time-based' | 'seasonal' | 'weather';
|
|
9180
9262
|
export type LbAlgorithmEnum = 'ROUND_ROBIN' | 'LEAST_CONNECTIONS' | 'SOURCE_IP' | 'SOURCE_IP_PORT';
|
|
9263
|
+
export type LevelEnum = 'DEBUG' | 'INFO' | 'WARNING' | 'ERROR' | 'CRITICAL';
|
|
9181
9264
|
export type LexisLink = {
|
|
9182
9265
|
readonly url: string;
|
|
9183
9266
|
readonly uuid: string;
|
|
@@ -9214,6 +9297,7 @@ export type LicenseSuggestion = {
|
|
|
9214
9297
|
*/
|
|
9215
9298
|
confidence: number;
|
|
9216
9299
|
};
|
|
9300
|
+
export type LikertScaleLengthEnum = 3 | 5 | 7;
|
|
9217
9301
|
export type LimitPeriodEnum = 'month' | 'quarterly' | 'annual' | 'total';
|
|
9218
9302
|
export type LimitTypeEnum = 'GrpTRESMins' | 'MaxTRESMins' | 'GrpTRES';
|
|
9219
9303
|
export type LinkOpenstackRequest = {
|
|
@@ -9881,6 +9965,10 @@ export type MergedPluginOptions = {
|
|
|
9881
9965
|
* Enable sub-project management within resources.
|
|
9882
9966
|
*/
|
|
9883
9967
|
enable_resource_projects?: boolean;
|
|
9968
|
+
/**
|
|
9969
|
+
* If set to True, newly-created resource projects are immediately transitioned from CREATING to OK on save, bypassing the provider/site-agent reconciliation callback. Use for offerings that have no external backend to reconcile against.
|
|
9970
|
+
*/
|
|
9971
|
+
auto_ok_resource_projects?: boolean;
|
|
9884
9972
|
/**
|
|
9885
9973
|
* If set to True, every limit-billing component declared by the offering must have a value when creating or updating a resource project. Use this for backends that reject projects without resource quotas (e.g. the rancher-keycloak-operator's project-level resourceQuota.limit cap).
|
|
9886
9974
|
*/
|
|
@@ -10179,6 +10267,10 @@ export type MergedPluginOptionsRequest = {
|
|
|
10179
10267
|
* Enable sub-project management within resources.
|
|
10180
10268
|
*/
|
|
10181
10269
|
enable_resource_projects?: boolean;
|
|
10270
|
+
/**
|
|
10271
|
+
* If set to True, newly-created resource projects are immediately transitioned from CREATING to OK on save, bypassing the provider/site-agent reconciliation callback. Use for offerings that have no external backend to reconcile against.
|
|
10272
|
+
*/
|
|
10273
|
+
auto_ok_resource_projects?: boolean;
|
|
10182
10274
|
/**
|
|
10183
10275
|
* If set to True, every limit-billing component declared by the offering must have a value when creating or updating a resource project. Use this for backends that reject projects without resource quotas (e.g. the rancher-keycloak-operator's project-level resourceQuota.limit cap).
|
|
10184
10276
|
*/
|
|
@@ -11815,6 +11907,9 @@ export type Offering = {
|
|
|
11815
11907
|
compliance_checklist?: string | null;
|
|
11816
11908
|
readonly profile_uuid?: string | null;
|
|
11817
11909
|
readonly profile_name?: string | null;
|
|
11910
|
+
readonly offering_group?: string | null;
|
|
11911
|
+
readonly offering_group_uuid?: string | null;
|
|
11912
|
+
readonly offering_group_title?: string | null;
|
|
11818
11913
|
readonly user_has_consent?: boolean;
|
|
11819
11914
|
readonly is_accessible?: boolean;
|
|
11820
11915
|
googlecalendar?: GoogleCalendar;
|
|
@@ -12044,6 +12139,7 @@ export type OfferingCreateRequest = {
|
|
|
12044
12139
|
image?: (Blob | File) | null;
|
|
12045
12140
|
backend_metadata?: unknown;
|
|
12046
12141
|
compliance_checklist?: string | null;
|
|
12142
|
+
offering_group?: string | null;
|
|
12047
12143
|
limits?: {
|
|
12048
12144
|
[key: string]: OfferingComponentLimitRequest;
|
|
12049
12145
|
};
|
|
@@ -12203,6 +12299,29 @@ export type OfferingFileRequest = {
|
|
|
12203
12299
|
offering: string;
|
|
12204
12300
|
file: Blob | File;
|
|
12205
12301
|
};
|
|
12302
|
+
export type OfferingGroup = {
|
|
12303
|
+
readonly url?: string;
|
|
12304
|
+
readonly uuid?: string;
|
|
12305
|
+
readonly created?: string;
|
|
12306
|
+
title?: string;
|
|
12307
|
+
description?: string;
|
|
12308
|
+
icon?: string | null;
|
|
12309
|
+
customer?: string;
|
|
12310
|
+
readonly customer_uuid?: string;
|
|
12311
|
+
readonly customer_name?: string;
|
|
12312
|
+
};
|
|
12313
|
+
export type OfferingGroupAssignRequest = {
|
|
12314
|
+
/**
|
|
12315
|
+
* OfferingGroup UUID. Pass null to remove the assignment.
|
|
12316
|
+
*/
|
|
12317
|
+
offering_group: string | null;
|
|
12318
|
+
};
|
|
12319
|
+
export type OfferingGroupRequest = {
|
|
12320
|
+
title: string;
|
|
12321
|
+
description?: string;
|
|
12322
|
+
icon?: (Blob | File) | null;
|
|
12323
|
+
customer: string;
|
|
12324
|
+
};
|
|
12206
12325
|
export type OfferingGroups = {
|
|
12207
12326
|
readonly customer_name: string;
|
|
12208
12327
|
readonly customer_uuid: string;
|
|
@@ -12783,6 +12902,10 @@ export type OfferingThumbnailRequest = {
|
|
|
12783
12902
|
thumbnail: Blob | File;
|
|
12784
12903
|
};
|
|
12785
12904
|
export type OfferingTypeEnum = 'Support.OfferingTemplate' | 'Marketplace.Booking' | 'Marketplace.Basic' | 'OpenStack.Tenant' | 'OpenStack.Instance' | 'OpenStack.Volume' | 'Marketplace.Rancher' | 'VMware.VirtualMachine' | 'Waldur.RemoteOffering' | 'Marketplace.Script' | 'SlurmInvoices.SlurmPackage' | 'Marketplace.Slurm';
|
|
12905
|
+
export type OfferingTypeUpdateRequest = {
|
|
12906
|
+
type: OfferingTypeUpdateTypeEnum;
|
|
12907
|
+
};
|
|
12908
|
+
export type OfferingTypeUpdateTypeEnum = 'Marketplace.Basic' | 'Marketplace.Slurm';
|
|
12786
12909
|
export type OfferingUsageByProject = {
|
|
12787
12910
|
readonly offering_uuid: string;
|
|
12788
12911
|
readonly offering_name: string;
|
|
@@ -15663,6 +15786,9 @@ export type OrderDetails = {
|
|
|
15663
15786
|
consumer_message_attachment?: string | null;
|
|
15664
15787
|
readonly consumer_rejection_comment?: string;
|
|
15665
15788
|
readonly provider_rejection_comment?: string;
|
|
15789
|
+
readonly auto_approved?: boolean;
|
|
15790
|
+
readonly auto_approved_by_rule_uuid?: string | null;
|
|
15791
|
+
readonly auto_approved_cost_limit_snapshot?: string | null;
|
|
15666
15792
|
issue?: IssueReference | null;
|
|
15667
15793
|
};
|
|
15668
15794
|
export type OrderErrorDetailsRequest = {
|
|
@@ -16661,6 +16787,11 @@ export type PatchedOfferingEstimatedCostPolicyRequest = {
|
|
|
16661
16787
|
*/
|
|
16662
16788
|
apply_to_all?: boolean;
|
|
16663
16789
|
};
|
|
16790
|
+
export type PatchedOfferingGroupRequest = {
|
|
16791
|
+
title?: string;
|
|
16792
|
+
description?: string;
|
|
16793
|
+
icon?: (Blob | File) | null;
|
|
16794
|
+
};
|
|
16664
16795
|
export type PatchedOfferingPartitionUpdateRequest = {
|
|
16665
16796
|
partition_uuid?: string;
|
|
16666
16797
|
/**
|
|
@@ -17032,6 +17163,11 @@ export type PatchedProjectInfoRequest = {
|
|
|
17032
17163
|
*/
|
|
17033
17164
|
allowed_destinations?: string | null;
|
|
17034
17165
|
};
|
|
17166
|
+
export type PatchedProjectOrderAutoApprovalRequest = {
|
|
17167
|
+
project?: string;
|
|
17168
|
+
monthly_cost_limit?: string;
|
|
17169
|
+
enabled?: boolean;
|
|
17170
|
+
};
|
|
17035
17171
|
export type PatchedProjectRequest = {
|
|
17036
17172
|
name?: string;
|
|
17037
17173
|
/**
|
|
@@ -17260,6 +17396,30 @@ export type PatchedQuestionAdminRequest = {
|
|
|
17260
17396
|
* Maximum number of files allowed for MULTIPLE_FILES type questions. If not set, no count limit is enforced.
|
|
17261
17397
|
*/
|
|
17262
17398
|
max_files_count?: number | null;
|
|
17399
|
+
/**
|
|
17400
|
+
* Number of points on the Likert scale (3, 5, or 7). Required for LIKERT type questions.
|
|
17401
|
+
*/
|
|
17402
|
+
likert_scale_length?: LikertScaleLengthEnum | NullEnum | null;
|
|
17403
|
+
/**
|
|
17404
|
+
* Label for the lowest point on the Likert scale (e.g. 'Strongly disagree'). Optional.
|
|
17405
|
+
*/
|
|
17406
|
+
likert_low_label?: string;
|
|
17407
|
+
/**
|
|
17408
|
+
* Label for the highest point on the Likert scale (e.g. 'Strongly agree'). Optional.
|
|
17409
|
+
*/
|
|
17410
|
+
likert_high_label?: string;
|
|
17411
|
+
/**
|
|
17412
|
+
* Allow respondents to choose 'N/A' as an answer for LIKERT type questions.
|
|
17413
|
+
*/
|
|
17414
|
+
likert_allow_na?: boolean;
|
|
17415
|
+
/**
|
|
17416
|
+
* Maximum number of characters allowed in RICH_TEXT type answers. If not set, no limit is enforced.
|
|
17417
|
+
*/
|
|
17418
|
+
rich_text_char_limit?: number | null;
|
|
17419
|
+
/**
|
|
17420
|
+
* Toolbar level for the rich text editor: 'minimal', 'standard', or 'extended'.
|
|
17421
|
+
*/
|
|
17422
|
+
rich_text_toolbar_level?: RichTextToolbarLevelEnum | BlankEnum;
|
|
17263
17423
|
operator?: ChecklistOperators | BlankEnum;
|
|
17264
17424
|
/**
|
|
17265
17425
|
* Answer value that trigger review.
|
|
@@ -18036,6 +18196,7 @@ export type Permission = {
|
|
|
18036
18196
|
readonly customer_uuid?: string;
|
|
18037
18197
|
readonly customer_name?: string;
|
|
18038
18198
|
readonly resource_uuid?: string | null;
|
|
18199
|
+
readonly project_uuid?: string | null;
|
|
18039
18200
|
};
|
|
18040
18201
|
export type PermissionMetadataResponse = {
|
|
18041
18202
|
/**
|
|
@@ -18115,6 +18276,7 @@ export type PersonalAccessToken = {
|
|
|
18115
18276
|
name: string;
|
|
18116
18277
|
token_prefix: string;
|
|
18117
18278
|
scopes: Array<string>;
|
|
18279
|
+
readonly allowed_scopes: Array<AllowedScopeOutput>;
|
|
18118
18280
|
expires_at: string;
|
|
18119
18281
|
is_active: boolean;
|
|
18120
18282
|
last_used_at: string;
|
|
@@ -18128,6 +18290,10 @@ export type PersonalAccessToken = {
|
|
|
18128
18290
|
export type PersonalAccessTokenCreateRequest = {
|
|
18129
18291
|
name: string;
|
|
18130
18292
|
scopes: Array<string>;
|
|
18293
|
+
/**
|
|
18294
|
+
* Optional list of entity bindings restricting where this token can act. Empty list = no entity restriction.
|
|
18295
|
+
*/
|
|
18296
|
+
allowed_scopes?: Array<AllowedScopeInputRequest>;
|
|
18131
18297
|
expires_at: string;
|
|
18132
18298
|
};
|
|
18133
18299
|
export type PersonalAccessTokenCreated = {
|
|
@@ -18138,6 +18304,7 @@ export type PersonalAccessTokenCreated = {
|
|
|
18138
18304
|
*/
|
|
18139
18305
|
token: string;
|
|
18140
18306
|
scopes: Array<string>;
|
|
18307
|
+
allowed_scopes: Array<AllowedScopeOutput>;
|
|
18141
18308
|
expires_at: string;
|
|
18142
18309
|
created: string;
|
|
18143
18310
|
};
|
|
@@ -18414,6 +18581,12 @@ export type Project = {
|
|
|
18414
18581
|
*/
|
|
18415
18582
|
user_identity_sources?: unknown;
|
|
18416
18583
|
affiliation?: AffiliatedOrganization;
|
|
18584
|
+
affiliation_uuid?: string | null;
|
|
18585
|
+
readonly affiliation_name?: string;
|
|
18586
|
+
/**
|
|
18587
|
+
* Unique short identifier, e.g. CERN, EMBL.
|
|
18588
|
+
*/
|
|
18589
|
+
readonly affiliation_code?: string;
|
|
18417
18590
|
science_sub_domain?: string | null;
|
|
18418
18591
|
readonly science_sub_domain_name?: string;
|
|
18419
18592
|
/**
|
|
@@ -18714,6 +18887,36 @@ export type ProjectMappingResponse = {
|
|
|
18714
18887
|
customer_uuid: string;
|
|
18715
18888
|
customer_name: string;
|
|
18716
18889
|
};
|
|
18890
|
+
export type ProjectOrderAutoApproval = {
|
|
18891
|
+
readonly uuid: string;
|
|
18892
|
+
readonly url: string;
|
|
18893
|
+
project: string;
|
|
18894
|
+
readonly project_name: string;
|
|
18895
|
+
readonly project_uuid: string;
|
|
18896
|
+
readonly customer_name: string;
|
|
18897
|
+
readonly customer_uuid: string;
|
|
18898
|
+
monthly_cost_limit: string;
|
|
18899
|
+
enabled?: boolean;
|
|
18900
|
+
readonly created: string;
|
|
18901
|
+
readonly modified: string;
|
|
18902
|
+
readonly created_by_uuid: string;
|
|
18903
|
+
/**
|
|
18904
|
+
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
18905
|
+
*/
|
|
18906
|
+
readonly created_by_username: string;
|
|
18907
|
+
readonly created_by_full_name: string;
|
|
18908
|
+
readonly modified_by_uuid: string;
|
|
18909
|
+
/**
|
|
18910
|
+
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
18911
|
+
*/
|
|
18912
|
+
readonly modified_by_username: string;
|
|
18913
|
+
readonly modified_by_full_name: string;
|
|
18914
|
+
};
|
|
18915
|
+
export type ProjectOrderAutoApprovalRequest = {
|
|
18916
|
+
project: string;
|
|
18917
|
+
monthly_cost_limit: string;
|
|
18918
|
+
enabled?: boolean;
|
|
18919
|
+
};
|
|
18717
18920
|
export type ProjectPermissionLog = {
|
|
18718
18921
|
readonly created?: string;
|
|
18719
18922
|
expiration_time?: string | null;
|
|
@@ -19561,6 +19764,8 @@ export type ProviderOffering = {
|
|
|
19561
19764
|
resource_options?: unknown;
|
|
19562
19765
|
secret_options?: MergedSecretOptions;
|
|
19563
19766
|
thumbnail?: string | null;
|
|
19767
|
+
readonly offering_group_uuid?: string | null;
|
|
19768
|
+
readonly offering_group_title?: string | null;
|
|
19564
19769
|
};
|
|
19565
19770
|
export type ProviderOfferingCosts = {
|
|
19566
19771
|
/**
|
|
@@ -19693,6 +19898,9 @@ export type ProviderOfferingDetails = {
|
|
|
19693
19898
|
compliance_checklist?: string | null;
|
|
19694
19899
|
readonly profile_uuid?: string | null;
|
|
19695
19900
|
readonly profile_name?: string | null;
|
|
19901
|
+
readonly offering_group?: string | null;
|
|
19902
|
+
readonly offering_group_uuid?: string | null;
|
|
19903
|
+
readonly offering_group_title?: string | null;
|
|
19696
19904
|
readonly integration_status?: Array<IntegrationStatus> | null;
|
|
19697
19905
|
readonly google_calendar_is_public?: boolean | null;
|
|
19698
19906
|
/**
|
|
@@ -20048,6 +20256,9 @@ export type PublicOfferingDetails = {
|
|
|
20048
20256
|
compliance_checklist?: string | null;
|
|
20049
20257
|
readonly profile_uuid?: string | null;
|
|
20050
20258
|
readonly profile_name?: string | null;
|
|
20259
|
+
readonly offering_group?: string | null;
|
|
20260
|
+
readonly offering_group_uuid?: string | null;
|
|
20261
|
+
readonly offering_group_title?: string | null;
|
|
20051
20262
|
readonly user_has_consent?: boolean;
|
|
20052
20263
|
readonly is_accessible?: boolean;
|
|
20053
20264
|
readonly google_calendar_is_public?: boolean | null;
|
|
@@ -20225,6 +20436,30 @@ export type Question = {
|
|
|
20225
20436
|
* Maximum number of files allowed for MULTIPLE_FILES type questions. If not set, no count limit is enforced.
|
|
20226
20437
|
*/
|
|
20227
20438
|
max_files_count?: number | null;
|
|
20439
|
+
/**
|
|
20440
|
+
* Number of points on the Likert scale (3, 5, or 7). Required for LIKERT type questions.
|
|
20441
|
+
*/
|
|
20442
|
+
likert_scale_length?: LikertScaleLengthEnum | NullEnum | null;
|
|
20443
|
+
/**
|
|
20444
|
+
* Label for the lowest point on the Likert scale (e.g. 'Strongly disagree'). Optional.
|
|
20445
|
+
*/
|
|
20446
|
+
likert_low_label?: string;
|
|
20447
|
+
/**
|
|
20448
|
+
* Label for the highest point on the Likert scale (e.g. 'Strongly agree'). Optional.
|
|
20449
|
+
*/
|
|
20450
|
+
likert_high_label?: string;
|
|
20451
|
+
/**
|
|
20452
|
+
* Allow respondents to choose 'N/A' as an answer for LIKERT type questions.
|
|
20453
|
+
*/
|
|
20454
|
+
likert_allow_na?: boolean;
|
|
20455
|
+
/**
|
|
20456
|
+
* Maximum number of characters allowed in RICH_TEXT type answers. If not set, no limit is enforced.
|
|
20457
|
+
*/
|
|
20458
|
+
rich_text_char_limit?: number | null;
|
|
20459
|
+
/**
|
|
20460
|
+
* Toolbar level for the rich text editor: 'minimal', 'standard', or 'extended'.
|
|
20461
|
+
*/
|
|
20462
|
+
rich_text_toolbar_level?: RichTextToolbarLevelEnum | BlankEnum;
|
|
20228
20463
|
operator?: ChecklistOperators | BlankEnum;
|
|
20229
20464
|
/**
|
|
20230
20465
|
* Answer value that trigger review.
|
|
@@ -20289,6 +20524,30 @@ export type QuestionAdmin = {
|
|
|
20289
20524
|
* Maximum number of files allowed for MULTIPLE_FILES type questions. If not set, no count limit is enforced.
|
|
20290
20525
|
*/
|
|
20291
20526
|
max_files_count?: number | null;
|
|
20527
|
+
/**
|
|
20528
|
+
* Number of points on the Likert scale (3, 5, or 7). Required for LIKERT type questions.
|
|
20529
|
+
*/
|
|
20530
|
+
likert_scale_length?: LikertScaleLengthEnum | NullEnum | null;
|
|
20531
|
+
/**
|
|
20532
|
+
* Label for the lowest point on the Likert scale (e.g. 'Strongly disagree'). Optional.
|
|
20533
|
+
*/
|
|
20534
|
+
likert_low_label?: string;
|
|
20535
|
+
/**
|
|
20536
|
+
* Label for the highest point on the Likert scale (e.g. 'Strongly agree'). Optional.
|
|
20537
|
+
*/
|
|
20538
|
+
likert_high_label?: string;
|
|
20539
|
+
/**
|
|
20540
|
+
* Allow respondents to choose 'N/A' as an answer for LIKERT type questions.
|
|
20541
|
+
*/
|
|
20542
|
+
likert_allow_na?: boolean;
|
|
20543
|
+
/**
|
|
20544
|
+
* Maximum number of characters allowed in RICH_TEXT type answers. If not set, no limit is enforced.
|
|
20545
|
+
*/
|
|
20546
|
+
rich_text_char_limit?: number | null;
|
|
20547
|
+
/**
|
|
20548
|
+
* Toolbar level for the rich text editor: 'minimal', 'standard', or 'extended'.
|
|
20549
|
+
*/
|
|
20550
|
+
rich_text_toolbar_level?: RichTextToolbarLevelEnum | BlankEnum;
|
|
20292
20551
|
operator?: ChecklistOperators | BlankEnum;
|
|
20293
20552
|
/**
|
|
20294
20553
|
* Answer value that trigger review.
|
|
@@ -20356,6 +20615,30 @@ export type QuestionAdminRequest = {
|
|
|
20356
20615
|
* Maximum number of files allowed for MULTIPLE_FILES type questions. If not set, no count limit is enforced.
|
|
20357
20616
|
*/
|
|
20358
20617
|
max_files_count?: number | null;
|
|
20618
|
+
/**
|
|
20619
|
+
* Number of points on the Likert scale (3, 5, or 7). Required for LIKERT type questions.
|
|
20620
|
+
*/
|
|
20621
|
+
likert_scale_length?: LikertScaleLengthEnum | NullEnum | null;
|
|
20622
|
+
/**
|
|
20623
|
+
* Label for the lowest point on the Likert scale (e.g. 'Strongly disagree'). Optional.
|
|
20624
|
+
*/
|
|
20625
|
+
likert_low_label?: string;
|
|
20626
|
+
/**
|
|
20627
|
+
* Label for the highest point on the Likert scale (e.g. 'Strongly agree'). Optional.
|
|
20628
|
+
*/
|
|
20629
|
+
likert_high_label?: string;
|
|
20630
|
+
/**
|
|
20631
|
+
* Allow respondents to choose 'N/A' as an answer for LIKERT type questions.
|
|
20632
|
+
*/
|
|
20633
|
+
likert_allow_na?: boolean;
|
|
20634
|
+
/**
|
|
20635
|
+
* Maximum number of characters allowed in RICH_TEXT type answers. If not set, no limit is enforced.
|
|
20636
|
+
*/
|
|
20637
|
+
rich_text_char_limit?: number | null;
|
|
20638
|
+
/**
|
|
20639
|
+
* Toolbar level for the rich text editor: 'minimal', 'standard', or 'extended'.
|
|
20640
|
+
*/
|
|
20641
|
+
rich_text_toolbar_level?: RichTextToolbarLevelEnum | BlankEnum;
|
|
20359
20642
|
operator?: ChecklistOperators | BlankEnum;
|
|
20360
20643
|
/**
|
|
20361
20644
|
* Answer value that trigger review.
|
|
@@ -20452,7 +20735,7 @@ export type QuestionOptionsAdminRequest = {
|
|
|
20452
20735
|
order?: number;
|
|
20453
20736
|
question: string;
|
|
20454
20737
|
};
|
|
20455
|
-
export type QuestionTypeEnum = 'boolean' | 'single_select' | 'multi_select' | 'text_input' | 'text_area' | 'number' | 'date' | 'file' | 'multiple_files' | 'phone_number' | 'year' | 'email' | 'url' | 'country' | 'rating' | 'datetime';
|
|
20738
|
+
export type QuestionTypeEnum = 'boolean' | 'single_select' | 'multi_select' | 'text_input' | 'text_area' | 'number' | 'date' | 'file' | 'multiple_files' | 'phone_number' | 'year' | 'email' | 'url' | 'country' | 'rating' | 'datetime' | 'likert' | 'rich_text';
|
|
20456
20739
|
export type QuestionWithAnswer = {
|
|
20457
20740
|
readonly uuid: string;
|
|
20458
20741
|
readonly description: string;
|
|
@@ -20491,6 +20774,30 @@ export type QuestionWithAnswer = {
|
|
|
20491
20774
|
* Maximum number of files allowed for MULTIPLE_FILES type questions. If not set, no count limit is enforced.
|
|
20492
20775
|
*/
|
|
20493
20776
|
readonly max_files_count: number | null;
|
|
20777
|
+
/**
|
|
20778
|
+
* Number of points on the Likert scale (3, 5, or 7). Required for LIKERT type questions.
|
|
20779
|
+
*/
|
|
20780
|
+
likert_scale_length: LikertScaleLengthEnum | NullEnum | null;
|
|
20781
|
+
/**
|
|
20782
|
+
* Label for the lowest point on the Likert scale (e.g. 'Strongly disagree'). Optional.
|
|
20783
|
+
*/
|
|
20784
|
+
readonly likert_low_label: string;
|
|
20785
|
+
/**
|
|
20786
|
+
* Label for the highest point on the Likert scale (e.g. 'Strongly agree'). Optional.
|
|
20787
|
+
*/
|
|
20788
|
+
readonly likert_high_label: string;
|
|
20789
|
+
/**
|
|
20790
|
+
* Allow respondents to choose 'N/A' as an answer for LIKERT type questions.
|
|
20791
|
+
*/
|
|
20792
|
+
readonly likert_allow_na: boolean;
|
|
20793
|
+
/**
|
|
20794
|
+
* Maximum number of characters allowed in RICH_TEXT type answers. If not set, no limit is enforced.
|
|
20795
|
+
*/
|
|
20796
|
+
readonly rich_text_char_limit: number | null;
|
|
20797
|
+
/**
|
|
20798
|
+
* Toolbar level for the rich text editor: 'minimal', 'standard', or 'extended'.
|
|
20799
|
+
*/
|
|
20800
|
+
rich_text_toolbar_level: RichTextToolbarLevelEnum;
|
|
20494
20801
|
readonly dependencies_info: {
|
|
20495
20802
|
[key: string]: unknown;
|
|
20496
20803
|
} | null;
|
|
@@ -20533,6 +20840,30 @@ export type QuestionWithAnswerReviewer = {
|
|
|
20533
20840
|
* Maximum number of files allowed for MULTIPLE_FILES type questions. If not set, no count limit is enforced.
|
|
20534
20841
|
*/
|
|
20535
20842
|
readonly max_files_count: number | null;
|
|
20843
|
+
/**
|
|
20844
|
+
* Number of points on the Likert scale (3, 5, or 7). Required for LIKERT type questions.
|
|
20845
|
+
*/
|
|
20846
|
+
likert_scale_length: LikertScaleLengthEnum | NullEnum | null;
|
|
20847
|
+
/**
|
|
20848
|
+
* Label for the lowest point on the Likert scale (e.g. 'Strongly disagree'). Optional.
|
|
20849
|
+
*/
|
|
20850
|
+
readonly likert_low_label: string;
|
|
20851
|
+
/**
|
|
20852
|
+
* Label for the highest point on the Likert scale (e.g. 'Strongly agree'). Optional.
|
|
20853
|
+
*/
|
|
20854
|
+
readonly likert_high_label: string;
|
|
20855
|
+
/**
|
|
20856
|
+
* Allow respondents to choose 'N/A' as an answer for LIKERT type questions.
|
|
20857
|
+
*/
|
|
20858
|
+
readonly likert_allow_na: boolean;
|
|
20859
|
+
/**
|
|
20860
|
+
* Maximum number of characters allowed in RICH_TEXT type answers. If not set, no limit is enforced.
|
|
20861
|
+
*/
|
|
20862
|
+
readonly rich_text_char_limit: number | null;
|
|
20863
|
+
/**
|
|
20864
|
+
* Toolbar level for the rich text editor: 'minimal', 'standard', or 'extended'.
|
|
20865
|
+
*/
|
|
20866
|
+
rich_text_toolbar_level: RichTextToolbarLevelEnum;
|
|
20536
20867
|
readonly dependencies_info: {
|
|
20537
20868
|
[key: string]: unknown;
|
|
20538
20869
|
} | null;
|
|
@@ -21958,6 +22289,55 @@ export type ResourceEndDateRequest = {
|
|
|
21958
22289
|
*/
|
|
21959
22290
|
end_date?: string | null;
|
|
21960
22291
|
};
|
|
22292
|
+
export type ResourceLimitChangeRequest = {
|
|
22293
|
+
readonly url: string;
|
|
22294
|
+
readonly uuid: string;
|
|
22295
|
+
readonly state: string;
|
|
22296
|
+
resource: string;
|
|
22297
|
+
readonly resource_uuid: string;
|
|
22298
|
+
readonly resource_name: string;
|
|
22299
|
+
readonly project_uuid: string;
|
|
22300
|
+
readonly project_name: string;
|
|
22301
|
+
readonly customer_uuid: string;
|
|
22302
|
+
readonly customer_name: string;
|
|
22303
|
+
readonly offering_uuid: string;
|
|
22304
|
+
readonly offering_name: string;
|
|
22305
|
+
requested_limits: unknown;
|
|
22306
|
+
readonly current_limits: {
|
|
22307
|
+
[key: string]: unknown;
|
|
22308
|
+
};
|
|
22309
|
+
readonly created: string;
|
|
22310
|
+
readonly created_by_uuid: string | null;
|
|
22311
|
+
readonly created_by_full_name: string | null;
|
|
22312
|
+
/**
|
|
22313
|
+
* Timestamp when the review was completed
|
|
22314
|
+
*/
|
|
22315
|
+
readonly reviewed_at: string | null;
|
|
22316
|
+
readonly reviewed_by_uuid: string | null;
|
|
22317
|
+
readonly reviewed_by_full_name: string | null;
|
|
22318
|
+
/**
|
|
22319
|
+
* Optional comment provided during review
|
|
22320
|
+
*/
|
|
22321
|
+
review_comment?: string | null;
|
|
22322
|
+
};
|
|
22323
|
+
export type ResourceLimitChangeRequestCreate = {
|
|
22324
|
+
resource: string;
|
|
22325
|
+
requested_limits: unknown;
|
|
22326
|
+
readonly uuid: string;
|
|
22327
|
+
readonly state: string;
|
|
22328
|
+
};
|
|
22329
|
+
export type ResourceLimitChangeRequestCreateRequest = {
|
|
22330
|
+
resource: string;
|
|
22331
|
+
requested_limits: unknown;
|
|
22332
|
+
};
|
|
22333
|
+
export type ResourceLimitChangeRequestRequest = {
|
|
22334
|
+
resource: string;
|
|
22335
|
+
requested_limits: unknown;
|
|
22336
|
+
/**
|
|
22337
|
+
* Optional comment provided during review
|
|
22338
|
+
*/
|
|
22339
|
+
review_comment?: string | null;
|
|
22340
|
+
};
|
|
21961
22341
|
export type ResourceLimitPeriod = {
|
|
21962
22342
|
/**
|
|
21963
22343
|
* Start date of the resource limit period
|
|
@@ -22043,6 +22423,14 @@ export type ResourceProject = {
|
|
|
22043
22423
|
readonly resource_name: string;
|
|
22044
22424
|
readonly created: string;
|
|
22045
22425
|
readonly modified: string;
|
|
22426
|
+
readonly is_removed: boolean;
|
|
22427
|
+
readonly removed_date: string | null;
|
|
22428
|
+
readonly removed_by: number | null;
|
|
22429
|
+
/**
|
|
22430
|
+
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
22431
|
+
*/
|
|
22432
|
+
readonly removed_by_username: string;
|
|
22433
|
+
readonly termination_metadata: unknown;
|
|
22046
22434
|
};
|
|
22047
22435
|
export type ResourceProjectBackendId = {
|
|
22048
22436
|
backend_id: string;
|
|
@@ -22062,6 +22450,16 @@ export type ResourceProjectErrorMessageRequest = {
|
|
|
22062
22450
|
*/
|
|
22063
22451
|
error_message?: string;
|
|
22064
22452
|
};
|
|
22453
|
+
export type ResourceProjectRecoveryRequest = {
|
|
22454
|
+
/**
|
|
22455
|
+
* Recreate the UserRole rows captured at soft-delete time. Requires termination_metadata to be present (set on soft-deletes performed after the recovery feature shipped).
|
|
22456
|
+
*/
|
|
22457
|
+
restore_team_members?: boolean;
|
|
22458
|
+
/**
|
|
22459
|
+
* Send invitations to users who had access before soft-delete. Mutually exclusive with restore_team_members.
|
|
22460
|
+
*/
|
|
22461
|
+
send_invitations_to_previous_members?: boolean;
|
|
22462
|
+
};
|
|
22065
22463
|
export type ResourceProjectRequest = {
|
|
22066
22464
|
resource: string;
|
|
22067
22465
|
name: string;
|
|
@@ -22747,6 +23145,7 @@ export type ReviewerSuggestionRequest = {
|
|
|
22747
23145
|
rejection_reason?: string;
|
|
22748
23146
|
};
|
|
22749
23147
|
export type ReviewerSuggestionStatusEnum = 'pending' | 'confirmed' | 'rejected' | 'invited';
|
|
23148
|
+
export type RichTextToolbarLevelEnum = 'minimal' | 'standard' | 'extended';
|
|
22750
23149
|
export type RmqClientProperties = {
|
|
22751
23150
|
/**
|
|
22752
23151
|
* Client product name (e.g., 'pika', 'amqp-client')
|
|
@@ -23514,6 +23913,28 @@ export type RuleRequest = {
|
|
|
23514
23913
|
[key: string]: unknown;
|
|
23515
23914
|
};
|
|
23516
23915
|
};
|
|
23916
|
+
export type RuleTestMatchRequestRequest = {
|
|
23917
|
+
/**
|
|
23918
|
+
* UUID of the user to evaluate this rule against.
|
|
23919
|
+
*/
|
|
23920
|
+
user_uuid: string;
|
|
23921
|
+
};
|
|
23922
|
+
export type RuleTestMatchResponse = {
|
|
23923
|
+
would_provision: boolean;
|
|
23924
|
+
block_reason: string;
|
|
23925
|
+
user_username: string;
|
|
23926
|
+
user_email: string;
|
|
23927
|
+
user_organization: string;
|
|
23928
|
+
user_registration_method: string;
|
|
23929
|
+
user_identity_source: string;
|
|
23930
|
+
user_affiliations: Array<string>;
|
|
23931
|
+
user_is_protected: boolean;
|
|
23932
|
+
filter_results: Array<FilterCheckResult>;
|
|
23933
|
+
customer_lookup_performed: boolean;
|
|
23934
|
+
customer_candidates: Array<CustomerCandidate>;
|
|
23935
|
+
customer_lookup_ambiguous: boolean;
|
|
23936
|
+
resolved_project_name: string | null;
|
|
23937
|
+
};
|
|
23517
23938
|
export type RuntimeStates = {
|
|
23518
23939
|
/**
|
|
23519
23940
|
* Value of the runtime state
|
|
@@ -23627,6 +24048,10 @@ export type ScienceSubDomainRequest = {
|
|
|
23627
24048
|
name: string;
|
|
23628
24049
|
domain: string;
|
|
23629
24050
|
};
|
|
24051
|
+
export type ScimPullAttributesResponse = {
|
|
24052
|
+
detail: string;
|
|
24053
|
+
changed_fields?: Array<string>;
|
|
24054
|
+
};
|
|
23630
24055
|
export type ScimSyncAllResponse = {
|
|
23631
24056
|
detail: string;
|
|
23632
24057
|
};
|
|
@@ -23983,6 +24408,27 @@ export type SiteAgentConfigGenerationRequest = {
|
|
|
23983
24408
|
*/
|
|
23984
24409
|
timezone?: string;
|
|
23985
24410
|
};
|
|
24411
|
+
export type SiteAgentLog = {
|
|
24412
|
+
readonly uuid: string;
|
|
24413
|
+
readonly offering: string;
|
|
24414
|
+
readonly offering_uuid: string;
|
|
24415
|
+
readonly agent_identity_uuid: string;
|
|
24416
|
+
/**
|
|
24417
|
+
* Unix timestamp of the log entry
|
|
24418
|
+
*/
|
|
24419
|
+
timestamp: number;
|
|
24420
|
+
level: LevelEnum;
|
|
24421
|
+
message: string;
|
|
24422
|
+
module: string;
|
|
24423
|
+
readonly created: string;
|
|
24424
|
+
};
|
|
24425
|
+
export type SiteAgentLogCreateRequest = {
|
|
24426
|
+
agent_identity_uuid: string;
|
|
24427
|
+
timestamp: number;
|
|
24428
|
+
level: LevelEnum;
|
|
24429
|
+
message: string;
|
|
24430
|
+
module: string;
|
|
24431
|
+
};
|
|
23986
24432
|
export type SlurmAllocation = {
|
|
23987
24433
|
readonly url?: string;
|
|
23988
24434
|
readonly uuid?: string;
|
|
@@ -25145,6 +25591,9 @@ export type ToSConsentDashboard = {
|
|
|
25145
25591
|
readonly active_users_over_time: Array<TimeSeriesToSData>;
|
|
25146
25592
|
readonly accepted_consents_over_time: Array<TimeSeriesToSData>;
|
|
25147
25593
|
};
|
|
25594
|
+
export type TokenExchangeRequest = {
|
|
25595
|
+
code: string;
|
|
25596
|
+
};
|
|
25148
25597
|
export type TokenQuotaUsageResponse = {
|
|
25149
25598
|
/**
|
|
25150
25599
|
* Daily token limit (non-negative integer). Null uses system default. -1 means unlimited.
|
|
@@ -25501,6 +25950,7 @@ export type User = {
|
|
|
25501
25950
|
* Indicates what identity provider was used.
|
|
25502
25951
|
*/
|
|
25503
25952
|
readonly identity_source?: string;
|
|
25953
|
+
readonly should_protect_user_details?: boolean;
|
|
25504
25954
|
readonly has_active_session?: boolean;
|
|
25505
25955
|
readonly has_usable_password?: boolean;
|
|
25506
25956
|
readonly ip_address?: string | null;
|
|
@@ -25637,6 +26087,23 @@ export type UserAffiliationCount = {
|
|
|
25637
26087
|
*/
|
|
25638
26088
|
count: number;
|
|
25639
26089
|
};
|
|
26090
|
+
export type UserAffiliationDetail = {
|
|
26091
|
+
/**
|
|
26092
|
+
* Raw affiliation URN
|
|
26093
|
+
*/
|
|
26094
|
+
affiliation: string;
|
|
26095
|
+
organization: string | null;
|
|
26096
|
+
/**
|
|
26097
|
+
* ISO country code
|
|
26098
|
+
*/
|
|
26099
|
+
country: string | null;
|
|
26100
|
+
category: string;
|
|
26101
|
+
identifier: string | null;
|
|
26102
|
+
/**
|
|
26103
|
+
* Number of users
|
|
26104
|
+
*/
|
|
26105
|
+
count: number;
|
|
26106
|
+
};
|
|
25640
26107
|
export type UserAgreement = {
|
|
25641
26108
|
readonly url: string;
|
|
25642
26109
|
readonly uuid: string;
|
|
@@ -25689,7 +26156,7 @@ export type UserAuthToken = {
|
|
|
25689
26156
|
};
|
|
25690
26157
|
export type UserChecklistCompletion = {
|
|
25691
26158
|
readonly uuid: string;
|
|
25692
|
-
offering_user:
|
|
26159
|
+
offering_user: UserChecklistCompletionOfferingUser | null;
|
|
25693
26160
|
readonly offering_user_uuid: string | null;
|
|
25694
26161
|
readonly offering_name: string | null;
|
|
25695
26162
|
readonly offering_uuid: string | null;
|
|
@@ -25720,6 +26187,17 @@ export type UserChecklistCompletion = {
|
|
|
25720
26187
|
readonly created: string;
|
|
25721
26188
|
readonly modified: string;
|
|
25722
26189
|
};
|
|
26190
|
+
export type UserChecklistCompletionOfferingUser = {
|
|
26191
|
+
readonly uuid: string;
|
|
26192
|
+
username?: string | null;
|
|
26193
|
+
readonly user_full_name: string;
|
|
26194
|
+
readonly user_email: string;
|
|
26195
|
+
readonly state: string;
|
|
26196
|
+
/**
|
|
26197
|
+
* Signal to service if the user account is restricted or not
|
|
26198
|
+
*/
|
|
26199
|
+
is_restricted?: boolean;
|
|
26200
|
+
};
|
|
25723
26201
|
export type UserConsentInfo = {
|
|
25724
26202
|
readonly uuid: string;
|
|
25725
26203
|
readonly version: string;
|
|
@@ -27201,6 +27679,28 @@ export type OfferingFileRequestMultipart = {
|
|
|
27201
27679
|
offering: string;
|
|
27202
27680
|
file: Blob | File;
|
|
27203
27681
|
};
|
|
27682
|
+
export type OfferingGroupRequestForm = {
|
|
27683
|
+
title: string;
|
|
27684
|
+
description?: string;
|
|
27685
|
+
icon?: (Blob | File) | null;
|
|
27686
|
+
customer: string;
|
|
27687
|
+
};
|
|
27688
|
+
export type OfferingGroupRequestMultipart = {
|
|
27689
|
+
title: string;
|
|
27690
|
+
description?: string;
|
|
27691
|
+
icon?: (Blob | File) | null;
|
|
27692
|
+
customer: string;
|
|
27693
|
+
};
|
|
27694
|
+
export type PatchedOfferingGroupRequestForm = {
|
|
27695
|
+
title?: string;
|
|
27696
|
+
description?: string;
|
|
27697
|
+
icon?: (Blob | File) | null;
|
|
27698
|
+
};
|
|
27699
|
+
export type PatchedOfferingGroupRequestMultipart = {
|
|
27700
|
+
title?: string;
|
|
27701
|
+
description?: string;
|
|
27702
|
+
icon?: (Blob | File) | null;
|
|
27703
|
+
};
|
|
27204
27704
|
export type OrderConsumerInfoRequestForm = {
|
|
27205
27705
|
consumer_message?: string;
|
|
27206
27706
|
consumer_message_attachment?: Blob | File;
|
|
@@ -27276,6 +27776,7 @@ export type OfferingCreateRequestForm = {
|
|
|
27276
27776
|
image?: (Blob | File) | null;
|
|
27277
27777
|
backend_metadata?: unknown;
|
|
27278
27778
|
compliance_checklist?: string | null;
|
|
27779
|
+
offering_group?: string | null;
|
|
27279
27780
|
limits?: {
|
|
27280
27781
|
[key: string]: OfferingComponentLimitRequest;
|
|
27281
27782
|
};
|
|
@@ -27331,6 +27832,7 @@ export type OfferingCreateRequestMultipart = {
|
|
|
27331
27832
|
image?: (Blob | File) | null;
|
|
27332
27833
|
backend_metadata?: unknown;
|
|
27333
27834
|
compliance_checklist?: string | null;
|
|
27835
|
+
offering_group?: string | null;
|
|
27334
27836
|
limits?: {
|
|
27335
27837
|
[key: string]: OfferingComponentLimitRequest;
|
|
27336
27838
|
};
|
|
@@ -27834,6 +28336,12 @@ export type ConstanceSettingsRequestForm = {
|
|
|
27834
28336
|
SCIM_API_URL?: string;
|
|
27835
28337
|
SCIM_API_KEY?: string;
|
|
27836
28338
|
SCIM_URN_NAMESPACE?: string;
|
|
28339
|
+
SCIM_INBOUND_ENABLED?: boolean;
|
|
28340
|
+
SCIM_INBOUND_SOURCE_NAME?: string;
|
|
28341
|
+
SCIM_INBOUND_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
28342
|
+
SCIM_PULL_API_URL?: string;
|
|
28343
|
+
SCIM_PULL_API_KEY?: string;
|
|
28344
|
+
SCIM_PULL_SOURCE_NAME?: string;
|
|
27837
28345
|
KEYCLOAK_ICON?: (Blob | File) | null;
|
|
27838
28346
|
COUNTRIES?: Array<string>;
|
|
27839
28347
|
OIDC_AUTH_URL?: string;
|
|
@@ -27938,6 +28446,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
27938
28446
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
27939
28447
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
27940
28448
|
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
28449
|
+
SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
|
|
27941
28450
|
PAT_ENABLED?: boolean;
|
|
27942
28451
|
PAT_MAX_LIFETIME_DAYS?: number;
|
|
27943
28452
|
PAT_MAX_TOKENS_PER_USER?: number;
|
|
@@ -28103,6 +28612,12 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
28103
28612
|
SCIM_API_URL?: string;
|
|
28104
28613
|
SCIM_API_KEY?: string;
|
|
28105
28614
|
SCIM_URN_NAMESPACE?: string;
|
|
28615
|
+
SCIM_INBOUND_ENABLED?: boolean;
|
|
28616
|
+
SCIM_INBOUND_SOURCE_NAME?: string;
|
|
28617
|
+
SCIM_INBOUND_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
28618
|
+
SCIM_PULL_API_URL?: string;
|
|
28619
|
+
SCIM_PULL_API_KEY?: string;
|
|
28620
|
+
SCIM_PULL_SOURCE_NAME?: string;
|
|
28106
28621
|
KEYCLOAK_ICON?: (Blob | File) | null;
|
|
28107
28622
|
COUNTRIES?: Array<string>;
|
|
28108
28623
|
OIDC_AUTH_URL?: string;
|
|
@@ -28207,6 +28722,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
28207
28722
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
28208
28723
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
28209
28724
|
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
28725
|
+
SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
|
|
28210
28726
|
PAT_ENABLED?: boolean;
|
|
28211
28727
|
PAT_MAX_LIFETIME_DAYS?: number;
|
|
28212
28728
|
PAT_MAX_TOKENS_PER_USER?: number;
|
|
@@ -28658,7 +29174,7 @@ export type AzureSqlDatabaseFieldEnum = 'access_url' | 'backend_id' | 'charset'
|
|
|
28658
29174
|
export type AzureSqlServerFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fqdn' | 'is_limit_based' | 'is_usage_based' | 'location' | 'location_name' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'password' | 'project' | 'project_name' | 'project_uuid' | 'resource_group' | 'resource_group_name' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'storage_mb' | 'url' | 'username' | 'uuid';
|
|
28659
29175
|
export type AzureVirtualMachineFieldEnum = 'access_url' | 'backend_id' | 'cores' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'disk' | 'error_message' | 'error_traceback' | 'external_ips' | 'image' | 'image_name' | 'internal_ips' | 'is_limit_based' | 'is_usage_based' | 'key_fingerprint' | 'key_name' | 'latitude' | 'location' | 'location_name' | 'longitude' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'min_disk' | 'min_ram' | 'modified' | 'name' | 'password' | 'project' | 'project_name' | 'project_uuid' | 'ram' | 'resource_group' | 'resource_group_name' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'size_name' | 'ssh_public_key' | 'start_time' | 'state' | 'url' | 'user_data' | 'username' | 'uuid';
|
|
28660
29176
|
export type BackendResourceReqOEnum = '-created' | 'created';
|
|
28661
|
-
export type OfferingFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details';
|
|
29177
|
+
export type OfferingFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'offering_group' | 'offering_group_title' | 'offering_group_uuid' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details';
|
|
28662
29178
|
export type BookingResourceFieldEnum = 'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_effective_end_date' | 'project_end_date' | 'project_end_date_requested_by' | 'project_is_in_grace_period' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid';
|
|
28663
29179
|
export type BookingResourceOEnum = '-created' | '-name' | '-schedules' | '-type' | 'created' | 'name' | 'schedules' | 'type';
|
|
28664
29180
|
export type BroadcastMessageFieldEnum = 'author_full_name' | 'body' | 'created' | 'emails' | 'query' | 'send_at' | 'state' | 'subject' | 'uuid';
|
|
@@ -28708,28 +29224,29 @@ export type CourseAccountOEnum = '-created' | '-email' | '-modified' | '-project
|
|
|
28708
29224
|
export type IntegrationStatusDetailsOEnum = '-last_request_timestamp' | 'last_request_timestamp';
|
|
28709
29225
|
export type IntegrationStatusDetailsStatusEnum = 'Active' | 'Disconnected' | 'Unknown';
|
|
28710
29226
|
export type OfferingFileFieldEnum = 'created' | 'file' | 'name' | 'offering' | 'url' | 'uuid';
|
|
29227
|
+
export type OfferingGroupFieldEnum = 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'description' | 'icon' | 'title' | 'url' | 'uuid';
|
|
28711
29228
|
export type OfferingPermissionOEnum = '-created' | '-email' | '-expiration_time' | '-full_name' | '-native_name' | '-role' | '-username' | 'created' | 'email' | 'expiration_time' | 'full_name' | 'native_name' | 'role' | 'username';
|
|
28712
29229
|
export type OfferingReferralOEnum = '-published' | '-relation_type' | '-resource_type' | 'published' | 'relation_type' | 'resource_type';
|
|
28713
29230
|
export type OfferingTermsOfServiceOEnum = '-created' | '-modified' | '-version' | 'created' | 'modified' | 'version';
|
|
28714
29231
|
export type UserChecklistCompletionOEnum = '-is_completed' | '-modified' | 'is_completed' | 'modified';
|
|
28715
29232
|
export type OfferingUserFieldEnum = 'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_profile_complete' | 'is_restricted' | 'missing_profile_attributes' | 'modified' | 'offering' | 'offering_has_active_tos' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_active_isds' | 'user_address' | 'user_affiliations' | 'user_birth_date' | 'user_civil_number' | 'user_country_of_residence' | 'user_eduperson_assurance' | 'user_email' | 'user_first_name' | 'user_full_name' | 'user_gender' | 'user_identity_source' | 'user_job_title' | 'user_last_name' | 'user_nationalities' | 'user_nationality' | 'user_organization' | 'user_organization_country' | 'user_organization_registry_code' | 'user_organization_type' | 'user_personal_title' | 'user_phone_number' | 'user_place_of_birth' | 'user_username' | 'user_uuid' | 'username' | 'uuid';
|
|
28716
29233
|
export type OfferingUserOEnum = '-created' | '-modified' | '-username' | 'created' | 'modified' | 'username';
|
|
28717
|
-
export type OrderDetailsFieldEnum = 'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_message' | 'consumer_message_attachment' | 'consumer_rejection_comment' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_email' | 'created_by_full_name' | 'created_by_organization' | 'created_by_organization_registry_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'error_updated_at' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'order_subtype' | 'output' | 'output_updated_at' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_message' | 'provider_message_attachment' | 'provider_message_url' | 'provider_name' | 'provider_rejection_comment' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'slug' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid';
|
|
29234
|
+
export type OrderDetailsFieldEnum = 'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'auto_approved' | 'auto_approved_by_rule_uuid' | 'auto_approved_cost_limit_snapshot' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_message' | 'consumer_message_attachment' | 'consumer_rejection_comment' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_email' | 'created_by_full_name' | 'created_by_organization' | 'created_by_organization_registry_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'error_updated_at' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'order_subtype' | 'output' | 'output_updated_at' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_message' | 'provider_message_attachment' | 'provider_message_url' | 'provider_name' | 'provider_rejection_comment' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'slug' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid';
|
|
28718
29235
|
export type OrderDetailsOEnum = '-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state';
|
|
28719
29236
|
export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'draft' | 'pending' | 'rejected';
|
|
28720
|
-
export type ProviderOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_id_rules' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details';
|
|
29237
|
+
export type ProviderOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_id_rules' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'offering_group' | 'offering_group_title' | 'offering_group_uuid' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details';
|
|
28721
29238
|
export type ProviderOfferingDetailsOEnum = '-created' | '-name' | '-state' | '-total_cost' | '-total_cost_estimated' | '-total_customers' | '-type' | 'created' | 'name' | 'state' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type';
|
|
28722
29239
|
export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
|
|
28723
|
-
export type ProjectFieldEnum = 'affiliation' | 'affiliation_uuid' | 'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_grace_period_days' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'effective_end_date' | 'end_date' | 'end_date_requested_by' | 'end_date_updated_at' | 'grace_period_days' | 'image' | 'is_in_grace_period' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'science_domain_code' | 'science_domain_name' | 'science_domain_uuid' | 'science_sub_domain' | 'science_sub_domain_code' | 'science_sub_domain_name' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
|
|
28724
|
-
export type UserFieldEnum = 'active_isds' | 'address' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'deactivation_reason' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'has_usable_password' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_identity_manager' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'managed_isds' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'permissions' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
|
|
29240
|
+
export type ProjectFieldEnum = 'affiliation' | 'affiliation_code' | 'affiliation_name' | 'affiliation_uuid' | 'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_grace_period_days' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'effective_end_date' | 'end_date' | 'end_date_requested_by' | 'end_date_updated_at' | 'grace_period_days' | 'image' | 'is_in_grace_period' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'science_domain_code' | 'science_domain_name' | 'science_domain_uuid' | 'science_sub_domain' | 'science_sub_domain_code' | 'science_sub_domain_name' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
|
|
29241
|
+
export type UserFieldEnum = 'active_isds' | 'address' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'deactivation_reason' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'has_usable_password' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_identity_manager' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'managed_isds' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'permissions' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'preferred_language' | 'registration_method' | 'requested_email' | 'should_protect_user_details' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
|
|
28725
29242
|
export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
|
|
28726
|
-
export type PublicOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details';
|
|
29243
|
+
export type PublicOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'offering_group' | 'offering_group_title' | 'offering_group_uuid' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details';
|
|
28727
29244
|
export type RobotAccountDetailsFieldEnum = 'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fingerprints' | 'keys' | 'modified' | 'offering_plugin_options' | 'project_name' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'resource' | 'resource_name' | 'resource_uuid' | 'responsible_user' | 'state' | 'type' | 'url' | 'user_keys' | 'username' | 'users' | 'uuid';
|
|
28728
29245
|
export type ServiceProviderFieldEnum = 'allowed_domains' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'enable_notifications' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid';
|
|
28729
29246
|
export type MarketplaceProviderCustomerProjectFieldEnum = 'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid';
|
|
28730
29247
|
export type MarketplaceProviderCustomerProjectOEnum = '-created' | '-customer_abbreviation' | '-customer_name' | '-customer_native_name' | '-end_date' | '-estimated_cost' | '-name' | '-start_date' | 'created' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'end_date' | 'estimated_cost' | 'name' | 'start_date';
|
|
28731
29248
|
export type MarketplaceProviderCustomerFieldEnum = 'abbreviation' | 'billing_price_estimate' | 'email' | 'name' | 'payment_profiles' | 'phone_number' | 'projects' | 'projects_count' | 'slug' | 'users' | 'users_count' | 'uuid';
|
|
28732
|
-
export type ProviderOfferingFieldEnum = 'billing_price_estimate' | 'category_title' | 'components' | 'customer_uuid' | 'name' | 'options' | 'plans' | 'resource_options' | 'resources_count' | 'secret_options' | 'slug' | 'state' | 'thumbnail' | 'type' | 'uuid';
|
|
29249
|
+
export type ProviderOfferingFieldEnum = 'billing_price_estimate' | 'category_title' | 'components' | 'customer_uuid' | 'name' | 'offering_group_title' | 'offering_group_uuid' | 'options' | 'plans' | 'resource_options' | 'resources_count' | 'secret_options' | 'slug' | 'state' | 'thumbnail' | 'type' | 'uuid';
|
|
28733
29250
|
export type ProjectPermissionLogFieldEnum = 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_uuid' | 'expiration_time' | 'project' | 'project_created' | 'project_end_date' | 'project_name' | 'project_uuid' | 'role' | 'role_name' | 'user' | 'user_email' | 'user_full_name' | 'user_native_name' | 'user_username' | 'user_uuid';
|
|
28734
29251
|
export type MarketplaceServiceProviderUserFieldEnum = 'active_isds' | 'address' | 'affiliations' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'identity_source' | 'is_active' | 'job_title' | 'last_name' | 'nationalities' | 'nationality' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'projects_count' | 'registration_method' | 'username' | 'uuid';
|
|
28735
29252
|
export type MarketplaceServiceProviderUserOEnum = '-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';
|
|
@@ -29001,6 +29518,22 @@ export type ApiAuthTaraInitRetrieveResponses = {
|
|
|
29001
29518
|
*/
|
|
29002
29519
|
200: unknown;
|
|
29003
29520
|
};
|
|
29521
|
+
export type ApiAuthTokenExchangeData = {
|
|
29522
|
+
body: TokenExchangeRequest;
|
|
29523
|
+
path?: never;
|
|
29524
|
+
query?: never;
|
|
29525
|
+
url: '/api-auth/token-exchange/';
|
|
29526
|
+
};
|
|
29527
|
+
export type ApiAuthTokenExchangeErrors = {
|
|
29528
|
+
400: {
|
|
29529
|
+
[key: string]: unknown;
|
|
29530
|
+
};
|
|
29531
|
+
};
|
|
29532
|
+
export type ApiAuthTokenExchangeError = ApiAuthTokenExchangeErrors[keyof ApiAuthTokenExchangeErrors];
|
|
29533
|
+
export type ApiAuthTokenExchangeResponses = {
|
|
29534
|
+
200: CoreAuthToken;
|
|
29535
|
+
};
|
|
29536
|
+
export type ApiAuthTokenExchangeResponse = ApiAuthTokenExchangeResponses[keyof ApiAuthTokenExchangeResponses];
|
|
29004
29537
|
export type AccessSubnetsListData = {
|
|
29005
29538
|
body?: never;
|
|
29006
29539
|
path?: never;
|
|
@@ -31243,6 +31776,18 @@ export type AutoprovisioningRulesUpdateResponses = {
|
|
|
31243
31776
|
200: Rule;
|
|
31244
31777
|
};
|
|
31245
31778
|
export type AutoprovisioningRulesUpdateResponse = AutoprovisioningRulesUpdateResponses[keyof AutoprovisioningRulesUpdateResponses];
|
|
31779
|
+
export type AutoprovisioningRulesTestMatchData = {
|
|
31780
|
+
body: RuleTestMatchRequestRequest;
|
|
31781
|
+
path: {
|
|
31782
|
+
uuid: string;
|
|
31783
|
+
};
|
|
31784
|
+
query?: never;
|
|
31785
|
+
url: '/api/autoprovisioning-rules/{uuid}/test-match/';
|
|
31786
|
+
};
|
|
31787
|
+
export type AutoprovisioningRulesTestMatchResponses = {
|
|
31788
|
+
200: RuleTestMatchResponse;
|
|
31789
|
+
};
|
|
31790
|
+
export type AutoprovisioningRulesTestMatchResponse = AutoprovisioningRulesTestMatchResponses[keyof AutoprovisioningRulesTestMatchResponses];
|
|
31246
31791
|
export type AwsImagesListData = {
|
|
31247
31792
|
body?: never;
|
|
31248
31793
|
path?: never;
|
|
@@ -45158,6 +45703,120 @@ export type MarketplaceOfferingFilesRetrieveResponses = {
|
|
|
45158
45703
|
200: OfferingFile;
|
|
45159
45704
|
};
|
|
45160
45705
|
export type MarketplaceOfferingFilesRetrieveResponse = MarketplaceOfferingFilesRetrieveResponses[keyof MarketplaceOfferingFilesRetrieveResponses];
|
|
45706
|
+
export type MarketplaceOfferingGroupsListData = {
|
|
45707
|
+
body?: never;
|
|
45708
|
+
path?: never;
|
|
45709
|
+
query?: {
|
|
45710
|
+
/**
|
|
45711
|
+
* Customer UUID
|
|
45712
|
+
*/
|
|
45713
|
+
customer_uuid?: string;
|
|
45714
|
+
field?: Array<OfferingGroupFieldEnum>;
|
|
45715
|
+
/**
|
|
45716
|
+
* A page number within the paginated result set.
|
|
45717
|
+
*/
|
|
45718
|
+
page?: number;
|
|
45719
|
+
/**
|
|
45720
|
+
* Number of results to return per page.
|
|
45721
|
+
*/
|
|
45722
|
+
page_size?: number;
|
|
45723
|
+
title?: string;
|
|
45724
|
+
};
|
|
45725
|
+
url: '/api/marketplace-offering-groups/';
|
|
45726
|
+
};
|
|
45727
|
+
export type MarketplaceOfferingGroupsListResponses = {
|
|
45728
|
+
200: Array<OfferingGroup>;
|
|
45729
|
+
};
|
|
45730
|
+
export type MarketplaceOfferingGroupsListResponse = MarketplaceOfferingGroupsListResponses[keyof MarketplaceOfferingGroupsListResponses];
|
|
45731
|
+
export type MarketplaceOfferingGroupsCountData = {
|
|
45732
|
+
body?: never;
|
|
45733
|
+
path?: never;
|
|
45734
|
+
query?: {
|
|
45735
|
+
/**
|
|
45736
|
+
* Customer UUID
|
|
45737
|
+
*/
|
|
45738
|
+
customer_uuid?: string;
|
|
45739
|
+
/**
|
|
45740
|
+
* A page number within the paginated result set.
|
|
45741
|
+
*/
|
|
45742
|
+
page?: number;
|
|
45743
|
+
/**
|
|
45744
|
+
* Number of results to return per page.
|
|
45745
|
+
*/
|
|
45746
|
+
page_size?: number;
|
|
45747
|
+
title?: string;
|
|
45748
|
+
};
|
|
45749
|
+
url: '/api/marketplace-offering-groups/';
|
|
45750
|
+
};
|
|
45751
|
+
export type MarketplaceOfferingGroupsCountResponses = {
|
|
45752
|
+
/**
|
|
45753
|
+
* No response body
|
|
45754
|
+
*/
|
|
45755
|
+
200: unknown;
|
|
45756
|
+
};
|
|
45757
|
+
export type MarketplaceOfferingGroupsCreateData = {
|
|
45758
|
+
body: OfferingGroupRequest;
|
|
45759
|
+
path?: never;
|
|
45760
|
+
query?: never;
|
|
45761
|
+
url: '/api/marketplace-offering-groups/';
|
|
45762
|
+
};
|
|
45763
|
+
export type MarketplaceOfferingGroupsCreateResponses = {
|
|
45764
|
+
201: OfferingGroup;
|
|
45765
|
+
};
|
|
45766
|
+
export type MarketplaceOfferingGroupsCreateResponse = MarketplaceOfferingGroupsCreateResponses[keyof MarketplaceOfferingGroupsCreateResponses];
|
|
45767
|
+
export type MarketplaceOfferingGroupsDestroyData = {
|
|
45768
|
+
body?: never;
|
|
45769
|
+
path: {
|
|
45770
|
+
uuid: string;
|
|
45771
|
+
};
|
|
45772
|
+
query?: never;
|
|
45773
|
+
url: '/api/marketplace-offering-groups/{uuid}/';
|
|
45774
|
+
};
|
|
45775
|
+
export type MarketplaceOfferingGroupsDestroyResponses = {
|
|
45776
|
+
/**
|
|
45777
|
+
* No response body
|
|
45778
|
+
*/
|
|
45779
|
+
204: void;
|
|
45780
|
+
};
|
|
45781
|
+
export type MarketplaceOfferingGroupsDestroyResponse = MarketplaceOfferingGroupsDestroyResponses[keyof MarketplaceOfferingGroupsDestroyResponses];
|
|
45782
|
+
export type MarketplaceOfferingGroupsRetrieveData = {
|
|
45783
|
+
body?: never;
|
|
45784
|
+
path: {
|
|
45785
|
+
uuid: string;
|
|
45786
|
+
};
|
|
45787
|
+
query?: {
|
|
45788
|
+
field?: Array<OfferingGroupFieldEnum>;
|
|
45789
|
+
};
|
|
45790
|
+
url: '/api/marketplace-offering-groups/{uuid}/';
|
|
45791
|
+
};
|
|
45792
|
+
export type MarketplaceOfferingGroupsRetrieveResponses = {
|
|
45793
|
+
200: OfferingGroup;
|
|
45794
|
+
};
|
|
45795
|
+
export type MarketplaceOfferingGroupsRetrieveResponse = MarketplaceOfferingGroupsRetrieveResponses[keyof MarketplaceOfferingGroupsRetrieveResponses];
|
|
45796
|
+
export type MarketplaceOfferingGroupsPartialUpdateData = {
|
|
45797
|
+
body?: PatchedOfferingGroupRequest;
|
|
45798
|
+
path: {
|
|
45799
|
+
uuid: string;
|
|
45800
|
+
};
|
|
45801
|
+
query?: never;
|
|
45802
|
+
url: '/api/marketplace-offering-groups/{uuid}/';
|
|
45803
|
+
};
|
|
45804
|
+
export type MarketplaceOfferingGroupsPartialUpdateResponses = {
|
|
45805
|
+
200: OfferingGroup;
|
|
45806
|
+
};
|
|
45807
|
+
export type MarketplaceOfferingGroupsPartialUpdateResponse = MarketplaceOfferingGroupsPartialUpdateResponses[keyof MarketplaceOfferingGroupsPartialUpdateResponses];
|
|
45808
|
+
export type MarketplaceOfferingGroupsUpdateData = {
|
|
45809
|
+
body: OfferingGroupRequest;
|
|
45810
|
+
path: {
|
|
45811
|
+
uuid: string;
|
|
45812
|
+
};
|
|
45813
|
+
query?: never;
|
|
45814
|
+
url: '/api/marketplace-offering-groups/{uuid}/';
|
|
45815
|
+
};
|
|
45816
|
+
export type MarketplaceOfferingGroupsUpdateResponses = {
|
|
45817
|
+
200: OfferingGroup;
|
|
45818
|
+
};
|
|
45819
|
+
export type MarketplaceOfferingGroupsUpdateResponse = MarketplaceOfferingGroupsUpdateResponses[keyof MarketplaceOfferingGroupsUpdateResponses];
|
|
45161
45820
|
export type MarketplaceOfferingPermissionsListData = {
|
|
45162
45821
|
body?: never;
|
|
45163
45822
|
path?: never;
|
|
@@ -46893,6 +47552,10 @@ export type MarketplaceOrdersListData = {
|
|
|
46893
47552
|
*
|
|
46894
47553
|
*/
|
|
46895
47554
|
type?: Array<RequestTypes>;
|
|
47555
|
+
/**
|
|
47556
|
+
* Auto-approved
|
|
47557
|
+
*/
|
|
47558
|
+
was_auto_approved?: boolean;
|
|
46896
47559
|
};
|
|
46897
47560
|
url: '/api/marketplace-orders/';
|
|
46898
47561
|
};
|
|
@@ -47008,6 +47671,10 @@ export type MarketplaceOrdersCountData = {
|
|
|
47008
47671
|
*
|
|
47009
47672
|
*/
|
|
47010
47673
|
type?: Array<RequestTypes>;
|
|
47674
|
+
/**
|
|
47675
|
+
* Auto-approved
|
|
47676
|
+
*/
|
|
47677
|
+
was_auto_approved?: boolean;
|
|
47011
47678
|
};
|
|
47012
47679
|
url: '/api/marketplace-orders/';
|
|
47013
47680
|
};
|
|
@@ -47893,6 +48560,125 @@ export type MarketplaceProjectEstimatedCostPoliciesActionsCountResponses = {
|
|
|
47893
48560
|
*/
|
|
47894
48561
|
200: unknown;
|
|
47895
48562
|
};
|
|
48563
|
+
export type MarketplaceProjectOrderAutoApprovalsListData = {
|
|
48564
|
+
body?: never;
|
|
48565
|
+
path?: never;
|
|
48566
|
+
query?: {
|
|
48567
|
+
/**
|
|
48568
|
+
* Customer UUID
|
|
48569
|
+
*/
|
|
48570
|
+
customer_uuid?: string;
|
|
48571
|
+
enabled?: boolean;
|
|
48572
|
+
/**
|
|
48573
|
+
* A page number within the paginated result set.
|
|
48574
|
+
*/
|
|
48575
|
+
page?: number;
|
|
48576
|
+
/**
|
|
48577
|
+
* Number of results to return per page.
|
|
48578
|
+
*/
|
|
48579
|
+
page_size?: number;
|
|
48580
|
+
/**
|
|
48581
|
+
* Project UUID
|
|
48582
|
+
*/
|
|
48583
|
+
project_uuid?: string;
|
|
48584
|
+
};
|
|
48585
|
+
url: '/api/marketplace-project-order-auto-approvals/';
|
|
48586
|
+
};
|
|
48587
|
+
export type MarketplaceProjectOrderAutoApprovalsListResponses = {
|
|
48588
|
+
200: Array<ProjectOrderAutoApproval>;
|
|
48589
|
+
};
|
|
48590
|
+
export type MarketplaceProjectOrderAutoApprovalsListResponse = MarketplaceProjectOrderAutoApprovalsListResponses[keyof MarketplaceProjectOrderAutoApprovalsListResponses];
|
|
48591
|
+
export type MarketplaceProjectOrderAutoApprovalsCountData = {
|
|
48592
|
+
body?: never;
|
|
48593
|
+
path?: never;
|
|
48594
|
+
query?: {
|
|
48595
|
+
/**
|
|
48596
|
+
* Customer UUID
|
|
48597
|
+
*/
|
|
48598
|
+
customer_uuid?: string;
|
|
48599
|
+
enabled?: boolean;
|
|
48600
|
+
/**
|
|
48601
|
+
* A page number within the paginated result set.
|
|
48602
|
+
*/
|
|
48603
|
+
page?: number;
|
|
48604
|
+
/**
|
|
48605
|
+
* Number of results to return per page.
|
|
48606
|
+
*/
|
|
48607
|
+
page_size?: number;
|
|
48608
|
+
/**
|
|
48609
|
+
* Project UUID
|
|
48610
|
+
*/
|
|
48611
|
+
project_uuid?: string;
|
|
48612
|
+
};
|
|
48613
|
+
url: '/api/marketplace-project-order-auto-approvals/';
|
|
48614
|
+
};
|
|
48615
|
+
export type MarketplaceProjectOrderAutoApprovalsCountResponses = {
|
|
48616
|
+
/**
|
|
48617
|
+
* No response body
|
|
48618
|
+
*/
|
|
48619
|
+
200: unknown;
|
|
48620
|
+
};
|
|
48621
|
+
export type MarketplaceProjectOrderAutoApprovalsCreateData = {
|
|
48622
|
+
body: ProjectOrderAutoApprovalRequest;
|
|
48623
|
+
path?: never;
|
|
48624
|
+
query?: never;
|
|
48625
|
+
url: '/api/marketplace-project-order-auto-approvals/';
|
|
48626
|
+
};
|
|
48627
|
+
export type MarketplaceProjectOrderAutoApprovalsCreateResponses = {
|
|
48628
|
+
201: ProjectOrderAutoApproval;
|
|
48629
|
+
};
|
|
48630
|
+
export type MarketplaceProjectOrderAutoApprovalsCreateResponse = MarketplaceProjectOrderAutoApprovalsCreateResponses[keyof MarketplaceProjectOrderAutoApprovalsCreateResponses];
|
|
48631
|
+
export type MarketplaceProjectOrderAutoApprovalsDestroyData = {
|
|
48632
|
+
body?: never;
|
|
48633
|
+
path: {
|
|
48634
|
+
uuid: string;
|
|
48635
|
+
};
|
|
48636
|
+
query?: never;
|
|
48637
|
+
url: '/api/marketplace-project-order-auto-approvals/{uuid}/';
|
|
48638
|
+
};
|
|
48639
|
+
export type MarketplaceProjectOrderAutoApprovalsDestroyResponses = {
|
|
48640
|
+
/**
|
|
48641
|
+
* No response body
|
|
48642
|
+
*/
|
|
48643
|
+
204: void;
|
|
48644
|
+
};
|
|
48645
|
+
export type MarketplaceProjectOrderAutoApprovalsDestroyResponse = MarketplaceProjectOrderAutoApprovalsDestroyResponses[keyof MarketplaceProjectOrderAutoApprovalsDestroyResponses];
|
|
48646
|
+
export type MarketplaceProjectOrderAutoApprovalsRetrieveData = {
|
|
48647
|
+
body?: never;
|
|
48648
|
+
path: {
|
|
48649
|
+
uuid: string;
|
|
48650
|
+
};
|
|
48651
|
+
query?: never;
|
|
48652
|
+
url: '/api/marketplace-project-order-auto-approvals/{uuid}/';
|
|
48653
|
+
};
|
|
48654
|
+
export type MarketplaceProjectOrderAutoApprovalsRetrieveResponses = {
|
|
48655
|
+
200: ProjectOrderAutoApproval;
|
|
48656
|
+
};
|
|
48657
|
+
export type MarketplaceProjectOrderAutoApprovalsRetrieveResponse = MarketplaceProjectOrderAutoApprovalsRetrieveResponses[keyof MarketplaceProjectOrderAutoApprovalsRetrieveResponses];
|
|
48658
|
+
export type MarketplaceProjectOrderAutoApprovalsPartialUpdateData = {
|
|
48659
|
+
body?: PatchedProjectOrderAutoApprovalRequest;
|
|
48660
|
+
path: {
|
|
48661
|
+
uuid: string;
|
|
48662
|
+
};
|
|
48663
|
+
query?: never;
|
|
48664
|
+
url: '/api/marketplace-project-order-auto-approvals/{uuid}/';
|
|
48665
|
+
};
|
|
48666
|
+
export type MarketplaceProjectOrderAutoApprovalsPartialUpdateResponses = {
|
|
48667
|
+
200: ProjectOrderAutoApproval;
|
|
48668
|
+
};
|
|
48669
|
+
export type MarketplaceProjectOrderAutoApprovalsPartialUpdateResponse = MarketplaceProjectOrderAutoApprovalsPartialUpdateResponses[keyof MarketplaceProjectOrderAutoApprovalsPartialUpdateResponses];
|
|
48670
|
+
export type MarketplaceProjectOrderAutoApprovalsUpdateData = {
|
|
48671
|
+
body: ProjectOrderAutoApprovalRequest;
|
|
48672
|
+
path: {
|
|
48673
|
+
uuid: string;
|
|
48674
|
+
};
|
|
48675
|
+
query?: never;
|
|
48676
|
+
url: '/api/marketplace-project-order-auto-approvals/{uuid}/';
|
|
48677
|
+
};
|
|
48678
|
+
export type MarketplaceProjectOrderAutoApprovalsUpdateResponses = {
|
|
48679
|
+
200: ProjectOrderAutoApproval;
|
|
48680
|
+
};
|
|
48681
|
+
export type MarketplaceProjectOrderAutoApprovalsUpdateResponse = MarketplaceProjectOrderAutoApprovalsUpdateResponses[keyof MarketplaceProjectOrderAutoApprovalsUpdateResponses];
|
|
47896
48682
|
export type MarketplaceProjectServiceAccountsListData = {
|
|
47897
48683
|
body?: never;
|
|
47898
48684
|
path?: never;
|
|
@@ -48256,6 +49042,10 @@ export type MarketplaceProviderOfferingsListData = {
|
|
|
48256
49042
|
*
|
|
48257
49043
|
*/
|
|
48258
49044
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
49045
|
+
/**
|
|
49046
|
+
* Offering group UUID
|
|
49047
|
+
*/
|
|
49048
|
+
offering_group_uuid?: string;
|
|
48259
49049
|
/**
|
|
48260
49050
|
* Organization group UUID
|
|
48261
49051
|
*/
|
|
@@ -48436,6 +49226,10 @@ export type MarketplaceProviderOfferingsCountData = {
|
|
|
48436
49226
|
*
|
|
48437
49227
|
*/
|
|
48438
49228
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
49229
|
+
/**
|
|
49230
|
+
* Offering group UUID
|
|
49231
|
+
*/
|
|
49232
|
+
offering_group_uuid?: string;
|
|
48439
49233
|
/**
|
|
48440
49234
|
* Organization group UUID
|
|
48441
49235
|
*/
|
|
@@ -48753,6 +49547,10 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
|
|
|
48753
49547
|
*
|
|
48754
49548
|
*/
|
|
48755
49549
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
49550
|
+
/**
|
|
49551
|
+
* Offering group UUID
|
|
49552
|
+
*/
|
|
49553
|
+
offering_group_uuid?: string;
|
|
48756
49554
|
/**
|
|
48757
49555
|
* Organization group UUID
|
|
48758
49556
|
*/
|
|
@@ -48944,6 +49742,10 @@ export type MarketplaceProviderOfferingsCostsListData = {
|
|
|
48944
49742
|
*
|
|
48945
49743
|
*/
|
|
48946
49744
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
49745
|
+
/**
|
|
49746
|
+
* Offering group UUID
|
|
49747
|
+
*/
|
|
49748
|
+
offering_group_uuid?: string;
|
|
48947
49749
|
/**
|
|
48948
49750
|
* Organization group UUID
|
|
48949
49751
|
*/
|
|
@@ -49145,6 +49947,10 @@ export type MarketplaceProviderOfferingsCustomersListData = {
|
|
|
49145
49947
|
*
|
|
49146
49948
|
*/
|
|
49147
49949
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
49950
|
+
/**
|
|
49951
|
+
* Offering group UUID
|
|
49952
|
+
*/
|
|
49953
|
+
offering_group_uuid?: string;
|
|
49148
49954
|
/**
|
|
49149
49955
|
* Organization group UUID
|
|
49150
49956
|
*/
|
|
@@ -49471,6 +50277,10 @@ export type MarketplaceProviderOfferingsHistoryListData = {
|
|
|
49471
50277
|
*
|
|
49472
50278
|
*/
|
|
49473
50279
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
50280
|
+
/**
|
|
50281
|
+
* Offering group UUID
|
|
50282
|
+
*/
|
|
50283
|
+
offering_group_uuid?: string;
|
|
49474
50284
|
/**
|
|
49475
50285
|
* Organization group UUID
|
|
49476
50286
|
*/
|
|
@@ -49712,6 +50522,10 @@ export type MarketplaceProviderOfferingsListCourseAccountsListData = {
|
|
|
49712
50522
|
*
|
|
49713
50523
|
*/
|
|
49714
50524
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
50525
|
+
/**
|
|
50526
|
+
* Offering group UUID
|
|
50527
|
+
*/
|
|
50528
|
+
offering_group_uuid?: string;
|
|
49715
50529
|
/**
|
|
49716
50530
|
* Organization group UUID
|
|
49717
50531
|
*/
|
|
@@ -49916,6 +50730,10 @@ export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
|
|
|
49916
50730
|
*
|
|
49917
50731
|
*/
|
|
49918
50732
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
50733
|
+
/**
|
|
50734
|
+
* Offering group UUID
|
|
50735
|
+
*/
|
|
50736
|
+
offering_group_uuid?: string;
|
|
49919
50737
|
/**
|
|
49920
50738
|
* Organization group UUID
|
|
49921
50739
|
*/
|
|
@@ -50120,6 +50938,10 @@ export type MarketplaceProviderOfferingsListProjectServiceAccountsListData = {
|
|
|
50120
50938
|
*
|
|
50121
50939
|
*/
|
|
50122
50940
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
50941
|
+
/**
|
|
50942
|
+
* Offering group UUID
|
|
50943
|
+
*/
|
|
50944
|
+
offering_group_uuid?: string;
|
|
50123
50945
|
/**
|
|
50124
50946
|
* Organization group UUID
|
|
50125
50947
|
*/
|
|
@@ -50427,6 +51249,20 @@ export type MarketplaceProviderOfferingsSetBackendMetadataResponses = {
|
|
|
50427
51249
|
*/
|
|
50428
51250
|
200: unknown;
|
|
50429
51251
|
};
|
|
51252
|
+
export type MarketplaceProviderOfferingsSetOfferingGroupData = {
|
|
51253
|
+
body: OfferingGroupAssignRequest;
|
|
51254
|
+
path: {
|
|
51255
|
+
uuid: string;
|
|
51256
|
+
};
|
|
51257
|
+
query?: never;
|
|
51258
|
+
url: '/api/marketplace-provider-offerings/{uuid}/set_offering_group/';
|
|
51259
|
+
};
|
|
51260
|
+
export type MarketplaceProviderOfferingsSetOfferingGroupResponses = {
|
|
51261
|
+
/**
|
|
51262
|
+
* No response body
|
|
51263
|
+
*/
|
|
51264
|
+
200: unknown;
|
|
51265
|
+
};
|
|
50430
51266
|
export type MarketplaceProviderOfferingsSetProfileData = {
|
|
50431
51267
|
body?: OfferingProfileBindRequest;
|
|
50432
51268
|
path: {
|
|
@@ -50778,6 +51614,20 @@ export type MarketplaceProviderOfferingsUpdateThumbnailResponses = {
|
|
|
50778
51614
|
*/
|
|
50779
51615
|
200: unknown;
|
|
50780
51616
|
};
|
|
51617
|
+
export type MarketplaceProviderOfferingsUpdateTypeData = {
|
|
51618
|
+
body: OfferingTypeUpdateRequest;
|
|
51619
|
+
path: {
|
|
51620
|
+
uuid: string;
|
|
51621
|
+
};
|
|
51622
|
+
query?: never;
|
|
51623
|
+
url: '/api/marketplace-provider-offerings/{uuid}/update_type/';
|
|
51624
|
+
};
|
|
51625
|
+
export type MarketplaceProviderOfferingsUpdateTypeResponses = {
|
|
51626
|
+
/**
|
|
51627
|
+
* No response body
|
|
51628
|
+
*/
|
|
51629
|
+
200: unknown;
|
|
51630
|
+
};
|
|
50781
51631
|
export type MarketplaceProviderOfferingsUpdateUserData = {
|
|
50782
51632
|
body: UserRoleUpdateRequest;
|
|
50783
51633
|
path: {
|
|
@@ -50903,6 +51753,10 @@ export type MarketplaceProviderOfferingsGroupsListData = {
|
|
|
50903
51753
|
*
|
|
50904
51754
|
*/
|
|
50905
51755
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
51756
|
+
/**
|
|
51757
|
+
* Offering group UUID
|
|
51758
|
+
*/
|
|
51759
|
+
offering_group_uuid?: string;
|
|
50906
51760
|
/**
|
|
50907
51761
|
* Organization group UUID
|
|
50908
51762
|
*/
|
|
@@ -51079,6 +51933,10 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
|
|
|
51079
51933
|
*
|
|
51080
51934
|
*/
|
|
51081
51935
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
51936
|
+
/**
|
|
51937
|
+
* Offering group UUID
|
|
51938
|
+
*/
|
|
51939
|
+
offering_group_uuid?: string;
|
|
51082
51940
|
/**
|
|
51083
51941
|
* Organization group UUID
|
|
51084
51942
|
*/
|
|
@@ -51870,6 +52728,18 @@ export type MarketplaceProviderResourcesAddUserResponses = {
|
|
|
51870
52728
|
201: UserRoleExpirationTime;
|
|
51871
52729
|
};
|
|
51872
52730
|
export type MarketplaceProviderResourcesAddUserResponse = MarketplaceProviderResourcesAddUserResponses[keyof MarketplaceProviderResourcesAddUserResponses];
|
|
52731
|
+
export type MarketplaceProviderResourcesAdjustDatesData = {
|
|
52732
|
+
body: AdjustResourceDatesRequest;
|
|
52733
|
+
path: {
|
|
52734
|
+
uuid: string;
|
|
52735
|
+
};
|
|
52736
|
+
query?: never;
|
|
52737
|
+
url: '/api/marketplace-provider-resources/{uuid}/adjust_dates/';
|
|
52738
|
+
};
|
|
52739
|
+
export type MarketplaceProviderResourcesAdjustDatesResponses = {
|
|
52740
|
+
200: ResourceResponseStatus;
|
|
52741
|
+
};
|
|
52742
|
+
export type MarketplaceProviderResourcesAdjustDatesResponse = MarketplaceProviderResourcesAdjustDatesResponses[keyof MarketplaceProviderResourcesAdjustDatesResponses];
|
|
51873
52743
|
export type MarketplaceProviderResourcesDeleteUserData = {
|
|
51874
52744
|
body: UserRoleDeleteRequest;
|
|
51875
52745
|
path: {
|
|
@@ -52689,6 +53559,10 @@ export type MarketplacePublicOfferingsListData = {
|
|
|
52689
53559
|
*
|
|
52690
53560
|
*/
|
|
52691
53561
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
53562
|
+
/**
|
|
53563
|
+
* Offering group UUID
|
|
53564
|
+
*/
|
|
53565
|
+
offering_group_uuid?: string;
|
|
52692
53566
|
/**
|
|
52693
53567
|
* Organization group UUID
|
|
52694
53568
|
*/
|
|
@@ -52865,6 +53739,10 @@ export type MarketplacePublicOfferingsCountData = {
|
|
|
52865
53739
|
*
|
|
52866
53740
|
*/
|
|
52867
53741
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
53742
|
+
/**
|
|
53743
|
+
* Offering group UUID
|
|
53744
|
+
*/
|
|
53745
|
+
offering_group_uuid?: string;
|
|
52868
53746
|
/**
|
|
52869
53747
|
* Organization group UUID
|
|
52870
53748
|
*/
|
|
@@ -53141,6 +54019,140 @@ export type MarketplaceRemoteSynchronisationsRunSynchronisationResponses = {
|
|
|
53141
54019
|
200: RemoteSynchronisation;
|
|
53142
54020
|
};
|
|
53143
54021
|
export type MarketplaceRemoteSynchronisationsRunSynchronisationResponse = MarketplaceRemoteSynchronisationsRunSynchronisationResponses[keyof MarketplaceRemoteSynchronisationsRunSynchronisationResponses];
|
|
54022
|
+
export type MarketplaceResourceLimitChangeRequestsListData = {
|
|
54023
|
+
body?: never;
|
|
54024
|
+
path?: never;
|
|
54025
|
+
query?: {
|
|
54026
|
+
/**
|
|
54027
|
+
* Created by UUID
|
|
54028
|
+
*/
|
|
54029
|
+
created_by_uuid?: string;
|
|
54030
|
+
/**
|
|
54031
|
+
* Customer UUID
|
|
54032
|
+
*/
|
|
54033
|
+
customer_uuid?: string;
|
|
54034
|
+
/**
|
|
54035
|
+
* A page number within the paginated result set.
|
|
54036
|
+
*/
|
|
54037
|
+
page?: number;
|
|
54038
|
+
/**
|
|
54039
|
+
* Number of results to return per page.
|
|
54040
|
+
*/
|
|
54041
|
+
page_size?: number;
|
|
54042
|
+
/**
|
|
54043
|
+
* Project UUID
|
|
54044
|
+
*/
|
|
54045
|
+
project_uuid?: string;
|
|
54046
|
+
/**
|
|
54047
|
+
* Resource UUID
|
|
54048
|
+
*/
|
|
54049
|
+
resource_uuid?: string;
|
|
54050
|
+
state?: Array<RemoteProjectUpdateRequestStateEnum>;
|
|
54051
|
+
};
|
|
54052
|
+
url: '/api/marketplace-resource-limit-change-requests/';
|
|
54053
|
+
};
|
|
54054
|
+
export type MarketplaceResourceLimitChangeRequestsListResponses = {
|
|
54055
|
+
200: Array<ResourceLimitChangeRequest>;
|
|
54056
|
+
};
|
|
54057
|
+
export type MarketplaceResourceLimitChangeRequestsListResponse = MarketplaceResourceLimitChangeRequestsListResponses[keyof MarketplaceResourceLimitChangeRequestsListResponses];
|
|
54058
|
+
export type MarketplaceResourceLimitChangeRequestsCountData = {
|
|
54059
|
+
body?: never;
|
|
54060
|
+
path?: never;
|
|
54061
|
+
query?: {
|
|
54062
|
+
/**
|
|
54063
|
+
* Created by UUID
|
|
54064
|
+
*/
|
|
54065
|
+
created_by_uuid?: string;
|
|
54066
|
+
/**
|
|
54067
|
+
* Customer UUID
|
|
54068
|
+
*/
|
|
54069
|
+
customer_uuid?: string;
|
|
54070
|
+
/**
|
|
54071
|
+
* A page number within the paginated result set.
|
|
54072
|
+
*/
|
|
54073
|
+
page?: number;
|
|
54074
|
+
/**
|
|
54075
|
+
* Number of results to return per page.
|
|
54076
|
+
*/
|
|
54077
|
+
page_size?: number;
|
|
54078
|
+
/**
|
|
54079
|
+
* Project UUID
|
|
54080
|
+
*/
|
|
54081
|
+
project_uuid?: string;
|
|
54082
|
+
/**
|
|
54083
|
+
* Resource UUID
|
|
54084
|
+
*/
|
|
54085
|
+
resource_uuid?: string;
|
|
54086
|
+
state?: Array<RemoteProjectUpdateRequestStateEnum>;
|
|
54087
|
+
};
|
|
54088
|
+
url: '/api/marketplace-resource-limit-change-requests/';
|
|
54089
|
+
};
|
|
54090
|
+
export type MarketplaceResourceLimitChangeRequestsCountResponses = {
|
|
54091
|
+
/**
|
|
54092
|
+
* No response body
|
|
54093
|
+
*/
|
|
54094
|
+
200: unknown;
|
|
54095
|
+
};
|
|
54096
|
+
export type MarketplaceResourceLimitChangeRequestsCreateData = {
|
|
54097
|
+
body: ResourceLimitChangeRequestCreateRequest;
|
|
54098
|
+
path?: never;
|
|
54099
|
+
query?: never;
|
|
54100
|
+
url: '/api/marketplace-resource-limit-change-requests/';
|
|
54101
|
+
};
|
|
54102
|
+
export type MarketplaceResourceLimitChangeRequestsCreateResponses = {
|
|
54103
|
+
201: ResourceLimitChangeRequestCreate;
|
|
54104
|
+
};
|
|
54105
|
+
export type MarketplaceResourceLimitChangeRequestsCreateResponse = MarketplaceResourceLimitChangeRequestsCreateResponses[keyof MarketplaceResourceLimitChangeRequestsCreateResponses];
|
|
54106
|
+
export type MarketplaceResourceLimitChangeRequestsRetrieveData = {
|
|
54107
|
+
body?: never;
|
|
54108
|
+
path: {
|
|
54109
|
+
uuid: string;
|
|
54110
|
+
};
|
|
54111
|
+
query?: never;
|
|
54112
|
+
url: '/api/marketplace-resource-limit-change-requests/{uuid}/';
|
|
54113
|
+
};
|
|
54114
|
+
export type MarketplaceResourceLimitChangeRequestsRetrieveResponses = {
|
|
54115
|
+
200: ResourceLimitChangeRequest;
|
|
54116
|
+
};
|
|
54117
|
+
export type MarketplaceResourceLimitChangeRequestsRetrieveResponse = MarketplaceResourceLimitChangeRequestsRetrieveResponses[keyof MarketplaceResourceLimitChangeRequestsRetrieveResponses];
|
|
54118
|
+
export type MarketplaceResourceLimitChangeRequestsApproveData = {
|
|
54119
|
+
body?: ReviewCommentRequest;
|
|
54120
|
+
path: {
|
|
54121
|
+
uuid: string;
|
|
54122
|
+
};
|
|
54123
|
+
query?: never;
|
|
54124
|
+
url: '/api/marketplace-resource-limit-change-requests/{uuid}/approve/';
|
|
54125
|
+
};
|
|
54126
|
+
export type MarketplaceResourceLimitChangeRequestsApproveResponses = {
|
|
54127
|
+
200: OrderUuid;
|
|
54128
|
+
};
|
|
54129
|
+
export type MarketplaceResourceLimitChangeRequestsApproveResponse = MarketplaceResourceLimitChangeRequestsApproveResponses[keyof MarketplaceResourceLimitChangeRequestsApproveResponses];
|
|
54130
|
+
export type MarketplaceResourceLimitChangeRequestsCancelData = {
|
|
54131
|
+
body: ResourceLimitChangeRequestRequest;
|
|
54132
|
+
path: {
|
|
54133
|
+
uuid: string;
|
|
54134
|
+
};
|
|
54135
|
+
query?: never;
|
|
54136
|
+
url: '/api/marketplace-resource-limit-change-requests/{uuid}/cancel/';
|
|
54137
|
+
};
|
|
54138
|
+
export type MarketplaceResourceLimitChangeRequestsCancelResponses = {
|
|
54139
|
+
200: OrderInfoResponse;
|
|
54140
|
+
};
|
|
54141
|
+
export type MarketplaceResourceLimitChangeRequestsCancelResponse = MarketplaceResourceLimitChangeRequestsCancelResponses[keyof MarketplaceResourceLimitChangeRequestsCancelResponses];
|
|
54142
|
+
export type MarketplaceResourceLimitChangeRequestsRejectData = {
|
|
54143
|
+
body?: ReviewCommentRequest;
|
|
54144
|
+
path: {
|
|
54145
|
+
uuid: string;
|
|
54146
|
+
};
|
|
54147
|
+
query?: never;
|
|
54148
|
+
url: '/api/marketplace-resource-limit-change-requests/{uuid}/reject/';
|
|
54149
|
+
};
|
|
54150
|
+
export type MarketplaceResourceLimitChangeRequestsRejectResponses = {
|
|
54151
|
+
/**
|
|
54152
|
+
* No response body
|
|
54153
|
+
*/
|
|
54154
|
+
200: unknown;
|
|
54155
|
+
};
|
|
53144
54156
|
export type MarketplaceResourceOfferingsListData = {
|
|
53145
54157
|
body?: never;
|
|
53146
54158
|
path: {
|
|
@@ -53243,7 +54255,12 @@ export type MarketplaceResourceProjectsDestroyData = {
|
|
|
53243
54255
|
path: {
|
|
53244
54256
|
uuid: string;
|
|
53245
54257
|
};
|
|
53246
|
-
query?:
|
|
54258
|
+
query?: {
|
|
54259
|
+
/**
|
|
54260
|
+
* Staff-only: when true, hard-delete the resource project instead of soft-deleting it.
|
|
54261
|
+
*/
|
|
54262
|
+
force?: boolean;
|
|
54263
|
+
};
|
|
53247
54264
|
url: '/api/marketplace-resource-projects/{uuid}/';
|
|
53248
54265
|
};
|
|
53249
54266
|
export type MarketplaceResourceProjectsDestroyResponses = {
|
|
@@ -53382,6 +54399,18 @@ export type MarketplaceResourceProjectsListUsersListResponses = {
|
|
|
53382
54399
|
200: Array<UserRoleDetails>;
|
|
53383
54400
|
};
|
|
53384
54401
|
export type MarketplaceResourceProjectsListUsersListResponse = MarketplaceResourceProjectsListUsersListResponses[keyof MarketplaceResourceProjectsListUsersListResponses];
|
|
54402
|
+
export type MarketplaceResourceProjectsRecoverData = {
|
|
54403
|
+
body?: ResourceProjectRecoveryRequest;
|
|
54404
|
+
path: {
|
|
54405
|
+
uuid: string;
|
|
54406
|
+
};
|
|
54407
|
+
query?: never;
|
|
54408
|
+
url: '/api/marketplace-resource-projects/{uuid}/recover/';
|
|
54409
|
+
};
|
|
54410
|
+
export type MarketplaceResourceProjectsRecoverResponses = {
|
|
54411
|
+
200: ResourceProject;
|
|
54412
|
+
};
|
|
54413
|
+
export type MarketplaceResourceProjectsRecoverResponse = MarketplaceResourceProjectsRecoverResponses[keyof MarketplaceResourceProjectsRecoverResponses];
|
|
53385
54414
|
export type MarketplaceResourceProjectsUpdateUserData = {
|
|
53386
54415
|
body: UserRoleUpdateRequest;
|
|
53387
54416
|
path: {
|
|
@@ -53843,6 +54872,18 @@ export type MarketplaceResourcesAddUserResponses = {
|
|
|
53843
54872
|
201: UserRoleExpirationTime;
|
|
53844
54873
|
};
|
|
53845
54874
|
export type MarketplaceResourcesAddUserResponse = MarketplaceResourcesAddUserResponses[keyof MarketplaceResourcesAddUserResponses];
|
|
54875
|
+
export type MarketplaceResourcesAdjustDatesData = {
|
|
54876
|
+
body: AdjustResourceDatesRequest;
|
|
54877
|
+
path: {
|
|
54878
|
+
uuid: string;
|
|
54879
|
+
};
|
|
54880
|
+
query?: never;
|
|
54881
|
+
url: '/api/marketplace-resources/{uuid}/adjust_dates/';
|
|
54882
|
+
};
|
|
54883
|
+
export type MarketplaceResourcesAdjustDatesResponses = {
|
|
54884
|
+
200: ResourceResponseStatus;
|
|
54885
|
+
};
|
|
54886
|
+
export type MarketplaceResourcesAdjustDatesResponse = MarketplaceResourcesAdjustDatesResponses[keyof MarketplaceResourcesAdjustDatesResponses];
|
|
53846
54887
|
export type MarketplaceResourcesDeleteUserData = {
|
|
53847
54888
|
body: UserRoleDeleteRequest;
|
|
53848
54889
|
path: {
|
|
@@ -55896,6 +56937,10 @@ export type MarketplaceServiceProvidersOfferingsListData = {
|
|
|
55896
56937
|
*
|
|
55897
56938
|
*/
|
|
55898
56939
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
56940
|
+
/**
|
|
56941
|
+
* Offering group UUID
|
|
56942
|
+
*/
|
|
56943
|
+
offering_group_uuid?: string;
|
|
55899
56944
|
/**
|
|
55900
56945
|
* Organization group UUID
|
|
55901
56946
|
*/
|
|
@@ -55989,6 +57034,188 @@ export type MarketplaceServiceProvidersOfferingsListResponses = {
|
|
|
55989
57034
|
200: Array<ProviderOffering>;
|
|
55990
57035
|
};
|
|
55991
57036
|
export type MarketplaceServiceProvidersOfferingsListResponse = MarketplaceServiceProvidersOfferingsListResponses[keyof MarketplaceServiceProvidersOfferingsListResponses];
|
|
57037
|
+
export type MarketplaceServiceProvidersOfferingsTypesListData = {
|
|
57038
|
+
body?: never;
|
|
57039
|
+
path: {
|
|
57040
|
+
service_provider_uuid: string;
|
|
57041
|
+
};
|
|
57042
|
+
query?: {
|
|
57043
|
+
/**
|
|
57044
|
+
* Accessible via calls
|
|
57045
|
+
*/
|
|
57046
|
+
accessible_via_calls?: boolean;
|
|
57047
|
+
/**
|
|
57048
|
+
* Allowed customer UUID
|
|
57049
|
+
*/
|
|
57050
|
+
allowed_customer_uuid?: string;
|
|
57051
|
+
/**
|
|
57052
|
+
* Offering attributes (JSON)
|
|
57053
|
+
*/
|
|
57054
|
+
attributes?: string;
|
|
57055
|
+
/**
|
|
57056
|
+
* Billable
|
|
57057
|
+
*/
|
|
57058
|
+
billable?: boolean;
|
|
57059
|
+
can_create_offering_user?: boolean;
|
|
57060
|
+
/**
|
|
57061
|
+
* Category group UUID
|
|
57062
|
+
*/
|
|
57063
|
+
category_group_uuid?: string;
|
|
57064
|
+
/**
|
|
57065
|
+
* Category UUID
|
|
57066
|
+
*/
|
|
57067
|
+
category_uuid?: string;
|
|
57068
|
+
/**
|
|
57069
|
+
* Created after
|
|
57070
|
+
*/
|
|
57071
|
+
created?: string;
|
|
57072
|
+
/**
|
|
57073
|
+
* Created before
|
|
57074
|
+
*/
|
|
57075
|
+
created_before?: string;
|
|
57076
|
+
/**
|
|
57077
|
+
* Customer URL
|
|
57078
|
+
*/
|
|
57079
|
+
customer?: string;
|
|
57080
|
+
/**
|
|
57081
|
+
* Customer UUID
|
|
57082
|
+
*/
|
|
57083
|
+
customer_uuid?: string;
|
|
57084
|
+
/**
|
|
57085
|
+
* Description contains
|
|
57086
|
+
*/
|
|
57087
|
+
description?: string;
|
|
57088
|
+
/**
|
|
57089
|
+
* Has Active Terms of Service
|
|
57090
|
+
*/
|
|
57091
|
+
has_active_terms_of_service?: boolean;
|
|
57092
|
+
/**
|
|
57093
|
+
* Has Terms of Service
|
|
57094
|
+
*/
|
|
57095
|
+
has_terms_of_service?: boolean;
|
|
57096
|
+
/**
|
|
57097
|
+
* Keyword
|
|
57098
|
+
*/
|
|
57099
|
+
keyword?: string;
|
|
57100
|
+
/**
|
|
57101
|
+
* Modified after
|
|
57102
|
+
*/
|
|
57103
|
+
modified?: string;
|
|
57104
|
+
/**
|
|
57105
|
+
* Modified before
|
|
57106
|
+
*/
|
|
57107
|
+
modified_before?: string;
|
|
57108
|
+
/**
|
|
57109
|
+
* Name
|
|
57110
|
+
*/
|
|
57111
|
+
name?: string;
|
|
57112
|
+
/**
|
|
57113
|
+
* Name (exact)
|
|
57114
|
+
*/
|
|
57115
|
+
name_exact?: string;
|
|
57116
|
+
/**
|
|
57117
|
+
* Ordering
|
|
57118
|
+
*
|
|
57119
|
+
*
|
|
57120
|
+
*/
|
|
57121
|
+
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
57122
|
+
/**
|
|
57123
|
+
* Offering group UUID
|
|
57124
|
+
*/
|
|
57125
|
+
offering_group_uuid?: string;
|
|
57126
|
+
/**
|
|
57127
|
+
* Organization group UUID
|
|
57128
|
+
*/
|
|
57129
|
+
organization_group_uuid?: string;
|
|
57130
|
+
/**
|
|
57131
|
+
* A page number within the paginated result set.
|
|
57132
|
+
*/
|
|
57133
|
+
page?: number;
|
|
57134
|
+
/**
|
|
57135
|
+
* Number of results to return per page.
|
|
57136
|
+
*/
|
|
57137
|
+
page_size?: number;
|
|
57138
|
+
/**
|
|
57139
|
+
* Parent offering UUID
|
|
57140
|
+
*/
|
|
57141
|
+
parent_uuid?: string;
|
|
57142
|
+
/**
|
|
57143
|
+
* Project UUID
|
|
57144
|
+
*/
|
|
57145
|
+
project_uuid?: string;
|
|
57146
|
+
/**
|
|
57147
|
+
* Search by offering name, slug or description
|
|
57148
|
+
*/
|
|
57149
|
+
query?: string;
|
|
57150
|
+
/**
|
|
57151
|
+
* Resource customer UUID
|
|
57152
|
+
*/
|
|
57153
|
+
resource_customer_uuid?: string;
|
|
57154
|
+
/**
|
|
57155
|
+
* Resource project UUID
|
|
57156
|
+
*/
|
|
57157
|
+
resource_project_uuid?: string;
|
|
57158
|
+
/**
|
|
57159
|
+
* Scope UUID
|
|
57160
|
+
*/
|
|
57161
|
+
scope_uuid?: string;
|
|
57162
|
+
/**
|
|
57163
|
+
* Service manager UUID
|
|
57164
|
+
*/
|
|
57165
|
+
service_manager_uuid?: string;
|
|
57166
|
+
/**
|
|
57167
|
+
* Shared
|
|
57168
|
+
*/
|
|
57169
|
+
shared?: boolean;
|
|
57170
|
+
/**
|
|
57171
|
+
* Slug
|
|
57172
|
+
*/
|
|
57173
|
+
slug?: string;
|
|
57174
|
+
/**
|
|
57175
|
+
* Offering state
|
|
57176
|
+
*
|
|
57177
|
+
*
|
|
57178
|
+
*/
|
|
57179
|
+
state?: Array<OfferingState>;
|
|
57180
|
+
/**
|
|
57181
|
+
* Tag UUID (OR logic)
|
|
57182
|
+
*/
|
|
57183
|
+
tag?: Array<string>;
|
|
57184
|
+
/**
|
|
57185
|
+
* Tag name (OR logic)
|
|
57186
|
+
*/
|
|
57187
|
+
tag_name?: Array<string>;
|
|
57188
|
+
/**
|
|
57189
|
+
* Tag names with AND logic (comma-separated)
|
|
57190
|
+
*/
|
|
57191
|
+
tag_names_and?: string;
|
|
57192
|
+
/**
|
|
57193
|
+
* Tag UUIDs with AND logic (comma-separated)
|
|
57194
|
+
*/
|
|
57195
|
+
tags_and?: string;
|
|
57196
|
+
/**
|
|
57197
|
+
* Offering type
|
|
57198
|
+
*/
|
|
57199
|
+
type?: Array<string>;
|
|
57200
|
+
/**
|
|
57201
|
+
* User Has Consent
|
|
57202
|
+
*/
|
|
57203
|
+
user_has_consent?: boolean;
|
|
57204
|
+
/**
|
|
57205
|
+
* User Has Offering User
|
|
57206
|
+
*/
|
|
57207
|
+
user_has_offering_user?: boolean;
|
|
57208
|
+
/**
|
|
57209
|
+
* Comma-separated offering UUIDs
|
|
57210
|
+
*/
|
|
57211
|
+
uuid_list?: string;
|
|
57212
|
+
};
|
|
57213
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/offerings/types/';
|
|
57214
|
+
};
|
|
57215
|
+
export type MarketplaceServiceProvidersOfferingsTypesListResponses = {
|
|
57216
|
+
200: Array<string>;
|
|
57217
|
+
};
|
|
57218
|
+
export type MarketplaceServiceProvidersOfferingsTypesListResponse = MarketplaceServiceProvidersOfferingsTypesListResponses[keyof MarketplaceServiceProvidersOfferingsTypesListResponses];
|
|
55992
57219
|
export type MarketplaceServiceProvidersProjectPermissionsListData = {
|
|
55993
57220
|
body?: never;
|
|
55994
57221
|
path: {
|
|
@@ -56866,6 +58093,80 @@ export type MarketplaceSiteAgentIdentitiesCleanupOrphanedResponses = {
|
|
|
56866
58093
|
200: CleanupResponse;
|
|
56867
58094
|
};
|
|
56868
58095
|
export type MarketplaceSiteAgentIdentitiesCleanupOrphanedResponse = MarketplaceSiteAgentIdentitiesCleanupOrphanedResponses[keyof MarketplaceSiteAgentIdentitiesCleanupOrphanedResponses];
|
|
58096
|
+
export type MarketplaceSiteAgentLogsListData = {
|
|
58097
|
+
body?: never;
|
|
58098
|
+
path?: never;
|
|
58099
|
+
query?: {
|
|
58100
|
+
agent_identity_uuid?: string;
|
|
58101
|
+
level?: string;
|
|
58102
|
+
offering_uuid?: string;
|
|
58103
|
+
/**
|
|
58104
|
+
* A page number within the paginated result set.
|
|
58105
|
+
*/
|
|
58106
|
+
page?: number;
|
|
58107
|
+
/**
|
|
58108
|
+
* Number of results to return per page.
|
|
58109
|
+
*/
|
|
58110
|
+
page_size?: number;
|
|
58111
|
+
timestamp_from?: number;
|
|
58112
|
+
timestamp_to?: number;
|
|
58113
|
+
};
|
|
58114
|
+
url: '/api/marketplace-site-agent-logs/';
|
|
58115
|
+
};
|
|
58116
|
+
export type MarketplaceSiteAgentLogsListResponses = {
|
|
58117
|
+
200: Array<SiteAgentLog>;
|
|
58118
|
+
};
|
|
58119
|
+
export type MarketplaceSiteAgentLogsListResponse = MarketplaceSiteAgentLogsListResponses[keyof MarketplaceSiteAgentLogsListResponses];
|
|
58120
|
+
export type MarketplaceSiteAgentLogsCountData = {
|
|
58121
|
+
body?: never;
|
|
58122
|
+
path?: never;
|
|
58123
|
+
query?: {
|
|
58124
|
+
agent_identity_uuid?: string;
|
|
58125
|
+
level?: string;
|
|
58126
|
+
offering_uuid?: string;
|
|
58127
|
+
/**
|
|
58128
|
+
* A page number within the paginated result set.
|
|
58129
|
+
*/
|
|
58130
|
+
page?: number;
|
|
58131
|
+
/**
|
|
58132
|
+
* Number of results to return per page.
|
|
58133
|
+
*/
|
|
58134
|
+
page_size?: number;
|
|
58135
|
+
timestamp_from?: number;
|
|
58136
|
+
timestamp_to?: number;
|
|
58137
|
+
};
|
|
58138
|
+
url: '/api/marketplace-site-agent-logs/';
|
|
58139
|
+
};
|
|
58140
|
+
export type MarketplaceSiteAgentLogsCountResponses = {
|
|
58141
|
+
/**
|
|
58142
|
+
* No response body
|
|
58143
|
+
*/
|
|
58144
|
+
200: unknown;
|
|
58145
|
+
};
|
|
58146
|
+
export type MarketplaceSiteAgentLogsCreateData = {
|
|
58147
|
+
body: Array<SiteAgentLogCreateRequest>;
|
|
58148
|
+
path?: never;
|
|
58149
|
+
query?: {
|
|
58150
|
+
agent_identity_uuid?: string;
|
|
58151
|
+
level?: string;
|
|
58152
|
+
offering_uuid?: string;
|
|
58153
|
+
/**
|
|
58154
|
+
* A page number within the paginated result set.
|
|
58155
|
+
*/
|
|
58156
|
+
page?: number;
|
|
58157
|
+
/**
|
|
58158
|
+
* Number of results to return per page.
|
|
58159
|
+
*/
|
|
58160
|
+
page_size?: number;
|
|
58161
|
+
timestamp_from?: number;
|
|
58162
|
+
timestamp_to?: number;
|
|
58163
|
+
};
|
|
58164
|
+
url: '/api/marketplace-site-agent-logs/';
|
|
58165
|
+
};
|
|
58166
|
+
export type MarketplaceSiteAgentLogsCreateResponses = {
|
|
58167
|
+
201: Array<SiteAgentLog>;
|
|
58168
|
+
};
|
|
58169
|
+
export type MarketplaceSiteAgentLogsCreateResponse = MarketplaceSiteAgentLogsCreateResponses[keyof MarketplaceSiteAgentLogsCreateResponses];
|
|
56869
58170
|
export type MarketplaceSiteAgentProcessorsListData = {
|
|
56870
58171
|
body?: never;
|
|
56871
58172
|
path?: never;
|
|
@@ -60064,6 +61365,86 @@ export type MarketplaceStatsUserAffiliationCountCountResponses = {
|
|
|
60064
61365
|
*/
|
|
60065
61366
|
200: unknown;
|
|
60066
61367
|
};
|
|
61368
|
+
export type MarketplaceStatsUserAffiliationDetailsListData = {
|
|
61369
|
+
body?: never;
|
|
61370
|
+
path?: never;
|
|
61371
|
+
query?: {
|
|
61372
|
+
/**
|
|
61373
|
+
* One of: home-organization, personal-identifier, organization-type, user-status, eduperson, other.
|
|
61374
|
+
*/
|
|
61375
|
+
category?: string;
|
|
61376
|
+
/**
|
|
61377
|
+
* ISO country code (case-insensitive).
|
|
61378
|
+
*/
|
|
61379
|
+
country?: string;
|
|
61380
|
+
/**
|
|
61381
|
+
* Ordering field; prefix with - for descending. Allowed: count, organization, country, category, affiliation. Defaults to -count.
|
|
61382
|
+
*/
|
|
61383
|
+
o?: string;
|
|
61384
|
+
/**
|
|
61385
|
+
* Exact organization domain match.
|
|
61386
|
+
*/
|
|
61387
|
+
organization?: string;
|
|
61388
|
+
/**
|
|
61389
|
+
* A page number within the paginated result set.
|
|
61390
|
+
*/
|
|
61391
|
+
page?: number;
|
|
61392
|
+
/**
|
|
61393
|
+
* Number of results to return per page.
|
|
61394
|
+
*/
|
|
61395
|
+
page_size?: number;
|
|
61396
|
+
/**
|
|
61397
|
+
* Substring match against raw URN or organization.
|
|
61398
|
+
*/
|
|
61399
|
+
search?: string;
|
|
61400
|
+
};
|
|
61401
|
+
url: '/api/marketplace-stats/user_affiliation_details/';
|
|
61402
|
+
};
|
|
61403
|
+
export type MarketplaceStatsUserAffiliationDetailsListResponses = {
|
|
61404
|
+
200: Array<UserAffiliationDetail>;
|
|
61405
|
+
};
|
|
61406
|
+
export type MarketplaceStatsUserAffiliationDetailsListResponse = MarketplaceStatsUserAffiliationDetailsListResponses[keyof MarketplaceStatsUserAffiliationDetailsListResponses];
|
|
61407
|
+
export type MarketplaceStatsUserAffiliationDetailsCountData = {
|
|
61408
|
+
body?: never;
|
|
61409
|
+
path?: never;
|
|
61410
|
+
query?: {
|
|
61411
|
+
/**
|
|
61412
|
+
* One of: home-organization, personal-identifier, organization-type, user-status, eduperson, other.
|
|
61413
|
+
*/
|
|
61414
|
+
category?: string;
|
|
61415
|
+
/**
|
|
61416
|
+
* ISO country code (case-insensitive).
|
|
61417
|
+
*/
|
|
61418
|
+
country?: string;
|
|
61419
|
+
/**
|
|
61420
|
+
* Ordering field; prefix with - for descending. Allowed: count, organization, country, category, affiliation. Defaults to -count.
|
|
61421
|
+
*/
|
|
61422
|
+
o?: string;
|
|
61423
|
+
/**
|
|
61424
|
+
* Exact organization domain match.
|
|
61425
|
+
*/
|
|
61426
|
+
organization?: string;
|
|
61427
|
+
/**
|
|
61428
|
+
* A page number within the paginated result set.
|
|
61429
|
+
*/
|
|
61430
|
+
page?: number;
|
|
61431
|
+
/**
|
|
61432
|
+
* Number of results to return per page.
|
|
61433
|
+
*/
|
|
61434
|
+
page_size?: number;
|
|
61435
|
+
/**
|
|
61436
|
+
* Substring match against raw URN or organization.
|
|
61437
|
+
*/
|
|
61438
|
+
search?: string;
|
|
61439
|
+
};
|
|
61440
|
+
url: '/api/marketplace-stats/user_affiliation_details/';
|
|
61441
|
+
};
|
|
61442
|
+
export type MarketplaceStatsUserAffiliationDetailsCountResponses = {
|
|
61443
|
+
/**
|
|
61444
|
+
* No response body
|
|
61445
|
+
*/
|
|
61446
|
+
200: unknown;
|
|
61447
|
+
};
|
|
60067
61448
|
export type MarketplaceStatsUserAuthMethodCountListData = {
|
|
60068
61449
|
body?: never;
|
|
60069
61450
|
path?: never;
|
|
@@ -71608,6 +72989,46 @@ export type PersonalAccessTokensRotateResponses = {
|
|
|
71608
72989
|
201: PersonalAccessTokenCreated;
|
|
71609
72990
|
};
|
|
71610
72991
|
export type PersonalAccessTokensRotateResponse = PersonalAccessTokensRotateResponses[keyof PersonalAccessTokensRotateResponses];
|
|
72992
|
+
export type PersonalAccessTokensAvailableBindingTargetsListData = {
|
|
72993
|
+
body?: never;
|
|
72994
|
+
path?: never;
|
|
72995
|
+
query?: {
|
|
72996
|
+
/**
|
|
72997
|
+
* A page number within the paginated result set.
|
|
72998
|
+
*/
|
|
72999
|
+
page?: number;
|
|
73000
|
+
/**
|
|
73001
|
+
* Number of results to return per page.
|
|
73002
|
+
*/
|
|
73003
|
+
page_size?: number;
|
|
73004
|
+
};
|
|
73005
|
+
url: '/api/personal-access-tokens/available_binding_targets/';
|
|
73006
|
+
};
|
|
73007
|
+
export type PersonalAccessTokensAvailableBindingTargetsListResponses = {
|
|
73008
|
+
200: Array<AvailableBindingTarget>;
|
|
73009
|
+
};
|
|
73010
|
+
export type PersonalAccessTokensAvailableBindingTargetsListResponse = PersonalAccessTokensAvailableBindingTargetsListResponses[keyof PersonalAccessTokensAvailableBindingTargetsListResponses];
|
|
73011
|
+
export type PersonalAccessTokensAvailableBindingTargetsCountData = {
|
|
73012
|
+
body?: never;
|
|
73013
|
+
path?: never;
|
|
73014
|
+
query?: {
|
|
73015
|
+
/**
|
|
73016
|
+
* A page number within the paginated result set.
|
|
73017
|
+
*/
|
|
73018
|
+
page?: number;
|
|
73019
|
+
/**
|
|
73020
|
+
* Number of results to return per page.
|
|
73021
|
+
*/
|
|
73022
|
+
page_size?: number;
|
|
73023
|
+
};
|
|
73024
|
+
url: '/api/personal-access-tokens/available_binding_targets/';
|
|
73025
|
+
};
|
|
73026
|
+
export type PersonalAccessTokensAvailableBindingTargetsCountResponses = {
|
|
73027
|
+
/**
|
|
73028
|
+
* No response body
|
|
73029
|
+
*/
|
|
73030
|
+
200: unknown;
|
|
73031
|
+
};
|
|
71611
73032
|
export type PersonalAccessTokensAvailableScopesListData = {
|
|
71612
73033
|
body?: never;
|
|
71613
73034
|
path?: never;
|
|
@@ -73999,6 +75420,18 @@ export type ProposalProtectedCallsDetectConflictsResponses = {
|
|
|
73999
75420
|
200: CoiDetectionJob;
|
|
74000
75421
|
};
|
|
74001
75422
|
export type ProposalProtectedCallsDetectConflictsResponse = ProposalProtectedCallsDetectConflictsResponses[keyof ProposalProtectedCallsDetectConflictsResponses];
|
|
75423
|
+
export type ProposalProtectedCallsDuplicateData = {
|
|
75424
|
+
body: DuplicateCallRequestRequest;
|
|
75425
|
+
path: {
|
|
75426
|
+
uuid: string;
|
|
75427
|
+
};
|
|
75428
|
+
query?: never;
|
|
75429
|
+
url: '/api/proposal-protected-calls/{uuid}/duplicate/';
|
|
75430
|
+
};
|
|
75431
|
+
export type ProposalProtectedCallsDuplicateResponses = {
|
|
75432
|
+
201: ProtectedCall;
|
|
75433
|
+
};
|
|
75434
|
+
export type ProposalProtectedCallsDuplicateResponse = ProposalProtectedCallsDuplicateResponses[keyof ProposalProtectedCallsDuplicateResponses];
|
|
74002
75435
|
export type ProposalProtectedCallsGenerateAssignmentsData = {
|
|
74003
75436
|
body?: GenerateAssignmentsRequest;
|
|
74004
75437
|
path: {
|
|
@@ -74489,6 +75922,45 @@ export type ProposalProtectedCallsRoundsSetResponses = {
|
|
|
74489
75922
|
200: ProtectedRound;
|
|
74490
75923
|
};
|
|
74491
75924
|
export type ProposalProtectedCallsRoundsSetResponse = ProposalProtectedCallsRoundsSetResponses[keyof ProposalProtectedCallsRoundsSetResponses];
|
|
75925
|
+
export type ProposalProtectedCallsRoundsBulkSetData = {
|
|
75926
|
+
body: BulkRoundCreateRequestRequest;
|
|
75927
|
+
path: {
|
|
75928
|
+
uuid: string;
|
|
75929
|
+
};
|
|
75930
|
+
query?: {
|
|
75931
|
+
customer?: string;
|
|
75932
|
+
customer_keyword?: string;
|
|
75933
|
+
customer_uuid?: string;
|
|
75934
|
+
has_active_round?: boolean;
|
|
75935
|
+
name?: string;
|
|
75936
|
+
/**
|
|
75937
|
+
* Ordering
|
|
75938
|
+
*
|
|
75939
|
+
*
|
|
75940
|
+
*/
|
|
75941
|
+
o?: Array<ProtectedCallOEnum>;
|
|
75942
|
+
offering_uuid?: string;
|
|
75943
|
+
offerings_provider_uuid?: string;
|
|
75944
|
+
/**
|
|
75945
|
+
* A page number within the paginated result set.
|
|
75946
|
+
*/
|
|
75947
|
+
page?: number;
|
|
75948
|
+
/**
|
|
75949
|
+
* Number of results to return per page.
|
|
75950
|
+
*/
|
|
75951
|
+
page_size?: number;
|
|
75952
|
+
/**
|
|
75953
|
+
* Slug
|
|
75954
|
+
*/
|
|
75955
|
+
slug?: string;
|
|
75956
|
+
state?: Array<CallStates>;
|
|
75957
|
+
};
|
|
75958
|
+
url: '/api/proposal-protected-calls/{uuid}/rounds-bulk-set/';
|
|
75959
|
+
};
|
|
75960
|
+
export type ProposalProtectedCallsRoundsBulkSetResponses = {
|
|
75961
|
+
201: Array<ProtectedRound>;
|
|
75962
|
+
};
|
|
75963
|
+
export type ProposalProtectedCallsRoundsBulkSetResponse = ProposalProtectedCallsRoundsBulkSetResponses[keyof ProposalProtectedCallsRoundsBulkSetResponses];
|
|
74492
75964
|
export type ProposalProtectedCallsRoundsDestroyData = {
|
|
74493
75965
|
body?: never;
|
|
74494
75966
|
path: {
|
|
@@ -84145,6 +85617,18 @@ export type UsersPullRemoteUserResponses = {
|
|
|
84145
85617
|
*/
|
|
84146
85618
|
200: unknown;
|
|
84147
85619
|
};
|
|
85620
|
+
export type UsersPullScimAttributesData = {
|
|
85621
|
+
body?: never;
|
|
85622
|
+
path: {
|
|
85623
|
+
uuid: string;
|
|
85624
|
+
};
|
|
85625
|
+
query?: never;
|
|
85626
|
+
url: '/api/users/{uuid}/pull_scim_attributes/';
|
|
85627
|
+
};
|
|
85628
|
+
export type UsersPullScimAttributesResponses = {
|
|
85629
|
+
200: ScimPullAttributesResponse;
|
|
85630
|
+
};
|
|
85631
|
+
export type UsersPullScimAttributesResponse = UsersPullScimAttributesResponses[keyof UsersPullScimAttributesResponses];
|
|
84148
85632
|
export type UsersRefreshTokenData = {
|
|
84149
85633
|
body?: never;
|
|
84150
85634
|
path: {
|