waldur-js-client 7.9.10-dev.0 → 7.9.10-dev.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/sdk.gen.d.ts +201 -9
- package/dist/sdk.gen.js +907 -8
- package/dist/types.gen.d.ts +1872 -263
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -410,6 +410,32 @@ export type AgentTaskStatsResponse = {
|
|
|
410
410
|
error?: string;
|
|
411
411
|
};
|
|
412
412
|
export type AgentTypeEnum = 'Order processing' | 'Usage reporting' | 'Glauth sync' | 'Resource sync' | 'Event processing' | 'unknown';
|
|
413
|
+
export type AggregatedUsageTrend = {
|
|
414
|
+
/**
|
|
415
|
+
* Period in YYYY-MM format
|
|
416
|
+
*/
|
|
417
|
+
period: string;
|
|
418
|
+
/**
|
|
419
|
+
* Year
|
|
420
|
+
*/
|
|
421
|
+
year: number;
|
|
422
|
+
/**
|
|
423
|
+
* Month (1-12)
|
|
424
|
+
*/
|
|
425
|
+
month: number;
|
|
426
|
+
/**
|
|
427
|
+
* Total usage across all components
|
|
428
|
+
*/
|
|
429
|
+
total_usage: string;
|
|
430
|
+
/**
|
|
431
|
+
* Number of distinct resources with usage
|
|
432
|
+
*/
|
|
433
|
+
resource_count: number;
|
|
434
|
+
/**
|
|
435
|
+
* Number of component usage records
|
|
436
|
+
*/
|
|
437
|
+
component_count: number;
|
|
438
|
+
};
|
|
413
439
|
export type AgreementTypeEnum = 'TOS' | 'PP';
|
|
414
440
|
export type Allocation = {
|
|
415
441
|
readonly url?: string;
|
|
@@ -1715,6 +1741,7 @@ export type BookingResource = {
|
|
|
1715
1741
|
readonly parent_offering_uuid?: string;
|
|
1716
1742
|
readonly parent_offering_name?: string;
|
|
1717
1743
|
readonly parent_offering_slug?: string;
|
|
1744
|
+
readonly offering_backend_id?: string;
|
|
1718
1745
|
readonly parent_uuid?: string;
|
|
1719
1746
|
readonly parent_name?: string;
|
|
1720
1747
|
backend_metadata?: BackendMetadata;
|
|
@@ -3478,6 +3505,10 @@ export type ConstanceSettings = {
|
|
|
3478
3505
|
FREEIPA_GROUPNAME_PREFIX?: string;
|
|
3479
3506
|
FREEIPA_BLACKLISTED_USERNAMES?: Array<string>;
|
|
3480
3507
|
FREEIPA_GROUP_SYNCHRONIZATION_ENABLED?: boolean;
|
|
3508
|
+
SCIM_MEMBERSHIP_SYNC_ENABLED?: boolean;
|
|
3509
|
+
SCIM_API_URL?: string;
|
|
3510
|
+
SCIM_API_KEY?: string;
|
|
3511
|
+
SCIM_URN_NAMESPACE?: string;
|
|
3481
3512
|
KEYCLOAK_ICON?: string | null;
|
|
3482
3513
|
COUNTRIES?: Array<string>;
|
|
3483
3514
|
OIDC_AUTH_URL?: string;
|
|
@@ -3544,6 +3575,7 @@ export type ConstanceSettings = {
|
|
|
3544
3575
|
USER_DATA_ACCESS_LOGGING_ENABLED?: boolean;
|
|
3545
3576
|
USER_DATA_ACCESS_LOG_RETENTION_DAYS?: number;
|
|
3546
3577
|
USER_DATA_ACCESS_LOG_SELF_ACCESS?: boolean;
|
|
3578
|
+
SLURM_POLICY_EVALUATION_LOG_RETENTION_DAYS?: number;
|
|
3547
3579
|
};
|
|
3548
3580
|
export type ConstanceSettingsRequest = {
|
|
3549
3581
|
SITE_NAME?: string;
|
|
@@ -3694,6 +3726,10 @@ export type ConstanceSettingsRequest = {
|
|
|
3694
3726
|
FREEIPA_GROUPNAME_PREFIX?: string;
|
|
3695
3727
|
FREEIPA_BLACKLISTED_USERNAMES?: Array<string>;
|
|
3696
3728
|
FREEIPA_GROUP_SYNCHRONIZATION_ENABLED?: boolean;
|
|
3729
|
+
SCIM_MEMBERSHIP_SYNC_ENABLED?: boolean;
|
|
3730
|
+
SCIM_API_URL?: string;
|
|
3731
|
+
SCIM_API_KEY?: string;
|
|
3732
|
+
SCIM_URN_NAMESPACE?: string;
|
|
3697
3733
|
KEYCLOAK_ICON?: (Blob | File) | null;
|
|
3698
3734
|
COUNTRIES?: Array<string>;
|
|
3699
3735
|
OIDC_AUTH_URL?: string;
|
|
@@ -3760,6 +3796,7 @@ export type ConstanceSettingsRequest = {
|
|
|
3760
3796
|
USER_DATA_ACCESS_LOGGING_ENABLED?: boolean;
|
|
3761
3797
|
USER_DATA_ACCESS_LOG_RETENTION_DAYS?: number;
|
|
3762
3798
|
USER_DATA_ACCESS_LOG_SELF_ACCESS?: boolean;
|
|
3799
|
+
SLURM_POLICY_EVALUATION_LOG_RETENTION_DAYS?: number;
|
|
3763
3800
|
};
|
|
3764
3801
|
export type ContainerFormatEnum = 'bare' | 'ovf' | 'aki' | 'ami' | 'ari';
|
|
3765
3802
|
export type CoreAuthToken = {
|
|
@@ -4285,6 +4322,24 @@ export type CustomerMemberCount = {
|
|
|
4285
4322
|
*/
|
|
4286
4323
|
readonly has_resources: boolean;
|
|
4287
4324
|
};
|
|
4325
|
+
export type CustomerMemberSummary = {
|
|
4326
|
+
/**
|
|
4327
|
+
* Total number of organizations
|
|
4328
|
+
*/
|
|
4329
|
+
total_organizations: number;
|
|
4330
|
+
/**
|
|
4331
|
+
* Total number of members across all organizations
|
|
4332
|
+
*/
|
|
4333
|
+
total_members: number;
|
|
4334
|
+
/**
|
|
4335
|
+
* Number of organizations with active resources
|
|
4336
|
+
*/
|
|
4337
|
+
organizations_with_resources: number;
|
|
4338
|
+
/**
|
|
4339
|
+
* Average number of members per organization
|
|
4340
|
+
*/
|
|
4341
|
+
average_members_per_org: number;
|
|
4342
|
+
};
|
|
4288
4343
|
export type CustomerOecdCodeStats = {
|
|
4289
4344
|
/**
|
|
4290
4345
|
* Name from the record
|
|
@@ -5033,7 +5088,7 @@ export type EventMetadataResponse = {
|
|
|
5033
5088
|
* Map of event group keys to lists of event type enums from EventType
|
|
5034
5089
|
*/
|
|
5035
5090
|
event_groups: {
|
|
5036
|
-
[key: string]: Array<'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_user_created' | 'marketplace_resource_user_deleted' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_update_succeeded' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked'>;
|
|
5091
|
+
[key: string]: Array<'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_user_created' | 'marketplace_resource_user_deleted' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'slurm_policy_evaluation' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_update_succeeded' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked'>;
|
|
5037
5092
|
};
|
|
5038
5093
|
};
|
|
5039
5094
|
export type EventStats = {
|
|
@@ -5112,7 +5167,7 @@ export type EventSubscriptionRequest = {
|
|
|
5112
5167
|
*/
|
|
5113
5168
|
observable_objects?: unknown;
|
|
5114
5169
|
};
|
|
5115
|
-
export type EventTypesEnum = 'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_user_created' | 'marketplace_resource_user_deleted' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_update_succeeded' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked';
|
|
5170
|
+
export type EventTypesEnum = 'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_user_created' | 'marketplace_resource_user_deleted' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'slurm_policy_evaluation' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_update_succeeded' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked';
|
|
5116
5171
|
export type ExecuteActionErrorResponse = {
|
|
5117
5172
|
error: string;
|
|
5118
5173
|
};
|
|
@@ -5481,6 +5536,7 @@ export type FreeipaProfileRequest = {
|
|
|
5481
5536
|
*/
|
|
5482
5537
|
agreement_date?: string;
|
|
5483
5538
|
};
|
|
5539
|
+
export type FrequencyEnum = 'weekly' | 'biweekly' | 'monthly';
|
|
5484
5540
|
export type GenderEnum = 0 | 1 | 2 | 9;
|
|
5485
5541
|
export type GenerateAssignmentsRequest = {
|
|
5486
5542
|
/**
|
|
@@ -8093,6 +8149,7 @@ export type MigrationDetailsRequest = {
|
|
|
8093
8149
|
error_traceback?: string;
|
|
8094
8150
|
};
|
|
8095
8151
|
export type MinimalConsumptionLogicEnum = 'fixed' | 'linear';
|
|
8152
|
+
export type ModeEnum = 'production' | 'emulator';
|
|
8096
8153
|
export type MoveOfferingRequest = {
|
|
8097
8154
|
/**
|
|
8098
8155
|
* Target customer URL with service provider profile where the offering should be moved
|
|
@@ -9139,6 +9196,20 @@ export type OfferingCost = {
|
|
|
9139
9196
|
*/
|
|
9140
9197
|
cost: number;
|
|
9141
9198
|
};
|
|
9199
|
+
export type OfferingCostsSummary = {
|
|
9200
|
+
/**
|
|
9201
|
+
* Total cost of all active resources across all offerings
|
|
9202
|
+
*/
|
|
9203
|
+
total_cost: string;
|
|
9204
|
+
/**
|
|
9205
|
+
* Number of offerings with active resources
|
|
9206
|
+
*/
|
|
9207
|
+
offering_count: number;
|
|
9208
|
+
/**
|
|
9209
|
+
* Average cost per offering
|
|
9210
|
+
*/
|
|
9211
|
+
average_cost: string;
|
|
9212
|
+
};
|
|
9142
9213
|
export type OfferingCountryStats = {
|
|
9143
9214
|
/**
|
|
9144
9215
|
* Country code of the offering
|
|
@@ -9168,6 +9239,7 @@ export type OfferingCreateRequest = {
|
|
|
9168
9239
|
options?: OfferingOptionsRequest;
|
|
9169
9240
|
resource_options?: OfferingOptionsRequest;
|
|
9170
9241
|
components?: Array<OfferingComponentRequest>;
|
|
9242
|
+
plugin_options?: MergedPluginOptionsRequest;
|
|
9171
9243
|
vendor_details?: string;
|
|
9172
9244
|
getting_started?: string;
|
|
9173
9245
|
integration_guide?: string;
|
|
@@ -11949,6 +12021,7 @@ export type OptionField = {
|
|
|
11949
12021
|
component_multiplier_config?: ComponentMultiplierConfig;
|
|
11950
12022
|
storage_folder_config?: StorageFolderConfig;
|
|
11951
12023
|
default_configs?: K8sDefaultConfiguration;
|
|
12024
|
+
validators?: Array<OptionValidator>;
|
|
11952
12025
|
};
|
|
11953
12026
|
export type OptionFieldRequest = {
|
|
11954
12027
|
type: OptionFieldTypeEnum;
|
|
@@ -11963,8 +12036,18 @@ export type OptionFieldRequest = {
|
|
|
11963
12036
|
component_multiplier_config?: ComponentMultiplierConfigRequest;
|
|
11964
12037
|
storage_folder_config?: StorageFolderConfigRequest;
|
|
11965
12038
|
default_configs?: K8sDefaultConfigurationRequest;
|
|
12039
|
+
validators?: Array<OptionValidatorRequest>;
|
|
11966
12040
|
};
|
|
11967
12041
|
export type OptionFieldTypeEnum = 'boolean' | 'integer' | 'money' | 'string' | 'text' | 'html_text' | 'select_string' | 'select_string_multi' | 'select_openstack_tenant' | 'select_multiple_openstack_tenants' | 'select_openstack_instance' | 'select_multiple_openstack_instances' | 'date' | 'time' | 'conditional_cascade' | 'component_multiplier' | 'single_datacenter_k8s_config' | 'multi_datacenter_k8s_config' | 'storage_folder_manager';
|
|
12042
|
+
export type OptionValidator = {
|
|
12043
|
+
type: OptionValidatorTypeEnum;
|
|
12044
|
+
target_field: string;
|
|
12045
|
+
};
|
|
12046
|
+
export type OptionValidatorRequest = {
|
|
12047
|
+
type: OptionValidatorTypeEnum;
|
|
12048
|
+
target_field: string;
|
|
12049
|
+
};
|
|
12050
|
+
export type OptionValidatorTypeEnum = 'gt' | 'gte' | 'lt' | 'lte';
|
|
11968
12051
|
export type OrcidCallbackRequest = {
|
|
11969
12052
|
/**
|
|
11970
12053
|
* Authorization code from ORCID OAuth callback
|
|
@@ -12196,6 +12279,26 @@ export type OrderUuid = {
|
|
|
12196
12279
|
*/
|
|
12197
12280
|
readonly order_uuid: string;
|
|
12198
12281
|
};
|
|
12282
|
+
export type OrderUpdate = {
|
|
12283
|
+
limits?: {
|
|
12284
|
+
[key: string]: number;
|
|
12285
|
+
};
|
|
12286
|
+
attributes?: unknown;
|
|
12287
|
+
/**
|
|
12288
|
+
* Enables delayed processing of resource provisioning order.
|
|
12289
|
+
*/
|
|
12290
|
+
start_date?: string | null;
|
|
12291
|
+
};
|
|
12292
|
+
export type OrderUpdateRequest = {
|
|
12293
|
+
limits?: {
|
|
12294
|
+
[key: string]: number;
|
|
12295
|
+
};
|
|
12296
|
+
attributes?: unknown;
|
|
12297
|
+
/**
|
|
12298
|
+
* Enables delayed processing of resource provisioning order.
|
|
12299
|
+
*/
|
|
12300
|
+
start_date?: string | null;
|
|
12301
|
+
};
|
|
12199
12302
|
export type OrganizationGroup = {
|
|
12200
12303
|
readonly uuid?: string;
|
|
12201
12304
|
readonly url?: string;
|
|
@@ -13146,6 +13249,16 @@ export type PatchedOpenStackVolumeRequest = {
|
|
|
13146
13249
|
*/
|
|
13147
13250
|
bootable?: boolean;
|
|
13148
13251
|
};
|
|
13252
|
+
export type PatchedOrderUpdateRequest = {
|
|
13253
|
+
limits?: {
|
|
13254
|
+
[key: string]: number;
|
|
13255
|
+
};
|
|
13256
|
+
attributes?: unknown;
|
|
13257
|
+
/**
|
|
13258
|
+
* Enables delayed processing of resource provisioning order.
|
|
13259
|
+
*/
|
|
13260
|
+
start_date?: string | null;
|
|
13261
|
+
};
|
|
13149
13262
|
export type PatchedOrganizationGroupRequest = {
|
|
13150
13263
|
name?: string;
|
|
13151
13264
|
parent?: string | null;
|
|
@@ -13173,6 +13286,22 @@ export type PatchedProjectCreditRequest = {
|
|
|
13173
13286
|
apply_as_minimal_consumption?: boolean;
|
|
13174
13287
|
mark_unused_credit_as_spent_on_project_termination?: boolean;
|
|
13175
13288
|
};
|
|
13289
|
+
export type PatchedProjectDigestConfigRequest = {
|
|
13290
|
+
is_enabled?: boolean;
|
|
13291
|
+
frequency?: FrequencyEnum;
|
|
13292
|
+
/**
|
|
13293
|
+
* List of section keys to include. Empty means all.
|
|
13294
|
+
*/
|
|
13295
|
+
enabled_sections?: string;
|
|
13296
|
+
/**
|
|
13297
|
+
* For weekly/biweekly: 0=Sunday..6=Saturday
|
|
13298
|
+
*/
|
|
13299
|
+
day_of_week?: number;
|
|
13300
|
+
/**
|
|
13301
|
+
* For monthly: day of month (1-28)
|
|
13302
|
+
*/
|
|
13303
|
+
day_of_month?: number;
|
|
13304
|
+
};
|
|
13176
13305
|
export type PatchedProjectEstimatedCostPolicyRequest = {
|
|
13177
13306
|
scope?: string;
|
|
13178
13307
|
actions?: string;
|
|
@@ -13836,9 +13965,9 @@ export type PatchedSlurmPeriodicUsagePolicyRequest = {
|
|
|
13836
13965
|
*/
|
|
13837
13966
|
tres_billing_weights?: unknown;
|
|
13838
13967
|
/**
|
|
13839
|
-
*
|
|
13968
|
+
* Maximum percentage of base allocation that can carry over from unused previous period (0-100)
|
|
13840
13969
|
*/
|
|
13841
|
-
|
|
13970
|
+
carryover_factor?: number;
|
|
13842
13971
|
/**
|
|
13843
13972
|
* Grace period ratio (0.2 = 20% overconsumption allowed)
|
|
13844
13973
|
*/
|
|
@@ -14401,6 +14530,20 @@ export type ProjectAttachRequest = {
|
|
|
14401
14530
|
*/
|
|
14402
14531
|
project_uuid: string;
|
|
14403
14532
|
};
|
|
14533
|
+
export type ProjectClassificationSummary = {
|
|
14534
|
+
/**
|
|
14535
|
+
* Total number of projects
|
|
14536
|
+
*/
|
|
14537
|
+
total_projects: number;
|
|
14538
|
+
/**
|
|
14539
|
+
* Number of academic projects (industry_flag=False)
|
|
14540
|
+
*/
|
|
14541
|
+
academic_projects: number;
|
|
14542
|
+
/**
|
|
14543
|
+
* Number of industry projects (industry_flag=True)
|
|
14544
|
+
*/
|
|
14545
|
+
industry_projects: number;
|
|
14546
|
+
};
|
|
14404
14547
|
export type ProjectCredit = {
|
|
14405
14548
|
readonly uuid: string;
|
|
14406
14549
|
readonly url: string;
|
|
@@ -14452,6 +14595,51 @@ export type ProjectDetailsResponse = {
|
|
|
14452
14595
|
readonly projects_requiring_review: number;
|
|
14453
14596
|
readonly project_details: Array<ProjectDetail>;
|
|
14454
14597
|
};
|
|
14598
|
+
export type ProjectDigestConfig = {
|
|
14599
|
+
readonly uuid: string;
|
|
14600
|
+
is_enabled?: boolean;
|
|
14601
|
+
frequency?: FrequencyEnum;
|
|
14602
|
+
/**
|
|
14603
|
+
* List of section keys to include. Empty means all.
|
|
14604
|
+
*/
|
|
14605
|
+
enabled_sections?: string;
|
|
14606
|
+
/**
|
|
14607
|
+
* For weekly/biweekly: 0=Sunday..6=Saturday
|
|
14608
|
+
*/
|
|
14609
|
+
day_of_week?: number;
|
|
14610
|
+
/**
|
|
14611
|
+
* For monthly: day of month (1-28)
|
|
14612
|
+
*/
|
|
14613
|
+
day_of_month?: number;
|
|
14614
|
+
readonly last_sent_at: string | null;
|
|
14615
|
+
readonly available_sections: Array<{
|
|
14616
|
+
[key: string]: string;
|
|
14617
|
+
}>;
|
|
14618
|
+
};
|
|
14619
|
+
export type ProjectDigestConfigRequest = {
|
|
14620
|
+
is_enabled?: boolean;
|
|
14621
|
+
frequency?: FrequencyEnum;
|
|
14622
|
+
/**
|
|
14623
|
+
* List of section keys to include. Empty means all.
|
|
14624
|
+
*/
|
|
14625
|
+
enabled_sections?: string;
|
|
14626
|
+
/**
|
|
14627
|
+
* For weekly/biweekly: 0=Sunday..6=Saturday
|
|
14628
|
+
*/
|
|
14629
|
+
day_of_week?: number;
|
|
14630
|
+
/**
|
|
14631
|
+
* For monthly: day of month (1-28)
|
|
14632
|
+
*/
|
|
14633
|
+
day_of_month?: number;
|
|
14634
|
+
};
|
|
14635
|
+
export type ProjectDigestPreviewRequest = {
|
|
14636
|
+
project_uuid: string;
|
|
14637
|
+
};
|
|
14638
|
+
export type ProjectDigestPreviewResponse = {
|
|
14639
|
+
subject: string;
|
|
14640
|
+
html_body: string;
|
|
14641
|
+
text_body: string;
|
|
14642
|
+
};
|
|
14455
14643
|
export type ProjectEstimatedCostPolicy = {
|
|
14456
14644
|
readonly uuid: string;
|
|
14457
14645
|
readonly url: string;
|
|
@@ -17456,6 +17644,7 @@ export type Resource = {
|
|
|
17456
17644
|
readonly parent_offering_uuid?: string;
|
|
17457
17645
|
readonly parent_offering_name?: string;
|
|
17458
17646
|
readonly parent_offering_slug?: string;
|
|
17647
|
+
readonly offering_backend_id?: string;
|
|
17459
17648
|
readonly parent_uuid?: string;
|
|
17460
17649
|
readonly parent_name?: string;
|
|
17461
17650
|
backend_metadata?: BackendMetadata;
|
|
@@ -17782,6 +17971,88 @@ export type ResourceUpdateRequest = {
|
|
|
17782
17971
|
*/
|
|
17783
17972
|
end_date?: string | null;
|
|
17784
17973
|
};
|
|
17974
|
+
export type ResourceUsageByAffiliation = {
|
|
17975
|
+
/**
|
|
17976
|
+
* User affiliation value
|
|
17977
|
+
*/
|
|
17978
|
+
affiliation: string;
|
|
17979
|
+
/**
|
|
17980
|
+
* Component type
|
|
17981
|
+
*/
|
|
17982
|
+
component_type: string;
|
|
17983
|
+
/**
|
|
17984
|
+
* Total usage
|
|
17985
|
+
*/
|
|
17986
|
+
total_usage: string;
|
|
17987
|
+
/**
|
|
17988
|
+
* Total cost
|
|
17989
|
+
*/
|
|
17990
|
+
total_cost: string;
|
|
17991
|
+
/**
|
|
17992
|
+
* Number of resources
|
|
17993
|
+
*/
|
|
17994
|
+
resource_count: number;
|
|
17995
|
+
};
|
|
17996
|
+
export type ResourceUsageByCustomer = {
|
|
17997
|
+
/**
|
|
17998
|
+
* UUID of the customer
|
|
17999
|
+
*/
|
|
18000
|
+
customer_uuid: string;
|
|
18001
|
+
/**
|
|
18002
|
+
* Name of the customer
|
|
18003
|
+
*/
|
|
18004
|
+
customer_name: string;
|
|
18005
|
+
/**
|
|
18006
|
+
* Abbreviation of the customer
|
|
18007
|
+
*/
|
|
18008
|
+
customer_abbreviation: string | null;
|
|
18009
|
+
/**
|
|
18010
|
+
* Number of OK resources
|
|
18011
|
+
*/
|
|
18012
|
+
resources_ok: number;
|
|
18013
|
+
/**
|
|
18014
|
+
* Number of erred resources
|
|
18015
|
+
*/
|
|
18016
|
+
resources_erred: number;
|
|
18017
|
+
/**
|
|
18018
|
+
* Total number of active resources
|
|
18019
|
+
*/
|
|
18020
|
+
resources_total: number;
|
|
18021
|
+
/**
|
|
18022
|
+
* Total cost of resources
|
|
18023
|
+
*/
|
|
18024
|
+
total_cost: string;
|
|
18025
|
+
/**
|
|
18026
|
+
* Component usages keyed by component type
|
|
18027
|
+
*/
|
|
18028
|
+
usages: {
|
|
18029
|
+
[key: string]: string;
|
|
18030
|
+
};
|
|
18031
|
+
/**
|
|
18032
|
+
* Resource limits keyed by limit name
|
|
18033
|
+
*/
|
|
18034
|
+
limits: {
|
|
18035
|
+
[key: string]: number;
|
|
18036
|
+
};
|
|
18037
|
+
};
|
|
18038
|
+
export type ResourceUsageByOrgType = {
|
|
18039
|
+
/**
|
|
18040
|
+
* SCHAC organization type URN
|
|
18041
|
+
*/
|
|
18042
|
+
organization_type: string | null;
|
|
18043
|
+
/**
|
|
18044
|
+
* Component type (e.g., cpu, gpu)
|
|
18045
|
+
*/
|
|
18046
|
+
component_type: string;
|
|
18047
|
+
/**
|
|
18048
|
+
* Total usage for this component
|
|
18049
|
+
*/
|
|
18050
|
+
usage: string;
|
|
18051
|
+
/**
|
|
18052
|
+
* Number of resources
|
|
18053
|
+
*/
|
|
18054
|
+
resource_count: number;
|
|
18055
|
+
};
|
|
17785
18056
|
export type ResourceUser = {
|
|
17786
18057
|
readonly uuid: string;
|
|
17787
18058
|
resource: string;
|
|
@@ -17803,16 +18074,23 @@ export type ResourceUserRequest = {
|
|
|
17803
18074
|
role: string;
|
|
17804
18075
|
user: string;
|
|
17805
18076
|
};
|
|
17806
|
-
export type
|
|
17807
|
-
|
|
17808
|
-
|
|
17809
|
-
|
|
17810
|
-
|
|
17811
|
-
|
|
17812
|
-
|
|
17813
|
-
|
|
17814
|
-
|
|
17815
|
-
|
|
18077
|
+
export type ResourcesGeographySummary = {
|
|
18078
|
+
/**
|
|
18079
|
+
* Total number of active resources
|
|
18080
|
+
*/
|
|
18081
|
+
total_resources: number;
|
|
18082
|
+
/**
|
|
18083
|
+
* Number of countries with active resources
|
|
18084
|
+
*/
|
|
18085
|
+
countries_count: number;
|
|
18086
|
+
/**
|
|
18087
|
+
* Number of organization groups with active resources
|
|
18088
|
+
*/
|
|
18089
|
+
org_groups_count: number;
|
|
18090
|
+
/**
|
|
18091
|
+
* Number of offerings with active resources
|
|
18092
|
+
*/
|
|
18093
|
+
offerings_count: number;
|
|
17816
18094
|
};
|
|
17817
18095
|
export type ResourcesLimits = {
|
|
17818
18096
|
/**
|
|
@@ -18970,6 +19248,9 @@ export type Saml2Provider = {
|
|
|
18970
19248
|
name: string;
|
|
18971
19249
|
url: string;
|
|
18972
19250
|
};
|
|
19251
|
+
export type ScimSyncAllResponse = {
|
|
19252
|
+
detail: string;
|
|
19253
|
+
};
|
|
18973
19254
|
export type Screenshot = {
|
|
18974
19255
|
readonly url: string;
|
|
18975
19256
|
readonly uuid: string;
|
|
@@ -19401,6 +19682,28 @@ export type SlurmCommandHistory = {
|
|
|
19401
19682
|
*/
|
|
19402
19683
|
error_message?: string;
|
|
19403
19684
|
};
|
|
19685
|
+
export type SlurmCommandResultRequest = {
|
|
19686
|
+
/**
|
|
19687
|
+
* UUID of the resource the command was applied to
|
|
19688
|
+
*/
|
|
19689
|
+
resource_uuid: string;
|
|
19690
|
+
/**
|
|
19691
|
+
* Whether the command was applied successfully
|
|
19692
|
+
*/
|
|
19693
|
+
success: boolean;
|
|
19694
|
+
/**
|
|
19695
|
+
* Error message if the command failed
|
|
19696
|
+
*/
|
|
19697
|
+
error_message?: string;
|
|
19698
|
+
/**
|
|
19699
|
+
* Execution mode of the command
|
|
19700
|
+
*/
|
|
19701
|
+
mode?: ModeEnum;
|
|
19702
|
+
/**
|
|
19703
|
+
* List of shell commands actually executed by the site agent
|
|
19704
|
+
*/
|
|
19705
|
+
commands_executed?: Array<string>;
|
|
19706
|
+
};
|
|
19404
19707
|
export type SlurmPeriodicUsagePolicy = {
|
|
19405
19708
|
readonly uuid: string;
|
|
19406
19709
|
readonly url: string;
|
|
@@ -19438,9 +19741,9 @@ export type SlurmPeriodicUsagePolicy = {
|
|
|
19438
19741
|
*/
|
|
19439
19742
|
tres_billing_weights?: unknown;
|
|
19440
19743
|
/**
|
|
19441
|
-
*
|
|
19744
|
+
* Maximum percentage of base allocation that can carry over from unused previous period (0-100)
|
|
19442
19745
|
*/
|
|
19443
|
-
|
|
19746
|
+
carryover_factor?: number;
|
|
19444
19747
|
/**
|
|
19445
19748
|
* Grace period ratio (0.2 = 20% overconsumption allowed)
|
|
19446
19749
|
*/
|
|
@@ -19485,9 +19788,9 @@ export type SlurmPeriodicUsagePolicyRequest = {
|
|
|
19485
19788
|
*/
|
|
19486
19789
|
tres_billing_weights?: unknown;
|
|
19487
19790
|
/**
|
|
19488
|
-
*
|
|
19791
|
+
* Maximum percentage of base allocation that can carry over from unused previous period (0-100)
|
|
19489
19792
|
*/
|
|
19490
|
-
|
|
19793
|
+
carryover_factor?: number;
|
|
19491
19794
|
/**
|
|
19492
19795
|
* Grace period ratio (0.2 = 20% overconsumption allowed)
|
|
19493
19796
|
*/
|
|
@@ -19507,12 +19810,11 @@ export type SlurmPeriodicUsagePolicyRequest = {
|
|
|
19507
19810
|
};
|
|
19508
19811
|
export type SlurmPolicyCarryover = {
|
|
19509
19812
|
previous_usage: number;
|
|
19510
|
-
|
|
19511
|
-
half_life: number;
|
|
19512
|
-
decay_factor: number;
|
|
19513
|
-
effective_usage: number;
|
|
19813
|
+
carryover_factor: number;
|
|
19514
19814
|
base_allocation: number;
|
|
19515
|
-
|
|
19815
|
+
unused: number;
|
|
19816
|
+
carryover_cap: number;
|
|
19817
|
+
carryover: number;
|
|
19516
19818
|
total_allocation: number;
|
|
19517
19819
|
};
|
|
19518
19820
|
export type SlurmPolicyDateProjection = {
|
|
@@ -19526,6 +19828,88 @@ export type SlurmPolicyDateProjections = {
|
|
|
19526
19828
|
slowdown: SlurmPolicyDateProjection;
|
|
19527
19829
|
blocked: SlurmPolicyDateProjection;
|
|
19528
19830
|
};
|
|
19831
|
+
export type SlurmPolicyDryRunResource = {
|
|
19832
|
+
resource_uuid: string;
|
|
19833
|
+
resource_name: string;
|
|
19834
|
+
usage_percentage: number;
|
|
19835
|
+
paused: boolean;
|
|
19836
|
+
downscaled: boolean;
|
|
19837
|
+
would_trigger: Array<string>;
|
|
19838
|
+
};
|
|
19839
|
+
export type SlurmPolicyDryRunResponse = {
|
|
19840
|
+
policy_uuid: string;
|
|
19841
|
+
billing_period: string;
|
|
19842
|
+
grace_limit_percentage: number;
|
|
19843
|
+
resources: Array<SlurmPolicyDryRunResource>;
|
|
19844
|
+
};
|
|
19845
|
+
export type SlurmPolicyEvaluateRequestRequest = {
|
|
19846
|
+
/**
|
|
19847
|
+
* Evaluate a specific resource. If omitted, evaluates all offering resources.
|
|
19848
|
+
*/
|
|
19849
|
+
resource_uuid?: string | null;
|
|
19850
|
+
};
|
|
19851
|
+
export type SlurmPolicyEvaluateResource = {
|
|
19852
|
+
resource_uuid: string;
|
|
19853
|
+
resource_name: string;
|
|
19854
|
+
usage_percentage: number;
|
|
19855
|
+
actions_taken: Array<string>;
|
|
19856
|
+
previous_state: {
|
|
19857
|
+
[key: string]: unknown;
|
|
19858
|
+
};
|
|
19859
|
+
new_state: {
|
|
19860
|
+
[key: string]: unknown;
|
|
19861
|
+
};
|
|
19862
|
+
};
|
|
19863
|
+
export type SlurmPolicyEvaluateResponse = {
|
|
19864
|
+
policy_uuid: string;
|
|
19865
|
+
billing_period: string;
|
|
19866
|
+
resources: Array<SlurmPolicyEvaluateResource>;
|
|
19867
|
+
};
|
|
19868
|
+
export type SlurmPolicyEvaluationLog = {
|
|
19869
|
+
readonly uuid: string;
|
|
19870
|
+
readonly resource_uuid: string;
|
|
19871
|
+
readonly resource_name: string;
|
|
19872
|
+
/**
|
|
19873
|
+
* Billing period identifier, e.g. '2026-Q1'
|
|
19874
|
+
*/
|
|
19875
|
+
billing_period: string;
|
|
19876
|
+
/**
|
|
19877
|
+
* Resource usage percentage at the time of evaluation
|
|
19878
|
+
*/
|
|
19879
|
+
usage_percentage: number;
|
|
19880
|
+
/**
|
|
19881
|
+
* Grace limit percentage threshold (e.g. 120 for 20% grace)
|
|
19882
|
+
*/
|
|
19883
|
+
grace_limit_percentage: number;
|
|
19884
|
+
/**
|
|
19885
|
+
* List of actions taken during this evaluation (e.g. ['pause', 'notify'])
|
|
19886
|
+
*/
|
|
19887
|
+
actions_taken?: unknown;
|
|
19888
|
+
/**
|
|
19889
|
+
* Resource state before evaluation: {paused: bool, downscaled: bool}
|
|
19890
|
+
*/
|
|
19891
|
+
previous_state?: unknown;
|
|
19892
|
+
/**
|
|
19893
|
+
* Resource state after evaluation: {paused: bool, downscaled: bool}
|
|
19894
|
+
*/
|
|
19895
|
+
new_state?: unknown;
|
|
19896
|
+
/**
|
|
19897
|
+
* Whether a STOMP message was sent to the site agent
|
|
19898
|
+
*/
|
|
19899
|
+
stomp_message_sent?: boolean;
|
|
19900
|
+
/**
|
|
19901
|
+
* Whether the site agent confirmed command execution (null = no response yet)
|
|
19902
|
+
*/
|
|
19903
|
+
site_agent_confirmed?: boolean | null;
|
|
19904
|
+
/**
|
|
19905
|
+
* Response payload from the site agent
|
|
19906
|
+
*/
|
|
19907
|
+
site_agent_response?: unknown;
|
|
19908
|
+
/**
|
|
19909
|
+
* When this evaluation was performed
|
|
19910
|
+
*/
|
|
19911
|
+
readonly evaluated_at: string;
|
|
19912
|
+
};
|
|
19529
19913
|
export type SlurmPolicyPreviewRequestRequest = {
|
|
19530
19914
|
/**
|
|
19531
19915
|
* Base allocation for the period (in node-hours or billing units)
|
|
@@ -19540,17 +19924,13 @@ export type SlurmPolicyPreviewRequestRequest = {
|
|
|
19540
19924
|
*/
|
|
19541
19925
|
previous_usage?: number;
|
|
19542
19926
|
/**
|
|
19543
|
-
*
|
|
19927
|
+
* Maximum percentage of base allocation that can carry over (0-100)
|
|
19544
19928
|
*/
|
|
19545
|
-
|
|
19929
|
+
carryover_factor?: number;
|
|
19546
19930
|
/**
|
|
19547
19931
|
* Whether unused allocation carries over to next period
|
|
19548
19932
|
*/
|
|
19549
19933
|
carryover_enabled?: boolean;
|
|
19550
|
-
/**
|
|
19551
|
-
* Days elapsed since previous period (90 for quarterly)
|
|
19552
|
-
*/
|
|
19553
|
-
days_elapsed?: number;
|
|
19554
19934
|
/**
|
|
19555
19935
|
* Optional resource UUID to use for current usage data
|
|
19556
19936
|
*/
|
|
@@ -19571,7 +19951,7 @@ export type SlurmPolicyPreviewResponse = {
|
|
|
19571
19951
|
carryover: SlurmPolicyCarryover | null;
|
|
19572
19952
|
thresholds: SlurmPolicyThresholds;
|
|
19573
19953
|
grace_ratio: number;
|
|
19574
|
-
|
|
19954
|
+
carryover_factor: number;
|
|
19575
19955
|
current_usage?: number;
|
|
19576
19956
|
daily_usage_rate?: number;
|
|
19577
19957
|
usage_percentage?: number;
|
|
@@ -20581,6 +20961,16 @@ export type UserInfoRequest = {
|
|
|
20581
20961
|
shortname?: string | null;
|
|
20582
20962
|
user: string;
|
|
20583
20963
|
};
|
|
20964
|
+
export type UserJobTitleCount = {
|
|
20965
|
+
/**
|
|
20966
|
+
* Job title
|
|
20967
|
+
*/
|
|
20968
|
+
job_title: string | null;
|
|
20969
|
+
/**
|
|
20970
|
+
* Number of users
|
|
20971
|
+
*/
|
|
20972
|
+
count: number;
|
|
20973
|
+
};
|
|
20584
20974
|
export type UserLanguageCount = {
|
|
20585
20975
|
language: string;
|
|
20586
20976
|
count: number;
|
|
@@ -20632,6 +21022,16 @@ export type UserOrganizationCount = {
|
|
|
20632
21022
|
*/
|
|
20633
21023
|
count: number;
|
|
20634
21024
|
};
|
|
21025
|
+
export type UserOrganizationTypeCount = {
|
|
21026
|
+
/**
|
|
21027
|
+
* Organization type (SCHAC URN)
|
|
21028
|
+
*/
|
|
21029
|
+
organization_type: string | null;
|
|
21030
|
+
/**
|
|
21031
|
+
* Number of users
|
|
21032
|
+
*/
|
|
21033
|
+
count: number;
|
|
21034
|
+
};
|
|
20635
21035
|
export type UserRegistrationTrend = {
|
|
20636
21036
|
month: string;
|
|
20637
21037
|
count: number;
|
|
@@ -20773,6 +21173,32 @@ export type VersionAdoption = {
|
|
|
20773
21173
|
*/
|
|
20774
21174
|
readonly users_count: number;
|
|
20775
21175
|
};
|
|
21176
|
+
export type VersionHistory = {
|
|
21177
|
+
/**
|
|
21178
|
+
* Version ID
|
|
21179
|
+
*/
|
|
21180
|
+
id: number;
|
|
21181
|
+
/**
|
|
21182
|
+
* When this revision was created
|
|
21183
|
+
*/
|
|
21184
|
+
revision_date: string;
|
|
21185
|
+
/**
|
|
21186
|
+
* User who created this revision
|
|
21187
|
+
*/
|
|
21188
|
+
readonly revision_user: {
|
|
21189
|
+
[key: string]: unknown;
|
|
21190
|
+
} | null;
|
|
21191
|
+
/**
|
|
21192
|
+
* Comment describing the revision
|
|
21193
|
+
*/
|
|
21194
|
+
revision_comment: string;
|
|
21195
|
+
/**
|
|
21196
|
+
* Serialized model fields at this revision
|
|
21197
|
+
*/
|
|
21198
|
+
readonly serialized_data: {
|
|
21199
|
+
[key: string]: unknown;
|
|
21200
|
+
};
|
|
21201
|
+
};
|
|
20776
21202
|
export type VisibilityEnum = 'private' | 'public';
|
|
20777
21203
|
export type VisibleInvitationDetails = {
|
|
20778
21204
|
/**
|
|
@@ -21851,6 +22277,7 @@ export type OfferingCreateRequestForm = {
|
|
|
21851
22277
|
options?: OfferingOptionsRequest;
|
|
21852
22278
|
resource_options?: OfferingOptionsRequest;
|
|
21853
22279
|
components?: Array<OfferingComponentRequest>;
|
|
22280
|
+
plugin_options?: MergedPluginOptionsRequest;
|
|
21854
22281
|
vendor_details?: string;
|
|
21855
22282
|
getting_started?: string;
|
|
21856
22283
|
integration_guide?: string;
|
|
@@ -21899,6 +22326,7 @@ export type OfferingCreateRequestMultipart = {
|
|
|
21899
22326
|
options?: OfferingOptionsRequest;
|
|
21900
22327
|
resource_options?: OfferingOptionsRequest;
|
|
21901
22328
|
components?: Array<OfferingComponentRequest>;
|
|
22329
|
+
plugin_options?: MergedPluginOptionsRequest;
|
|
21902
22330
|
vendor_details?: string;
|
|
21903
22331
|
getting_started?: string;
|
|
21904
22332
|
integration_guide?: string;
|
|
@@ -22371,6 +22799,10 @@ export type ConstanceSettingsRequestForm = {
|
|
|
22371
22799
|
FREEIPA_GROUPNAME_PREFIX?: string;
|
|
22372
22800
|
FREEIPA_BLACKLISTED_USERNAMES?: Array<string>;
|
|
22373
22801
|
FREEIPA_GROUP_SYNCHRONIZATION_ENABLED?: boolean;
|
|
22802
|
+
SCIM_MEMBERSHIP_SYNC_ENABLED?: boolean;
|
|
22803
|
+
SCIM_API_URL?: string;
|
|
22804
|
+
SCIM_API_KEY?: string;
|
|
22805
|
+
SCIM_URN_NAMESPACE?: string;
|
|
22374
22806
|
KEYCLOAK_ICON?: (Blob | File) | null;
|
|
22375
22807
|
COUNTRIES?: Array<string>;
|
|
22376
22808
|
OIDC_AUTH_URL?: string;
|
|
@@ -22437,6 +22869,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
22437
22869
|
USER_DATA_ACCESS_LOGGING_ENABLED?: boolean;
|
|
22438
22870
|
USER_DATA_ACCESS_LOG_RETENTION_DAYS?: number;
|
|
22439
22871
|
USER_DATA_ACCESS_LOG_SELF_ACCESS?: boolean;
|
|
22872
|
+
SLURM_POLICY_EVALUATION_LOG_RETENTION_DAYS?: number;
|
|
22440
22873
|
};
|
|
22441
22874
|
export type ConstanceSettingsRequestMultipart = {
|
|
22442
22875
|
SITE_NAME?: string;
|
|
@@ -22587,6 +23020,10 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
22587
23020
|
FREEIPA_GROUPNAME_PREFIX?: string;
|
|
22588
23021
|
FREEIPA_BLACKLISTED_USERNAMES?: Array<string>;
|
|
22589
23022
|
FREEIPA_GROUP_SYNCHRONIZATION_ENABLED?: boolean;
|
|
23023
|
+
SCIM_MEMBERSHIP_SYNC_ENABLED?: boolean;
|
|
23024
|
+
SCIM_API_URL?: string;
|
|
23025
|
+
SCIM_API_KEY?: string;
|
|
23026
|
+
SCIM_URN_NAMESPACE?: string;
|
|
22590
23027
|
KEYCLOAK_ICON?: (Blob | File) | null;
|
|
22591
23028
|
COUNTRIES?: Array<string>;
|
|
22592
23029
|
OIDC_AUTH_URL?: string;
|
|
@@ -22653,6 +23090,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
22653
23090
|
USER_DATA_ACCESS_LOGGING_ENABLED?: boolean;
|
|
22654
23091
|
USER_DATA_ACCESS_LOG_RETENTION_DAYS?: number;
|
|
22655
23092
|
USER_DATA_ACCESS_LOG_SELF_ACCESS?: boolean;
|
|
23093
|
+
SLURM_POLICY_EVALUATION_LOG_RETENTION_DAYS?: number;
|
|
22656
23094
|
};
|
|
22657
23095
|
export type PaymentRequestForm = {
|
|
22658
23096
|
profile: string;
|
|
@@ -26710,7 +27148,7 @@ export type BookingResourcesListData = {
|
|
|
26710
27148
|
* Downscaled
|
|
26711
27149
|
*/
|
|
26712
27150
|
downscaled?: boolean;
|
|
26713
|
-
field?: Array<'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_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
27151
|
+
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
26714
27152
|
/**
|
|
26715
27153
|
* Has termination date
|
|
26716
27154
|
*/
|
|
@@ -27038,7 +27476,7 @@ export type BookingResourcesRetrieveData = {
|
|
|
27038
27476
|
uuid: string;
|
|
27039
27477
|
};
|
|
27040
27478
|
query?: {
|
|
27041
|
-
field?: Array<'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_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
27479
|
+
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
27042
27480
|
};
|
|
27043
27481
|
url: '/api/booking-resources/{uuid}/';
|
|
27044
27482
|
};
|
|
@@ -29694,6 +30132,105 @@ export type CustomersDeleteUserResponses = {
|
|
|
29694
30132
|
*/
|
|
29695
30133
|
200: unknown;
|
|
29696
30134
|
};
|
|
30135
|
+
export type CustomersHistoryListData = {
|
|
30136
|
+
body?: never;
|
|
30137
|
+
path: {
|
|
30138
|
+
uuid: string;
|
|
30139
|
+
};
|
|
30140
|
+
query?: {
|
|
30141
|
+
/**
|
|
30142
|
+
* Abbreviation
|
|
30143
|
+
*/
|
|
30144
|
+
abbreviation?: string;
|
|
30145
|
+
agreement_number?: string;
|
|
30146
|
+
archived?: boolean;
|
|
30147
|
+
backend_id?: string;
|
|
30148
|
+
/**
|
|
30149
|
+
* Contact details
|
|
30150
|
+
*/
|
|
30151
|
+
contact_details?: string;
|
|
30152
|
+
/**
|
|
30153
|
+
* Filter versions created after this timestamp (ISO 8601)
|
|
30154
|
+
*/
|
|
30155
|
+
created_after?: string;
|
|
30156
|
+
/**
|
|
30157
|
+
* Filter versions created before this timestamp (ISO 8601)
|
|
30158
|
+
*/
|
|
30159
|
+
created_before?: string;
|
|
30160
|
+
/**
|
|
30161
|
+
* Name
|
|
30162
|
+
*/
|
|
30163
|
+
name?: string;
|
|
30164
|
+
/**
|
|
30165
|
+
* Name (exact)
|
|
30166
|
+
*/
|
|
30167
|
+
name_exact?: string;
|
|
30168
|
+
/**
|
|
30169
|
+
* Native name
|
|
30170
|
+
*/
|
|
30171
|
+
native_name?: string;
|
|
30172
|
+
/**
|
|
30173
|
+
* Which field to use when ordering the results.
|
|
30174
|
+
*/
|
|
30175
|
+
o?: string;
|
|
30176
|
+
/**
|
|
30177
|
+
* Organization group name
|
|
30178
|
+
*/
|
|
30179
|
+
organization_group_name?: string;
|
|
30180
|
+
/**
|
|
30181
|
+
* Organization group UUID
|
|
30182
|
+
*/
|
|
30183
|
+
organization_group_uuid?: Array<string>;
|
|
30184
|
+
/**
|
|
30185
|
+
* Return a list of customers where current user is owner.
|
|
30186
|
+
*/
|
|
30187
|
+
owned_by_current_user?: boolean;
|
|
30188
|
+
/**
|
|
30189
|
+
* A page number within the paginated result set.
|
|
30190
|
+
*/
|
|
30191
|
+
page?: number;
|
|
30192
|
+
/**
|
|
30193
|
+
* Number of results to return per page.
|
|
30194
|
+
*/
|
|
30195
|
+
page_size?: number;
|
|
30196
|
+
/**
|
|
30197
|
+
* Filter by name, native name, abbreviation, domain, UUID, registration code or agreement number
|
|
30198
|
+
*/
|
|
30199
|
+
query?: string;
|
|
30200
|
+
registration_code?: string;
|
|
30201
|
+
};
|
|
30202
|
+
url: '/api/customers/{uuid}/history/';
|
|
30203
|
+
};
|
|
30204
|
+
export type CustomersHistoryListResponses = {
|
|
30205
|
+
200: Array<VersionHistory>;
|
|
30206
|
+
};
|
|
30207
|
+
export type CustomersHistoryListResponse = CustomersHistoryListResponses[keyof CustomersHistoryListResponses];
|
|
30208
|
+
export type CustomersHistoryAtRetrieveData = {
|
|
30209
|
+
body?: never;
|
|
30210
|
+
path: {
|
|
30211
|
+
uuid: string;
|
|
30212
|
+
};
|
|
30213
|
+
query: {
|
|
30214
|
+
/**
|
|
30215
|
+
* ISO 8601 timestamp to query the object state at
|
|
30216
|
+
*/
|
|
30217
|
+
timestamp: string;
|
|
30218
|
+
};
|
|
30219
|
+
url: '/api/customers/{uuid}/history/at/';
|
|
30220
|
+
};
|
|
30221
|
+
export type CustomersHistoryAtRetrieveErrors = {
|
|
30222
|
+
400: {
|
|
30223
|
+
[key: string]: unknown;
|
|
30224
|
+
};
|
|
30225
|
+
404: {
|
|
30226
|
+
[key: string]: unknown;
|
|
30227
|
+
};
|
|
30228
|
+
};
|
|
30229
|
+
export type CustomersHistoryAtRetrieveError = CustomersHistoryAtRetrieveErrors[keyof CustomersHistoryAtRetrieveErrors];
|
|
30230
|
+
export type CustomersHistoryAtRetrieveResponses = {
|
|
30231
|
+
200: VersionHistory;
|
|
30232
|
+
};
|
|
30233
|
+
export type CustomersHistoryAtRetrieveResponse = CustomersHistoryAtRetrieveResponses[keyof CustomersHistoryAtRetrieveResponses];
|
|
29697
30234
|
export type CustomersListUsersListData = {
|
|
29698
30235
|
body?: never;
|
|
29699
30236
|
path: {
|
|
@@ -29755,6 +30292,44 @@ export type CustomersListUsersListResponses = {
|
|
|
29755
30292
|
200: Array<UserRoleDetails>;
|
|
29756
30293
|
};
|
|
29757
30294
|
export type CustomersListUsersListResponse = CustomersListUsersListResponses[keyof CustomersListUsersListResponses];
|
|
30295
|
+
export type CustomersProjectDigestConfigRetrieveData = {
|
|
30296
|
+
body?: never;
|
|
30297
|
+
path: {
|
|
30298
|
+
uuid: string;
|
|
30299
|
+
};
|
|
30300
|
+
query?: never;
|
|
30301
|
+
url: '/api/customers/{uuid}/project-digest-config/';
|
|
30302
|
+
};
|
|
30303
|
+
export type CustomersProjectDigestConfigRetrieveResponses = {
|
|
30304
|
+
200: ProjectDigestConfig;
|
|
30305
|
+
};
|
|
30306
|
+
export type CustomersProjectDigestConfigRetrieveResponse = CustomersProjectDigestConfigRetrieveResponses[keyof CustomersProjectDigestConfigRetrieveResponses];
|
|
30307
|
+
export type CustomersProjectDigestConfigPreviewData = {
|
|
30308
|
+
body: ProjectDigestPreviewRequest;
|
|
30309
|
+
path: {
|
|
30310
|
+
uuid: string;
|
|
30311
|
+
};
|
|
30312
|
+
query?: never;
|
|
30313
|
+
url: '/api/customers/{uuid}/project-digest-config/preview/';
|
|
30314
|
+
};
|
|
30315
|
+
export type CustomersProjectDigestConfigPreviewResponses = {
|
|
30316
|
+
200: ProjectDigestPreviewResponse;
|
|
30317
|
+
};
|
|
30318
|
+
export type CustomersProjectDigestConfigPreviewResponse = CustomersProjectDigestConfigPreviewResponses[keyof CustomersProjectDigestConfigPreviewResponses];
|
|
30319
|
+
export type CustomersProjectDigestConfigSendTestData = {
|
|
30320
|
+
body?: never;
|
|
30321
|
+
path: {
|
|
30322
|
+
uuid: string;
|
|
30323
|
+
};
|
|
30324
|
+
query?: never;
|
|
30325
|
+
url: '/api/customers/{uuid}/project-digest-config/send-test/';
|
|
30326
|
+
};
|
|
30327
|
+
export type CustomersProjectDigestConfigSendTestResponses = {
|
|
30328
|
+
/**
|
|
30329
|
+
* No response body
|
|
30330
|
+
*/
|
|
30331
|
+
200: unknown;
|
|
30332
|
+
};
|
|
29758
30333
|
export type CustomersStatsRetrieveData = {
|
|
29759
30334
|
body?: never;
|
|
29760
30335
|
path: {
|
|
@@ -29772,6 +30347,30 @@ export type CustomersStatsRetrieveResponses = {
|
|
|
29772
30347
|
200: ComponentsUsageStats;
|
|
29773
30348
|
};
|
|
29774
30349
|
export type CustomersStatsRetrieveResponse = CustomersStatsRetrieveResponses[keyof CustomersStatsRetrieveResponses];
|
|
30350
|
+
export type CustomersUpdateProjectDigestConfigPartialUpdateData = {
|
|
30351
|
+
body?: PatchedProjectDigestConfigRequest;
|
|
30352
|
+
path: {
|
|
30353
|
+
uuid: string;
|
|
30354
|
+
};
|
|
30355
|
+
query?: never;
|
|
30356
|
+
url: '/api/customers/{uuid}/update-project-digest-config/';
|
|
30357
|
+
};
|
|
30358
|
+
export type CustomersUpdateProjectDigestConfigPartialUpdateResponses = {
|
|
30359
|
+
200: ProjectDigestConfig;
|
|
30360
|
+
};
|
|
30361
|
+
export type CustomersUpdateProjectDigestConfigPartialUpdateResponse = CustomersUpdateProjectDigestConfigPartialUpdateResponses[keyof CustomersUpdateProjectDigestConfigPartialUpdateResponses];
|
|
30362
|
+
export type CustomersUpdateProjectDigestConfigUpdateData = {
|
|
30363
|
+
body?: ProjectDigestConfigRequest;
|
|
30364
|
+
path: {
|
|
30365
|
+
uuid: string;
|
|
30366
|
+
};
|
|
30367
|
+
query?: never;
|
|
30368
|
+
url: '/api/customers/{uuid}/update-project-digest-config/';
|
|
30369
|
+
};
|
|
30370
|
+
export type CustomersUpdateProjectDigestConfigUpdateResponses = {
|
|
30371
|
+
200: ProjectDigestConfig;
|
|
30372
|
+
};
|
|
30373
|
+
export type CustomersUpdateProjectDigestConfigUpdateResponse = CustomersUpdateProjectDigestConfigUpdateResponses[keyof CustomersUpdateProjectDigestConfigUpdateResponses];
|
|
29775
30374
|
export type CustomersUpdateOrganizationGroupsData = {
|
|
29776
30375
|
body?: OrganizationGroupsRequest;
|
|
29777
30376
|
path: {
|
|
@@ -32628,6 +33227,75 @@ export type InvoicesRetrieveResponses = {
|
|
|
32628
33227
|
200: Invoice;
|
|
32629
33228
|
};
|
|
32630
33229
|
export type InvoicesRetrieveResponse = InvoicesRetrieveResponses[keyof InvoicesRetrieveResponses];
|
|
33230
|
+
export type InvoicesHistoryListData = {
|
|
33231
|
+
body?: never;
|
|
33232
|
+
path: {
|
|
33233
|
+
uuid: string;
|
|
33234
|
+
};
|
|
33235
|
+
query?: {
|
|
33236
|
+
created?: string;
|
|
33237
|
+
/**
|
|
33238
|
+
* Filter versions created after this timestamp (ISO 8601)
|
|
33239
|
+
*/
|
|
33240
|
+
created_after?: string;
|
|
33241
|
+
/**
|
|
33242
|
+
* Filter versions created before this timestamp (ISO 8601)
|
|
33243
|
+
*/
|
|
33244
|
+
created_before?: string;
|
|
33245
|
+
customer?: string;
|
|
33246
|
+
customer_uuid?: string;
|
|
33247
|
+
end_date?: string;
|
|
33248
|
+
month?: number;
|
|
33249
|
+
/**
|
|
33250
|
+
* Ordering
|
|
33251
|
+
*
|
|
33252
|
+
*
|
|
33253
|
+
*/
|
|
33254
|
+
o?: Array<'-created' | '-month' | '-year' | 'created' | 'month' | 'year'>;
|
|
33255
|
+
/**
|
|
33256
|
+
* A page number within the paginated result set.
|
|
33257
|
+
*/
|
|
33258
|
+
page?: number;
|
|
33259
|
+
/**
|
|
33260
|
+
* Number of results to return per page.
|
|
33261
|
+
*/
|
|
33262
|
+
page_size?: number;
|
|
33263
|
+
start_date?: string;
|
|
33264
|
+
state?: Array<'canceled' | 'created' | 'paid' | 'pending'>;
|
|
33265
|
+
year?: number;
|
|
33266
|
+
};
|
|
33267
|
+
url: '/api/invoices/{uuid}/history/';
|
|
33268
|
+
};
|
|
33269
|
+
export type InvoicesHistoryListResponses = {
|
|
33270
|
+
200: Array<VersionHistory>;
|
|
33271
|
+
};
|
|
33272
|
+
export type InvoicesHistoryListResponse = InvoicesHistoryListResponses[keyof InvoicesHistoryListResponses];
|
|
33273
|
+
export type InvoicesHistoryAtRetrieveData = {
|
|
33274
|
+
body?: never;
|
|
33275
|
+
path: {
|
|
33276
|
+
uuid: string;
|
|
33277
|
+
};
|
|
33278
|
+
query: {
|
|
33279
|
+
/**
|
|
33280
|
+
* ISO 8601 timestamp to query the object state at
|
|
33281
|
+
*/
|
|
33282
|
+
timestamp: string;
|
|
33283
|
+
};
|
|
33284
|
+
url: '/api/invoices/{uuid}/history/at/';
|
|
33285
|
+
};
|
|
33286
|
+
export type InvoicesHistoryAtRetrieveErrors = {
|
|
33287
|
+
400: {
|
|
33288
|
+
[key: string]: unknown;
|
|
33289
|
+
};
|
|
33290
|
+
404: {
|
|
33291
|
+
[key: string]: unknown;
|
|
33292
|
+
};
|
|
33293
|
+
};
|
|
33294
|
+
export type InvoicesHistoryAtRetrieveError = InvoicesHistoryAtRetrieveErrors[keyof InvoicesHistoryAtRetrieveErrors];
|
|
33295
|
+
export type InvoicesHistoryAtRetrieveResponses = {
|
|
33296
|
+
200: VersionHistory;
|
|
33297
|
+
};
|
|
33298
|
+
export type InvoicesHistoryAtRetrieveResponse = InvoicesHistoryAtRetrieveResponses[keyof InvoicesHistoryAtRetrieveResponses];
|
|
32631
33299
|
export type InvoicesItemsRetrieveData = {
|
|
32632
33300
|
body?: never;
|
|
32633
33301
|
path: {
|
|
@@ -33122,6 +33790,95 @@ export type KeysRetrieveResponses = {
|
|
|
33122
33790
|
200: SshKey;
|
|
33123
33791
|
};
|
|
33124
33792
|
export type KeysRetrieveResponse = KeysRetrieveResponses[keyof KeysRetrieveResponses];
|
|
33793
|
+
export type KeysHistoryListData = {
|
|
33794
|
+
body?: never;
|
|
33795
|
+
path: {
|
|
33796
|
+
uuid: string;
|
|
33797
|
+
};
|
|
33798
|
+
query?: {
|
|
33799
|
+
/**
|
|
33800
|
+
* Created after
|
|
33801
|
+
*/
|
|
33802
|
+
created?: string;
|
|
33803
|
+
/**
|
|
33804
|
+
* Filter versions created after this timestamp (ISO 8601)
|
|
33805
|
+
*/
|
|
33806
|
+
created_after?: string;
|
|
33807
|
+
/**
|
|
33808
|
+
* Filter versions created before this timestamp (ISO 8601)
|
|
33809
|
+
*/
|
|
33810
|
+
created_before?: string;
|
|
33811
|
+
fingerprint_md5?: string;
|
|
33812
|
+
fingerprint_sha256?: string;
|
|
33813
|
+
fingerprint_sha512?: string;
|
|
33814
|
+
is_shared?: boolean;
|
|
33815
|
+
/**
|
|
33816
|
+
* Modified after
|
|
33817
|
+
*/
|
|
33818
|
+
modified?: string;
|
|
33819
|
+
/**
|
|
33820
|
+
* Name
|
|
33821
|
+
*/
|
|
33822
|
+
name?: string;
|
|
33823
|
+
/**
|
|
33824
|
+
* Name (exact)
|
|
33825
|
+
*/
|
|
33826
|
+
name_exact?: string;
|
|
33827
|
+
/**
|
|
33828
|
+
* Ordering
|
|
33829
|
+
*
|
|
33830
|
+
*
|
|
33831
|
+
*/
|
|
33832
|
+
o?: Array<'-name' | 'name'>;
|
|
33833
|
+
/**
|
|
33834
|
+
* A page number within the paginated result set.
|
|
33835
|
+
*/
|
|
33836
|
+
page?: number;
|
|
33837
|
+
/**
|
|
33838
|
+
* Number of results to return per page.
|
|
33839
|
+
*/
|
|
33840
|
+
page_size?: number;
|
|
33841
|
+
/**
|
|
33842
|
+
* User UUID
|
|
33843
|
+
*/
|
|
33844
|
+
user_uuid?: string;
|
|
33845
|
+
/**
|
|
33846
|
+
* UUID
|
|
33847
|
+
*/
|
|
33848
|
+
uuid?: string;
|
|
33849
|
+
};
|
|
33850
|
+
url: '/api/keys/{uuid}/history/';
|
|
33851
|
+
};
|
|
33852
|
+
export type KeysHistoryListResponses = {
|
|
33853
|
+
200: Array<VersionHistory>;
|
|
33854
|
+
};
|
|
33855
|
+
export type KeysHistoryListResponse = KeysHistoryListResponses[keyof KeysHistoryListResponses];
|
|
33856
|
+
export type KeysHistoryAtRetrieveData = {
|
|
33857
|
+
body?: never;
|
|
33858
|
+
path: {
|
|
33859
|
+
uuid: string;
|
|
33860
|
+
};
|
|
33861
|
+
query: {
|
|
33862
|
+
/**
|
|
33863
|
+
* ISO 8601 timestamp to query the object state at
|
|
33864
|
+
*/
|
|
33865
|
+
timestamp: string;
|
|
33866
|
+
};
|
|
33867
|
+
url: '/api/keys/{uuid}/history/at/';
|
|
33868
|
+
};
|
|
33869
|
+
export type KeysHistoryAtRetrieveErrors = {
|
|
33870
|
+
400: {
|
|
33871
|
+
[key: string]: unknown;
|
|
33872
|
+
};
|
|
33873
|
+
404: {
|
|
33874
|
+
[key: string]: unknown;
|
|
33875
|
+
};
|
|
33876
|
+
};
|
|
33877
|
+
export type KeysHistoryAtRetrieveError = KeysHistoryAtRetrieveErrors[keyof KeysHistoryAtRetrieveErrors];
|
|
33878
|
+
export type KeysHistoryAtRetrieveResponses = {
|
|
33879
|
+
200: VersionHistory;
|
|
33880
|
+
};
|
|
33881
|
+
export type KeysHistoryAtRetrieveResponse = KeysHistoryAtRetrieveResponses[keyof KeysHistoryAtRetrieveResponses];
|
|
33125
33882
|
export type LexisLinksListData = {
|
|
33126
33883
|
body?: never;
|
|
33127
33884
|
path?: never;
|
|
@@ -33901,7 +34658,7 @@ export type ManagedRancherClusterResourcesListData = {
|
|
|
33901
34658
|
body?: never;
|
|
33902
34659
|
path?: never;
|
|
33903
34660
|
query?: {
|
|
33904
|
-
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
34661
|
+
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
33905
34662
|
/**
|
|
33906
34663
|
* A page number within the paginated result set.
|
|
33907
34664
|
*/
|
|
@@ -33944,7 +34701,7 @@ export type ManagedRancherClusterResourcesRetrieveData = {
|
|
|
33944
34701
|
uuid: string;
|
|
33945
34702
|
};
|
|
33946
34703
|
query?: {
|
|
33947
|
-
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
34704
|
+
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
33948
34705
|
};
|
|
33949
34706
|
url: '/api/managed-rancher-cluster-resources/{uuid}/';
|
|
33950
34707
|
};
|
|
@@ -37764,6 +38521,30 @@ export type MarketplaceOrdersRetrieveResponses = {
|
|
|
37764
38521
|
200: OrderDetails;
|
|
37765
38522
|
};
|
|
37766
38523
|
export type MarketplaceOrdersRetrieveResponse = MarketplaceOrdersRetrieveResponses[keyof MarketplaceOrdersRetrieveResponses];
|
|
38524
|
+
export type MarketplaceOrdersPartialUpdateData = {
|
|
38525
|
+
body?: PatchedOrderUpdateRequest;
|
|
38526
|
+
path: {
|
|
38527
|
+
uuid: string;
|
|
38528
|
+
};
|
|
38529
|
+
query?: never;
|
|
38530
|
+
url: '/api/marketplace-orders/{uuid}/';
|
|
38531
|
+
};
|
|
38532
|
+
export type MarketplaceOrdersPartialUpdateResponses = {
|
|
38533
|
+
200: OrderUpdate;
|
|
38534
|
+
};
|
|
38535
|
+
export type MarketplaceOrdersPartialUpdateResponse = MarketplaceOrdersPartialUpdateResponses[keyof MarketplaceOrdersPartialUpdateResponses];
|
|
38536
|
+
export type MarketplaceOrdersUpdateData = {
|
|
38537
|
+
body?: OrderUpdateRequest;
|
|
38538
|
+
path: {
|
|
38539
|
+
uuid: string;
|
|
38540
|
+
};
|
|
38541
|
+
query?: never;
|
|
38542
|
+
url: '/api/marketplace-orders/{uuid}/';
|
|
38543
|
+
};
|
|
38544
|
+
export type MarketplaceOrdersUpdateResponses = {
|
|
38545
|
+
200: OrderUpdate;
|
|
38546
|
+
};
|
|
38547
|
+
export type MarketplaceOrdersUpdateResponse = MarketplaceOrdersUpdateResponses[keyof MarketplaceOrdersUpdateResponses];
|
|
37767
38548
|
export type MarketplaceOrdersApproveByConsumerData = {
|
|
37768
38549
|
body?: never;
|
|
37769
38550
|
path: {
|
|
@@ -38183,6 +38964,71 @@ export type MarketplacePlansDeleteOrganizationGroupsResponses = {
|
|
|
38183
38964
|
204: void;
|
|
38184
38965
|
};
|
|
38185
38966
|
export type MarketplacePlansDeleteOrganizationGroupsResponse = MarketplacePlansDeleteOrganizationGroupsResponses[keyof MarketplacePlansDeleteOrganizationGroupsResponses];
|
|
38967
|
+
export type MarketplacePlansHistoryListData = {
|
|
38968
|
+
body?: never;
|
|
38969
|
+
path: {
|
|
38970
|
+
uuid: string;
|
|
38971
|
+
};
|
|
38972
|
+
query?: {
|
|
38973
|
+
/**
|
|
38974
|
+
* Filter versions created after this timestamp (ISO 8601)
|
|
38975
|
+
*/
|
|
38976
|
+
created_after?: string;
|
|
38977
|
+
/**
|
|
38978
|
+
* Filter versions created before this timestamp (ISO 8601)
|
|
38979
|
+
*/
|
|
38980
|
+
created_before?: string;
|
|
38981
|
+
offering?: string;
|
|
38982
|
+
/**
|
|
38983
|
+
* Multiple values may be separated by commas.
|
|
38984
|
+
*/
|
|
38985
|
+
offering_slug?: Array<string>;
|
|
38986
|
+
/**
|
|
38987
|
+
* Offering UUID
|
|
38988
|
+
*/
|
|
38989
|
+
offering_uuid?: string;
|
|
38990
|
+
/**
|
|
38991
|
+
* A page number within the paginated result set.
|
|
38992
|
+
*/
|
|
38993
|
+
page?: number;
|
|
38994
|
+
/**
|
|
38995
|
+
* Number of results to return per page.
|
|
38996
|
+
*/
|
|
38997
|
+
page_size?: number;
|
|
38998
|
+
parent_offering_uuid?: string;
|
|
38999
|
+
};
|
|
39000
|
+
url: '/api/marketplace-plans/{uuid}/history/';
|
|
39001
|
+
};
|
|
39002
|
+
export type MarketplacePlansHistoryListResponses = {
|
|
39003
|
+
200: Array<VersionHistory>;
|
|
39004
|
+
};
|
|
39005
|
+
export type MarketplacePlansHistoryListResponse = MarketplacePlansHistoryListResponses[keyof MarketplacePlansHistoryListResponses];
|
|
39006
|
+
export type MarketplacePlansHistoryAtRetrieveData = {
|
|
39007
|
+
body?: never;
|
|
39008
|
+
path: {
|
|
39009
|
+
uuid: string;
|
|
39010
|
+
};
|
|
39011
|
+
query: {
|
|
39012
|
+
/**
|
|
39013
|
+
* ISO 8601 timestamp to query the object state at
|
|
39014
|
+
*/
|
|
39015
|
+
timestamp: string;
|
|
39016
|
+
};
|
|
39017
|
+
url: '/api/marketplace-plans/{uuid}/history/at/';
|
|
39018
|
+
};
|
|
39019
|
+
export type MarketplacePlansHistoryAtRetrieveErrors = {
|
|
39020
|
+
400: {
|
|
39021
|
+
[key: string]: unknown;
|
|
39022
|
+
};
|
|
39023
|
+
404: {
|
|
39024
|
+
[key: string]: unknown;
|
|
39025
|
+
};
|
|
39026
|
+
};
|
|
39027
|
+
export type MarketplacePlansHistoryAtRetrieveError = MarketplacePlansHistoryAtRetrieveErrors[keyof MarketplacePlansHistoryAtRetrieveErrors];
|
|
39028
|
+
export type MarketplacePlansHistoryAtRetrieveResponses = {
|
|
39029
|
+
200: VersionHistory;
|
|
39030
|
+
};
|
|
39031
|
+
export type MarketplacePlansHistoryAtRetrieveResponse = MarketplacePlansHistoryAtRetrieveResponses[keyof MarketplacePlansHistoryAtRetrieveResponses];
|
|
38186
39032
|
export type MarketplacePlansUpdateDiscountsData = {
|
|
38187
39033
|
body: DiscountsUpdateRequest;
|
|
38188
39034
|
path: {
|
|
@@ -39837,40 +40683,7 @@ export type MarketplaceProviderOfferingsGlauthUsersConfigRetrieveResponses = {
|
|
|
39837
40683
|
200: string;
|
|
39838
40684
|
};
|
|
39839
40685
|
export type MarketplaceProviderOfferingsGlauthUsersConfigRetrieveResponse = MarketplaceProviderOfferingsGlauthUsersConfigRetrieveResponses[keyof MarketplaceProviderOfferingsGlauthUsersConfigRetrieveResponses];
|
|
39840
|
-
export type
|
|
39841
|
-
body: ImportResourceRequest;
|
|
39842
|
-
path: {
|
|
39843
|
-
uuid: string;
|
|
39844
|
-
};
|
|
39845
|
-
query?: never;
|
|
39846
|
-
url: '/api/marketplace-provider-offerings/{uuid}/import_resource/';
|
|
39847
|
-
};
|
|
39848
|
-
export type MarketplaceProviderOfferingsImportResourceResponses = {
|
|
39849
|
-
200: Resource;
|
|
39850
|
-
};
|
|
39851
|
-
export type MarketplaceProviderOfferingsImportResourceResponse = MarketplaceProviderOfferingsImportResourceResponses[keyof MarketplaceProviderOfferingsImportResourceResponses];
|
|
39852
|
-
export type MarketplaceProviderOfferingsImportableResourcesListData = {
|
|
39853
|
-
body?: never;
|
|
39854
|
-
path: {
|
|
39855
|
-
uuid: string;
|
|
39856
|
-
};
|
|
39857
|
-
query?: {
|
|
39858
|
-
/**
|
|
39859
|
-
* A page number within the paginated result set.
|
|
39860
|
-
*/
|
|
39861
|
-
page?: number;
|
|
39862
|
-
/**
|
|
39863
|
-
* Number of results to return per page.
|
|
39864
|
-
*/
|
|
39865
|
-
page_size?: number;
|
|
39866
|
-
};
|
|
39867
|
-
url: '/api/marketplace-provider-offerings/{uuid}/importable_resources/';
|
|
39868
|
-
};
|
|
39869
|
-
export type MarketplaceProviderOfferingsImportableResourcesListResponses = {
|
|
39870
|
-
200: Array<ImportableResource>;
|
|
39871
|
-
};
|
|
39872
|
-
export type MarketplaceProviderOfferingsImportableResourcesListResponse = MarketplaceProviderOfferingsImportableResourcesListResponses[keyof MarketplaceProviderOfferingsImportableResourcesListResponses];
|
|
39873
|
-
export type MarketplaceProviderOfferingsListCourseAccountsListData = {
|
|
40686
|
+
export type MarketplaceProviderOfferingsHistoryListData = {
|
|
39874
40687
|
body?: never;
|
|
39875
40688
|
path: {
|
|
39876
40689
|
uuid: string;
|
|
@@ -39906,193 +40719,426 @@ export type MarketplaceProviderOfferingsListCourseAccountsListData = {
|
|
|
39906
40719
|
*/
|
|
39907
40720
|
created?: string;
|
|
39908
40721
|
/**
|
|
39909
|
-
*
|
|
39910
|
-
*/
|
|
39911
|
-
customer?: string;
|
|
39912
|
-
/**
|
|
39913
|
-
* Customer UUID
|
|
39914
|
-
*/
|
|
39915
|
-
customer_uuid?: string;
|
|
39916
|
-
/**
|
|
39917
|
-
* Description contains
|
|
39918
|
-
*/
|
|
39919
|
-
description?: string;
|
|
39920
|
-
/**
|
|
39921
|
-
* Has Active Terms of Service
|
|
39922
|
-
*/
|
|
39923
|
-
has_active_terms_of_service?: boolean;
|
|
39924
|
-
/**
|
|
39925
|
-
* Has Terms of Service
|
|
39926
|
-
*/
|
|
39927
|
-
has_terms_of_service?: boolean;
|
|
39928
|
-
/**
|
|
39929
|
-
* Keyword
|
|
39930
|
-
*/
|
|
39931
|
-
keyword?: string;
|
|
39932
|
-
/**
|
|
39933
|
-
* Modified after
|
|
39934
|
-
*/
|
|
39935
|
-
modified?: string;
|
|
39936
|
-
/**
|
|
39937
|
-
* Name
|
|
39938
|
-
*/
|
|
39939
|
-
name?: string;
|
|
39940
|
-
/**
|
|
39941
|
-
* Name (exact)
|
|
39942
|
-
*/
|
|
39943
|
-
name_exact?: string;
|
|
39944
|
-
/**
|
|
39945
|
-
* Ordering
|
|
39946
|
-
*
|
|
39947
|
-
*
|
|
39948
|
-
*/
|
|
39949
|
-
o?: Array<'-created' | '-name' | '-state' | '-total_cost' | '-total_cost_estimated' | '-total_customers' | '-type' | 'created' | 'name' | 'state' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type'>;
|
|
39950
|
-
/**
|
|
39951
|
-
* Organization group UUID
|
|
39952
|
-
*/
|
|
39953
|
-
organization_group_uuid?: Array<string>;
|
|
39954
|
-
/**
|
|
39955
|
-
* A page number within the paginated result set.
|
|
39956
|
-
*/
|
|
39957
|
-
page?: number;
|
|
39958
|
-
/**
|
|
39959
|
-
* Number of results to return per page.
|
|
39960
|
-
*/
|
|
39961
|
-
page_size?: number;
|
|
39962
|
-
/**
|
|
39963
|
-
* Parent offering UUID
|
|
39964
|
-
*/
|
|
39965
|
-
parent_uuid?: string;
|
|
39966
|
-
/**
|
|
39967
|
-
* Project UUID
|
|
39968
|
-
*/
|
|
39969
|
-
project_uuid?: string;
|
|
39970
|
-
/**
|
|
39971
|
-
* Search by offering name, slug or description
|
|
39972
|
-
*/
|
|
39973
|
-
query?: string;
|
|
39974
|
-
/**
|
|
39975
|
-
* Resource customer UUID
|
|
39976
|
-
*/
|
|
39977
|
-
resource_customer_uuid?: string;
|
|
39978
|
-
/**
|
|
39979
|
-
* Resource project UUID
|
|
39980
|
-
*/
|
|
39981
|
-
resource_project_uuid?: string;
|
|
39982
|
-
/**
|
|
39983
|
-
* Scope UUID
|
|
39984
|
-
*/
|
|
39985
|
-
scope_uuid?: string;
|
|
39986
|
-
/**
|
|
39987
|
-
* Service manager UUID
|
|
39988
|
-
*/
|
|
39989
|
-
service_manager_uuid?: string;
|
|
39990
|
-
/**
|
|
39991
|
-
* Shared
|
|
39992
|
-
*/
|
|
39993
|
-
shared?: boolean;
|
|
39994
|
-
/**
|
|
39995
|
-
* Offering state
|
|
39996
|
-
*
|
|
39997
|
-
*
|
|
39998
|
-
*/
|
|
39999
|
-
state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused' | 'Unavailable'>;
|
|
40000
|
-
/**
|
|
40001
|
-
* Tag UUID (OR logic)
|
|
40002
|
-
*/
|
|
40003
|
-
tag?: Array<string>;
|
|
40004
|
-
/**
|
|
40005
|
-
* Tag name (OR logic)
|
|
40006
|
-
*/
|
|
40007
|
-
tag_name?: Array<string>;
|
|
40008
|
-
/**
|
|
40009
|
-
* Tag names with AND logic (comma-separated)
|
|
40010
|
-
*/
|
|
40011
|
-
tag_names_and?: string;
|
|
40012
|
-
/**
|
|
40013
|
-
* Tag UUIDs with AND logic (comma-separated)
|
|
40014
|
-
*/
|
|
40015
|
-
tags_and?: string;
|
|
40016
|
-
/**
|
|
40017
|
-
* Offering type
|
|
40018
|
-
*/
|
|
40019
|
-
type?: Array<string>;
|
|
40020
|
-
/**
|
|
40021
|
-
* User Has Consent
|
|
40022
|
-
*/
|
|
40023
|
-
user_has_consent?: boolean;
|
|
40024
|
-
/**
|
|
40025
|
-
* User Has Offering User
|
|
40026
|
-
*/
|
|
40027
|
-
user_has_offering_user?: boolean;
|
|
40028
|
-
/**
|
|
40029
|
-
* Comma-separated offering UUIDs
|
|
40030
|
-
*/
|
|
40031
|
-
uuid_list?: string;
|
|
40032
|
-
};
|
|
40033
|
-
url: '/api/marketplace-provider-offerings/{uuid}/list_course_accounts/';
|
|
40034
|
-
};
|
|
40035
|
-
export type MarketplaceProviderOfferingsListCourseAccountsListResponses = {
|
|
40036
|
-
200: Array<CourseAccount>;
|
|
40037
|
-
};
|
|
40038
|
-
export type MarketplaceProviderOfferingsListCourseAccountsListResponse = MarketplaceProviderOfferingsListCourseAccountsListResponses[keyof MarketplaceProviderOfferingsListCourseAccountsListResponses];
|
|
40039
|
-
export type MarketplaceProviderOfferingsListCustomerProjectsListData = {
|
|
40040
|
-
body?: never;
|
|
40041
|
-
path: {
|
|
40042
|
-
uuid: string;
|
|
40043
|
-
};
|
|
40044
|
-
query?: {
|
|
40045
|
-
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid'>;
|
|
40046
|
-
/**
|
|
40047
|
-
* A page number within the paginated result set.
|
|
40048
|
-
*/
|
|
40049
|
-
page?: number;
|
|
40050
|
-
/**
|
|
40051
|
-
* Number of results to return per page.
|
|
40052
|
-
*/
|
|
40053
|
-
page_size?: number;
|
|
40054
|
-
};
|
|
40055
|
-
url: '/api/marketplace-provider-offerings/{uuid}/list_customer_projects/';
|
|
40056
|
-
};
|
|
40057
|
-
export type MarketplaceProviderOfferingsListCustomerProjectsListResponses = {
|
|
40058
|
-
200: Array<Project>;
|
|
40059
|
-
};
|
|
40060
|
-
export type MarketplaceProviderOfferingsListCustomerProjectsListResponse = MarketplaceProviderOfferingsListCustomerProjectsListResponses[keyof MarketplaceProviderOfferingsListCustomerProjectsListResponses];
|
|
40061
|
-
export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
|
|
40062
|
-
body?: never;
|
|
40063
|
-
path: {
|
|
40064
|
-
uuid: string;
|
|
40065
|
-
};
|
|
40066
|
-
query?: {
|
|
40067
|
-
/**
|
|
40068
|
-
* Accessible via calls
|
|
40069
|
-
*/
|
|
40070
|
-
accessible_via_calls?: boolean;
|
|
40071
|
-
/**
|
|
40072
|
-
* Allowed customer UUID
|
|
40073
|
-
*/
|
|
40074
|
-
allowed_customer_uuid?: string;
|
|
40075
|
-
/**
|
|
40076
|
-
* Offering attributes (JSON)
|
|
40077
|
-
*/
|
|
40078
|
-
attributes?: string;
|
|
40079
|
-
/**
|
|
40080
|
-
* Billable
|
|
40081
|
-
*/
|
|
40082
|
-
billable?: boolean;
|
|
40083
|
-
can_create_offering_user?: boolean;
|
|
40084
|
-
/**
|
|
40085
|
-
* Category group UUID
|
|
40086
|
-
*/
|
|
40087
|
-
category_group_uuid?: string;
|
|
40088
|
-
/**
|
|
40089
|
-
* Category UUID
|
|
40722
|
+
* Filter versions created after this timestamp (ISO 8601)
|
|
40090
40723
|
*/
|
|
40091
|
-
|
|
40724
|
+
created_after?: string;
|
|
40092
40725
|
/**
|
|
40093
|
-
*
|
|
40726
|
+
* Filter versions created before this timestamp (ISO 8601)
|
|
40094
40727
|
*/
|
|
40095
|
-
|
|
40728
|
+
created_before?: string;
|
|
40729
|
+
/**
|
|
40730
|
+
* Customer URL
|
|
40731
|
+
*/
|
|
40732
|
+
customer?: string;
|
|
40733
|
+
/**
|
|
40734
|
+
* Customer UUID
|
|
40735
|
+
*/
|
|
40736
|
+
customer_uuid?: string;
|
|
40737
|
+
/**
|
|
40738
|
+
* Description contains
|
|
40739
|
+
*/
|
|
40740
|
+
description?: string;
|
|
40741
|
+
/**
|
|
40742
|
+
* Has Active Terms of Service
|
|
40743
|
+
*/
|
|
40744
|
+
has_active_terms_of_service?: boolean;
|
|
40745
|
+
/**
|
|
40746
|
+
* Has Terms of Service
|
|
40747
|
+
*/
|
|
40748
|
+
has_terms_of_service?: boolean;
|
|
40749
|
+
/**
|
|
40750
|
+
* Keyword
|
|
40751
|
+
*/
|
|
40752
|
+
keyword?: string;
|
|
40753
|
+
/**
|
|
40754
|
+
* Modified after
|
|
40755
|
+
*/
|
|
40756
|
+
modified?: string;
|
|
40757
|
+
/**
|
|
40758
|
+
* Name
|
|
40759
|
+
*/
|
|
40760
|
+
name?: string;
|
|
40761
|
+
/**
|
|
40762
|
+
* Name (exact)
|
|
40763
|
+
*/
|
|
40764
|
+
name_exact?: string;
|
|
40765
|
+
/**
|
|
40766
|
+
* Ordering
|
|
40767
|
+
*
|
|
40768
|
+
*
|
|
40769
|
+
*/
|
|
40770
|
+
o?: Array<'-created' | '-name' | '-state' | '-total_cost' | '-total_cost_estimated' | '-total_customers' | '-type' | 'created' | 'name' | 'state' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type'>;
|
|
40771
|
+
/**
|
|
40772
|
+
* Organization group UUID
|
|
40773
|
+
*/
|
|
40774
|
+
organization_group_uuid?: Array<string>;
|
|
40775
|
+
/**
|
|
40776
|
+
* A page number within the paginated result set.
|
|
40777
|
+
*/
|
|
40778
|
+
page?: number;
|
|
40779
|
+
/**
|
|
40780
|
+
* Number of results to return per page.
|
|
40781
|
+
*/
|
|
40782
|
+
page_size?: number;
|
|
40783
|
+
/**
|
|
40784
|
+
* Parent offering UUID
|
|
40785
|
+
*/
|
|
40786
|
+
parent_uuid?: string;
|
|
40787
|
+
/**
|
|
40788
|
+
* Project UUID
|
|
40789
|
+
*/
|
|
40790
|
+
project_uuid?: string;
|
|
40791
|
+
/**
|
|
40792
|
+
* Search by offering name, slug or description
|
|
40793
|
+
*/
|
|
40794
|
+
query?: string;
|
|
40795
|
+
/**
|
|
40796
|
+
* Resource customer UUID
|
|
40797
|
+
*/
|
|
40798
|
+
resource_customer_uuid?: string;
|
|
40799
|
+
/**
|
|
40800
|
+
* Resource project UUID
|
|
40801
|
+
*/
|
|
40802
|
+
resource_project_uuid?: string;
|
|
40803
|
+
/**
|
|
40804
|
+
* Scope UUID
|
|
40805
|
+
*/
|
|
40806
|
+
scope_uuid?: string;
|
|
40807
|
+
/**
|
|
40808
|
+
* Service manager UUID
|
|
40809
|
+
*/
|
|
40810
|
+
service_manager_uuid?: string;
|
|
40811
|
+
/**
|
|
40812
|
+
* Shared
|
|
40813
|
+
*/
|
|
40814
|
+
shared?: boolean;
|
|
40815
|
+
/**
|
|
40816
|
+
* Offering state
|
|
40817
|
+
*
|
|
40818
|
+
*
|
|
40819
|
+
*/
|
|
40820
|
+
state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused' | 'Unavailable'>;
|
|
40821
|
+
/**
|
|
40822
|
+
* Tag UUID (OR logic)
|
|
40823
|
+
*/
|
|
40824
|
+
tag?: Array<string>;
|
|
40825
|
+
/**
|
|
40826
|
+
* Tag name (OR logic)
|
|
40827
|
+
*/
|
|
40828
|
+
tag_name?: Array<string>;
|
|
40829
|
+
/**
|
|
40830
|
+
* Tag names with AND logic (comma-separated)
|
|
40831
|
+
*/
|
|
40832
|
+
tag_names_and?: string;
|
|
40833
|
+
/**
|
|
40834
|
+
* Tag UUIDs with AND logic (comma-separated)
|
|
40835
|
+
*/
|
|
40836
|
+
tags_and?: string;
|
|
40837
|
+
/**
|
|
40838
|
+
* Offering type
|
|
40839
|
+
*/
|
|
40840
|
+
type?: Array<string>;
|
|
40841
|
+
/**
|
|
40842
|
+
* User Has Consent
|
|
40843
|
+
*/
|
|
40844
|
+
user_has_consent?: boolean;
|
|
40845
|
+
/**
|
|
40846
|
+
* User Has Offering User
|
|
40847
|
+
*/
|
|
40848
|
+
user_has_offering_user?: boolean;
|
|
40849
|
+
/**
|
|
40850
|
+
* Comma-separated offering UUIDs
|
|
40851
|
+
*/
|
|
40852
|
+
uuid_list?: string;
|
|
40853
|
+
};
|
|
40854
|
+
url: '/api/marketplace-provider-offerings/{uuid}/history/';
|
|
40855
|
+
};
|
|
40856
|
+
export type MarketplaceProviderOfferingsHistoryListResponses = {
|
|
40857
|
+
200: Array<VersionHistory>;
|
|
40858
|
+
};
|
|
40859
|
+
export type MarketplaceProviderOfferingsHistoryListResponse = MarketplaceProviderOfferingsHistoryListResponses[keyof MarketplaceProviderOfferingsHistoryListResponses];
|
|
40860
|
+
export type MarketplaceProviderOfferingsHistoryAtRetrieveData = {
|
|
40861
|
+
body?: never;
|
|
40862
|
+
path: {
|
|
40863
|
+
uuid: string;
|
|
40864
|
+
};
|
|
40865
|
+
query: {
|
|
40866
|
+
/**
|
|
40867
|
+
* ISO 8601 timestamp to query the object state at
|
|
40868
|
+
*/
|
|
40869
|
+
timestamp: string;
|
|
40870
|
+
};
|
|
40871
|
+
url: '/api/marketplace-provider-offerings/{uuid}/history/at/';
|
|
40872
|
+
};
|
|
40873
|
+
export type MarketplaceProviderOfferingsHistoryAtRetrieveErrors = {
|
|
40874
|
+
400: {
|
|
40875
|
+
[key: string]: unknown;
|
|
40876
|
+
};
|
|
40877
|
+
404: {
|
|
40878
|
+
[key: string]: unknown;
|
|
40879
|
+
};
|
|
40880
|
+
};
|
|
40881
|
+
export type MarketplaceProviderOfferingsHistoryAtRetrieveError = MarketplaceProviderOfferingsHistoryAtRetrieveErrors[keyof MarketplaceProviderOfferingsHistoryAtRetrieveErrors];
|
|
40882
|
+
export type MarketplaceProviderOfferingsHistoryAtRetrieveResponses = {
|
|
40883
|
+
200: VersionHistory;
|
|
40884
|
+
};
|
|
40885
|
+
export type MarketplaceProviderOfferingsHistoryAtRetrieveResponse = MarketplaceProviderOfferingsHistoryAtRetrieveResponses[keyof MarketplaceProviderOfferingsHistoryAtRetrieveResponses];
|
|
40886
|
+
export type MarketplaceProviderOfferingsImportResourceData = {
|
|
40887
|
+
body: ImportResourceRequest;
|
|
40888
|
+
path: {
|
|
40889
|
+
uuid: string;
|
|
40890
|
+
};
|
|
40891
|
+
query?: never;
|
|
40892
|
+
url: '/api/marketplace-provider-offerings/{uuid}/import_resource/';
|
|
40893
|
+
};
|
|
40894
|
+
export type MarketplaceProviderOfferingsImportResourceResponses = {
|
|
40895
|
+
200: Resource;
|
|
40896
|
+
};
|
|
40897
|
+
export type MarketplaceProviderOfferingsImportResourceResponse = MarketplaceProviderOfferingsImportResourceResponses[keyof MarketplaceProviderOfferingsImportResourceResponses];
|
|
40898
|
+
export type MarketplaceProviderOfferingsImportableResourcesListData = {
|
|
40899
|
+
body?: never;
|
|
40900
|
+
path: {
|
|
40901
|
+
uuid: string;
|
|
40902
|
+
};
|
|
40903
|
+
query?: {
|
|
40904
|
+
/**
|
|
40905
|
+
* A page number within the paginated result set.
|
|
40906
|
+
*/
|
|
40907
|
+
page?: number;
|
|
40908
|
+
/**
|
|
40909
|
+
* Number of results to return per page.
|
|
40910
|
+
*/
|
|
40911
|
+
page_size?: number;
|
|
40912
|
+
};
|
|
40913
|
+
url: '/api/marketplace-provider-offerings/{uuid}/importable_resources/';
|
|
40914
|
+
};
|
|
40915
|
+
export type MarketplaceProviderOfferingsImportableResourcesListResponses = {
|
|
40916
|
+
200: Array<ImportableResource>;
|
|
40917
|
+
};
|
|
40918
|
+
export type MarketplaceProviderOfferingsImportableResourcesListResponse = MarketplaceProviderOfferingsImportableResourcesListResponses[keyof MarketplaceProviderOfferingsImportableResourcesListResponses];
|
|
40919
|
+
export type MarketplaceProviderOfferingsListCourseAccountsListData = {
|
|
40920
|
+
body?: never;
|
|
40921
|
+
path: {
|
|
40922
|
+
uuid: string;
|
|
40923
|
+
};
|
|
40924
|
+
query?: {
|
|
40925
|
+
/**
|
|
40926
|
+
* Accessible via calls
|
|
40927
|
+
*/
|
|
40928
|
+
accessible_via_calls?: boolean;
|
|
40929
|
+
/**
|
|
40930
|
+
* Allowed customer UUID
|
|
40931
|
+
*/
|
|
40932
|
+
allowed_customer_uuid?: string;
|
|
40933
|
+
/**
|
|
40934
|
+
* Offering attributes (JSON)
|
|
40935
|
+
*/
|
|
40936
|
+
attributes?: string;
|
|
40937
|
+
/**
|
|
40938
|
+
* Billable
|
|
40939
|
+
*/
|
|
40940
|
+
billable?: boolean;
|
|
40941
|
+
can_create_offering_user?: boolean;
|
|
40942
|
+
/**
|
|
40943
|
+
* Category group UUID
|
|
40944
|
+
*/
|
|
40945
|
+
category_group_uuid?: string;
|
|
40946
|
+
/**
|
|
40947
|
+
* Category UUID
|
|
40948
|
+
*/
|
|
40949
|
+
category_uuid?: string;
|
|
40950
|
+
/**
|
|
40951
|
+
* Created after
|
|
40952
|
+
*/
|
|
40953
|
+
created?: string;
|
|
40954
|
+
/**
|
|
40955
|
+
* Customer URL
|
|
40956
|
+
*/
|
|
40957
|
+
customer?: string;
|
|
40958
|
+
/**
|
|
40959
|
+
* Customer UUID
|
|
40960
|
+
*/
|
|
40961
|
+
customer_uuid?: string;
|
|
40962
|
+
/**
|
|
40963
|
+
* Description contains
|
|
40964
|
+
*/
|
|
40965
|
+
description?: string;
|
|
40966
|
+
/**
|
|
40967
|
+
* Has Active Terms of Service
|
|
40968
|
+
*/
|
|
40969
|
+
has_active_terms_of_service?: boolean;
|
|
40970
|
+
/**
|
|
40971
|
+
* Has Terms of Service
|
|
40972
|
+
*/
|
|
40973
|
+
has_terms_of_service?: boolean;
|
|
40974
|
+
/**
|
|
40975
|
+
* Keyword
|
|
40976
|
+
*/
|
|
40977
|
+
keyword?: string;
|
|
40978
|
+
/**
|
|
40979
|
+
* Modified after
|
|
40980
|
+
*/
|
|
40981
|
+
modified?: string;
|
|
40982
|
+
/**
|
|
40983
|
+
* Name
|
|
40984
|
+
*/
|
|
40985
|
+
name?: string;
|
|
40986
|
+
/**
|
|
40987
|
+
* Name (exact)
|
|
40988
|
+
*/
|
|
40989
|
+
name_exact?: string;
|
|
40990
|
+
/**
|
|
40991
|
+
* Ordering
|
|
40992
|
+
*
|
|
40993
|
+
*
|
|
40994
|
+
*/
|
|
40995
|
+
o?: Array<'-created' | '-name' | '-state' | '-total_cost' | '-total_cost_estimated' | '-total_customers' | '-type' | 'created' | 'name' | 'state' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type'>;
|
|
40996
|
+
/**
|
|
40997
|
+
* Organization group UUID
|
|
40998
|
+
*/
|
|
40999
|
+
organization_group_uuid?: Array<string>;
|
|
41000
|
+
/**
|
|
41001
|
+
* A page number within the paginated result set.
|
|
41002
|
+
*/
|
|
41003
|
+
page?: number;
|
|
41004
|
+
/**
|
|
41005
|
+
* Number of results to return per page.
|
|
41006
|
+
*/
|
|
41007
|
+
page_size?: number;
|
|
41008
|
+
/**
|
|
41009
|
+
* Parent offering UUID
|
|
41010
|
+
*/
|
|
41011
|
+
parent_uuid?: string;
|
|
41012
|
+
/**
|
|
41013
|
+
* Project UUID
|
|
41014
|
+
*/
|
|
41015
|
+
project_uuid?: string;
|
|
41016
|
+
/**
|
|
41017
|
+
* Search by offering name, slug or description
|
|
41018
|
+
*/
|
|
41019
|
+
query?: string;
|
|
41020
|
+
/**
|
|
41021
|
+
* Resource customer UUID
|
|
41022
|
+
*/
|
|
41023
|
+
resource_customer_uuid?: string;
|
|
41024
|
+
/**
|
|
41025
|
+
* Resource project UUID
|
|
41026
|
+
*/
|
|
41027
|
+
resource_project_uuid?: string;
|
|
41028
|
+
/**
|
|
41029
|
+
* Scope UUID
|
|
41030
|
+
*/
|
|
41031
|
+
scope_uuid?: string;
|
|
41032
|
+
/**
|
|
41033
|
+
* Service manager UUID
|
|
41034
|
+
*/
|
|
41035
|
+
service_manager_uuid?: string;
|
|
41036
|
+
/**
|
|
41037
|
+
* Shared
|
|
41038
|
+
*/
|
|
41039
|
+
shared?: boolean;
|
|
41040
|
+
/**
|
|
41041
|
+
* Offering state
|
|
41042
|
+
*
|
|
41043
|
+
*
|
|
41044
|
+
*/
|
|
41045
|
+
state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused' | 'Unavailable'>;
|
|
41046
|
+
/**
|
|
41047
|
+
* Tag UUID (OR logic)
|
|
41048
|
+
*/
|
|
41049
|
+
tag?: Array<string>;
|
|
41050
|
+
/**
|
|
41051
|
+
* Tag name (OR logic)
|
|
41052
|
+
*/
|
|
41053
|
+
tag_name?: Array<string>;
|
|
41054
|
+
/**
|
|
41055
|
+
* Tag names with AND logic (comma-separated)
|
|
41056
|
+
*/
|
|
41057
|
+
tag_names_and?: string;
|
|
41058
|
+
/**
|
|
41059
|
+
* Tag UUIDs with AND logic (comma-separated)
|
|
41060
|
+
*/
|
|
41061
|
+
tags_and?: string;
|
|
41062
|
+
/**
|
|
41063
|
+
* Offering type
|
|
41064
|
+
*/
|
|
41065
|
+
type?: Array<string>;
|
|
41066
|
+
/**
|
|
41067
|
+
* User Has Consent
|
|
41068
|
+
*/
|
|
41069
|
+
user_has_consent?: boolean;
|
|
41070
|
+
/**
|
|
41071
|
+
* User Has Offering User
|
|
41072
|
+
*/
|
|
41073
|
+
user_has_offering_user?: boolean;
|
|
41074
|
+
/**
|
|
41075
|
+
* Comma-separated offering UUIDs
|
|
41076
|
+
*/
|
|
41077
|
+
uuid_list?: string;
|
|
41078
|
+
};
|
|
41079
|
+
url: '/api/marketplace-provider-offerings/{uuid}/list_course_accounts/';
|
|
41080
|
+
};
|
|
41081
|
+
export type MarketplaceProviderOfferingsListCourseAccountsListResponses = {
|
|
41082
|
+
200: Array<CourseAccount>;
|
|
41083
|
+
};
|
|
41084
|
+
export type MarketplaceProviderOfferingsListCourseAccountsListResponse = MarketplaceProviderOfferingsListCourseAccountsListResponses[keyof MarketplaceProviderOfferingsListCourseAccountsListResponses];
|
|
41085
|
+
export type MarketplaceProviderOfferingsListCustomerProjectsListData = {
|
|
41086
|
+
body?: never;
|
|
41087
|
+
path: {
|
|
41088
|
+
uuid: string;
|
|
41089
|
+
};
|
|
41090
|
+
query?: {
|
|
41091
|
+
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid'>;
|
|
41092
|
+
/**
|
|
41093
|
+
* A page number within the paginated result set.
|
|
41094
|
+
*/
|
|
41095
|
+
page?: number;
|
|
41096
|
+
/**
|
|
41097
|
+
* Number of results to return per page.
|
|
41098
|
+
*/
|
|
41099
|
+
page_size?: number;
|
|
41100
|
+
};
|
|
41101
|
+
url: '/api/marketplace-provider-offerings/{uuid}/list_customer_projects/';
|
|
41102
|
+
};
|
|
41103
|
+
export type MarketplaceProviderOfferingsListCustomerProjectsListResponses = {
|
|
41104
|
+
200: Array<Project>;
|
|
41105
|
+
};
|
|
41106
|
+
export type MarketplaceProviderOfferingsListCustomerProjectsListResponse = MarketplaceProviderOfferingsListCustomerProjectsListResponses[keyof MarketplaceProviderOfferingsListCustomerProjectsListResponses];
|
|
41107
|
+
export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
|
|
41108
|
+
body?: never;
|
|
41109
|
+
path: {
|
|
41110
|
+
uuid: string;
|
|
41111
|
+
};
|
|
41112
|
+
query?: {
|
|
41113
|
+
/**
|
|
41114
|
+
* Accessible via calls
|
|
41115
|
+
*/
|
|
41116
|
+
accessible_via_calls?: boolean;
|
|
41117
|
+
/**
|
|
41118
|
+
* Allowed customer UUID
|
|
41119
|
+
*/
|
|
41120
|
+
allowed_customer_uuid?: string;
|
|
41121
|
+
/**
|
|
41122
|
+
* Offering attributes (JSON)
|
|
41123
|
+
*/
|
|
41124
|
+
attributes?: string;
|
|
41125
|
+
/**
|
|
41126
|
+
* Billable
|
|
41127
|
+
*/
|
|
41128
|
+
billable?: boolean;
|
|
41129
|
+
can_create_offering_user?: boolean;
|
|
41130
|
+
/**
|
|
41131
|
+
* Category group UUID
|
|
41132
|
+
*/
|
|
41133
|
+
category_group_uuid?: string;
|
|
41134
|
+
/**
|
|
41135
|
+
* Category UUID
|
|
41136
|
+
*/
|
|
41137
|
+
category_uuid?: string;
|
|
41138
|
+
/**
|
|
41139
|
+
* Created after
|
|
41140
|
+
*/
|
|
41141
|
+
created?: string;
|
|
40096
41142
|
/**
|
|
40097
41143
|
* Customer URL
|
|
40098
41144
|
*/
|
|
@@ -41337,7 +42383,7 @@ export type MarketplaceProviderResourcesListData = {
|
|
|
41337
42383
|
* Downscaled
|
|
41338
42384
|
*/
|
|
41339
42385
|
downscaled?: boolean;
|
|
41340
|
-
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
42386
|
+
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
41341
42387
|
/**
|
|
41342
42388
|
* Has termination date
|
|
41343
42389
|
*/
|
|
@@ -41664,7 +42710,7 @@ export type MarketplaceProviderResourcesRetrieveData = {
|
|
|
41664
42710
|
uuid: string;
|
|
41665
42711
|
};
|
|
41666
42712
|
query?: {
|
|
41667
|
-
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
42713
|
+
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
41668
42714
|
};
|
|
41669
42715
|
url: '/api/marketplace-provider-resources/{uuid}/';
|
|
41670
42716
|
};
|
|
@@ -41908,7 +42954,7 @@ export type MarketplaceProviderResourcesHistoryListData = {
|
|
|
41908
42954
|
url: '/api/marketplace-provider-resources/{uuid}/history/';
|
|
41909
42955
|
};
|
|
41910
42956
|
export type MarketplaceProviderResourcesHistoryListResponses = {
|
|
41911
|
-
200: Array<
|
|
42957
|
+
200: Array<VersionHistory>;
|
|
41912
42958
|
};
|
|
41913
42959
|
export type MarketplaceProviderResourcesHistoryListResponse = MarketplaceProviderResourcesHistoryListResponses[keyof MarketplaceProviderResourcesHistoryListResponses];
|
|
41914
42960
|
export type MarketplaceProviderResourcesHistoryAtRetrieveData = {
|
|
@@ -41918,7 +42964,7 @@ export type MarketplaceProviderResourcesHistoryAtRetrieveData = {
|
|
|
41918
42964
|
};
|
|
41919
42965
|
query: {
|
|
41920
42966
|
/**
|
|
41921
|
-
* ISO 8601 timestamp to query the
|
|
42967
|
+
* ISO 8601 timestamp to query the object state at
|
|
41922
42968
|
*/
|
|
41923
42969
|
timestamp: string;
|
|
41924
42970
|
};
|
|
@@ -41934,7 +42980,7 @@ export type MarketplaceProviderResourcesHistoryAtRetrieveErrors = {
|
|
|
41934
42980
|
};
|
|
41935
42981
|
export type MarketplaceProviderResourcesHistoryAtRetrieveError = MarketplaceProviderResourcesHistoryAtRetrieveErrors[keyof MarketplaceProviderResourcesHistoryAtRetrieveErrors];
|
|
41936
42982
|
export type MarketplaceProviderResourcesHistoryAtRetrieveResponses = {
|
|
41937
|
-
200:
|
|
42983
|
+
200: VersionHistory;
|
|
41938
42984
|
};
|
|
41939
42985
|
export type MarketplaceProviderResourcesHistoryAtRetrieveResponse = MarketplaceProviderResourcesHistoryAtRetrieveResponses[keyof MarketplaceProviderResourcesHistoryAtRetrieveResponses];
|
|
41940
42986
|
export type MarketplaceProviderResourcesMoveResourceData = {
|
|
@@ -42969,7 +44015,7 @@ export type MarketplaceResourcesListData = {
|
|
|
42969
44015
|
* Downscaled
|
|
42970
44016
|
*/
|
|
42971
44017
|
downscaled?: boolean;
|
|
42972
|
-
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
44018
|
+
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
42973
44019
|
/**
|
|
42974
44020
|
* Has termination date
|
|
42975
44021
|
*/
|
|
@@ -43296,7 +44342,7 @@ export type MarketplaceResourcesRetrieveData = {
|
|
|
43296
44342
|
uuid: string;
|
|
43297
44343
|
};
|
|
43298
44344
|
query?: {
|
|
43299
|
-
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
44345
|
+
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
43300
44346
|
};
|
|
43301
44347
|
url: '/api/marketplace-resources/{uuid}/';
|
|
43302
44348
|
};
|
|
@@ -43540,7 +44586,7 @@ export type MarketplaceResourcesHistoryListData = {
|
|
|
43540
44586
|
url: '/api/marketplace-resources/{uuid}/history/';
|
|
43541
44587
|
};
|
|
43542
44588
|
export type MarketplaceResourcesHistoryListResponses = {
|
|
43543
|
-
200: Array<
|
|
44589
|
+
200: Array<VersionHistory>;
|
|
43544
44590
|
};
|
|
43545
44591
|
export type MarketplaceResourcesHistoryListResponse = MarketplaceResourcesHistoryListResponses[keyof MarketplaceResourcesHistoryListResponses];
|
|
43546
44592
|
export type MarketplaceResourcesHistoryAtRetrieveData = {
|
|
@@ -43550,7 +44596,7 @@ export type MarketplaceResourcesHistoryAtRetrieveData = {
|
|
|
43550
44596
|
};
|
|
43551
44597
|
query: {
|
|
43552
44598
|
/**
|
|
43553
|
-
* ISO 8601 timestamp to query the
|
|
44599
|
+
* ISO 8601 timestamp to query the object state at
|
|
43554
44600
|
*/
|
|
43555
44601
|
timestamp: string;
|
|
43556
44602
|
};
|
|
@@ -43566,7 +44612,7 @@ export type MarketplaceResourcesHistoryAtRetrieveErrors = {
|
|
|
43566
44612
|
};
|
|
43567
44613
|
export type MarketplaceResourcesHistoryAtRetrieveError = MarketplaceResourcesHistoryAtRetrieveErrors[keyof MarketplaceResourcesHistoryAtRetrieveErrors];
|
|
43568
44614
|
export type MarketplaceResourcesHistoryAtRetrieveResponses = {
|
|
43569
|
-
200:
|
|
44615
|
+
200: VersionHistory;
|
|
43570
44616
|
};
|
|
43571
44617
|
export type MarketplaceResourcesHistoryAtRetrieveResponse = MarketplaceResourcesHistoryAtRetrieveResponses[keyof MarketplaceResourcesHistoryAtRetrieveResponses];
|
|
43572
44618
|
export type MarketplaceResourcesMoveResourceData = {
|
|
@@ -46224,6 +47270,90 @@ export type MarketplaceSlurmPeriodicUsagePoliciesUpdateResponses = {
|
|
|
46224
47270
|
200: SlurmPeriodicUsagePolicy;
|
|
46225
47271
|
};
|
|
46226
47272
|
export type MarketplaceSlurmPeriodicUsagePoliciesUpdateResponse = MarketplaceSlurmPeriodicUsagePoliciesUpdateResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesUpdateResponses];
|
|
47273
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesCommandHistoryListData = {
|
|
47274
|
+
body?: never;
|
|
47275
|
+
path: {
|
|
47276
|
+
uuid: string;
|
|
47277
|
+
};
|
|
47278
|
+
query?: {
|
|
47279
|
+
/**
|
|
47280
|
+
* A page number within the paginated result set.
|
|
47281
|
+
*/
|
|
47282
|
+
page?: number;
|
|
47283
|
+
/**
|
|
47284
|
+
* Number of results to return per page.
|
|
47285
|
+
*/
|
|
47286
|
+
page_size?: number;
|
|
47287
|
+
scope?: string;
|
|
47288
|
+
scope_uuid?: string;
|
|
47289
|
+
};
|
|
47290
|
+
url: '/api/marketplace-slurm-periodic-usage-policies/{uuid}/command-history/';
|
|
47291
|
+
};
|
|
47292
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesCommandHistoryListResponses = {
|
|
47293
|
+
200: Array<SlurmCommandHistory>;
|
|
47294
|
+
};
|
|
47295
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesCommandHistoryListResponse = MarketplaceSlurmPeriodicUsagePoliciesCommandHistoryListResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesCommandHistoryListResponses];
|
|
47296
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesDryRunData = {
|
|
47297
|
+
body?: SlurmPolicyEvaluateRequestRequest;
|
|
47298
|
+
path: {
|
|
47299
|
+
uuid: string;
|
|
47300
|
+
};
|
|
47301
|
+
query?: never;
|
|
47302
|
+
url: '/api/marketplace-slurm-periodic-usage-policies/{uuid}/dry-run/';
|
|
47303
|
+
};
|
|
47304
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesDryRunResponses = {
|
|
47305
|
+
200: SlurmPolicyDryRunResponse;
|
|
47306
|
+
};
|
|
47307
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesDryRunResponse = MarketplaceSlurmPeriodicUsagePoliciesDryRunResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesDryRunResponses];
|
|
47308
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesEvaluateData = {
|
|
47309
|
+
body?: SlurmPolicyEvaluateRequestRequest;
|
|
47310
|
+
path: {
|
|
47311
|
+
uuid: string;
|
|
47312
|
+
};
|
|
47313
|
+
query?: never;
|
|
47314
|
+
url: '/api/marketplace-slurm-periodic-usage-policies/{uuid}/evaluate/';
|
|
47315
|
+
};
|
|
47316
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesEvaluateResponses = {
|
|
47317
|
+
200: SlurmPolicyEvaluateResponse;
|
|
47318
|
+
};
|
|
47319
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesEvaluateResponse = MarketplaceSlurmPeriodicUsagePoliciesEvaluateResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesEvaluateResponses];
|
|
47320
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesEvaluationLogsListData = {
|
|
47321
|
+
body?: never;
|
|
47322
|
+
path: {
|
|
47323
|
+
uuid: string;
|
|
47324
|
+
};
|
|
47325
|
+
query?: {
|
|
47326
|
+
/**
|
|
47327
|
+
* A page number within the paginated result set.
|
|
47328
|
+
*/
|
|
47329
|
+
page?: number;
|
|
47330
|
+
/**
|
|
47331
|
+
* Number of results to return per page.
|
|
47332
|
+
*/
|
|
47333
|
+
page_size?: number;
|
|
47334
|
+
scope?: string;
|
|
47335
|
+
scope_uuid?: string;
|
|
47336
|
+
};
|
|
47337
|
+
url: '/api/marketplace-slurm-periodic-usage-policies/{uuid}/evaluation-logs/';
|
|
47338
|
+
};
|
|
47339
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesEvaluationLogsListResponses = {
|
|
47340
|
+
200: Array<SlurmPolicyEvaluationLog>;
|
|
47341
|
+
};
|
|
47342
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesEvaluationLogsListResponse = MarketplaceSlurmPeriodicUsagePoliciesEvaluationLogsListResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesEvaluationLogsListResponses];
|
|
47343
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesReportCommandResultData = {
|
|
47344
|
+
body: SlurmCommandResultRequest;
|
|
47345
|
+
path: {
|
|
47346
|
+
uuid: string;
|
|
47347
|
+
};
|
|
47348
|
+
query?: never;
|
|
47349
|
+
url: '/api/marketplace-slurm-periodic-usage-policies/{uuid}/report-command-result/';
|
|
47350
|
+
};
|
|
47351
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesReportCommandResultResponses = {
|
|
47352
|
+
/**
|
|
47353
|
+
* No response body
|
|
47354
|
+
*/
|
|
47355
|
+
200: unknown;
|
|
47356
|
+
};
|
|
46227
47357
|
export type MarketplaceSlurmPeriodicUsagePoliciesActionsRetrieveData = {
|
|
46228
47358
|
body?: never;
|
|
46229
47359
|
path?: never;
|
|
@@ -46836,6 +47966,46 @@ export type MarketplaceSoftwareVersionsUpdateResponses = {
|
|
|
46836
47966
|
200: SoftwareVersion;
|
|
46837
47967
|
};
|
|
46838
47968
|
export type MarketplaceSoftwareVersionsUpdateResponse = MarketplaceSoftwareVersionsUpdateResponses[keyof MarketplaceSoftwareVersionsUpdateResponses];
|
|
47969
|
+
export type MarketplaceStatsAggregatedUsageTrendsListData = {
|
|
47970
|
+
body?: never;
|
|
47971
|
+
path?: never;
|
|
47972
|
+
query?: {
|
|
47973
|
+
/**
|
|
47974
|
+
* A page number within the paginated result set.
|
|
47975
|
+
*/
|
|
47976
|
+
page?: number;
|
|
47977
|
+
/**
|
|
47978
|
+
* Number of results to return per page.
|
|
47979
|
+
*/
|
|
47980
|
+
page_size?: number;
|
|
47981
|
+
};
|
|
47982
|
+
url: '/api/marketplace-stats/aggregated_usage_trends/';
|
|
47983
|
+
};
|
|
47984
|
+
export type MarketplaceStatsAggregatedUsageTrendsListResponses = {
|
|
47985
|
+
200: Array<AggregatedUsageTrend>;
|
|
47986
|
+
};
|
|
47987
|
+
export type MarketplaceStatsAggregatedUsageTrendsListResponse = MarketplaceStatsAggregatedUsageTrendsListResponses[keyof MarketplaceStatsAggregatedUsageTrendsListResponses];
|
|
47988
|
+
export type MarketplaceStatsAggregatedUsageTrendsCountData = {
|
|
47989
|
+
body?: never;
|
|
47990
|
+
path?: never;
|
|
47991
|
+
query?: {
|
|
47992
|
+
/**
|
|
47993
|
+
* A page number within the paginated result set.
|
|
47994
|
+
*/
|
|
47995
|
+
page?: number;
|
|
47996
|
+
/**
|
|
47997
|
+
* Number of results to return per page.
|
|
47998
|
+
*/
|
|
47999
|
+
page_size?: number;
|
|
48000
|
+
};
|
|
48001
|
+
url: '/api/marketplace-stats/aggregated_usage_trends/';
|
|
48002
|
+
};
|
|
48003
|
+
export type MarketplaceStatsAggregatedUsageTrendsCountResponses = {
|
|
48004
|
+
/**
|
|
48005
|
+
* No response body
|
|
48006
|
+
*/
|
|
48007
|
+
200: unknown;
|
|
48008
|
+
};
|
|
46839
48009
|
export type MarketplaceStatsComponentUsagesListData = {
|
|
46840
48010
|
body?: never;
|
|
46841
48011
|
path?: never;
|
|
@@ -47356,6 +48526,50 @@ export type MarketplaceStatsCustomerMemberCountCountResponses = {
|
|
|
47356
48526
|
*/
|
|
47357
48527
|
200: unknown;
|
|
47358
48528
|
};
|
|
48529
|
+
export type MarketplaceStatsCustomerMemberSummaryRetrieveData = {
|
|
48530
|
+
body?: never;
|
|
48531
|
+
path?: never;
|
|
48532
|
+
query?: never;
|
|
48533
|
+
url: '/api/marketplace-stats/customer_member_summary/';
|
|
48534
|
+
};
|
|
48535
|
+
export type MarketplaceStatsCustomerMemberSummaryRetrieveResponses = {
|
|
48536
|
+
200: CustomerMemberSummary;
|
|
48537
|
+
};
|
|
48538
|
+
export type MarketplaceStatsCustomerMemberSummaryRetrieveResponse = MarketplaceStatsCustomerMemberSummaryRetrieveResponses[keyof MarketplaceStatsCustomerMemberSummaryRetrieveResponses];
|
|
48539
|
+
export type MarketplaceStatsCustomerMemberSummaryCountData = {
|
|
48540
|
+
body?: never;
|
|
48541
|
+
path?: never;
|
|
48542
|
+
query?: never;
|
|
48543
|
+
url: '/api/marketplace-stats/customer_member_summary/';
|
|
48544
|
+
};
|
|
48545
|
+
export type MarketplaceStatsCustomerMemberSummaryCountResponses = {
|
|
48546
|
+
/**
|
|
48547
|
+
* No response body
|
|
48548
|
+
*/
|
|
48549
|
+
200: unknown;
|
|
48550
|
+
};
|
|
48551
|
+
export type MarketplaceStatsOfferingCostsSummaryRetrieveData = {
|
|
48552
|
+
body?: never;
|
|
48553
|
+
path?: never;
|
|
48554
|
+
query?: never;
|
|
48555
|
+
url: '/api/marketplace-stats/offering_costs_summary/';
|
|
48556
|
+
};
|
|
48557
|
+
export type MarketplaceStatsOfferingCostsSummaryRetrieveResponses = {
|
|
48558
|
+
200: OfferingCostsSummary;
|
|
48559
|
+
};
|
|
48560
|
+
export type MarketplaceStatsOfferingCostsSummaryRetrieveResponse = MarketplaceStatsOfferingCostsSummaryRetrieveResponses[keyof MarketplaceStatsOfferingCostsSummaryRetrieveResponses];
|
|
48561
|
+
export type MarketplaceStatsOfferingCostsSummaryCountData = {
|
|
48562
|
+
body?: never;
|
|
48563
|
+
path?: never;
|
|
48564
|
+
query?: never;
|
|
48565
|
+
url: '/api/marketplace-stats/offering_costs_summary/';
|
|
48566
|
+
};
|
|
48567
|
+
export type MarketplaceStatsOfferingCostsSummaryCountResponses = {
|
|
48568
|
+
/**
|
|
48569
|
+
* No response body
|
|
48570
|
+
*/
|
|
48571
|
+
200: unknown;
|
|
48572
|
+
};
|
|
47359
48573
|
export type MarketplaceStatsOfferingsCounterStatsListData = {
|
|
47360
48574
|
body?: never;
|
|
47361
48575
|
path?: never;
|
|
@@ -47532,6 +48746,28 @@ export type MarketplaceStatsOrganizationResourceCountCountResponses = {
|
|
|
47532
48746
|
*/
|
|
47533
48747
|
200: unknown;
|
|
47534
48748
|
};
|
|
48749
|
+
export type MarketplaceStatsProjectClassificationSummaryRetrieveData = {
|
|
48750
|
+
body?: never;
|
|
48751
|
+
path?: never;
|
|
48752
|
+
query?: never;
|
|
48753
|
+
url: '/api/marketplace-stats/project_classification_summary/';
|
|
48754
|
+
};
|
|
48755
|
+
export type MarketplaceStatsProjectClassificationSummaryRetrieveResponses = {
|
|
48756
|
+
200: ProjectClassificationSummary;
|
|
48757
|
+
};
|
|
48758
|
+
export type MarketplaceStatsProjectClassificationSummaryRetrieveResponse = MarketplaceStatsProjectClassificationSummaryRetrieveResponses[keyof MarketplaceStatsProjectClassificationSummaryRetrieveResponses];
|
|
48759
|
+
export type MarketplaceStatsProjectClassificationSummaryCountData = {
|
|
48760
|
+
body?: never;
|
|
48761
|
+
path?: never;
|
|
48762
|
+
query?: never;
|
|
48763
|
+
url: '/api/marketplace-stats/project_classification_summary/';
|
|
48764
|
+
};
|
|
48765
|
+
export type MarketplaceStatsProjectClassificationSummaryCountResponses = {
|
|
48766
|
+
/**
|
|
48767
|
+
* No response body
|
|
48768
|
+
*/
|
|
48769
|
+
200: unknown;
|
|
48770
|
+
};
|
|
47535
48771
|
export type MarketplaceStatsProjectsLimitsGroupedByIndustryFlagRetrieveData = {
|
|
47536
48772
|
body?: never;
|
|
47537
48773
|
path?: never;
|
|
@@ -47764,6 +49000,148 @@ export type MarketplaceStatsResourceProvisioningStatsCountResponses = {
|
|
|
47764
49000
|
*/
|
|
47765
49001
|
200: unknown;
|
|
47766
49002
|
};
|
|
49003
|
+
export type MarketplaceStatsResourceUsageByCreatorAffiliationListData = {
|
|
49004
|
+
body?: never;
|
|
49005
|
+
path?: never;
|
|
49006
|
+
query?: {
|
|
49007
|
+
/**
|
|
49008
|
+
* A page number within the paginated result set.
|
|
49009
|
+
*/
|
|
49010
|
+
page?: number;
|
|
49011
|
+
/**
|
|
49012
|
+
* Number of results to return per page.
|
|
49013
|
+
*/
|
|
49014
|
+
page_size?: number;
|
|
49015
|
+
};
|
|
49016
|
+
url: '/api/marketplace-stats/resource_usage_by_creator_affiliation/';
|
|
49017
|
+
};
|
|
49018
|
+
export type MarketplaceStatsResourceUsageByCreatorAffiliationListResponses = {
|
|
49019
|
+
200: Array<ResourceUsageByAffiliation>;
|
|
49020
|
+
};
|
|
49021
|
+
export type MarketplaceStatsResourceUsageByCreatorAffiliationListResponse = MarketplaceStatsResourceUsageByCreatorAffiliationListResponses[keyof MarketplaceStatsResourceUsageByCreatorAffiliationListResponses];
|
|
49022
|
+
export type MarketplaceStatsResourceUsageByCreatorAffiliationCountData = {
|
|
49023
|
+
body?: never;
|
|
49024
|
+
path?: never;
|
|
49025
|
+
query?: {
|
|
49026
|
+
/**
|
|
49027
|
+
* A page number within the paginated result set.
|
|
49028
|
+
*/
|
|
49029
|
+
page?: number;
|
|
49030
|
+
/**
|
|
49031
|
+
* Number of results to return per page.
|
|
49032
|
+
*/
|
|
49033
|
+
page_size?: number;
|
|
49034
|
+
};
|
|
49035
|
+
url: '/api/marketplace-stats/resource_usage_by_creator_affiliation/';
|
|
49036
|
+
};
|
|
49037
|
+
export type MarketplaceStatsResourceUsageByCreatorAffiliationCountResponses = {
|
|
49038
|
+
/**
|
|
49039
|
+
* No response body
|
|
49040
|
+
*/
|
|
49041
|
+
200: unknown;
|
|
49042
|
+
};
|
|
49043
|
+
export type MarketplaceStatsResourceUsageByCustomerListData = {
|
|
49044
|
+
body?: never;
|
|
49045
|
+
path?: never;
|
|
49046
|
+
query?: {
|
|
49047
|
+
/**
|
|
49048
|
+
* A page number within the paginated result set.
|
|
49049
|
+
*/
|
|
49050
|
+
page?: number;
|
|
49051
|
+
/**
|
|
49052
|
+
* Number of results to return per page.
|
|
49053
|
+
*/
|
|
49054
|
+
page_size?: number;
|
|
49055
|
+
};
|
|
49056
|
+
url: '/api/marketplace-stats/resource_usage_by_customer/';
|
|
49057
|
+
};
|
|
49058
|
+
export type MarketplaceStatsResourceUsageByCustomerListResponses = {
|
|
49059
|
+
200: Array<ResourceUsageByCustomer>;
|
|
49060
|
+
};
|
|
49061
|
+
export type MarketplaceStatsResourceUsageByCustomerListResponse = MarketplaceStatsResourceUsageByCustomerListResponses[keyof MarketplaceStatsResourceUsageByCustomerListResponses];
|
|
49062
|
+
export type MarketplaceStatsResourceUsageByCustomerCountData = {
|
|
49063
|
+
body?: never;
|
|
49064
|
+
path?: never;
|
|
49065
|
+
query?: {
|
|
49066
|
+
/**
|
|
49067
|
+
* A page number within the paginated result set.
|
|
49068
|
+
*/
|
|
49069
|
+
page?: number;
|
|
49070
|
+
/**
|
|
49071
|
+
* Number of results to return per page.
|
|
49072
|
+
*/
|
|
49073
|
+
page_size?: number;
|
|
49074
|
+
};
|
|
49075
|
+
url: '/api/marketplace-stats/resource_usage_by_customer/';
|
|
49076
|
+
};
|
|
49077
|
+
export type MarketplaceStatsResourceUsageByCustomerCountResponses = {
|
|
49078
|
+
/**
|
|
49079
|
+
* No response body
|
|
49080
|
+
*/
|
|
49081
|
+
200: unknown;
|
|
49082
|
+
};
|
|
49083
|
+
export type MarketplaceStatsResourceUsageByOrganizationTypeListData = {
|
|
49084
|
+
body?: never;
|
|
49085
|
+
path?: never;
|
|
49086
|
+
query?: {
|
|
49087
|
+
/**
|
|
49088
|
+
* A page number within the paginated result set.
|
|
49089
|
+
*/
|
|
49090
|
+
page?: number;
|
|
49091
|
+
/**
|
|
49092
|
+
* Number of results to return per page.
|
|
49093
|
+
*/
|
|
49094
|
+
page_size?: number;
|
|
49095
|
+
};
|
|
49096
|
+
url: '/api/marketplace-stats/resource_usage_by_organization_type/';
|
|
49097
|
+
};
|
|
49098
|
+
export type MarketplaceStatsResourceUsageByOrganizationTypeListResponses = {
|
|
49099
|
+
200: Array<ResourceUsageByOrgType>;
|
|
49100
|
+
};
|
|
49101
|
+
export type MarketplaceStatsResourceUsageByOrganizationTypeListResponse = MarketplaceStatsResourceUsageByOrganizationTypeListResponses[keyof MarketplaceStatsResourceUsageByOrganizationTypeListResponses];
|
|
49102
|
+
export type MarketplaceStatsResourceUsageByOrganizationTypeCountData = {
|
|
49103
|
+
body?: never;
|
|
49104
|
+
path?: never;
|
|
49105
|
+
query?: {
|
|
49106
|
+
/**
|
|
49107
|
+
* A page number within the paginated result set.
|
|
49108
|
+
*/
|
|
49109
|
+
page?: number;
|
|
49110
|
+
/**
|
|
49111
|
+
* Number of results to return per page.
|
|
49112
|
+
*/
|
|
49113
|
+
page_size?: number;
|
|
49114
|
+
};
|
|
49115
|
+
url: '/api/marketplace-stats/resource_usage_by_organization_type/';
|
|
49116
|
+
};
|
|
49117
|
+
export type MarketplaceStatsResourceUsageByOrganizationTypeCountResponses = {
|
|
49118
|
+
/**
|
|
49119
|
+
* No response body
|
|
49120
|
+
*/
|
|
49121
|
+
200: unknown;
|
|
49122
|
+
};
|
|
49123
|
+
export type MarketplaceStatsResourcesGeographySummaryRetrieveData = {
|
|
49124
|
+
body?: never;
|
|
49125
|
+
path?: never;
|
|
49126
|
+
query?: never;
|
|
49127
|
+
url: '/api/marketplace-stats/resources_geography_summary/';
|
|
49128
|
+
};
|
|
49129
|
+
export type MarketplaceStatsResourcesGeographySummaryRetrieveResponses = {
|
|
49130
|
+
200: ResourcesGeographySummary;
|
|
49131
|
+
};
|
|
49132
|
+
export type MarketplaceStatsResourcesGeographySummaryRetrieveResponse = MarketplaceStatsResourcesGeographySummaryRetrieveResponses[keyof MarketplaceStatsResourcesGeographySummaryRetrieveResponses];
|
|
49133
|
+
export type MarketplaceStatsResourcesGeographySummaryCountData = {
|
|
49134
|
+
body?: never;
|
|
49135
|
+
path?: never;
|
|
49136
|
+
query?: never;
|
|
49137
|
+
url: '/api/marketplace-stats/resources_geography_summary/';
|
|
49138
|
+
};
|
|
49139
|
+
export type MarketplaceStatsResourcesGeographySummaryCountResponses = {
|
|
49140
|
+
/**
|
|
49141
|
+
* No response body
|
|
49142
|
+
*/
|
|
49143
|
+
200: unknown;
|
|
49144
|
+
};
|
|
47767
49145
|
export type MarketplaceStatsResourcesLimitsListData = {
|
|
47768
49146
|
body?: never;
|
|
47769
49147
|
path?: never;
|
|
@@ -48020,6 +49398,46 @@ export type MarketplaceStatsUserIdentitySourceCountCountResponses = {
|
|
|
48020
49398
|
*/
|
|
48021
49399
|
200: unknown;
|
|
48022
49400
|
};
|
|
49401
|
+
export type MarketplaceStatsUserJobTitleCountListData = {
|
|
49402
|
+
body?: never;
|
|
49403
|
+
path?: never;
|
|
49404
|
+
query?: {
|
|
49405
|
+
/**
|
|
49406
|
+
* A page number within the paginated result set.
|
|
49407
|
+
*/
|
|
49408
|
+
page?: number;
|
|
49409
|
+
/**
|
|
49410
|
+
* Number of results to return per page.
|
|
49411
|
+
*/
|
|
49412
|
+
page_size?: number;
|
|
49413
|
+
};
|
|
49414
|
+
url: '/api/marketplace-stats/user_job_title_count/';
|
|
49415
|
+
};
|
|
49416
|
+
export type MarketplaceStatsUserJobTitleCountListResponses = {
|
|
49417
|
+
200: Array<UserJobTitleCount>;
|
|
49418
|
+
};
|
|
49419
|
+
export type MarketplaceStatsUserJobTitleCountListResponse = MarketplaceStatsUserJobTitleCountListResponses[keyof MarketplaceStatsUserJobTitleCountListResponses];
|
|
49420
|
+
export type MarketplaceStatsUserJobTitleCountCountData = {
|
|
49421
|
+
body?: never;
|
|
49422
|
+
path?: never;
|
|
49423
|
+
query?: {
|
|
49424
|
+
/**
|
|
49425
|
+
* A page number within the paginated result set.
|
|
49426
|
+
*/
|
|
49427
|
+
page?: number;
|
|
49428
|
+
/**
|
|
49429
|
+
* Number of results to return per page.
|
|
49430
|
+
*/
|
|
49431
|
+
page_size?: number;
|
|
49432
|
+
};
|
|
49433
|
+
url: '/api/marketplace-stats/user_job_title_count/';
|
|
49434
|
+
};
|
|
49435
|
+
export type MarketplaceStatsUserJobTitleCountCountResponses = {
|
|
49436
|
+
/**
|
|
49437
|
+
* No response body
|
|
49438
|
+
*/
|
|
49439
|
+
200: unknown;
|
|
49440
|
+
};
|
|
48023
49441
|
export type MarketplaceStatsUserOrganizationCountListData = {
|
|
48024
49442
|
body?: never;
|
|
48025
49443
|
path?: never;
|
|
@@ -48060,6 +49478,46 @@ export type MarketplaceStatsUserOrganizationCountCountResponses = {
|
|
|
48060
49478
|
*/
|
|
48061
49479
|
200: unknown;
|
|
48062
49480
|
};
|
|
49481
|
+
export type MarketplaceStatsUserOrganizationTypeCountListData = {
|
|
49482
|
+
body?: never;
|
|
49483
|
+
path?: never;
|
|
49484
|
+
query?: {
|
|
49485
|
+
/**
|
|
49486
|
+
* A page number within the paginated result set.
|
|
49487
|
+
*/
|
|
49488
|
+
page?: number;
|
|
49489
|
+
/**
|
|
49490
|
+
* Number of results to return per page.
|
|
49491
|
+
*/
|
|
49492
|
+
page_size?: number;
|
|
49493
|
+
};
|
|
49494
|
+
url: '/api/marketplace-stats/user_organization_type_count/';
|
|
49495
|
+
};
|
|
49496
|
+
export type MarketplaceStatsUserOrganizationTypeCountListResponses = {
|
|
49497
|
+
200: Array<UserOrganizationTypeCount>;
|
|
49498
|
+
};
|
|
49499
|
+
export type MarketplaceStatsUserOrganizationTypeCountListResponse = MarketplaceStatsUserOrganizationTypeCountListResponses[keyof MarketplaceStatsUserOrganizationTypeCountListResponses];
|
|
49500
|
+
export type MarketplaceStatsUserOrganizationTypeCountCountData = {
|
|
49501
|
+
body?: never;
|
|
49502
|
+
path?: never;
|
|
49503
|
+
query?: {
|
|
49504
|
+
/**
|
|
49505
|
+
* A page number within the paginated result set.
|
|
49506
|
+
*/
|
|
49507
|
+
page?: number;
|
|
49508
|
+
/**
|
|
49509
|
+
* Number of results to return per page.
|
|
49510
|
+
*/
|
|
49511
|
+
page_size?: number;
|
|
49512
|
+
};
|
|
49513
|
+
url: '/api/marketplace-stats/user_organization_type_count/';
|
|
49514
|
+
};
|
|
49515
|
+
export type MarketplaceStatsUserOrganizationTypeCountCountResponses = {
|
|
49516
|
+
/**
|
|
49517
|
+
* No response body
|
|
49518
|
+
*/
|
|
49519
|
+
200: unknown;
|
|
49520
|
+
};
|
|
48063
49521
|
export type MarketplaceTagsListData = {
|
|
48064
49522
|
body?: never;
|
|
48065
49523
|
path?: never;
|
|
@@ -58197,7 +59655,7 @@ export type PromotionsCampaignsResourcesListData = {
|
|
|
58197
59655
|
uuid: string;
|
|
58198
59656
|
};
|
|
58199
59657
|
query?: {
|
|
58200
|
-
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
59658
|
+
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
58201
59659
|
/**
|
|
58202
59660
|
* A page number within the paginated result set.
|
|
58203
59661
|
*/
|
|
@@ -68260,6 +69718,147 @@ export type UsersDataAccessHistoryListResponses = {
|
|
|
68260
69718
|
200: Array<UserDataAccessLog>;
|
|
68261
69719
|
};
|
|
68262
69720
|
export type UsersDataAccessHistoryListResponse = UsersDataAccessHistoryListResponses[keyof UsersDataAccessHistoryListResponses];
|
|
69721
|
+
export type UsersHistoryListData = {
|
|
69722
|
+
body?: never;
|
|
69723
|
+
path: {
|
|
69724
|
+
uuid: string;
|
|
69725
|
+
};
|
|
69726
|
+
query?: {
|
|
69727
|
+
/**
|
|
69728
|
+
* Agreement date after
|
|
69729
|
+
*/
|
|
69730
|
+
agreement_date?: string;
|
|
69731
|
+
civil_number?: string;
|
|
69732
|
+
/**
|
|
69733
|
+
* Filter versions created after this timestamp (ISO 8601)
|
|
69734
|
+
*/
|
|
69735
|
+
created_after?: string;
|
|
69736
|
+
/**
|
|
69737
|
+
* Filter versions created before this timestamp (ISO 8601)
|
|
69738
|
+
*/
|
|
69739
|
+
created_before?: string;
|
|
69740
|
+
/**
|
|
69741
|
+
* Customer UUID
|
|
69742
|
+
*/
|
|
69743
|
+
customer_uuid?: string;
|
|
69744
|
+
/**
|
|
69745
|
+
* Date joined after
|
|
69746
|
+
*/
|
|
69747
|
+
date_joined?: string;
|
|
69748
|
+
description?: string;
|
|
69749
|
+
/**
|
|
69750
|
+
* Email
|
|
69751
|
+
*/
|
|
69752
|
+
email?: string;
|
|
69753
|
+
/**
|
|
69754
|
+
* Full name
|
|
69755
|
+
*/
|
|
69756
|
+
full_name?: string;
|
|
69757
|
+
/**
|
|
69758
|
+
* Is active
|
|
69759
|
+
*/
|
|
69760
|
+
is_active?: boolean;
|
|
69761
|
+
/**
|
|
69762
|
+
* Is staff
|
|
69763
|
+
*/
|
|
69764
|
+
is_staff?: boolean;
|
|
69765
|
+
/**
|
|
69766
|
+
* Is support
|
|
69767
|
+
*/
|
|
69768
|
+
is_support?: boolean;
|
|
69769
|
+
/**
|
|
69770
|
+
* Job title
|
|
69771
|
+
*/
|
|
69772
|
+
job_title?: string;
|
|
69773
|
+
/**
|
|
69774
|
+
* Date modified after
|
|
69775
|
+
*/
|
|
69776
|
+
modified?: string;
|
|
69777
|
+
/**
|
|
69778
|
+
* Native name
|
|
69779
|
+
*/
|
|
69780
|
+
native_name?: string;
|
|
69781
|
+
/**
|
|
69782
|
+
* Ordering
|
|
69783
|
+
*
|
|
69784
|
+
*
|
|
69785
|
+
*/
|
|
69786
|
+
o?: Array<'-description' | '-email' | '-full_name' | '-is_active' | '-is_staff' | '-is_support' | '-job_title' | '-native_name' | '-organization' | '-phone_number' | '-registration_method' | '-username' | 'description' | 'email' | 'full_name' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'native_name' | 'organization' | 'phone_number' | 'registration_method' | 'username'>;
|
|
69787
|
+
/**
|
|
69788
|
+
* Organization
|
|
69789
|
+
*/
|
|
69790
|
+
organization?: string;
|
|
69791
|
+
/**
|
|
69792
|
+
* Organization roles
|
|
69793
|
+
*/
|
|
69794
|
+
organization_roles?: string;
|
|
69795
|
+
/**
|
|
69796
|
+
* A page number within the paginated result set.
|
|
69797
|
+
*/
|
|
69798
|
+
page?: number;
|
|
69799
|
+
/**
|
|
69800
|
+
* Number of results to return per page.
|
|
69801
|
+
*/
|
|
69802
|
+
page_size?: number;
|
|
69803
|
+
phone_number?: string;
|
|
69804
|
+
/**
|
|
69805
|
+
* Project roles
|
|
69806
|
+
*/
|
|
69807
|
+
project_roles?: string;
|
|
69808
|
+
/**
|
|
69809
|
+
* Project UUID
|
|
69810
|
+
*/
|
|
69811
|
+
project_uuid?: string;
|
|
69812
|
+
/**
|
|
69813
|
+
* Filter by first name, last name, civil number, username or email
|
|
69814
|
+
*/
|
|
69815
|
+
query?: string;
|
|
69816
|
+
registration_method?: string;
|
|
69817
|
+
/**
|
|
69818
|
+
* User keyword
|
|
69819
|
+
*/
|
|
69820
|
+
user_keyword?: string;
|
|
69821
|
+
/**
|
|
69822
|
+
* Username (exact)
|
|
69823
|
+
*/
|
|
69824
|
+
username?: string;
|
|
69825
|
+
/**
|
|
69826
|
+
* Comma-separated usernames
|
|
69827
|
+
*/
|
|
69828
|
+
username_list?: string;
|
|
69829
|
+
};
|
|
69830
|
+
url: '/api/users/{uuid}/history/';
|
|
69831
|
+
};
|
|
69832
|
+
export type UsersHistoryListResponses = {
|
|
69833
|
+
200: Array<VersionHistory>;
|
|
69834
|
+
};
|
|
69835
|
+
export type UsersHistoryListResponse = UsersHistoryListResponses[keyof UsersHistoryListResponses];
|
|
69836
|
+
export type UsersHistoryAtRetrieveData = {
|
|
69837
|
+
body?: never;
|
|
69838
|
+
path: {
|
|
69839
|
+
uuid: string;
|
|
69840
|
+
};
|
|
69841
|
+
query: {
|
|
69842
|
+
/**
|
|
69843
|
+
* ISO 8601 timestamp to query the object state at
|
|
69844
|
+
*/
|
|
69845
|
+
timestamp: string;
|
|
69846
|
+
};
|
|
69847
|
+
url: '/api/users/{uuid}/history/at/';
|
|
69848
|
+
};
|
|
69849
|
+
export type UsersHistoryAtRetrieveErrors = {
|
|
69850
|
+
400: {
|
|
69851
|
+
[key: string]: unknown;
|
|
69852
|
+
};
|
|
69853
|
+
404: {
|
|
69854
|
+
[key: string]: unknown;
|
|
69855
|
+
};
|
|
69856
|
+
};
|
|
69857
|
+
export type UsersHistoryAtRetrieveError = UsersHistoryAtRetrieveErrors[keyof UsersHistoryAtRetrieveErrors];
|
|
69858
|
+
export type UsersHistoryAtRetrieveResponses = {
|
|
69859
|
+
200: VersionHistory;
|
|
69860
|
+
};
|
|
69861
|
+
export type UsersHistoryAtRetrieveResponse = UsersHistoryAtRetrieveResponses[keyof UsersHistoryAtRetrieveResponses];
|
|
68263
69862
|
export type UsersPullRemoteUserData = {
|
|
68264
69863
|
body?: never;
|
|
68265
69864
|
path: {
|
|
@@ -68356,6 +69955,16 @@ export type UsersProfileCompletenessCountResponses = {
|
|
|
68356
69955
|
*/
|
|
68357
69956
|
200: unknown;
|
|
68358
69957
|
};
|
|
69958
|
+
export type UsersScimSyncAllData = {
|
|
69959
|
+
body?: never;
|
|
69960
|
+
path?: never;
|
|
69961
|
+
query?: never;
|
|
69962
|
+
url: '/api/users/scim_sync_all/';
|
|
69963
|
+
};
|
|
69964
|
+
export type UsersScimSyncAllResponses = {
|
|
69965
|
+
200: ScimSyncAllResponse;
|
|
69966
|
+
};
|
|
69967
|
+
export type UsersScimSyncAllResponse = UsersScimSyncAllResponses[keyof UsersScimSyncAllResponses];
|
|
68359
69968
|
export type UsersUserActiveStatusCountListData = {
|
|
68360
69969
|
body?: never;
|
|
68361
69970
|
path?: never;
|