waldur-js-client 7.8.3-dev.1 → 7.8.3-dev.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/sdk.gen.d.ts +97 -1
- package/dist/sdk.gen.js +745 -98
- package/dist/types.gen.d.ts +820 -37
- 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 = {
|
|
@@ -1439,6 +1439,13 @@ export type ChecklistReviewerResponse = {
|
|
|
1439
1439
|
completion: ChecklistCompletionReviewer;
|
|
1440
1440
|
questions: Array<QuestionWithAnswerReviewer>;
|
|
1441
1441
|
};
|
|
1442
|
+
export type ChecklistTemplate = {
|
|
1443
|
+
readonly checklist: {
|
|
1444
|
+
[key: string]: unknown;
|
|
1445
|
+
};
|
|
1446
|
+
questions: Array<Question>;
|
|
1447
|
+
initial_visible_questions: Array<Question>;
|
|
1448
|
+
};
|
|
1442
1449
|
export type ChecklistTypeEnum = 'project_compliance' | 'proposal_compliance' | 'offering_compliance' | 'project_metadata';
|
|
1443
1450
|
export type ClusterSecurityGroup = {
|
|
1444
1451
|
readonly uuid: string;
|
|
@@ -1757,6 +1764,11 @@ export type ConstanceSettings = {
|
|
|
1757
1764
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
1758
1765
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
1759
1766
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
1767
|
+
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
1768
|
+
ONBOARDING_ARIREGISTER_BASE_URL?: string;
|
|
1769
|
+
ONBOARDING_ARIREGISTER_USERNAME?: string;
|
|
1770
|
+
ONBOARDING_ARIREGISTER_PASSWORD?: string;
|
|
1771
|
+
ONBOARDING_ARIREGISTER_TIMEOUT?: number;
|
|
1760
1772
|
};
|
|
1761
1773
|
export type ConstanceSettingsRequest = {
|
|
1762
1774
|
SITE_NAME?: string;
|
|
@@ -1895,6 +1907,11 @@ export type ConstanceSettingsRequest = {
|
|
|
1895
1907
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
1896
1908
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
1897
1909
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
1910
|
+
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
1911
|
+
ONBOARDING_ARIREGISTER_BASE_URL?: string;
|
|
1912
|
+
ONBOARDING_ARIREGISTER_USERNAME?: string;
|
|
1913
|
+
ONBOARDING_ARIREGISTER_PASSWORD?: string;
|
|
1914
|
+
ONBOARDING_ARIREGISTER_TIMEOUT?: number;
|
|
1898
1915
|
};
|
|
1899
1916
|
export type ContainerFormatEnum = 'bare' | 'ovf' | 'aki' | 'ami' | 'ari';
|
|
1900
1917
|
export type CoreAuthToken = {
|
|
@@ -2062,6 +2079,7 @@ export type Customer = {
|
|
|
2062
2079
|
image?: string | null;
|
|
2063
2080
|
readonly blocked?: boolean;
|
|
2064
2081
|
readonly archived?: boolean;
|
|
2082
|
+
readonly display_billing_info_in_projects?: boolean;
|
|
2065
2083
|
readonly default_tax_percent?: string;
|
|
2066
2084
|
/**
|
|
2067
2085
|
* Start date of accounting
|
|
@@ -2336,6 +2354,27 @@ export type DeleteAttachmentsRequest = {
|
|
|
2336
2354
|
};
|
|
2337
2355
|
export type DependencyLogicOperatorEnum = 'and' | 'or';
|
|
2338
2356
|
export type DeploymentModeEnum = 'self_managed' | 'managed';
|
|
2357
|
+
export type DeprecatedNetworkRbacPolicy = {
|
|
2358
|
+
readonly url: string;
|
|
2359
|
+
readonly uuid: string;
|
|
2360
|
+
readonly network: string;
|
|
2361
|
+
readonly network_name: string;
|
|
2362
|
+
target_tenant: string;
|
|
2363
|
+
readonly target_tenant_name: string;
|
|
2364
|
+
readonly backend_id: string;
|
|
2365
|
+
/**
|
|
2366
|
+
* Type of access granted - either shared access or external network access
|
|
2367
|
+
*/
|
|
2368
|
+
policy_type?: PolicyTypeEnum;
|
|
2369
|
+
readonly created: string;
|
|
2370
|
+
};
|
|
2371
|
+
export type DeprecatedNetworkRbacPolicyRequest = {
|
|
2372
|
+
target_tenant: string;
|
|
2373
|
+
/**
|
|
2374
|
+
* Type of access granted - either shared access or external network access
|
|
2375
|
+
*/
|
|
2376
|
+
policy_type?: PolicyTypeEnum;
|
|
2377
|
+
};
|
|
2339
2378
|
export type DetailState = {
|
|
2340
2379
|
readonly detail: string;
|
|
2341
2380
|
readonly state: string;
|
|
@@ -2571,7 +2610,7 @@ export type EventSubscriptionRequest = {
|
|
|
2571
2610
|
description?: string;
|
|
2572
2611
|
observable_objects?: unknown;
|
|
2573
2612
|
};
|
|
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';
|
|
2613
|
+
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
2614
|
export type ExecutionStateEnum = 'Scheduled' | 'Processing' | 'OK' | 'Erred';
|
|
2576
2615
|
export type ExternalLink = {
|
|
2577
2616
|
readonly url: string;
|
|
@@ -3846,6 +3885,14 @@ export type MergedPluginOptions = {
|
|
|
3846
3885
|
* GLAuth homedir prefix
|
|
3847
3886
|
*/
|
|
3848
3887
|
homedir_prefix?: string;
|
|
3888
|
+
/**
|
|
3889
|
+
* HEAppE scratch project directory
|
|
3890
|
+
*/
|
|
3891
|
+
scratch_project_directory?: string;
|
|
3892
|
+
/**
|
|
3893
|
+
* HEAppE project permanent directory
|
|
3894
|
+
*/
|
|
3895
|
+
project_permanent_directory?: string;
|
|
3849
3896
|
/**
|
|
3850
3897
|
* GLAuth initial primary group number
|
|
3851
3898
|
*/
|
|
@@ -4008,6 +4055,14 @@ export type MergedPluginOptionsRequest = {
|
|
|
4008
4055
|
* GLAuth homedir prefix
|
|
4009
4056
|
*/
|
|
4010
4057
|
homedir_prefix?: string;
|
|
4058
|
+
/**
|
|
4059
|
+
* HEAppE scratch project directory
|
|
4060
|
+
*/
|
|
4061
|
+
scratch_project_directory?: string;
|
|
4062
|
+
/**
|
|
4063
|
+
* HEAppE project permanent directory
|
|
4064
|
+
*/
|
|
4065
|
+
project_permanent_directory?: string;
|
|
4011
4066
|
/**
|
|
4012
4067
|
* GLAuth initial primary group number
|
|
4013
4068
|
*/
|
|
@@ -4653,7 +4708,7 @@ export type NestedRound = {
|
|
|
4653
4708
|
readonly name?: string;
|
|
4654
4709
|
start_time?: string;
|
|
4655
4710
|
cutoff_time?: string;
|
|
4656
|
-
status?:
|
|
4711
|
+
status?: RoundStatus;
|
|
4657
4712
|
review_strategy?: ReviewStrategyEnum;
|
|
4658
4713
|
deciding_entity?: DecidingEntityEnum;
|
|
4659
4714
|
allocation_time?: AllocationTimeEnum;
|
|
@@ -4764,7 +4819,7 @@ export type NestedSecurityGroupRuleRequest = {
|
|
|
4764
4819
|
export type NetworkRbacPolicy = {
|
|
4765
4820
|
readonly url?: string;
|
|
4766
4821
|
readonly uuid?: string;
|
|
4767
|
-
|
|
4822
|
+
network?: string;
|
|
4768
4823
|
readonly network_name?: string;
|
|
4769
4824
|
target_tenant?: string;
|
|
4770
4825
|
readonly target_tenant_name?: string;
|
|
@@ -4776,6 +4831,7 @@ export type NetworkRbacPolicy = {
|
|
|
4776
4831
|
readonly created?: string;
|
|
4777
4832
|
};
|
|
4778
4833
|
export type NetworkRbacPolicyRequest = {
|
|
4834
|
+
network: string;
|
|
4779
4835
|
target_tenant: string;
|
|
4780
4836
|
/**
|
|
4781
4837
|
* Type of access granted - either shared access or external network access
|
|
@@ -4796,9 +4852,9 @@ export type Notification = {
|
|
|
4796
4852
|
readonly templates: Array<NotificationTemplateDetailSerializers>;
|
|
4797
4853
|
/**
|
|
4798
4854
|
* Finds the notification definition in the global NOTIFICATIONS
|
|
4799
|
-
* dictionary and returns its 'context'
|
|
4855
|
+
* dictionary and returns its 'context' schema.
|
|
4800
4856
|
*/
|
|
4801
|
-
readonly
|
|
4857
|
+
readonly context_schema: {
|
|
4802
4858
|
[key: string]: unknown;
|
|
4803
4859
|
};
|
|
4804
4860
|
};
|
|
@@ -4814,7 +4870,7 @@ export type NotificationTemplateDetailSerializers = {
|
|
|
4814
4870
|
*/
|
|
4815
4871
|
path: string;
|
|
4816
4872
|
name: string;
|
|
4817
|
-
readonly content: string;
|
|
4873
|
+
readonly content: string | null;
|
|
4818
4874
|
readonly original_content: string | null;
|
|
4819
4875
|
readonly is_content_overridden: boolean;
|
|
4820
4876
|
};
|
|
@@ -4949,6 +5005,10 @@ export type OfferingComponent = {
|
|
|
4949
5005
|
default_limit?: number | null;
|
|
4950
5006
|
readonly factor?: number | null;
|
|
4951
5007
|
readonly is_builtin?: boolean;
|
|
5008
|
+
is_prepaid?: boolean;
|
|
5009
|
+
overage_component?: string | null;
|
|
5010
|
+
min_prepaid_duration?: number | null;
|
|
5011
|
+
max_prepaid_duration?: number | null;
|
|
4952
5012
|
};
|
|
4953
5013
|
export type OfferingComponentLimit = {
|
|
4954
5014
|
min: number;
|
|
@@ -4987,6 +5047,10 @@ export type OfferingComponentRequest = {
|
|
|
4987
5047
|
max_available_limit?: number | null;
|
|
4988
5048
|
is_boolean?: boolean;
|
|
4989
5049
|
default_limit?: number | null;
|
|
5050
|
+
is_prepaid?: boolean;
|
|
5051
|
+
overage_component?: string | null;
|
|
5052
|
+
min_prepaid_duration?: number | null;
|
|
5053
|
+
max_prepaid_duration?: number | null;
|
|
4990
5054
|
};
|
|
4991
5055
|
export type OfferingComponentStat = {
|
|
4992
5056
|
readonly period: string;
|
|
@@ -5448,6 +5512,160 @@ export type OfferingUserStateTransitionRequest = {
|
|
|
5448
5512
|
export type OfferingUserUpdateRestrictionRequest = {
|
|
5449
5513
|
is_restricted: boolean;
|
|
5450
5514
|
};
|
|
5515
|
+
export type OnboardingCompanyValidationRequestRequest = {
|
|
5516
|
+
/**
|
|
5517
|
+
* ISO country code (e.g., 'EE' for Estonia)
|
|
5518
|
+
*/
|
|
5519
|
+
country: string;
|
|
5520
|
+
/**
|
|
5521
|
+
* Official company registration code
|
|
5522
|
+
*/
|
|
5523
|
+
legal_person_identifier: string;
|
|
5524
|
+
/**
|
|
5525
|
+
* Company name (optional, for reference)
|
|
5526
|
+
*/
|
|
5527
|
+
legal_name?: string;
|
|
5528
|
+
/**
|
|
5529
|
+
* Optional customer metadata for manual verification cases. Should contain valid Customer model fields.
|
|
5530
|
+
*/
|
|
5531
|
+
user_submitted_customer_metadata?: unknown;
|
|
5532
|
+
};
|
|
5533
|
+
export type OnboardingJustification = {
|
|
5534
|
+
readonly uuid: string;
|
|
5535
|
+
verification: number;
|
|
5536
|
+
user: number;
|
|
5537
|
+
/**
|
|
5538
|
+
* User's explanation for why they should be authorized
|
|
5539
|
+
*/
|
|
5540
|
+
user_justification: string;
|
|
5541
|
+
readonly validated_by: number | null;
|
|
5542
|
+
readonly validated_at: string | null;
|
|
5543
|
+
validation_decision: ValidationDecisionEnum;
|
|
5544
|
+
/**
|
|
5545
|
+
* Administrator notes on the review decision
|
|
5546
|
+
*/
|
|
5547
|
+
readonly staff_notes: string;
|
|
5548
|
+
readonly supporting_documentation: Array<OnboardingJustificationDocumentation>;
|
|
5549
|
+
readonly created: string;
|
|
5550
|
+
readonly modified: string;
|
|
5551
|
+
};
|
|
5552
|
+
export type OnboardingJustificationCreateRequest = {
|
|
5553
|
+
/**
|
|
5554
|
+
* UUID of the OnboardingVerification to justify
|
|
5555
|
+
*/
|
|
5556
|
+
verification_uuid: string;
|
|
5557
|
+
/**
|
|
5558
|
+
* User's explanation for why they should be authorized
|
|
5559
|
+
*/
|
|
5560
|
+
user_justification: string;
|
|
5561
|
+
};
|
|
5562
|
+
export type OnboardingJustificationDocumentation = {
|
|
5563
|
+
readonly uuid: string;
|
|
5564
|
+
/**
|
|
5565
|
+
* Upload supporting documentation.
|
|
5566
|
+
*/
|
|
5567
|
+
file?: string | null;
|
|
5568
|
+
readonly file_name: string;
|
|
5569
|
+
readonly file_size: number;
|
|
5570
|
+
readonly created: string;
|
|
5571
|
+
};
|
|
5572
|
+
export type OnboardingJustificationDocumentationRequest = {
|
|
5573
|
+
/**
|
|
5574
|
+
* Upload supporting documentation.
|
|
5575
|
+
*/
|
|
5576
|
+
file?: (Blob | File) | null;
|
|
5577
|
+
};
|
|
5578
|
+
export type OnboardingJustificationRequest = {
|
|
5579
|
+
verification: number;
|
|
5580
|
+
user: number;
|
|
5581
|
+
/**
|
|
5582
|
+
* User's explanation for why they should be authorized
|
|
5583
|
+
*/
|
|
5584
|
+
user_justification: string;
|
|
5585
|
+
};
|
|
5586
|
+
export type OnboardingVerification = {
|
|
5587
|
+
readonly uuid: string;
|
|
5588
|
+
/**
|
|
5589
|
+
* User requesting company onboarding
|
|
5590
|
+
*/
|
|
5591
|
+
user: number;
|
|
5592
|
+
/**
|
|
5593
|
+
* ISO country code (e.g., 'EE' for Estonia)
|
|
5594
|
+
*/
|
|
5595
|
+
country: string;
|
|
5596
|
+
/**
|
|
5597
|
+
* Official company registration code
|
|
5598
|
+
*/
|
|
5599
|
+
legal_person_identifier: string;
|
|
5600
|
+
/**
|
|
5601
|
+
* Claimed company name (optional, for reference)
|
|
5602
|
+
*/
|
|
5603
|
+
legal_name?: string;
|
|
5604
|
+
/**
|
|
5605
|
+
* Additional customer metadata submitted by user for manual verification cases. Should contain valid Customer model fields.
|
|
5606
|
+
*/
|
|
5607
|
+
user_submitted_customer_metadata?: unknown;
|
|
5608
|
+
status: OnboardingVerificationStatusEnum;
|
|
5609
|
+
/**
|
|
5610
|
+
* Method used for validation
|
|
5611
|
+
*/
|
|
5612
|
+
validation_method: ValidationMethodEnum;
|
|
5613
|
+
/**
|
|
5614
|
+
* Roles the user has in the company
|
|
5615
|
+
*/
|
|
5616
|
+
readonly verified_user_roles: unknown;
|
|
5617
|
+
/**
|
|
5618
|
+
* Company information retrieved during validation
|
|
5619
|
+
*/
|
|
5620
|
+
readonly verified_company_data: unknown;
|
|
5621
|
+
/**
|
|
5622
|
+
* Raw API response for debugging and auditing
|
|
5623
|
+
*/
|
|
5624
|
+
readonly raw_response: unknown;
|
|
5625
|
+
readonly error_traceback: string;
|
|
5626
|
+
readonly error_message: string;
|
|
5627
|
+
/**
|
|
5628
|
+
* When validation was completed
|
|
5629
|
+
*/
|
|
5630
|
+
readonly validated_at: string | null;
|
|
5631
|
+
/**
|
|
5632
|
+
* When this verification expires
|
|
5633
|
+
*/
|
|
5634
|
+
expires_at?: string | null;
|
|
5635
|
+
/**
|
|
5636
|
+
* Customer created after successful validation
|
|
5637
|
+
*/
|
|
5638
|
+
readonly customer: number | null;
|
|
5639
|
+
readonly created: string;
|
|
5640
|
+
readonly modified: string;
|
|
5641
|
+
};
|
|
5642
|
+
export type OnboardingVerificationRequest = {
|
|
5643
|
+
/**
|
|
5644
|
+
* User requesting company onboarding
|
|
5645
|
+
*/
|
|
5646
|
+
user: number;
|
|
5647
|
+
/**
|
|
5648
|
+
* ISO country code (e.g., 'EE' for Estonia)
|
|
5649
|
+
*/
|
|
5650
|
+
country: string;
|
|
5651
|
+
/**
|
|
5652
|
+
* Official company registration code
|
|
5653
|
+
*/
|
|
5654
|
+
legal_person_identifier: string;
|
|
5655
|
+
/**
|
|
5656
|
+
* Claimed company name (optional, for reference)
|
|
5657
|
+
*/
|
|
5658
|
+
legal_name?: string;
|
|
5659
|
+
/**
|
|
5660
|
+
* Additional customer metadata submitted by user for manual verification cases. Should contain valid Customer model fields.
|
|
5661
|
+
*/
|
|
5662
|
+
user_submitted_customer_metadata?: unknown;
|
|
5663
|
+
/**
|
|
5664
|
+
* When this verification expires
|
|
5665
|
+
*/
|
|
5666
|
+
expires_at?: string | null;
|
|
5667
|
+
};
|
|
5668
|
+
export type OnboardingVerificationStatusEnum = 'pending' | 'verified' | 'failed' | 'escalated' | 'expired';
|
|
5451
5669
|
export type OpenStackAllowedAddressPair = {
|
|
5452
5670
|
mac_address?: string;
|
|
5453
5671
|
};
|
|
@@ -5613,6 +5831,10 @@ export type OpenStackBackupRestorationRequest = {
|
|
|
5613
5831
|
};
|
|
5614
5832
|
export type OpenStackCreateFloatingIpRequest = {
|
|
5615
5833
|
url?: string;
|
|
5834
|
+
/**
|
|
5835
|
+
* Existing floating IP address in selected OpenStack tenant to be assigned to new virtual machine
|
|
5836
|
+
*/
|
|
5837
|
+
ip_address?: string;
|
|
5616
5838
|
subnet: string;
|
|
5617
5839
|
};
|
|
5618
5840
|
export type OpenStackCreatePortRequest = {
|
|
@@ -7656,6 +7878,14 @@ export type PatchedMigrationDetailsRequest = {
|
|
|
7656
7878
|
error_message?: string;
|
|
7657
7879
|
error_traceback?: string;
|
|
7658
7880
|
};
|
|
7881
|
+
export type PatchedNetworkRbacPolicyRequest = {
|
|
7882
|
+
network?: string;
|
|
7883
|
+
target_tenant?: string;
|
|
7884
|
+
/**
|
|
7885
|
+
* Type of access granted - either shared access or external network access
|
|
7886
|
+
*/
|
|
7887
|
+
policy_type?: PolicyTypeEnum;
|
|
7888
|
+
};
|
|
7659
7889
|
export type PatchedNotificationRequest = {
|
|
7660
7890
|
key?: string;
|
|
7661
7891
|
description?: string;
|
|
@@ -7717,6 +7947,40 @@ export type PatchedOfferingUserServiceProviderCommentRequest = {
|
|
|
7717
7947
|
*/
|
|
7718
7948
|
service_provider_comment_url?: string;
|
|
7719
7949
|
};
|
|
7950
|
+
export type PatchedOnboardingJustificationRequest = {
|
|
7951
|
+
verification?: number;
|
|
7952
|
+
user?: number;
|
|
7953
|
+
/**
|
|
7954
|
+
* User's explanation for why they should be authorized
|
|
7955
|
+
*/
|
|
7956
|
+
user_justification?: string;
|
|
7957
|
+
};
|
|
7958
|
+
export type PatchedOnboardingVerificationRequest = {
|
|
7959
|
+
/**
|
|
7960
|
+
* User requesting company onboarding
|
|
7961
|
+
*/
|
|
7962
|
+
user?: number;
|
|
7963
|
+
/**
|
|
7964
|
+
* ISO country code (e.g., 'EE' for Estonia)
|
|
7965
|
+
*/
|
|
7966
|
+
country?: string;
|
|
7967
|
+
/**
|
|
7968
|
+
* Official company registration code
|
|
7969
|
+
*/
|
|
7970
|
+
legal_person_identifier?: string;
|
|
7971
|
+
/**
|
|
7972
|
+
* Claimed company name (optional, for reference)
|
|
7973
|
+
*/
|
|
7974
|
+
legal_name?: string;
|
|
7975
|
+
/**
|
|
7976
|
+
* Additional customer metadata submitted by user for manual verification cases. Should contain valid Customer model fields.
|
|
7977
|
+
*/
|
|
7978
|
+
user_submitted_customer_metadata?: unknown;
|
|
7979
|
+
/**
|
|
7980
|
+
* When this verification expires
|
|
7981
|
+
*/
|
|
7982
|
+
expires_at?: string | null;
|
|
7983
|
+
};
|
|
7720
7984
|
export type PatchedOpenStackBackupRequest = {
|
|
7721
7985
|
name?: string;
|
|
7722
7986
|
description?: string;
|
|
@@ -7823,6 +8087,7 @@ export type PatchedProjectCreditRequest = {
|
|
|
7823
8087
|
minimal_consumption_logic?: MinimalConsumptionLogicEnum;
|
|
7824
8088
|
grace_coefficient?: string;
|
|
7825
8089
|
apply_as_minimal_consumption?: boolean;
|
|
8090
|
+
mark_unused_credit_as_spent_on_project_termination?: boolean;
|
|
7826
8091
|
};
|
|
7827
8092
|
export type PatchedProjectEstimatedCostPolicyRequest = {
|
|
7828
8093
|
scope?: string;
|
|
@@ -7848,9 +8113,6 @@ export type PatchedProjectRequest = {
|
|
|
7848
8113
|
type?: string | null;
|
|
7849
8114
|
backend_id?: string;
|
|
7850
8115
|
start_date?: string | null;
|
|
7851
|
-
/**
|
|
7852
|
-
* The date is inclusive. Once reached, all project resource will be scheduled for termination.
|
|
7853
|
-
*/
|
|
7854
8116
|
end_date?: string | null;
|
|
7855
8117
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
7856
8118
|
is_industry?: boolean;
|
|
@@ -8478,6 +8740,7 @@ export type Project = {
|
|
|
8478
8740
|
readonly customer_native_name?: string;
|
|
8479
8741
|
readonly customer_abbreviation?: string;
|
|
8480
8742
|
description?: string;
|
|
8743
|
+
readonly customer_display_billing_info_in_projects?: boolean;
|
|
8481
8744
|
readonly created?: string;
|
|
8482
8745
|
/**
|
|
8483
8746
|
* Project type
|
|
@@ -8487,9 +8750,6 @@ export type Project = {
|
|
|
8487
8750
|
readonly type_uuid?: string | null;
|
|
8488
8751
|
backend_id?: string;
|
|
8489
8752
|
start_date?: string | null;
|
|
8490
|
-
/**
|
|
8491
|
-
* The date is inclusive. Once reached, all project resource will be scheduled for termination.
|
|
8492
|
-
*/
|
|
8493
8753
|
end_date?: string | null;
|
|
8494
8754
|
readonly end_date_requested_by?: string | null;
|
|
8495
8755
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
@@ -8560,6 +8820,7 @@ export type ProjectCredit = {
|
|
|
8560
8820
|
minimal_consumption_logic?: MinimalConsumptionLogicEnum;
|
|
8561
8821
|
grace_coefficient?: string;
|
|
8562
8822
|
apply_as_minimal_consumption?: boolean;
|
|
8823
|
+
mark_unused_credit_as_spent_on_project_termination?: boolean;
|
|
8563
8824
|
};
|
|
8564
8825
|
export type ProjectCreditRequest = {
|
|
8565
8826
|
value?: string;
|
|
@@ -8569,6 +8830,7 @@ export type ProjectCreditRequest = {
|
|
|
8569
8830
|
minimal_consumption_logic?: MinimalConsumptionLogicEnum;
|
|
8570
8831
|
grace_coefficient?: string;
|
|
8571
8832
|
apply_as_minimal_consumption?: boolean;
|
|
8833
|
+
mark_unused_credit_as_spent_on_project_termination?: boolean;
|
|
8572
8834
|
};
|
|
8573
8835
|
export type ProjectDetail = {
|
|
8574
8836
|
readonly project_uuid: string;
|
|
@@ -8686,9 +8948,6 @@ export type ProjectRequest = {
|
|
|
8686
8948
|
type?: string | null;
|
|
8687
8949
|
backend_id?: string;
|
|
8688
8950
|
start_date?: string | null;
|
|
8689
|
-
/**
|
|
8690
|
-
* The date is inclusive. Once reached, all project resource will be scheduled for termination.
|
|
8691
|
-
*/
|
|
8692
8951
|
end_date?: string | null;
|
|
8693
8952
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
8694
8953
|
is_industry?: boolean;
|
|
@@ -9015,7 +9274,7 @@ export type ProtectedRound = {
|
|
|
9015
9274
|
readonly name: string;
|
|
9016
9275
|
start_time: string;
|
|
9017
9276
|
cutoff_time: string;
|
|
9018
|
-
status:
|
|
9277
|
+
status: RoundStatus;
|
|
9019
9278
|
review_strategy?: ReviewStrategyEnum;
|
|
9020
9279
|
deciding_entity?: DecidingEntityEnum;
|
|
9021
9280
|
allocation_time?: AllocationTimeEnum;
|
|
@@ -9431,6 +9690,15 @@ export type PullMarketplaceScriptResourceRequest = {
|
|
|
9431
9690
|
export type QueryRequest = {
|
|
9432
9691
|
query: string;
|
|
9433
9692
|
};
|
|
9693
|
+
export type Question = {
|
|
9694
|
+
readonly uuid: string;
|
|
9695
|
+
description?: string;
|
|
9696
|
+
/**
|
|
9697
|
+
* Additional guidance text visible to users when answering and reviewing
|
|
9698
|
+
*/
|
|
9699
|
+
user_guidance?: string;
|
|
9700
|
+
readonly question_options: Array<QuestionOptions>;
|
|
9701
|
+
};
|
|
9434
9702
|
export type QuestionAdmin = {
|
|
9435
9703
|
readonly uuid: string;
|
|
9436
9704
|
description?: string;
|
|
@@ -9581,6 +9849,11 @@ export type QuestionDependencyRequest = {
|
|
|
9581
9849
|
required_answer_value: unknown;
|
|
9582
9850
|
operator?: ChecklistOperators;
|
|
9583
9851
|
};
|
|
9852
|
+
export type QuestionOptions = {
|
|
9853
|
+
readonly uuid: string;
|
|
9854
|
+
label: string;
|
|
9855
|
+
order?: number;
|
|
9856
|
+
};
|
|
9584
9857
|
export type QuestionOptionsAdmin = {
|
|
9585
9858
|
readonly uuid: string;
|
|
9586
9859
|
label: string;
|
|
@@ -10795,6 +11068,18 @@ export type ResourcePlanPeriod = {
|
|
|
10795
11068
|
end?: string | null;
|
|
10796
11069
|
components: Array<BaseComponentUsage>;
|
|
10797
11070
|
};
|
|
11071
|
+
export type ResourceRenewRequest = {
|
|
11072
|
+
/**
|
|
11073
|
+
* Number of months to extend the subscription by.
|
|
11074
|
+
*/
|
|
11075
|
+
extension_months: number;
|
|
11076
|
+
/**
|
|
11077
|
+
* Optional new limits for the resource. Supports upgrades only.
|
|
11078
|
+
*/
|
|
11079
|
+
limits?: {
|
|
11080
|
+
[key: string]: number;
|
|
11081
|
+
};
|
|
11082
|
+
};
|
|
10798
11083
|
export type ResourceReportRequest = {
|
|
10799
11084
|
report: Array<ReportSectionRequest>;
|
|
10800
11085
|
};
|
|
@@ -11268,6 +11553,7 @@ export type RoundReviewer = {
|
|
|
11268
11553
|
rejected_proposals: number;
|
|
11269
11554
|
in_review_proposals: number;
|
|
11270
11555
|
};
|
|
11556
|
+
export type RoundStatus = 'scheduled' | 'open' | 'ended';
|
|
11271
11557
|
export type Rule = {
|
|
11272
11558
|
name: string;
|
|
11273
11559
|
readonly uuid: string;
|
|
@@ -11396,6 +11682,13 @@ export type ServiceProvider = {
|
|
|
11396
11682
|
export type ServiceProviderApiSecretCode = {
|
|
11397
11683
|
readonly api_secret_code: string;
|
|
11398
11684
|
};
|
|
11685
|
+
export type ServiceProviderChecklistSummary = {
|
|
11686
|
+
readonly checklist_uuid: string;
|
|
11687
|
+
readonly checklist_name: string;
|
|
11688
|
+
readonly questions_count: number;
|
|
11689
|
+
readonly offerings_count: number;
|
|
11690
|
+
readonly category_name: string | null;
|
|
11691
|
+
};
|
|
11399
11692
|
export type ServiceProviderComplianceOverview = {
|
|
11400
11693
|
readonly offering_uuid: string;
|
|
11401
11694
|
readonly offering_name: string;
|
|
@@ -11598,7 +11891,6 @@ export type StateTransitionError = {
|
|
|
11598
11891
|
*/
|
|
11599
11892
|
detail: string;
|
|
11600
11893
|
};
|
|
11601
|
-
export type StatusEnum = 'scheduled' | 'open' | 'ended';
|
|
11602
11894
|
export type StorageModeEnum = 'fixed' | 'dynamic';
|
|
11603
11895
|
export type SubNetMapping = {
|
|
11604
11896
|
src_cidr: string;
|
|
@@ -11681,6 +11973,21 @@ export type Tenant = {
|
|
|
11681
11973
|
readonly uuid: string;
|
|
11682
11974
|
name: string;
|
|
11683
11975
|
};
|
|
11976
|
+
export type TimeSeriesToSData = {
|
|
11977
|
+
readonly date: string;
|
|
11978
|
+
readonly count: number;
|
|
11979
|
+
};
|
|
11980
|
+
export type ToSConsentDashboard = {
|
|
11981
|
+
readonly active_users_count: number;
|
|
11982
|
+
readonly total_users_count: number;
|
|
11983
|
+
readonly active_users_percentage: number;
|
|
11984
|
+
readonly accepted_consents_count: number;
|
|
11985
|
+
readonly revoked_consents_count: number;
|
|
11986
|
+
readonly total_consents_count: number;
|
|
11987
|
+
readonly revoked_consents_over_time: Array<TimeSeriesToSData>;
|
|
11988
|
+
readonly tos_version_adoption: Array<VersionAdoption>;
|
|
11989
|
+
readonly active_users_over_time: Array<TimeSeriesToSData>;
|
|
11990
|
+
};
|
|
11684
11991
|
export type TokenRequest = {
|
|
11685
11992
|
token: string;
|
|
11686
11993
|
};
|
|
@@ -11716,6 +12023,10 @@ export type UpdateOfferingComponentRequest = {
|
|
|
11716
12023
|
max_available_limit?: number | null;
|
|
11717
12024
|
is_boolean?: boolean;
|
|
11718
12025
|
default_limit?: number | null;
|
|
12026
|
+
is_prepaid?: boolean;
|
|
12027
|
+
overage_component?: string | null;
|
|
12028
|
+
min_prepaid_duration?: number | null;
|
|
12029
|
+
max_prepaid_duration?: number | null;
|
|
11719
12030
|
};
|
|
11720
12031
|
export type User = {
|
|
11721
12032
|
readonly url?: string;
|
|
@@ -11977,6 +12288,8 @@ export type UserRoleUpdateRequest = {
|
|
|
11977
12288
|
expiration_time?: string | null;
|
|
11978
12289
|
};
|
|
11979
12290
|
export type UsernameGenerationPolicyEnum = 'service_provider' | 'anonymized' | 'full_name' | 'waldur_username' | 'freeipa' | 'identity_claim';
|
|
12291
|
+
export type ValidationDecisionEnum = 'approved' | 'rejected' | 'pending';
|
|
12292
|
+
export type ValidationMethodEnum = 'ariregister';
|
|
11980
12293
|
export type Version = {
|
|
11981
12294
|
/**
|
|
11982
12295
|
* Current installed version of the application
|
|
@@ -11987,6 +12300,10 @@ export type Version = {
|
|
|
11987
12300
|
*/
|
|
11988
12301
|
latest_version?: string;
|
|
11989
12302
|
};
|
|
12303
|
+
export type VersionAdoption = {
|
|
12304
|
+
readonly version: string;
|
|
12305
|
+
readonly users_count: number;
|
|
12306
|
+
};
|
|
11990
12307
|
export type VisibilityEnum = 'private' | 'public';
|
|
11991
12308
|
export type VisibleInvitationDetails = {
|
|
11992
12309
|
readonly scope_uuid: string;
|
|
@@ -12958,6 +13275,18 @@ export type PatchedServiceProviderRequestMultipart = {
|
|
|
12958
13275
|
enable_notifications?: boolean;
|
|
12959
13276
|
image?: (Blob | File) | null;
|
|
12960
13277
|
};
|
|
13278
|
+
export type OnboardingJustificationDocumentationRequestForm = {
|
|
13279
|
+
/**
|
|
13280
|
+
* Upload supporting documentation.
|
|
13281
|
+
*/
|
|
13282
|
+
file?: (Blob | File) | null;
|
|
13283
|
+
};
|
|
13284
|
+
export type OnboardingJustificationDocumentationRequestMultipart = {
|
|
13285
|
+
/**
|
|
13286
|
+
* Upload supporting documentation.
|
|
13287
|
+
*/
|
|
13288
|
+
file?: (Blob | File) | null;
|
|
13289
|
+
};
|
|
12961
13290
|
export type ConstanceSettingsRequestForm = {
|
|
12962
13291
|
SITE_NAME?: string;
|
|
12963
13292
|
SITE_DESCRIPTION?: string;
|
|
@@ -13095,6 +13424,11 @@ export type ConstanceSettingsRequestForm = {
|
|
|
13095
13424
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
13096
13425
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
13097
13426
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
13427
|
+
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
13428
|
+
ONBOARDING_ARIREGISTER_BASE_URL?: string;
|
|
13429
|
+
ONBOARDING_ARIREGISTER_USERNAME?: string;
|
|
13430
|
+
ONBOARDING_ARIREGISTER_PASSWORD?: string;
|
|
13431
|
+
ONBOARDING_ARIREGISTER_TIMEOUT?: number;
|
|
13098
13432
|
};
|
|
13099
13433
|
export type ConstanceSettingsRequestMultipart = {
|
|
13100
13434
|
SITE_NAME?: string;
|
|
@@ -13233,6 +13567,11 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
13233
13567
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
13234
13568
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
13235
13569
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
13570
|
+
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
13571
|
+
ONBOARDING_ARIREGISTER_BASE_URL?: string;
|
|
13572
|
+
ONBOARDING_ARIREGISTER_USERNAME?: string;
|
|
13573
|
+
ONBOARDING_ARIREGISTER_PASSWORD?: string;
|
|
13574
|
+
ONBOARDING_ARIREGISTER_TIMEOUT?: number;
|
|
13236
13575
|
};
|
|
13237
13576
|
export type PaymentRequestForm = {
|
|
13238
13577
|
profile: string;
|
|
@@ -13272,9 +13611,6 @@ export type ProjectRequestForm = {
|
|
|
13272
13611
|
type?: string | null;
|
|
13273
13612
|
backend_id?: string;
|
|
13274
13613
|
start_date?: string | null;
|
|
13275
|
-
/**
|
|
13276
|
-
* The date is inclusive. Once reached, all project resource will be scheduled for termination.
|
|
13277
|
-
*/
|
|
13278
13614
|
end_date?: string | null;
|
|
13279
13615
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
13280
13616
|
is_industry?: boolean;
|
|
@@ -13298,9 +13634,6 @@ export type ProjectRequestMultipart = {
|
|
|
13298
13634
|
type?: string | null;
|
|
13299
13635
|
backend_id?: string;
|
|
13300
13636
|
start_date?: string | null;
|
|
13301
|
-
/**
|
|
13302
|
-
* The date is inclusive. Once reached, all project resource will be scheduled for termination.
|
|
13303
|
-
*/
|
|
13304
13637
|
end_date?: string | null;
|
|
13305
13638
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
13306
13639
|
is_industry?: boolean;
|
|
@@ -13324,9 +13657,6 @@ export type PatchedProjectRequestForm = {
|
|
|
13324
13657
|
type?: string | null;
|
|
13325
13658
|
backend_id?: string;
|
|
13326
13659
|
start_date?: string | null;
|
|
13327
|
-
/**
|
|
13328
|
-
* The date is inclusive. Once reached, all project resource will be scheduled for termination.
|
|
13329
|
-
*/
|
|
13330
13660
|
end_date?: string | null;
|
|
13331
13661
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
13332
13662
|
is_industry?: boolean;
|
|
@@ -13350,9 +13680,6 @@ export type PatchedProjectRequestMultipart = {
|
|
|
13350
13680
|
type?: string | null;
|
|
13351
13681
|
backend_id?: string;
|
|
13352
13682
|
start_date?: string | null;
|
|
13353
|
-
/**
|
|
13354
|
-
* The date is inclusive. Once reached, all project resource will be scheduled for termination.
|
|
13355
|
-
*/
|
|
13356
13683
|
end_date?: string | null;
|
|
13357
13684
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
13358
13685
|
is_industry?: boolean;
|
|
@@ -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
|
};
|
|
@@ -24810,6 +25139,34 @@ export type MarketplaceOfferingUsersUpdateRestrictedResponses = {
|
|
|
24810
25139
|
*/
|
|
24811
25140
|
200: unknown;
|
|
24812
25141
|
};
|
|
25142
|
+
export type MarketplaceOfferingUsersChecklistTemplateRetrieveData = {
|
|
25143
|
+
body?: never;
|
|
25144
|
+
path?: never;
|
|
25145
|
+
query?: never;
|
|
25146
|
+
url: '/api/marketplace-offering-users/checklist-template/';
|
|
25147
|
+
};
|
|
25148
|
+
export type MarketplaceOfferingUsersChecklistTemplateRetrieveErrors = {
|
|
25149
|
+
/**
|
|
25150
|
+
* No checklist configured
|
|
25151
|
+
*/
|
|
25152
|
+
400: unknown;
|
|
25153
|
+
};
|
|
25154
|
+
export type MarketplaceOfferingUsersChecklistTemplateRetrieveResponses = {
|
|
25155
|
+
200: ChecklistTemplate;
|
|
25156
|
+
};
|
|
25157
|
+
export type MarketplaceOfferingUsersChecklistTemplateRetrieveResponse = MarketplaceOfferingUsersChecklistTemplateRetrieveResponses[keyof MarketplaceOfferingUsersChecklistTemplateRetrieveResponses];
|
|
25158
|
+
export type MarketplaceOfferingUsersChecklistTemplateCountData = {
|
|
25159
|
+
body?: never;
|
|
25160
|
+
path?: never;
|
|
25161
|
+
query?: never;
|
|
25162
|
+
url: '/api/marketplace-offering-users/checklist-template/';
|
|
25163
|
+
};
|
|
25164
|
+
export type MarketplaceOfferingUsersChecklistTemplateCountResponses = {
|
|
25165
|
+
/**
|
|
25166
|
+
* No response body
|
|
25167
|
+
*/
|
|
25168
|
+
200: unknown;
|
|
25169
|
+
};
|
|
24813
25170
|
export type MarketplaceOrdersListData = {
|
|
24814
25171
|
body?: never;
|
|
24815
25172
|
path?: never;
|
|
@@ -26814,6 +27171,18 @@ export type MarketplaceProviderOfferingsSyncResponses = {
|
|
|
26814
27171
|
*/
|
|
26815
27172
|
200: unknown;
|
|
26816
27173
|
};
|
|
27174
|
+
export type MarketplaceProviderOfferingsTosStatsRetrieveData = {
|
|
27175
|
+
body?: never;
|
|
27176
|
+
path: {
|
|
27177
|
+
uuid: string;
|
|
27178
|
+
};
|
|
27179
|
+
query?: never;
|
|
27180
|
+
url: '/api/marketplace-provider-offerings/{uuid}/tos_stats/';
|
|
27181
|
+
};
|
|
27182
|
+
export type MarketplaceProviderOfferingsTosStatsRetrieveResponses = {
|
|
27183
|
+
200: ToSConsentDashboard;
|
|
27184
|
+
};
|
|
27185
|
+
export type MarketplaceProviderOfferingsTosStatsRetrieveResponse = MarketplaceProviderOfferingsTosStatsRetrieveResponses[keyof MarketplaceProviderOfferingsTosStatsRetrieveResponses];
|
|
26817
27186
|
export type MarketplaceProviderOfferingsUnpauseData = {
|
|
26818
27187
|
body?: never;
|
|
26819
27188
|
path: {
|
|
@@ -27278,6 +27647,7 @@ export type MarketplaceProviderResourcesListData = {
|
|
|
27278
27647
|
page_size?: number;
|
|
27279
27648
|
parent_offering_uuid?: string;
|
|
27280
27649
|
paused?: boolean;
|
|
27650
|
+
plan_uuid?: string;
|
|
27281
27651
|
project_name?: string;
|
|
27282
27652
|
project_uuid?: string;
|
|
27283
27653
|
provider_uuid?: string;
|
|
@@ -27367,6 +27737,7 @@ export type MarketplaceProviderResourcesCountData = {
|
|
|
27367
27737
|
page_size?: number;
|
|
27368
27738
|
parent_offering_uuid?: string;
|
|
27369
27739
|
paused?: boolean;
|
|
27740
|
+
plan_uuid?: string;
|
|
27370
27741
|
project_name?: string;
|
|
27371
27742
|
project_uuid?: string;
|
|
27372
27743
|
provider_uuid?: string;
|
|
@@ -27691,6 +28062,18 @@ export type MarketplaceProviderResourcesUnlinkResponses = {
|
|
|
27691
28062
|
*/
|
|
27692
28063
|
200: unknown;
|
|
27693
28064
|
};
|
|
28065
|
+
export type MarketplaceProviderResourcesUpdateOptionsData = {
|
|
28066
|
+
body?: ResourceOptionsRequest;
|
|
28067
|
+
path: {
|
|
28068
|
+
uuid: string;
|
|
28069
|
+
};
|
|
28070
|
+
query?: never;
|
|
28071
|
+
url: '/api/marketplace-provider-resources/{uuid}/update_options/';
|
|
28072
|
+
};
|
|
28073
|
+
export type MarketplaceProviderResourcesUpdateOptionsResponses = {
|
|
28074
|
+
200: ResourceResponseStatus;
|
|
28075
|
+
};
|
|
28076
|
+
export type MarketplaceProviderResourcesUpdateOptionsResponse = MarketplaceProviderResourcesUpdateOptionsResponses[keyof MarketplaceProviderResourcesUpdateOptionsResponses];
|
|
27694
28077
|
export type MarketplacePublicApiCheckSignatureData = {
|
|
27695
28078
|
body: ServiceProviderSignatureRequest;
|
|
27696
28079
|
path?: never;
|
|
@@ -28251,6 +28634,7 @@ export type MarketplaceResourcesListData = {
|
|
|
28251
28634
|
page_size?: number;
|
|
28252
28635
|
parent_offering_uuid?: string;
|
|
28253
28636
|
paused?: boolean;
|
|
28637
|
+
plan_uuid?: string;
|
|
28254
28638
|
project_name?: string;
|
|
28255
28639
|
project_uuid?: string;
|
|
28256
28640
|
provider_uuid?: string;
|
|
@@ -28340,6 +28724,7 @@ export type MarketplaceResourcesCountData = {
|
|
|
28340
28724
|
page_size?: number;
|
|
28341
28725
|
parent_offering_uuid?: string;
|
|
28342
28726
|
paused?: boolean;
|
|
28727
|
+
plan_uuid?: string;
|
|
28343
28728
|
project_name?: string;
|
|
28344
28729
|
project_uuid?: string;
|
|
28345
28730
|
provider_uuid?: string;
|
|
@@ -28496,6 +28881,18 @@ export type MarketplaceResourcesPullResponses = {
|
|
|
28496
28881
|
};
|
|
28497
28882
|
};
|
|
28498
28883
|
export type MarketplaceResourcesPullResponse = MarketplaceResourcesPullResponses[keyof MarketplaceResourcesPullResponses];
|
|
28884
|
+
export type MarketplaceResourcesRenewData = {
|
|
28885
|
+
body: ResourceRenewRequest;
|
|
28886
|
+
path: {
|
|
28887
|
+
uuid: string;
|
|
28888
|
+
};
|
|
28889
|
+
query?: never;
|
|
28890
|
+
url: '/api/marketplace-resources/{uuid}/renew/';
|
|
28891
|
+
};
|
|
28892
|
+
export type MarketplaceResourcesRenewResponses = {
|
|
28893
|
+
200: OrderUuid;
|
|
28894
|
+
};
|
|
28895
|
+
export type MarketplaceResourcesRenewResponse = MarketplaceResourcesRenewResponses[keyof MarketplaceResourcesRenewResponses];
|
|
28499
28896
|
export type MarketplaceResourcesSetEndDateByStaffData = {
|
|
28500
28897
|
body?: ResourceEndDateByProviderRequest;
|
|
28501
28898
|
path: {
|
|
@@ -29234,6 +29631,27 @@ export type MarketplaceServiceProvidersCreateResponses = {
|
|
|
29234
29631
|
201: ServiceProvider;
|
|
29235
29632
|
};
|
|
29236
29633
|
export type MarketplaceServiceProvidersCreateResponse = MarketplaceServiceProvidersCreateResponses[keyof MarketplaceServiceProvidersCreateResponses];
|
|
29634
|
+
export type ServiceProviderChecklistsSummaryData = {
|
|
29635
|
+
body?: never;
|
|
29636
|
+
path: {
|
|
29637
|
+
service_provider_uuid: string;
|
|
29638
|
+
};
|
|
29639
|
+
query?: {
|
|
29640
|
+
/**
|
|
29641
|
+
* A page number within the paginated result set.
|
|
29642
|
+
*/
|
|
29643
|
+
page?: number;
|
|
29644
|
+
/**
|
|
29645
|
+
* Number of results to return per page.
|
|
29646
|
+
*/
|
|
29647
|
+
page_size?: number;
|
|
29648
|
+
};
|
|
29649
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/compliance/checklists_summary/';
|
|
29650
|
+
};
|
|
29651
|
+
export type ServiceProviderChecklistsSummaryResponses = {
|
|
29652
|
+
200: Array<ServiceProviderChecklistSummary>;
|
|
29653
|
+
};
|
|
29654
|
+
export type ServiceProviderChecklistsSummaryResponse = ServiceProviderChecklistsSummaryResponses[keyof ServiceProviderChecklistsSummaryResponses];
|
|
29237
29655
|
export type ServiceProviderComplianceOverviewData = {
|
|
29238
29656
|
body?: never;
|
|
29239
29657
|
path: {
|
|
@@ -29695,7 +30113,7 @@ export type MarketplaceServiceProvidersProjectsListData = {
|
|
|
29695
30113
|
customer_name?: string;
|
|
29696
30114
|
customer_native_name?: string;
|
|
29697
30115
|
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'>;
|
|
30116
|
+
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
30117
|
/**
|
|
29700
30118
|
* Modified after
|
|
29701
30119
|
*/
|
|
@@ -31350,6 +31768,258 @@ export type NotificationMessagesEnableResponses = {
|
|
|
31350
31768
|
*/
|
|
31351
31769
|
200: unknown;
|
|
31352
31770
|
};
|
|
31771
|
+
export type OnboardingJustificationsListData = {
|
|
31772
|
+
body?: never;
|
|
31773
|
+
path?: never;
|
|
31774
|
+
query?: {
|
|
31775
|
+
/**
|
|
31776
|
+
* A page number within the paginated result set.
|
|
31777
|
+
*/
|
|
31778
|
+
page?: number;
|
|
31779
|
+
/**
|
|
31780
|
+
* Number of results to return per page.
|
|
31781
|
+
*/
|
|
31782
|
+
page_size?: number;
|
|
31783
|
+
};
|
|
31784
|
+
url: '/api/onboarding-justifications/';
|
|
31785
|
+
};
|
|
31786
|
+
export type OnboardingJustificationsListResponses = {
|
|
31787
|
+
200: Array<OnboardingJustification>;
|
|
31788
|
+
};
|
|
31789
|
+
export type OnboardingJustificationsListResponse = OnboardingJustificationsListResponses[keyof OnboardingJustificationsListResponses];
|
|
31790
|
+
export type OnboardingJustificationsCountData = {
|
|
31791
|
+
body?: never;
|
|
31792
|
+
path?: never;
|
|
31793
|
+
query?: {
|
|
31794
|
+
/**
|
|
31795
|
+
* A page number within the paginated result set.
|
|
31796
|
+
*/
|
|
31797
|
+
page?: number;
|
|
31798
|
+
/**
|
|
31799
|
+
* Number of results to return per page.
|
|
31800
|
+
*/
|
|
31801
|
+
page_size?: number;
|
|
31802
|
+
};
|
|
31803
|
+
url: '/api/onboarding-justifications/';
|
|
31804
|
+
};
|
|
31805
|
+
export type OnboardingJustificationsCountResponses = {
|
|
31806
|
+
/**
|
|
31807
|
+
* No response body
|
|
31808
|
+
*/
|
|
31809
|
+
200: unknown;
|
|
31810
|
+
};
|
|
31811
|
+
export type OnboardingJustificationsCreateData = {
|
|
31812
|
+
body: OnboardingJustificationRequest;
|
|
31813
|
+
path?: never;
|
|
31814
|
+
query?: never;
|
|
31815
|
+
url: '/api/onboarding-justifications/';
|
|
31816
|
+
};
|
|
31817
|
+
export type OnboardingJustificationsCreateResponses = {
|
|
31818
|
+
201: OnboardingJustification;
|
|
31819
|
+
};
|
|
31820
|
+
export type OnboardingJustificationsCreateResponse = OnboardingJustificationsCreateResponses[keyof OnboardingJustificationsCreateResponses];
|
|
31821
|
+
export type OnboardingJustificationsDestroyData = {
|
|
31822
|
+
body?: never;
|
|
31823
|
+
path: {
|
|
31824
|
+
uuid: string;
|
|
31825
|
+
};
|
|
31826
|
+
query?: never;
|
|
31827
|
+
url: '/api/onboarding-justifications/{uuid}/';
|
|
31828
|
+
};
|
|
31829
|
+
export type OnboardingJustificationsDestroyResponses = {
|
|
31830
|
+
/**
|
|
31831
|
+
* No response body
|
|
31832
|
+
*/
|
|
31833
|
+
204: void;
|
|
31834
|
+
};
|
|
31835
|
+
export type OnboardingJustificationsDestroyResponse = OnboardingJustificationsDestroyResponses[keyof OnboardingJustificationsDestroyResponses];
|
|
31836
|
+
export type OnboardingJustificationsRetrieveData = {
|
|
31837
|
+
body?: never;
|
|
31838
|
+
path: {
|
|
31839
|
+
uuid: string;
|
|
31840
|
+
};
|
|
31841
|
+
query?: never;
|
|
31842
|
+
url: '/api/onboarding-justifications/{uuid}/';
|
|
31843
|
+
};
|
|
31844
|
+
export type OnboardingJustificationsRetrieveResponses = {
|
|
31845
|
+
200: OnboardingJustification;
|
|
31846
|
+
};
|
|
31847
|
+
export type OnboardingJustificationsRetrieveResponse = OnboardingJustificationsRetrieveResponses[keyof OnboardingJustificationsRetrieveResponses];
|
|
31848
|
+
export type OnboardingJustificationsPartialUpdateData = {
|
|
31849
|
+
body?: PatchedOnboardingJustificationRequest;
|
|
31850
|
+
path: {
|
|
31851
|
+
uuid: string;
|
|
31852
|
+
};
|
|
31853
|
+
query?: never;
|
|
31854
|
+
url: '/api/onboarding-justifications/{uuid}/';
|
|
31855
|
+
};
|
|
31856
|
+
export type OnboardingJustificationsPartialUpdateResponses = {
|
|
31857
|
+
200: OnboardingJustification;
|
|
31858
|
+
};
|
|
31859
|
+
export type OnboardingJustificationsPartialUpdateResponse = OnboardingJustificationsPartialUpdateResponses[keyof OnboardingJustificationsPartialUpdateResponses];
|
|
31860
|
+
export type OnboardingJustificationsUpdateData = {
|
|
31861
|
+
body: OnboardingJustificationRequest;
|
|
31862
|
+
path: {
|
|
31863
|
+
uuid: string;
|
|
31864
|
+
};
|
|
31865
|
+
query?: never;
|
|
31866
|
+
url: '/api/onboarding-justifications/{uuid}/';
|
|
31867
|
+
};
|
|
31868
|
+
export type OnboardingJustificationsUpdateResponses = {
|
|
31869
|
+
200: OnboardingJustification;
|
|
31870
|
+
};
|
|
31871
|
+
export type OnboardingJustificationsUpdateResponse = OnboardingJustificationsUpdateResponses[keyof OnboardingJustificationsUpdateResponses];
|
|
31872
|
+
export type OnboardingJustificationsAttachDocumentData = {
|
|
31873
|
+
body?: OnboardingJustificationDocumentationRequest;
|
|
31874
|
+
path: {
|
|
31875
|
+
uuid: string;
|
|
31876
|
+
};
|
|
31877
|
+
query?: never;
|
|
31878
|
+
url: '/api/onboarding-justifications/{uuid}/attach_document/';
|
|
31879
|
+
};
|
|
31880
|
+
export type OnboardingJustificationsAttachDocumentResponses = {
|
|
31881
|
+
200: OnboardingJustificationDocumentation;
|
|
31882
|
+
};
|
|
31883
|
+
export type OnboardingJustificationsAttachDocumentResponse = OnboardingJustificationsAttachDocumentResponses[keyof OnboardingJustificationsAttachDocumentResponses];
|
|
31884
|
+
export type OnboardingJustificationsCreateJustificationData = {
|
|
31885
|
+
body: OnboardingJustificationCreateRequest;
|
|
31886
|
+
path?: never;
|
|
31887
|
+
query?: never;
|
|
31888
|
+
url: '/api/onboarding-justifications/create_justification/';
|
|
31889
|
+
};
|
|
31890
|
+
export type OnboardingJustificationsCreateJustificationResponses = {
|
|
31891
|
+
200: OnboardingJustification;
|
|
31892
|
+
};
|
|
31893
|
+
export type OnboardingJustificationsCreateJustificationResponse = OnboardingJustificationsCreateJustificationResponses[keyof OnboardingJustificationsCreateJustificationResponses];
|
|
31894
|
+
export type OnboardingVerificationsListData = {
|
|
31895
|
+
body?: never;
|
|
31896
|
+
path?: never;
|
|
31897
|
+
query?: {
|
|
31898
|
+
/**
|
|
31899
|
+
* A page number within the paginated result set.
|
|
31900
|
+
*/
|
|
31901
|
+
page?: number;
|
|
31902
|
+
/**
|
|
31903
|
+
* Number of results to return per page.
|
|
31904
|
+
*/
|
|
31905
|
+
page_size?: number;
|
|
31906
|
+
};
|
|
31907
|
+
url: '/api/onboarding-verifications/';
|
|
31908
|
+
};
|
|
31909
|
+
export type OnboardingVerificationsListResponses = {
|
|
31910
|
+
200: Array<OnboardingVerification>;
|
|
31911
|
+
};
|
|
31912
|
+
export type OnboardingVerificationsListResponse = OnboardingVerificationsListResponses[keyof OnboardingVerificationsListResponses];
|
|
31913
|
+
export type OnboardingVerificationsCountData = {
|
|
31914
|
+
body?: never;
|
|
31915
|
+
path?: never;
|
|
31916
|
+
query?: {
|
|
31917
|
+
/**
|
|
31918
|
+
* A page number within the paginated result set.
|
|
31919
|
+
*/
|
|
31920
|
+
page?: number;
|
|
31921
|
+
/**
|
|
31922
|
+
* Number of results to return per page.
|
|
31923
|
+
*/
|
|
31924
|
+
page_size?: number;
|
|
31925
|
+
};
|
|
31926
|
+
url: '/api/onboarding-verifications/';
|
|
31927
|
+
};
|
|
31928
|
+
export type OnboardingVerificationsCountResponses = {
|
|
31929
|
+
/**
|
|
31930
|
+
* No response body
|
|
31931
|
+
*/
|
|
31932
|
+
200: unknown;
|
|
31933
|
+
};
|
|
31934
|
+
export type OnboardingVerificationsCreateData = {
|
|
31935
|
+
body: OnboardingVerificationRequest;
|
|
31936
|
+
path?: never;
|
|
31937
|
+
query?: never;
|
|
31938
|
+
url: '/api/onboarding-verifications/';
|
|
31939
|
+
};
|
|
31940
|
+
export type OnboardingVerificationsCreateResponses = {
|
|
31941
|
+
201: OnboardingVerification;
|
|
31942
|
+
};
|
|
31943
|
+
export type OnboardingVerificationsCreateResponse = OnboardingVerificationsCreateResponses[keyof OnboardingVerificationsCreateResponses];
|
|
31944
|
+
export type OnboardingVerificationsDestroyData = {
|
|
31945
|
+
body?: never;
|
|
31946
|
+
path: {
|
|
31947
|
+
uuid: string;
|
|
31948
|
+
};
|
|
31949
|
+
query?: never;
|
|
31950
|
+
url: '/api/onboarding-verifications/{uuid}/';
|
|
31951
|
+
};
|
|
31952
|
+
export type OnboardingVerificationsDestroyResponses = {
|
|
31953
|
+
/**
|
|
31954
|
+
* No response body
|
|
31955
|
+
*/
|
|
31956
|
+
204: void;
|
|
31957
|
+
};
|
|
31958
|
+
export type OnboardingVerificationsDestroyResponse = OnboardingVerificationsDestroyResponses[keyof OnboardingVerificationsDestroyResponses];
|
|
31959
|
+
export type OnboardingVerificationsRetrieveData = {
|
|
31960
|
+
body?: never;
|
|
31961
|
+
path: {
|
|
31962
|
+
uuid: string;
|
|
31963
|
+
};
|
|
31964
|
+
query?: never;
|
|
31965
|
+
url: '/api/onboarding-verifications/{uuid}/';
|
|
31966
|
+
};
|
|
31967
|
+
export type OnboardingVerificationsRetrieveResponses = {
|
|
31968
|
+
200: OnboardingVerification;
|
|
31969
|
+
};
|
|
31970
|
+
export type OnboardingVerificationsRetrieveResponse = OnboardingVerificationsRetrieveResponses[keyof OnboardingVerificationsRetrieveResponses];
|
|
31971
|
+
export type OnboardingVerificationsPartialUpdateData = {
|
|
31972
|
+
body?: PatchedOnboardingVerificationRequest;
|
|
31973
|
+
path: {
|
|
31974
|
+
uuid: string;
|
|
31975
|
+
};
|
|
31976
|
+
query?: never;
|
|
31977
|
+
url: '/api/onboarding-verifications/{uuid}/';
|
|
31978
|
+
};
|
|
31979
|
+
export type OnboardingVerificationsPartialUpdateResponses = {
|
|
31980
|
+
200: OnboardingVerification;
|
|
31981
|
+
};
|
|
31982
|
+
export type OnboardingVerificationsPartialUpdateResponse = OnboardingVerificationsPartialUpdateResponses[keyof OnboardingVerificationsPartialUpdateResponses];
|
|
31983
|
+
export type OnboardingVerificationsUpdateData = {
|
|
31984
|
+
body: OnboardingVerificationRequest;
|
|
31985
|
+
path: {
|
|
31986
|
+
uuid: string;
|
|
31987
|
+
};
|
|
31988
|
+
query?: never;
|
|
31989
|
+
url: '/api/onboarding-verifications/{uuid}/';
|
|
31990
|
+
};
|
|
31991
|
+
export type OnboardingVerificationsUpdateResponses = {
|
|
31992
|
+
200: OnboardingVerification;
|
|
31993
|
+
};
|
|
31994
|
+
export type OnboardingVerificationsUpdateResponse = OnboardingVerificationsUpdateResponses[keyof OnboardingVerificationsUpdateResponses];
|
|
31995
|
+
export type OnboardingVerificationsCreateCustomerData = {
|
|
31996
|
+
body?: never;
|
|
31997
|
+
path: {
|
|
31998
|
+
uuid: string;
|
|
31999
|
+
};
|
|
32000
|
+
query?: never;
|
|
32001
|
+
url: '/api/onboarding-verifications/{uuid}/create_customer/';
|
|
32002
|
+
};
|
|
32003
|
+
export type OnboardingVerificationsCreateCustomerResponses = {
|
|
32004
|
+
201: Customer;
|
|
32005
|
+
};
|
|
32006
|
+
export type OnboardingVerificationsCreateCustomerResponse = OnboardingVerificationsCreateCustomerResponses[keyof OnboardingVerificationsCreateCustomerResponses];
|
|
32007
|
+
export type OnboardingVerificationsValidateCompanyData = {
|
|
32008
|
+
body: OnboardingCompanyValidationRequestRequest;
|
|
32009
|
+
path?: never;
|
|
32010
|
+
query?: never;
|
|
32011
|
+
url: '/api/onboarding-verifications/validate_company/';
|
|
32012
|
+
};
|
|
32013
|
+
export type OnboardingVerificationsValidateCompanyResponses = {
|
|
32014
|
+
200: OnboardingVerification;
|
|
32015
|
+
};
|
|
32016
|
+
export type OnboardingVerificationsValidateCompanyResponse = OnboardingVerificationsValidateCompanyResponses[keyof OnboardingVerificationsValidateCompanyResponses];
|
|
32017
|
+
export type OnboardingSupportedCountriesRetrieveData = {
|
|
32018
|
+
body?: never;
|
|
32019
|
+
path?: never;
|
|
32020
|
+
query?: never;
|
|
32021
|
+
url: '/api/onboarding/supported-countries/';
|
|
32022
|
+
};
|
|
31353
32023
|
export type OpenstackBackupsListData = {
|
|
31354
32024
|
body?: never;
|
|
31355
32025
|
path?: never;
|
|
@@ -32608,6 +33278,8 @@ export type OpenstackNetworkRbacPoliciesListData = {
|
|
|
32608
33278
|
policy_type?: 'access_as_external' | 'access_as_shared';
|
|
32609
33279
|
target_tenant?: string;
|
|
32610
33280
|
target_tenant_uuid?: string;
|
|
33281
|
+
tenant?: string;
|
|
33282
|
+
tenant_uuid?: string;
|
|
32611
33283
|
};
|
|
32612
33284
|
url: '/api/openstack-network-rbac-policies/';
|
|
32613
33285
|
};
|
|
@@ -32637,6 +33309,8 @@ export type OpenstackNetworkRbacPoliciesCountData = {
|
|
|
32637
33309
|
policy_type?: 'access_as_external' | 'access_as_shared';
|
|
32638
33310
|
target_tenant?: string;
|
|
32639
33311
|
target_tenant_uuid?: string;
|
|
33312
|
+
tenant?: string;
|
|
33313
|
+
tenant_uuid?: string;
|
|
32640
33314
|
};
|
|
32641
33315
|
url: '/api/openstack-network-rbac-policies/';
|
|
32642
33316
|
};
|
|
@@ -32646,6 +33320,31 @@ export type OpenstackNetworkRbacPoliciesCountResponses = {
|
|
|
32646
33320
|
*/
|
|
32647
33321
|
200: unknown;
|
|
32648
33322
|
};
|
|
33323
|
+
export type OpenstackNetworkRbacPoliciesCreateData = {
|
|
33324
|
+
body: NetworkRbacPolicyRequest;
|
|
33325
|
+
path?: never;
|
|
33326
|
+
query?: never;
|
|
33327
|
+
url: '/api/openstack-network-rbac-policies/';
|
|
33328
|
+
};
|
|
33329
|
+
export type OpenstackNetworkRbacPoliciesCreateResponses = {
|
|
33330
|
+
201: NetworkRbacPolicy;
|
|
33331
|
+
};
|
|
33332
|
+
export type OpenstackNetworkRbacPoliciesCreateResponse = OpenstackNetworkRbacPoliciesCreateResponses[keyof OpenstackNetworkRbacPoliciesCreateResponses];
|
|
33333
|
+
export type OpenstackNetworkRbacPoliciesDestroyData = {
|
|
33334
|
+
body?: never;
|
|
33335
|
+
path: {
|
|
33336
|
+
uuid: string;
|
|
33337
|
+
};
|
|
33338
|
+
query?: never;
|
|
33339
|
+
url: '/api/openstack-network-rbac-policies/{uuid}/';
|
|
33340
|
+
};
|
|
33341
|
+
export type OpenstackNetworkRbacPoliciesDestroyResponses = {
|
|
33342
|
+
/**
|
|
33343
|
+
* No response body
|
|
33344
|
+
*/
|
|
33345
|
+
204: void;
|
|
33346
|
+
};
|
|
33347
|
+
export type OpenstackNetworkRbacPoliciesDestroyResponse = OpenstackNetworkRbacPoliciesDestroyResponses[keyof OpenstackNetworkRbacPoliciesDestroyResponses];
|
|
32649
33348
|
export type OpenstackNetworkRbacPoliciesRetrieveData = {
|
|
32650
33349
|
body?: never;
|
|
32651
33350
|
path: {
|
|
@@ -32658,6 +33357,30 @@ export type OpenstackNetworkRbacPoliciesRetrieveResponses = {
|
|
|
32658
33357
|
200: NetworkRbacPolicy;
|
|
32659
33358
|
};
|
|
32660
33359
|
export type OpenstackNetworkRbacPoliciesRetrieveResponse = OpenstackNetworkRbacPoliciesRetrieveResponses[keyof OpenstackNetworkRbacPoliciesRetrieveResponses];
|
|
33360
|
+
export type OpenstackNetworkRbacPoliciesPartialUpdateData = {
|
|
33361
|
+
body?: PatchedNetworkRbacPolicyRequest;
|
|
33362
|
+
path: {
|
|
33363
|
+
uuid: string;
|
|
33364
|
+
};
|
|
33365
|
+
query?: never;
|
|
33366
|
+
url: '/api/openstack-network-rbac-policies/{uuid}/';
|
|
33367
|
+
};
|
|
33368
|
+
export type OpenstackNetworkRbacPoliciesPartialUpdateResponses = {
|
|
33369
|
+
200: NetworkRbacPolicy;
|
|
33370
|
+
};
|
|
33371
|
+
export type OpenstackNetworkRbacPoliciesPartialUpdateResponse = OpenstackNetworkRbacPoliciesPartialUpdateResponses[keyof OpenstackNetworkRbacPoliciesPartialUpdateResponses];
|
|
33372
|
+
export type OpenstackNetworkRbacPoliciesUpdateData = {
|
|
33373
|
+
body: NetworkRbacPolicyRequest;
|
|
33374
|
+
path: {
|
|
33375
|
+
uuid: string;
|
|
33376
|
+
};
|
|
33377
|
+
query?: never;
|
|
33378
|
+
url: '/api/openstack-network-rbac-policies/{uuid}/';
|
|
33379
|
+
};
|
|
33380
|
+
export type OpenstackNetworkRbacPoliciesUpdateResponses = {
|
|
33381
|
+
200: NetworkRbacPolicy;
|
|
33382
|
+
};
|
|
33383
|
+
export type OpenstackNetworkRbacPoliciesUpdateResponse = OpenstackNetworkRbacPoliciesUpdateResponses[keyof OpenstackNetworkRbacPoliciesUpdateResponses];
|
|
32661
33384
|
export type OpenstackNetworksListData = {
|
|
32662
33385
|
body?: never;
|
|
32663
33386
|
path?: never;
|
|
@@ -32857,7 +33580,7 @@ export type OpenstackNetworksPullResponses = {
|
|
|
32857
33580
|
200: unknown;
|
|
32858
33581
|
};
|
|
32859
33582
|
export type OpenstackNetworksRbacPolicyCreateData = {
|
|
32860
|
-
body:
|
|
33583
|
+
body: DeprecatedNetworkRbacPolicyRequest;
|
|
32861
33584
|
path: {
|
|
32862
33585
|
uuid: string;
|
|
32863
33586
|
};
|
|
@@ -32865,7 +33588,7 @@ export type OpenstackNetworksRbacPolicyCreateData = {
|
|
|
32865
33588
|
url: '/api/openstack-networks/{uuid}/rbac_policy_create/';
|
|
32866
33589
|
};
|
|
32867
33590
|
export type OpenstackNetworksRbacPolicyCreateResponses = {
|
|
32868
|
-
200:
|
|
33591
|
+
200: DeprecatedNetworkRbacPolicy;
|
|
32869
33592
|
};
|
|
32870
33593
|
export type OpenstackNetworksRbacPolicyCreateResponse = OpenstackNetworksRbacPolicyCreateResponses[keyof OpenstackNetworksRbacPolicyCreateResponses];
|
|
32871
33594
|
export type OpenstackNetworksRbacPolicyDeleteDestroyData = {
|
|
@@ -35652,7 +36375,7 @@ export type ProjectsListData = {
|
|
|
35652
36375
|
customer_name?: string;
|
|
35653
36376
|
customer_native_name?: string;
|
|
35654
36377
|
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'>;
|
|
36378
|
+
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
36379
|
/**
|
|
35657
36380
|
* Modified after
|
|
35658
36381
|
*/
|
|
@@ -35837,7 +36560,7 @@ export type ProjectsRetrieveData = {
|
|
|
35837
36560
|
uuid: string;
|
|
35838
36561
|
};
|
|
35839
36562
|
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'>;
|
|
36563
|
+
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
36564
|
};
|
|
35842
36565
|
url: '/api/projects/{uuid}/';
|
|
35843
36566
|
};
|
|
@@ -36060,6 +36783,34 @@ export type ProjectsUpdateUserResponses = {
|
|
|
36060
36783
|
200: UserRoleExpirationTime;
|
|
36061
36784
|
};
|
|
36062
36785
|
export type ProjectsUpdateUserResponse = ProjectsUpdateUserResponses[keyof ProjectsUpdateUserResponses];
|
|
36786
|
+
export type ProjectsChecklistTemplateRetrieveData = {
|
|
36787
|
+
body?: never;
|
|
36788
|
+
path?: never;
|
|
36789
|
+
query?: never;
|
|
36790
|
+
url: '/api/projects/checklist-template/';
|
|
36791
|
+
};
|
|
36792
|
+
export type ProjectsChecklistTemplateRetrieveErrors = {
|
|
36793
|
+
/**
|
|
36794
|
+
* No checklist configured
|
|
36795
|
+
*/
|
|
36796
|
+
400: unknown;
|
|
36797
|
+
};
|
|
36798
|
+
export type ProjectsChecklistTemplateRetrieveResponses = {
|
|
36799
|
+
200: ChecklistTemplate;
|
|
36800
|
+
};
|
|
36801
|
+
export type ProjectsChecklistTemplateRetrieveResponse = ProjectsChecklistTemplateRetrieveResponses[keyof ProjectsChecklistTemplateRetrieveResponses];
|
|
36802
|
+
export type ProjectsChecklistTemplateCountData = {
|
|
36803
|
+
body?: never;
|
|
36804
|
+
path?: never;
|
|
36805
|
+
query?: never;
|
|
36806
|
+
url: '/api/projects/checklist-template/';
|
|
36807
|
+
};
|
|
36808
|
+
export type ProjectsChecklistTemplateCountResponses = {
|
|
36809
|
+
/**
|
|
36810
|
+
* No response body
|
|
36811
|
+
*/
|
|
36812
|
+
200: unknown;
|
|
36813
|
+
};
|
|
36063
36814
|
export type PromotionsCampaignsListData = {
|
|
36064
36815
|
body?: never;
|
|
36065
36816
|
path?: never;
|
|
@@ -36737,6 +37488,34 @@ export type ProposalProposalsUpdateUserResponses = {
|
|
|
36737
37488
|
200: UserRoleExpirationTime;
|
|
36738
37489
|
};
|
|
36739
37490
|
export type ProposalProposalsUpdateUserResponse = ProposalProposalsUpdateUserResponses[keyof ProposalProposalsUpdateUserResponses];
|
|
37491
|
+
export type ProposalProposalsChecklistTemplateRetrieveData = {
|
|
37492
|
+
body?: never;
|
|
37493
|
+
path?: never;
|
|
37494
|
+
query?: never;
|
|
37495
|
+
url: '/api/proposal-proposals/checklist-template/';
|
|
37496
|
+
};
|
|
37497
|
+
export type ProposalProposalsChecklistTemplateRetrieveErrors = {
|
|
37498
|
+
/**
|
|
37499
|
+
* No checklist configured
|
|
37500
|
+
*/
|
|
37501
|
+
400: unknown;
|
|
37502
|
+
};
|
|
37503
|
+
export type ProposalProposalsChecklistTemplateRetrieveResponses = {
|
|
37504
|
+
200: ChecklistTemplate;
|
|
37505
|
+
};
|
|
37506
|
+
export type ProposalProposalsChecklistTemplateRetrieveResponse = ProposalProposalsChecklistTemplateRetrieveResponses[keyof ProposalProposalsChecklistTemplateRetrieveResponses];
|
|
37507
|
+
export type ProposalProposalsChecklistTemplateCountData = {
|
|
37508
|
+
body?: never;
|
|
37509
|
+
path?: never;
|
|
37510
|
+
query?: never;
|
|
37511
|
+
url: '/api/proposal-proposals/checklist-template/';
|
|
37512
|
+
};
|
|
37513
|
+
export type ProposalProposalsChecklistTemplateCountResponses = {
|
|
37514
|
+
/**
|
|
37515
|
+
* No response body
|
|
37516
|
+
*/
|
|
37517
|
+
200: unknown;
|
|
37518
|
+
};
|
|
36740
37519
|
export type ProposalProtectedCallsListData = {
|
|
36741
37520
|
body?: never;
|
|
36742
37521
|
path?: never;
|
|
@@ -37034,6 +37813,10 @@ export type ProposalProtectedCallsOfferingsListData = {
|
|
|
37034
37813
|
* Number of results to return per page.
|
|
37035
37814
|
*/
|
|
37036
37815
|
page_size?: number;
|
|
37816
|
+
/**
|
|
37817
|
+
* Filter by state
|
|
37818
|
+
*/
|
|
37819
|
+
state?: string;
|
|
37037
37820
|
};
|
|
37038
37821
|
url: '/api/proposal-protected-calls/{uuid}/offerings/';
|
|
37039
37822
|
};
|