waldur-js-client 8.0.9-dev.2 → 8.0.9-dev.20
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 +110 -4
- package/dist/sdk.gen.js +781 -3
- package/dist/types.gen.d.ts +1345 -44
- 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' | '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' | '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;
|
|
@@ -22043,6 +22374,14 @@ export type ResourceProject = {
|
|
|
22043
22374
|
readonly resource_name: string;
|
|
22044
22375
|
readonly created: string;
|
|
22045
22376
|
readonly modified: string;
|
|
22377
|
+
readonly is_removed: boolean;
|
|
22378
|
+
readonly removed_date: string | null;
|
|
22379
|
+
readonly removed_by: number | null;
|
|
22380
|
+
/**
|
|
22381
|
+
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
22382
|
+
*/
|
|
22383
|
+
readonly removed_by_username: string;
|
|
22384
|
+
readonly termination_metadata: unknown;
|
|
22046
22385
|
};
|
|
22047
22386
|
export type ResourceProjectBackendId = {
|
|
22048
22387
|
backend_id: string;
|
|
@@ -22062,6 +22401,16 @@ export type ResourceProjectErrorMessageRequest = {
|
|
|
22062
22401
|
*/
|
|
22063
22402
|
error_message?: string;
|
|
22064
22403
|
};
|
|
22404
|
+
export type ResourceProjectRecoveryRequest = {
|
|
22405
|
+
/**
|
|
22406
|
+
* 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).
|
|
22407
|
+
*/
|
|
22408
|
+
restore_team_members?: boolean;
|
|
22409
|
+
/**
|
|
22410
|
+
* Send invitations to users who had access before soft-delete. Mutually exclusive with restore_team_members.
|
|
22411
|
+
*/
|
|
22412
|
+
send_invitations_to_previous_members?: boolean;
|
|
22413
|
+
};
|
|
22065
22414
|
export type ResourceProjectRequest = {
|
|
22066
22415
|
resource: string;
|
|
22067
22416
|
name: string;
|
|
@@ -22747,6 +23096,7 @@ export type ReviewerSuggestionRequest = {
|
|
|
22747
23096
|
rejection_reason?: string;
|
|
22748
23097
|
};
|
|
22749
23098
|
export type ReviewerSuggestionStatusEnum = 'pending' | 'confirmed' | 'rejected' | 'invited';
|
|
23099
|
+
export type RichTextToolbarLevelEnum = 'minimal' | 'standard' | 'extended';
|
|
22750
23100
|
export type RmqClientProperties = {
|
|
22751
23101
|
/**
|
|
22752
23102
|
* Client product name (e.g., 'pika', 'amqp-client')
|
|
@@ -23514,6 +23864,28 @@ export type RuleRequest = {
|
|
|
23514
23864
|
[key: string]: unknown;
|
|
23515
23865
|
};
|
|
23516
23866
|
};
|
|
23867
|
+
export type RuleTestMatchRequestRequest = {
|
|
23868
|
+
/**
|
|
23869
|
+
* UUID of the user to evaluate this rule against.
|
|
23870
|
+
*/
|
|
23871
|
+
user_uuid: string;
|
|
23872
|
+
};
|
|
23873
|
+
export type RuleTestMatchResponse = {
|
|
23874
|
+
would_provision: boolean;
|
|
23875
|
+
block_reason: string;
|
|
23876
|
+
user_username: string;
|
|
23877
|
+
user_email: string;
|
|
23878
|
+
user_organization: string;
|
|
23879
|
+
user_registration_method: string;
|
|
23880
|
+
user_identity_source: string;
|
|
23881
|
+
user_affiliations: Array<string>;
|
|
23882
|
+
user_is_protected: boolean;
|
|
23883
|
+
filter_results: Array<FilterCheckResult>;
|
|
23884
|
+
customer_lookup_performed: boolean;
|
|
23885
|
+
customer_candidates: Array<CustomerCandidate>;
|
|
23886
|
+
customer_lookup_ambiguous: boolean;
|
|
23887
|
+
resolved_project_name: string | null;
|
|
23888
|
+
};
|
|
23517
23889
|
export type RuntimeStates = {
|
|
23518
23890
|
/**
|
|
23519
23891
|
* Value of the runtime state
|
|
@@ -23627,6 +23999,10 @@ export type ScienceSubDomainRequest = {
|
|
|
23627
23999
|
name: string;
|
|
23628
24000
|
domain: string;
|
|
23629
24001
|
};
|
|
24002
|
+
export type ScimPullAttributesResponse = {
|
|
24003
|
+
detail: string;
|
|
24004
|
+
changed_fields?: Array<string>;
|
|
24005
|
+
};
|
|
23630
24006
|
export type ScimSyncAllResponse = {
|
|
23631
24007
|
detail: string;
|
|
23632
24008
|
};
|
|
@@ -23983,6 +24359,27 @@ export type SiteAgentConfigGenerationRequest = {
|
|
|
23983
24359
|
*/
|
|
23984
24360
|
timezone?: string;
|
|
23985
24361
|
};
|
|
24362
|
+
export type SiteAgentLog = {
|
|
24363
|
+
readonly uuid: string;
|
|
24364
|
+
readonly offering: string;
|
|
24365
|
+
readonly offering_uuid: string;
|
|
24366
|
+
readonly agent_identity_uuid: string;
|
|
24367
|
+
/**
|
|
24368
|
+
* Unix timestamp of the log entry
|
|
24369
|
+
*/
|
|
24370
|
+
timestamp: number;
|
|
24371
|
+
level: LevelEnum;
|
|
24372
|
+
message: string;
|
|
24373
|
+
module: string;
|
|
24374
|
+
readonly created: string;
|
|
24375
|
+
};
|
|
24376
|
+
export type SiteAgentLogCreateRequest = {
|
|
24377
|
+
agent_identity_uuid: string;
|
|
24378
|
+
timestamp: number;
|
|
24379
|
+
level: LevelEnum;
|
|
24380
|
+
message: string;
|
|
24381
|
+
module: string;
|
|
24382
|
+
};
|
|
23986
24383
|
export type SlurmAllocation = {
|
|
23987
24384
|
readonly url?: string;
|
|
23988
24385
|
readonly uuid?: string;
|
|
@@ -25145,6 +25542,9 @@ export type ToSConsentDashboard = {
|
|
|
25145
25542
|
readonly active_users_over_time: Array<TimeSeriesToSData>;
|
|
25146
25543
|
readonly accepted_consents_over_time: Array<TimeSeriesToSData>;
|
|
25147
25544
|
};
|
|
25545
|
+
export type TokenExchangeRequest = {
|
|
25546
|
+
code: string;
|
|
25547
|
+
};
|
|
25148
25548
|
export type TokenQuotaUsageResponse = {
|
|
25149
25549
|
/**
|
|
25150
25550
|
* Daily token limit (non-negative integer). Null uses system default. -1 means unlimited.
|
|
@@ -25501,6 +25901,7 @@ export type User = {
|
|
|
25501
25901
|
* Indicates what identity provider was used.
|
|
25502
25902
|
*/
|
|
25503
25903
|
readonly identity_source?: string;
|
|
25904
|
+
readonly should_protect_user_details?: boolean;
|
|
25504
25905
|
readonly has_active_session?: boolean;
|
|
25505
25906
|
readonly has_usable_password?: boolean;
|
|
25506
25907
|
readonly ip_address?: string | null;
|
|
@@ -25637,6 +26038,23 @@ export type UserAffiliationCount = {
|
|
|
25637
26038
|
*/
|
|
25638
26039
|
count: number;
|
|
25639
26040
|
};
|
|
26041
|
+
export type UserAffiliationDetail = {
|
|
26042
|
+
/**
|
|
26043
|
+
* Raw affiliation URN
|
|
26044
|
+
*/
|
|
26045
|
+
affiliation: string;
|
|
26046
|
+
organization: string | null;
|
|
26047
|
+
/**
|
|
26048
|
+
* ISO country code
|
|
26049
|
+
*/
|
|
26050
|
+
country: string | null;
|
|
26051
|
+
category: string;
|
|
26052
|
+
identifier: string | null;
|
|
26053
|
+
/**
|
|
26054
|
+
* Number of users
|
|
26055
|
+
*/
|
|
26056
|
+
count: number;
|
|
26057
|
+
};
|
|
25640
26058
|
export type UserAgreement = {
|
|
25641
26059
|
readonly url: string;
|
|
25642
26060
|
readonly uuid: string;
|
|
@@ -25689,7 +26107,7 @@ export type UserAuthToken = {
|
|
|
25689
26107
|
};
|
|
25690
26108
|
export type UserChecklistCompletion = {
|
|
25691
26109
|
readonly uuid: string;
|
|
25692
|
-
offering_user:
|
|
26110
|
+
offering_user: UserChecklistCompletionOfferingUser | null;
|
|
25693
26111
|
readonly offering_user_uuid: string | null;
|
|
25694
26112
|
readonly offering_name: string | null;
|
|
25695
26113
|
readonly offering_uuid: string | null;
|
|
@@ -25720,6 +26138,17 @@ export type UserChecklistCompletion = {
|
|
|
25720
26138
|
readonly created: string;
|
|
25721
26139
|
readonly modified: string;
|
|
25722
26140
|
};
|
|
26141
|
+
export type UserChecklistCompletionOfferingUser = {
|
|
26142
|
+
readonly uuid: string;
|
|
26143
|
+
username?: string | null;
|
|
26144
|
+
readonly user_full_name: string;
|
|
26145
|
+
readonly user_email: string;
|
|
26146
|
+
readonly state: string;
|
|
26147
|
+
/**
|
|
26148
|
+
* Signal to service if the user account is restricted or not
|
|
26149
|
+
*/
|
|
26150
|
+
is_restricted?: boolean;
|
|
26151
|
+
};
|
|
25723
26152
|
export type UserConsentInfo = {
|
|
25724
26153
|
readonly uuid: string;
|
|
25725
26154
|
readonly version: string;
|
|
@@ -27201,6 +27630,28 @@ export type OfferingFileRequestMultipart = {
|
|
|
27201
27630
|
offering: string;
|
|
27202
27631
|
file: Blob | File;
|
|
27203
27632
|
};
|
|
27633
|
+
export type OfferingGroupRequestForm = {
|
|
27634
|
+
title: string;
|
|
27635
|
+
description?: string;
|
|
27636
|
+
icon?: (Blob | File) | null;
|
|
27637
|
+
customer: string;
|
|
27638
|
+
};
|
|
27639
|
+
export type OfferingGroupRequestMultipart = {
|
|
27640
|
+
title: string;
|
|
27641
|
+
description?: string;
|
|
27642
|
+
icon?: (Blob | File) | null;
|
|
27643
|
+
customer: string;
|
|
27644
|
+
};
|
|
27645
|
+
export type PatchedOfferingGroupRequestForm = {
|
|
27646
|
+
title?: string;
|
|
27647
|
+
description?: string;
|
|
27648
|
+
icon?: (Blob | File) | null;
|
|
27649
|
+
};
|
|
27650
|
+
export type PatchedOfferingGroupRequestMultipart = {
|
|
27651
|
+
title?: string;
|
|
27652
|
+
description?: string;
|
|
27653
|
+
icon?: (Blob | File) | null;
|
|
27654
|
+
};
|
|
27204
27655
|
export type OrderConsumerInfoRequestForm = {
|
|
27205
27656
|
consumer_message?: string;
|
|
27206
27657
|
consumer_message_attachment?: Blob | File;
|
|
@@ -27276,6 +27727,7 @@ export type OfferingCreateRequestForm = {
|
|
|
27276
27727
|
image?: (Blob | File) | null;
|
|
27277
27728
|
backend_metadata?: unknown;
|
|
27278
27729
|
compliance_checklist?: string | null;
|
|
27730
|
+
offering_group?: string | null;
|
|
27279
27731
|
limits?: {
|
|
27280
27732
|
[key: string]: OfferingComponentLimitRequest;
|
|
27281
27733
|
};
|
|
@@ -27331,6 +27783,7 @@ export type OfferingCreateRequestMultipart = {
|
|
|
27331
27783
|
image?: (Blob | File) | null;
|
|
27332
27784
|
backend_metadata?: unknown;
|
|
27333
27785
|
compliance_checklist?: string | null;
|
|
27786
|
+
offering_group?: string | null;
|
|
27334
27787
|
limits?: {
|
|
27335
27788
|
[key: string]: OfferingComponentLimitRequest;
|
|
27336
27789
|
};
|
|
@@ -27834,6 +28287,12 @@ export type ConstanceSettingsRequestForm = {
|
|
|
27834
28287
|
SCIM_API_URL?: string;
|
|
27835
28288
|
SCIM_API_KEY?: string;
|
|
27836
28289
|
SCIM_URN_NAMESPACE?: string;
|
|
28290
|
+
SCIM_INBOUND_ENABLED?: boolean;
|
|
28291
|
+
SCIM_INBOUND_SOURCE_NAME?: string;
|
|
28292
|
+
SCIM_INBOUND_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
28293
|
+
SCIM_PULL_API_URL?: string;
|
|
28294
|
+
SCIM_PULL_API_KEY?: string;
|
|
28295
|
+
SCIM_PULL_SOURCE_NAME?: string;
|
|
27837
28296
|
KEYCLOAK_ICON?: (Blob | File) | null;
|
|
27838
28297
|
COUNTRIES?: Array<string>;
|
|
27839
28298
|
OIDC_AUTH_URL?: string;
|
|
@@ -27938,6 +28397,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
27938
28397
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
27939
28398
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
27940
28399
|
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
28400
|
+
SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
|
|
27941
28401
|
PAT_ENABLED?: boolean;
|
|
27942
28402
|
PAT_MAX_LIFETIME_DAYS?: number;
|
|
27943
28403
|
PAT_MAX_TOKENS_PER_USER?: number;
|
|
@@ -28103,6 +28563,12 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
28103
28563
|
SCIM_API_URL?: string;
|
|
28104
28564
|
SCIM_API_KEY?: string;
|
|
28105
28565
|
SCIM_URN_NAMESPACE?: string;
|
|
28566
|
+
SCIM_INBOUND_ENABLED?: boolean;
|
|
28567
|
+
SCIM_INBOUND_SOURCE_NAME?: string;
|
|
28568
|
+
SCIM_INBOUND_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
28569
|
+
SCIM_PULL_API_URL?: string;
|
|
28570
|
+
SCIM_PULL_API_KEY?: string;
|
|
28571
|
+
SCIM_PULL_SOURCE_NAME?: string;
|
|
28106
28572
|
KEYCLOAK_ICON?: (Blob | File) | null;
|
|
28107
28573
|
COUNTRIES?: Array<string>;
|
|
28108
28574
|
OIDC_AUTH_URL?: string;
|
|
@@ -28207,6 +28673,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
28207
28673
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
28208
28674
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
28209
28675
|
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
28676
|
+
SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
|
|
28210
28677
|
PAT_ENABLED?: boolean;
|
|
28211
28678
|
PAT_MAX_LIFETIME_DAYS?: number;
|
|
28212
28679
|
PAT_MAX_TOKENS_PER_USER?: number;
|
|
@@ -28658,7 +29125,7 @@ export type AzureSqlDatabaseFieldEnum = 'access_url' | 'backend_id' | 'charset'
|
|
|
28658
29125
|
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
29126
|
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
29127
|
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';
|
|
29128
|
+
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
29129
|
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
29130
|
export type BookingResourceOEnum = '-created' | '-name' | '-schedules' | '-type' | 'created' | 'name' | 'schedules' | 'type';
|
|
28664
29131
|
export type BroadcastMessageFieldEnum = 'author_full_name' | 'body' | 'created' | 'emails' | 'query' | 'send_at' | 'state' | 'subject' | 'uuid';
|
|
@@ -28708,28 +29175,29 @@ export type CourseAccountOEnum = '-created' | '-email' | '-modified' | '-project
|
|
|
28708
29175
|
export type IntegrationStatusDetailsOEnum = '-last_request_timestamp' | 'last_request_timestamp';
|
|
28709
29176
|
export type IntegrationStatusDetailsStatusEnum = 'Active' | 'Disconnected' | 'Unknown';
|
|
28710
29177
|
export type OfferingFileFieldEnum = 'created' | 'file' | 'name' | 'offering' | 'url' | 'uuid';
|
|
29178
|
+
export type OfferingGroupFieldEnum = 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'description' | 'icon' | 'title' | 'url' | 'uuid';
|
|
28711
29179
|
export type OfferingPermissionOEnum = '-created' | '-email' | '-expiration_time' | '-full_name' | '-native_name' | '-role' | '-username' | 'created' | 'email' | 'expiration_time' | 'full_name' | 'native_name' | 'role' | 'username';
|
|
28712
29180
|
export type OfferingReferralOEnum = '-published' | '-relation_type' | '-resource_type' | 'published' | 'relation_type' | 'resource_type';
|
|
28713
29181
|
export type OfferingTermsOfServiceOEnum = '-created' | '-modified' | '-version' | 'created' | 'modified' | 'version';
|
|
28714
29182
|
export type UserChecklistCompletionOEnum = '-is_completed' | '-modified' | 'is_completed' | 'modified';
|
|
28715
29183
|
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
29184
|
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';
|
|
29185
|
+
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
29186
|
export type OrderDetailsOEnum = '-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state';
|
|
28719
29187
|
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';
|
|
29188
|
+
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
29189
|
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
29190
|
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';
|
|
29191
|
+
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';
|
|
29192
|
+
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
29193
|
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';
|
|
29194
|
+
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
29195
|
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
29196
|
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
29197
|
export type MarketplaceProviderCustomerProjectFieldEnum = 'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid';
|
|
28730
29198
|
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
29199
|
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';
|
|
29200
|
+
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
29201
|
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
29202
|
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
29203
|
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,42 +29469,58 @@ export type ApiAuthTaraInitRetrieveResponses = {
|
|
|
29001
29469
|
*/
|
|
29002
29470
|
200: unknown;
|
|
29003
29471
|
};
|
|
29004
|
-
export type
|
|
29005
|
-
body
|
|
29472
|
+
export type ApiAuthTokenExchangeData = {
|
|
29473
|
+
body: TokenExchangeRequest;
|
|
29006
29474
|
path?: never;
|
|
29007
|
-
query?:
|
|
29008
|
-
|
|
29009
|
-
|
|
29010
|
-
|
|
29011
|
-
|
|
29012
|
-
|
|
29013
|
-
* Customer UUID
|
|
29014
|
-
*/
|
|
29015
|
-
customer_uuid?: string;
|
|
29016
|
-
/**
|
|
29017
|
-
* Description
|
|
29018
|
-
*/
|
|
29019
|
-
description?: string;
|
|
29020
|
-
/**
|
|
29021
|
-
* Inet
|
|
29022
|
-
*/
|
|
29023
|
-
inet?: string;
|
|
29024
|
-
/**
|
|
29025
|
-
* A page number within the paginated result set.
|
|
29026
|
-
*/
|
|
29027
|
-
page?: number;
|
|
29028
|
-
/**
|
|
29029
|
-
* Number of results to return per page.
|
|
29030
|
-
*/
|
|
29031
|
-
page_size?: number;
|
|
29475
|
+
query?: never;
|
|
29476
|
+
url: '/api-auth/token-exchange/';
|
|
29477
|
+
};
|
|
29478
|
+
export type ApiAuthTokenExchangeErrors = {
|
|
29479
|
+
400: {
|
|
29480
|
+
[key: string]: unknown;
|
|
29032
29481
|
};
|
|
29033
|
-
url: '/api/access-subnets/';
|
|
29034
29482
|
};
|
|
29035
|
-
export type
|
|
29036
|
-
|
|
29483
|
+
export type ApiAuthTokenExchangeError = ApiAuthTokenExchangeErrors[keyof ApiAuthTokenExchangeErrors];
|
|
29484
|
+
export type ApiAuthTokenExchangeResponses = {
|
|
29485
|
+
200: CoreAuthToken;
|
|
29037
29486
|
};
|
|
29038
|
-
export type
|
|
29039
|
-
export type
|
|
29487
|
+
export type ApiAuthTokenExchangeResponse = ApiAuthTokenExchangeResponses[keyof ApiAuthTokenExchangeResponses];
|
|
29488
|
+
export type AccessSubnetsListData = {
|
|
29489
|
+
body?: never;
|
|
29490
|
+
path?: never;
|
|
29491
|
+
query?: {
|
|
29492
|
+
/**
|
|
29493
|
+
* Customer URL
|
|
29494
|
+
*/
|
|
29495
|
+
customer?: string;
|
|
29496
|
+
/**
|
|
29497
|
+
* Customer UUID
|
|
29498
|
+
*/
|
|
29499
|
+
customer_uuid?: string;
|
|
29500
|
+
/**
|
|
29501
|
+
* Description
|
|
29502
|
+
*/
|
|
29503
|
+
description?: string;
|
|
29504
|
+
/**
|
|
29505
|
+
* Inet
|
|
29506
|
+
*/
|
|
29507
|
+
inet?: string;
|
|
29508
|
+
/**
|
|
29509
|
+
* A page number within the paginated result set.
|
|
29510
|
+
*/
|
|
29511
|
+
page?: number;
|
|
29512
|
+
/**
|
|
29513
|
+
* Number of results to return per page.
|
|
29514
|
+
*/
|
|
29515
|
+
page_size?: number;
|
|
29516
|
+
};
|
|
29517
|
+
url: '/api/access-subnets/';
|
|
29518
|
+
};
|
|
29519
|
+
export type AccessSubnetsListResponses = {
|
|
29520
|
+
200: Array<AccessSubnet>;
|
|
29521
|
+
};
|
|
29522
|
+
export type AccessSubnetsListResponse = AccessSubnetsListResponses[keyof AccessSubnetsListResponses];
|
|
29523
|
+
export type AccessSubnetsCountData = {
|
|
29040
29524
|
body?: never;
|
|
29041
29525
|
path?: never;
|
|
29042
29526
|
query?: {
|
|
@@ -31243,6 +31727,18 @@ export type AutoprovisioningRulesUpdateResponses = {
|
|
|
31243
31727
|
200: Rule;
|
|
31244
31728
|
};
|
|
31245
31729
|
export type AutoprovisioningRulesUpdateResponse = AutoprovisioningRulesUpdateResponses[keyof AutoprovisioningRulesUpdateResponses];
|
|
31730
|
+
export type AutoprovisioningRulesTestMatchData = {
|
|
31731
|
+
body: RuleTestMatchRequestRequest;
|
|
31732
|
+
path: {
|
|
31733
|
+
uuid: string;
|
|
31734
|
+
};
|
|
31735
|
+
query?: never;
|
|
31736
|
+
url: '/api/autoprovisioning-rules/{uuid}/test-match/';
|
|
31737
|
+
};
|
|
31738
|
+
export type AutoprovisioningRulesTestMatchResponses = {
|
|
31739
|
+
200: RuleTestMatchResponse;
|
|
31740
|
+
};
|
|
31741
|
+
export type AutoprovisioningRulesTestMatchResponse = AutoprovisioningRulesTestMatchResponses[keyof AutoprovisioningRulesTestMatchResponses];
|
|
31246
31742
|
export type AwsImagesListData = {
|
|
31247
31743
|
body?: never;
|
|
31248
31744
|
path?: never;
|
|
@@ -45158,6 +45654,120 @@ export type MarketplaceOfferingFilesRetrieveResponses = {
|
|
|
45158
45654
|
200: OfferingFile;
|
|
45159
45655
|
};
|
|
45160
45656
|
export type MarketplaceOfferingFilesRetrieveResponse = MarketplaceOfferingFilesRetrieveResponses[keyof MarketplaceOfferingFilesRetrieveResponses];
|
|
45657
|
+
export type MarketplaceOfferingGroupsListData = {
|
|
45658
|
+
body?: never;
|
|
45659
|
+
path?: never;
|
|
45660
|
+
query?: {
|
|
45661
|
+
/**
|
|
45662
|
+
* Customer UUID
|
|
45663
|
+
*/
|
|
45664
|
+
customer_uuid?: string;
|
|
45665
|
+
field?: Array<OfferingGroupFieldEnum>;
|
|
45666
|
+
/**
|
|
45667
|
+
* A page number within the paginated result set.
|
|
45668
|
+
*/
|
|
45669
|
+
page?: number;
|
|
45670
|
+
/**
|
|
45671
|
+
* Number of results to return per page.
|
|
45672
|
+
*/
|
|
45673
|
+
page_size?: number;
|
|
45674
|
+
title?: string;
|
|
45675
|
+
};
|
|
45676
|
+
url: '/api/marketplace-offering-groups/';
|
|
45677
|
+
};
|
|
45678
|
+
export type MarketplaceOfferingGroupsListResponses = {
|
|
45679
|
+
200: Array<OfferingGroup>;
|
|
45680
|
+
};
|
|
45681
|
+
export type MarketplaceOfferingGroupsListResponse = MarketplaceOfferingGroupsListResponses[keyof MarketplaceOfferingGroupsListResponses];
|
|
45682
|
+
export type MarketplaceOfferingGroupsCountData = {
|
|
45683
|
+
body?: never;
|
|
45684
|
+
path?: never;
|
|
45685
|
+
query?: {
|
|
45686
|
+
/**
|
|
45687
|
+
* Customer UUID
|
|
45688
|
+
*/
|
|
45689
|
+
customer_uuid?: string;
|
|
45690
|
+
/**
|
|
45691
|
+
* A page number within the paginated result set.
|
|
45692
|
+
*/
|
|
45693
|
+
page?: number;
|
|
45694
|
+
/**
|
|
45695
|
+
* Number of results to return per page.
|
|
45696
|
+
*/
|
|
45697
|
+
page_size?: number;
|
|
45698
|
+
title?: string;
|
|
45699
|
+
};
|
|
45700
|
+
url: '/api/marketplace-offering-groups/';
|
|
45701
|
+
};
|
|
45702
|
+
export type MarketplaceOfferingGroupsCountResponses = {
|
|
45703
|
+
/**
|
|
45704
|
+
* No response body
|
|
45705
|
+
*/
|
|
45706
|
+
200: unknown;
|
|
45707
|
+
};
|
|
45708
|
+
export type MarketplaceOfferingGroupsCreateData = {
|
|
45709
|
+
body: OfferingGroupRequest;
|
|
45710
|
+
path?: never;
|
|
45711
|
+
query?: never;
|
|
45712
|
+
url: '/api/marketplace-offering-groups/';
|
|
45713
|
+
};
|
|
45714
|
+
export type MarketplaceOfferingGroupsCreateResponses = {
|
|
45715
|
+
201: OfferingGroup;
|
|
45716
|
+
};
|
|
45717
|
+
export type MarketplaceOfferingGroupsCreateResponse = MarketplaceOfferingGroupsCreateResponses[keyof MarketplaceOfferingGroupsCreateResponses];
|
|
45718
|
+
export type MarketplaceOfferingGroupsDestroyData = {
|
|
45719
|
+
body?: never;
|
|
45720
|
+
path: {
|
|
45721
|
+
uuid: string;
|
|
45722
|
+
};
|
|
45723
|
+
query?: never;
|
|
45724
|
+
url: '/api/marketplace-offering-groups/{uuid}/';
|
|
45725
|
+
};
|
|
45726
|
+
export type MarketplaceOfferingGroupsDestroyResponses = {
|
|
45727
|
+
/**
|
|
45728
|
+
* No response body
|
|
45729
|
+
*/
|
|
45730
|
+
204: void;
|
|
45731
|
+
};
|
|
45732
|
+
export type MarketplaceOfferingGroupsDestroyResponse = MarketplaceOfferingGroupsDestroyResponses[keyof MarketplaceOfferingGroupsDestroyResponses];
|
|
45733
|
+
export type MarketplaceOfferingGroupsRetrieveData = {
|
|
45734
|
+
body?: never;
|
|
45735
|
+
path: {
|
|
45736
|
+
uuid: string;
|
|
45737
|
+
};
|
|
45738
|
+
query?: {
|
|
45739
|
+
field?: Array<OfferingGroupFieldEnum>;
|
|
45740
|
+
};
|
|
45741
|
+
url: '/api/marketplace-offering-groups/{uuid}/';
|
|
45742
|
+
};
|
|
45743
|
+
export type MarketplaceOfferingGroupsRetrieveResponses = {
|
|
45744
|
+
200: OfferingGroup;
|
|
45745
|
+
};
|
|
45746
|
+
export type MarketplaceOfferingGroupsRetrieveResponse = MarketplaceOfferingGroupsRetrieveResponses[keyof MarketplaceOfferingGroupsRetrieveResponses];
|
|
45747
|
+
export type MarketplaceOfferingGroupsPartialUpdateData = {
|
|
45748
|
+
body?: PatchedOfferingGroupRequest;
|
|
45749
|
+
path: {
|
|
45750
|
+
uuid: string;
|
|
45751
|
+
};
|
|
45752
|
+
query?: never;
|
|
45753
|
+
url: '/api/marketplace-offering-groups/{uuid}/';
|
|
45754
|
+
};
|
|
45755
|
+
export type MarketplaceOfferingGroupsPartialUpdateResponses = {
|
|
45756
|
+
200: OfferingGroup;
|
|
45757
|
+
};
|
|
45758
|
+
export type MarketplaceOfferingGroupsPartialUpdateResponse = MarketplaceOfferingGroupsPartialUpdateResponses[keyof MarketplaceOfferingGroupsPartialUpdateResponses];
|
|
45759
|
+
export type MarketplaceOfferingGroupsUpdateData = {
|
|
45760
|
+
body: OfferingGroupRequest;
|
|
45761
|
+
path: {
|
|
45762
|
+
uuid: string;
|
|
45763
|
+
};
|
|
45764
|
+
query?: never;
|
|
45765
|
+
url: '/api/marketplace-offering-groups/{uuid}/';
|
|
45766
|
+
};
|
|
45767
|
+
export type MarketplaceOfferingGroupsUpdateResponses = {
|
|
45768
|
+
200: OfferingGroup;
|
|
45769
|
+
};
|
|
45770
|
+
export type MarketplaceOfferingGroupsUpdateResponse = MarketplaceOfferingGroupsUpdateResponses[keyof MarketplaceOfferingGroupsUpdateResponses];
|
|
45161
45771
|
export type MarketplaceOfferingPermissionsListData = {
|
|
45162
45772
|
body?: never;
|
|
45163
45773
|
path?: never;
|
|
@@ -46893,6 +47503,10 @@ export type MarketplaceOrdersListData = {
|
|
|
46893
47503
|
*
|
|
46894
47504
|
*/
|
|
46895
47505
|
type?: Array<RequestTypes>;
|
|
47506
|
+
/**
|
|
47507
|
+
* Auto-approved
|
|
47508
|
+
*/
|
|
47509
|
+
was_auto_approved?: boolean;
|
|
46896
47510
|
};
|
|
46897
47511
|
url: '/api/marketplace-orders/';
|
|
46898
47512
|
};
|
|
@@ -47008,6 +47622,10 @@ export type MarketplaceOrdersCountData = {
|
|
|
47008
47622
|
*
|
|
47009
47623
|
*/
|
|
47010
47624
|
type?: Array<RequestTypes>;
|
|
47625
|
+
/**
|
|
47626
|
+
* Auto-approved
|
|
47627
|
+
*/
|
|
47628
|
+
was_auto_approved?: boolean;
|
|
47011
47629
|
};
|
|
47012
47630
|
url: '/api/marketplace-orders/';
|
|
47013
47631
|
};
|
|
@@ -47893,6 +48511,125 @@ export type MarketplaceProjectEstimatedCostPoliciesActionsCountResponses = {
|
|
|
47893
48511
|
*/
|
|
47894
48512
|
200: unknown;
|
|
47895
48513
|
};
|
|
48514
|
+
export type MarketplaceProjectOrderAutoApprovalsListData = {
|
|
48515
|
+
body?: never;
|
|
48516
|
+
path?: never;
|
|
48517
|
+
query?: {
|
|
48518
|
+
/**
|
|
48519
|
+
* Customer UUID
|
|
48520
|
+
*/
|
|
48521
|
+
customer_uuid?: string;
|
|
48522
|
+
enabled?: boolean;
|
|
48523
|
+
/**
|
|
48524
|
+
* A page number within the paginated result set.
|
|
48525
|
+
*/
|
|
48526
|
+
page?: number;
|
|
48527
|
+
/**
|
|
48528
|
+
* Number of results to return per page.
|
|
48529
|
+
*/
|
|
48530
|
+
page_size?: number;
|
|
48531
|
+
/**
|
|
48532
|
+
* Project UUID
|
|
48533
|
+
*/
|
|
48534
|
+
project_uuid?: string;
|
|
48535
|
+
};
|
|
48536
|
+
url: '/api/marketplace-project-order-auto-approvals/';
|
|
48537
|
+
};
|
|
48538
|
+
export type MarketplaceProjectOrderAutoApprovalsListResponses = {
|
|
48539
|
+
200: Array<ProjectOrderAutoApproval>;
|
|
48540
|
+
};
|
|
48541
|
+
export type MarketplaceProjectOrderAutoApprovalsListResponse = MarketplaceProjectOrderAutoApprovalsListResponses[keyof MarketplaceProjectOrderAutoApprovalsListResponses];
|
|
48542
|
+
export type MarketplaceProjectOrderAutoApprovalsCountData = {
|
|
48543
|
+
body?: never;
|
|
48544
|
+
path?: never;
|
|
48545
|
+
query?: {
|
|
48546
|
+
/**
|
|
48547
|
+
* Customer UUID
|
|
48548
|
+
*/
|
|
48549
|
+
customer_uuid?: string;
|
|
48550
|
+
enabled?: boolean;
|
|
48551
|
+
/**
|
|
48552
|
+
* A page number within the paginated result set.
|
|
48553
|
+
*/
|
|
48554
|
+
page?: number;
|
|
48555
|
+
/**
|
|
48556
|
+
* Number of results to return per page.
|
|
48557
|
+
*/
|
|
48558
|
+
page_size?: number;
|
|
48559
|
+
/**
|
|
48560
|
+
* Project UUID
|
|
48561
|
+
*/
|
|
48562
|
+
project_uuid?: string;
|
|
48563
|
+
};
|
|
48564
|
+
url: '/api/marketplace-project-order-auto-approvals/';
|
|
48565
|
+
};
|
|
48566
|
+
export type MarketplaceProjectOrderAutoApprovalsCountResponses = {
|
|
48567
|
+
/**
|
|
48568
|
+
* No response body
|
|
48569
|
+
*/
|
|
48570
|
+
200: unknown;
|
|
48571
|
+
};
|
|
48572
|
+
export type MarketplaceProjectOrderAutoApprovalsCreateData = {
|
|
48573
|
+
body: ProjectOrderAutoApprovalRequest;
|
|
48574
|
+
path?: never;
|
|
48575
|
+
query?: never;
|
|
48576
|
+
url: '/api/marketplace-project-order-auto-approvals/';
|
|
48577
|
+
};
|
|
48578
|
+
export type MarketplaceProjectOrderAutoApprovalsCreateResponses = {
|
|
48579
|
+
201: ProjectOrderAutoApproval;
|
|
48580
|
+
};
|
|
48581
|
+
export type MarketplaceProjectOrderAutoApprovalsCreateResponse = MarketplaceProjectOrderAutoApprovalsCreateResponses[keyof MarketplaceProjectOrderAutoApprovalsCreateResponses];
|
|
48582
|
+
export type MarketplaceProjectOrderAutoApprovalsDestroyData = {
|
|
48583
|
+
body?: never;
|
|
48584
|
+
path: {
|
|
48585
|
+
uuid: string;
|
|
48586
|
+
};
|
|
48587
|
+
query?: never;
|
|
48588
|
+
url: '/api/marketplace-project-order-auto-approvals/{uuid}/';
|
|
48589
|
+
};
|
|
48590
|
+
export type MarketplaceProjectOrderAutoApprovalsDestroyResponses = {
|
|
48591
|
+
/**
|
|
48592
|
+
* No response body
|
|
48593
|
+
*/
|
|
48594
|
+
204: void;
|
|
48595
|
+
};
|
|
48596
|
+
export type MarketplaceProjectOrderAutoApprovalsDestroyResponse = MarketplaceProjectOrderAutoApprovalsDestroyResponses[keyof MarketplaceProjectOrderAutoApprovalsDestroyResponses];
|
|
48597
|
+
export type MarketplaceProjectOrderAutoApprovalsRetrieveData = {
|
|
48598
|
+
body?: never;
|
|
48599
|
+
path: {
|
|
48600
|
+
uuid: string;
|
|
48601
|
+
};
|
|
48602
|
+
query?: never;
|
|
48603
|
+
url: '/api/marketplace-project-order-auto-approvals/{uuid}/';
|
|
48604
|
+
};
|
|
48605
|
+
export type MarketplaceProjectOrderAutoApprovalsRetrieveResponses = {
|
|
48606
|
+
200: ProjectOrderAutoApproval;
|
|
48607
|
+
};
|
|
48608
|
+
export type MarketplaceProjectOrderAutoApprovalsRetrieveResponse = MarketplaceProjectOrderAutoApprovalsRetrieveResponses[keyof MarketplaceProjectOrderAutoApprovalsRetrieveResponses];
|
|
48609
|
+
export type MarketplaceProjectOrderAutoApprovalsPartialUpdateData = {
|
|
48610
|
+
body?: PatchedProjectOrderAutoApprovalRequest;
|
|
48611
|
+
path: {
|
|
48612
|
+
uuid: string;
|
|
48613
|
+
};
|
|
48614
|
+
query?: never;
|
|
48615
|
+
url: '/api/marketplace-project-order-auto-approvals/{uuid}/';
|
|
48616
|
+
};
|
|
48617
|
+
export type MarketplaceProjectOrderAutoApprovalsPartialUpdateResponses = {
|
|
48618
|
+
200: ProjectOrderAutoApproval;
|
|
48619
|
+
};
|
|
48620
|
+
export type MarketplaceProjectOrderAutoApprovalsPartialUpdateResponse = MarketplaceProjectOrderAutoApprovalsPartialUpdateResponses[keyof MarketplaceProjectOrderAutoApprovalsPartialUpdateResponses];
|
|
48621
|
+
export type MarketplaceProjectOrderAutoApprovalsUpdateData = {
|
|
48622
|
+
body: ProjectOrderAutoApprovalRequest;
|
|
48623
|
+
path: {
|
|
48624
|
+
uuid: string;
|
|
48625
|
+
};
|
|
48626
|
+
query?: never;
|
|
48627
|
+
url: '/api/marketplace-project-order-auto-approvals/{uuid}/';
|
|
48628
|
+
};
|
|
48629
|
+
export type MarketplaceProjectOrderAutoApprovalsUpdateResponses = {
|
|
48630
|
+
200: ProjectOrderAutoApproval;
|
|
48631
|
+
};
|
|
48632
|
+
export type MarketplaceProjectOrderAutoApprovalsUpdateResponse = MarketplaceProjectOrderAutoApprovalsUpdateResponses[keyof MarketplaceProjectOrderAutoApprovalsUpdateResponses];
|
|
47896
48633
|
export type MarketplaceProjectServiceAccountsListData = {
|
|
47897
48634
|
body?: never;
|
|
47898
48635
|
path?: never;
|
|
@@ -48256,6 +48993,10 @@ export type MarketplaceProviderOfferingsListData = {
|
|
|
48256
48993
|
*
|
|
48257
48994
|
*/
|
|
48258
48995
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
48996
|
+
/**
|
|
48997
|
+
* Offering group UUID
|
|
48998
|
+
*/
|
|
48999
|
+
offering_group_uuid?: string;
|
|
48259
49000
|
/**
|
|
48260
49001
|
* Organization group UUID
|
|
48261
49002
|
*/
|
|
@@ -48436,6 +49177,10 @@ export type MarketplaceProviderOfferingsCountData = {
|
|
|
48436
49177
|
*
|
|
48437
49178
|
*/
|
|
48438
49179
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
49180
|
+
/**
|
|
49181
|
+
* Offering group UUID
|
|
49182
|
+
*/
|
|
49183
|
+
offering_group_uuid?: string;
|
|
48439
49184
|
/**
|
|
48440
49185
|
* Organization group UUID
|
|
48441
49186
|
*/
|
|
@@ -48753,6 +49498,10 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
|
|
|
48753
49498
|
*
|
|
48754
49499
|
*/
|
|
48755
49500
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
49501
|
+
/**
|
|
49502
|
+
* Offering group UUID
|
|
49503
|
+
*/
|
|
49504
|
+
offering_group_uuid?: string;
|
|
48756
49505
|
/**
|
|
48757
49506
|
* Organization group UUID
|
|
48758
49507
|
*/
|
|
@@ -48944,6 +49693,10 @@ export type MarketplaceProviderOfferingsCostsListData = {
|
|
|
48944
49693
|
*
|
|
48945
49694
|
*/
|
|
48946
49695
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
49696
|
+
/**
|
|
49697
|
+
* Offering group UUID
|
|
49698
|
+
*/
|
|
49699
|
+
offering_group_uuid?: string;
|
|
48947
49700
|
/**
|
|
48948
49701
|
* Organization group UUID
|
|
48949
49702
|
*/
|
|
@@ -49145,6 +49898,10 @@ export type MarketplaceProviderOfferingsCustomersListData = {
|
|
|
49145
49898
|
*
|
|
49146
49899
|
*/
|
|
49147
49900
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
49901
|
+
/**
|
|
49902
|
+
* Offering group UUID
|
|
49903
|
+
*/
|
|
49904
|
+
offering_group_uuid?: string;
|
|
49148
49905
|
/**
|
|
49149
49906
|
* Organization group UUID
|
|
49150
49907
|
*/
|
|
@@ -49471,6 +50228,10 @@ export type MarketplaceProviderOfferingsHistoryListData = {
|
|
|
49471
50228
|
*
|
|
49472
50229
|
*/
|
|
49473
50230
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
50231
|
+
/**
|
|
50232
|
+
* Offering group UUID
|
|
50233
|
+
*/
|
|
50234
|
+
offering_group_uuid?: string;
|
|
49474
50235
|
/**
|
|
49475
50236
|
* Organization group UUID
|
|
49476
50237
|
*/
|
|
@@ -49712,6 +50473,10 @@ export type MarketplaceProviderOfferingsListCourseAccountsListData = {
|
|
|
49712
50473
|
*
|
|
49713
50474
|
*/
|
|
49714
50475
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
50476
|
+
/**
|
|
50477
|
+
* Offering group UUID
|
|
50478
|
+
*/
|
|
50479
|
+
offering_group_uuid?: string;
|
|
49715
50480
|
/**
|
|
49716
50481
|
* Organization group UUID
|
|
49717
50482
|
*/
|
|
@@ -49916,6 +50681,10 @@ export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
|
|
|
49916
50681
|
*
|
|
49917
50682
|
*/
|
|
49918
50683
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
50684
|
+
/**
|
|
50685
|
+
* Offering group UUID
|
|
50686
|
+
*/
|
|
50687
|
+
offering_group_uuid?: string;
|
|
49919
50688
|
/**
|
|
49920
50689
|
* Organization group UUID
|
|
49921
50690
|
*/
|
|
@@ -50120,6 +50889,10 @@ export type MarketplaceProviderOfferingsListProjectServiceAccountsListData = {
|
|
|
50120
50889
|
*
|
|
50121
50890
|
*/
|
|
50122
50891
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
50892
|
+
/**
|
|
50893
|
+
* Offering group UUID
|
|
50894
|
+
*/
|
|
50895
|
+
offering_group_uuid?: string;
|
|
50123
50896
|
/**
|
|
50124
50897
|
* Organization group UUID
|
|
50125
50898
|
*/
|
|
@@ -50427,6 +51200,20 @@ export type MarketplaceProviderOfferingsSetBackendMetadataResponses = {
|
|
|
50427
51200
|
*/
|
|
50428
51201
|
200: unknown;
|
|
50429
51202
|
};
|
|
51203
|
+
export type MarketplaceProviderOfferingsSetOfferingGroupData = {
|
|
51204
|
+
body: OfferingGroupAssignRequest;
|
|
51205
|
+
path: {
|
|
51206
|
+
uuid: string;
|
|
51207
|
+
};
|
|
51208
|
+
query?: never;
|
|
51209
|
+
url: '/api/marketplace-provider-offerings/{uuid}/set_offering_group/';
|
|
51210
|
+
};
|
|
51211
|
+
export type MarketplaceProviderOfferingsSetOfferingGroupResponses = {
|
|
51212
|
+
/**
|
|
51213
|
+
* No response body
|
|
51214
|
+
*/
|
|
51215
|
+
200: unknown;
|
|
51216
|
+
};
|
|
50430
51217
|
export type MarketplaceProviderOfferingsSetProfileData = {
|
|
50431
51218
|
body?: OfferingProfileBindRequest;
|
|
50432
51219
|
path: {
|
|
@@ -50778,6 +51565,20 @@ export type MarketplaceProviderOfferingsUpdateThumbnailResponses = {
|
|
|
50778
51565
|
*/
|
|
50779
51566
|
200: unknown;
|
|
50780
51567
|
};
|
|
51568
|
+
export type MarketplaceProviderOfferingsUpdateTypeData = {
|
|
51569
|
+
body: OfferingTypeUpdateRequest;
|
|
51570
|
+
path: {
|
|
51571
|
+
uuid: string;
|
|
51572
|
+
};
|
|
51573
|
+
query?: never;
|
|
51574
|
+
url: '/api/marketplace-provider-offerings/{uuid}/update_type/';
|
|
51575
|
+
};
|
|
51576
|
+
export type MarketplaceProviderOfferingsUpdateTypeResponses = {
|
|
51577
|
+
/**
|
|
51578
|
+
* No response body
|
|
51579
|
+
*/
|
|
51580
|
+
200: unknown;
|
|
51581
|
+
};
|
|
50781
51582
|
export type MarketplaceProviderOfferingsUpdateUserData = {
|
|
50782
51583
|
body: UserRoleUpdateRequest;
|
|
50783
51584
|
path: {
|
|
@@ -50903,6 +51704,10 @@ export type MarketplaceProviderOfferingsGroupsListData = {
|
|
|
50903
51704
|
*
|
|
50904
51705
|
*/
|
|
50905
51706
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
51707
|
+
/**
|
|
51708
|
+
* Offering group UUID
|
|
51709
|
+
*/
|
|
51710
|
+
offering_group_uuid?: string;
|
|
50906
51711
|
/**
|
|
50907
51712
|
* Organization group UUID
|
|
50908
51713
|
*/
|
|
@@ -51079,6 +51884,10 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
|
|
|
51079
51884
|
*
|
|
51080
51885
|
*/
|
|
51081
51886
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
51887
|
+
/**
|
|
51888
|
+
* Offering group UUID
|
|
51889
|
+
*/
|
|
51890
|
+
offering_group_uuid?: string;
|
|
51082
51891
|
/**
|
|
51083
51892
|
* Organization group UUID
|
|
51084
51893
|
*/
|
|
@@ -51870,6 +52679,18 @@ export type MarketplaceProviderResourcesAddUserResponses = {
|
|
|
51870
52679
|
201: UserRoleExpirationTime;
|
|
51871
52680
|
};
|
|
51872
52681
|
export type MarketplaceProviderResourcesAddUserResponse = MarketplaceProviderResourcesAddUserResponses[keyof MarketplaceProviderResourcesAddUserResponses];
|
|
52682
|
+
export type MarketplaceProviderResourcesAdjustDatesData = {
|
|
52683
|
+
body: AdjustResourceDatesRequest;
|
|
52684
|
+
path: {
|
|
52685
|
+
uuid: string;
|
|
52686
|
+
};
|
|
52687
|
+
query?: never;
|
|
52688
|
+
url: '/api/marketplace-provider-resources/{uuid}/adjust_dates/';
|
|
52689
|
+
};
|
|
52690
|
+
export type MarketplaceProviderResourcesAdjustDatesResponses = {
|
|
52691
|
+
200: ResourceResponseStatus;
|
|
52692
|
+
};
|
|
52693
|
+
export type MarketplaceProviderResourcesAdjustDatesResponse = MarketplaceProviderResourcesAdjustDatesResponses[keyof MarketplaceProviderResourcesAdjustDatesResponses];
|
|
51873
52694
|
export type MarketplaceProviderResourcesDeleteUserData = {
|
|
51874
52695
|
body: UserRoleDeleteRequest;
|
|
51875
52696
|
path: {
|
|
@@ -52689,6 +53510,10 @@ export type MarketplacePublicOfferingsListData = {
|
|
|
52689
53510
|
*
|
|
52690
53511
|
*/
|
|
52691
53512
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
53513
|
+
/**
|
|
53514
|
+
* Offering group UUID
|
|
53515
|
+
*/
|
|
53516
|
+
offering_group_uuid?: string;
|
|
52692
53517
|
/**
|
|
52693
53518
|
* Organization group UUID
|
|
52694
53519
|
*/
|
|
@@ -52865,6 +53690,10 @@ export type MarketplacePublicOfferingsCountData = {
|
|
|
52865
53690
|
*
|
|
52866
53691
|
*/
|
|
52867
53692
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
53693
|
+
/**
|
|
53694
|
+
* Offering group UUID
|
|
53695
|
+
*/
|
|
53696
|
+
offering_group_uuid?: string;
|
|
52868
53697
|
/**
|
|
52869
53698
|
* Organization group UUID
|
|
52870
53699
|
*/
|
|
@@ -53243,7 +54072,12 @@ export type MarketplaceResourceProjectsDestroyData = {
|
|
|
53243
54072
|
path: {
|
|
53244
54073
|
uuid: string;
|
|
53245
54074
|
};
|
|
53246
|
-
query?:
|
|
54075
|
+
query?: {
|
|
54076
|
+
/**
|
|
54077
|
+
* Staff-only: when true, hard-delete the resource project instead of soft-deleting it.
|
|
54078
|
+
*/
|
|
54079
|
+
force?: boolean;
|
|
54080
|
+
};
|
|
53247
54081
|
url: '/api/marketplace-resource-projects/{uuid}/';
|
|
53248
54082
|
};
|
|
53249
54083
|
export type MarketplaceResourceProjectsDestroyResponses = {
|
|
@@ -53382,6 +54216,18 @@ export type MarketplaceResourceProjectsListUsersListResponses = {
|
|
|
53382
54216
|
200: Array<UserRoleDetails>;
|
|
53383
54217
|
};
|
|
53384
54218
|
export type MarketplaceResourceProjectsListUsersListResponse = MarketplaceResourceProjectsListUsersListResponses[keyof MarketplaceResourceProjectsListUsersListResponses];
|
|
54219
|
+
export type MarketplaceResourceProjectsRecoverData = {
|
|
54220
|
+
body?: ResourceProjectRecoveryRequest;
|
|
54221
|
+
path: {
|
|
54222
|
+
uuid: string;
|
|
54223
|
+
};
|
|
54224
|
+
query?: never;
|
|
54225
|
+
url: '/api/marketplace-resource-projects/{uuid}/recover/';
|
|
54226
|
+
};
|
|
54227
|
+
export type MarketplaceResourceProjectsRecoverResponses = {
|
|
54228
|
+
200: ResourceProject;
|
|
54229
|
+
};
|
|
54230
|
+
export type MarketplaceResourceProjectsRecoverResponse = MarketplaceResourceProjectsRecoverResponses[keyof MarketplaceResourceProjectsRecoverResponses];
|
|
53385
54231
|
export type MarketplaceResourceProjectsUpdateUserData = {
|
|
53386
54232
|
body: UserRoleUpdateRequest;
|
|
53387
54233
|
path: {
|
|
@@ -53843,6 +54689,18 @@ export type MarketplaceResourcesAddUserResponses = {
|
|
|
53843
54689
|
201: UserRoleExpirationTime;
|
|
53844
54690
|
};
|
|
53845
54691
|
export type MarketplaceResourcesAddUserResponse = MarketplaceResourcesAddUserResponses[keyof MarketplaceResourcesAddUserResponses];
|
|
54692
|
+
export type MarketplaceResourcesAdjustDatesData = {
|
|
54693
|
+
body: AdjustResourceDatesRequest;
|
|
54694
|
+
path: {
|
|
54695
|
+
uuid: string;
|
|
54696
|
+
};
|
|
54697
|
+
query?: never;
|
|
54698
|
+
url: '/api/marketplace-resources/{uuid}/adjust_dates/';
|
|
54699
|
+
};
|
|
54700
|
+
export type MarketplaceResourcesAdjustDatesResponses = {
|
|
54701
|
+
200: ResourceResponseStatus;
|
|
54702
|
+
};
|
|
54703
|
+
export type MarketplaceResourcesAdjustDatesResponse = MarketplaceResourcesAdjustDatesResponses[keyof MarketplaceResourcesAdjustDatesResponses];
|
|
53846
54704
|
export type MarketplaceResourcesDeleteUserData = {
|
|
53847
54705
|
body: UserRoleDeleteRequest;
|
|
53848
54706
|
path: {
|
|
@@ -55896,6 +56754,10 @@ export type MarketplaceServiceProvidersOfferingsListData = {
|
|
|
55896
56754
|
*
|
|
55897
56755
|
*/
|
|
55898
56756
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
56757
|
+
/**
|
|
56758
|
+
* Offering group UUID
|
|
56759
|
+
*/
|
|
56760
|
+
offering_group_uuid?: string;
|
|
55899
56761
|
/**
|
|
55900
56762
|
* Organization group UUID
|
|
55901
56763
|
*/
|
|
@@ -55989,6 +56851,188 @@ export type MarketplaceServiceProvidersOfferingsListResponses = {
|
|
|
55989
56851
|
200: Array<ProviderOffering>;
|
|
55990
56852
|
};
|
|
55991
56853
|
export type MarketplaceServiceProvidersOfferingsListResponse = MarketplaceServiceProvidersOfferingsListResponses[keyof MarketplaceServiceProvidersOfferingsListResponses];
|
|
56854
|
+
export type MarketplaceServiceProvidersOfferingsTypesListData = {
|
|
56855
|
+
body?: never;
|
|
56856
|
+
path: {
|
|
56857
|
+
service_provider_uuid: string;
|
|
56858
|
+
};
|
|
56859
|
+
query?: {
|
|
56860
|
+
/**
|
|
56861
|
+
* Accessible via calls
|
|
56862
|
+
*/
|
|
56863
|
+
accessible_via_calls?: boolean;
|
|
56864
|
+
/**
|
|
56865
|
+
* Allowed customer UUID
|
|
56866
|
+
*/
|
|
56867
|
+
allowed_customer_uuid?: string;
|
|
56868
|
+
/**
|
|
56869
|
+
* Offering attributes (JSON)
|
|
56870
|
+
*/
|
|
56871
|
+
attributes?: string;
|
|
56872
|
+
/**
|
|
56873
|
+
* Billable
|
|
56874
|
+
*/
|
|
56875
|
+
billable?: boolean;
|
|
56876
|
+
can_create_offering_user?: boolean;
|
|
56877
|
+
/**
|
|
56878
|
+
* Category group UUID
|
|
56879
|
+
*/
|
|
56880
|
+
category_group_uuid?: string;
|
|
56881
|
+
/**
|
|
56882
|
+
* Category UUID
|
|
56883
|
+
*/
|
|
56884
|
+
category_uuid?: string;
|
|
56885
|
+
/**
|
|
56886
|
+
* Created after
|
|
56887
|
+
*/
|
|
56888
|
+
created?: string;
|
|
56889
|
+
/**
|
|
56890
|
+
* Created before
|
|
56891
|
+
*/
|
|
56892
|
+
created_before?: string;
|
|
56893
|
+
/**
|
|
56894
|
+
* Customer URL
|
|
56895
|
+
*/
|
|
56896
|
+
customer?: string;
|
|
56897
|
+
/**
|
|
56898
|
+
* Customer UUID
|
|
56899
|
+
*/
|
|
56900
|
+
customer_uuid?: string;
|
|
56901
|
+
/**
|
|
56902
|
+
* Description contains
|
|
56903
|
+
*/
|
|
56904
|
+
description?: string;
|
|
56905
|
+
/**
|
|
56906
|
+
* Has Active Terms of Service
|
|
56907
|
+
*/
|
|
56908
|
+
has_active_terms_of_service?: boolean;
|
|
56909
|
+
/**
|
|
56910
|
+
* Has Terms of Service
|
|
56911
|
+
*/
|
|
56912
|
+
has_terms_of_service?: boolean;
|
|
56913
|
+
/**
|
|
56914
|
+
* Keyword
|
|
56915
|
+
*/
|
|
56916
|
+
keyword?: string;
|
|
56917
|
+
/**
|
|
56918
|
+
* Modified after
|
|
56919
|
+
*/
|
|
56920
|
+
modified?: string;
|
|
56921
|
+
/**
|
|
56922
|
+
* Modified before
|
|
56923
|
+
*/
|
|
56924
|
+
modified_before?: string;
|
|
56925
|
+
/**
|
|
56926
|
+
* Name
|
|
56927
|
+
*/
|
|
56928
|
+
name?: string;
|
|
56929
|
+
/**
|
|
56930
|
+
* Name (exact)
|
|
56931
|
+
*/
|
|
56932
|
+
name_exact?: string;
|
|
56933
|
+
/**
|
|
56934
|
+
* Ordering
|
|
56935
|
+
*
|
|
56936
|
+
*
|
|
56937
|
+
*/
|
|
56938
|
+
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
56939
|
+
/**
|
|
56940
|
+
* Offering group UUID
|
|
56941
|
+
*/
|
|
56942
|
+
offering_group_uuid?: string;
|
|
56943
|
+
/**
|
|
56944
|
+
* Organization group UUID
|
|
56945
|
+
*/
|
|
56946
|
+
organization_group_uuid?: string;
|
|
56947
|
+
/**
|
|
56948
|
+
* A page number within the paginated result set.
|
|
56949
|
+
*/
|
|
56950
|
+
page?: number;
|
|
56951
|
+
/**
|
|
56952
|
+
* Number of results to return per page.
|
|
56953
|
+
*/
|
|
56954
|
+
page_size?: number;
|
|
56955
|
+
/**
|
|
56956
|
+
* Parent offering UUID
|
|
56957
|
+
*/
|
|
56958
|
+
parent_uuid?: string;
|
|
56959
|
+
/**
|
|
56960
|
+
* Project UUID
|
|
56961
|
+
*/
|
|
56962
|
+
project_uuid?: string;
|
|
56963
|
+
/**
|
|
56964
|
+
* Search by offering name, slug or description
|
|
56965
|
+
*/
|
|
56966
|
+
query?: string;
|
|
56967
|
+
/**
|
|
56968
|
+
* Resource customer UUID
|
|
56969
|
+
*/
|
|
56970
|
+
resource_customer_uuid?: string;
|
|
56971
|
+
/**
|
|
56972
|
+
* Resource project UUID
|
|
56973
|
+
*/
|
|
56974
|
+
resource_project_uuid?: string;
|
|
56975
|
+
/**
|
|
56976
|
+
* Scope UUID
|
|
56977
|
+
*/
|
|
56978
|
+
scope_uuid?: string;
|
|
56979
|
+
/**
|
|
56980
|
+
* Service manager UUID
|
|
56981
|
+
*/
|
|
56982
|
+
service_manager_uuid?: string;
|
|
56983
|
+
/**
|
|
56984
|
+
* Shared
|
|
56985
|
+
*/
|
|
56986
|
+
shared?: boolean;
|
|
56987
|
+
/**
|
|
56988
|
+
* Slug
|
|
56989
|
+
*/
|
|
56990
|
+
slug?: string;
|
|
56991
|
+
/**
|
|
56992
|
+
* Offering state
|
|
56993
|
+
*
|
|
56994
|
+
*
|
|
56995
|
+
*/
|
|
56996
|
+
state?: Array<OfferingState>;
|
|
56997
|
+
/**
|
|
56998
|
+
* Tag UUID (OR logic)
|
|
56999
|
+
*/
|
|
57000
|
+
tag?: Array<string>;
|
|
57001
|
+
/**
|
|
57002
|
+
* Tag name (OR logic)
|
|
57003
|
+
*/
|
|
57004
|
+
tag_name?: Array<string>;
|
|
57005
|
+
/**
|
|
57006
|
+
* Tag names with AND logic (comma-separated)
|
|
57007
|
+
*/
|
|
57008
|
+
tag_names_and?: string;
|
|
57009
|
+
/**
|
|
57010
|
+
* Tag UUIDs with AND logic (comma-separated)
|
|
57011
|
+
*/
|
|
57012
|
+
tags_and?: string;
|
|
57013
|
+
/**
|
|
57014
|
+
* Offering type
|
|
57015
|
+
*/
|
|
57016
|
+
type?: Array<string>;
|
|
57017
|
+
/**
|
|
57018
|
+
* User Has Consent
|
|
57019
|
+
*/
|
|
57020
|
+
user_has_consent?: boolean;
|
|
57021
|
+
/**
|
|
57022
|
+
* User Has Offering User
|
|
57023
|
+
*/
|
|
57024
|
+
user_has_offering_user?: boolean;
|
|
57025
|
+
/**
|
|
57026
|
+
* Comma-separated offering UUIDs
|
|
57027
|
+
*/
|
|
57028
|
+
uuid_list?: string;
|
|
57029
|
+
};
|
|
57030
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/offerings/types/';
|
|
57031
|
+
};
|
|
57032
|
+
export type MarketplaceServiceProvidersOfferingsTypesListResponses = {
|
|
57033
|
+
200: Array<string>;
|
|
57034
|
+
};
|
|
57035
|
+
export type MarketplaceServiceProvidersOfferingsTypesListResponse = MarketplaceServiceProvidersOfferingsTypesListResponses[keyof MarketplaceServiceProvidersOfferingsTypesListResponses];
|
|
55992
57036
|
export type MarketplaceServiceProvidersProjectPermissionsListData = {
|
|
55993
57037
|
body?: never;
|
|
55994
57038
|
path: {
|
|
@@ -56866,6 +57910,80 @@ export type MarketplaceSiteAgentIdentitiesCleanupOrphanedResponses = {
|
|
|
56866
57910
|
200: CleanupResponse;
|
|
56867
57911
|
};
|
|
56868
57912
|
export type MarketplaceSiteAgentIdentitiesCleanupOrphanedResponse = MarketplaceSiteAgentIdentitiesCleanupOrphanedResponses[keyof MarketplaceSiteAgentIdentitiesCleanupOrphanedResponses];
|
|
57913
|
+
export type MarketplaceSiteAgentLogsListData = {
|
|
57914
|
+
body?: never;
|
|
57915
|
+
path?: never;
|
|
57916
|
+
query?: {
|
|
57917
|
+
agent_identity_uuid?: string;
|
|
57918
|
+
level?: string;
|
|
57919
|
+
offering_uuid?: string;
|
|
57920
|
+
/**
|
|
57921
|
+
* A page number within the paginated result set.
|
|
57922
|
+
*/
|
|
57923
|
+
page?: number;
|
|
57924
|
+
/**
|
|
57925
|
+
* Number of results to return per page.
|
|
57926
|
+
*/
|
|
57927
|
+
page_size?: number;
|
|
57928
|
+
timestamp_from?: number;
|
|
57929
|
+
timestamp_to?: number;
|
|
57930
|
+
};
|
|
57931
|
+
url: '/api/marketplace-site-agent-logs/';
|
|
57932
|
+
};
|
|
57933
|
+
export type MarketplaceSiteAgentLogsListResponses = {
|
|
57934
|
+
200: Array<SiteAgentLog>;
|
|
57935
|
+
};
|
|
57936
|
+
export type MarketplaceSiteAgentLogsListResponse = MarketplaceSiteAgentLogsListResponses[keyof MarketplaceSiteAgentLogsListResponses];
|
|
57937
|
+
export type MarketplaceSiteAgentLogsCountData = {
|
|
57938
|
+
body?: never;
|
|
57939
|
+
path?: never;
|
|
57940
|
+
query?: {
|
|
57941
|
+
agent_identity_uuid?: string;
|
|
57942
|
+
level?: string;
|
|
57943
|
+
offering_uuid?: string;
|
|
57944
|
+
/**
|
|
57945
|
+
* A page number within the paginated result set.
|
|
57946
|
+
*/
|
|
57947
|
+
page?: number;
|
|
57948
|
+
/**
|
|
57949
|
+
* Number of results to return per page.
|
|
57950
|
+
*/
|
|
57951
|
+
page_size?: number;
|
|
57952
|
+
timestamp_from?: number;
|
|
57953
|
+
timestamp_to?: number;
|
|
57954
|
+
};
|
|
57955
|
+
url: '/api/marketplace-site-agent-logs/';
|
|
57956
|
+
};
|
|
57957
|
+
export type MarketplaceSiteAgentLogsCountResponses = {
|
|
57958
|
+
/**
|
|
57959
|
+
* No response body
|
|
57960
|
+
*/
|
|
57961
|
+
200: unknown;
|
|
57962
|
+
};
|
|
57963
|
+
export type MarketplaceSiteAgentLogsCreateData = {
|
|
57964
|
+
body: Array<SiteAgentLogCreateRequest>;
|
|
57965
|
+
path?: never;
|
|
57966
|
+
query?: {
|
|
57967
|
+
agent_identity_uuid?: string;
|
|
57968
|
+
level?: string;
|
|
57969
|
+
offering_uuid?: string;
|
|
57970
|
+
/**
|
|
57971
|
+
* A page number within the paginated result set.
|
|
57972
|
+
*/
|
|
57973
|
+
page?: number;
|
|
57974
|
+
/**
|
|
57975
|
+
* Number of results to return per page.
|
|
57976
|
+
*/
|
|
57977
|
+
page_size?: number;
|
|
57978
|
+
timestamp_from?: number;
|
|
57979
|
+
timestamp_to?: number;
|
|
57980
|
+
};
|
|
57981
|
+
url: '/api/marketplace-site-agent-logs/';
|
|
57982
|
+
};
|
|
57983
|
+
export type MarketplaceSiteAgentLogsCreateResponses = {
|
|
57984
|
+
201: Array<SiteAgentLog>;
|
|
57985
|
+
};
|
|
57986
|
+
export type MarketplaceSiteAgentLogsCreateResponse = MarketplaceSiteAgentLogsCreateResponses[keyof MarketplaceSiteAgentLogsCreateResponses];
|
|
56869
57987
|
export type MarketplaceSiteAgentProcessorsListData = {
|
|
56870
57988
|
body?: never;
|
|
56871
57989
|
path?: never;
|
|
@@ -60064,6 +61182,86 @@ export type MarketplaceStatsUserAffiliationCountCountResponses = {
|
|
|
60064
61182
|
*/
|
|
60065
61183
|
200: unknown;
|
|
60066
61184
|
};
|
|
61185
|
+
export type MarketplaceStatsUserAffiliationDetailsListData = {
|
|
61186
|
+
body?: never;
|
|
61187
|
+
path?: never;
|
|
61188
|
+
query?: {
|
|
61189
|
+
/**
|
|
61190
|
+
* One of: home-organization, personal-identifier, organization-type, user-status, eduperson, other.
|
|
61191
|
+
*/
|
|
61192
|
+
category?: string;
|
|
61193
|
+
/**
|
|
61194
|
+
* ISO country code (case-insensitive).
|
|
61195
|
+
*/
|
|
61196
|
+
country?: string;
|
|
61197
|
+
/**
|
|
61198
|
+
* Ordering field; prefix with - for descending. Allowed: count, organization, country, category, affiliation. Defaults to -count.
|
|
61199
|
+
*/
|
|
61200
|
+
o?: string;
|
|
61201
|
+
/**
|
|
61202
|
+
* Exact organization domain match.
|
|
61203
|
+
*/
|
|
61204
|
+
organization?: string;
|
|
61205
|
+
/**
|
|
61206
|
+
* A page number within the paginated result set.
|
|
61207
|
+
*/
|
|
61208
|
+
page?: number;
|
|
61209
|
+
/**
|
|
61210
|
+
* Number of results to return per page.
|
|
61211
|
+
*/
|
|
61212
|
+
page_size?: number;
|
|
61213
|
+
/**
|
|
61214
|
+
* Substring match against raw URN or organization.
|
|
61215
|
+
*/
|
|
61216
|
+
search?: string;
|
|
61217
|
+
};
|
|
61218
|
+
url: '/api/marketplace-stats/user_affiliation_details/';
|
|
61219
|
+
};
|
|
61220
|
+
export type MarketplaceStatsUserAffiliationDetailsListResponses = {
|
|
61221
|
+
200: Array<UserAffiliationDetail>;
|
|
61222
|
+
};
|
|
61223
|
+
export type MarketplaceStatsUserAffiliationDetailsListResponse = MarketplaceStatsUserAffiliationDetailsListResponses[keyof MarketplaceStatsUserAffiliationDetailsListResponses];
|
|
61224
|
+
export type MarketplaceStatsUserAffiliationDetailsCountData = {
|
|
61225
|
+
body?: never;
|
|
61226
|
+
path?: never;
|
|
61227
|
+
query?: {
|
|
61228
|
+
/**
|
|
61229
|
+
* One of: home-organization, personal-identifier, organization-type, user-status, eduperson, other.
|
|
61230
|
+
*/
|
|
61231
|
+
category?: string;
|
|
61232
|
+
/**
|
|
61233
|
+
* ISO country code (case-insensitive).
|
|
61234
|
+
*/
|
|
61235
|
+
country?: string;
|
|
61236
|
+
/**
|
|
61237
|
+
* Ordering field; prefix with - for descending. Allowed: count, organization, country, category, affiliation. Defaults to -count.
|
|
61238
|
+
*/
|
|
61239
|
+
o?: string;
|
|
61240
|
+
/**
|
|
61241
|
+
* Exact organization domain match.
|
|
61242
|
+
*/
|
|
61243
|
+
organization?: string;
|
|
61244
|
+
/**
|
|
61245
|
+
* A page number within the paginated result set.
|
|
61246
|
+
*/
|
|
61247
|
+
page?: number;
|
|
61248
|
+
/**
|
|
61249
|
+
* Number of results to return per page.
|
|
61250
|
+
*/
|
|
61251
|
+
page_size?: number;
|
|
61252
|
+
/**
|
|
61253
|
+
* Substring match against raw URN or organization.
|
|
61254
|
+
*/
|
|
61255
|
+
search?: string;
|
|
61256
|
+
};
|
|
61257
|
+
url: '/api/marketplace-stats/user_affiliation_details/';
|
|
61258
|
+
};
|
|
61259
|
+
export type MarketplaceStatsUserAffiliationDetailsCountResponses = {
|
|
61260
|
+
/**
|
|
61261
|
+
* No response body
|
|
61262
|
+
*/
|
|
61263
|
+
200: unknown;
|
|
61264
|
+
};
|
|
60067
61265
|
export type MarketplaceStatsUserAuthMethodCountListData = {
|
|
60068
61266
|
body?: never;
|
|
60069
61267
|
path?: never;
|
|
@@ -71608,6 +72806,46 @@ export type PersonalAccessTokensRotateResponses = {
|
|
|
71608
72806
|
201: PersonalAccessTokenCreated;
|
|
71609
72807
|
};
|
|
71610
72808
|
export type PersonalAccessTokensRotateResponse = PersonalAccessTokensRotateResponses[keyof PersonalAccessTokensRotateResponses];
|
|
72809
|
+
export type PersonalAccessTokensAvailableBindingTargetsListData = {
|
|
72810
|
+
body?: never;
|
|
72811
|
+
path?: never;
|
|
72812
|
+
query?: {
|
|
72813
|
+
/**
|
|
72814
|
+
* A page number within the paginated result set.
|
|
72815
|
+
*/
|
|
72816
|
+
page?: number;
|
|
72817
|
+
/**
|
|
72818
|
+
* Number of results to return per page.
|
|
72819
|
+
*/
|
|
72820
|
+
page_size?: number;
|
|
72821
|
+
};
|
|
72822
|
+
url: '/api/personal-access-tokens/available_binding_targets/';
|
|
72823
|
+
};
|
|
72824
|
+
export type PersonalAccessTokensAvailableBindingTargetsListResponses = {
|
|
72825
|
+
200: Array<AvailableBindingTarget>;
|
|
72826
|
+
};
|
|
72827
|
+
export type PersonalAccessTokensAvailableBindingTargetsListResponse = PersonalAccessTokensAvailableBindingTargetsListResponses[keyof PersonalAccessTokensAvailableBindingTargetsListResponses];
|
|
72828
|
+
export type PersonalAccessTokensAvailableBindingTargetsCountData = {
|
|
72829
|
+
body?: never;
|
|
72830
|
+
path?: never;
|
|
72831
|
+
query?: {
|
|
72832
|
+
/**
|
|
72833
|
+
* A page number within the paginated result set.
|
|
72834
|
+
*/
|
|
72835
|
+
page?: number;
|
|
72836
|
+
/**
|
|
72837
|
+
* Number of results to return per page.
|
|
72838
|
+
*/
|
|
72839
|
+
page_size?: number;
|
|
72840
|
+
};
|
|
72841
|
+
url: '/api/personal-access-tokens/available_binding_targets/';
|
|
72842
|
+
};
|
|
72843
|
+
export type PersonalAccessTokensAvailableBindingTargetsCountResponses = {
|
|
72844
|
+
/**
|
|
72845
|
+
* No response body
|
|
72846
|
+
*/
|
|
72847
|
+
200: unknown;
|
|
72848
|
+
};
|
|
71611
72849
|
export type PersonalAccessTokensAvailableScopesListData = {
|
|
71612
72850
|
body?: never;
|
|
71613
72851
|
path?: never;
|
|
@@ -73999,6 +75237,18 @@ export type ProposalProtectedCallsDetectConflictsResponses = {
|
|
|
73999
75237
|
200: CoiDetectionJob;
|
|
74000
75238
|
};
|
|
74001
75239
|
export type ProposalProtectedCallsDetectConflictsResponse = ProposalProtectedCallsDetectConflictsResponses[keyof ProposalProtectedCallsDetectConflictsResponses];
|
|
75240
|
+
export type ProposalProtectedCallsDuplicateData = {
|
|
75241
|
+
body: DuplicateCallRequestRequest;
|
|
75242
|
+
path: {
|
|
75243
|
+
uuid: string;
|
|
75244
|
+
};
|
|
75245
|
+
query?: never;
|
|
75246
|
+
url: '/api/proposal-protected-calls/{uuid}/duplicate/';
|
|
75247
|
+
};
|
|
75248
|
+
export type ProposalProtectedCallsDuplicateResponses = {
|
|
75249
|
+
201: ProtectedCall;
|
|
75250
|
+
};
|
|
75251
|
+
export type ProposalProtectedCallsDuplicateResponse = ProposalProtectedCallsDuplicateResponses[keyof ProposalProtectedCallsDuplicateResponses];
|
|
74002
75252
|
export type ProposalProtectedCallsGenerateAssignmentsData = {
|
|
74003
75253
|
body?: GenerateAssignmentsRequest;
|
|
74004
75254
|
path: {
|
|
@@ -74489,6 +75739,45 @@ export type ProposalProtectedCallsRoundsSetResponses = {
|
|
|
74489
75739
|
200: ProtectedRound;
|
|
74490
75740
|
};
|
|
74491
75741
|
export type ProposalProtectedCallsRoundsSetResponse = ProposalProtectedCallsRoundsSetResponses[keyof ProposalProtectedCallsRoundsSetResponses];
|
|
75742
|
+
export type ProposalProtectedCallsRoundsBulkSetData = {
|
|
75743
|
+
body: BulkRoundCreateRequestRequest;
|
|
75744
|
+
path: {
|
|
75745
|
+
uuid: string;
|
|
75746
|
+
};
|
|
75747
|
+
query?: {
|
|
75748
|
+
customer?: string;
|
|
75749
|
+
customer_keyword?: string;
|
|
75750
|
+
customer_uuid?: string;
|
|
75751
|
+
has_active_round?: boolean;
|
|
75752
|
+
name?: string;
|
|
75753
|
+
/**
|
|
75754
|
+
* Ordering
|
|
75755
|
+
*
|
|
75756
|
+
*
|
|
75757
|
+
*/
|
|
75758
|
+
o?: Array<ProtectedCallOEnum>;
|
|
75759
|
+
offering_uuid?: string;
|
|
75760
|
+
offerings_provider_uuid?: string;
|
|
75761
|
+
/**
|
|
75762
|
+
* A page number within the paginated result set.
|
|
75763
|
+
*/
|
|
75764
|
+
page?: number;
|
|
75765
|
+
/**
|
|
75766
|
+
* Number of results to return per page.
|
|
75767
|
+
*/
|
|
75768
|
+
page_size?: number;
|
|
75769
|
+
/**
|
|
75770
|
+
* Slug
|
|
75771
|
+
*/
|
|
75772
|
+
slug?: string;
|
|
75773
|
+
state?: Array<CallStates>;
|
|
75774
|
+
};
|
|
75775
|
+
url: '/api/proposal-protected-calls/{uuid}/rounds-bulk-set/';
|
|
75776
|
+
};
|
|
75777
|
+
export type ProposalProtectedCallsRoundsBulkSetResponses = {
|
|
75778
|
+
201: Array<ProtectedRound>;
|
|
75779
|
+
};
|
|
75780
|
+
export type ProposalProtectedCallsRoundsBulkSetResponse = ProposalProtectedCallsRoundsBulkSetResponses[keyof ProposalProtectedCallsRoundsBulkSetResponses];
|
|
74492
75781
|
export type ProposalProtectedCallsRoundsDestroyData = {
|
|
74493
75782
|
body?: never;
|
|
74494
75783
|
path: {
|
|
@@ -84145,6 +85434,18 @@ export type UsersPullRemoteUserResponses = {
|
|
|
84145
85434
|
*/
|
|
84146
85435
|
200: unknown;
|
|
84147
85436
|
};
|
|
85437
|
+
export type UsersPullScimAttributesData = {
|
|
85438
|
+
body?: never;
|
|
85439
|
+
path: {
|
|
85440
|
+
uuid: string;
|
|
85441
|
+
};
|
|
85442
|
+
query?: never;
|
|
85443
|
+
url: '/api/users/{uuid}/pull_scim_attributes/';
|
|
85444
|
+
};
|
|
85445
|
+
export type UsersPullScimAttributesResponses = {
|
|
85446
|
+
200: ScimPullAttributesResponse;
|
|
85447
|
+
};
|
|
85448
|
+
export type UsersPullScimAttributesResponse = UsersPullScimAttributesResponses[keyof UsersPullScimAttributesResponses];
|
|
84148
85449
|
export type UsersRefreshTokenData = {
|
|
84149
85450
|
body?: never;
|
|
84150
85451
|
path: {
|