waldur-js-client 7.8.3-dev.1 → 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 +715 -16
- 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 = {
|
|
@@ -1757,6 +1757,11 @@ export type ConstanceSettings = {
|
|
|
1757
1757
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
1758
1758
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
1759
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;
|
|
1760
1765
|
};
|
|
1761
1766
|
export type ConstanceSettingsRequest = {
|
|
1762
1767
|
SITE_NAME?: string;
|
|
@@ -1895,6 +1900,11 @@ export type ConstanceSettingsRequest = {
|
|
|
1895
1900
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
1896
1901
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
1897
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;
|
|
1898
1908
|
};
|
|
1899
1909
|
export type ContainerFormatEnum = 'bare' | 'ovf' | 'aki' | 'ami' | 'ari';
|
|
1900
1910
|
export type CoreAuthToken = {
|
|
@@ -2062,6 +2072,7 @@ export type Customer = {
|
|
|
2062
2072
|
image?: string | null;
|
|
2063
2073
|
readonly blocked?: boolean;
|
|
2064
2074
|
readonly archived?: boolean;
|
|
2075
|
+
readonly display_billing_info_in_projects?: boolean;
|
|
2065
2076
|
readonly default_tax_percent?: string;
|
|
2066
2077
|
/**
|
|
2067
2078
|
* Start date of accounting
|
|
@@ -2336,6 +2347,27 @@ export type DeleteAttachmentsRequest = {
|
|
|
2336
2347
|
};
|
|
2337
2348
|
export type DependencyLogicOperatorEnum = 'and' | 'or';
|
|
2338
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
|
+
};
|
|
2339
2371
|
export type DetailState = {
|
|
2340
2372
|
readonly detail: string;
|
|
2341
2373
|
readonly state: string;
|
|
@@ -2571,7 +2603,7 @@ export type EventSubscriptionRequest = {
|
|
|
2571
2603
|
description?: string;
|
|
2572
2604
|
observable_objects?: unknown;
|
|
2573
2605
|
};
|
|
2574
|
-
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' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked';
|
|
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';
|
|
2575
2607
|
export type ExecutionStateEnum = 'Scheduled' | 'Processing' | 'OK' | 'Erred';
|
|
2576
2608
|
export type ExternalLink = {
|
|
2577
2609
|
readonly url: string;
|
|
@@ -3846,6 +3878,14 @@ export type MergedPluginOptions = {
|
|
|
3846
3878
|
* GLAuth homedir prefix
|
|
3847
3879
|
*/
|
|
3848
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;
|
|
3849
3889
|
/**
|
|
3850
3890
|
* GLAuth initial primary group number
|
|
3851
3891
|
*/
|
|
@@ -4008,6 +4048,14 @@ export type MergedPluginOptionsRequest = {
|
|
|
4008
4048
|
* GLAuth homedir prefix
|
|
4009
4049
|
*/
|
|
4010
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;
|
|
4011
4059
|
/**
|
|
4012
4060
|
* GLAuth initial primary group number
|
|
4013
4061
|
*/
|
|
@@ -4653,7 +4701,7 @@ export type NestedRound = {
|
|
|
4653
4701
|
readonly name?: string;
|
|
4654
4702
|
start_time?: string;
|
|
4655
4703
|
cutoff_time?: string;
|
|
4656
|
-
status?:
|
|
4704
|
+
status?: RoundStatus;
|
|
4657
4705
|
review_strategy?: ReviewStrategyEnum;
|
|
4658
4706
|
deciding_entity?: DecidingEntityEnum;
|
|
4659
4707
|
allocation_time?: AllocationTimeEnum;
|
|
@@ -4764,7 +4812,7 @@ export type NestedSecurityGroupRuleRequest = {
|
|
|
4764
4812
|
export type NetworkRbacPolicy = {
|
|
4765
4813
|
readonly url?: string;
|
|
4766
4814
|
readonly uuid?: string;
|
|
4767
|
-
|
|
4815
|
+
network?: string;
|
|
4768
4816
|
readonly network_name?: string;
|
|
4769
4817
|
target_tenant?: string;
|
|
4770
4818
|
readonly target_tenant_name?: string;
|
|
@@ -4776,6 +4824,7 @@ export type NetworkRbacPolicy = {
|
|
|
4776
4824
|
readonly created?: string;
|
|
4777
4825
|
};
|
|
4778
4826
|
export type NetworkRbacPolicyRequest = {
|
|
4827
|
+
network: string;
|
|
4779
4828
|
target_tenant: string;
|
|
4780
4829
|
/**
|
|
4781
4830
|
* Type of access granted - either shared access or external network access
|
|
@@ -4796,9 +4845,9 @@ export type Notification = {
|
|
|
4796
4845
|
readonly templates: Array<NotificationTemplateDetailSerializers>;
|
|
4797
4846
|
/**
|
|
4798
4847
|
* Finds the notification definition in the global NOTIFICATIONS
|
|
4799
|
-
* dictionary and returns its 'context'
|
|
4848
|
+
* dictionary and returns its 'context' schema.
|
|
4800
4849
|
*/
|
|
4801
|
-
readonly
|
|
4850
|
+
readonly context_schema: {
|
|
4802
4851
|
[key: string]: unknown;
|
|
4803
4852
|
};
|
|
4804
4853
|
};
|
|
@@ -4814,7 +4863,7 @@ export type NotificationTemplateDetailSerializers = {
|
|
|
4814
4863
|
*/
|
|
4815
4864
|
path: string;
|
|
4816
4865
|
name: string;
|
|
4817
|
-
readonly content: string;
|
|
4866
|
+
readonly content: string | null;
|
|
4818
4867
|
readonly original_content: string | null;
|
|
4819
4868
|
readonly is_content_overridden: boolean;
|
|
4820
4869
|
};
|
|
@@ -4949,6 +4998,10 @@ export type OfferingComponent = {
|
|
|
4949
4998
|
default_limit?: number | null;
|
|
4950
4999
|
readonly factor?: number | null;
|
|
4951
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;
|
|
4952
5005
|
};
|
|
4953
5006
|
export type OfferingComponentLimit = {
|
|
4954
5007
|
min: number;
|
|
@@ -4987,6 +5040,10 @@ export type OfferingComponentRequest = {
|
|
|
4987
5040
|
max_available_limit?: number | null;
|
|
4988
5041
|
is_boolean?: boolean;
|
|
4989
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;
|
|
4990
5047
|
};
|
|
4991
5048
|
export type OfferingComponentStat = {
|
|
4992
5049
|
readonly period: string;
|
|
@@ -5448,6 +5505,160 @@ export type OfferingUserStateTransitionRequest = {
|
|
|
5448
5505
|
export type OfferingUserUpdateRestrictionRequest = {
|
|
5449
5506
|
is_restricted: boolean;
|
|
5450
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';
|
|
5451
5662
|
export type OpenStackAllowedAddressPair = {
|
|
5452
5663
|
mac_address?: string;
|
|
5453
5664
|
};
|
|
@@ -5613,6 +5824,10 @@ export type OpenStackBackupRestorationRequest = {
|
|
|
5613
5824
|
};
|
|
5614
5825
|
export type OpenStackCreateFloatingIpRequest = {
|
|
5615
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;
|
|
5616
5831
|
subnet: string;
|
|
5617
5832
|
};
|
|
5618
5833
|
export type OpenStackCreatePortRequest = {
|
|
@@ -7656,6 +7871,14 @@ export type PatchedMigrationDetailsRequest = {
|
|
|
7656
7871
|
error_message?: string;
|
|
7657
7872
|
error_traceback?: string;
|
|
7658
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
|
+
};
|
|
7659
7882
|
export type PatchedNotificationRequest = {
|
|
7660
7883
|
key?: string;
|
|
7661
7884
|
description?: string;
|
|
@@ -7717,6 +7940,40 @@ export type PatchedOfferingUserServiceProviderCommentRequest = {
|
|
|
7717
7940
|
*/
|
|
7718
7941
|
service_provider_comment_url?: string;
|
|
7719
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
|
+
};
|
|
7720
7977
|
export type PatchedOpenStackBackupRequest = {
|
|
7721
7978
|
name?: string;
|
|
7722
7979
|
description?: string;
|
|
@@ -7823,6 +8080,7 @@ export type PatchedProjectCreditRequest = {
|
|
|
7823
8080
|
minimal_consumption_logic?: MinimalConsumptionLogicEnum;
|
|
7824
8081
|
grace_coefficient?: string;
|
|
7825
8082
|
apply_as_minimal_consumption?: boolean;
|
|
8083
|
+
mark_unused_credit_as_spent_on_project_termination?: boolean;
|
|
7826
8084
|
};
|
|
7827
8085
|
export type PatchedProjectEstimatedCostPolicyRequest = {
|
|
7828
8086
|
scope?: string;
|
|
@@ -8478,6 +8736,7 @@ export type Project = {
|
|
|
8478
8736
|
readonly customer_native_name?: string;
|
|
8479
8737
|
readonly customer_abbreviation?: string;
|
|
8480
8738
|
description?: string;
|
|
8739
|
+
readonly customer_display_billing_info_in_projects?: boolean;
|
|
8481
8740
|
readonly created?: string;
|
|
8482
8741
|
/**
|
|
8483
8742
|
* Project type
|
|
@@ -8560,6 +8819,7 @@ export type ProjectCredit = {
|
|
|
8560
8819
|
minimal_consumption_logic?: MinimalConsumptionLogicEnum;
|
|
8561
8820
|
grace_coefficient?: string;
|
|
8562
8821
|
apply_as_minimal_consumption?: boolean;
|
|
8822
|
+
mark_unused_credit_as_spent_on_project_termination?: boolean;
|
|
8563
8823
|
};
|
|
8564
8824
|
export type ProjectCreditRequest = {
|
|
8565
8825
|
value?: string;
|
|
@@ -8569,6 +8829,7 @@ export type ProjectCreditRequest = {
|
|
|
8569
8829
|
minimal_consumption_logic?: MinimalConsumptionLogicEnum;
|
|
8570
8830
|
grace_coefficient?: string;
|
|
8571
8831
|
apply_as_minimal_consumption?: boolean;
|
|
8832
|
+
mark_unused_credit_as_spent_on_project_termination?: boolean;
|
|
8572
8833
|
};
|
|
8573
8834
|
export type ProjectDetail = {
|
|
8574
8835
|
readonly project_uuid: string;
|
|
@@ -9015,7 +9276,7 @@ export type ProtectedRound = {
|
|
|
9015
9276
|
readonly name: string;
|
|
9016
9277
|
start_time: string;
|
|
9017
9278
|
cutoff_time: string;
|
|
9018
|
-
status:
|
|
9279
|
+
status: RoundStatus;
|
|
9019
9280
|
review_strategy?: ReviewStrategyEnum;
|
|
9020
9281
|
deciding_entity?: DecidingEntityEnum;
|
|
9021
9282
|
allocation_time?: AllocationTimeEnum;
|
|
@@ -10795,6 +11056,18 @@ export type ResourcePlanPeriod = {
|
|
|
10795
11056
|
end?: string | null;
|
|
10796
11057
|
components: Array<BaseComponentUsage>;
|
|
10797
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
|
+
};
|
|
10798
11071
|
export type ResourceReportRequest = {
|
|
10799
11072
|
report: Array<ReportSectionRequest>;
|
|
10800
11073
|
};
|
|
@@ -11268,6 +11541,7 @@ export type RoundReviewer = {
|
|
|
11268
11541
|
rejected_proposals: number;
|
|
11269
11542
|
in_review_proposals: number;
|
|
11270
11543
|
};
|
|
11544
|
+
export type RoundStatus = 'scheduled' | 'open' | 'ended';
|
|
11271
11545
|
export type Rule = {
|
|
11272
11546
|
name: string;
|
|
11273
11547
|
readonly uuid: string;
|
|
@@ -11396,6 +11670,13 @@ export type ServiceProvider = {
|
|
|
11396
11670
|
export type ServiceProviderApiSecretCode = {
|
|
11397
11671
|
readonly api_secret_code: string;
|
|
11398
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
|
+
};
|
|
11399
11680
|
export type ServiceProviderComplianceOverview = {
|
|
11400
11681
|
readonly offering_uuid: string;
|
|
11401
11682
|
readonly offering_name: string;
|
|
@@ -11598,7 +11879,6 @@ export type StateTransitionError = {
|
|
|
11598
11879
|
*/
|
|
11599
11880
|
detail: string;
|
|
11600
11881
|
};
|
|
11601
|
-
export type StatusEnum = 'scheduled' | 'open' | 'ended';
|
|
11602
11882
|
export type StorageModeEnum = 'fixed' | 'dynamic';
|
|
11603
11883
|
export type SubNetMapping = {
|
|
11604
11884
|
src_cidr: string;
|
|
@@ -11681,6 +11961,21 @@ export type Tenant = {
|
|
|
11681
11961
|
readonly uuid: string;
|
|
11682
11962
|
name: string;
|
|
11683
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
|
+
};
|
|
11684
11979
|
export type TokenRequest = {
|
|
11685
11980
|
token: string;
|
|
11686
11981
|
};
|
|
@@ -11716,6 +12011,10 @@ export type UpdateOfferingComponentRequest = {
|
|
|
11716
12011
|
max_available_limit?: number | null;
|
|
11717
12012
|
is_boolean?: boolean;
|
|
11718
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;
|
|
11719
12018
|
};
|
|
11720
12019
|
export type User = {
|
|
11721
12020
|
readonly url?: string;
|
|
@@ -11977,6 +12276,8 @@ export type UserRoleUpdateRequest = {
|
|
|
11977
12276
|
expiration_time?: string | null;
|
|
11978
12277
|
};
|
|
11979
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';
|
|
11980
12281
|
export type Version = {
|
|
11981
12282
|
/**
|
|
11982
12283
|
* Current installed version of the application
|
|
@@ -11987,6 +12288,10 @@ export type Version = {
|
|
|
11987
12288
|
*/
|
|
11988
12289
|
latest_version?: string;
|
|
11989
12290
|
};
|
|
12291
|
+
export type VersionAdoption = {
|
|
12292
|
+
readonly version: string;
|
|
12293
|
+
readonly users_count: number;
|
|
12294
|
+
};
|
|
11990
12295
|
export type VisibilityEnum = 'private' | 'public';
|
|
11991
12296
|
export type VisibleInvitationDetails = {
|
|
11992
12297
|
readonly scope_uuid: string;
|
|
@@ -12958,6 +13263,18 @@ export type PatchedServiceProviderRequestMultipart = {
|
|
|
12958
13263
|
enable_notifications?: boolean;
|
|
12959
13264
|
image?: (Blob | File) | null;
|
|
12960
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
|
+
};
|
|
12961
13278
|
export type ConstanceSettingsRequestForm = {
|
|
12962
13279
|
SITE_NAME?: string;
|
|
12963
13280
|
SITE_DESCRIPTION?: string;
|
|
@@ -13095,6 +13412,11 @@ export type ConstanceSettingsRequestForm = {
|
|
|
13095
13412
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
13096
13413
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
13097
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;
|
|
13098
13420
|
};
|
|
13099
13421
|
export type ConstanceSettingsRequestMultipart = {
|
|
13100
13422
|
SITE_NAME?: string;
|
|
@@ -13233,6 +13555,11 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
13233
13555
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
13234
13556
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
13235
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;
|
|
13236
13563
|
};
|
|
13237
13564
|
export type PaymentRequestForm = {
|
|
13238
13565
|
profile: string;
|
|
@@ -16224,6 +16551,7 @@ export type BookingResourcesListData = {
|
|
|
16224
16551
|
page_size?: number;
|
|
16225
16552
|
parent_offering_uuid?: string;
|
|
16226
16553
|
paused?: boolean;
|
|
16554
|
+
plan_uuid?: string;
|
|
16227
16555
|
project_name?: string;
|
|
16228
16556
|
project_uuid?: string;
|
|
16229
16557
|
provider_uuid?: string;
|
|
@@ -16314,6 +16642,7 @@ export type BookingResourcesCountData = {
|
|
|
16314
16642
|
page_size?: number;
|
|
16315
16643
|
parent_offering_uuid?: string;
|
|
16316
16644
|
paused?: boolean;
|
|
16645
|
+
plan_uuid?: string;
|
|
16317
16646
|
project_name?: string;
|
|
16318
16647
|
project_uuid?: string;
|
|
16319
16648
|
provider_uuid?: string;
|
|
@@ -18104,7 +18433,7 @@ export type CustomersListData = {
|
|
|
18104
18433
|
archived?: boolean;
|
|
18105
18434
|
backend_id?: string;
|
|
18106
18435
|
contact_details?: string;
|
|
18107
|
-
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'>;
|
|
18108
18437
|
name?: string;
|
|
18109
18438
|
name_exact?: string;
|
|
18110
18439
|
native_name?: string;
|
|
@@ -18382,7 +18711,7 @@ export type CustomersRetrieveData = {
|
|
|
18382
18711
|
uuid: string;
|
|
18383
18712
|
};
|
|
18384
18713
|
query?: {
|
|
18385
|
-
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'>;
|
|
18386
18715
|
};
|
|
18387
18716
|
url: '/api/customers/{uuid}/';
|
|
18388
18717
|
};
|
|
@@ -26814,6 +27143,18 @@ export type MarketplaceProviderOfferingsSyncResponses = {
|
|
|
26814
27143
|
*/
|
|
26815
27144
|
200: unknown;
|
|
26816
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];
|
|
26817
27158
|
export type MarketplaceProviderOfferingsUnpauseData = {
|
|
26818
27159
|
body?: never;
|
|
26819
27160
|
path: {
|
|
@@ -27278,6 +27619,7 @@ export type MarketplaceProviderResourcesListData = {
|
|
|
27278
27619
|
page_size?: number;
|
|
27279
27620
|
parent_offering_uuid?: string;
|
|
27280
27621
|
paused?: boolean;
|
|
27622
|
+
plan_uuid?: string;
|
|
27281
27623
|
project_name?: string;
|
|
27282
27624
|
project_uuid?: string;
|
|
27283
27625
|
provider_uuid?: string;
|
|
@@ -27367,6 +27709,7 @@ export type MarketplaceProviderResourcesCountData = {
|
|
|
27367
27709
|
page_size?: number;
|
|
27368
27710
|
parent_offering_uuid?: string;
|
|
27369
27711
|
paused?: boolean;
|
|
27712
|
+
plan_uuid?: string;
|
|
27370
27713
|
project_name?: string;
|
|
27371
27714
|
project_uuid?: string;
|
|
27372
27715
|
provider_uuid?: string;
|
|
@@ -27691,6 +28034,18 @@ export type MarketplaceProviderResourcesUnlinkResponses = {
|
|
|
27691
28034
|
*/
|
|
27692
28035
|
200: unknown;
|
|
27693
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];
|
|
27694
28049
|
export type MarketplacePublicApiCheckSignatureData = {
|
|
27695
28050
|
body: ServiceProviderSignatureRequest;
|
|
27696
28051
|
path?: never;
|
|
@@ -28251,6 +28606,7 @@ export type MarketplaceResourcesListData = {
|
|
|
28251
28606
|
page_size?: number;
|
|
28252
28607
|
parent_offering_uuid?: string;
|
|
28253
28608
|
paused?: boolean;
|
|
28609
|
+
plan_uuid?: string;
|
|
28254
28610
|
project_name?: string;
|
|
28255
28611
|
project_uuid?: string;
|
|
28256
28612
|
provider_uuid?: string;
|
|
@@ -28340,6 +28696,7 @@ export type MarketplaceResourcesCountData = {
|
|
|
28340
28696
|
page_size?: number;
|
|
28341
28697
|
parent_offering_uuid?: string;
|
|
28342
28698
|
paused?: boolean;
|
|
28699
|
+
plan_uuid?: string;
|
|
28343
28700
|
project_name?: string;
|
|
28344
28701
|
project_uuid?: string;
|
|
28345
28702
|
provider_uuid?: string;
|
|
@@ -28496,6 +28853,18 @@ export type MarketplaceResourcesPullResponses = {
|
|
|
28496
28853
|
};
|
|
28497
28854
|
};
|
|
28498
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];
|
|
28499
28868
|
export type MarketplaceResourcesSetEndDateByStaffData = {
|
|
28500
28869
|
body?: ResourceEndDateByProviderRequest;
|
|
28501
28870
|
path: {
|
|
@@ -29234,6 +29603,27 @@ export type MarketplaceServiceProvidersCreateResponses = {
|
|
|
29234
29603
|
201: ServiceProvider;
|
|
29235
29604
|
};
|
|
29236
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];
|
|
29237
29627
|
export type ServiceProviderComplianceOverviewData = {
|
|
29238
29628
|
body?: never;
|
|
29239
29629
|
path: {
|
|
@@ -29695,7 +30085,7 @@ export type MarketplaceServiceProvidersProjectsListData = {
|
|
|
29695
30085
|
customer_name?: string;
|
|
29696
30086
|
customer_native_name?: string;
|
|
29697
30087
|
description?: string;
|
|
29698
|
-
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'>;
|
|
29699
30089
|
/**
|
|
29700
30090
|
* Modified after
|
|
29701
30091
|
*/
|
|
@@ -31350,6 +31740,258 @@ export type NotificationMessagesEnableResponses = {
|
|
|
31350
31740
|
*/
|
|
31351
31741
|
200: unknown;
|
|
31352
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
|
+
};
|
|
31353
31995
|
export type OpenstackBackupsListData = {
|
|
31354
31996
|
body?: never;
|
|
31355
31997
|
path?: never;
|
|
@@ -32608,6 +33250,8 @@ export type OpenstackNetworkRbacPoliciesListData = {
|
|
|
32608
33250
|
policy_type?: 'access_as_external' | 'access_as_shared';
|
|
32609
33251
|
target_tenant?: string;
|
|
32610
33252
|
target_tenant_uuid?: string;
|
|
33253
|
+
tenant?: string;
|
|
33254
|
+
tenant_uuid?: string;
|
|
32611
33255
|
};
|
|
32612
33256
|
url: '/api/openstack-network-rbac-policies/';
|
|
32613
33257
|
};
|
|
@@ -32637,6 +33281,8 @@ export type OpenstackNetworkRbacPoliciesCountData = {
|
|
|
32637
33281
|
policy_type?: 'access_as_external' | 'access_as_shared';
|
|
32638
33282
|
target_tenant?: string;
|
|
32639
33283
|
target_tenant_uuid?: string;
|
|
33284
|
+
tenant?: string;
|
|
33285
|
+
tenant_uuid?: string;
|
|
32640
33286
|
};
|
|
32641
33287
|
url: '/api/openstack-network-rbac-policies/';
|
|
32642
33288
|
};
|
|
@@ -32646,6 +33292,31 @@ export type OpenstackNetworkRbacPoliciesCountResponses = {
|
|
|
32646
33292
|
*/
|
|
32647
33293
|
200: unknown;
|
|
32648
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];
|
|
32649
33320
|
export type OpenstackNetworkRbacPoliciesRetrieveData = {
|
|
32650
33321
|
body?: never;
|
|
32651
33322
|
path: {
|
|
@@ -32658,6 +33329,30 @@ export type OpenstackNetworkRbacPoliciesRetrieveResponses = {
|
|
|
32658
33329
|
200: NetworkRbacPolicy;
|
|
32659
33330
|
};
|
|
32660
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];
|
|
32661
33356
|
export type OpenstackNetworksListData = {
|
|
32662
33357
|
body?: never;
|
|
32663
33358
|
path?: never;
|
|
@@ -32857,7 +33552,7 @@ export type OpenstackNetworksPullResponses = {
|
|
|
32857
33552
|
200: unknown;
|
|
32858
33553
|
};
|
|
32859
33554
|
export type OpenstackNetworksRbacPolicyCreateData = {
|
|
32860
|
-
body:
|
|
33555
|
+
body: DeprecatedNetworkRbacPolicyRequest;
|
|
32861
33556
|
path: {
|
|
32862
33557
|
uuid: string;
|
|
32863
33558
|
};
|
|
@@ -32865,7 +33560,7 @@ export type OpenstackNetworksRbacPolicyCreateData = {
|
|
|
32865
33560
|
url: '/api/openstack-networks/{uuid}/rbac_policy_create/';
|
|
32866
33561
|
};
|
|
32867
33562
|
export type OpenstackNetworksRbacPolicyCreateResponses = {
|
|
32868
|
-
200:
|
|
33563
|
+
200: DeprecatedNetworkRbacPolicy;
|
|
32869
33564
|
};
|
|
32870
33565
|
export type OpenstackNetworksRbacPolicyCreateResponse = OpenstackNetworksRbacPolicyCreateResponses[keyof OpenstackNetworksRbacPolicyCreateResponses];
|
|
32871
33566
|
export type OpenstackNetworksRbacPolicyDeleteDestroyData = {
|
|
@@ -35652,7 +36347,7 @@ export type ProjectsListData = {
|
|
|
35652
36347
|
customer_name?: string;
|
|
35653
36348
|
customer_native_name?: string;
|
|
35654
36349
|
description?: string;
|
|
35655
|
-
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'>;
|
|
35656
36351
|
/**
|
|
35657
36352
|
* Modified after
|
|
35658
36353
|
*/
|
|
@@ -35837,7 +36532,7 @@ export type ProjectsRetrieveData = {
|
|
|
35837
36532
|
uuid: string;
|
|
35838
36533
|
};
|
|
35839
36534
|
query?: {
|
|
35840
|
-
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'>;
|
|
35841
36536
|
};
|
|
35842
36537
|
url: '/api/projects/{uuid}/';
|
|
35843
36538
|
};
|
|
@@ -37034,6 +37729,10 @@ export type ProposalProtectedCallsOfferingsListData = {
|
|
|
37034
37729
|
* Number of results to return per page.
|
|
37035
37730
|
*/
|
|
37036
37731
|
page_size?: number;
|
|
37732
|
+
/**
|
|
37733
|
+
* Filter by state
|
|
37734
|
+
*/
|
|
37735
|
+
state?: string;
|
|
37037
37736
|
};
|
|
37038
37737
|
url: '/api/proposal-protected-calls/{uuid}/offerings/';
|
|
37039
37738
|
};
|