waldur-js-client 7.9.10-dev.1 → 7.9.10-dev.11
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 +1910 -281
- 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 = {
|
|
@@ -4226,7 +4263,7 @@ export type CustomerEstimatedCostPolicy = {
|
|
|
4226
4263
|
*/
|
|
4227
4264
|
options?: unknown;
|
|
4228
4265
|
limit_cost: number;
|
|
4229
|
-
period?:
|
|
4266
|
+
period?: PolicyPeriodEnum;
|
|
4230
4267
|
readonly period_name: string;
|
|
4231
4268
|
readonly customer_credit: number;
|
|
4232
4269
|
billing_price_estimate: NestedPriceEstimate;
|
|
@@ -4239,7 +4276,7 @@ export type CustomerEstimatedCostPolicyRequest = {
|
|
|
4239
4276
|
*/
|
|
4240
4277
|
options?: unknown;
|
|
4241
4278
|
limit_cost: number;
|
|
4242
|
-
period?:
|
|
4279
|
+
period?: PolicyPeriodEnum;
|
|
4243
4280
|
};
|
|
4244
4281
|
export type CustomerIndustryFlagStats = {
|
|
4245
4282
|
/**
|
|
@@ -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
|
/**
|
|
@@ -5693,6 +5749,7 @@ export type GroupInvitationRequest = {
|
|
|
5693
5749
|
*/
|
|
5694
5750
|
user_identity_sources?: unknown;
|
|
5695
5751
|
};
|
|
5752
|
+
export type GrowthPeriodEnum = 'weekly' | 'monthly';
|
|
5696
5753
|
export type GuestOsEnum = 'DOS' | 'WIN_31' | 'WIN_95' | 'WIN_98' | 'WIN_ME' | 'WIN_NT' | 'WIN_2000_PRO' | 'WIN_2000_SERV' | 'WIN_2000_ADV_SERV' | 'WIN_XP_HOME' | 'WIN_XP_PRO' | 'WIN_XP_PRO_64' | 'WIN_NET_WEB' | 'WIN_NET_STANDARD' | 'WIN_NET_ENTERPRISE' | 'WIN_NET_DATACENTER' | 'WIN_NET_BUSINESS' | 'WIN_NET_STANDARD_64' | 'WIN_NET_ENTERPRISE_64' | 'WIN_LONGHORN' | 'WIN_LONGHORN_64' | 'WIN_NET_DATACENTER_64' | 'WIN_VISTA' | 'WIN_VISTA_64' | 'WINDOWS_7' | 'WINDOWS_7_64' | 'WINDOWS_7_SERVER_64' | 'WINDOWS_8' | 'WINDOWS_8_64' | 'WINDOWS_8_SERVER_64' | 'WINDOWS_9' | 'WINDOWS_9_64' | 'WINDOWS_9_SERVER_64' | 'WINDOWS_HYPERV' | 'FREEBSD' | 'FREEBSD_64' | 'REDHAT' | 'RHEL_2' | 'RHEL_3' | 'RHEL_3_64' | 'RHEL_4' | 'RHEL_4_64' | 'RHEL_5' | 'RHEL_5_64' | 'RHEL_6' | 'RHEL_6_64' | 'RHEL_7' | 'RHEL_7_64' | 'CENTOS' | 'CENTOS_64' | 'CENTOS_6' | 'CENTOS_6_64' | 'CENTOS_7' | 'CENTOS_7_64' | 'ORACLE_LINUX' | 'ORACLE_LINUX_64' | 'ORACLE_LINUX_6' | 'ORACLE_LINUX_6_64' | 'ORACLE_LINUX_7' | 'ORACLE_LINUX_7_64' | 'SUSE' | 'SUSE_64' | 'SLES' | 'SLES_64' | 'SLES_10' | 'SLES_10_64' | 'SLES_11' | 'SLES_11_64' | 'SLES_12' | 'SLES_12_64' | 'NLD_9' | 'OES' | 'SJDS' | 'MANDRAKE' | 'MANDRIVA' | 'MANDRIVA_64' | 'TURBO_LINUX' | 'TURBO_LINUX_64' | 'UBUNTU' | 'UBUNTU_64' | 'DEBIAN_4' | 'DEBIAN_4_64' | 'DEBIAN_5' | 'DEBIAN_5_64' | 'DEBIAN_6' | 'DEBIAN_6_64' | 'DEBIAN_7' | 'DEBIAN_7_64' | 'DEBIAN_8' | 'DEBIAN_8_64' | 'DEBIAN_9' | 'DEBIAN_9_64' | 'DEBIAN_10' | 'DEBIAN_10_64' | 'ASIANUX_3' | 'ASIANUX_3_64' | 'ASIANUX_4' | 'ASIANUX_4_64' | 'ASIANUX_5_64' | 'ASIANUX_7_64' | 'OPENSUSE' | 'OPENSUSE_64' | 'FEDORA' | 'FEDORA_64' | 'COREOS_64' | 'VMWARE_PHOTON_64' | 'OTHER_24X_LINUX' | 'OTHER_24X_LINUX_64' | 'OTHER_26X_LINUX' | 'OTHER_26X_LINUX_64' | 'OTHER_3X_LINUX' | 'OTHER_3X_LINUX_64' | 'OTHER_LINUX' | 'GENERIC_LINUX' | 'OTHER_LINUX_64' | 'SOLARIS_6' | 'SOLARIS_7' | 'SOLARIS_8' | 'SOLARIS_9' | 'SOLARIS_10' | 'SOLARIS_10_64' | 'SOLARIS_11_64' | 'OS2' | 'ECOMSTATION' | 'ECOMSTATION_2' | 'NETWARE_4' | 'NETWARE_5' | 'NETWARE_6' | 'OPENSERVER_5' | 'OPENSERVER_6' | 'UNIXWARE_7' | 'DARWIN' | 'DARWIN_64' | 'DARWIN_10' | 'DARWIN_10_64' | 'DARWIN_11' | 'DARWIN_11_64' | 'DARWIN_12_64' | 'DARWIN_13_64' | 'DARWIN_14_64' | 'DARWIN_15_64' | 'DARWIN_16_64' | 'VMKERNEL' | 'VMKERNEL_5' | 'VMKERNEL_6' | 'VMKERNEL_65' | 'OTHER' | 'OTHER_64';
|
|
5697
5754
|
export type GuestPowerStateEnum = 'RUNNING' | 'SHUTTING_DOWN' | 'RESETTING' | 'STANDBY' | 'NOT_RUNNING' | 'UNAVAILABLE';
|
|
5698
5755
|
export type IpMapping = {
|
|
@@ -8093,6 +8150,7 @@ export type MigrationDetailsRequest = {
|
|
|
8093
8150
|
error_traceback?: string;
|
|
8094
8151
|
};
|
|
8095
8152
|
export type MinimalConsumptionLogicEnum = 'fixed' | 'linear';
|
|
8153
|
+
export type ModeEnum = 'production' | 'emulator';
|
|
8096
8154
|
export type MoveOfferingRequest = {
|
|
8097
8155
|
/**
|
|
8098
8156
|
* Target customer URL with service provider profile where the offering should be moved
|
|
@@ -8281,13 +8339,13 @@ export type NestedColumnRequest = {
|
|
|
8281
8339
|
export type NestedCustomerUsagePolicyComponent = {
|
|
8282
8340
|
readonly type: string;
|
|
8283
8341
|
limit: number;
|
|
8284
|
-
period?:
|
|
8342
|
+
period?: PolicyPeriodEnum;
|
|
8285
8343
|
readonly period_name: string;
|
|
8286
8344
|
component: string;
|
|
8287
8345
|
};
|
|
8288
8346
|
export type NestedCustomerUsagePolicyComponentRequest = {
|
|
8289
8347
|
limit: number;
|
|
8290
|
-
period?:
|
|
8348
|
+
period?: PolicyPeriodEnum;
|
|
8291
8349
|
component: string;
|
|
8292
8350
|
};
|
|
8293
8351
|
export type NestedEndpoint = {
|
|
@@ -9139,6 +9197,20 @@ export type OfferingCost = {
|
|
|
9139
9197
|
*/
|
|
9140
9198
|
cost: number;
|
|
9141
9199
|
};
|
|
9200
|
+
export type OfferingCostsSummary = {
|
|
9201
|
+
/**
|
|
9202
|
+
* Total cost of all active resources across all offerings
|
|
9203
|
+
*/
|
|
9204
|
+
total_cost: string;
|
|
9205
|
+
/**
|
|
9206
|
+
* Number of offerings with active resources
|
|
9207
|
+
*/
|
|
9208
|
+
offering_count: number;
|
|
9209
|
+
/**
|
|
9210
|
+
* Average cost per offering
|
|
9211
|
+
*/
|
|
9212
|
+
average_cost: string;
|
|
9213
|
+
};
|
|
9142
9214
|
export type OfferingCountryStats = {
|
|
9143
9215
|
/**
|
|
9144
9216
|
* Country code of the offering
|
|
@@ -9218,7 +9290,7 @@ export type OfferingEstimatedCostPolicy = {
|
|
|
9218
9290
|
*/
|
|
9219
9291
|
options?: unknown;
|
|
9220
9292
|
limit_cost: number;
|
|
9221
|
-
period?:
|
|
9293
|
+
period?: PolicyPeriodEnum;
|
|
9222
9294
|
readonly period_name: string;
|
|
9223
9295
|
organization_groups?: Array<string>;
|
|
9224
9296
|
/**
|
|
@@ -9234,7 +9306,7 @@ export type OfferingEstimatedCostPolicyRequest = {
|
|
|
9234
9306
|
*/
|
|
9235
9307
|
options?: unknown;
|
|
9236
9308
|
limit_cost: number;
|
|
9237
|
-
period?:
|
|
9309
|
+
period?: PolicyPeriodEnum;
|
|
9238
9310
|
organization_groups?: Array<string>;
|
|
9239
9311
|
/**
|
|
9240
9312
|
* If True, policy applies to all customers. Mutually exclusive with organization_groups.
|
|
@@ -9868,7 +9940,7 @@ export type OfferingUsagePolicy = {
|
|
|
9868
9940
|
*/
|
|
9869
9941
|
apply_to_all?: boolean;
|
|
9870
9942
|
component_limits_set: Array<NestedOfferingComponentLimit>;
|
|
9871
|
-
period?:
|
|
9943
|
+
period?: PolicyPeriodEnum;
|
|
9872
9944
|
readonly period_name: string;
|
|
9873
9945
|
};
|
|
9874
9946
|
export type OfferingUsagePolicyRequest = {
|
|
@@ -9884,7 +9956,7 @@ export type OfferingUsagePolicyRequest = {
|
|
|
9884
9956
|
*/
|
|
9885
9957
|
apply_to_all?: boolean;
|
|
9886
9958
|
component_limits_set: Array<NestedOfferingComponentLimitRequest>;
|
|
9887
|
-
period?:
|
|
9959
|
+
period?: PolicyPeriodEnum;
|
|
9888
9960
|
};
|
|
9889
9961
|
export type OfferingUser = {
|
|
9890
9962
|
readonly url?: string;
|
|
@@ -11950,6 +12022,7 @@ export type OptionField = {
|
|
|
11950
12022
|
component_multiplier_config?: ComponentMultiplierConfig;
|
|
11951
12023
|
storage_folder_config?: StorageFolderConfig;
|
|
11952
12024
|
default_configs?: K8sDefaultConfiguration;
|
|
12025
|
+
validators?: Array<OptionValidator>;
|
|
11953
12026
|
};
|
|
11954
12027
|
export type OptionFieldRequest = {
|
|
11955
12028
|
type: OptionFieldTypeEnum;
|
|
@@ -11964,8 +12037,18 @@ export type OptionFieldRequest = {
|
|
|
11964
12037
|
component_multiplier_config?: ComponentMultiplierConfigRequest;
|
|
11965
12038
|
storage_folder_config?: StorageFolderConfigRequest;
|
|
11966
12039
|
default_configs?: K8sDefaultConfigurationRequest;
|
|
12040
|
+
validators?: Array<OptionValidatorRequest>;
|
|
11967
12041
|
};
|
|
11968
12042
|
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';
|
|
12043
|
+
export type OptionValidator = {
|
|
12044
|
+
type: OptionValidatorTypeEnum;
|
|
12045
|
+
target_field: string;
|
|
12046
|
+
};
|
|
12047
|
+
export type OptionValidatorRequest = {
|
|
12048
|
+
type: OptionValidatorTypeEnum;
|
|
12049
|
+
target_field: string;
|
|
12050
|
+
};
|
|
12051
|
+
export type OptionValidatorTypeEnum = 'gt' | 'gte' | 'lt' | 'lte';
|
|
11969
12052
|
export type OrcidCallbackRequest = {
|
|
11970
12053
|
/**
|
|
11971
12054
|
* Authorization code from ORCID OAuth callback
|
|
@@ -12197,6 +12280,26 @@ export type OrderUuid = {
|
|
|
12197
12280
|
*/
|
|
12198
12281
|
readonly order_uuid: string;
|
|
12199
12282
|
};
|
|
12283
|
+
export type OrderUpdate = {
|
|
12284
|
+
limits?: {
|
|
12285
|
+
[key: string]: number;
|
|
12286
|
+
};
|
|
12287
|
+
attributes?: unknown;
|
|
12288
|
+
/**
|
|
12289
|
+
* Enables delayed processing of resource provisioning order.
|
|
12290
|
+
*/
|
|
12291
|
+
start_date?: string | null;
|
|
12292
|
+
};
|
|
12293
|
+
export type OrderUpdateRequest = {
|
|
12294
|
+
limits?: {
|
|
12295
|
+
[key: string]: number;
|
|
12296
|
+
};
|
|
12297
|
+
attributes?: unknown;
|
|
12298
|
+
/**
|
|
12299
|
+
* Enables delayed processing of resource provisioning order.
|
|
12300
|
+
*/
|
|
12301
|
+
start_date?: string | null;
|
|
12302
|
+
};
|
|
12200
12303
|
export type OrganizationGroup = {
|
|
12201
12304
|
readonly uuid?: string;
|
|
12202
12305
|
readonly url?: string;
|
|
@@ -12507,7 +12610,7 @@ export type PatchedCustomerEstimatedCostPolicyRequest = {
|
|
|
12507
12610
|
*/
|
|
12508
12611
|
options?: unknown;
|
|
12509
12612
|
limit_cost?: number;
|
|
12510
|
-
period?:
|
|
12613
|
+
period?: PolicyPeriodEnum;
|
|
12511
12614
|
};
|
|
12512
12615
|
export type PatchedCustomerRequest = {
|
|
12513
12616
|
/**
|
|
@@ -12856,7 +12959,7 @@ export type PatchedOfferingEstimatedCostPolicyRequest = {
|
|
|
12856
12959
|
*/
|
|
12857
12960
|
options?: unknown;
|
|
12858
12961
|
limit_cost?: number;
|
|
12859
|
-
period?:
|
|
12962
|
+
period?: PolicyPeriodEnum;
|
|
12860
12963
|
organization_groups?: Array<string>;
|
|
12861
12964
|
/**
|
|
12862
12965
|
* If True, policy applies to all customers. Mutually exclusive with organization_groups.
|
|
@@ -12981,7 +13084,7 @@ export type PatchedOfferingUsagePolicyRequest = {
|
|
|
12981
13084
|
*/
|
|
12982
13085
|
apply_to_all?: boolean;
|
|
12983
13086
|
component_limits_set?: Array<NestedOfferingComponentLimitRequest>;
|
|
12984
|
-
period?:
|
|
13087
|
+
period?: PolicyPeriodEnum;
|
|
12985
13088
|
};
|
|
12986
13089
|
export type PatchedOfferingUserAttributeConfigRequest = {
|
|
12987
13090
|
offering?: string;
|
|
@@ -13147,6 +13250,16 @@ export type PatchedOpenStackVolumeRequest = {
|
|
|
13147
13250
|
*/
|
|
13148
13251
|
bootable?: boolean;
|
|
13149
13252
|
};
|
|
13253
|
+
export type PatchedOrderUpdateRequest = {
|
|
13254
|
+
limits?: {
|
|
13255
|
+
[key: string]: number;
|
|
13256
|
+
};
|
|
13257
|
+
attributes?: unknown;
|
|
13258
|
+
/**
|
|
13259
|
+
* Enables delayed processing of resource provisioning order.
|
|
13260
|
+
*/
|
|
13261
|
+
start_date?: string | null;
|
|
13262
|
+
};
|
|
13150
13263
|
export type PatchedOrganizationGroupRequest = {
|
|
13151
13264
|
name?: string;
|
|
13152
13265
|
parent?: string | null;
|
|
@@ -13174,6 +13287,22 @@ export type PatchedProjectCreditRequest = {
|
|
|
13174
13287
|
apply_as_minimal_consumption?: boolean;
|
|
13175
13288
|
mark_unused_credit_as_spent_on_project_termination?: boolean;
|
|
13176
13289
|
};
|
|
13290
|
+
export type PatchedProjectDigestConfigRequest = {
|
|
13291
|
+
is_enabled?: boolean;
|
|
13292
|
+
frequency?: FrequencyEnum;
|
|
13293
|
+
/**
|
|
13294
|
+
* List of section keys to include. Empty means all.
|
|
13295
|
+
*/
|
|
13296
|
+
enabled_sections?: string;
|
|
13297
|
+
/**
|
|
13298
|
+
* For weekly/biweekly: 0=Sunday..6=Saturday
|
|
13299
|
+
*/
|
|
13300
|
+
day_of_week?: number;
|
|
13301
|
+
/**
|
|
13302
|
+
* For monthly: day of month (1-28)
|
|
13303
|
+
*/
|
|
13304
|
+
day_of_month?: number;
|
|
13305
|
+
};
|
|
13177
13306
|
export type PatchedProjectEstimatedCostPolicyRequest = {
|
|
13178
13307
|
scope?: string;
|
|
13179
13308
|
actions?: string;
|
|
@@ -13182,7 +13311,7 @@ export type PatchedProjectEstimatedCostPolicyRequest = {
|
|
|
13182
13311
|
*/
|
|
13183
13312
|
options?: unknown;
|
|
13184
13313
|
limit_cost?: number;
|
|
13185
|
-
period?:
|
|
13314
|
+
period?: PolicyPeriodEnum;
|
|
13186
13315
|
};
|
|
13187
13316
|
export type PatchedProjectInfoRequest = {
|
|
13188
13317
|
project?: string;
|
|
@@ -13823,7 +13952,7 @@ export type PatchedSlurmPeriodicUsagePolicyRequest = {
|
|
|
13823
13952
|
*/
|
|
13824
13953
|
apply_to_all?: boolean;
|
|
13825
13954
|
component_limits_set?: Array<NestedOfferingComponentLimitRequest>;
|
|
13826
|
-
period?:
|
|
13955
|
+
period?: PolicyPeriodEnum;
|
|
13827
13956
|
/**
|
|
13828
13957
|
* SLURM limit type to apply
|
|
13829
13958
|
*/
|
|
@@ -13837,9 +13966,9 @@ export type PatchedSlurmPeriodicUsagePolicyRequest = {
|
|
|
13837
13966
|
*/
|
|
13838
13967
|
tres_billing_weights?: unknown;
|
|
13839
13968
|
/**
|
|
13840
|
-
*
|
|
13969
|
+
* Maximum percentage of base allocation that can carry over from unused previous period (0-100)
|
|
13841
13970
|
*/
|
|
13842
|
-
|
|
13971
|
+
carryover_factor?: number;
|
|
13843
13972
|
/**
|
|
13844
13973
|
* Grace period ratio (0.2 = 20% overconsumption allowed)
|
|
13845
13974
|
*/
|
|
@@ -14087,7 +14216,6 @@ export type PaymentUrlRequest = {
|
|
|
14087
14216
|
*/
|
|
14088
14217
|
payment_url?: string;
|
|
14089
14218
|
};
|
|
14090
|
-
export type PeriodEnum = 1 | 2 | 3 | 4;
|
|
14091
14219
|
export type Permission = {
|
|
14092
14220
|
readonly user_uuid?: string;
|
|
14093
14221
|
readonly user_name?: string;
|
|
@@ -14253,6 +14381,7 @@ export type PluginOfferingType = {
|
|
|
14253
14381
|
available_limits: Array<string>;
|
|
14254
14382
|
};
|
|
14255
14383
|
export type PolicyEnum = 'affinity';
|
|
14384
|
+
export type PolicyPeriodEnum = 1 | 2 | 3 | 4;
|
|
14256
14385
|
export type PolicyTypeEnum = 'access_as_shared' | 'access_as_external';
|
|
14257
14386
|
export type PricesUpdateRequest = {
|
|
14258
14387
|
prices: {
|
|
@@ -14402,6 +14531,20 @@ export type ProjectAttachRequest = {
|
|
|
14402
14531
|
*/
|
|
14403
14532
|
project_uuid: string;
|
|
14404
14533
|
};
|
|
14534
|
+
export type ProjectClassificationSummary = {
|
|
14535
|
+
/**
|
|
14536
|
+
* Total number of projects
|
|
14537
|
+
*/
|
|
14538
|
+
total_projects: number;
|
|
14539
|
+
/**
|
|
14540
|
+
* Number of academic projects (industry_flag=False)
|
|
14541
|
+
*/
|
|
14542
|
+
academic_projects: number;
|
|
14543
|
+
/**
|
|
14544
|
+
* Number of industry projects (industry_flag=True)
|
|
14545
|
+
*/
|
|
14546
|
+
industry_projects: number;
|
|
14547
|
+
};
|
|
14405
14548
|
export type ProjectCredit = {
|
|
14406
14549
|
readonly uuid: string;
|
|
14407
14550
|
readonly url: string;
|
|
@@ -14453,6 +14596,51 @@ export type ProjectDetailsResponse = {
|
|
|
14453
14596
|
readonly projects_requiring_review: number;
|
|
14454
14597
|
readonly project_details: Array<ProjectDetail>;
|
|
14455
14598
|
};
|
|
14599
|
+
export type ProjectDigestConfig = {
|
|
14600
|
+
readonly uuid: string;
|
|
14601
|
+
is_enabled?: boolean;
|
|
14602
|
+
frequency?: FrequencyEnum;
|
|
14603
|
+
/**
|
|
14604
|
+
* List of section keys to include. Empty means all.
|
|
14605
|
+
*/
|
|
14606
|
+
enabled_sections?: string;
|
|
14607
|
+
/**
|
|
14608
|
+
* For weekly/biweekly: 0=Sunday..6=Saturday
|
|
14609
|
+
*/
|
|
14610
|
+
day_of_week?: number;
|
|
14611
|
+
/**
|
|
14612
|
+
* For monthly: day of month (1-28)
|
|
14613
|
+
*/
|
|
14614
|
+
day_of_month?: number;
|
|
14615
|
+
readonly last_sent_at: string | null;
|
|
14616
|
+
readonly available_sections: Array<{
|
|
14617
|
+
[key: string]: string;
|
|
14618
|
+
}>;
|
|
14619
|
+
};
|
|
14620
|
+
export type ProjectDigestConfigRequest = {
|
|
14621
|
+
is_enabled?: boolean;
|
|
14622
|
+
frequency?: FrequencyEnum;
|
|
14623
|
+
/**
|
|
14624
|
+
* List of section keys to include. Empty means all.
|
|
14625
|
+
*/
|
|
14626
|
+
enabled_sections?: string;
|
|
14627
|
+
/**
|
|
14628
|
+
* For weekly/biweekly: 0=Sunday..6=Saturday
|
|
14629
|
+
*/
|
|
14630
|
+
day_of_week?: number;
|
|
14631
|
+
/**
|
|
14632
|
+
* For monthly: day of month (1-28)
|
|
14633
|
+
*/
|
|
14634
|
+
day_of_month?: number;
|
|
14635
|
+
};
|
|
14636
|
+
export type ProjectDigestPreviewRequest = {
|
|
14637
|
+
project_uuid: string;
|
|
14638
|
+
};
|
|
14639
|
+
export type ProjectDigestPreviewResponse = {
|
|
14640
|
+
subject: string;
|
|
14641
|
+
html_body: string;
|
|
14642
|
+
text_body: string;
|
|
14643
|
+
};
|
|
14456
14644
|
export type ProjectEstimatedCostPolicy = {
|
|
14457
14645
|
readonly uuid: string;
|
|
14458
14646
|
readonly url: string;
|
|
@@ -14470,7 +14658,7 @@ export type ProjectEstimatedCostPolicy = {
|
|
|
14470
14658
|
*/
|
|
14471
14659
|
options?: unknown;
|
|
14472
14660
|
limit_cost: number;
|
|
14473
|
-
period?:
|
|
14661
|
+
period?: PolicyPeriodEnum;
|
|
14474
14662
|
readonly period_name: string;
|
|
14475
14663
|
readonly project_credit: number | null;
|
|
14476
14664
|
readonly customer_credit: number | null;
|
|
@@ -14484,7 +14672,7 @@ export type ProjectEstimatedCostPolicyRequest = {
|
|
|
14484
14672
|
*/
|
|
14485
14673
|
options?: unknown;
|
|
14486
14674
|
limit_cost: number;
|
|
14487
|
-
period?:
|
|
14675
|
+
period?: PolicyPeriodEnum;
|
|
14488
14676
|
};
|
|
14489
14677
|
export type ProjectHyperlinkRequest = {
|
|
14490
14678
|
url: string;
|
|
@@ -17457,6 +17645,7 @@ export type Resource = {
|
|
|
17457
17645
|
readonly parent_offering_uuid?: string;
|
|
17458
17646
|
readonly parent_offering_name?: string;
|
|
17459
17647
|
readonly parent_offering_slug?: string;
|
|
17648
|
+
readonly offering_backend_id?: string;
|
|
17460
17649
|
readonly parent_uuid?: string;
|
|
17461
17650
|
readonly parent_name?: string;
|
|
17462
17651
|
backend_metadata?: BackendMetadata;
|
|
@@ -17783,6 +17972,88 @@ export type ResourceUpdateRequest = {
|
|
|
17783
17972
|
*/
|
|
17784
17973
|
end_date?: string | null;
|
|
17785
17974
|
};
|
|
17975
|
+
export type ResourceUsageByAffiliation = {
|
|
17976
|
+
/**
|
|
17977
|
+
* User affiliation value
|
|
17978
|
+
*/
|
|
17979
|
+
affiliation: string;
|
|
17980
|
+
/**
|
|
17981
|
+
* Component type
|
|
17982
|
+
*/
|
|
17983
|
+
component_type: string;
|
|
17984
|
+
/**
|
|
17985
|
+
* Total usage
|
|
17986
|
+
*/
|
|
17987
|
+
total_usage: string;
|
|
17988
|
+
/**
|
|
17989
|
+
* Total cost
|
|
17990
|
+
*/
|
|
17991
|
+
total_cost: string;
|
|
17992
|
+
/**
|
|
17993
|
+
* Number of resources
|
|
17994
|
+
*/
|
|
17995
|
+
resource_count: number;
|
|
17996
|
+
};
|
|
17997
|
+
export type ResourceUsageByCustomer = {
|
|
17998
|
+
/**
|
|
17999
|
+
* UUID of the customer
|
|
18000
|
+
*/
|
|
18001
|
+
customer_uuid: string;
|
|
18002
|
+
/**
|
|
18003
|
+
* Name of the customer
|
|
18004
|
+
*/
|
|
18005
|
+
customer_name: string;
|
|
18006
|
+
/**
|
|
18007
|
+
* Abbreviation of the customer
|
|
18008
|
+
*/
|
|
18009
|
+
customer_abbreviation: string | null;
|
|
18010
|
+
/**
|
|
18011
|
+
* Number of OK resources
|
|
18012
|
+
*/
|
|
18013
|
+
resources_ok: number;
|
|
18014
|
+
/**
|
|
18015
|
+
* Number of erred resources
|
|
18016
|
+
*/
|
|
18017
|
+
resources_erred: number;
|
|
18018
|
+
/**
|
|
18019
|
+
* Total number of active resources
|
|
18020
|
+
*/
|
|
18021
|
+
resources_total: number;
|
|
18022
|
+
/**
|
|
18023
|
+
* Total cost of resources
|
|
18024
|
+
*/
|
|
18025
|
+
total_cost: string;
|
|
18026
|
+
/**
|
|
18027
|
+
* Component usages keyed by component type
|
|
18028
|
+
*/
|
|
18029
|
+
usages: {
|
|
18030
|
+
[key: string]: string;
|
|
18031
|
+
};
|
|
18032
|
+
/**
|
|
18033
|
+
* Resource limits keyed by limit name
|
|
18034
|
+
*/
|
|
18035
|
+
limits: {
|
|
18036
|
+
[key: string]: number;
|
|
18037
|
+
};
|
|
18038
|
+
};
|
|
18039
|
+
export type ResourceUsageByOrgType = {
|
|
18040
|
+
/**
|
|
18041
|
+
* SCHAC organization type URN
|
|
18042
|
+
*/
|
|
18043
|
+
organization_type: string | null;
|
|
18044
|
+
/**
|
|
18045
|
+
* Component type (e.g., cpu, gpu)
|
|
18046
|
+
*/
|
|
18047
|
+
component_type: string;
|
|
18048
|
+
/**
|
|
18049
|
+
* Total usage for this component
|
|
18050
|
+
*/
|
|
18051
|
+
usage: string;
|
|
18052
|
+
/**
|
|
18053
|
+
* Number of resources
|
|
18054
|
+
*/
|
|
18055
|
+
resource_count: number;
|
|
18056
|
+
};
|
|
17786
18057
|
export type ResourceUser = {
|
|
17787
18058
|
readonly uuid: string;
|
|
17788
18059
|
resource: string;
|
|
@@ -17804,16 +18075,23 @@ export type ResourceUserRequest = {
|
|
|
17804
18075
|
role: string;
|
|
17805
18076
|
user: string;
|
|
17806
18077
|
};
|
|
17807
|
-
export type
|
|
17808
|
-
|
|
17809
|
-
|
|
17810
|
-
|
|
17811
|
-
|
|
17812
|
-
|
|
17813
|
-
|
|
17814
|
-
|
|
17815
|
-
|
|
17816
|
-
|
|
18078
|
+
export type ResourcesGeographySummary = {
|
|
18079
|
+
/**
|
|
18080
|
+
* Total number of active resources
|
|
18081
|
+
*/
|
|
18082
|
+
total_resources: number;
|
|
18083
|
+
/**
|
|
18084
|
+
* Number of countries with active resources
|
|
18085
|
+
*/
|
|
18086
|
+
countries_count: number;
|
|
18087
|
+
/**
|
|
18088
|
+
* Number of organization groups with active resources
|
|
18089
|
+
*/
|
|
18090
|
+
org_groups_count: number;
|
|
18091
|
+
/**
|
|
18092
|
+
* Number of offerings with active resources
|
|
18093
|
+
*/
|
|
18094
|
+
offerings_count: number;
|
|
17817
18095
|
};
|
|
17818
18096
|
export type ResourcesLimits = {
|
|
17819
18097
|
/**
|
|
@@ -18971,6 +19249,9 @@ export type Saml2Provider = {
|
|
|
18971
19249
|
name: string;
|
|
18972
19250
|
url: string;
|
|
18973
19251
|
};
|
|
19252
|
+
export type ScimSyncAllResponse = {
|
|
19253
|
+
detail: string;
|
|
19254
|
+
};
|
|
18974
19255
|
export type Screenshot = {
|
|
18975
19256
|
readonly url: string;
|
|
18976
19257
|
readonly uuid: string;
|
|
@@ -19402,6 +19683,28 @@ export type SlurmCommandHistory = {
|
|
|
19402
19683
|
*/
|
|
19403
19684
|
error_message?: string;
|
|
19404
19685
|
};
|
|
19686
|
+
export type SlurmCommandResultRequest = {
|
|
19687
|
+
/**
|
|
19688
|
+
* UUID of the resource the command was applied to
|
|
19689
|
+
*/
|
|
19690
|
+
resource_uuid: string;
|
|
19691
|
+
/**
|
|
19692
|
+
* Whether the command was applied successfully
|
|
19693
|
+
*/
|
|
19694
|
+
success: boolean;
|
|
19695
|
+
/**
|
|
19696
|
+
* Error message if the command failed
|
|
19697
|
+
*/
|
|
19698
|
+
error_message?: string;
|
|
19699
|
+
/**
|
|
19700
|
+
* Execution mode of the command
|
|
19701
|
+
*/
|
|
19702
|
+
mode?: ModeEnum;
|
|
19703
|
+
/**
|
|
19704
|
+
* List of shell commands actually executed by the site agent
|
|
19705
|
+
*/
|
|
19706
|
+
commands_executed?: Array<string>;
|
|
19707
|
+
};
|
|
19405
19708
|
export type SlurmPeriodicUsagePolicy = {
|
|
19406
19709
|
readonly uuid: string;
|
|
19407
19710
|
readonly url: string;
|
|
@@ -19424,7 +19727,7 @@ export type SlurmPeriodicUsagePolicy = {
|
|
|
19424
19727
|
*/
|
|
19425
19728
|
apply_to_all?: boolean;
|
|
19426
19729
|
component_limits_set: Array<NestedOfferingComponentLimit>;
|
|
19427
|
-
period?:
|
|
19730
|
+
period?: PolicyPeriodEnum;
|
|
19428
19731
|
readonly period_name: string;
|
|
19429
19732
|
/**
|
|
19430
19733
|
* SLURM limit type to apply
|
|
@@ -19439,9 +19742,9 @@ export type SlurmPeriodicUsagePolicy = {
|
|
|
19439
19742
|
*/
|
|
19440
19743
|
tres_billing_weights?: unknown;
|
|
19441
19744
|
/**
|
|
19442
|
-
*
|
|
19745
|
+
* Maximum percentage of base allocation that can carry over from unused previous period (0-100)
|
|
19443
19746
|
*/
|
|
19444
|
-
|
|
19747
|
+
carryover_factor?: number;
|
|
19445
19748
|
/**
|
|
19446
19749
|
* Grace period ratio (0.2 = 20% overconsumption allowed)
|
|
19447
19750
|
*/
|
|
@@ -19472,7 +19775,7 @@ export type SlurmPeriodicUsagePolicyRequest = {
|
|
|
19472
19775
|
*/
|
|
19473
19776
|
apply_to_all?: boolean;
|
|
19474
19777
|
component_limits_set: Array<NestedOfferingComponentLimitRequest>;
|
|
19475
|
-
period?:
|
|
19778
|
+
period?: PolicyPeriodEnum;
|
|
19476
19779
|
/**
|
|
19477
19780
|
* SLURM limit type to apply
|
|
19478
19781
|
*/
|
|
@@ -19486,9 +19789,9 @@ export type SlurmPeriodicUsagePolicyRequest = {
|
|
|
19486
19789
|
*/
|
|
19487
19790
|
tres_billing_weights?: unknown;
|
|
19488
19791
|
/**
|
|
19489
|
-
*
|
|
19792
|
+
* Maximum percentage of base allocation that can carry over from unused previous period (0-100)
|
|
19490
19793
|
*/
|
|
19491
|
-
|
|
19794
|
+
carryover_factor?: number;
|
|
19492
19795
|
/**
|
|
19493
19796
|
* Grace period ratio (0.2 = 20% overconsumption allowed)
|
|
19494
19797
|
*/
|
|
@@ -19508,12 +19811,11 @@ export type SlurmPeriodicUsagePolicyRequest = {
|
|
|
19508
19811
|
};
|
|
19509
19812
|
export type SlurmPolicyCarryover = {
|
|
19510
19813
|
previous_usage: number;
|
|
19511
|
-
|
|
19512
|
-
half_life: number;
|
|
19513
|
-
decay_factor: number;
|
|
19514
|
-
effective_usage: number;
|
|
19814
|
+
carryover_factor: number;
|
|
19515
19815
|
base_allocation: number;
|
|
19516
|
-
|
|
19816
|
+
unused: number;
|
|
19817
|
+
carryover_cap: number;
|
|
19818
|
+
carryover: number;
|
|
19517
19819
|
total_allocation: number;
|
|
19518
19820
|
};
|
|
19519
19821
|
export type SlurmPolicyDateProjection = {
|
|
@@ -19527,6 +19829,88 @@ export type SlurmPolicyDateProjections = {
|
|
|
19527
19829
|
slowdown: SlurmPolicyDateProjection;
|
|
19528
19830
|
blocked: SlurmPolicyDateProjection;
|
|
19529
19831
|
};
|
|
19832
|
+
export type SlurmPolicyDryRunResource = {
|
|
19833
|
+
resource_uuid: string;
|
|
19834
|
+
resource_name: string;
|
|
19835
|
+
usage_percentage: number;
|
|
19836
|
+
paused: boolean;
|
|
19837
|
+
downscaled: boolean;
|
|
19838
|
+
would_trigger: Array<string>;
|
|
19839
|
+
};
|
|
19840
|
+
export type SlurmPolicyDryRunResponse = {
|
|
19841
|
+
policy_uuid: string;
|
|
19842
|
+
billing_period: string;
|
|
19843
|
+
grace_limit_percentage: number;
|
|
19844
|
+
resources: Array<SlurmPolicyDryRunResource>;
|
|
19845
|
+
};
|
|
19846
|
+
export type SlurmPolicyEvaluateRequestRequest = {
|
|
19847
|
+
/**
|
|
19848
|
+
* Evaluate a specific resource. If omitted, evaluates all offering resources.
|
|
19849
|
+
*/
|
|
19850
|
+
resource_uuid?: string | null;
|
|
19851
|
+
};
|
|
19852
|
+
export type SlurmPolicyEvaluateResource = {
|
|
19853
|
+
resource_uuid: string;
|
|
19854
|
+
resource_name: string;
|
|
19855
|
+
usage_percentage: number;
|
|
19856
|
+
actions_taken: Array<string>;
|
|
19857
|
+
previous_state: {
|
|
19858
|
+
[key: string]: unknown;
|
|
19859
|
+
};
|
|
19860
|
+
new_state: {
|
|
19861
|
+
[key: string]: unknown;
|
|
19862
|
+
};
|
|
19863
|
+
};
|
|
19864
|
+
export type SlurmPolicyEvaluateResponse = {
|
|
19865
|
+
policy_uuid: string;
|
|
19866
|
+
billing_period: string;
|
|
19867
|
+
resources: Array<SlurmPolicyEvaluateResource>;
|
|
19868
|
+
};
|
|
19869
|
+
export type SlurmPolicyEvaluationLog = {
|
|
19870
|
+
readonly uuid: string;
|
|
19871
|
+
readonly resource_uuid: string;
|
|
19872
|
+
readonly resource_name: string;
|
|
19873
|
+
/**
|
|
19874
|
+
* Billing period identifier, e.g. '2026-Q1'
|
|
19875
|
+
*/
|
|
19876
|
+
billing_period: string;
|
|
19877
|
+
/**
|
|
19878
|
+
* Resource usage percentage at the time of evaluation
|
|
19879
|
+
*/
|
|
19880
|
+
usage_percentage: number;
|
|
19881
|
+
/**
|
|
19882
|
+
* Grace limit percentage threshold (e.g. 120 for 20% grace)
|
|
19883
|
+
*/
|
|
19884
|
+
grace_limit_percentage: number;
|
|
19885
|
+
/**
|
|
19886
|
+
* List of actions taken during this evaluation (e.g. ['pause', 'notify'])
|
|
19887
|
+
*/
|
|
19888
|
+
actions_taken?: unknown;
|
|
19889
|
+
/**
|
|
19890
|
+
* Resource state before evaluation: {paused: bool, downscaled: bool}
|
|
19891
|
+
*/
|
|
19892
|
+
previous_state?: unknown;
|
|
19893
|
+
/**
|
|
19894
|
+
* Resource state after evaluation: {paused: bool, downscaled: bool}
|
|
19895
|
+
*/
|
|
19896
|
+
new_state?: unknown;
|
|
19897
|
+
/**
|
|
19898
|
+
* Whether a STOMP message was sent to the site agent
|
|
19899
|
+
*/
|
|
19900
|
+
stomp_message_sent?: boolean;
|
|
19901
|
+
/**
|
|
19902
|
+
* Whether the site agent confirmed command execution (null = no response yet)
|
|
19903
|
+
*/
|
|
19904
|
+
site_agent_confirmed?: boolean | null;
|
|
19905
|
+
/**
|
|
19906
|
+
* Response payload from the site agent
|
|
19907
|
+
*/
|
|
19908
|
+
site_agent_response?: unknown;
|
|
19909
|
+
/**
|
|
19910
|
+
* When this evaluation was performed
|
|
19911
|
+
*/
|
|
19912
|
+
readonly evaluated_at: string;
|
|
19913
|
+
};
|
|
19530
19914
|
export type SlurmPolicyPreviewRequestRequest = {
|
|
19531
19915
|
/**
|
|
19532
19916
|
* Base allocation for the period (in node-hours or billing units)
|
|
@@ -19541,17 +19925,13 @@ export type SlurmPolicyPreviewRequestRequest = {
|
|
|
19541
19925
|
*/
|
|
19542
19926
|
previous_usage?: number;
|
|
19543
19927
|
/**
|
|
19544
|
-
*
|
|
19928
|
+
* Maximum percentage of base allocation that can carry over (0-100)
|
|
19545
19929
|
*/
|
|
19546
|
-
|
|
19930
|
+
carryover_factor?: number;
|
|
19547
19931
|
/**
|
|
19548
19932
|
* Whether unused allocation carries over to next period
|
|
19549
19933
|
*/
|
|
19550
19934
|
carryover_enabled?: boolean;
|
|
19551
|
-
/**
|
|
19552
|
-
* Days elapsed since previous period (90 for quarterly)
|
|
19553
|
-
*/
|
|
19554
|
-
days_elapsed?: number;
|
|
19555
19935
|
/**
|
|
19556
19936
|
* Optional resource UUID to use for current usage data
|
|
19557
19937
|
*/
|
|
@@ -19572,7 +19952,7 @@ export type SlurmPolicyPreviewResponse = {
|
|
|
19572
19952
|
carryover: SlurmPolicyCarryover | null;
|
|
19573
19953
|
thresholds: SlurmPolicyThresholds;
|
|
19574
19954
|
grace_ratio: number;
|
|
19575
|
-
|
|
19955
|
+
carryover_factor: number;
|
|
19576
19956
|
current_usage?: number;
|
|
19577
19957
|
daily_usage_rate?: number;
|
|
19578
19958
|
usage_percentage?: number;
|
|
@@ -19905,6 +20285,24 @@ export type SupportedCountriesResponse = {
|
|
|
19905
20285
|
supported_countries: Array<string>;
|
|
19906
20286
|
};
|
|
19907
20287
|
export type SyncStatusEnum = 'in_sync' | 'out_of_sync' | 'sync_failed';
|
|
20288
|
+
export type TableGrowthAlert = {
|
|
20289
|
+
/**
|
|
20290
|
+
* Name of the table triggering the alert
|
|
20291
|
+
*/
|
|
20292
|
+
table_name: string;
|
|
20293
|
+
/**
|
|
20294
|
+
* Growth period that exceeded the threshold
|
|
20295
|
+
*/
|
|
20296
|
+
period: GrowthPeriodEnum;
|
|
20297
|
+
/**
|
|
20298
|
+
* Actual growth percentage observed
|
|
20299
|
+
*/
|
|
20300
|
+
growth_percent: number;
|
|
20301
|
+
/**
|
|
20302
|
+
* Configured threshold that was exceeded
|
|
20303
|
+
*/
|
|
20304
|
+
threshold: number;
|
|
20305
|
+
};
|
|
19908
20306
|
export type TableGrowthStats = {
|
|
19909
20307
|
/**
|
|
19910
20308
|
* Name of the database table
|
|
@@ -19972,6 +20370,10 @@ export type TableGrowthStatsResponse = {
|
|
|
19972
20370
|
* Table growth statistics sorted by growth rate
|
|
19973
20371
|
*/
|
|
19974
20372
|
tables: Array<TableGrowthStats>;
|
|
20373
|
+
/**
|
|
20374
|
+
* List of tables that exceeded configured growth thresholds
|
|
20375
|
+
*/
|
|
20376
|
+
alerts: Array<TableGrowthAlert>;
|
|
19975
20377
|
};
|
|
19976
20378
|
export type TableSize = {
|
|
19977
20379
|
/**
|
|
@@ -20582,6 +20984,16 @@ export type UserInfoRequest = {
|
|
|
20582
20984
|
shortname?: string | null;
|
|
20583
20985
|
user: string;
|
|
20584
20986
|
};
|
|
20987
|
+
export type UserJobTitleCount = {
|
|
20988
|
+
/**
|
|
20989
|
+
* Job title
|
|
20990
|
+
*/
|
|
20991
|
+
job_title: string | null;
|
|
20992
|
+
/**
|
|
20993
|
+
* Number of users
|
|
20994
|
+
*/
|
|
20995
|
+
count: number;
|
|
20996
|
+
};
|
|
20585
20997
|
export type UserLanguageCount = {
|
|
20586
20998
|
language: string;
|
|
20587
20999
|
count: number;
|
|
@@ -20633,6 +21045,16 @@ export type UserOrganizationCount = {
|
|
|
20633
21045
|
*/
|
|
20634
21046
|
count: number;
|
|
20635
21047
|
};
|
|
21048
|
+
export type UserOrganizationTypeCount = {
|
|
21049
|
+
/**
|
|
21050
|
+
* Organization type (SCHAC URN)
|
|
21051
|
+
*/
|
|
21052
|
+
organization_type: string | null;
|
|
21053
|
+
/**
|
|
21054
|
+
* Number of users
|
|
21055
|
+
*/
|
|
21056
|
+
count: number;
|
|
21057
|
+
};
|
|
20636
21058
|
export type UserRegistrationTrend = {
|
|
20637
21059
|
month: string;
|
|
20638
21060
|
count: number;
|
|
@@ -20774,6 +21196,32 @@ export type VersionAdoption = {
|
|
|
20774
21196
|
*/
|
|
20775
21197
|
readonly users_count: number;
|
|
20776
21198
|
};
|
|
21199
|
+
export type VersionHistory = {
|
|
21200
|
+
/**
|
|
21201
|
+
* Version ID
|
|
21202
|
+
*/
|
|
21203
|
+
id: number;
|
|
21204
|
+
/**
|
|
21205
|
+
* When this revision was created
|
|
21206
|
+
*/
|
|
21207
|
+
revision_date: string;
|
|
21208
|
+
/**
|
|
21209
|
+
* User who created this revision
|
|
21210
|
+
*/
|
|
21211
|
+
readonly revision_user: {
|
|
21212
|
+
[key: string]: unknown;
|
|
21213
|
+
} | null;
|
|
21214
|
+
/**
|
|
21215
|
+
* Comment describing the revision
|
|
21216
|
+
*/
|
|
21217
|
+
revision_comment: string;
|
|
21218
|
+
/**
|
|
21219
|
+
* Serialized model fields at this revision
|
|
21220
|
+
*/
|
|
21221
|
+
readonly serialized_data: {
|
|
21222
|
+
[key: string]: unknown;
|
|
21223
|
+
};
|
|
21224
|
+
};
|
|
20777
21225
|
export type VisibilityEnum = 'private' | 'public';
|
|
20778
21226
|
export type VisibleInvitationDetails = {
|
|
20779
21227
|
/**
|
|
@@ -22374,6 +22822,10 @@ export type ConstanceSettingsRequestForm = {
|
|
|
22374
22822
|
FREEIPA_GROUPNAME_PREFIX?: string;
|
|
22375
22823
|
FREEIPA_BLACKLISTED_USERNAMES?: Array<string>;
|
|
22376
22824
|
FREEIPA_GROUP_SYNCHRONIZATION_ENABLED?: boolean;
|
|
22825
|
+
SCIM_MEMBERSHIP_SYNC_ENABLED?: boolean;
|
|
22826
|
+
SCIM_API_URL?: string;
|
|
22827
|
+
SCIM_API_KEY?: string;
|
|
22828
|
+
SCIM_URN_NAMESPACE?: string;
|
|
22377
22829
|
KEYCLOAK_ICON?: (Blob | File) | null;
|
|
22378
22830
|
COUNTRIES?: Array<string>;
|
|
22379
22831
|
OIDC_AUTH_URL?: string;
|
|
@@ -22440,6 +22892,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
22440
22892
|
USER_DATA_ACCESS_LOGGING_ENABLED?: boolean;
|
|
22441
22893
|
USER_DATA_ACCESS_LOG_RETENTION_DAYS?: number;
|
|
22442
22894
|
USER_DATA_ACCESS_LOG_SELF_ACCESS?: boolean;
|
|
22895
|
+
SLURM_POLICY_EVALUATION_LOG_RETENTION_DAYS?: number;
|
|
22443
22896
|
};
|
|
22444
22897
|
export type ConstanceSettingsRequestMultipart = {
|
|
22445
22898
|
SITE_NAME?: string;
|
|
@@ -22590,6 +23043,10 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
22590
23043
|
FREEIPA_GROUPNAME_PREFIX?: string;
|
|
22591
23044
|
FREEIPA_BLACKLISTED_USERNAMES?: Array<string>;
|
|
22592
23045
|
FREEIPA_GROUP_SYNCHRONIZATION_ENABLED?: boolean;
|
|
23046
|
+
SCIM_MEMBERSHIP_SYNC_ENABLED?: boolean;
|
|
23047
|
+
SCIM_API_URL?: string;
|
|
23048
|
+
SCIM_API_KEY?: string;
|
|
23049
|
+
SCIM_URN_NAMESPACE?: string;
|
|
22593
23050
|
KEYCLOAK_ICON?: (Blob | File) | null;
|
|
22594
23051
|
COUNTRIES?: Array<string>;
|
|
22595
23052
|
OIDC_AUTH_URL?: string;
|
|
@@ -22656,6 +23113,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
22656
23113
|
USER_DATA_ACCESS_LOGGING_ENABLED?: boolean;
|
|
22657
23114
|
USER_DATA_ACCESS_LOG_RETENTION_DAYS?: number;
|
|
22658
23115
|
USER_DATA_ACCESS_LOG_SELF_ACCESS?: boolean;
|
|
23116
|
+
SLURM_POLICY_EVALUATION_LOG_RETENTION_DAYS?: number;
|
|
22659
23117
|
};
|
|
22660
23118
|
export type PaymentRequestForm = {
|
|
22661
23119
|
profile: string;
|
|
@@ -26713,7 +27171,7 @@ export type BookingResourcesListData = {
|
|
|
26713
27171
|
* Downscaled
|
|
26714
27172
|
*/
|
|
26715
27173
|
downscaled?: boolean;
|
|
26716
|
-
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'>;
|
|
27174
|
+
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'>;
|
|
26717
27175
|
/**
|
|
26718
27176
|
* Has termination date
|
|
26719
27177
|
*/
|
|
@@ -27041,7 +27499,7 @@ export type BookingResourcesRetrieveData = {
|
|
|
27041
27499
|
uuid: string;
|
|
27042
27500
|
};
|
|
27043
27501
|
query?: {
|
|
27044
|
-
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'>;
|
|
27502
|
+
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'>;
|
|
27045
27503
|
};
|
|
27046
27504
|
url: '/api/booking-resources/{uuid}/';
|
|
27047
27505
|
};
|
|
@@ -29697,6 +30155,105 @@ export type CustomersDeleteUserResponses = {
|
|
|
29697
30155
|
*/
|
|
29698
30156
|
200: unknown;
|
|
29699
30157
|
};
|
|
30158
|
+
export type CustomersHistoryListData = {
|
|
30159
|
+
body?: never;
|
|
30160
|
+
path: {
|
|
30161
|
+
uuid: string;
|
|
30162
|
+
};
|
|
30163
|
+
query?: {
|
|
30164
|
+
/**
|
|
30165
|
+
* Abbreviation
|
|
30166
|
+
*/
|
|
30167
|
+
abbreviation?: string;
|
|
30168
|
+
agreement_number?: string;
|
|
30169
|
+
archived?: boolean;
|
|
30170
|
+
backend_id?: string;
|
|
30171
|
+
/**
|
|
30172
|
+
* Contact details
|
|
30173
|
+
*/
|
|
30174
|
+
contact_details?: string;
|
|
30175
|
+
/**
|
|
30176
|
+
* Filter versions created after this timestamp (ISO 8601)
|
|
30177
|
+
*/
|
|
30178
|
+
created_after?: string;
|
|
30179
|
+
/**
|
|
30180
|
+
* Filter versions created before this timestamp (ISO 8601)
|
|
30181
|
+
*/
|
|
30182
|
+
created_before?: string;
|
|
30183
|
+
/**
|
|
30184
|
+
* Name
|
|
30185
|
+
*/
|
|
30186
|
+
name?: string;
|
|
30187
|
+
/**
|
|
30188
|
+
* Name (exact)
|
|
30189
|
+
*/
|
|
30190
|
+
name_exact?: string;
|
|
30191
|
+
/**
|
|
30192
|
+
* Native name
|
|
30193
|
+
*/
|
|
30194
|
+
native_name?: string;
|
|
30195
|
+
/**
|
|
30196
|
+
* Which field to use when ordering the results.
|
|
30197
|
+
*/
|
|
30198
|
+
o?: string;
|
|
30199
|
+
/**
|
|
30200
|
+
* Organization group name
|
|
30201
|
+
*/
|
|
30202
|
+
organization_group_name?: string;
|
|
30203
|
+
/**
|
|
30204
|
+
* Organization group UUID
|
|
30205
|
+
*/
|
|
30206
|
+
organization_group_uuid?: Array<string>;
|
|
30207
|
+
/**
|
|
30208
|
+
* Return a list of customers where current user is owner.
|
|
30209
|
+
*/
|
|
30210
|
+
owned_by_current_user?: boolean;
|
|
30211
|
+
/**
|
|
30212
|
+
* A page number within the paginated result set.
|
|
30213
|
+
*/
|
|
30214
|
+
page?: number;
|
|
30215
|
+
/**
|
|
30216
|
+
* Number of results to return per page.
|
|
30217
|
+
*/
|
|
30218
|
+
page_size?: number;
|
|
30219
|
+
/**
|
|
30220
|
+
* Filter by name, native name, abbreviation, domain, UUID, registration code or agreement number
|
|
30221
|
+
*/
|
|
30222
|
+
query?: string;
|
|
30223
|
+
registration_code?: string;
|
|
30224
|
+
};
|
|
30225
|
+
url: '/api/customers/{uuid}/history/';
|
|
30226
|
+
};
|
|
30227
|
+
export type CustomersHistoryListResponses = {
|
|
30228
|
+
200: Array<VersionHistory>;
|
|
30229
|
+
};
|
|
30230
|
+
export type CustomersHistoryListResponse = CustomersHistoryListResponses[keyof CustomersHistoryListResponses];
|
|
30231
|
+
export type CustomersHistoryAtRetrieveData = {
|
|
30232
|
+
body?: never;
|
|
30233
|
+
path: {
|
|
30234
|
+
uuid: string;
|
|
30235
|
+
};
|
|
30236
|
+
query: {
|
|
30237
|
+
/**
|
|
30238
|
+
* ISO 8601 timestamp to query the object state at
|
|
30239
|
+
*/
|
|
30240
|
+
timestamp: string;
|
|
30241
|
+
};
|
|
30242
|
+
url: '/api/customers/{uuid}/history/at/';
|
|
30243
|
+
};
|
|
30244
|
+
export type CustomersHistoryAtRetrieveErrors = {
|
|
30245
|
+
400: {
|
|
30246
|
+
[key: string]: unknown;
|
|
30247
|
+
};
|
|
30248
|
+
404: {
|
|
30249
|
+
[key: string]: unknown;
|
|
30250
|
+
};
|
|
30251
|
+
};
|
|
30252
|
+
export type CustomersHistoryAtRetrieveError = CustomersHistoryAtRetrieveErrors[keyof CustomersHistoryAtRetrieveErrors];
|
|
30253
|
+
export type CustomersHistoryAtRetrieveResponses = {
|
|
30254
|
+
200: VersionHistory;
|
|
30255
|
+
};
|
|
30256
|
+
export type CustomersHistoryAtRetrieveResponse = CustomersHistoryAtRetrieveResponses[keyof CustomersHistoryAtRetrieveResponses];
|
|
29700
30257
|
export type CustomersListUsersListData = {
|
|
29701
30258
|
body?: never;
|
|
29702
30259
|
path: {
|
|
@@ -29758,6 +30315,44 @@ export type CustomersListUsersListResponses = {
|
|
|
29758
30315
|
200: Array<UserRoleDetails>;
|
|
29759
30316
|
};
|
|
29760
30317
|
export type CustomersListUsersListResponse = CustomersListUsersListResponses[keyof CustomersListUsersListResponses];
|
|
30318
|
+
export type CustomersProjectDigestConfigRetrieveData = {
|
|
30319
|
+
body?: never;
|
|
30320
|
+
path: {
|
|
30321
|
+
uuid: string;
|
|
30322
|
+
};
|
|
30323
|
+
query?: never;
|
|
30324
|
+
url: '/api/customers/{uuid}/project-digest-config/';
|
|
30325
|
+
};
|
|
30326
|
+
export type CustomersProjectDigestConfigRetrieveResponses = {
|
|
30327
|
+
200: ProjectDigestConfig;
|
|
30328
|
+
};
|
|
30329
|
+
export type CustomersProjectDigestConfigRetrieveResponse = CustomersProjectDigestConfigRetrieveResponses[keyof CustomersProjectDigestConfigRetrieveResponses];
|
|
30330
|
+
export type CustomersProjectDigestConfigPreviewData = {
|
|
30331
|
+
body: ProjectDigestPreviewRequest;
|
|
30332
|
+
path: {
|
|
30333
|
+
uuid: string;
|
|
30334
|
+
};
|
|
30335
|
+
query?: never;
|
|
30336
|
+
url: '/api/customers/{uuid}/project-digest-config/preview/';
|
|
30337
|
+
};
|
|
30338
|
+
export type CustomersProjectDigestConfigPreviewResponses = {
|
|
30339
|
+
200: ProjectDigestPreviewResponse;
|
|
30340
|
+
};
|
|
30341
|
+
export type CustomersProjectDigestConfigPreviewResponse = CustomersProjectDigestConfigPreviewResponses[keyof CustomersProjectDigestConfigPreviewResponses];
|
|
30342
|
+
export type CustomersProjectDigestConfigSendTestData = {
|
|
30343
|
+
body?: never;
|
|
30344
|
+
path: {
|
|
30345
|
+
uuid: string;
|
|
30346
|
+
};
|
|
30347
|
+
query?: never;
|
|
30348
|
+
url: '/api/customers/{uuid}/project-digest-config/send-test/';
|
|
30349
|
+
};
|
|
30350
|
+
export type CustomersProjectDigestConfigSendTestResponses = {
|
|
30351
|
+
/**
|
|
30352
|
+
* No response body
|
|
30353
|
+
*/
|
|
30354
|
+
200: unknown;
|
|
30355
|
+
};
|
|
29761
30356
|
export type CustomersStatsRetrieveData = {
|
|
29762
30357
|
body?: never;
|
|
29763
30358
|
path: {
|
|
@@ -29775,6 +30370,30 @@ export type CustomersStatsRetrieveResponses = {
|
|
|
29775
30370
|
200: ComponentsUsageStats;
|
|
29776
30371
|
};
|
|
29777
30372
|
export type CustomersStatsRetrieveResponse = CustomersStatsRetrieveResponses[keyof CustomersStatsRetrieveResponses];
|
|
30373
|
+
export type CustomersUpdateProjectDigestConfigPartialUpdateData = {
|
|
30374
|
+
body?: PatchedProjectDigestConfigRequest;
|
|
30375
|
+
path: {
|
|
30376
|
+
uuid: string;
|
|
30377
|
+
};
|
|
30378
|
+
query?: never;
|
|
30379
|
+
url: '/api/customers/{uuid}/update-project-digest-config/';
|
|
30380
|
+
};
|
|
30381
|
+
export type CustomersUpdateProjectDigestConfigPartialUpdateResponses = {
|
|
30382
|
+
200: ProjectDigestConfig;
|
|
30383
|
+
};
|
|
30384
|
+
export type CustomersUpdateProjectDigestConfigPartialUpdateResponse = CustomersUpdateProjectDigestConfigPartialUpdateResponses[keyof CustomersUpdateProjectDigestConfigPartialUpdateResponses];
|
|
30385
|
+
export type CustomersUpdateProjectDigestConfigUpdateData = {
|
|
30386
|
+
body?: ProjectDigestConfigRequest;
|
|
30387
|
+
path: {
|
|
30388
|
+
uuid: string;
|
|
30389
|
+
};
|
|
30390
|
+
query?: never;
|
|
30391
|
+
url: '/api/customers/{uuid}/update-project-digest-config/';
|
|
30392
|
+
};
|
|
30393
|
+
export type CustomersUpdateProjectDigestConfigUpdateResponses = {
|
|
30394
|
+
200: ProjectDigestConfig;
|
|
30395
|
+
};
|
|
30396
|
+
export type CustomersUpdateProjectDigestConfigUpdateResponse = CustomersUpdateProjectDigestConfigUpdateResponses[keyof CustomersUpdateProjectDigestConfigUpdateResponses];
|
|
29778
30397
|
export type CustomersUpdateOrganizationGroupsData = {
|
|
29779
30398
|
body?: OrganizationGroupsRequest;
|
|
29780
30399
|
path: {
|
|
@@ -32631,6 +33250,75 @@ export type InvoicesRetrieveResponses = {
|
|
|
32631
33250
|
200: Invoice;
|
|
32632
33251
|
};
|
|
32633
33252
|
export type InvoicesRetrieveResponse = InvoicesRetrieveResponses[keyof InvoicesRetrieveResponses];
|
|
33253
|
+
export type InvoicesHistoryListData = {
|
|
33254
|
+
body?: never;
|
|
33255
|
+
path: {
|
|
33256
|
+
uuid: string;
|
|
33257
|
+
};
|
|
33258
|
+
query?: {
|
|
33259
|
+
created?: string;
|
|
33260
|
+
/**
|
|
33261
|
+
* Filter versions created after this timestamp (ISO 8601)
|
|
33262
|
+
*/
|
|
33263
|
+
created_after?: string;
|
|
33264
|
+
/**
|
|
33265
|
+
* Filter versions created before this timestamp (ISO 8601)
|
|
33266
|
+
*/
|
|
33267
|
+
created_before?: string;
|
|
33268
|
+
customer?: string;
|
|
33269
|
+
customer_uuid?: string;
|
|
33270
|
+
end_date?: string;
|
|
33271
|
+
month?: number;
|
|
33272
|
+
/**
|
|
33273
|
+
* Ordering
|
|
33274
|
+
*
|
|
33275
|
+
*
|
|
33276
|
+
*/
|
|
33277
|
+
o?: Array<'-created' | '-month' | '-year' | 'created' | 'month' | 'year'>;
|
|
33278
|
+
/**
|
|
33279
|
+
* A page number within the paginated result set.
|
|
33280
|
+
*/
|
|
33281
|
+
page?: number;
|
|
33282
|
+
/**
|
|
33283
|
+
* Number of results to return per page.
|
|
33284
|
+
*/
|
|
33285
|
+
page_size?: number;
|
|
33286
|
+
start_date?: string;
|
|
33287
|
+
state?: Array<'canceled' | 'created' | 'paid' | 'pending'>;
|
|
33288
|
+
year?: number;
|
|
33289
|
+
};
|
|
33290
|
+
url: '/api/invoices/{uuid}/history/';
|
|
33291
|
+
};
|
|
33292
|
+
export type InvoicesHistoryListResponses = {
|
|
33293
|
+
200: Array<VersionHistory>;
|
|
33294
|
+
};
|
|
33295
|
+
export type InvoicesHistoryListResponse = InvoicesHistoryListResponses[keyof InvoicesHistoryListResponses];
|
|
33296
|
+
export type InvoicesHistoryAtRetrieveData = {
|
|
33297
|
+
body?: never;
|
|
33298
|
+
path: {
|
|
33299
|
+
uuid: string;
|
|
33300
|
+
};
|
|
33301
|
+
query: {
|
|
33302
|
+
/**
|
|
33303
|
+
* ISO 8601 timestamp to query the object state at
|
|
33304
|
+
*/
|
|
33305
|
+
timestamp: string;
|
|
33306
|
+
};
|
|
33307
|
+
url: '/api/invoices/{uuid}/history/at/';
|
|
33308
|
+
};
|
|
33309
|
+
export type InvoicesHistoryAtRetrieveErrors = {
|
|
33310
|
+
400: {
|
|
33311
|
+
[key: string]: unknown;
|
|
33312
|
+
};
|
|
33313
|
+
404: {
|
|
33314
|
+
[key: string]: unknown;
|
|
33315
|
+
};
|
|
33316
|
+
};
|
|
33317
|
+
export type InvoicesHistoryAtRetrieveError = InvoicesHistoryAtRetrieveErrors[keyof InvoicesHistoryAtRetrieveErrors];
|
|
33318
|
+
export type InvoicesHistoryAtRetrieveResponses = {
|
|
33319
|
+
200: VersionHistory;
|
|
33320
|
+
};
|
|
33321
|
+
export type InvoicesHistoryAtRetrieveResponse = InvoicesHistoryAtRetrieveResponses[keyof InvoicesHistoryAtRetrieveResponses];
|
|
32634
33322
|
export type InvoicesItemsRetrieveData = {
|
|
32635
33323
|
body?: never;
|
|
32636
33324
|
path: {
|
|
@@ -33125,6 +33813,95 @@ export type KeysRetrieveResponses = {
|
|
|
33125
33813
|
200: SshKey;
|
|
33126
33814
|
};
|
|
33127
33815
|
export type KeysRetrieveResponse = KeysRetrieveResponses[keyof KeysRetrieveResponses];
|
|
33816
|
+
export type KeysHistoryListData = {
|
|
33817
|
+
body?: never;
|
|
33818
|
+
path: {
|
|
33819
|
+
uuid: string;
|
|
33820
|
+
};
|
|
33821
|
+
query?: {
|
|
33822
|
+
/**
|
|
33823
|
+
* Created after
|
|
33824
|
+
*/
|
|
33825
|
+
created?: string;
|
|
33826
|
+
/**
|
|
33827
|
+
* Filter versions created after this timestamp (ISO 8601)
|
|
33828
|
+
*/
|
|
33829
|
+
created_after?: string;
|
|
33830
|
+
/**
|
|
33831
|
+
* Filter versions created before this timestamp (ISO 8601)
|
|
33832
|
+
*/
|
|
33833
|
+
created_before?: string;
|
|
33834
|
+
fingerprint_md5?: string;
|
|
33835
|
+
fingerprint_sha256?: string;
|
|
33836
|
+
fingerprint_sha512?: string;
|
|
33837
|
+
is_shared?: boolean;
|
|
33838
|
+
/**
|
|
33839
|
+
* Modified after
|
|
33840
|
+
*/
|
|
33841
|
+
modified?: string;
|
|
33842
|
+
/**
|
|
33843
|
+
* Name
|
|
33844
|
+
*/
|
|
33845
|
+
name?: string;
|
|
33846
|
+
/**
|
|
33847
|
+
* Name (exact)
|
|
33848
|
+
*/
|
|
33849
|
+
name_exact?: string;
|
|
33850
|
+
/**
|
|
33851
|
+
* Ordering
|
|
33852
|
+
*
|
|
33853
|
+
*
|
|
33854
|
+
*/
|
|
33855
|
+
o?: Array<'-name' | 'name'>;
|
|
33856
|
+
/**
|
|
33857
|
+
* A page number within the paginated result set.
|
|
33858
|
+
*/
|
|
33859
|
+
page?: number;
|
|
33860
|
+
/**
|
|
33861
|
+
* Number of results to return per page.
|
|
33862
|
+
*/
|
|
33863
|
+
page_size?: number;
|
|
33864
|
+
/**
|
|
33865
|
+
* User UUID
|
|
33866
|
+
*/
|
|
33867
|
+
user_uuid?: string;
|
|
33868
|
+
/**
|
|
33869
|
+
* UUID
|
|
33870
|
+
*/
|
|
33871
|
+
uuid?: string;
|
|
33872
|
+
};
|
|
33873
|
+
url: '/api/keys/{uuid}/history/';
|
|
33874
|
+
};
|
|
33875
|
+
export type KeysHistoryListResponses = {
|
|
33876
|
+
200: Array<VersionHistory>;
|
|
33877
|
+
};
|
|
33878
|
+
export type KeysHistoryListResponse = KeysHistoryListResponses[keyof KeysHistoryListResponses];
|
|
33879
|
+
export type KeysHistoryAtRetrieveData = {
|
|
33880
|
+
body?: never;
|
|
33881
|
+
path: {
|
|
33882
|
+
uuid: string;
|
|
33883
|
+
};
|
|
33884
|
+
query: {
|
|
33885
|
+
/**
|
|
33886
|
+
* ISO 8601 timestamp to query the object state at
|
|
33887
|
+
*/
|
|
33888
|
+
timestamp: string;
|
|
33889
|
+
};
|
|
33890
|
+
url: '/api/keys/{uuid}/history/at/';
|
|
33891
|
+
};
|
|
33892
|
+
export type KeysHistoryAtRetrieveErrors = {
|
|
33893
|
+
400: {
|
|
33894
|
+
[key: string]: unknown;
|
|
33895
|
+
};
|
|
33896
|
+
404: {
|
|
33897
|
+
[key: string]: unknown;
|
|
33898
|
+
};
|
|
33899
|
+
};
|
|
33900
|
+
export type KeysHistoryAtRetrieveError = KeysHistoryAtRetrieveErrors[keyof KeysHistoryAtRetrieveErrors];
|
|
33901
|
+
export type KeysHistoryAtRetrieveResponses = {
|
|
33902
|
+
200: VersionHistory;
|
|
33903
|
+
};
|
|
33904
|
+
export type KeysHistoryAtRetrieveResponse = KeysHistoryAtRetrieveResponses[keyof KeysHistoryAtRetrieveResponses];
|
|
33128
33905
|
export type LexisLinksListData = {
|
|
33129
33906
|
body?: never;
|
|
33130
33907
|
path?: never;
|
|
@@ -33904,7 +34681,7 @@ export type ManagedRancherClusterResourcesListData = {
|
|
|
33904
34681
|
body?: never;
|
|
33905
34682
|
path?: never;
|
|
33906
34683
|
query?: {
|
|
33907
|
-
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'>;
|
|
34684
|
+
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'>;
|
|
33908
34685
|
/**
|
|
33909
34686
|
* A page number within the paginated result set.
|
|
33910
34687
|
*/
|
|
@@ -33947,7 +34724,7 @@ export type ManagedRancherClusterResourcesRetrieveData = {
|
|
|
33947
34724
|
uuid: string;
|
|
33948
34725
|
};
|
|
33949
34726
|
query?: {
|
|
33950
|
-
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'>;
|
|
34727
|
+
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'>;
|
|
33951
34728
|
};
|
|
33952
34729
|
url: '/api/managed-rancher-cluster-resources/{uuid}/';
|
|
33953
34730
|
};
|
|
@@ -37767,6 +38544,30 @@ export type MarketplaceOrdersRetrieveResponses = {
|
|
|
37767
38544
|
200: OrderDetails;
|
|
37768
38545
|
};
|
|
37769
38546
|
export type MarketplaceOrdersRetrieveResponse = MarketplaceOrdersRetrieveResponses[keyof MarketplaceOrdersRetrieveResponses];
|
|
38547
|
+
export type MarketplaceOrdersPartialUpdateData = {
|
|
38548
|
+
body?: PatchedOrderUpdateRequest;
|
|
38549
|
+
path: {
|
|
38550
|
+
uuid: string;
|
|
38551
|
+
};
|
|
38552
|
+
query?: never;
|
|
38553
|
+
url: '/api/marketplace-orders/{uuid}/';
|
|
38554
|
+
};
|
|
38555
|
+
export type MarketplaceOrdersPartialUpdateResponses = {
|
|
38556
|
+
200: OrderUpdate;
|
|
38557
|
+
};
|
|
38558
|
+
export type MarketplaceOrdersPartialUpdateResponse = MarketplaceOrdersPartialUpdateResponses[keyof MarketplaceOrdersPartialUpdateResponses];
|
|
38559
|
+
export type MarketplaceOrdersUpdateData = {
|
|
38560
|
+
body?: OrderUpdateRequest;
|
|
38561
|
+
path: {
|
|
38562
|
+
uuid: string;
|
|
38563
|
+
};
|
|
38564
|
+
query?: never;
|
|
38565
|
+
url: '/api/marketplace-orders/{uuid}/';
|
|
38566
|
+
};
|
|
38567
|
+
export type MarketplaceOrdersUpdateResponses = {
|
|
38568
|
+
200: OrderUpdate;
|
|
38569
|
+
};
|
|
38570
|
+
export type MarketplaceOrdersUpdateResponse = MarketplaceOrdersUpdateResponses[keyof MarketplaceOrdersUpdateResponses];
|
|
37770
38571
|
export type MarketplaceOrdersApproveByConsumerData = {
|
|
37771
38572
|
body?: never;
|
|
37772
38573
|
path: {
|
|
@@ -38186,6 +38987,71 @@ export type MarketplacePlansDeleteOrganizationGroupsResponses = {
|
|
|
38186
38987
|
204: void;
|
|
38187
38988
|
};
|
|
38188
38989
|
export type MarketplacePlansDeleteOrganizationGroupsResponse = MarketplacePlansDeleteOrganizationGroupsResponses[keyof MarketplacePlansDeleteOrganizationGroupsResponses];
|
|
38990
|
+
export type MarketplacePlansHistoryListData = {
|
|
38991
|
+
body?: never;
|
|
38992
|
+
path: {
|
|
38993
|
+
uuid: string;
|
|
38994
|
+
};
|
|
38995
|
+
query?: {
|
|
38996
|
+
/**
|
|
38997
|
+
* Filter versions created after this timestamp (ISO 8601)
|
|
38998
|
+
*/
|
|
38999
|
+
created_after?: string;
|
|
39000
|
+
/**
|
|
39001
|
+
* Filter versions created before this timestamp (ISO 8601)
|
|
39002
|
+
*/
|
|
39003
|
+
created_before?: string;
|
|
39004
|
+
offering?: string;
|
|
39005
|
+
/**
|
|
39006
|
+
* Multiple values may be separated by commas.
|
|
39007
|
+
*/
|
|
39008
|
+
offering_slug?: Array<string>;
|
|
39009
|
+
/**
|
|
39010
|
+
* Offering UUID
|
|
39011
|
+
*/
|
|
39012
|
+
offering_uuid?: string;
|
|
39013
|
+
/**
|
|
39014
|
+
* A page number within the paginated result set.
|
|
39015
|
+
*/
|
|
39016
|
+
page?: number;
|
|
39017
|
+
/**
|
|
39018
|
+
* Number of results to return per page.
|
|
39019
|
+
*/
|
|
39020
|
+
page_size?: number;
|
|
39021
|
+
parent_offering_uuid?: string;
|
|
39022
|
+
};
|
|
39023
|
+
url: '/api/marketplace-plans/{uuid}/history/';
|
|
39024
|
+
};
|
|
39025
|
+
export type MarketplacePlansHistoryListResponses = {
|
|
39026
|
+
200: Array<VersionHistory>;
|
|
39027
|
+
};
|
|
39028
|
+
export type MarketplacePlansHistoryListResponse = MarketplacePlansHistoryListResponses[keyof MarketplacePlansHistoryListResponses];
|
|
39029
|
+
export type MarketplacePlansHistoryAtRetrieveData = {
|
|
39030
|
+
body?: never;
|
|
39031
|
+
path: {
|
|
39032
|
+
uuid: string;
|
|
39033
|
+
};
|
|
39034
|
+
query: {
|
|
39035
|
+
/**
|
|
39036
|
+
* ISO 8601 timestamp to query the object state at
|
|
39037
|
+
*/
|
|
39038
|
+
timestamp: string;
|
|
39039
|
+
};
|
|
39040
|
+
url: '/api/marketplace-plans/{uuid}/history/at/';
|
|
39041
|
+
};
|
|
39042
|
+
export type MarketplacePlansHistoryAtRetrieveErrors = {
|
|
39043
|
+
400: {
|
|
39044
|
+
[key: string]: unknown;
|
|
39045
|
+
};
|
|
39046
|
+
404: {
|
|
39047
|
+
[key: string]: unknown;
|
|
39048
|
+
};
|
|
39049
|
+
};
|
|
39050
|
+
export type MarketplacePlansHistoryAtRetrieveError = MarketplacePlansHistoryAtRetrieveErrors[keyof MarketplacePlansHistoryAtRetrieveErrors];
|
|
39051
|
+
export type MarketplacePlansHistoryAtRetrieveResponses = {
|
|
39052
|
+
200: VersionHistory;
|
|
39053
|
+
};
|
|
39054
|
+
export type MarketplacePlansHistoryAtRetrieveResponse = MarketplacePlansHistoryAtRetrieveResponses[keyof MarketplacePlansHistoryAtRetrieveResponses];
|
|
38189
39055
|
export type MarketplacePlansUpdateDiscountsData = {
|
|
38190
39056
|
body: DiscountsUpdateRequest;
|
|
38191
39057
|
path: {
|
|
@@ -39840,40 +40706,7 @@ export type MarketplaceProviderOfferingsGlauthUsersConfigRetrieveResponses = {
|
|
|
39840
40706
|
200: string;
|
|
39841
40707
|
};
|
|
39842
40708
|
export type MarketplaceProviderOfferingsGlauthUsersConfigRetrieveResponse = MarketplaceProviderOfferingsGlauthUsersConfigRetrieveResponses[keyof MarketplaceProviderOfferingsGlauthUsersConfigRetrieveResponses];
|
|
39843
|
-
export type
|
|
39844
|
-
body: ImportResourceRequest;
|
|
39845
|
-
path: {
|
|
39846
|
-
uuid: string;
|
|
39847
|
-
};
|
|
39848
|
-
query?: never;
|
|
39849
|
-
url: '/api/marketplace-provider-offerings/{uuid}/import_resource/';
|
|
39850
|
-
};
|
|
39851
|
-
export type MarketplaceProviderOfferingsImportResourceResponses = {
|
|
39852
|
-
200: Resource;
|
|
39853
|
-
};
|
|
39854
|
-
export type MarketplaceProviderOfferingsImportResourceResponse = MarketplaceProviderOfferingsImportResourceResponses[keyof MarketplaceProviderOfferingsImportResourceResponses];
|
|
39855
|
-
export type MarketplaceProviderOfferingsImportableResourcesListData = {
|
|
39856
|
-
body?: never;
|
|
39857
|
-
path: {
|
|
39858
|
-
uuid: string;
|
|
39859
|
-
};
|
|
39860
|
-
query?: {
|
|
39861
|
-
/**
|
|
39862
|
-
* A page number within the paginated result set.
|
|
39863
|
-
*/
|
|
39864
|
-
page?: number;
|
|
39865
|
-
/**
|
|
39866
|
-
* Number of results to return per page.
|
|
39867
|
-
*/
|
|
39868
|
-
page_size?: number;
|
|
39869
|
-
};
|
|
39870
|
-
url: '/api/marketplace-provider-offerings/{uuid}/importable_resources/';
|
|
39871
|
-
};
|
|
39872
|
-
export type MarketplaceProviderOfferingsImportableResourcesListResponses = {
|
|
39873
|
-
200: Array<ImportableResource>;
|
|
39874
|
-
};
|
|
39875
|
-
export type MarketplaceProviderOfferingsImportableResourcesListResponse = MarketplaceProviderOfferingsImportableResourcesListResponses[keyof MarketplaceProviderOfferingsImportableResourcesListResponses];
|
|
39876
|
-
export type MarketplaceProviderOfferingsListCourseAccountsListData = {
|
|
40709
|
+
export type MarketplaceProviderOfferingsHistoryListData = {
|
|
39877
40710
|
body?: never;
|
|
39878
40711
|
path: {
|
|
39879
40712
|
uuid: string;
|
|
@@ -39909,193 +40742,426 @@ export type MarketplaceProviderOfferingsListCourseAccountsListData = {
|
|
|
39909
40742
|
*/
|
|
39910
40743
|
created?: string;
|
|
39911
40744
|
/**
|
|
39912
|
-
*
|
|
39913
|
-
*/
|
|
39914
|
-
customer?: string;
|
|
39915
|
-
/**
|
|
39916
|
-
* Customer UUID
|
|
39917
|
-
*/
|
|
39918
|
-
customer_uuid?: string;
|
|
39919
|
-
/**
|
|
39920
|
-
* Description contains
|
|
39921
|
-
*/
|
|
39922
|
-
description?: string;
|
|
39923
|
-
/**
|
|
39924
|
-
* Has Active Terms of Service
|
|
39925
|
-
*/
|
|
39926
|
-
has_active_terms_of_service?: boolean;
|
|
39927
|
-
/**
|
|
39928
|
-
* Has Terms of Service
|
|
39929
|
-
*/
|
|
39930
|
-
has_terms_of_service?: boolean;
|
|
39931
|
-
/**
|
|
39932
|
-
* Keyword
|
|
39933
|
-
*/
|
|
39934
|
-
keyword?: string;
|
|
39935
|
-
/**
|
|
39936
|
-
* Modified after
|
|
39937
|
-
*/
|
|
39938
|
-
modified?: string;
|
|
39939
|
-
/**
|
|
39940
|
-
* Name
|
|
39941
|
-
*/
|
|
39942
|
-
name?: string;
|
|
39943
|
-
/**
|
|
39944
|
-
* Name (exact)
|
|
39945
|
-
*/
|
|
39946
|
-
name_exact?: string;
|
|
39947
|
-
/**
|
|
39948
|
-
* Ordering
|
|
39949
|
-
*
|
|
39950
|
-
*
|
|
39951
|
-
*/
|
|
39952
|
-
o?: Array<'-created' | '-name' | '-state' | '-total_cost' | '-total_cost_estimated' | '-total_customers' | '-type' | 'created' | 'name' | 'state' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type'>;
|
|
39953
|
-
/**
|
|
39954
|
-
* Organization group UUID
|
|
39955
|
-
*/
|
|
39956
|
-
organization_group_uuid?: Array<string>;
|
|
39957
|
-
/**
|
|
39958
|
-
* A page number within the paginated result set.
|
|
39959
|
-
*/
|
|
39960
|
-
page?: number;
|
|
39961
|
-
/**
|
|
39962
|
-
* Number of results to return per page.
|
|
39963
|
-
*/
|
|
39964
|
-
page_size?: number;
|
|
39965
|
-
/**
|
|
39966
|
-
* Parent offering UUID
|
|
39967
|
-
*/
|
|
39968
|
-
parent_uuid?: string;
|
|
39969
|
-
/**
|
|
39970
|
-
* Project UUID
|
|
39971
|
-
*/
|
|
39972
|
-
project_uuid?: string;
|
|
39973
|
-
/**
|
|
39974
|
-
* Search by offering name, slug or description
|
|
39975
|
-
*/
|
|
39976
|
-
query?: string;
|
|
39977
|
-
/**
|
|
39978
|
-
* Resource customer UUID
|
|
39979
|
-
*/
|
|
39980
|
-
resource_customer_uuid?: string;
|
|
39981
|
-
/**
|
|
39982
|
-
* Resource project UUID
|
|
39983
|
-
*/
|
|
39984
|
-
resource_project_uuid?: string;
|
|
39985
|
-
/**
|
|
39986
|
-
* Scope UUID
|
|
39987
|
-
*/
|
|
39988
|
-
scope_uuid?: string;
|
|
39989
|
-
/**
|
|
39990
|
-
* Service manager UUID
|
|
39991
|
-
*/
|
|
39992
|
-
service_manager_uuid?: string;
|
|
39993
|
-
/**
|
|
39994
|
-
* Shared
|
|
39995
|
-
*/
|
|
39996
|
-
shared?: boolean;
|
|
39997
|
-
/**
|
|
39998
|
-
* Offering state
|
|
39999
|
-
*
|
|
40000
|
-
*
|
|
40001
|
-
*/
|
|
40002
|
-
state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused' | 'Unavailable'>;
|
|
40003
|
-
/**
|
|
40004
|
-
* Tag UUID (OR logic)
|
|
40005
|
-
*/
|
|
40006
|
-
tag?: Array<string>;
|
|
40007
|
-
/**
|
|
40008
|
-
* Tag name (OR logic)
|
|
40009
|
-
*/
|
|
40010
|
-
tag_name?: Array<string>;
|
|
40011
|
-
/**
|
|
40012
|
-
* Tag names with AND logic (comma-separated)
|
|
40013
|
-
*/
|
|
40014
|
-
tag_names_and?: string;
|
|
40015
|
-
/**
|
|
40016
|
-
* Tag UUIDs with AND logic (comma-separated)
|
|
40017
|
-
*/
|
|
40018
|
-
tags_and?: string;
|
|
40019
|
-
/**
|
|
40020
|
-
* Offering type
|
|
40021
|
-
*/
|
|
40022
|
-
type?: Array<string>;
|
|
40023
|
-
/**
|
|
40024
|
-
* User Has Consent
|
|
40025
|
-
*/
|
|
40026
|
-
user_has_consent?: boolean;
|
|
40027
|
-
/**
|
|
40028
|
-
* User Has Offering User
|
|
40029
|
-
*/
|
|
40030
|
-
user_has_offering_user?: boolean;
|
|
40031
|
-
/**
|
|
40032
|
-
* Comma-separated offering UUIDs
|
|
40033
|
-
*/
|
|
40034
|
-
uuid_list?: string;
|
|
40035
|
-
};
|
|
40036
|
-
url: '/api/marketplace-provider-offerings/{uuid}/list_course_accounts/';
|
|
40037
|
-
};
|
|
40038
|
-
export type MarketplaceProviderOfferingsListCourseAccountsListResponses = {
|
|
40039
|
-
200: Array<CourseAccount>;
|
|
40040
|
-
};
|
|
40041
|
-
export type MarketplaceProviderOfferingsListCourseAccountsListResponse = MarketplaceProviderOfferingsListCourseAccountsListResponses[keyof MarketplaceProviderOfferingsListCourseAccountsListResponses];
|
|
40042
|
-
export type MarketplaceProviderOfferingsListCustomerProjectsListData = {
|
|
40043
|
-
body?: never;
|
|
40044
|
-
path: {
|
|
40045
|
-
uuid: string;
|
|
40046
|
-
};
|
|
40047
|
-
query?: {
|
|
40048
|
-
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'>;
|
|
40049
|
-
/**
|
|
40050
|
-
* A page number within the paginated result set.
|
|
40051
|
-
*/
|
|
40052
|
-
page?: number;
|
|
40053
|
-
/**
|
|
40054
|
-
* Number of results to return per page.
|
|
40055
|
-
*/
|
|
40056
|
-
page_size?: number;
|
|
40057
|
-
};
|
|
40058
|
-
url: '/api/marketplace-provider-offerings/{uuid}/list_customer_projects/';
|
|
40059
|
-
};
|
|
40060
|
-
export type MarketplaceProviderOfferingsListCustomerProjectsListResponses = {
|
|
40061
|
-
200: Array<Project>;
|
|
40062
|
-
};
|
|
40063
|
-
export type MarketplaceProviderOfferingsListCustomerProjectsListResponse = MarketplaceProviderOfferingsListCustomerProjectsListResponses[keyof MarketplaceProviderOfferingsListCustomerProjectsListResponses];
|
|
40064
|
-
export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
|
|
40065
|
-
body?: never;
|
|
40066
|
-
path: {
|
|
40067
|
-
uuid: string;
|
|
40068
|
-
};
|
|
40069
|
-
query?: {
|
|
40070
|
-
/**
|
|
40071
|
-
* Accessible via calls
|
|
40072
|
-
*/
|
|
40073
|
-
accessible_via_calls?: boolean;
|
|
40074
|
-
/**
|
|
40075
|
-
* Allowed customer UUID
|
|
40076
|
-
*/
|
|
40077
|
-
allowed_customer_uuid?: string;
|
|
40078
|
-
/**
|
|
40079
|
-
* Offering attributes (JSON)
|
|
40080
|
-
*/
|
|
40081
|
-
attributes?: string;
|
|
40082
|
-
/**
|
|
40083
|
-
* Billable
|
|
40084
|
-
*/
|
|
40085
|
-
billable?: boolean;
|
|
40086
|
-
can_create_offering_user?: boolean;
|
|
40087
|
-
/**
|
|
40088
|
-
* Category group UUID
|
|
40089
|
-
*/
|
|
40090
|
-
category_group_uuid?: string;
|
|
40091
|
-
/**
|
|
40092
|
-
* Category UUID
|
|
40745
|
+
* Filter versions created after this timestamp (ISO 8601)
|
|
40093
40746
|
*/
|
|
40094
|
-
|
|
40747
|
+
created_after?: string;
|
|
40095
40748
|
/**
|
|
40096
|
-
*
|
|
40749
|
+
* Filter versions created before this timestamp (ISO 8601)
|
|
40097
40750
|
*/
|
|
40098
|
-
|
|
40751
|
+
created_before?: string;
|
|
40752
|
+
/**
|
|
40753
|
+
* Customer URL
|
|
40754
|
+
*/
|
|
40755
|
+
customer?: string;
|
|
40756
|
+
/**
|
|
40757
|
+
* Customer UUID
|
|
40758
|
+
*/
|
|
40759
|
+
customer_uuid?: string;
|
|
40760
|
+
/**
|
|
40761
|
+
* Description contains
|
|
40762
|
+
*/
|
|
40763
|
+
description?: string;
|
|
40764
|
+
/**
|
|
40765
|
+
* Has Active Terms of Service
|
|
40766
|
+
*/
|
|
40767
|
+
has_active_terms_of_service?: boolean;
|
|
40768
|
+
/**
|
|
40769
|
+
* Has Terms of Service
|
|
40770
|
+
*/
|
|
40771
|
+
has_terms_of_service?: boolean;
|
|
40772
|
+
/**
|
|
40773
|
+
* Keyword
|
|
40774
|
+
*/
|
|
40775
|
+
keyword?: string;
|
|
40776
|
+
/**
|
|
40777
|
+
* Modified after
|
|
40778
|
+
*/
|
|
40779
|
+
modified?: string;
|
|
40780
|
+
/**
|
|
40781
|
+
* Name
|
|
40782
|
+
*/
|
|
40783
|
+
name?: string;
|
|
40784
|
+
/**
|
|
40785
|
+
* Name (exact)
|
|
40786
|
+
*/
|
|
40787
|
+
name_exact?: string;
|
|
40788
|
+
/**
|
|
40789
|
+
* Ordering
|
|
40790
|
+
*
|
|
40791
|
+
*
|
|
40792
|
+
*/
|
|
40793
|
+
o?: Array<'-created' | '-name' | '-state' | '-total_cost' | '-total_cost_estimated' | '-total_customers' | '-type' | 'created' | 'name' | 'state' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type'>;
|
|
40794
|
+
/**
|
|
40795
|
+
* Organization group UUID
|
|
40796
|
+
*/
|
|
40797
|
+
organization_group_uuid?: Array<string>;
|
|
40798
|
+
/**
|
|
40799
|
+
* A page number within the paginated result set.
|
|
40800
|
+
*/
|
|
40801
|
+
page?: number;
|
|
40802
|
+
/**
|
|
40803
|
+
* Number of results to return per page.
|
|
40804
|
+
*/
|
|
40805
|
+
page_size?: number;
|
|
40806
|
+
/**
|
|
40807
|
+
* Parent offering UUID
|
|
40808
|
+
*/
|
|
40809
|
+
parent_uuid?: string;
|
|
40810
|
+
/**
|
|
40811
|
+
* Project UUID
|
|
40812
|
+
*/
|
|
40813
|
+
project_uuid?: string;
|
|
40814
|
+
/**
|
|
40815
|
+
* Search by offering name, slug or description
|
|
40816
|
+
*/
|
|
40817
|
+
query?: string;
|
|
40818
|
+
/**
|
|
40819
|
+
* Resource customer UUID
|
|
40820
|
+
*/
|
|
40821
|
+
resource_customer_uuid?: string;
|
|
40822
|
+
/**
|
|
40823
|
+
* Resource project UUID
|
|
40824
|
+
*/
|
|
40825
|
+
resource_project_uuid?: string;
|
|
40826
|
+
/**
|
|
40827
|
+
* Scope UUID
|
|
40828
|
+
*/
|
|
40829
|
+
scope_uuid?: string;
|
|
40830
|
+
/**
|
|
40831
|
+
* Service manager UUID
|
|
40832
|
+
*/
|
|
40833
|
+
service_manager_uuid?: string;
|
|
40834
|
+
/**
|
|
40835
|
+
* Shared
|
|
40836
|
+
*/
|
|
40837
|
+
shared?: boolean;
|
|
40838
|
+
/**
|
|
40839
|
+
* Offering state
|
|
40840
|
+
*
|
|
40841
|
+
*
|
|
40842
|
+
*/
|
|
40843
|
+
state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused' | 'Unavailable'>;
|
|
40844
|
+
/**
|
|
40845
|
+
* Tag UUID (OR logic)
|
|
40846
|
+
*/
|
|
40847
|
+
tag?: Array<string>;
|
|
40848
|
+
/**
|
|
40849
|
+
* Tag name (OR logic)
|
|
40850
|
+
*/
|
|
40851
|
+
tag_name?: Array<string>;
|
|
40852
|
+
/**
|
|
40853
|
+
* Tag names with AND logic (comma-separated)
|
|
40854
|
+
*/
|
|
40855
|
+
tag_names_and?: string;
|
|
40856
|
+
/**
|
|
40857
|
+
* Tag UUIDs with AND logic (comma-separated)
|
|
40858
|
+
*/
|
|
40859
|
+
tags_and?: string;
|
|
40860
|
+
/**
|
|
40861
|
+
* Offering type
|
|
40862
|
+
*/
|
|
40863
|
+
type?: Array<string>;
|
|
40864
|
+
/**
|
|
40865
|
+
* User Has Consent
|
|
40866
|
+
*/
|
|
40867
|
+
user_has_consent?: boolean;
|
|
40868
|
+
/**
|
|
40869
|
+
* User Has Offering User
|
|
40870
|
+
*/
|
|
40871
|
+
user_has_offering_user?: boolean;
|
|
40872
|
+
/**
|
|
40873
|
+
* Comma-separated offering UUIDs
|
|
40874
|
+
*/
|
|
40875
|
+
uuid_list?: string;
|
|
40876
|
+
};
|
|
40877
|
+
url: '/api/marketplace-provider-offerings/{uuid}/history/';
|
|
40878
|
+
};
|
|
40879
|
+
export type MarketplaceProviderOfferingsHistoryListResponses = {
|
|
40880
|
+
200: Array<VersionHistory>;
|
|
40881
|
+
};
|
|
40882
|
+
export type MarketplaceProviderOfferingsHistoryListResponse = MarketplaceProviderOfferingsHistoryListResponses[keyof MarketplaceProviderOfferingsHistoryListResponses];
|
|
40883
|
+
export type MarketplaceProviderOfferingsHistoryAtRetrieveData = {
|
|
40884
|
+
body?: never;
|
|
40885
|
+
path: {
|
|
40886
|
+
uuid: string;
|
|
40887
|
+
};
|
|
40888
|
+
query: {
|
|
40889
|
+
/**
|
|
40890
|
+
* ISO 8601 timestamp to query the object state at
|
|
40891
|
+
*/
|
|
40892
|
+
timestamp: string;
|
|
40893
|
+
};
|
|
40894
|
+
url: '/api/marketplace-provider-offerings/{uuid}/history/at/';
|
|
40895
|
+
};
|
|
40896
|
+
export type MarketplaceProviderOfferingsHistoryAtRetrieveErrors = {
|
|
40897
|
+
400: {
|
|
40898
|
+
[key: string]: unknown;
|
|
40899
|
+
};
|
|
40900
|
+
404: {
|
|
40901
|
+
[key: string]: unknown;
|
|
40902
|
+
};
|
|
40903
|
+
};
|
|
40904
|
+
export type MarketplaceProviderOfferingsHistoryAtRetrieveError = MarketplaceProviderOfferingsHistoryAtRetrieveErrors[keyof MarketplaceProviderOfferingsHistoryAtRetrieveErrors];
|
|
40905
|
+
export type MarketplaceProviderOfferingsHistoryAtRetrieveResponses = {
|
|
40906
|
+
200: VersionHistory;
|
|
40907
|
+
};
|
|
40908
|
+
export type MarketplaceProviderOfferingsHistoryAtRetrieveResponse = MarketplaceProviderOfferingsHistoryAtRetrieveResponses[keyof MarketplaceProviderOfferingsHistoryAtRetrieveResponses];
|
|
40909
|
+
export type MarketplaceProviderOfferingsImportResourceData = {
|
|
40910
|
+
body: ImportResourceRequest;
|
|
40911
|
+
path: {
|
|
40912
|
+
uuid: string;
|
|
40913
|
+
};
|
|
40914
|
+
query?: never;
|
|
40915
|
+
url: '/api/marketplace-provider-offerings/{uuid}/import_resource/';
|
|
40916
|
+
};
|
|
40917
|
+
export type MarketplaceProviderOfferingsImportResourceResponses = {
|
|
40918
|
+
200: Resource;
|
|
40919
|
+
};
|
|
40920
|
+
export type MarketplaceProviderOfferingsImportResourceResponse = MarketplaceProviderOfferingsImportResourceResponses[keyof MarketplaceProviderOfferingsImportResourceResponses];
|
|
40921
|
+
export type MarketplaceProviderOfferingsImportableResourcesListData = {
|
|
40922
|
+
body?: never;
|
|
40923
|
+
path: {
|
|
40924
|
+
uuid: string;
|
|
40925
|
+
};
|
|
40926
|
+
query?: {
|
|
40927
|
+
/**
|
|
40928
|
+
* A page number within the paginated result set.
|
|
40929
|
+
*/
|
|
40930
|
+
page?: number;
|
|
40931
|
+
/**
|
|
40932
|
+
* Number of results to return per page.
|
|
40933
|
+
*/
|
|
40934
|
+
page_size?: number;
|
|
40935
|
+
};
|
|
40936
|
+
url: '/api/marketplace-provider-offerings/{uuid}/importable_resources/';
|
|
40937
|
+
};
|
|
40938
|
+
export type MarketplaceProviderOfferingsImportableResourcesListResponses = {
|
|
40939
|
+
200: Array<ImportableResource>;
|
|
40940
|
+
};
|
|
40941
|
+
export type MarketplaceProviderOfferingsImportableResourcesListResponse = MarketplaceProviderOfferingsImportableResourcesListResponses[keyof MarketplaceProviderOfferingsImportableResourcesListResponses];
|
|
40942
|
+
export type MarketplaceProviderOfferingsListCourseAccountsListData = {
|
|
40943
|
+
body?: never;
|
|
40944
|
+
path: {
|
|
40945
|
+
uuid: string;
|
|
40946
|
+
};
|
|
40947
|
+
query?: {
|
|
40948
|
+
/**
|
|
40949
|
+
* Accessible via calls
|
|
40950
|
+
*/
|
|
40951
|
+
accessible_via_calls?: boolean;
|
|
40952
|
+
/**
|
|
40953
|
+
* Allowed customer UUID
|
|
40954
|
+
*/
|
|
40955
|
+
allowed_customer_uuid?: string;
|
|
40956
|
+
/**
|
|
40957
|
+
* Offering attributes (JSON)
|
|
40958
|
+
*/
|
|
40959
|
+
attributes?: string;
|
|
40960
|
+
/**
|
|
40961
|
+
* Billable
|
|
40962
|
+
*/
|
|
40963
|
+
billable?: boolean;
|
|
40964
|
+
can_create_offering_user?: boolean;
|
|
40965
|
+
/**
|
|
40966
|
+
* Category group UUID
|
|
40967
|
+
*/
|
|
40968
|
+
category_group_uuid?: string;
|
|
40969
|
+
/**
|
|
40970
|
+
* Category UUID
|
|
40971
|
+
*/
|
|
40972
|
+
category_uuid?: string;
|
|
40973
|
+
/**
|
|
40974
|
+
* Created after
|
|
40975
|
+
*/
|
|
40976
|
+
created?: string;
|
|
40977
|
+
/**
|
|
40978
|
+
* Customer URL
|
|
40979
|
+
*/
|
|
40980
|
+
customer?: string;
|
|
40981
|
+
/**
|
|
40982
|
+
* Customer UUID
|
|
40983
|
+
*/
|
|
40984
|
+
customer_uuid?: string;
|
|
40985
|
+
/**
|
|
40986
|
+
* Description contains
|
|
40987
|
+
*/
|
|
40988
|
+
description?: string;
|
|
40989
|
+
/**
|
|
40990
|
+
* Has Active Terms of Service
|
|
40991
|
+
*/
|
|
40992
|
+
has_active_terms_of_service?: boolean;
|
|
40993
|
+
/**
|
|
40994
|
+
* Has Terms of Service
|
|
40995
|
+
*/
|
|
40996
|
+
has_terms_of_service?: boolean;
|
|
40997
|
+
/**
|
|
40998
|
+
* Keyword
|
|
40999
|
+
*/
|
|
41000
|
+
keyword?: string;
|
|
41001
|
+
/**
|
|
41002
|
+
* Modified after
|
|
41003
|
+
*/
|
|
41004
|
+
modified?: string;
|
|
41005
|
+
/**
|
|
41006
|
+
* Name
|
|
41007
|
+
*/
|
|
41008
|
+
name?: string;
|
|
41009
|
+
/**
|
|
41010
|
+
* Name (exact)
|
|
41011
|
+
*/
|
|
41012
|
+
name_exact?: string;
|
|
41013
|
+
/**
|
|
41014
|
+
* Ordering
|
|
41015
|
+
*
|
|
41016
|
+
*
|
|
41017
|
+
*/
|
|
41018
|
+
o?: Array<'-created' | '-name' | '-state' | '-total_cost' | '-total_cost_estimated' | '-total_customers' | '-type' | 'created' | 'name' | 'state' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type'>;
|
|
41019
|
+
/**
|
|
41020
|
+
* Organization group UUID
|
|
41021
|
+
*/
|
|
41022
|
+
organization_group_uuid?: Array<string>;
|
|
41023
|
+
/**
|
|
41024
|
+
* A page number within the paginated result set.
|
|
41025
|
+
*/
|
|
41026
|
+
page?: number;
|
|
41027
|
+
/**
|
|
41028
|
+
* Number of results to return per page.
|
|
41029
|
+
*/
|
|
41030
|
+
page_size?: number;
|
|
41031
|
+
/**
|
|
41032
|
+
* Parent offering UUID
|
|
41033
|
+
*/
|
|
41034
|
+
parent_uuid?: string;
|
|
41035
|
+
/**
|
|
41036
|
+
* Project UUID
|
|
41037
|
+
*/
|
|
41038
|
+
project_uuid?: string;
|
|
41039
|
+
/**
|
|
41040
|
+
* Search by offering name, slug or description
|
|
41041
|
+
*/
|
|
41042
|
+
query?: string;
|
|
41043
|
+
/**
|
|
41044
|
+
* Resource customer UUID
|
|
41045
|
+
*/
|
|
41046
|
+
resource_customer_uuid?: string;
|
|
41047
|
+
/**
|
|
41048
|
+
* Resource project UUID
|
|
41049
|
+
*/
|
|
41050
|
+
resource_project_uuid?: string;
|
|
41051
|
+
/**
|
|
41052
|
+
* Scope UUID
|
|
41053
|
+
*/
|
|
41054
|
+
scope_uuid?: string;
|
|
41055
|
+
/**
|
|
41056
|
+
* Service manager UUID
|
|
41057
|
+
*/
|
|
41058
|
+
service_manager_uuid?: string;
|
|
41059
|
+
/**
|
|
41060
|
+
* Shared
|
|
41061
|
+
*/
|
|
41062
|
+
shared?: boolean;
|
|
41063
|
+
/**
|
|
41064
|
+
* Offering state
|
|
41065
|
+
*
|
|
41066
|
+
*
|
|
41067
|
+
*/
|
|
41068
|
+
state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused' | 'Unavailable'>;
|
|
41069
|
+
/**
|
|
41070
|
+
* Tag UUID (OR logic)
|
|
41071
|
+
*/
|
|
41072
|
+
tag?: Array<string>;
|
|
41073
|
+
/**
|
|
41074
|
+
* Tag name (OR logic)
|
|
41075
|
+
*/
|
|
41076
|
+
tag_name?: Array<string>;
|
|
41077
|
+
/**
|
|
41078
|
+
* Tag names with AND logic (comma-separated)
|
|
41079
|
+
*/
|
|
41080
|
+
tag_names_and?: string;
|
|
41081
|
+
/**
|
|
41082
|
+
* Tag UUIDs with AND logic (comma-separated)
|
|
41083
|
+
*/
|
|
41084
|
+
tags_and?: string;
|
|
41085
|
+
/**
|
|
41086
|
+
* Offering type
|
|
41087
|
+
*/
|
|
41088
|
+
type?: Array<string>;
|
|
41089
|
+
/**
|
|
41090
|
+
* User Has Consent
|
|
41091
|
+
*/
|
|
41092
|
+
user_has_consent?: boolean;
|
|
41093
|
+
/**
|
|
41094
|
+
* User Has Offering User
|
|
41095
|
+
*/
|
|
41096
|
+
user_has_offering_user?: boolean;
|
|
41097
|
+
/**
|
|
41098
|
+
* Comma-separated offering UUIDs
|
|
41099
|
+
*/
|
|
41100
|
+
uuid_list?: string;
|
|
41101
|
+
};
|
|
41102
|
+
url: '/api/marketplace-provider-offerings/{uuid}/list_course_accounts/';
|
|
41103
|
+
};
|
|
41104
|
+
export type MarketplaceProviderOfferingsListCourseAccountsListResponses = {
|
|
41105
|
+
200: Array<CourseAccount>;
|
|
41106
|
+
};
|
|
41107
|
+
export type MarketplaceProviderOfferingsListCourseAccountsListResponse = MarketplaceProviderOfferingsListCourseAccountsListResponses[keyof MarketplaceProviderOfferingsListCourseAccountsListResponses];
|
|
41108
|
+
export type MarketplaceProviderOfferingsListCustomerProjectsListData = {
|
|
41109
|
+
body?: never;
|
|
41110
|
+
path: {
|
|
41111
|
+
uuid: string;
|
|
41112
|
+
};
|
|
41113
|
+
query?: {
|
|
41114
|
+
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'>;
|
|
41115
|
+
/**
|
|
41116
|
+
* A page number within the paginated result set.
|
|
41117
|
+
*/
|
|
41118
|
+
page?: number;
|
|
41119
|
+
/**
|
|
41120
|
+
* Number of results to return per page.
|
|
41121
|
+
*/
|
|
41122
|
+
page_size?: number;
|
|
41123
|
+
};
|
|
41124
|
+
url: '/api/marketplace-provider-offerings/{uuid}/list_customer_projects/';
|
|
41125
|
+
};
|
|
41126
|
+
export type MarketplaceProviderOfferingsListCustomerProjectsListResponses = {
|
|
41127
|
+
200: Array<Project>;
|
|
41128
|
+
};
|
|
41129
|
+
export type MarketplaceProviderOfferingsListCustomerProjectsListResponse = MarketplaceProviderOfferingsListCustomerProjectsListResponses[keyof MarketplaceProviderOfferingsListCustomerProjectsListResponses];
|
|
41130
|
+
export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
|
|
41131
|
+
body?: never;
|
|
41132
|
+
path: {
|
|
41133
|
+
uuid: string;
|
|
41134
|
+
};
|
|
41135
|
+
query?: {
|
|
41136
|
+
/**
|
|
41137
|
+
* Accessible via calls
|
|
41138
|
+
*/
|
|
41139
|
+
accessible_via_calls?: boolean;
|
|
41140
|
+
/**
|
|
41141
|
+
* Allowed customer UUID
|
|
41142
|
+
*/
|
|
41143
|
+
allowed_customer_uuid?: string;
|
|
41144
|
+
/**
|
|
41145
|
+
* Offering attributes (JSON)
|
|
41146
|
+
*/
|
|
41147
|
+
attributes?: string;
|
|
41148
|
+
/**
|
|
41149
|
+
* Billable
|
|
41150
|
+
*/
|
|
41151
|
+
billable?: boolean;
|
|
41152
|
+
can_create_offering_user?: boolean;
|
|
41153
|
+
/**
|
|
41154
|
+
* Category group UUID
|
|
41155
|
+
*/
|
|
41156
|
+
category_group_uuid?: string;
|
|
41157
|
+
/**
|
|
41158
|
+
* Category UUID
|
|
41159
|
+
*/
|
|
41160
|
+
category_uuid?: string;
|
|
41161
|
+
/**
|
|
41162
|
+
* Created after
|
|
41163
|
+
*/
|
|
41164
|
+
created?: string;
|
|
40099
41165
|
/**
|
|
40100
41166
|
* Customer URL
|
|
40101
41167
|
*/
|
|
@@ -41340,7 +42406,7 @@ export type MarketplaceProviderResourcesListData = {
|
|
|
41340
42406
|
* Downscaled
|
|
41341
42407
|
*/
|
|
41342
42408
|
downscaled?: boolean;
|
|
41343
|
-
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'>;
|
|
42409
|
+
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'>;
|
|
41344
42410
|
/**
|
|
41345
42411
|
* Has termination date
|
|
41346
42412
|
*/
|
|
@@ -41667,7 +42733,7 @@ export type MarketplaceProviderResourcesRetrieveData = {
|
|
|
41667
42733
|
uuid: string;
|
|
41668
42734
|
};
|
|
41669
42735
|
query?: {
|
|
41670
|
-
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'>;
|
|
42736
|
+
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'>;
|
|
41671
42737
|
};
|
|
41672
42738
|
url: '/api/marketplace-provider-resources/{uuid}/';
|
|
41673
42739
|
};
|
|
@@ -41911,7 +42977,7 @@ export type MarketplaceProviderResourcesHistoryListData = {
|
|
|
41911
42977
|
url: '/api/marketplace-provider-resources/{uuid}/history/';
|
|
41912
42978
|
};
|
|
41913
42979
|
export type MarketplaceProviderResourcesHistoryListResponses = {
|
|
41914
|
-
200: Array<
|
|
42980
|
+
200: Array<VersionHistory>;
|
|
41915
42981
|
};
|
|
41916
42982
|
export type MarketplaceProviderResourcesHistoryListResponse = MarketplaceProviderResourcesHistoryListResponses[keyof MarketplaceProviderResourcesHistoryListResponses];
|
|
41917
42983
|
export type MarketplaceProviderResourcesHistoryAtRetrieveData = {
|
|
@@ -41921,7 +42987,7 @@ export type MarketplaceProviderResourcesHistoryAtRetrieveData = {
|
|
|
41921
42987
|
};
|
|
41922
42988
|
query: {
|
|
41923
42989
|
/**
|
|
41924
|
-
* ISO 8601 timestamp to query the
|
|
42990
|
+
* ISO 8601 timestamp to query the object state at
|
|
41925
42991
|
*/
|
|
41926
42992
|
timestamp: string;
|
|
41927
42993
|
};
|
|
@@ -41937,7 +43003,7 @@ export type MarketplaceProviderResourcesHistoryAtRetrieveErrors = {
|
|
|
41937
43003
|
};
|
|
41938
43004
|
export type MarketplaceProviderResourcesHistoryAtRetrieveError = MarketplaceProviderResourcesHistoryAtRetrieveErrors[keyof MarketplaceProviderResourcesHistoryAtRetrieveErrors];
|
|
41939
43005
|
export type MarketplaceProviderResourcesHistoryAtRetrieveResponses = {
|
|
41940
|
-
200:
|
|
43006
|
+
200: VersionHistory;
|
|
41941
43007
|
};
|
|
41942
43008
|
export type MarketplaceProviderResourcesHistoryAtRetrieveResponse = MarketplaceProviderResourcesHistoryAtRetrieveResponses[keyof MarketplaceProviderResourcesHistoryAtRetrieveResponses];
|
|
41943
43009
|
export type MarketplaceProviderResourcesMoveResourceData = {
|
|
@@ -42972,7 +44038,7 @@ export type MarketplaceResourcesListData = {
|
|
|
42972
44038
|
* Downscaled
|
|
42973
44039
|
*/
|
|
42974
44040
|
downscaled?: boolean;
|
|
42975
|
-
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'>;
|
|
44041
|
+
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'>;
|
|
42976
44042
|
/**
|
|
42977
44043
|
* Has termination date
|
|
42978
44044
|
*/
|
|
@@ -43299,7 +44365,7 @@ export type MarketplaceResourcesRetrieveData = {
|
|
|
43299
44365
|
uuid: string;
|
|
43300
44366
|
};
|
|
43301
44367
|
query?: {
|
|
43302
|
-
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'>;
|
|
44368
|
+
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'>;
|
|
43303
44369
|
};
|
|
43304
44370
|
url: '/api/marketplace-resources/{uuid}/';
|
|
43305
44371
|
};
|
|
@@ -43543,7 +44609,7 @@ export type MarketplaceResourcesHistoryListData = {
|
|
|
43543
44609
|
url: '/api/marketplace-resources/{uuid}/history/';
|
|
43544
44610
|
};
|
|
43545
44611
|
export type MarketplaceResourcesHistoryListResponses = {
|
|
43546
|
-
200: Array<
|
|
44612
|
+
200: Array<VersionHistory>;
|
|
43547
44613
|
};
|
|
43548
44614
|
export type MarketplaceResourcesHistoryListResponse = MarketplaceResourcesHistoryListResponses[keyof MarketplaceResourcesHistoryListResponses];
|
|
43549
44615
|
export type MarketplaceResourcesHistoryAtRetrieveData = {
|
|
@@ -43553,7 +44619,7 @@ export type MarketplaceResourcesHistoryAtRetrieveData = {
|
|
|
43553
44619
|
};
|
|
43554
44620
|
query: {
|
|
43555
44621
|
/**
|
|
43556
|
-
* ISO 8601 timestamp to query the
|
|
44622
|
+
* ISO 8601 timestamp to query the object state at
|
|
43557
44623
|
*/
|
|
43558
44624
|
timestamp: string;
|
|
43559
44625
|
};
|
|
@@ -43569,7 +44635,7 @@ export type MarketplaceResourcesHistoryAtRetrieveErrors = {
|
|
|
43569
44635
|
};
|
|
43570
44636
|
export type MarketplaceResourcesHistoryAtRetrieveError = MarketplaceResourcesHistoryAtRetrieveErrors[keyof MarketplaceResourcesHistoryAtRetrieveErrors];
|
|
43571
44637
|
export type MarketplaceResourcesHistoryAtRetrieveResponses = {
|
|
43572
|
-
200:
|
|
44638
|
+
200: VersionHistory;
|
|
43573
44639
|
};
|
|
43574
44640
|
export type MarketplaceResourcesHistoryAtRetrieveResponse = MarketplaceResourcesHistoryAtRetrieveResponses[keyof MarketplaceResourcesHistoryAtRetrieveResponses];
|
|
43575
44641
|
export type MarketplaceResourcesMoveResourceData = {
|
|
@@ -46227,6 +47293,90 @@ export type MarketplaceSlurmPeriodicUsagePoliciesUpdateResponses = {
|
|
|
46227
47293
|
200: SlurmPeriodicUsagePolicy;
|
|
46228
47294
|
};
|
|
46229
47295
|
export type MarketplaceSlurmPeriodicUsagePoliciesUpdateResponse = MarketplaceSlurmPeriodicUsagePoliciesUpdateResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesUpdateResponses];
|
|
47296
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesCommandHistoryListData = {
|
|
47297
|
+
body?: never;
|
|
47298
|
+
path: {
|
|
47299
|
+
uuid: string;
|
|
47300
|
+
};
|
|
47301
|
+
query?: {
|
|
47302
|
+
/**
|
|
47303
|
+
* A page number within the paginated result set.
|
|
47304
|
+
*/
|
|
47305
|
+
page?: number;
|
|
47306
|
+
/**
|
|
47307
|
+
* Number of results to return per page.
|
|
47308
|
+
*/
|
|
47309
|
+
page_size?: number;
|
|
47310
|
+
scope?: string;
|
|
47311
|
+
scope_uuid?: string;
|
|
47312
|
+
};
|
|
47313
|
+
url: '/api/marketplace-slurm-periodic-usage-policies/{uuid}/command-history/';
|
|
47314
|
+
};
|
|
47315
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesCommandHistoryListResponses = {
|
|
47316
|
+
200: Array<SlurmCommandHistory>;
|
|
47317
|
+
};
|
|
47318
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesCommandHistoryListResponse = MarketplaceSlurmPeriodicUsagePoliciesCommandHistoryListResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesCommandHistoryListResponses];
|
|
47319
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesDryRunData = {
|
|
47320
|
+
body?: SlurmPolicyEvaluateRequestRequest;
|
|
47321
|
+
path: {
|
|
47322
|
+
uuid: string;
|
|
47323
|
+
};
|
|
47324
|
+
query?: never;
|
|
47325
|
+
url: '/api/marketplace-slurm-periodic-usage-policies/{uuid}/dry-run/';
|
|
47326
|
+
};
|
|
47327
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesDryRunResponses = {
|
|
47328
|
+
200: SlurmPolicyDryRunResponse;
|
|
47329
|
+
};
|
|
47330
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesDryRunResponse = MarketplaceSlurmPeriodicUsagePoliciesDryRunResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesDryRunResponses];
|
|
47331
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesEvaluateData = {
|
|
47332
|
+
body?: SlurmPolicyEvaluateRequestRequest;
|
|
47333
|
+
path: {
|
|
47334
|
+
uuid: string;
|
|
47335
|
+
};
|
|
47336
|
+
query?: never;
|
|
47337
|
+
url: '/api/marketplace-slurm-periodic-usage-policies/{uuid}/evaluate/';
|
|
47338
|
+
};
|
|
47339
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesEvaluateResponses = {
|
|
47340
|
+
200: SlurmPolicyEvaluateResponse;
|
|
47341
|
+
};
|
|
47342
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesEvaluateResponse = MarketplaceSlurmPeriodicUsagePoliciesEvaluateResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesEvaluateResponses];
|
|
47343
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesEvaluationLogsListData = {
|
|
47344
|
+
body?: never;
|
|
47345
|
+
path: {
|
|
47346
|
+
uuid: string;
|
|
47347
|
+
};
|
|
47348
|
+
query?: {
|
|
47349
|
+
/**
|
|
47350
|
+
* A page number within the paginated result set.
|
|
47351
|
+
*/
|
|
47352
|
+
page?: number;
|
|
47353
|
+
/**
|
|
47354
|
+
* Number of results to return per page.
|
|
47355
|
+
*/
|
|
47356
|
+
page_size?: number;
|
|
47357
|
+
scope?: string;
|
|
47358
|
+
scope_uuid?: string;
|
|
47359
|
+
};
|
|
47360
|
+
url: '/api/marketplace-slurm-periodic-usage-policies/{uuid}/evaluation-logs/';
|
|
47361
|
+
};
|
|
47362
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesEvaluationLogsListResponses = {
|
|
47363
|
+
200: Array<SlurmPolicyEvaluationLog>;
|
|
47364
|
+
};
|
|
47365
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesEvaluationLogsListResponse = MarketplaceSlurmPeriodicUsagePoliciesEvaluationLogsListResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesEvaluationLogsListResponses];
|
|
47366
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesReportCommandResultData = {
|
|
47367
|
+
body: SlurmCommandResultRequest;
|
|
47368
|
+
path: {
|
|
47369
|
+
uuid: string;
|
|
47370
|
+
};
|
|
47371
|
+
query?: never;
|
|
47372
|
+
url: '/api/marketplace-slurm-periodic-usage-policies/{uuid}/report-command-result/';
|
|
47373
|
+
};
|
|
47374
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesReportCommandResultResponses = {
|
|
47375
|
+
/**
|
|
47376
|
+
* No response body
|
|
47377
|
+
*/
|
|
47378
|
+
200: unknown;
|
|
47379
|
+
};
|
|
46230
47380
|
export type MarketplaceSlurmPeriodicUsagePoliciesActionsRetrieveData = {
|
|
46231
47381
|
body?: never;
|
|
46232
47382
|
path?: never;
|
|
@@ -46839,6 +47989,46 @@ export type MarketplaceSoftwareVersionsUpdateResponses = {
|
|
|
46839
47989
|
200: SoftwareVersion;
|
|
46840
47990
|
};
|
|
46841
47991
|
export type MarketplaceSoftwareVersionsUpdateResponse = MarketplaceSoftwareVersionsUpdateResponses[keyof MarketplaceSoftwareVersionsUpdateResponses];
|
|
47992
|
+
export type MarketplaceStatsAggregatedUsageTrendsListData = {
|
|
47993
|
+
body?: never;
|
|
47994
|
+
path?: never;
|
|
47995
|
+
query?: {
|
|
47996
|
+
/**
|
|
47997
|
+
* A page number within the paginated result set.
|
|
47998
|
+
*/
|
|
47999
|
+
page?: number;
|
|
48000
|
+
/**
|
|
48001
|
+
* Number of results to return per page.
|
|
48002
|
+
*/
|
|
48003
|
+
page_size?: number;
|
|
48004
|
+
};
|
|
48005
|
+
url: '/api/marketplace-stats/aggregated_usage_trends/';
|
|
48006
|
+
};
|
|
48007
|
+
export type MarketplaceStatsAggregatedUsageTrendsListResponses = {
|
|
48008
|
+
200: Array<AggregatedUsageTrend>;
|
|
48009
|
+
};
|
|
48010
|
+
export type MarketplaceStatsAggregatedUsageTrendsListResponse = MarketplaceStatsAggregatedUsageTrendsListResponses[keyof MarketplaceStatsAggregatedUsageTrendsListResponses];
|
|
48011
|
+
export type MarketplaceStatsAggregatedUsageTrendsCountData = {
|
|
48012
|
+
body?: never;
|
|
48013
|
+
path?: never;
|
|
48014
|
+
query?: {
|
|
48015
|
+
/**
|
|
48016
|
+
* A page number within the paginated result set.
|
|
48017
|
+
*/
|
|
48018
|
+
page?: number;
|
|
48019
|
+
/**
|
|
48020
|
+
* Number of results to return per page.
|
|
48021
|
+
*/
|
|
48022
|
+
page_size?: number;
|
|
48023
|
+
};
|
|
48024
|
+
url: '/api/marketplace-stats/aggregated_usage_trends/';
|
|
48025
|
+
};
|
|
48026
|
+
export type MarketplaceStatsAggregatedUsageTrendsCountResponses = {
|
|
48027
|
+
/**
|
|
48028
|
+
* No response body
|
|
48029
|
+
*/
|
|
48030
|
+
200: unknown;
|
|
48031
|
+
};
|
|
46842
48032
|
export type MarketplaceStatsComponentUsagesListData = {
|
|
46843
48033
|
body?: never;
|
|
46844
48034
|
path?: never;
|
|
@@ -47359,6 +48549,50 @@ export type MarketplaceStatsCustomerMemberCountCountResponses = {
|
|
|
47359
48549
|
*/
|
|
47360
48550
|
200: unknown;
|
|
47361
48551
|
};
|
|
48552
|
+
export type MarketplaceStatsCustomerMemberSummaryRetrieveData = {
|
|
48553
|
+
body?: never;
|
|
48554
|
+
path?: never;
|
|
48555
|
+
query?: never;
|
|
48556
|
+
url: '/api/marketplace-stats/customer_member_summary/';
|
|
48557
|
+
};
|
|
48558
|
+
export type MarketplaceStatsCustomerMemberSummaryRetrieveResponses = {
|
|
48559
|
+
200: CustomerMemberSummary;
|
|
48560
|
+
};
|
|
48561
|
+
export type MarketplaceStatsCustomerMemberSummaryRetrieveResponse = MarketplaceStatsCustomerMemberSummaryRetrieveResponses[keyof MarketplaceStatsCustomerMemberSummaryRetrieveResponses];
|
|
48562
|
+
export type MarketplaceStatsCustomerMemberSummaryCountData = {
|
|
48563
|
+
body?: never;
|
|
48564
|
+
path?: never;
|
|
48565
|
+
query?: never;
|
|
48566
|
+
url: '/api/marketplace-stats/customer_member_summary/';
|
|
48567
|
+
};
|
|
48568
|
+
export type MarketplaceStatsCustomerMemberSummaryCountResponses = {
|
|
48569
|
+
/**
|
|
48570
|
+
* No response body
|
|
48571
|
+
*/
|
|
48572
|
+
200: unknown;
|
|
48573
|
+
};
|
|
48574
|
+
export type MarketplaceStatsOfferingCostsSummaryRetrieveData = {
|
|
48575
|
+
body?: never;
|
|
48576
|
+
path?: never;
|
|
48577
|
+
query?: never;
|
|
48578
|
+
url: '/api/marketplace-stats/offering_costs_summary/';
|
|
48579
|
+
};
|
|
48580
|
+
export type MarketplaceStatsOfferingCostsSummaryRetrieveResponses = {
|
|
48581
|
+
200: OfferingCostsSummary;
|
|
48582
|
+
};
|
|
48583
|
+
export type MarketplaceStatsOfferingCostsSummaryRetrieveResponse = MarketplaceStatsOfferingCostsSummaryRetrieveResponses[keyof MarketplaceStatsOfferingCostsSummaryRetrieveResponses];
|
|
48584
|
+
export type MarketplaceStatsOfferingCostsSummaryCountData = {
|
|
48585
|
+
body?: never;
|
|
48586
|
+
path?: never;
|
|
48587
|
+
query?: never;
|
|
48588
|
+
url: '/api/marketplace-stats/offering_costs_summary/';
|
|
48589
|
+
};
|
|
48590
|
+
export type MarketplaceStatsOfferingCostsSummaryCountResponses = {
|
|
48591
|
+
/**
|
|
48592
|
+
* No response body
|
|
48593
|
+
*/
|
|
48594
|
+
200: unknown;
|
|
48595
|
+
};
|
|
47362
48596
|
export type MarketplaceStatsOfferingsCounterStatsListData = {
|
|
47363
48597
|
body?: never;
|
|
47364
48598
|
path?: never;
|
|
@@ -47535,6 +48769,28 @@ export type MarketplaceStatsOrganizationResourceCountCountResponses = {
|
|
|
47535
48769
|
*/
|
|
47536
48770
|
200: unknown;
|
|
47537
48771
|
};
|
|
48772
|
+
export type MarketplaceStatsProjectClassificationSummaryRetrieveData = {
|
|
48773
|
+
body?: never;
|
|
48774
|
+
path?: never;
|
|
48775
|
+
query?: never;
|
|
48776
|
+
url: '/api/marketplace-stats/project_classification_summary/';
|
|
48777
|
+
};
|
|
48778
|
+
export type MarketplaceStatsProjectClassificationSummaryRetrieveResponses = {
|
|
48779
|
+
200: ProjectClassificationSummary;
|
|
48780
|
+
};
|
|
48781
|
+
export type MarketplaceStatsProjectClassificationSummaryRetrieveResponse = MarketplaceStatsProjectClassificationSummaryRetrieveResponses[keyof MarketplaceStatsProjectClassificationSummaryRetrieveResponses];
|
|
48782
|
+
export type MarketplaceStatsProjectClassificationSummaryCountData = {
|
|
48783
|
+
body?: never;
|
|
48784
|
+
path?: never;
|
|
48785
|
+
query?: never;
|
|
48786
|
+
url: '/api/marketplace-stats/project_classification_summary/';
|
|
48787
|
+
};
|
|
48788
|
+
export type MarketplaceStatsProjectClassificationSummaryCountResponses = {
|
|
48789
|
+
/**
|
|
48790
|
+
* No response body
|
|
48791
|
+
*/
|
|
48792
|
+
200: unknown;
|
|
48793
|
+
};
|
|
47538
48794
|
export type MarketplaceStatsProjectsLimitsGroupedByIndustryFlagRetrieveData = {
|
|
47539
48795
|
body?: never;
|
|
47540
48796
|
path?: never;
|
|
@@ -47767,6 +49023,148 @@ export type MarketplaceStatsResourceProvisioningStatsCountResponses = {
|
|
|
47767
49023
|
*/
|
|
47768
49024
|
200: unknown;
|
|
47769
49025
|
};
|
|
49026
|
+
export type MarketplaceStatsResourceUsageByCreatorAffiliationListData = {
|
|
49027
|
+
body?: never;
|
|
49028
|
+
path?: never;
|
|
49029
|
+
query?: {
|
|
49030
|
+
/**
|
|
49031
|
+
* A page number within the paginated result set.
|
|
49032
|
+
*/
|
|
49033
|
+
page?: number;
|
|
49034
|
+
/**
|
|
49035
|
+
* Number of results to return per page.
|
|
49036
|
+
*/
|
|
49037
|
+
page_size?: number;
|
|
49038
|
+
};
|
|
49039
|
+
url: '/api/marketplace-stats/resource_usage_by_creator_affiliation/';
|
|
49040
|
+
};
|
|
49041
|
+
export type MarketplaceStatsResourceUsageByCreatorAffiliationListResponses = {
|
|
49042
|
+
200: Array<ResourceUsageByAffiliation>;
|
|
49043
|
+
};
|
|
49044
|
+
export type MarketplaceStatsResourceUsageByCreatorAffiliationListResponse = MarketplaceStatsResourceUsageByCreatorAffiliationListResponses[keyof MarketplaceStatsResourceUsageByCreatorAffiliationListResponses];
|
|
49045
|
+
export type MarketplaceStatsResourceUsageByCreatorAffiliationCountData = {
|
|
49046
|
+
body?: never;
|
|
49047
|
+
path?: never;
|
|
49048
|
+
query?: {
|
|
49049
|
+
/**
|
|
49050
|
+
* A page number within the paginated result set.
|
|
49051
|
+
*/
|
|
49052
|
+
page?: number;
|
|
49053
|
+
/**
|
|
49054
|
+
* Number of results to return per page.
|
|
49055
|
+
*/
|
|
49056
|
+
page_size?: number;
|
|
49057
|
+
};
|
|
49058
|
+
url: '/api/marketplace-stats/resource_usage_by_creator_affiliation/';
|
|
49059
|
+
};
|
|
49060
|
+
export type MarketplaceStatsResourceUsageByCreatorAffiliationCountResponses = {
|
|
49061
|
+
/**
|
|
49062
|
+
* No response body
|
|
49063
|
+
*/
|
|
49064
|
+
200: unknown;
|
|
49065
|
+
};
|
|
49066
|
+
export type MarketplaceStatsResourceUsageByCustomerListData = {
|
|
49067
|
+
body?: never;
|
|
49068
|
+
path?: never;
|
|
49069
|
+
query?: {
|
|
49070
|
+
/**
|
|
49071
|
+
* A page number within the paginated result set.
|
|
49072
|
+
*/
|
|
49073
|
+
page?: number;
|
|
49074
|
+
/**
|
|
49075
|
+
* Number of results to return per page.
|
|
49076
|
+
*/
|
|
49077
|
+
page_size?: number;
|
|
49078
|
+
};
|
|
49079
|
+
url: '/api/marketplace-stats/resource_usage_by_customer/';
|
|
49080
|
+
};
|
|
49081
|
+
export type MarketplaceStatsResourceUsageByCustomerListResponses = {
|
|
49082
|
+
200: Array<ResourceUsageByCustomer>;
|
|
49083
|
+
};
|
|
49084
|
+
export type MarketplaceStatsResourceUsageByCustomerListResponse = MarketplaceStatsResourceUsageByCustomerListResponses[keyof MarketplaceStatsResourceUsageByCustomerListResponses];
|
|
49085
|
+
export type MarketplaceStatsResourceUsageByCustomerCountData = {
|
|
49086
|
+
body?: never;
|
|
49087
|
+
path?: never;
|
|
49088
|
+
query?: {
|
|
49089
|
+
/**
|
|
49090
|
+
* A page number within the paginated result set.
|
|
49091
|
+
*/
|
|
49092
|
+
page?: number;
|
|
49093
|
+
/**
|
|
49094
|
+
* Number of results to return per page.
|
|
49095
|
+
*/
|
|
49096
|
+
page_size?: number;
|
|
49097
|
+
};
|
|
49098
|
+
url: '/api/marketplace-stats/resource_usage_by_customer/';
|
|
49099
|
+
};
|
|
49100
|
+
export type MarketplaceStatsResourceUsageByCustomerCountResponses = {
|
|
49101
|
+
/**
|
|
49102
|
+
* No response body
|
|
49103
|
+
*/
|
|
49104
|
+
200: unknown;
|
|
49105
|
+
};
|
|
49106
|
+
export type MarketplaceStatsResourceUsageByOrganizationTypeListData = {
|
|
49107
|
+
body?: never;
|
|
49108
|
+
path?: never;
|
|
49109
|
+
query?: {
|
|
49110
|
+
/**
|
|
49111
|
+
* A page number within the paginated result set.
|
|
49112
|
+
*/
|
|
49113
|
+
page?: number;
|
|
49114
|
+
/**
|
|
49115
|
+
* Number of results to return per page.
|
|
49116
|
+
*/
|
|
49117
|
+
page_size?: number;
|
|
49118
|
+
};
|
|
49119
|
+
url: '/api/marketplace-stats/resource_usage_by_organization_type/';
|
|
49120
|
+
};
|
|
49121
|
+
export type MarketplaceStatsResourceUsageByOrganizationTypeListResponses = {
|
|
49122
|
+
200: Array<ResourceUsageByOrgType>;
|
|
49123
|
+
};
|
|
49124
|
+
export type MarketplaceStatsResourceUsageByOrganizationTypeListResponse = MarketplaceStatsResourceUsageByOrganizationTypeListResponses[keyof MarketplaceStatsResourceUsageByOrganizationTypeListResponses];
|
|
49125
|
+
export type MarketplaceStatsResourceUsageByOrganizationTypeCountData = {
|
|
49126
|
+
body?: never;
|
|
49127
|
+
path?: never;
|
|
49128
|
+
query?: {
|
|
49129
|
+
/**
|
|
49130
|
+
* A page number within the paginated result set.
|
|
49131
|
+
*/
|
|
49132
|
+
page?: number;
|
|
49133
|
+
/**
|
|
49134
|
+
* Number of results to return per page.
|
|
49135
|
+
*/
|
|
49136
|
+
page_size?: number;
|
|
49137
|
+
};
|
|
49138
|
+
url: '/api/marketplace-stats/resource_usage_by_organization_type/';
|
|
49139
|
+
};
|
|
49140
|
+
export type MarketplaceStatsResourceUsageByOrganizationTypeCountResponses = {
|
|
49141
|
+
/**
|
|
49142
|
+
* No response body
|
|
49143
|
+
*/
|
|
49144
|
+
200: unknown;
|
|
49145
|
+
};
|
|
49146
|
+
export type MarketplaceStatsResourcesGeographySummaryRetrieveData = {
|
|
49147
|
+
body?: never;
|
|
49148
|
+
path?: never;
|
|
49149
|
+
query?: never;
|
|
49150
|
+
url: '/api/marketplace-stats/resources_geography_summary/';
|
|
49151
|
+
};
|
|
49152
|
+
export type MarketplaceStatsResourcesGeographySummaryRetrieveResponses = {
|
|
49153
|
+
200: ResourcesGeographySummary;
|
|
49154
|
+
};
|
|
49155
|
+
export type MarketplaceStatsResourcesGeographySummaryRetrieveResponse = MarketplaceStatsResourcesGeographySummaryRetrieveResponses[keyof MarketplaceStatsResourcesGeographySummaryRetrieveResponses];
|
|
49156
|
+
export type MarketplaceStatsResourcesGeographySummaryCountData = {
|
|
49157
|
+
body?: never;
|
|
49158
|
+
path?: never;
|
|
49159
|
+
query?: never;
|
|
49160
|
+
url: '/api/marketplace-stats/resources_geography_summary/';
|
|
49161
|
+
};
|
|
49162
|
+
export type MarketplaceStatsResourcesGeographySummaryCountResponses = {
|
|
49163
|
+
/**
|
|
49164
|
+
* No response body
|
|
49165
|
+
*/
|
|
49166
|
+
200: unknown;
|
|
49167
|
+
};
|
|
47770
49168
|
export type MarketplaceStatsResourcesLimitsListData = {
|
|
47771
49169
|
body?: never;
|
|
47772
49170
|
path?: never;
|
|
@@ -48023,6 +49421,46 @@ export type MarketplaceStatsUserIdentitySourceCountCountResponses = {
|
|
|
48023
49421
|
*/
|
|
48024
49422
|
200: unknown;
|
|
48025
49423
|
};
|
|
49424
|
+
export type MarketplaceStatsUserJobTitleCountListData = {
|
|
49425
|
+
body?: never;
|
|
49426
|
+
path?: never;
|
|
49427
|
+
query?: {
|
|
49428
|
+
/**
|
|
49429
|
+
* A page number within the paginated result set.
|
|
49430
|
+
*/
|
|
49431
|
+
page?: number;
|
|
49432
|
+
/**
|
|
49433
|
+
* Number of results to return per page.
|
|
49434
|
+
*/
|
|
49435
|
+
page_size?: number;
|
|
49436
|
+
};
|
|
49437
|
+
url: '/api/marketplace-stats/user_job_title_count/';
|
|
49438
|
+
};
|
|
49439
|
+
export type MarketplaceStatsUserJobTitleCountListResponses = {
|
|
49440
|
+
200: Array<UserJobTitleCount>;
|
|
49441
|
+
};
|
|
49442
|
+
export type MarketplaceStatsUserJobTitleCountListResponse = MarketplaceStatsUserJobTitleCountListResponses[keyof MarketplaceStatsUserJobTitleCountListResponses];
|
|
49443
|
+
export type MarketplaceStatsUserJobTitleCountCountData = {
|
|
49444
|
+
body?: never;
|
|
49445
|
+
path?: never;
|
|
49446
|
+
query?: {
|
|
49447
|
+
/**
|
|
49448
|
+
* A page number within the paginated result set.
|
|
49449
|
+
*/
|
|
49450
|
+
page?: number;
|
|
49451
|
+
/**
|
|
49452
|
+
* Number of results to return per page.
|
|
49453
|
+
*/
|
|
49454
|
+
page_size?: number;
|
|
49455
|
+
};
|
|
49456
|
+
url: '/api/marketplace-stats/user_job_title_count/';
|
|
49457
|
+
};
|
|
49458
|
+
export type MarketplaceStatsUserJobTitleCountCountResponses = {
|
|
49459
|
+
/**
|
|
49460
|
+
* No response body
|
|
49461
|
+
*/
|
|
49462
|
+
200: unknown;
|
|
49463
|
+
};
|
|
48026
49464
|
export type MarketplaceStatsUserOrganizationCountListData = {
|
|
48027
49465
|
body?: never;
|
|
48028
49466
|
path?: never;
|
|
@@ -48063,6 +49501,46 @@ export type MarketplaceStatsUserOrganizationCountCountResponses = {
|
|
|
48063
49501
|
*/
|
|
48064
49502
|
200: unknown;
|
|
48065
49503
|
};
|
|
49504
|
+
export type MarketplaceStatsUserOrganizationTypeCountListData = {
|
|
49505
|
+
body?: never;
|
|
49506
|
+
path?: never;
|
|
49507
|
+
query?: {
|
|
49508
|
+
/**
|
|
49509
|
+
* A page number within the paginated result set.
|
|
49510
|
+
*/
|
|
49511
|
+
page?: number;
|
|
49512
|
+
/**
|
|
49513
|
+
* Number of results to return per page.
|
|
49514
|
+
*/
|
|
49515
|
+
page_size?: number;
|
|
49516
|
+
};
|
|
49517
|
+
url: '/api/marketplace-stats/user_organization_type_count/';
|
|
49518
|
+
};
|
|
49519
|
+
export type MarketplaceStatsUserOrganizationTypeCountListResponses = {
|
|
49520
|
+
200: Array<UserOrganizationTypeCount>;
|
|
49521
|
+
};
|
|
49522
|
+
export type MarketplaceStatsUserOrganizationTypeCountListResponse = MarketplaceStatsUserOrganizationTypeCountListResponses[keyof MarketplaceStatsUserOrganizationTypeCountListResponses];
|
|
49523
|
+
export type MarketplaceStatsUserOrganizationTypeCountCountData = {
|
|
49524
|
+
body?: never;
|
|
49525
|
+
path?: never;
|
|
49526
|
+
query?: {
|
|
49527
|
+
/**
|
|
49528
|
+
* A page number within the paginated result set.
|
|
49529
|
+
*/
|
|
49530
|
+
page?: number;
|
|
49531
|
+
/**
|
|
49532
|
+
* Number of results to return per page.
|
|
49533
|
+
*/
|
|
49534
|
+
page_size?: number;
|
|
49535
|
+
};
|
|
49536
|
+
url: '/api/marketplace-stats/user_organization_type_count/';
|
|
49537
|
+
};
|
|
49538
|
+
export type MarketplaceStatsUserOrganizationTypeCountCountResponses = {
|
|
49539
|
+
/**
|
|
49540
|
+
* No response body
|
|
49541
|
+
*/
|
|
49542
|
+
200: unknown;
|
|
49543
|
+
};
|
|
48066
49544
|
export type MarketplaceTagsListData = {
|
|
48067
49545
|
body?: never;
|
|
48068
49546
|
path?: never;
|
|
@@ -58200,7 +59678,7 @@ export type PromotionsCampaignsResourcesListData = {
|
|
|
58200
59678
|
uuid: string;
|
|
58201
59679
|
};
|
|
58202
59680
|
query?: {
|
|
58203
|
-
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'>;
|
|
59681
|
+
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'>;
|
|
58204
59682
|
/**
|
|
58205
59683
|
* A page number within the paginated result set.
|
|
58206
59684
|
*/
|
|
@@ -68263,6 +69741,147 @@ export type UsersDataAccessHistoryListResponses = {
|
|
|
68263
69741
|
200: Array<UserDataAccessLog>;
|
|
68264
69742
|
};
|
|
68265
69743
|
export type UsersDataAccessHistoryListResponse = UsersDataAccessHistoryListResponses[keyof UsersDataAccessHistoryListResponses];
|
|
69744
|
+
export type UsersHistoryListData = {
|
|
69745
|
+
body?: never;
|
|
69746
|
+
path: {
|
|
69747
|
+
uuid: string;
|
|
69748
|
+
};
|
|
69749
|
+
query?: {
|
|
69750
|
+
/**
|
|
69751
|
+
* Agreement date after
|
|
69752
|
+
*/
|
|
69753
|
+
agreement_date?: string;
|
|
69754
|
+
civil_number?: string;
|
|
69755
|
+
/**
|
|
69756
|
+
* Filter versions created after this timestamp (ISO 8601)
|
|
69757
|
+
*/
|
|
69758
|
+
created_after?: string;
|
|
69759
|
+
/**
|
|
69760
|
+
* Filter versions created before this timestamp (ISO 8601)
|
|
69761
|
+
*/
|
|
69762
|
+
created_before?: string;
|
|
69763
|
+
/**
|
|
69764
|
+
* Customer UUID
|
|
69765
|
+
*/
|
|
69766
|
+
customer_uuid?: string;
|
|
69767
|
+
/**
|
|
69768
|
+
* Date joined after
|
|
69769
|
+
*/
|
|
69770
|
+
date_joined?: string;
|
|
69771
|
+
description?: string;
|
|
69772
|
+
/**
|
|
69773
|
+
* Email
|
|
69774
|
+
*/
|
|
69775
|
+
email?: string;
|
|
69776
|
+
/**
|
|
69777
|
+
* Full name
|
|
69778
|
+
*/
|
|
69779
|
+
full_name?: string;
|
|
69780
|
+
/**
|
|
69781
|
+
* Is active
|
|
69782
|
+
*/
|
|
69783
|
+
is_active?: boolean;
|
|
69784
|
+
/**
|
|
69785
|
+
* Is staff
|
|
69786
|
+
*/
|
|
69787
|
+
is_staff?: boolean;
|
|
69788
|
+
/**
|
|
69789
|
+
* Is support
|
|
69790
|
+
*/
|
|
69791
|
+
is_support?: boolean;
|
|
69792
|
+
/**
|
|
69793
|
+
* Job title
|
|
69794
|
+
*/
|
|
69795
|
+
job_title?: string;
|
|
69796
|
+
/**
|
|
69797
|
+
* Date modified after
|
|
69798
|
+
*/
|
|
69799
|
+
modified?: string;
|
|
69800
|
+
/**
|
|
69801
|
+
* Native name
|
|
69802
|
+
*/
|
|
69803
|
+
native_name?: string;
|
|
69804
|
+
/**
|
|
69805
|
+
* Ordering
|
|
69806
|
+
*
|
|
69807
|
+
*
|
|
69808
|
+
*/
|
|
69809
|
+
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'>;
|
|
69810
|
+
/**
|
|
69811
|
+
* Organization
|
|
69812
|
+
*/
|
|
69813
|
+
organization?: string;
|
|
69814
|
+
/**
|
|
69815
|
+
* Organization roles
|
|
69816
|
+
*/
|
|
69817
|
+
organization_roles?: string;
|
|
69818
|
+
/**
|
|
69819
|
+
* A page number within the paginated result set.
|
|
69820
|
+
*/
|
|
69821
|
+
page?: number;
|
|
69822
|
+
/**
|
|
69823
|
+
* Number of results to return per page.
|
|
69824
|
+
*/
|
|
69825
|
+
page_size?: number;
|
|
69826
|
+
phone_number?: string;
|
|
69827
|
+
/**
|
|
69828
|
+
* Project roles
|
|
69829
|
+
*/
|
|
69830
|
+
project_roles?: string;
|
|
69831
|
+
/**
|
|
69832
|
+
* Project UUID
|
|
69833
|
+
*/
|
|
69834
|
+
project_uuid?: string;
|
|
69835
|
+
/**
|
|
69836
|
+
* Filter by first name, last name, civil number, username or email
|
|
69837
|
+
*/
|
|
69838
|
+
query?: string;
|
|
69839
|
+
registration_method?: string;
|
|
69840
|
+
/**
|
|
69841
|
+
* User keyword
|
|
69842
|
+
*/
|
|
69843
|
+
user_keyword?: string;
|
|
69844
|
+
/**
|
|
69845
|
+
* Username (exact)
|
|
69846
|
+
*/
|
|
69847
|
+
username?: string;
|
|
69848
|
+
/**
|
|
69849
|
+
* Comma-separated usernames
|
|
69850
|
+
*/
|
|
69851
|
+
username_list?: string;
|
|
69852
|
+
};
|
|
69853
|
+
url: '/api/users/{uuid}/history/';
|
|
69854
|
+
};
|
|
69855
|
+
export type UsersHistoryListResponses = {
|
|
69856
|
+
200: Array<VersionHistory>;
|
|
69857
|
+
};
|
|
69858
|
+
export type UsersHistoryListResponse = UsersHistoryListResponses[keyof UsersHistoryListResponses];
|
|
69859
|
+
export type UsersHistoryAtRetrieveData = {
|
|
69860
|
+
body?: never;
|
|
69861
|
+
path: {
|
|
69862
|
+
uuid: string;
|
|
69863
|
+
};
|
|
69864
|
+
query: {
|
|
69865
|
+
/**
|
|
69866
|
+
* ISO 8601 timestamp to query the object state at
|
|
69867
|
+
*/
|
|
69868
|
+
timestamp: string;
|
|
69869
|
+
};
|
|
69870
|
+
url: '/api/users/{uuid}/history/at/';
|
|
69871
|
+
};
|
|
69872
|
+
export type UsersHistoryAtRetrieveErrors = {
|
|
69873
|
+
400: {
|
|
69874
|
+
[key: string]: unknown;
|
|
69875
|
+
};
|
|
69876
|
+
404: {
|
|
69877
|
+
[key: string]: unknown;
|
|
69878
|
+
};
|
|
69879
|
+
};
|
|
69880
|
+
export type UsersHistoryAtRetrieveError = UsersHistoryAtRetrieveErrors[keyof UsersHistoryAtRetrieveErrors];
|
|
69881
|
+
export type UsersHistoryAtRetrieveResponses = {
|
|
69882
|
+
200: VersionHistory;
|
|
69883
|
+
};
|
|
69884
|
+
export type UsersHistoryAtRetrieveResponse = UsersHistoryAtRetrieveResponses[keyof UsersHistoryAtRetrieveResponses];
|
|
68266
69885
|
export type UsersPullRemoteUserData = {
|
|
68267
69886
|
body?: never;
|
|
68268
69887
|
path: {
|
|
@@ -68359,6 +69978,16 @@ export type UsersProfileCompletenessCountResponses = {
|
|
|
68359
69978
|
*/
|
|
68360
69979
|
200: unknown;
|
|
68361
69980
|
};
|
|
69981
|
+
export type UsersScimSyncAllData = {
|
|
69982
|
+
body?: never;
|
|
69983
|
+
path?: never;
|
|
69984
|
+
query?: never;
|
|
69985
|
+
url: '/api/users/scim_sync_all/';
|
|
69986
|
+
};
|
|
69987
|
+
export type UsersScimSyncAllResponses = {
|
|
69988
|
+
200: ScimSyncAllResponse;
|
|
69989
|
+
};
|
|
69990
|
+
export type UsersScimSyncAllResponse = UsersScimSyncAllResponses[keyof UsersScimSyncAllResponses];
|
|
68362
69991
|
export type UsersUserActiveStatusCountListData = {
|
|
68363
69992
|
body?: never;
|
|
68364
69993
|
path?: never;
|