waldur-js-client 7.8.3-dev.0 → 7.8.3-dev.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/sdk.gen.d.ts +73 -1
- package/dist/sdk.gen.js +533 -0
- package/dist/types.gen.d.ts +720 -17
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -1098,7 +1098,7 @@ export type CallRound = {
|
|
|
1098
1098
|
cutoff_time: string;
|
|
1099
1099
|
readonly call_uuid: string;
|
|
1100
1100
|
readonly call_name: string;
|
|
1101
|
-
status:
|
|
1101
|
+
status: RoundStatus;
|
|
1102
1102
|
};
|
|
1103
1103
|
export type CallStates = 'draft' | 'active' | 'archived';
|
|
1104
1104
|
export type Campaign = {
|
|
@@ -1751,11 +1751,17 @@ export type ConstanceSettings = {
|
|
|
1751
1751
|
OIDC_CLIENT_SECRET?: string;
|
|
1752
1752
|
OIDC_USER_FIELD?: string;
|
|
1753
1753
|
OIDC_CACHE_TIMEOUT?: number;
|
|
1754
|
+
OIDC_ACCESS_TOKEN_ENABLED?: boolean;
|
|
1754
1755
|
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
1755
1756
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
1756
1757
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
1757
1758
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
1758
1759
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
1760
|
+
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
1761
|
+
ONBOARDING_ARIREGISTER_BASE_URL?: string;
|
|
1762
|
+
ONBOARDING_ARIREGISTER_USERNAME?: string;
|
|
1763
|
+
ONBOARDING_ARIREGISTER_PASSWORD?: string;
|
|
1764
|
+
ONBOARDING_ARIREGISTER_TIMEOUT?: number;
|
|
1759
1765
|
};
|
|
1760
1766
|
export type ConstanceSettingsRequest = {
|
|
1761
1767
|
SITE_NAME?: string;
|
|
@@ -1888,11 +1894,17 @@ export type ConstanceSettingsRequest = {
|
|
|
1888
1894
|
OIDC_CLIENT_SECRET?: string;
|
|
1889
1895
|
OIDC_USER_FIELD?: string;
|
|
1890
1896
|
OIDC_CACHE_TIMEOUT?: number;
|
|
1897
|
+
OIDC_ACCESS_TOKEN_ENABLED?: boolean;
|
|
1891
1898
|
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
1892
1899
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
1893
1900
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
1894
1901
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
1895
1902
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
1903
|
+
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
1904
|
+
ONBOARDING_ARIREGISTER_BASE_URL?: string;
|
|
1905
|
+
ONBOARDING_ARIREGISTER_USERNAME?: string;
|
|
1906
|
+
ONBOARDING_ARIREGISTER_PASSWORD?: string;
|
|
1907
|
+
ONBOARDING_ARIREGISTER_TIMEOUT?: number;
|
|
1896
1908
|
};
|
|
1897
1909
|
export type ContainerFormatEnum = 'bare' | 'ovf' | 'aki' | 'ami' | 'ari';
|
|
1898
1910
|
export type CoreAuthToken = {
|
|
@@ -2060,6 +2072,7 @@ export type Customer = {
|
|
|
2060
2072
|
image?: string | null;
|
|
2061
2073
|
readonly blocked?: boolean;
|
|
2062
2074
|
readonly archived?: boolean;
|
|
2075
|
+
readonly display_billing_info_in_projects?: boolean;
|
|
2063
2076
|
readonly default_tax_percent?: string;
|
|
2064
2077
|
/**
|
|
2065
2078
|
* Start date of accounting
|
|
@@ -2334,6 +2347,27 @@ export type DeleteAttachmentsRequest = {
|
|
|
2334
2347
|
};
|
|
2335
2348
|
export type DependencyLogicOperatorEnum = 'and' | 'or';
|
|
2336
2349
|
export type DeploymentModeEnum = 'self_managed' | 'managed';
|
|
2350
|
+
export type DeprecatedNetworkRbacPolicy = {
|
|
2351
|
+
readonly url: string;
|
|
2352
|
+
readonly uuid: string;
|
|
2353
|
+
readonly network: string;
|
|
2354
|
+
readonly network_name: string;
|
|
2355
|
+
target_tenant: string;
|
|
2356
|
+
readonly target_tenant_name: string;
|
|
2357
|
+
readonly backend_id: string;
|
|
2358
|
+
/**
|
|
2359
|
+
* Type of access granted - either shared access or external network access
|
|
2360
|
+
*/
|
|
2361
|
+
policy_type?: PolicyTypeEnum;
|
|
2362
|
+
readonly created: string;
|
|
2363
|
+
};
|
|
2364
|
+
export type DeprecatedNetworkRbacPolicyRequest = {
|
|
2365
|
+
target_tenant: string;
|
|
2366
|
+
/**
|
|
2367
|
+
* Type of access granted - either shared access or external network access
|
|
2368
|
+
*/
|
|
2369
|
+
policy_type?: PolicyTypeEnum;
|
|
2370
|
+
};
|
|
2337
2371
|
export type DetailState = {
|
|
2338
2372
|
readonly detail: string;
|
|
2339
2373
|
readonly state: string;
|
|
@@ -2540,7 +2574,7 @@ export type Event = {
|
|
|
2540
2574
|
message?: string;
|
|
2541
2575
|
readonly context?: unknown;
|
|
2542
2576
|
};
|
|
2543
|
-
export type EventGroupsEnum = 'access_subnets' | 'auth' | 'call' | 'credits' | 'customers' | 'invoices' | 'offering_accounting' | 'permissions' | 'projects' | 'proposal' | 'providers' | 'resources' | 'review' | 'ssh' | 'support' | 'users';
|
|
2577
|
+
export type EventGroupsEnum = 'access_subnets' | 'auth' | 'call' | 'credits' | 'customers' | 'invoices' | 'offering_accounting' | 'permissions' | 'projects' | 'proposal' | 'providers' | 'resources' | 'review' | 'ssh' | 'support' | 'users' | 'terms_of_service';
|
|
2544
2578
|
export type EventStats = {
|
|
2545
2579
|
readonly year: number;
|
|
2546
2580
|
readonly month: number;
|
|
@@ -2569,7 +2603,7 @@ export type EventSubscriptionRequest = {
|
|
|
2569
2603
|
description?: string;
|
|
2570
2604
|
observable_objects?: unknown;
|
|
2571
2605
|
};
|
|
2572
|
-
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' | 'user_activated' | 'user_creation_succeeded' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_update_succeeded';
|
|
2606
|
+
export type EventTypesEnum = 'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_user_created' | 'marketplace_resource_user_deleted' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_update_succeeded' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked';
|
|
2573
2607
|
export type ExecutionStateEnum = 'Scheduled' | 'Processing' | 'OK' | 'Erred';
|
|
2574
2608
|
export type ExternalLink = {
|
|
2575
2609
|
readonly url: string;
|
|
@@ -3844,6 +3878,14 @@ export type MergedPluginOptions = {
|
|
|
3844
3878
|
* GLAuth homedir prefix
|
|
3845
3879
|
*/
|
|
3846
3880
|
homedir_prefix?: string;
|
|
3881
|
+
/**
|
|
3882
|
+
* HEAppE scratch project directory
|
|
3883
|
+
*/
|
|
3884
|
+
scratch_project_directory?: string;
|
|
3885
|
+
/**
|
|
3886
|
+
* HEAppE project permanent directory
|
|
3887
|
+
*/
|
|
3888
|
+
project_permanent_directory?: string;
|
|
3847
3889
|
/**
|
|
3848
3890
|
* GLAuth initial primary group number
|
|
3849
3891
|
*/
|
|
@@ -4006,6 +4048,14 @@ export type MergedPluginOptionsRequest = {
|
|
|
4006
4048
|
* GLAuth homedir prefix
|
|
4007
4049
|
*/
|
|
4008
4050
|
homedir_prefix?: string;
|
|
4051
|
+
/**
|
|
4052
|
+
* HEAppE scratch project directory
|
|
4053
|
+
*/
|
|
4054
|
+
scratch_project_directory?: string;
|
|
4055
|
+
/**
|
|
4056
|
+
* HEAppE project permanent directory
|
|
4057
|
+
*/
|
|
4058
|
+
project_permanent_directory?: string;
|
|
4009
4059
|
/**
|
|
4010
4060
|
* GLAuth initial primary group number
|
|
4011
4061
|
*/
|
|
@@ -4651,7 +4701,7 @@ export type NestedRound = {
|
|
|
4651
4701
|
readonly name?: string;
|
|
4652
4702
|
start_time?: string;
|
|
4653
4703
|
cutoff_time?: string;
|
|
4654
|
-
status?:
|
|
4704
|
+
status?: RoundStatus;
|
|
4655
4705
|
review_strategy?: ReviewStrategyEnum;
|
|
4656
4706
|
deciding_entity?: DecidingEntityEnum;
|
|
4657
4707
|
allocation_time?: AllocationTimeEnum;
|
|
@@ -4762,7 +4812,7 @@ export type NestedSecurityGroupRuleRequest = {
|
|
|
4762
4812
|
export type NetworkRbacPolicy = {
|
|
4763
4813
|
readonly url?: string;
|
|
4764
4814
|
readonly uuid?: string;
|
|
4765
|
-
|
|
4815
|
+
network?: string;
|
|
4766
4816
|
readonly network_name?: string;
|
|
4767
4817
|
target_tenant?: string;
|
|
4768
4818
|
readonly target_tenant_name?: string;
|
|
@@ -4774,6 +4824,7 @@ export type NetworkRbacPolicy = {
|
|
|
4774
4824
|
readonly created?: string;
|
|
4775
4825
|
};
|
|
4776
4826
|
export type NetworkRbacPolicyRequest = {
|
|
4827
|
+
network: string;
|
|
4777
4828
|
target_tenant: string;
|
|
4778
4829
|
/**
|
|
4779
4830
|
* Type of access granted - either shared access or external network access
|
|
@@ -4794,9 +4845,9 @@ export type Notification = {
|
|
|
4794
4845
|
readonly templates: Array<NotificationTemplateDetailSerializers>;
|
|
4795
4846
|
/**
|
|
4796
4847
|
* Finds the notification definition in the global NOTIFICATIONS
|
|
4797
|
-
* dictionary and returns its 'context'
|
|
4848
|
+
* dictionary and returns its 'context' schema.
|
|
4798
4849
|
*/
|
|
4799
|
-
readonly
|
|
4850
|
+
readonly context_schema: {
|
|
4800
4851
|
[key: string]: unknown;
|
|
4801
4852
|
};
|
|
4802
4853
|
};
|
|
@@ -4812,7 +4863,7 @@ export type NotificationTemplateDetailSerializers = {
|
|
|
4812
4863
|
*/
|
|
4813
4864
|
path: string;
|
|
4814
4865
|
name: string;
|
|
4815
|
-
readonly content: string;
|
|
4866
|
+
readonly content: string | null;
|
|
4816
4867
|
readonly original_content: string | null;
|
|
4817
4868
|
readonly is_content_overridden: boolean;
|
|
4818
4869
|
};
|
|
@@ -4947,6 +4998,10 @@ export type OfferingComponent = {
|
|
|
4947
4998
|
default_limit?: number | null;
|
|
4948
4999
|
readonly factor?: number | null;
|
|
4949
5000
|
readonly is_builtin?: boolean;
|
|
5001
|
+
is_prepaid?: boolean;
|
|
5002
|
+
overage_component?: string | null;
|
|
5003
|
+
min_prepaid_duration?: number | null;
|
|
5004
|
+
max_prepaid_duration?: number | null;
|
|
4950
5005
|
};
|
|
4951
5006
|
export type OfferingComponentLimit = {
|
|
4952
5007
|
min: number;
|
|
@@ -4985,6 +5040,10 @@ export type OfferingComponentRequest = {
|
|
|
4985
5040
|
max_available_limit?: number | null;
|
|
4986
5041
|
is_boolean?: boolean;
|
|
4987
5042
|
default_limit?: number | null;
|
|
5043
|
+
is_prepaid?: boolean;
|
|
5044
|
+
overage_component?: string | null;
|
|
5045
|
+
min_prepaid_duration?: number | null;
|
|
5046
|
+
max_prepaid_duration?: number | null;
|
|
4988
5047
|
};
|
|
4989
5048
|
export type OfferingComponentStat = {
|
|
4990
5049
|
readonly period: string;
|
|
@@ -5446,6 +5505,160 @@ export type OfferingUserStateTransitionRequest = {
|
|
|
5446
5505
|
export type OfferingUserUpdateRestrictionRequest = {
|
|
5447
5506
|
is_restricted: boolean;
|
|
5448
5507
|
};
|
|
5508
|
+
export type OnboardingCompanyValidationRequestRequest = {
|
|
5509
|
+
/**
|
|
5510
|
+
* ISO country code (e.g., 'EE' for Estonia)
|
|
5511
|
+
*/
|
|
5512
|
+
country: string;
|
|
5513
|
+
/**
|
|
5514
|
+
* Official company registration code
|
|
5515
|
+
*/
|
|
5516
|
+
legal_person_identifier: string;
|
|
5517
|
+
/**
|
|
5518
|
+
* Company name (optional, for reference)
|
|
5519
|
+
*/
|
|
5520
|
+
legal_name?: string;
|
|
5521
|
+
/**
|
|
5522
|
+
* Optional customer metadata for manual verification cases. Should contain valid Customer model fields.
|
|
5523
|
+
*/
|
|
5524
|
+
user_submitted_customer_metadata?: unknown;
|
|
5525
|
+
};
|
|
5526
|
+
export type OnboardingJustification = {
|
|
5527
|
+
readonly uuid: string;
|
|
5528
|
+
verification: number;
|
|
5529
|
+
user: number;
|
|
5530
|
+
/**
|
|
5531
|
+
* User's explanation for why they should be authorized
|
|
5532
|
+
*/
|
|
5533
|
+
user_justification: string;
|
|
5534
|
+
readonly validated_by: number | null;
|
|
5535
|
+
readonly validated_at: string | null;
|
|
5536
|
+
validation_decision: ValidationDecisionEnum;
|
|
5537
|
+
/**
|
|
5538
|
+
* Administrator notes on the review decision
|
|
5539
|
+
*/
|
|
5540
|
+
readonly staff_notes: string;
|
|
5541
|
+
readonly supporting_documentation: Array<OnboardingJustificationDocumentation>;
|
|
5542
|
+
readonly created: string;
|
|
5543
|
+
readonly modified: string;
|
|
5544
|
+
};
|
|
5545
|
+
export type OnboardingJustificationCreateRequest = {
|
|
5546
|
+
/**
|
|
5547
|
+
* UUID of the OnboardingVerification to justify
|
|
5548
|
+
*/
|
|
5549
|
+
verification_uuid: string;
|
|
5550
|
+
/**
|
|
5551
|
+
* User's explanation for why they should be authorized
|
|
5552
|
+
*/
|
|
5553
|
+
user_justification: string;
|
|
5554
|
+
};
|
|
5555
|
+
export type OnboardingJustificationDocumentation = {
|
|
5556
|
+
readonly uuid: string;
|
|
5557
|
+
/**
|
|
5558
|
+
* Upload supporting documentation.
|
|
5559
|
+
*/
|
|
5560
|
+
file?: string | null;
|
|
5561
|
+
readonly file_name: string;
|
|
5562
|
+
readonly file_size: number;
|
|
5563
|
+
readonly created: string;
|
|
5564
|
+
};
|
|
5565
|
+
export type OnboardingJustificationDocumentationRequest = {
|
|
5566
|
+
/**
|
|
5567
|
+
* Upload supporting documentation.
|
|
5568
|
+
*/
|
|
5569
|
+
file?: (Blob | File) | null;
|
|
5570
|
+
};
|
|
5571
|
+
export type OnboardingJustificationRequest = {
|
|
5572
|
+
verification: number;
|
|
5573
|
+
user: number;
|
|
5574
|
+
/**
|
|
5575
|
+
* User's explanation for why they should be authorized
|
|
5576
|
+
*/
|
|
5577
|
+
user_justification: string;
|
|
5578
|
+
};
|
|
5579
|
+
export type OnboardingVerification = {
|
|
5580
|
+
readonly uuid: string;
|
|
5581
|
+
/**
|
|
5582
|
+
* User requesting company onboarding
|
|
5583
|
+
*/
|
|
5584
|
+
user: number;
|
|
5585
|
+
/**
|
|
5586
|
+
* ISO country code (e.g., 'EE' for Estonia)
|
|
5587
|
+
*/
|
|
5588
|
+
country: string;
|
|
5589
|
+
/**
|
|
5590
|
+
* Official company registration code
|
|
5591
|
+
*/
|
|
5592
|
+
legal_person_identifier: string;
|
|
5593
|
+
/**
|
|
5594
|
+
* Claimed company name (optional, for reference)
|
|
5595
|
+
*/
|
|
5596
|
+
legal_name?: string;
|
|
5597
|
+
/**
|
|
5598
|
+
* Additional customer metadata submitted by user for manual verification cases. Should contain valid Customer model fields.
|
|
5599
|
+
*/
|
|
5600
|
+
user_submitted_customer_metadata?: unknown;
|
|
5601
|
+
status: OnboardingVerificationStatusEnum;
|
|
5602
|
+
/**
|
|
5603
|
+
* Method used for validation
|
|
5604
|
+
*/
|
|
5605
|
+
validation_method: ValidationMethodEnum;
|
|
5606
|
+
/**
|
|
5607
|
+
* Roles the user has in the company
|
|
5608
|
+
*/
|
|
5609
|
+
readonly verified_user_roles: unknown;
|
|
5610
|
+
/**
|
|
5611
|
+
* Company information retrieved during validation
|
|
5612
|
+
*/
|
|
5613
|
+
readonly verified_company_data: unknown;
|
|
5614
|
+
/**
|
|
5615
|
+
* Raw API response for debugging and auditing
|
|
5616
|
+
*/
|
|
5617
|
+
readonly raw_response: unknown;
|
|
5618
|
+
readonly error_traceback: string;
|
|
5619
|
+
readonly error_message: string;
|
|
5620
|
+
/**
|
|
5621
|
+
* When validation was completed
|
|
5622
|
+
*/
|
|
5623
|
+
readonly validated_at: string | null;
|
|
5624
|
+
/**
|
|
5625
|
+
* When this verification expires
|
|
5626
|
+
*/
|
|
5627
|
+
expires_at?: string | null;
|
|
5628
|
+
/**
|
|
5629
|
+
* Customer created after successful validation
|
|
5630
|
+
*/
|
|
5631
|
+
readonly customer: number | null;
|
|
5632
|
+
readonly created: string;
|
|
5633
|
+
readonly modified: string;
|
|
5634
|
+
};
|
|
5635
|
+
export type OnboardingVerificationRequest = {
|
|
5636
|
+
/**
|
|
5637
|
+
* User requesting company onboarding
|
|
5638
|
+
*/
|
|
5639
|
+
user: number;
|
|
5640
|
+
/**
|
|
5641
|
+
* ISO country code (e.g., 'EE' for Estonia)
|
|
5642
|
+
*/
|
|
5643
|
+
country: string;
|
|
5644
|
+
/**
|
|
5645
|
+
* Official company registration code
|
|
5646
|
+
*/
|
|
5647
|
+
legal_person_identifier: string;
|
|
5648
|
+
/**
|
|
5649
|
+
* Claimed company name (optional, for reference)
|
|
5650
|
+
*/
|
|
5651
|
+
legal_name?: string;
|
|
5652
|
+
/**
|
|
5653
|
+
* Additional customer metadata submitted by user for manual verification cases. Should contain valid Customer model fields.
|
|
5654
|
+
*/
|
|
5655
|
+
user_submitted_customer_metadata?: unknown;
|
|
5656
|
+
/**
|
|
5657
|
+
* When this verification expires
|
|
5658
|
+
*/
|
|
5659
|
+
expires_at?: string | null;
|
|
5660
|
+
};
|
|
5661
|
+
export type OnboardingVerificationStatusEnum = 'pending' | 'verified' | 'failed' | 'escalated' | 'expired';
|
|
5449
5662
|
export type OpenStackAllowedAddressPair = {
|
|
5450
5663
|
mac_address?: string;
|
|
5451
5664
|
};
|
|
@@ -5611,6 +5824,10 @@ export type OpenStackBackupRestorationRequest = {
|
|
|
5611
5824
|
};
|
|
5612
5825
|
export type OpenStackCreateFloatingIpRequest = {
|
|
5613
5826
|
url?: string;
|
|
5827
|
+
/**
|
|
5828
|
+
* Existing floating IP address in selected OpenStack tenant to be assigned to new virtual machine
|
|
5829
|
+
*/
|
|
5830
|
+
ip_address?: string;
|
|
5614
5831
|
subnet: string;
|
|
5615
5832
|
};
|
|
5616
5833
|
export type OpenStackCreatePortRequest = {
|
|
@@ -7654,6 +7871,14 @@ export type PatchedMigrationDetailsRequest = {
|
|
|
7654
7871
|
error_message?: string;
|
|
7655
7872
|
error_traceback?: string;
|
|
7656
7873
|
};
|
|
7874
|
+
export type PatchedNetworkRbacPolicyRequest = {
|
|
7875
|
+
network?: string;
|
|
7876
|
+
target_tenant?: string;
|
|
7877
|
+
/**
|
|
7878
|
+
* Type of access granted - either shared access or external network access
|
|
7879
|
+
*/
|
|
7880
|
+
policy_type?: PolicyTypeEnum;
|
|
7881
|
+
};
|
|
7657
7882
|
export type PatchedNotificationRequest = {
|
|
7658
7883
|
key?: string;
|
|
7659
7884
|
description?: string;
|
|
@@ -7715,6 +7940,40 @@ export type PatchedOfferingUserServiceProviderCommentRequest = {
|
|
|
7715
7940
|
*/
|
|
7716
7941
|
service_provider_comment_url?: string;
|
|
7717
7942
|
};
|
|
7943
|
+
export type PatchedOnboardingJustificationRequest = {
|
|
7944
|
+
verification?: number;
|
|
7945
|
+
user?: number;
|
|
7946
|
+
/**
|
|
7947
|
+
* User's explanation for why they should be authorized
|
|
7948
|
+
*/
|
|
7949
|
+
user_justification?: string;
|
|
7950
|
+
};
|
|
7951
|
+
export type PatchedOnboardingVerificationRequest = {
|
|
7952
|
+
/**
|
|
7953
|
+
* User requesting company onboarding
|
|
7954
|
+
*/
|
|
7955
|
+
user?: number;
|
|
7956
|
+
/**
|
|
7957
|
+
* ISO country code (e.g., 'EE' for Estonia)
|
|
7958
|
+
*/
|
|
7959
|
+
country?: string;
|
|
7960
|
+
/**
|
|
7961
|
+
* Official company registration code
|
|
7962
|
+
*/
|
|
7963
|
+
legal_person_identifier?: string;
|
|
7964
|
+
/**
|
|
7965
|
+
* Claimed company name (optional, for reference)
|
|
7966
|
+
*/
|
|
7967
|
+
legal_name?: string;
|
|
7968
|
+
/**
|
|
7969
|
+
* Additional customer metadata submitted by user for manual verification cases. Should contain valid Customer model fields.
|
|
7970
|
+
*/
|
|
7971
|
+
user_submitted_customer_metadata?: unknown;
|
|
7972
|
+
/**
|
|
7973
|
+
* When this verification expires
|
|
7974
|
+
*/
|
|
7975
|
+
expires_at?: string | null;
|
|
7976
|
+
};
|
|
7718
7977
|
export type PatchedOpenStackBackupRequest = {
|
|
7719
7978
|
name?: string;
|
|
7720
7979
|
description?: string;
|
|
@@ -7821,6 +8080,7 @@ export type PatchedProjectCreditRequest = {
|
|
|
7821
8080
|
minimal_consumption_logic?: MinimalConsumptionLogicEnum;
|
|
7822
8081
|
grace_coefficient?: string;
|
|
7823
8082
|
apply_as_minimal_consumption?: boolean;
|
|
8083
|
+
mark_unused_credit_as_spent_on_project_termination?: boolean;
|
|
7824
8084
|
};
|
|
7825
8085
|
export type PatchedProjectEstimatedCostPolicyRequest = {
|
|
7826
8086
|
scope?: string;
|
|
@@ -8476,6 +8736,7 @@ export type Project = {
|
|
|
8476
8736
|
readonly customer_native_name?: string;
|
|
8477
8737
|
readonly customer_abbreviation?: string;
|
|
8478
8738
|
description?: string;
|
|
8739
|
+
readonly customer_display_billing_info_in_projects?: boolean;
|
|
8479
8740
|
readonly created?: string;
|
|
8480
8741
|
/**
|
|
8481
8742
|
* Project type
|
|
@@ -8558,6 +8819,7 @@ export type ProjectCredit = {
|
|
|
8558
8819
|
minimal_consumption_logic?: MinimalConsumptionLogicEnum;
|
|
8559
8820
|
grace_coefficient?: string;
|
|
8560
8821
|
apply_as_minimal_consumption?: boolean;
|
|
8822
|
+
mark_unused_credit_as_spent_on_project_termination?: boolean;
|
|
8561
8823
|
};
|
|
8562
8824
|
export type ProjectCreditRequest = {
|
|
8563
8825
|
value?: string;
|
|
@@ -8567,6 +8829,7 @@ export type ProjectCreditRequest = {
|
|
|
8567
8829
|
minimal_consumption_logic?: MinimalConsumptionLogicEnum;
|
|
8568
8830
|
grace_coefficient?: string;
|
|
8569
8831
|
apply_as_minimal_consumption?: boolean;
|
|
8832
|
+
mark_unused_credit_as_spent_on_project_termination?: boolean;
|
|
8570
8833
|
};
|
|
8571
8834
|
export type ProjectDetail = {
|
|
8572
8835
|
readonly project_uuid: string;
|
|
@@ -9013,7 +9276,7 @@ export type ProtectedRound = {
|
|
|
9013
9276
|
readonly name: string;
|
|
9014
9277
|
start_time: string;
|
|
9015
9278
|
cutoff_time: string;
|
|
9016
|
-
status:
|
|
9279
|
+
status: RoundStatus;
|
|
9017
9280
|
review_strategy?: ReviewStrategyEnum;
|
|
9018
9281
|
deciding_entity?: DecidingEntityEnum;
|
|
9019
9282
|
allocation_time?: AllocationTimeEnum;
|
|
@@ -10793,6 +11056,18 @@ export type ResourcePlanPeriod = {
|
|
|
10793
11056
|
end?: string | null;
|
|
10794
11057
|
components: Array<BaseComponentUsage>;
|
|
10795
11058
|
};
|
|
11059
|
+
export type ResourceRenewRequest = {
|
|
11060
|
+
/**
|
|
11061
|
+
* Number of months to extend the subscription by.
|
|
11062
|
+
*/
|
|
11063
|
+
extension_months: number;
|
|
11064
|
+
/**
|
|
11065
|
+
* Optional new limits for the resource. Supports upgrades only.
|
|
11066
|
+
*/
|
|
11067
|
+
limits?: {
|
|
11068
|
+
[key: string]: number;
|
|
11069
|
+
};
|
|
11070
|
+
};
|
|
10796
11071
|
export type ResourceReportRequest = {
|
|
10797
11072
|
report: Array<ReportSectionRequest>;
|
|
10798
11073
|
};
|
|
@@ -11266,6 +11541,7 @@ export type RoundReviewer = {
|
|
|
11266
11541
|
rejected_proposals: number;
|
|
11267
11542
|
in_review_proposals: number;
|
|
11268
11543
|
};
|
|
11544
|
+
export type RoundStatus = 'scheduled' | 'open' | 'ended';
|
|
11269
11545
|
export type Rule = {
|
|
11270
11546
|
name: string;
|
|
11271
11547
|
readonly uuid: string;
|
|
@@ -11394,6 +11670,13 @@ export type ServiceProvider = {
|
|
|
11394
11670
|
export type ServiceProviderApiSecretCode = {
|
|
11395
11671
|
readonly api_secret_code: string;
|
|
11396
11672
|
};
|
|
11673
|
+
export type ServiceProviderChecklistSummary = {
|
|
11674
|
+
readonly checklist_uuid: string;
|
|
11675
|
+
readonly checklist_name: string;
|
|
11676
|
+
readonly questions_count: number;
|
|
11677
|
+
readonly offerings_count: number;
|
|
11678
|
+
readonly category_name: string | null;
|
|
11679
|
+
};
|
|
11397
11680
|
export type ServiceProviderComplianceOverview = {
|
|
11398
11681
|
readonly offering_uuid: string;
|
|
11399
11682
|
readonly offering_name: string;
|
|
@@ -11596,7 +11879,6 @@ export type StateTransitionError = {
|
|
|
11596
11879
|
*/
|
|
11597
11880
|
detail: string;
|
|
11598
11881
|
};
|
|
11599
|
-
export type StatusEnum = 'scheduled' | 'open' | 'ended';
|
|
11600
11882
|
export type StorageModeEnum = 'fixed' | 'dynamic';
|
|
11601
11883
|
export type SubNetMapping = {
|
|
11602
11884
|
src_cidr: string;
|
|
@@ -11679,6 +11961,21 @@ export type Tenant = {
|
|
|
11679
11961
|
readonly uuid: string;
|
|
11680
11962
|
name: string;
|
|
11681
11963
|
};
|
|
11964
|
+
export type TimeSeriesToSData = {
|
|
11965
|
+
readonly date: string;
|
|
11966
|
+
readonly count: number;
|
|
11967
|
+
};
|
|
11968
|
+
export type ToSConsentDashboard = {
|
|
11969
|
+
readonly active_users_count: number;
|
|
11970
|
+
readonly total_users_count: number;
|
|
11971
|
+
readonly active_users_percentage: number;
|
|
11972
|
+
readonly accepted_consents_count: number;
|
|
11973
|
+
readonly revoked_consents_count: number;
|
|
11974
|
+
readonly total_consents_count: number;
|
|
11975
|
+
readonly revoked_consents_over_time: Array<TimeSeriesToSData>;
|
|
11976
|
+
readonly tos_version_adoption: Array<VersionAdoption>;
|
|
11977
|
+
readonly active_users_over_time: Array<TimeSeriesToSData>;
|
|
11978
|
+
};
|
|
11682
11979
|
export type TokenRequest = {
|
|
11683
11980
|
token: string;
|
|
11684
11981
|
};
|
|
@@ -11714,6 +12011,10 @@ export type UpdateOfferingComponentRequest = {
|
|
|
11714
12011
|
max_available_limit?: number | null;
|
|
11715
12012
|
is_boolean?: boolean;
|
|
11716
12013
|
default_limit?: number | null;
|
|
12014
|
+
is_prepaid?: boolean;
|
|
12015
|
+
overage_component?: string | null;
|
|
12016
|
+
min_prepaid_duration?: number | null;
|
|
12017
|
+
max_prepaid_duration?: number | null;
|
|
11717
12018
|
};
|
|
11718
12019
|
export type User = {
|
|
11719
12020
|
readonly url?: string;
|
|
@@ -11975,6 +12276,8 @@ export type UserRoleUpdateRequest = {
|
|
|
11975
12276
|
expiration_time?: string | null;
|
|
11976
12277
|
};
|
|
11977
12278
|
export type UsernameGenerationPolicyEnum = 'service_provider' | 'anonymized' | 'full_name' | 'waldur_username' | 'freeipa' | 'identity_claim';
|
|
12279
|
+
export type ValidationDecisionEnum = 'approved' | 'rejected' | 'pending';
|
|
12280
|
+
export type ValidationMethodEnum = 'ariregister';
|
|
11978
12281
|
export type Version = {
|
|
11979
12282
|
/**
|
|
11980
12283
|
* Current installed version of the application
|
|
@@ -11985,6 +12288,10 @@ export type Version = {
|
|
|
11985
12288
|
*/
|
|
11986
12289
|
latest_version?: string;
|
|
11987
12290
|
};
|
|
12291
|
+
export type VersionAdoption = {
|
|
12292
|
+
readonly version: string;
|
|
12293
|
+
readonly users_count: number;
|
|
12294
|
+
};
|
|
11988
12295
|
export type VisibilityEnum = 'private' | 'public';
|
|
11989
12296
|
export type VisibleInvitationDetails = {
|
|
11990
12297
|
readonly scope_uuid: string;
|
|
@@ -12956,6 +13263,18 @@ export type PatchedServiceProviderRequestMultipart = {
|
|
|
12956
13263
|
enable_notifications?: boolean;
|
|
12957
13264
|
image?: (Blob | File) | null;
|
|
12958
13265
|
};
|
|
13266
|
+
export type OnboardingJustificationDocumentationRequestForm = {
|
|
13267
|
+
/**
|
|
13268
|
+
* Upload supporting documentation.
|
|
13269
|
+
*/
|
|
13270
|
+
file?: (Blob | File) | null;
|
|
13271
|
+
};
|
|
13272
|
+
export type OnboardingJustificationDocumentationRequestMultipart = {
|
|
13273
|
+
/**
|
|
13274
|
+
* Upload supporting documentation.
|
|
13275
|
+
*/
|
|
13276
|
+
file?: (Blob | File) | null;
|
|
13277
|
+
};
|
|
12959
13278
|
export type ConstanceSettingsRequestForm = {
|
|
12960
13279
|
SITE_NAME?: string;
|
|
12961
13280
|
SITE_DESCRIPTION?: string;
|
|
@@ -13087,11 +13406,17 @@ export type ConstanceSettingsRequestForm = {
|
|
|
13087
13406
|
OIDC_CLIENT_SECRET?: string;
|
|
13088
13407
|
OIDC_USER_FIELD?: string;
|
|
13089
13408
|
OIDC_CACHE_TIMEOUT?: number;
|
|
13409
|
+
OIDC_ACCESS_TOKEN_ENABLED?: boolean;
|
|
13090
13410
|
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
13091
13411
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
13092
13412
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
13093
13413
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
13094
13414
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
13415
|
+
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
13416
|
+
ONBOARDING_ARIREGISTER_BASE_URL?: string;
|
|
13417
|
+
ONBOARDING_ARIREGISTER_USERNAME?: string;
|
|
13418
|
+
ONBOARDING_ARIREGISTER_PASSWORD?: string;
|
|
13419
|
+
ONBOARDING_ARIREGISTER_TIMEOUT?: number;
|
|
13095
13420
|
};
|
|
13096
13421
|
export type ConstanceSettingsRequestMultipart = {
|
|
13097
13422
|
SITE_NAME?: string;
|
|
@@ -13224,11 +13549,17 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
13224
13549
|
OIDC_CLIENT_SECRET?: string;
|
|
13225
13550
|
OIDC_USER_FIELD?: string;
|
|
13226
13551
|
OIDC_CACHE_TIMEOUT?: number;
|
|
13552
|
+
OIDC_ACCESS_TOKEN_ENABLED?: boolean;
|
|
13227
13553
|
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
13228
13554
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
13229
13555
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
13230
13556
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
13231
13557
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
13558
|
+
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
13559
|
+
ONBOARDING_ARIREGISTER_BASE_URL?: string;
|
|
13560
|
+
ONBOARDING_ARIREGISTER_USERNAME?: string;
|
|
13561
|
+
ONBOARDING_ARIREGISTER_PASSWORD?: string;
|
|
13562
|
+
ONBOARDING_ARIREGISTER_TIMEOUT?: number;
|
|
13232
13563
|
};
|
|
13233
13564
|
export type PaymentRequestForm = {
|
|
13234
13565
|
profile: string;
|
|
@@ -16220,6 +16551,7 @@ export type BookingResourcesListData = {
|
|
|
16220
16551
|
page_size?: number;
|
|
16221
16552
|
parent_offering_uuid?: string;
|
|
16222
16553
|
paused?: boolean;
|
|
16554
|
+
plan_uuid?: string;
|
|
16223
16555
|
project_name?: string;
|
|
16224
16556
|
project_uuid?: string;
|
|
16225
16557
|
provider_uuid?: string;
|
|
@@ -16310,6 +16642,7 @@ export type BookingResourcesCountData = {
|
|
|
16310
16642
|
page_size?: number;
|
|
16311
16643
|
parent_offering_uuid?: string;
|
|
16312
16644
|
paused?: boolean;
|
|
16645
|
+
plan_uuid?: string;
|
|
16313
16646
|
project_name?: string;
|
|
16314
16647
|
project_uuid?: string;
|
|
16315
16648
|
provider_uuid?: string;
|
|
@@ -18100,7 +18433,7 @@ export type CustomersListData = {
|
|
|
18100
18433
|
archived?: boolean;
|
|
18101
18434
|
backend_id?: string;
|
|
18102
18435
|
contact_details?: string;
|
|
18103
|
-
field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
|
|
18436
|
+
field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
|
|
18104
18437
|
name?: string;
|
|
18105
18438
|
name_exact?: string;
|
|
18106
18439
|
native_name?: string;
|
|
@@ -18378,7 +18711,7 @@ export type CustomersRetrieveData = {
|
|
|
18378
18711
|
uuid: string;
|
|
18379
18712
|
};
|
|
18380
18713
|
query?: {
|
|
18381
|
-
field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
|
|
18714
|
+
field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
|
|
18382
18715
|
};
|
|
18383
18716
|
url: '/api/customers/{uuid}/';
|
|
18384
18717
|
};
|
|
@@ -26810,6 +27143,18 @@ export type MarketplaceProviderOfferingsSyncResponses = {
|
|
|
26810
27143
|
*/
|
|
26811
27144
|
200: unknown;
|
|
26812
27145
|
};
|
|
27146
|
+
export type MarketplaceProviderOfferingsTosStatsRetrieveData = {
|
|
27147
|
+
body?: never;
|
|
27148
|
+
path: {
|
|
27149
|
+
uuid: string;
|
|
27150
|
+
};
|
|
27151
|
+
query?: never;
|
|
27152
|
+
url: '/api/marketplace-provider-offerings/{uuid}/tos_stats/';
|
|
27153
|
+
};
|
|
27154
|
+
export type MarketplaceProviderOfferingsTosStatsRetrieveResponses = {
|
|
27155
|
+
200: ToSConsentDashboard;
|
|
27156
|
+
};
|
|
27157
|
+
export type MarketplaceProviderOfferingsTosStatsRetrieveResponse = MarketplaceProviderOfferingsTosStatsRetrieveResponses[keyof MarketplaceProviderOfferingsTosStatsRetrieveResponses];
|
|
26813
27158
|
export type MarketplaceProviderOfferingsUnpauseData = {
|
|
26814
27159
|
body?: never;
|
|
26815
27160
|
path: {
|
|
@@ -27274,6 +27619,7 @@ export type MarketplaceProviderResourcesListData = {
|
|
|
27274
27619
|
page_size?: number;
|
|
27275
27620
|
parent_offering_uuid?: string;
|
|
27276
27621
|
paused?: boolean;
|
|
27622
|
+
plan_uuid?: string;
|
|
27277
27623
|
project_name?: string;
|
|
27278
27624
|
project_uuid?: string;
|
|
27279
27625
|
provider_uuid?: string;
|
|
@@ -27363,6 +27709,7 @@ export type MarketplaceProviderResourcesCountData = {
|
|
|
27363
27709
|
page_size?: number;
|
|
27364
27710
|
parent_offering_uuid?: string;
|
|
27365
27711
|
paused?: boolean;
|
|
27712
|
+
plan_uuid?: string;
|
|
27366
27713
|
project_name?: string;
|
|
27367
27714
|
project_uuid?: string;
|
|
27368
27715
|
provider_uuid?: string;
|
|
@@ -27687,6 +28034,18 @@ export type MarketplaceProviderResourcesUnlinkResponses = {
|
|
|
27687
28034
|
*/
|
|
27688
28035
|
200: unknown;
|
|
27689
28036
|
};
|
|
28037
|
+
export type MarketplaceProviderResourcesUpdateOptionsData = {
|
|
28038
|
+
body?: ResourceOptionsRequest;
|
|
28039
|
+
path: {
|
|
28040
|
+
uuid: string;
|
|
28041
|
+
};
|
|
28042
|
+
query?: never;
|
|
28043
|
+
url: '/api/marketplace-provider-resources/{uuid}/update_options/';
|
|
28044
|
+
};
|
|
28045
|
+
export type MarketplaceProviderResourcesUpdateOptionsResponses = {
|
|
28046
|
+
200: ResourceResponseStatus;
|
|
28047
|
+
};
|
|
28048
|
+
export type MarketplaceProviderResourcesUpdateOptionsResponse = MarketplaceProviderResourcesUpdateOptionsResponses[keyof MarketplaceProviderResourcesUpdateOptionsResponses];
|
|
27690
28049
|
export type MarketplacePublicApiCheckSignatureData = {
|
|
27691
28050
|
body: ServiceProviderSignatureRequest;
|
|
27692
28051
|
path?: never;
|
|
@@ -28247,6 +28606,7 @@ export type MarketplaceResourcesListData = {
|
|
|
28247
28606
|
page_size?: number;
|
|
28248
28607
|
parent_offering_uuid?: string;
|
|
28249
28608
|
paused?: boolean;
|
|
28609
|
+
plan_uuid?: string;
|
|
28250
28610
|
project_name?: string;
|
|
28251
28611
|
project_uuid?: string;
|
|
28252
28612
|
provider_uuid?: string;
|
|
@@ -28336,6 +28696,7 @@ export type MarketplaceResourcesCountData = {
|
|
|
28336
28696
|
page_size?: number;
|
|
28337
28697
|
parent_offering_uuid?: string;
|
|
28338
28698
|
paused?: boolean;
|
|
28699
|
+
plan_uuid?: string;
|
|
28339
28700
|
project_name?: string;
|
|
28340
28701
|
project_uuid?: string;
|
|
28341
28702
|
provider_uuid?: string;
|
|
@@ -28492,6 +28853,18 @@ export type MarketplaceResourcesPullResponses = {
|
|
|
28492
28853
|
};
|
|
28493
28854
|
};
|
|
28494
28855
|
export type MarketplaceResourcesPullResponse = MarketplaceResourcesPullResponses[keyof MarketplaceResourcesPullResponses];
|
|
28856
|
+
export type MarketplaceResourcesRenewData = {
|
|
28857
|
+
body: ResourceRenewRequest;
|
|
28858
|
+
path: {
|
|
28859
|
+
uuid: string;
|
|
28860
|
+
};
|
|
28861
|
+
query?: never;
|
|
28862
|
+
url: '/api/marketplace-resources/{uuid}/renew/';
|
|
28863
|
+
};
|
|
28864
|
+
export type MarketplaceResourcesRenewResponses = {
|
|
28865
|
+
200: OrderUuid;
|
|
28866
|
+
};
|
|
28867
|
+
export type MarketplaceResourcesRenewResponse = MarketplaceResourcesRenewResponses[keyof MarketplaceResourcesRenewResponses];
|
|
28495
28868
|
export type MarketplaceResourcesSetEndDateByStaffData = {
|
|
28496
28869
|
body?: ResourceEndDateByProviderRequest;
|
|
28497
28870
|
path: {
|
|
@@ -29230,6 +29603,27 @@ export type MarketplaceServiceProvidersCreateResponses = {
|
|
|
29230
29603
|
201: ServiceProvider;
|
|
29231
29604
|
};
|
|
29232
29605
|
export type MarketplaceServiceProvidersCreateResponse = MarketplaceServiceProvidersCreateResponses[keyof MarketplaceServiceProvidersCreateResponses];
|
|
29606
|
+
export type ServiceProviderChecklistsSummaryData = {
|
|
29607
|
+
body?: never;
|
|
29608
|
+
path: {
|
|
29609
|
+
service_provider_uuid: string;
|
|
29610
|
+
};
|
|
29611
|
+
query?: {
|
|
29612
|
+
/**
|
|
29613
|
+
* A page number within the paginated result set.
|
|
29614
|
+
*/
|
|
29615
|
+
page?: number;
|
|
29616
|
+
/**
|
|
29617
|
+
* Number of results to return per page.
|
|
29618
|
+
*/
|
|
29619
|
+
page_size?: number;
|
|
29620
|
+
};
|
|
29621
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/compliance/checklists_summary/';
|
|
29622
|
+
};
|
|
29623
|
+
export type ServiceProviderChecklistsSummaryResponses = {
|
|
29624
|
+
200: Array<ServiceProviderChecklistSummary>;
|
|
29625
|
+
};
|
|
29626
|
+
export type ServiceProviderChecklistsSummaryResponse = ServiceProviderChecklistsSummaryResponses[keyof ServiceProviderChecklistsSummaryResponses];
|
|
29233
29627
|
export type ServiceProviderComplianceOverviewData = {
|
|
29234
29628
|
body?: never;
|
|
29235
29629
|
path: {
|
|
@@ -29691,7 +30085,7 @@ export type MarketplaceServiceProvidersProjectsListData = {
|
|
|
29691
30085
|
customer_name?: string;
|
|
29692
30086
|
customer_native_name?: string;
|
|
29693
30087
|
description?: string;
|
|
29694
|
-
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'start_date' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
30088
|
+
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' | 'image' | 'is_industry' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'start_date' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
29695
30089
|
/**
|
|
29696
30090
|
* Modified after
|
|
29697
30091
|
*/
|
|
@@ -31346,6 +31740,258 @@ export type NotificationMessagesEnableResponses = {
|
|
|
31346
31740
|
*/
|
|
31347
31741
|
200: unknown;
|
|
31348
31742
|
};
|
|
31743
|
+
export type OnboardingJustificationsListData = {
|
|
31744
|
+
body?: never;
|
|
31745
|
+
path?: never;
|
|
31746
|
+
query?: {
|
|
31747
|
+
/**
|
|
31748
|
+
* A page number within the paginated result set.
|
|
31749
|
+
*/
|
|
31750
|
+
page?: number;
|
|
31751
|
+
/**
|
|
31752
|
+
* Number of results to return per page.
|
|
31753
|
+
*/
|
|
31754
|
+
page_size?: number;
|
|
31755
|
+
};
|
|
31756
|
+
url: '/api/onboarding-justifications/';
|
|
31757
|
+
};
|
|
31758
|
+
export type OnboardingJustificationsListResponses = {
|
|
31759
|
+
200: Array<OnboardingJustification>;
|
|
31760
|
+
};
|
|
31761
|
+
export type OnboardingJustificationsListResponse = OnboardingJustificationsListResponses[keyof OnboardingJustificationsListResponses];
|
|
31762
|
+
export type OnboardingJustificationsCountData = {
|
|
31763
|
+
body?: never;
|
|
31764
|
+
path?: never;
|
|
31765
|
+
query?: {
|
|
31766
|
+
/**
|
|
31767
|
+
* A page number within the paginated result set.
|
|
31768
|
+
*/
|
|
31769
|
+
page?: number;
|
|
31770
|
+
/**
|
|
31771
|
+
* Number of results to return per page.
|
|
31772
|
+
*/
|
|
31773
|
+
page_size?: number;
|
|
31774
|
+
};
|
|
31775
|
+
url: '/api/onboarding-justifications/';
|
|
31776
|
+
};
|
|
31777
|
+
export type OnboardingJustificationsCountResponses = {
|
|
31778
|
+
/**
|
|
31779
|
+
* No response body
|
|
31780
|
+
*/
|
|
31781
|
+
200: unknown;
|
|
31782
|
+
};
|
|
31783
|
+
export type OnboardingJustificationsCreateData = {
|
|
31784
|
+
body: OnboardingJustificationRequest;
|
|
31785
|
+
path?: never;
|
|
31786
|
+
query?: never;
|
|
31787
|
+
url: '/api/onboarding-justifications/';
|
|
31788
|
+
};
|
|
31789
|
+
export type OnboardingJustificationsCreateResponses = {
|
|
31790
|
+
201: OnboardingJustification;
|
|
31791
|
+
};
|
|
31792
|
+
export type OnboardingJustificationsCreateResponse = OnboardingJustificationsCreateResponses[keyof OnboardingJustificationsCreateResponses];
|
|
31793
|
+
export type OnboardingJustificationsDestroyData = {
|
|
31794
|
+
body?: never;
|
|
31795
|
+
path: {
|
|
31796
|
+
uuid: string;
|
|
31797
|
+
};
|
|
31798
|
+
query?: never;
|
|
31799
|
+
url: '/api/onboarding-justifications/{uuid}/';
|
|
31800
|
+
};
|
|
31801
|
+
export type OnboardingJustificationsDestroyResponses = {
|
|
31802
|
+
/**
|
|
31803
|
+
* No response body
|
|
31804
|
+
*/
|
|
31805
|
+
204: void;
|
|
31806
|
+
};
|
|
31807
|
+
export type OnboardingJustificationsDestroyResponse = OnboardingJustificationsDestroyResponses[keyof OnboardingJustificationsDestroyResponses];
|
|
31808
|
+
export type OnboardingJustificationsRetrieveData = {
|
|
31809
|
+
body?: never;
|
|
31810
|
+
path: {
|
|
31811
|
+
uuid: string;
|
|
31812
|
+
};
|
|
31813
|
+
query?: never;
|
|
31814
|
+
url: '/api/onboarding-justifications/{uuid}/';
|
|
31815
|
+
};
|
|
31816
|
+
export type OnboardingJustificationsRetrieveResponses = {
|
|
31817
|
+
200: OnboardingJustification;
|
|
31818
|
+
};
|
|
31819
|
+
export type OnboardingJustificationsRetrieveResponse = OnboardingJustificationsRetrieveResponses[keyof OnboardingJustificationsRetrieveResponses];
|
|
31820
|
+
export type OnboardingJustificationsPartialUpdateData = {
|
|
31821
|
+
body?: PatchedOnboardingJustificationRequest;
|
|
31822
|
+
path: {
|
|
31823
|
+
uuid: string;
|
|
31824
|
+
};
|
|
31825
|
+
query?: never;
|
|
31826
|
+
url: '/api/onboarding-justifications/{uuid}/';
|
|
31827
|
+
};
|
|
31828
|
+
export type OnboardingJustificationsPartialUpdateResponses = {
|
|
31829
|
+
200: OnboardingJustification;
|
|
31830
|
+
};
|
|
31831
|
+
export type OnboardingJustificationsPartialUpdateResponse = OnboardingJustificationsPartialUpdateResponses[keyof OnboardingJustificationsPartialUpdateResponses];
|
|
31832
|
+
export type OnboardingJustificationsUpdateData = {
|
|
31833
|
+
body: OnboardingJustificationRequest;
|
|
31834
|
+
path: {
|
|
31835
|
+
uuid: string;
|
|
31836
|
+
};
|
|
31837
|
+
query?: never;
|
|
31838
|
+
url: '/api/onboarding-justifications/{uuid}/';
|
|
31839
|
+
};
|
|
31840
|
+
export type OnboardingJustificationsUpdateResponses = {
|
|
31841
|
+
200: OnboardingJustification;
|
|
31842
|
+
};
|
|
31843
|
+
export type OnboardingJustificationsUpdateResponse = OnboardingJustificationsUpdateResponses[keyof OnboardingJustificationsUpdateResponses];
|
|
31844
|
+
export type OnboardingJustificationsAttachDocumentData = {
|
|
31845
|
+
body?: OnboardingJustificationDocumentationRequest;
|
|
31846
|
+
path: {
|
|
31847
|
+
uuid: string;
|
|
31848
|
+
};
|
|
31849
|
+
query?: never;
|
|
31850
|
+
url: '/api/onboarding-justifications/{uuid}/attach_document/';
|
|
31851
|
+
};
|
|
31852
|
+
export type OnboardingJustificationsAttachDocumentResponses = {
|
|
31853
|
+
200: OnboardingJustificationDocumentation;
|
|
31854
|
+
};
|
|
31855
|
+
export type OnboardingJustificationsAttachDocumentResponse = OnboardingJustificationsAttachDocumentResponses[keyof OnboardingJustificationsAttachDocumentResponses];
|
|
31856
|
+
export type OnboardingJustificationsCreateJustificationData = {
|
|
31857
|
+
body: OnboardingJustificationCreateRequest;
|
|
31858
|
+
path?: never;
|
|
31859
|
+
query?: never;
|
|
31860
|
+
url: '/api/onboarding-justifications/create_justification/';
|
|
31861
|
+
};
|
|
31862
|
+
export type OnboardingJustificationsCreateJustificationResponses = {
|
|
31863
|
+
200: OnboardingJustification;
|
|
31864
|
+
};
|
|
31865
|
+
export type OnboardingJustificationsCreateJustificationResponse = OnboardingJustificationsCreateJustificationResponses[keyof OnboardingJustificationsCreateJustificationResponses];
|
|
31866
|
+
export type OnboardingVerificationsListData = {
|
|
31867
|
+
body?: never;
|
|
31868
|
+
path?: never;
|
|
31869
|
+
query?: {
|
|
31870
|
+
/**
|
|
31871
|
+
* A page number within the paginated result set.
|
|
31872
|
+
*/
|
|
31873
|
+
page?: number;
|
|
31874
|
+
/**
|
|
31875
|
+
* Number of results to return per page.
|
|
31876
|
+
*/
|
|
31877
|
+
page_size?: number;
|
|
31878
|
+
};
|
|
31879
|
+
url: '/api/onboarding-verifications/';
|
|
31880
|
+
};
|
|
31881
|
+
export type OnboardingVerificationsListResponses = {
|
|
31882
|
+
200: Array<OnboardingVerification>;
|
|
31883
|
+
};
|
|
31884
|
+
export type OnboardingVerificationsListResponse = OnboardingVerificationsListResponses[keyof OnboardingVerificationsListResponses];
|
|
31885
|
+
export type OnboardingVerificationsCountData = {
|
|
31886
|
+
body?: never;
|
|
31887
|
+
path?: never;
|
|
31888
|
+
query?: {
|
|
31889
|
+
/**
|
|
31890
|
+
* A page number within the paginated result set.
|
|
31891
|
+
*/
|
|
31892
|
+
page?: number;
|
|
31893
|
+
/**
|
|
31894
|
+
* Number of results to return per page.
|
|
31895
|
+
*/
|
|
31896
|
+
page_size?: number;
|
|
31897
|
+
};
|
|
31898
|
+
url: '/api/onboarding-verifications/';
|
|
31899
|
+
};
|
|
31900
|
+
export type OnboardingVerificationsCountResponses = {
|
|
31901
|
+
/**
|
|
31902
|
+
* No response body
|
|
31903
|
+
*/
|
|
31904
|
+
200: unknown;
|
|
31905
|
+
};
|
|
31906
|
+
export type OnboardingVerificationsCreateData = {
|
|
31907
|
+
body: OnboardingVerificationRequest;
|
|
31908
|
+
path?: never;
|
|
31909
|
+
query?: never;
|
|
31910
|
+
url: '/api/onboarding-verifications/';
|
|
31911
|
+
};
|
|
31912
|
+
export type OnboardingVerificationsCreateResponses = {
|
|
31913
|
+
201: OnboardingVerification;
|
|
31914
|
+
};
|
|
31915
|
+
export type OnboardingVerificationsCreateResponse = OnboardingVerificationsCreateResponses[keyof OnboardingVerificationsCreateResponses];
|
|
31916
|
+
export type OnboardingVerificationsDestroyData = {
|
|
31917
|
+
body?: never;
|
|
31918
|
+
path: {
|
|
31919
|
+
uuid: string;
|
|
31920
|
+
};
|
|
31921
|
+
query?: never;
|
|
31922
|
+
url: '/api/onboarding-verifications/{uuid}/';
|
|
31923
|
+
};
|
|
31924
|
+
export type OnboardingVerificationsDestroyResponses = {
|
|
31925
|
+
/**
|
|
31926
|
+
* No response body
|
|
31927
|
+
*/
|
|
31928
|
+
204: void;
|
|
31929
|
+
};
|
|
31930
|
+
export type OnboardingVerificationsDestroyResponse = OnboardingVerificationsDestroyResponses[keyof OnboardingVerificationsDestroyResponses];
|
|
31931
|
+
export type OnboardingVerificationsRetrieveData = {
|
|
31932
|
+
body?: never;
|
|
31933
|
+
path: {
|
|
31934
|
+
uuid: string;
|
|
31935
|
+
};
|
|
31936
|
+
query?: never;
|
|
31937
|
+
url: '/api/onboarding-verifications/{uuid}/';
|
|
31938
|
+
};
|
|
31939
|
+
export type OnboardingVerificationsRetrieveResponses = {
|
|
31940
|
+
200: OnboardingVerification;
|
|
31941
|
+
};
|
|
31942
|
+
export type OnboardingVerificationsRetrieveResponse = OnboardingVerificationsRetrieveResponses[keyof OnboardingVerificationsRetrieveResponses];
|
|
31943
|
+
export type OnboardingVerificationsPartialUpdateData = {
|
|
31944
|
+
body?: PatchedOnboardingVerificationRequest;
|
|
31945
|
+
path: {
|
|
31946
|
+
uuid: string;
|
|
31947
|
+
};
|
|
31948
|
+
query?: never;
|
|
31949
|
+
url: '/api/onboarding-verifications/{uuid}/';
|
|
31950
|
+
};
|
|
31951
|
+
export type OnboardingVerificationsPartialUpdateResponses = {
|
|
31952
|
+
200: OnboardingVerification;
|
|
31953
|
+
};
|
|
31954
|
+
export type OnboardingVerificationsPartialUpdateResponse = OnboardingVerificationsPartialUpdateResponses[keyof OnboardingVerificationsPartialUpdateResponses];
|
|
31955
|
+
export type OnboardingVerificationsUpdateData = {
|
|
31956
|
+
body: OnboardingVerificationRequest;
|
|
31957
|
+
path: {
|
|
31958
|
+
uuid: string;
|
|
31959
|
+
};
|
|
31960
|
+
query?: never;
|
|
31961
|
+
url: '/api/onboarding-verifications/{uuid}/';
|
|
31962
|
+
};
|
|
31963
|
+
export type OnboardingVerificationsUpdateResponses = {
|
|
31964
|
+
200: OnboardingVerification;
|
|
31965
|
+
};
|
|
31966
|
+
export type OnboardingVerificationsUpdateResponse = OnboardingVerificationsUpdateResponses[keyof OnboardingVerificationsUpdateResponses];
|
|
31967
|
+
export type OnboardingVerificationsCreateCustomerData = {
|
|
31968
|
+
body?: never;
|
|
31969
|
+
path: {
|
|
31970
|
+
uuid: string;
|
|
31971
|
+
};
|
|
31972
|
+
query?: never;
|
|
31973
|
+
url: '/api/onboarding-verifications/{uuid}/create_customer/';
|
|
31974
|
+
};
|
|
31975
|
+
export type OnboardingVerificationsCreateCustomerResponses = {
|
|
31976
|
+
201: Customer;
|
|
31977
|
+
};
|
|
31978
|
+
export type OnboardingVerificationsCreateCustomerResponse = OnboardingVerificationsCreateCustomerResponses[keyof OnboardingVerificationsCreateCustomerResponses];
|
|
31979
|
+
export type OnboardingVerificationsValidateCompanyData = {
|
|
31980
|
+
body: OnboardingCompanyValidationRequestRequest;
|
|
31981
|
+
path?: never;
|
|
31982
|
+
query?: never;
|
|
31983
|
+
url: '/api/onboarding-verifications/validate_company/';
|
|
31984
|
+
};
|
|
31985
|
+
export type OnboardingVerificationsValidateCompanyResponses = {
|
|
31986
|
+
200: OnboardingVerification;
|
|
31987
|
+
};
|
|
31988
|
+
export type OnboardingVerificationsValidateCompanyResponse = OnboardingVerificationsValidateCompanyResponses[keyof OnboardingVerificationsValidateCompanyResponses];
|
|
31989
|
+
export type OnboardingSupportedCountriesRetrieveData = {
|
|
31990
|
+
body?: never;
|
|
31991
|
+
path?: never;
|
|
31992
|
+
query?: never;
|
|
31993
|
+
url: '/api/onboarding/supported-countries/';
|
|
31994
|
+
};
|
|
31349
31995
|
export type OpenstackBackupsListData = {
|
|
31350
31996
|
body?: never;
|
|
31351
31997
|
path?: never;
|
|
@@ -32604,6 +33250,8 @@ export type OpenstackNetworkRbacPoliciesListData = {
|
|
|
32604
33250
|
policy_type?: 'access_as_external' | 'access_as_shared';
|
|
32605
33251
|
target_tenant?: string;
|
|
32606
33252
|
target_tenant_uuid?: string;
|
|
33253
|
+
tenant?: string;
|
|
33254
|
+
tenant_uuid?: string;
|
|
32607
33255
|
};
|
|
32608
33256
|
url: '/api/openstack-network-rbac-policies/';
|
|
32609
33257
|
};
|
|
@@ -32633,6 +33281,8 @@ export type OpenstackNetworkRbacPoliciesCountData = {
|
|
|
32633
33281
|
policy_type?: 'access_as_external' | 'access_as_shared';
|
|
32634
33282
|
target_tenant?: string;
|
|
32635
33283
|
target_tenant_uuid?: string;
|
|
33284
|
+
tenant?: string;
|
|
33285
|
+
tenant_uuid?: string;
|
|
32636
33286
|
};
|
|
32637
33287
|
url: '/api/openstack-network-rbac-policies/';
|
|
32638
33288
|
};
|
|
@@ -32642,6 +33292,31 @@ export type OpenstackNetworkRbacPoliciesCountResponses = {
|
|
|
32642
33292
|
*/
|
|
32643
33293
|
200: unknown;
|
|
32644
33294
|
};
|
|
33295
|
+
export type OpenstackNetworkRbacPoliciesCreateData = {
|
|
33296
|
+
body: NetworkRbacPolicyRequest;
|
|
33297
|
+
path?: never;
|
|
33298
|
+
query?: never;
|
|
33299
|
+
url: '/api/openstack-network-rbac-policies/';
|
|
33300
|
+
};
|
|
33301
|
+
export type OpenstackNetworkRbacPoliciesCreateResponses = {
|
|
33302
|
+
201: NetworkRbacPolicy;
|
|
33303
|
+
};
|
|
33304
|
+
export type OpenstackNetworkRbacPoliciesCreateResponse = OpenstackNetworkRbacPoliciesCreateResponses[keyof OpenstackNetworkRbacPoliciesCreateResponses];
|
|
33305
|
+
export type OpenstackNetworkRbacPoliciesDestroyData = {
|
|
33306
|
+
body?: never;
|
|
33307
|
+
path: {
|
|
33308
|
+
uuid: string;
|
|
33309
|
+
};
|
|
33310
|
+
query?: never;
|
|
33311
|
+
url: '/api/openstack-network-rbac-policies/{uuid}/';
|
|
33312
|
+
};
|
|
33313
|
+
export type OpenstackNetworkRbacPoliciesDestroyResponses = {
|
|
33314
|
+
/**
|
|
33315
|
+
* No response body
|
|
33316
|
+
*/
|
|
33317
|
+
204: void;
|
|
33318
|
+
};
|
|
33319
|
+
export type OpenstackNetworkRbacPoliciesDestroyResponse = OpenstackNetworkRbacPoliciesDestroyResponses[keyof OpenstackNetworkRbacPoliciesDestroyResponses];
|
|
32645
33320
|
export type OpenstackNetworkRbacPoliciesRetrieveData = {
|
|
32646
33321
|
body?: never;
|
|
32647
33322
|
path: {
|
|
@@ -32654,6 +33329,30 @@ export type OpenstackNetworkRbacPoliciesRetrieveResponses = {
|
|
|
32654
33329
|
200: NetworkRbacPolicy;
|
|
32655
33330
|
};
|
|
32656
33331
|
export type OpenstackNetworkRbacPoliciesRetrieveResponse = OpenstackNetworkRbacPoliciesRetrieveResponses[keyof OpenstackNetworkRbacPoliciesRetrieveResponses];
|
|
33332
|
+
export type OpenstackNetworkRbacPoliciesPartialUpdateData = {
|
|
33333
|
+
body?: PatchedNetworkRbacPolicyRequest;
|
|
33334
|
+
path: {
|
|
33335
|
+
uuid: string;
|
|
33336
|
+
};
|
|
33337
|
+
query?: never;
|
|
33338
|
+
url: '/api/openstack-network-rbac-policies/{uuid}/';
|
|
33339
|
+
};
|
|
33340
|
+
export type OpenstackNetworkRbacPoliciesPartialUpdateResponses = {
|
|
33341
|
+
200: NetworkRbacPolicy;
|
|
33342
|
+
};
|
|
33343
|
+
export type OpenstackNetworkRbacPoliciesPartialUpdateResponse = OpenstackNetworkRbacPoliciesPartialUpdateResponses[keyof OpenstackNetworkRbacPoliciesPartialUpdateResponses];
|
|
33344
|
+
export type OpenstackNetworkRbacPoliciesUpdateData = {
|
|
33345
|
+
body: NetworkRbacPolicyRequest;
|
|
33346
|
+
path: {
|
|
33347
|
+
uuid: string;
|
|
33348
|
+
};
|
|
33349
|
+
query?: never;
|
|
33350
|
+
url: '/api/openstack-network-rbac-policies/{uuid}/';
|
|
33351
|
+
};
|
|
33352
|
+
export type OpenstackNetworkRbacPoliciesUpdateResponses = {
|
|
33353
|
+
200: NetworkRbacPolicy;
|
|
33354
|
+
};
|
|
33355
|
+
export type OpenstackNetworkRbacPoliciesUpdateResponse = OpenstackNetworkRbacPoliciesUpdateResponses[keyof OpenstackNetworkRbacPoliciesUpdateResponses];
|
|
32657
33356
|
export type OpenstackNetworksListData = {
|
|
32658
33357
|
body?: never;
|
|
32659
33358
|
path?: never;
|
|
@@ -32853,7 +33552,7 @@ export type OpenstackNetworksPullResponses = {
|
|
|
32853
33552
|
200: unknown;
|
|
32854
33553
|
};
|
|
32855
33554
|
export type OpenstackNetworksRbacPolicyCreateData = {
|
|
32856
|
-
body:
|
|
33555
|
+
body: DeprecatedNetworkRbacPolicyRequest;
|
|
32857
33556
|
path: {
|
|
32858
33557
|
uuid: string;
|
|
32859
33558
|
};
|
|
@@ -32861,7 +33560,7 @@ export type OpenstackNetworksRbacPolicyCreateData = {
|
|
|
32861
33560
|
url: '/api/openstack-networks/{uuid}/rbac_policy_create/';
|
|
32862
33561
|
};
|
|
32863
33562
|
export type OpenstackNetworksRbacPolicyCreateResponses = {
|
|
32864
|
-
200:
|
|
33563
|
+
200: DeprecatedNetworkRbacPolicy;
|
|
32865
33564
|
};
|
|
32866
33565
|
export type OpenstackNetworksRbacPolicyCreateResponse = OpenstackNetworksRbacPolicyCreateResponses[keyof OpenstackNetworksRbacPolicyCreateResponses];
|
|
32867
33566
|
export type OpenstackNetworksRbacPolicyDeleteDestroyData = {
|
|
@@ -35648,7 +36347,7 @@ export type ProjectsListData = {
|
|
|
35648
36347
|
customer_name?: string;
|
|
35649
36348
|
customer_native_name?: string;
|
|
35650
36349
|
description?: string;
|
|
35651
|
-
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'start_date' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
36350
|
+
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' | 'image' | 'is_industry' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'start_date' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
35652
36351
|
/**
|
|
35653
36352
|
* Modified after
|
|
35654
36353
|
*/
|
|
@@ -35833,7 +36532,7 @@ export type ProjectsRetrieveData = {
|
|
|
35833
36532
|
uuid: string;
|
|
35834
36533
|
};
|
|
35835
36534
|
query?: {
|
|
35836
|
-
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'start_date' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
36535
|
+
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' | 'image' | 'is_industry' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'start_date' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
35837
36536
|
};
|
|
35838
36537
|
url: '/api/projects/{uuid}/';
|
|
35839
36538
|
};
|
|
@@ -37030,6 +37729,10 @@ export type ProposalProtectedCallsOfferingsListData = {
|
|
|
37030
37729
|
* Number of results to return per page.
|
|
37031
37730
|
*/
|
|
37032
37731
|
page_size?: number;
|
|
37732
|
+
/**
|
|
37733
|
+
* Filter by state
|
|
37734
|
+
*/
|
|
37735
|
+
state?: string;
|
|
37033
37736
|
};
|
|
37034
37737
|
url: '/api/proposal-protected-calls/{uuid}/offerings/';
|
|
37035
37738
|
};
|