waldur-js-client 7.8.3 → 7.8.5-dev.0
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 +175 -1
- package/dist/sdk.gen.js +1377 -236
- package/dist/types.gen.d.ts +1333 -59
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -40,6 +40,96 @@ export type AdminAnnouncementRequest = {
|
|
|
40
40
|
type?: AdminAnnouncementTypeEnum;
|
|
41
41
|
};
|
|
42
42
|
export type AdminAnnouncementTypeEnum = 'information' | 'warning' | 'danger';
|
|
43
|
+
export type AgentEventSubscriptionCreateRequest = {
|
|
44
|
+
/**
|
|
45
|
+
* The type of object to observe for events
|
|
46
|
+
*/
|
|
47
|
+
observable_object_type: ObservableObjectTypeEnum;
|
|
48
|
+
/**
|
|
49
|
+
* Optional description for the event subscription
|
|
50
|
+
*/
|
|
51
|
+
description?: string;
|
|
52
|
+
};
|
|
53
|
+
export type AgentIdentity = {
|
|
54
|
+
readonly uuid: string;
|
|
55
|
+
readonly url: string;
|
|
56
|
+
offering: string;
|
|
57
|
+
name: string;
|
|
58
|
+
version?: string | null;
|
|
59
|
+
dependencies?: unknown;
|
|
60
|
+
/**
|
|
61
|
+
* Example: '/etc/waldur/agent.yaml'
|
|
62
|
+
*/
|
|
63
|
+
config_file_path?: string | null;
|
|
64
|
+
config_file_content?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* Last restarted at
|
|
67
|
+
*/
|
|
68
|
+
last_restarted?: string;
|
|
69
|
+
readonly created: string;
|
|
70
|
+
readonly modified: string;
|
|
71
|
+
};
|
|
72
|
+
export type AgentIdentityRequest = {
|
|
73
|
+
offering: string;
|
|
74
|
+
name: string;
|
|
75
|
+
version?: string | null;
|
|
76
|
+
dependencies?: unknown;
|
|
77
|
+
/**
|
|
78
|
+
* Example: '/etc/waldur/agent.yaml'
|
|
79
|
+
*/
|
|
80
|
+
config_file_path?: string | null;
|
|
81
|
+
config_file_content?: string | null;
|
|
82
|
+
/**
|
|
83
|
+
* Last restarted at
|
|
84
|
+
*/
|
|
85
|
+
last_restarted?: string;
|
|
86
|
+
};
|
|
87
|
+
export type AgentProcessor = {
|
|
88
|
+
readonly uuid: string;
|
|
89
|
+
readonly url: string;
|
|
90
|
+
service: string;
|
|
91
|
+
readonly service_name: string;
|
|
92
|
+
name: string;
|
|
93
|
+
last_run?: string | null;
|
|
94
|
+
/**
|
|
95
|
+
* Type of the backend, for example SLURM.
|
|
96
|
+
*/
|
|
97
|
+
backend_type: string;
|
|
98
|
+
backend_version?: string | null;
|
|
99
|
+
readonly created: string;
|
|
100
|
+
readonly modified: string;
|
|
101
|
+
};
|
|
102
|
+
export type AgentProcessorCreateRequest = {
|
|
103
|
+
name: string;
|
|
104
|
+
/**
|
|
105
|
+
* Type of the backend, for example SLURM.
|
|
106
|
+
*/
|
|
107
|
+
backend_type: string;
|
|
108
|
+
backend_version?: string | null;
|
|
109
|
+
};
|
|
110
|
+
export type AgentService = {
|
|
111
|
+
readonly uuid: string;
|
|
112
|
+
readonly url: string;
|
|
113
|
+
identity: string;
|
|
114
|
+
readonly identity_name: string;
|
|
115
|
+
name: string;
|
|
116
|
+
mode?: string | null;
|
|
117
|
+
state: AgentServiceStateEnum;
|
|
118
|
+
statistics?: unknown;
|
|
119
|
+
readonly created: string;
|
|
120
|
+
readonly modified: string;
|
|
121
|
+
};
|
|
122
|
+
export type AgentServiceCreateRequest = {
|
|
123
|
+
name: string;
|
|
124
|
+
mode?: string | null;
|
|
125
|
+
};
|
|
126
|
+
export type AgentServiceStateEnum = 'Active' | 'Idle' | 'Error';
|
|
127
|
+
export type AgentServiceStatisticsRequest = {
|
|
128
|
+
/**
|
|
129
|
+
* Statistics data to be stored for the service
|
|
130
|
+
*/
|
|
131
|
+
statistics: unknown;
|
|
132
|
+
};
|
|
43
133
|
export type AgentTypeEnum = 'Order processing' | 'Usage reporting' | 'Glauth sync' | 'Resource sync' | 'Event processing' | 'unknown';
|
|
44
134
|
export type AgreementTypeEnum = 'TOS' | 'PP';
|
|
45
135
|
export type AllocationTimeEnum = 'on_decision' | 'fixed_date';
|
|
@@ -1098,7 +1188,7 @@ export type CallRound = {
|
|
|
1098
1188
|
cutoff_time: string;
|
|
1099
1189
|
readonly call_uuid: string;
|
|
1100
1190
|
readonly call_name: string;
|
|
1101
|
-
status:
|
|
1191
|
+
status: RoundStatus;
|
|
1102
1192
|
};
|
|
1103
1193
|
export type CallStates = 'draft' | 'active' | 'archived';
|
|
1104
1194
|
export type Campaign = {
|
|
@@ -1439,6 +1529,13 @@ export type ChecklistReviewerResponse = {
|
|
|
1439
1529
|
completion: ChecklistCompletionReviewer;
|
|
1440
1530
|
questions: Array<QuestionWithAnswerReviewer>;
|
|
1441
1531
|
};
|
|
1532
|
+
export type ChecklistTemplate = {
|
|
1533
|
+
readonly checklist: {
|
|
1534
|
+
[key: string]: unknown;
|
|
1535
|
+
};
|
|
1536
|
+
questions: Array<Question>;
|
|
1537
|
+
initial_visible_questions: Array<Question>;
|
|
1538
|
+
};
|
|
1442
1539
|
export type ChecklistTypeEnum = 'project_compliance' | 'proposal_compliance' | 'offering_compliance' | 'project_metadata';
|
|
1443
1540
|
export type ClusterSecurityGroup = {
|
|
1444
1541
|
readonly uuid: string;
|
|
@@ -1678,23 +1775,23 @@ export type ConstanceSettings = {
|
|
|
1678
1775
|
WALDUR_SUPPORT_ENABLED?: boolean;
|
|
1679
1776
|
WALDUR_SUPPORT_ACTIVE_BACKEND_TYPE?: string;
|
|
1680
1777
|
WALDUR_SUPPORT_DISPLAY_REQUEST_TYPE?: boolean;
|
|
1681
|
-
ATLASSIAN_USE_OLD_API?: boolean;
|
|
1682
|
-
ATLASSIAN_USE_TEENAGE_API?: boolean;
|
|
1683
|
-
ATLASSIAN_USE_AUTOMATIC_REQUEST_MAPPING?: boolean;
|
|
1684
1778
|
ATLASSIAN_MAP_WALDUR_USERS_TO_SERVICEDESK_AGENTS?: boolean;
|
|
1685
|
-
ATLASSIAN_STRANGE_SETTING?: number;
|
|
1686
1779
|
ATLASSIAN_API_URL?: string;
|
|
1687
1780
|
ATLASSIAN_USERNAME?: string;
|
|
1688
1781
|
ATLASSIAN_PASSWORD?: string;
|
|
1689
1782
|
ATLASSIAN_EMAIL?: string;
|
|
1783
|
+
ATLASSIAN_USE_OLD_API?: boolean;
|
|
1690
1784
|
ATLASSIAN_TOKEN?: string;
|
|
1785
|
+
ATLASSIAN_PERSONAL_ACCESS_TOKEN?: string;
|
|
1786
|
+
ATLASSIAN_OAUTH2_CLIENT_ID?: string;
|
|
1787
|
+
ATLASSIAN_OAUTH2_ACCESS_TOKEN?: string;
|
|
1788
|
+
ATLASSIAN_OAUTH2_TOKEN_TYPE?: string;
|
|
1691
1789
|
ATLASSIAN_VERIFY_SSL?: boolean;
|
|
1692
1790
|
ATLASSIAN_PROJECT_ID?: string;
|
|
1693
1791
|
ATLASSIAN_SHARED_USERNAME?: boolean;
|
|
1694
1792
|
ATLASSIAN_CUSTOM_ISSUE_FIELD_MAPPING_ENABLED?: boolean;
|
|
1695
1793
|
ATLASSIAN_DEFAULT_OFFERING_ISSUE_TYPE?: string;
|
|
1696
1794
|
ATLASSIAN_EXCLUDED_ATTACHMENT_TYPES?: string;
|
|
1697
|
-
ATLASSIAN_PULL_PRIORITIES?: boolean;
|
|
1698
1795
|
ATLASSIAN_ISSUE_TYPES?: string;
|
|
1699
1796
|
ATLASSIAN_DESCRIPTION_TEMPLATE?: string;
|
|
1700
1797
|
ATLASSIAN_SUMMARY_TEMPLATE?: string;
|
|
@@ -1757,6 +1854,11 @@ export type ConstanceSettings = {
|
|
|
1757
1854
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
1758
1855
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
1759
1856
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
1857
|
+
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
1858
|
+
ONBOARDING_ARIREGISTER_BASE_URL?: string;
|
|
1859
|
+
ONBOARDING_ARIREGISTER_USERNAME?: string;
|
|
1860
|
+
ONBOARDING_ARIREGISTER_PASSWORD?: string;
|
|
1861
|
+
ONBOARDING_ARIREGISTER_TIMEOUT?: number;
|
|
1760
1862
|
};
|
|
1761
1863
|
export type ConstanceSettingsRequest = {
|
|
1762
1864
|
SITE_NAME?: string;
|
|
@@ -1816,23 +1918,23 @@ export type ConstanceSettingsRequest = {
|
|
|
1816
1918
|
WALDUR_SUPPORT_ENABLED?: boolean;
|
|
1817
1919
|
WALDUR_SUPPORT_ACTIVE_BACKEND_TYPE?: string;
|
|
1818
1920
|
WALDUR_SUPPORT_DISPLAY_REQUEST_TYPE?: boolean;
|
|
1819
|
-
ATLASSIAN_USE_OLD_API?: boolean;
|
|
1820
|
-
ATLASSIAN_USE_TEENAGE_API?: boolean;
|
|
1821
|
-
ATLASSIAN_USE_AUTOMATIC_REQUEST_MAPPING?: boolean;
|
|
1822
1921
|
ATLASSIAN_MAP_WALDUR_USERS_TO_SERVICEDESK_AGENTS?: boolean;
|
|
1823
|
-
ATLASSIAN_STRANGE_SETTING?: number;
|
|
1824
1922
|
ATLASSIAN_API_URL?: string;
|
|
1825
1923
|
ATLASSIAN_USERNAME?: string;
|
|
1826
1924
|
ATLASSIAN_PASSWORD?: string;
|
|
1827
1925
|
ATLASSIAN_EMAIL?: string;
|
|
1926
|
+
ATLASSIAN_USE_OLD_API?: boolean;
|
|
1828
1927
|
ATLASSIAN_TOKEN?: string;
|
|
1928
|
+
ATLASSIAN_PERSONAL_ACCESS_TOKEN?: string;
|
|
1929
|
+
ATLASSIAN_OAUTH2_CLIENT_ID?: string;
|
|
1930
|
+
ATLASSIAN_OAUTH2_ACCESS_TOKEN?: string;
|
|
1931
|
+
ATLASSIAN_OAUTH2_TOKEN_TYPE?: string;
|
|
1829
1932
|
ATLASSIAN_VERIFY_SSL?: boolean;
|
|
1830
1933
|
ATLASSIAN_PROJECT_ID?: string;
|
|
1831
1934
|
ATLASSIAN_SHARED_USERNAME?: boolean;
|
|
1832
1935
|
ATLASSIAN_CUSTOM_ISSUE_FIELD_MAPPING_ENABLED?: boolean;
|
|
1833
1936
|
ATLASSIAN_DEFAULT_OFFERING_ISSUE_TYPE?: string;
|
|
1834
1937
|
ATLASSIAN_EXCLUDED_ATTACHMENT_TYPES?: string;
|
|
1835
|
-
ATLASSIAN_PULL_PRIORITIES?: boolean;
|
|
1836
1938
|
ATLASSIAN_ISSUE_TYPES?: string;
|
|
1837
1939
|
ATLASSIAN_DESCRIPTION_TEMPLATE?: string;
|
|
1838
1940
|
ATLASSIAN_SUMMARY_TEMPLATE?: string;
|
|
@@ -1895,6 +1997,11 @@ export type ConstanceSettingsRequest = {
|
|
|
1895
1997
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
1896
1998
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
1897
1999
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
2000
|
+
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
2001
|
+
ONBOARDING_ARIREGISTER_BASE_URL?: string;
|
|
2002
|
+
ONBOARDING_ARIREGISTER_USERNAME?: string;
|
|
2003
|
+
ONBOARDING_ARIREGISTER_PASSWORD?: string;
|
|
2004
|
+
ONBOARDING_ARIREGISTER_TIMEOUT?: number;
|
|
1898
2005
|
};
|
|
1899
2006
|
export type ContainerFormatEnum = 'bare' | 'ovf' | 'aki' | 'ami' | 'ari';
|
|
1900
2007
|
export type CoreAuthToken = {
|
|
@@ -2062,6 +2169,7 @@ export type Customer = {
|
|
|
2062
2169
|
image?: string | null;
|
|
2063
2170
|
readonly blocked?: boolean;
|
|
2064
2171
|
readonly archived?: boolean;
|
|
2172
|
+
readonly display_billing_info_in_projects?: boolean;
|
|
2065
2173
|
readonly default_tax_percent?: string;
|
|
2066
2174
|
/**
|
|
2067
2175
|
* Start date of accounting
|
|
@@ -2336,6 +2444,27 @@ export type DeleteAttachmentsRequest = {
|
|
|
2336
2444
|
};
|
|
2337
2445
|
export type DependencyLogicOperatorEnum = 'and' | 'or';
|
|
2338
2446
|
export type DeploymentModeEnum = 'self_managed' | 'managed';
|
|
2447
|
+
export type DeprecatedNetworkRbacPolicy = {
|
|
2448
|
+
readonly url: string;
|
|
2449
|
+
readonly uuid: string;
|
|
2450
|
+
readonly network: string;
|
|
2451
|
+
readonly network_name: string;
|
|
2452
|
+
target_tenant: string;
|
|
2453
|
+
readonly target_tenant_name: string;
|
|
2454
|
+
readonly backend_id: string;
|
|
2455
|
+
/**
|
|
2456
|
+
* Type of access granted - either shared access or external network access
|
|
2457
|
+
*/
|
|
2458
|
+
policy_type?: PolicyTypeEnum;
|
|
2459
|
+
readonly created: string;
|
|
2460
|
+
};
|
|
2461
|
+
export type DeprecatedNetworkRbacPolicyRequest = {
|
|
2462
|
+
target_tenant: string;
|
|
2463
|
+
/**
|
|
2464
|
+
* Type of access granted - either shared access or external network access
|
|
2465
|
+
*/
|
|
2466
|
+
policy_type?: PolicyTypeEnum;
|
|
2467
|
+
};
|
|
2339
2468
|
export type DetailState = {
|
|
2340
2469
|
readonly detail: string;
|
|
2341
2470
|
readonly state: string;
|
|
@@ -2571,7 +2700,7 @@ export type EventSubscriptionRequest = {
|
|
|
2571
2700
|
description?: string;
|
|
2572
2701
|
observable_objects?: unknown;
|
|
2573
2702
|
};
|
|
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';
|
|
2703
|
+
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
2704
|
export type ExecutionStateEnum = 'Scheduled' | 'Processing' | 'OK' | 'Erred';
|
|
2576
2705
|
export type ExternalLink = {
|
|
2577
2706
|
readonly url: string;
|
|
@@ -3261,7 +3390,6 @@ export type Issue = {
|
|
|
3261
3390
|
readonly resource_name: string;
|
|
3262
3391
|
readonly created: string;
|
|
3263
3392
|
readonly modified: string;
|
|
3264
|
-
readonly first_response_sla: string | null;
|
|
3265
3393
|
template?: string | null;
|
|
3266
3394
|
feedback: NestedFeedback | null;
|
|
3267
3395
|
readonly resolved: boolean | null;
|
|
@@ -3846,6 +3974,14 @@ export type MergedPluginOptions = {
|
|
|
3846
3974
|
* GLAuth homedir prefix
|
|
3847
3975
|
*/
|
|
3848
3976
|
homedir_prefix?: string;
|
|
3977
|
+
/**
|
|
3978
|
+
* HEAppE scratch project directory
|
|
3979
|
+
*/
|
|
3980
|
+
scratch_project_directory?: string;
|
|
3981
|
+
/**
|
|
3982
|
+
* HEAppE project permanent directory
|
|
3983
|
+
*/
|
|
3984
|
+
project_permanent_directory?: string;
|
|
3849
3985
|
/**
|
|
3850
3986
|
* GLAuth initial primary group number
|
|
3851
3987
|
*/
|
|
@@ -4008,6 +4144,14 @@ export type MergedPluginOptionsRequest = {
|
|
|
4008
4144
|
* GLAuth homedir prefix
|
|
4009
4145
|
*/
|
|
4010
4146
|
homedir_prefix?: string;
|
|
4147
|
+
/**
|
|
4148
|
+
* HEAppE scratch project directory
|
|
4149
|
+
*/
|
|
4150
|
+
scratch_project_directory?: string;
|
|
4151
|
+
/**
|
|
4152
|
+
* HEAppE project permanent directory
|
|
4153
|
+
*/
|
|
4154
|
+
project_permanent_directory?: string;
|
|
4011
4155
|
/**
|
|
4012
4156
|
* GLAuth initial primary group number
|
|
4013
4157
|
*/
|
|
@@ -4653,7 +4797,7 @@ export type NestedRound = {
|
|
|
4653
4797
|
readonly name?: string;
|
|
4654
4798
|
start_time?: string;
|
|
4655
4799
|
cutoff_time?: string;
|
|
4656
|
-
status?:
|
|
4800
|
+
status?: RoundStatus;
|
|
4657
4801
|
review_strategy?: ReviewStrategyEnum;
|
|
4658
4802
|
deciding_entity?: DecidingEntityEnum;
|
|
4659
4803
|
allocation_time?: AllocationTimeEnum;
|
|
@@ -4764,7 +4908,7 @@ export type NestedSecurityGroupRuleRequest = {
|
|
|
4764
4908
|
export type NetworkRbacPolicy = {
|
|
4765
4909
|
readonly url?: string;
|
|
4766
4910
|
readonly uuid?: string;
|
|
4767
|
-
|
|
4911
|
+
network?: string;
|
|
4768
4912
|
readonly network_name?: string;
|
|
4769
4913
|
target_tenant?: string;
|
|
4770
4914
|
readonly target_tenant_name?: string;
|
|
@@ -4776,6 +4920,7 @@ export type NetworkRbacPolicy = {
|
|
|
4776
4920
|
readonly created?: string;
|
|
4777
4921
|
};
|
|
4778
4922
|
export type NetworkRbacPolicyRequest = {
|
|
4923
|
+
network: string;
|
|
4779
4924
|
target_tenant: string;
|
|
4780
4925
|
/**
|
|
4781
4926
|
* Type of access granted - either shared access or external network access
|
|
@@ -4796,9 +4941,9 @@ export type Notification = {
|
|
|
4796
4941
|
readonly templates: Array<NotificationTemplateDetailSerializers>;
|
|
4797
4942
|
/**
|
|
4798
4943
|
* Finds the notification definition in the global NOTIFICATIONS
|
|
4799
|
-
* dictionary and returns its 'context'
|
|
4944
|
+
* dictionary and returns its 'context' schema.
|
|
4800
4945
|
*/
|
|
4801
|
-
readonly
|
|
4946
|
+
readonly context_schema: {
|
|
4802
4947
|
[key: string]: unknown;
|
|
4803
4948
|
};
|
|
4804
4949
|
};
|
|
@@ -4814,7 +4959,7 @@ export type NotificationTemplateDetailSerializers = {
|
|
|
4814
4959
|
*/
|
|
4815
4960
|
path: string;
|
|
4816
4961
|
name: string;
|
|
4817
|
-
readonly content: string;
|
|
4962
|
+
readonly content: string | null;
|
|
4818
4963
|
readonly original_content: string | null;
|
|
4819
4964
|
readonly is_content_overridden: boolean;
|
|
4820
4965
|
};
|
|
@@ -4829,6 +4974,7 @@ export type NotificationTemplateUpdateSerializersRequest = {
|
|
|
4829
4974
|
content: string;
|
|
4830
4975
|
};
|
|
4831
4976
|
export type NullEnum = unknown;
|
|
4977
|
+
export type ObservableObjectTypeEnum = 'order' | 'user_role' | 'resource' | 'offering_user' | 'importable_resources' | 'service_account' | 'course_account';
|
|
4832
4978
|
export type ObtainAuthTokenRequest = {
|
|
4833
4979
|
username: string;
|
|
4834
4980
|
password: string;
|
|
@@ -4949,6 +5095,10 @@ export type OfferingComponent = {
|
|
|
4949
5095
|
default_limit?: number | null;
|
|
4950
5096
|
readonly factor?: number | null;
|
|
4951
5097
|
readonly is_builtin?: boolean;
|
|
5098
|
+
is_prepaid?: boolean;
|
|
5099
|
+
overage_component?: string | null;
|
|
5100
|
+
min_prepaid_duration?: number | null;
|
|
5101
|
+
max_prepaid_duration?: number | null;
|
|
4952
5102
|
};
|
|
4953
5103
|
export type OfferingComponentLimit = {
|
|
4954
5104
|
min: number;
|
|
@@ -4987,6 +5137,10 @@ export type OfferingComponentRequest = {
|
|
|
4987
5137
|
max_available_limit?: number | null;
|
|
4988
5138
|
is_boolean?: boolean;
|
|
4989
5139
|
default_limit?: number | null;
|
|
5140
|
+
is_prepaid?: boolean;
|
|
5141
|
+
overage_component?: string | null;
|
|
5142
|
+
min_prepaid_duration?: number | null;
|
|
5143
|
+
max_prepaid_duration?: number | null;
|
|
4990
5144
|
};
|
|
4991
5145
|
export type OfferingComponentStat = {
|
|
4992
5146
|
readonly period: string;
|
|
@@ -5448,6 +5602,166 @@ export type OfferingUserStateTransitionRequest = {
|
|
|
5448
5602
|
export type OfferingUserUpdateRestrictionRequest = {
|
|
5449
5603
|
is_restricted: boolean;
|
|
5450
5604
|
};
|
|
5605
|
+
export type OnboardingCompanyValidationRequestRequest = {
|
|
5606
|
+
/**
|
|
5607
|
+
* ISO country code (e.g., 'EE' for Estonia)
|
|
5608
|
+
*/
|
|
5609
|
+
country: string;
|
|
5610
|
+
/**
|
|
5611
|
+
* Official company registration code
|
|
5612
|
+
*/
|
|
5613
|
+
legal_person_identifier: string;
|
|
5614
|
+
/**
|
|
5615
|
+
* Company name (optional, for reference)
|
|
5616
|
+
*/
|
|
5617
|
+
legal_name?: string;
|
|
5618
|
+
/**
|
|
5619
|
+
* Optional customer metadata for manual verification cases. Should contain valid Customer model fields.
|
|
5620
|
+
*/
|
|
5621
|
+
user_submitted_customer_metadata?: unknown;
|
|
5622
|
+
};
|
|
5623
|
+
export type OnboardingJustification = {
|
|
5624
|
+
readonly uuid: string;
|
|
5625
|
+
verification: number;
|
|
5626
|
+
user: number;
|
|
5627
|
+
/**
|
|
5628
|
+
* User's explanation for why they should be authorized
|
|
5629
|
+
*/
|
|
5630
|
+
user_justification: string;
|
|
5631
|
+
readonly validated_by: number | null;
|
|
5632
|
+
readonly validated_at: string | null;
|
|
5633
|
+
validation_decision: ValidationDecisionEnum;
|
|
5634
|
+
/**
|
|
5635
|
+
* Administrator notes on the review decision
|
|
5636
|
+
*/
|
|
5637
|
+
readonly staff_notes: string;
|
|
5638
|
+
readonly supporting_documentation: Array<OnboardingJustificationDocumentation>;
|
|
5639
|
+
readonly created: string;
|
|
5640
|
+
readonly modified: string;
|
|
5641
|
+
};
|
|
5642
|
+
export type OnboardingJustificationCreateRequest = {
|
|
5643
|
+
/**
|
|
5644
|
+
* UUID of the OnboardingVerification to justify
|
|
5645
|
+
*/
|
|
5646
|
+
verification_uuid: string;
|
|
5647
|
+
/**
|
|
5648
|
+
* User's explanation for why they should be authorized
|
|
5649
|
+
*/
|
|
5650
|
+
user_justification: string;
|
|
5651
|
+
};
|
|
5652
|
+
export type OnboardingJustificationDocumentation = {
|
|
5653
|
+
readonly uuid: string;
|
|
5654
|
+
/**
|
|
5655
|
+
* Upload supporting documentation.
|
|
5656
|
+
*/
|
|
5657
|
+
file?: string | null;
|
|
5658
|
+
readonly file_name: string;
|
|
5659
|
+
readonly file_size: number;
|
|
5660
|
+
readonly created: string;
|
|
5661
|
+
};
|
|
5662
|
+
export type OnboardingJustificationDocumentationRequest = {
|
|
5663
|
+
/**
|
|
5664
|
+
* Upload supporting documentation.
|
|
5665
|
+
*/
|
|
5666
|
+
file?: (Blob | File) | null;
|
|
5667
|
+
};
|
|
5668
|
+
export type OnboardingJustificationRequest = {
|
|
5669
|
+
verification: number;
|
|
5670
|
+
user: number;
|
|
5671
|
+
/**
|
|
5672
|
+
* User's explanation for why they should be authorized
|
|
5673
|
+
*/
|
|
5674
|
+
user_justification: string;
|
|
5675
|
+
};
|
|
5676
|
+
export type OnboardingJustificationReviewRequest = {
|
|
5677
|
+
/**
|
|
5678
|
+
* Administrator notes about the review decision
|
|
5679
|
+
*/
|
|
5680
|
+
staff_notes?: string;
|
|
5681
|
+
};
|
|
5682
|
+
export type OnboardingVerification = {
|
|
5683
|
+
readonly uuid: string;
|
|
5684
|
+
/**
|
|
5685
|
+
* User requesting company onboarding
|
|
5686
|
+
*/
|
|
5687
|
+
user: number;
|
|
5688
|
+
/**
|
|
5689
|
+
* ISO country code (e.g., 'EE' for Estonia)
|
|
5690
|
+
*/
|
|
5691
|
+
country: string;
|
|
5692
|
+
/**
|
|
5693
|
+
* Official company registration code
|
|
5694
|
+
*/
|
|
5695
|
+
legal_person_identifier: string;
|
|
5696
|
+
/**
|
|
5697
|
+
* Claimed company name (optional, for reference)
|
|
5698
|
+
*/
|
|
5699
|
+
legal_name?: string;
|
|
5700
|
+
/**
|
|
5701
|
+
* Additional customer metadata submitted by user for manual verification cases. Should contain valid Customer model fields.
|
|
5702
|
+
*/
|
|
5703
|
+
user_submitted_customer_metadata?: unknown;
|
|
5704
|
+
status: OnboardingVerificationStatusEnum;
|
|
5705
|
+
/**
|
|
5706
|
+
* Method used for validation
|
|
5707
|
+
*/
|
|
5708
|
+
validation_method: ValidationMethodEnum;
|
|
5709
|
+
/**
|
|
5710
|
+
* Roles the user has in the company
|
|
5711
|
+
*/
|
|
5712
|
+
readonly verified_user_roles: unknown;
|
|
5713
|
+
/**
|
|
5714
|
+
* Company information retrieved during validation
|
|
5715
|
+
*/
|
|
5716
|
+
readonly verified_company_data: unknown;
|
|
5717
|
+
/**
|
|
5718
|
+
* Raw API response for debugging and auditing
|
|
5719
|
+
*/
|
|
5720
|
+
readonly raw_response: unknown;
|
|
5721
|
+
readonly error_traceback: string;
|
|
5722
|
+
readonly error_message: string;
|
|
5723
|
+
/**
|
|
5724
|
+
* When validation was completed
|
|
5725
|
+
*/
|
|
5726
|
+
readonly validated_at: string | null;
|
|
5727
|
+
/**
|
|
5728
|
+
* When this verification expires
|
|
5729
|
+
*/
|
|
5730
|
+
expires_at?: string | null;
|
|
5731
|
+
/**
|
|
5732
|
+
* Customer created after successful validation
|
|
5733
|
+
*/
|
|
5734
|
+
readonly customer: number | null;
|
|
5735
|
+
readonly created: string;
|
|
5736
|
+
readonly modified: string;
|
|
5737
|
+
};
|
|
5738
|
+
export type OnboardingVerificationRequest = {
|
|
5739
|
+
/**
|
|
5740
|
+
* User requesting company onboarding
|
|
5741
|
+
*/
|
|
5742
|
+
user: number;
|
|
5743
|
+
/**
|
|
5744
|
+
* ISO country code (e.g., 'EE' for Estonia)
|
|
5745
|
+
*/
|
|
5746
|
+
country: string;
|
|
5747
|
+
/**
|
|
5748
|
+
* Official company registration code
|
|
5749
|
+
*/
|
|
5750
|
+
legal_person_identifier: string;
|
|
5751
|
+
/**
|
|
5752
|
+
* Claimed company name (optional, for reference)
|
|
5753
|
+
*/
|
|
5754
|
+
legal_name?: string;
|
|
5755
|
+
/**
|
|
5756
|
+
* Additional customer metadata submitted by user for manual verification cases. Should contain valid Customer model fields.
|
|
5757
|
+
*/
|
|
5758
|
+
user_submitted_customer_metadata?: unknown;
|
|
5759
|
+
/**
|
|
5760
|
+
* When this verification expires
|
|
5761
|
+
*/
|
|
5762
|
+
expires_at?: string | null;
|
|
5763
|
+
};
|
|
5764
|
+
export type OnboardingVerificationStatusEnum = 'pending' | 'verified' | 'failed' | 'escalated' | 'expired';
|
|
5451
5765
|
export type OpenStackAllowedAddressPair = {
|
|
5452
5766
|
mac_address?: string;
|
|
5453
5767
|
};
|
|
@@ -5613,6 +5927,10 @@ export type OpenStackBackupRestorationRequest = {
|
|
|
5613
5927
|
};
|
|
5614
5928
|
export type OpenStackCreateFloatingIpRequest = {
|
|
5615
5929
|
url?: string;
|
|
5930
|
+
/**
|
|
5931
|
+
* Existing floating IP address in selected OpenStack tenant to be assigned to new virtual machine
|
|
5932
|
+
*/
|
|
5933
|
+
ip_address?: string;
|
|
5616
5934
|
subnet: string;
|
|
5617
5935
|
};
|
|
5618
5936
|
export type OpenStackCreatePortRequest = {
|
|
@@ -7656,6 +7974,14 @@ export type PatchedMigrationDetailsRequest = {
|
|
|
7656
7974
|
error_message?: string;
|
|
7657
7975
|
error_traceback?: string;
|
|
7658
7976
|
};
|
|
7977
|
+
export type PatchedNetworkRbacPolicyRequest = {
|
|
7978
|
+
network?: string;
|
|
7979
|
+
target_tenant?: string;
|
|
7980
|
+
/**
|
|
7981
|
+
* Type of access granted - either shared access or external network access
|
|
7982
|
+
*/
|
|
7983
|
+
policy_type?: PolicyTypeEnum;
|
|
7984
|
+
};
|
|
7659
7985
|
export type PatchedNotificationRequest = {
|
|
7660
7986
|
key?: string;
|
|
7661
7987
|
description?: string;
|
|
@@ -7717,6 +8043,40 @@ export type PatchedOfferingUserServiceProviderCommentRequest = {
|
|
|
7717
8043
|
*/
|
|
7718
8044
|
service_provider_comment_url?: string;
|
|
7719
8045
|
};
|
|
8046
|
+
export type PatchedOnboardingJustificationRequest = {
|
|
8047
|
+
verification?: number;
|
|
8048
|
+
user?: number;
|
|
8049
|
+
/**
|
|
8050
|
+
* User's explanation for why they should be authorized
|
|
8051
|
+
*/
|
|
8052
|
+
user_justification?: string;
|
|
8053
|
+
};
|
|
8054
|
+
export type PatchedOnboardingVerificationRequest = {
|
|
8055
|
+
/**
|
|
8056
|
+
* User requesting company onboarding
|
|
8057
|
+
*/
|
|
8058
|
+
user?: number;
|
|
8059
|
+
/**
|
|
8060
|
+
* ISO country code (e.g., 'EE' for Estonia)
|
|
8061
|
+
*/
|
|
8062
|
+
country?: string;
|
|
8063
|
+
/**
|
|
8064
|
+
* Official company registration code
|
|
8065
|
+
*/
|
|
8066
|
+
legal_person_identifier?: string;
|
|
8067
|
+
/**
|
|
8068
|
+
* Claimed company name (optional, for reference)
|
|
8069
|
+
*/
|
|
8070
|
+
legal_name?: string;
|
|
8071
|
+
/**
|
|
8072
|
+
* Additional customer metadata submitted by user for manual verification cases. Should contain valid Customer model fields.
|
|
8073
|
+
*/
|
|
8074
|
+
user_submitted_customer_metadata?: unknown;
|
|
8075
|
+
/**
|
|
8076
|
+
* When this verification expires
|
|
8077
|
+
*/
|
|
8078
|
+
expires_at?: string | null;
|
|
8079
|
+
};
|
|
7720
8080
|
export type PatchedOpenStackBackupRequest = {
|
|
7721
8081
|
name?: string;
|
|
7722
8082
|
description?: string;
|
|
@@ -7823,6 +8183,7 @@ export type PatchedProjectCreditRequest = {
|
|
|
7823
8183
|
minimal_consumption_logic?: MinimalConsumptionLogicEnum;
|
|
7824
8184
|
grace_coefficient?: string;
|
|
7825
8185
|
apply_as_minimal_consumption?: boolean;
|
|
8186
|
+
mark_unused_credit_as_spent_on_project_termination?: boolean;
|
|
7826
8187
|
};
|
|
7827
8188
|
export type PatchedProjectEstimatedCostPolicyRequest = {
|
|
7828
8189
|
scope?: string;
|
|
@@ -7848,9 +8209,6 @@ export type PatchedProjectRequest = {
|
|
|
7848
8209
|
type?: string | null;
|
|
7849
8210
|
backend_id?: string;
|
|
7850
8211
|
start_date?: string | null;
|
|
7851
|
-
/**
|
|
7852
|
-
* The date is inclusive. Once reached, all project resource will be scheduled for termination.
|
|
7853
|
-
*/
|
|
7854
8212
|
end_date?: string | null;
|
|
7855
8213
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
7856
8214
|
is_industry?: boolean;
|
|
@@ -8478,6 +8836,7 @@ export type Project = {
|
|
|
8478
8836
|
readonly customer_native_name?: string;
|
|
8479
8837
|
readonly customer_abbreviation?: string;
|
|
8480
8838
|
description?: string;
|
|
8839
|
+
readonly customer_display_billing_info_in_projects?: boolean;
|
|
8481
8840
|
readonly created?: string;
|
|
8482
8841
|
/**
|
|
8483
8842
|
* Project type
|
|
@@ -8487,9 +8846,6 @@ export type Project = {
|
|
|
8487
8846
|
readonly type_uuid?: string | null;
|
|
8488
8847
|
backend_id?: string;
|
|
8489
8848
|
start_date?: string | null;
|
|
8490
|
-
/**
|
|
8491
|
-
* The date is inclusive. Once reached, all project resource will be scheduled for termination.
|
|
8492
|
-
*/
|
|
8493
8849
|
end_date?: string | null;
|
|
8494
8850
|
readonly end_date_requested_by?: string | null;
|
|
8495
8851
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
@@ -8560,6 +8916,7 @@ export type ProjectCredit = {
|
|
|
8560
8916
|
minimal_consumption_logic?: MinimalConsumptionLogicEnum;
|
|
8561
8917
|
grace_coefficient?: string;
|
|
8562
8918
|
apply_as_minimal_consumption?: boolean;
|
|
8919
|
+
mark_unused_credit_as_spent_on_project_termination?: boolean;
|
|
8563
8920
|
};
|
|
8564
8921
|
export type ProjectCreditRequest = {
|
|
8565
8922
|
value?: string;
|
|
@@ -8569,6 +8926,7 @@ export type ProjectCreditRequest = {
|
|
|
8569
8926
|
minimal_consumption_logic?: MinimalConsumptionLogicEnum;
|
|
8570
8927
|
grace_coefficient?: string;
|
|
8571
8928
|
apply_as_minimal_consumption?: boolean;
|
|
8929
|
+
mark_unused_credit_as_spent_on_project_termination?: boolean;
|
|
8572
8930
|
};
|
|
8573
8931
|
export type ProjectDetail = {
|
|
8574
8932
|
readonly project_uuid: string;
|
|
@@ -8686,9 +9044,6 @@ export type ProjectRequest = {
|
|
|
8686
9044
|
type?: string | null;
|
|
8687
9045
|
backend_id?: string;
|
|
8688
9046
|
start_date?: string | null;
|
|
8689
|
-
/**
|
|
8690
|
-
* The date is inclusive. Once reached, all project resource will be scheduled for termination.
|
|
8691
|
-
*/
|
|
8692
9047
|
end_date?: string | null;
|
|
8693
9048
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
8694
9049
|
is_industry?: boolean;
|
|
@@ -8748,7 +9103,7 @@ export type ProjectUser = {
|
|
|
8748
9103
|
readonly role: string;
|
|
8749
9104
|
readonly expiration_time: string | null;
|
|
8750
9105
|
readonly offering_user_username: string | null;
|
|
8751
|
-
offering_user_state: OfferingUserState;
|
|
9106
|
+
offering_user_state: OfferingUserState | NullEnum | null;
|
|
8752
9107
|
};
|
|
8753
9108
|
export type ProjectsLimitsGroupedByIndustryFlag = {
|
|
8754
9109
|
limits: {
|
|
@@ -9015,7 +9370,7 @@ export type ProtectedRound = {
|
|
|
9015
9370
|
readonly name: string;
|
|
9016
9371
|
start_time: string;
|
|
9017
9372
|
cutoff_time: string;
|
|
9018
|
-
status:
|
|
9373
|
+
status: RoundStatus;
|
|
9019
9374
|
review_strategy?: ReviewStrategyEnum;
|
|
9020
9375
|
deciding_entity?: DecidingEntityEnum;
|
|
9021
9376
|
allocation_time?: AllocationTimeEnum;
|
|
@@ -9431,6 +9786,15 @@ export type PullMarketplaceScriptResourceRequest = {
|
|
|
9431
9786
|
export type QueryRequest = {
|
|
9432
9787
|
query: string;
|
|
9433
9788
|
};
|
|
9789
|
+
export type Question = {
|
|
9790
|
+
readonly uuid: string;
|
|
9791
|
+
description?: string;
|
|
9792
|
+
/**
|
|
9793
|
+
* Additional guidance text visible to users when answering and reviewing
|
|
9794
|
+
*/
|
|
9795
|
+
user_guidance?: string;
|
|
9796
|
+
readonly question_options: Array<QuestionOptions>;
|
|
9797
|
+
};
|
|
9434
9798
|
export type QuestionAdmin = {
|
|
9435
9799
|
readonly uuid: string;
|
|
9436
9800
|
description?: string;
|
|
@@ -9581,6 +9945,11 @@ export type QuestionDependencyRequest = {
|
|
|
9581
9945
|
required_answer_value: unknown;
|
|
9582
9946
|
operator?: ChecklistOperators;
|
|
9583
9947
|
};
|
|
9948
|
+
export type QuestionOptions = {
|
|
9949
|
+
readonly uuid: string;
|
|
9950
|
+
label: string;
|
|
9951
|
+
order?: number;
|
|
9952
|
+
};
|
|
9584
9953
|
export type QuestionOptionsAdmin = {
|
|
9585
9954
|
readonly uuid: string;
|
|
9586
9955
|
label: string;
|
|
@@ -10767,6 +11136,9 @@ export type ResourceBackendIdRequest = {
|
|
|
10767
11136
|
export type ResourceBackendMetadataRequest = {
|
|
10768
11137
|
backend_metadata: unknown;
|
|
10769
11138
|
};
|
|
11139
|
+
export type ResourceDownscaledRequest = {
|
|
11140
|
+
downscaled?: boolean;
|
|
11141
|
+
};
|
|
10770
11142
|
export type ResourceEndDateByProviderRequest = {
|
|
10771
11143
|
/**
|
|
10772
11144
|
* The date is inclusive. Once reached, a resource will be scheduled for termination.
|
|
@@ -10787,6 +11159,9 @@ export type ResourceOffering = {
|
|
|
10787
11159
|
export type ResourceOptionsRequest = {
|
|
10788
11160
|
options?: unknown;
|
|
10789
11161
|
};
|
|
11162
|
+
export type ResourcePausedRequest = {
|
|
11163
|
+
paused?: boolean;
|
|
11164
|
+
};
|
|
10790
11165
|
export type ResourcePlanPeriod = {
|
|
10791
11166
|
readonly uuid: string;
|
|
10792
11167
|
readonly plan_name: string;
|
|
@@ -10795,12 +11170,27 @@ export type ResourcePlanPeriod = {
|
|
|
10795
11170
|
end?: string | null;
|
|
10796
11171
|
components: Array<BaseComponentUsage>;
|
|
10797
11172
|
};
|
|
11173
|
+
export type ResourceRenewRequest = {
|
|
11174
|
+
/**
|
|
11175
|
+
* Number of months to extend the subscription by.
|
|
11176
|
+
*/
|
|
11177
|
+
extension_months: number;
|
|
11178
|
+
/**
|
|
11179
|
+
* Optional new limits for the resource. Supports upgrades only.
|
|
11180
|
+
*/
|
|
11181
|
+
limits?: {
|
|
11182
|
+
[key: string]: number;
|
|
11183
|
+
};
|
|
11184
|
+
};
|
|
10798
11185
|
export type ResourceReportRequest = {
|
|
10799
11186
|
report: Array<ReportSectionRequest>;
|
|
10800
11187
|
};
|
|
10801
11188
|
export type ResourceResponseStatus = {
|
|
10802
11189
|
readonly status: string;
|
|
10803
11190
|
};
|
|
11191
|
+
export type ResourceRestrictMemberAccessRequest = {
|
|
11192
|
+
restrict_member_access?: boolean;
|
|
11193
|
+
};
|
|
10804
11194
|
export type ResourceSetLimitsRequest = {
|
|
10805
11195
|
limits: unknown;
|
|
10806
11196
|
};
|
|
@@ -11268,6 +11658,7 @@ export type RoundReviewer = {
|
|
|
11268
11658
|
rejected_proposals: number;
|
|
11269
11659
|
in_review_proposals: number;
|
|
11270
11660
|
};
|
|
11661
|
+
export type RoundStatus = 'scheduled' | 'open' | 'ended';
|
|
11271
11662
|
export type Rule = {
|
|
11272
11663
|
name: string;
|
|
11273
11664
|
readonly uuid: string;
|
|
@@ -11396,6 +11787,13 @@ export type ServiceProvider = {
|
|
|
11396
11787
|
export type ServiceProviderApiSecretCode = {
|
|
11397
11788
|
readonly api_secret_code: string;
|
|
11398
11789
|
};
|
|
11790
|
+
export type ServiceProviderChecklistSummary = {
|
|
11791
|
+
readonly checklist_uuid: string;
|
|
11792
|
+
readonly checklist_name: string;
|
|
11793
|
+
readonly questions_count: number;
|
|
11794
|
+
readonly offerings_count: number;
|
|
11795
|
+
readonly category_name: string | null;
|
|
11796
|
+
};
|
|
11399
11797
|
export type ServiceProviderComplianceOverview = {
|
|
11400
11798
|
readonly offering_uuid: string;
|
|
11401
11799
|
readonly offering_name: string;
|
|
@@ -11598,7 +11996,6 @@ export type StateTransitionError = {
|
|
|
11598
11996
|
*/
|
|
11599
11997
|
detail: string;
|
|
11600
11998
|
};
|
|
11601
|
-
export type StatusEnum = 'scheduled' | 'open' | 'ended';
|
|
11602
11999
|
export type StorageModeEnum = 'fixed' | 'dynamic';
|
|
11603
12000
|
export type SubNetMapping = {
|
|
11604
12001
|
src_cidr: string;
|
|
@@ -11681,6 +12078,21 @@ export type Tenant = {
|
|
|
11681
12078
|
readonly uuid: string;
|
|
11682
12079
|
name: string;
|
|
11683
12080
|
};
|
|
12081
|
+
export type TimeSeriesToSData = {
|
|
12082
|
+
readonly date: string;
|
|
12083
|
+
readonly count: number;
|
|
12084
|
+
};
|
|
12085
|
+
export type ToSConsentDashboard = {
|
|
12086
|
+
readonly active_users_count: number;
|
|
12087
|
+
readonly total_users_count: number;
|
|
12088
|
+
readonly active_users_percentage: number;
|
|
12089
|
+
readonly accepted_consents_count: number;
|
|
12090
|
+
readonly revoked_consents_count: number;
|
|
12091
|
+
readonly total_consents_count: number;
|
|
12092
|
+
readonly revoked_consents_over_time: Array<TimeSeriesToSData>;
|
|
12093
|
+
readonly tos_version_adoption: Array<VersionAdoption>;
|
|
12094
|
+
readonly active_users_over_time: Array<TimeSeriesToSData>;
|
|
12095
|
+
};
|
|
11684
12096
|
export type TokenRequest = {
|
|
11685
12097
|
token: string;
|
|
11686
12098
|
};
|
|
@@ -11716,6 +12128,10 @@ export type UpdateOfferingComponentRequest = {
|
|
|
11716
12128
|
max_available_limit?: number | null;
|
|
11717
12129
|
is_boolean?: boolean;
|
|
11718
12130
|
default_limit?: number | null;
|
|
12131
|
+
is_prepaid?: boolean;
|
|
12132
|
+
overage_component?: string | null;
|
|
12133
|
+
min_prepaid_duration?: number | null;
|
|
12134
|
+
max_prepaid_duration?: number | null;
|
|
11719
12135
|
};
|
|
11720
12136
|
export type User = {
|
|
11721
12137
|
readonly url?: string;
|
|
@@ -11977,6 +12393,8 @@ export type UserRoleUpdateRequest = {
|
|
|
11977
12393
|
expiration_time?: string | null;
|
|
11978
12394
|
};
|
|
11979
12395
|
export type UsernameGenerationPolicyEnum = 'service_provider' | 'anonymized' | 'full_name' | 'waldur_username' | 'freeipa' | 'identity_claim';
|
|
12396
|
+
export type ValidationDecisionEnum = 'approved' | 'rejected' | 'pending';
|
|
12397
|
+
export type ValidationMethodEnum = 'ariregister';
|
|
11980
12398
|
export type Version = {
|
|
11981
12399
|
/**
|
|
11982
12400
|
* Current installed version of the application
|
|
@@ -11987,6 +12405,10 @@ export type Version = {
|
|
|
11987
12405
|
*/
|
|
11988
12406
|
latest_version?: string;
|
|
11989
12407
|
};
|
|
12408
|
+
export type VersionAdoption = {
|
|
12409
|
+
readonly version: string;
|
|
12410
|
+
readonly users_count: number;
|
|
12411
|
+
};
|
|
11990
12412
|
export type VisibilityEnum = 'private' | 'public';
|
|
11991
12413
|
export type VisibleInvitationDetails = {
|
|
11992
12414
|
readonly scope_uuid: string;
|
|
@@ -12958,6 +13380,18 @@ export type PatchedServiceProviderRequestMultipart = {
|
|
|
12958
13380
|
enable_notifications?: boolean;
|
|
12959
13381
|
image?: (Blob | File) | null;
|
|
12960
13382
|
};
|
|
13383
|
+
export type OnboardingJustificationDocumentationRequestForm = {
|
|
13384
|
+
/**
|
|
13385
|
+
* Upload supporting documentation.
|
|
13386
|
+
*/
|
|
13387
|
+
file?: (Blob | File) | null;
|
|
13388
|
+
};
|
|
13389
|
+
export type OnboardingJustificationDocumentationRequestMultipart = {
|
|
13390
|
+
/**
|
|
13391
|
+
* Upload supporting documentation.
|
|
13392
|
+
*/
|
|
13393
|
+
file?: (Blob | File) | null;
|
|
13394
|
+
};
|
|
12961
13395
|
export type ConstanceSettingsRequestForm = {
|
|
12962
13396
|
SITE_NAME?: string;
|
|
12963
13397
|
SITE_DESCRIPTION?: string;
|
|
@@ -13016,23 +13450,23 @@ export type ConstanceSettingsRequestForm = {
|
|
|
13016
13450
|
WALDUR_SUPPORT_ENABLED?: boolean;
|
|
13017
13451
|
WALDUR_SUPPORT_ACTIVE_BACKEND_TYPE?: string;
|
|
13018
13452
|
WALDUR_SUPPORT_DISPLAY_REQUEST_TYPE?: boolean;
|
|
13019
|
-
ATLASSIAN_USE_OLD_API?: boolean;
|
|
13020
|
-
ATLASSIAN_USE_TEENAGE_API?: boolean;
|
|
13021
|
-
ATLASSIAN_USE_AUTOMATIC_REQUEST_MAPPING?: boolean;
|
|
13022
13453
|
ATLASSIAN_MAP_WALDUR_USERS_TO_SERVICEDESK_AGENTS?: boolean;
|
|
13023
|
-
ATLASSIAN_STRANGE_SETTING?: number;
|
|
13024
13454
|
ATLASSIAN_API_URL?: string;
|
|
13025
13455
|
ATLASSIAN_USERNAME?: string;
|
|
13026
13456
|
ATLASSIAN_PASSWORD?: string;
|
|
13027
13457
|
ATLASSIAN_EMAIL?: string;
|
|
13458
|
+
ATLASSIAN_USE_OLD_API?: boolean;
|
|
13028
13459
|
ATLASSIAN_TOKEN?: string;
|
|
13460
|
+
ATLASSIAN_PERSONAL_ACCESS_TOKEN?: string;
|
|
13461
|
+
ATLASSIAN_OAUTH2_CLIENT_ID?: string;
|
|
13462
|
+
ATLASSIAN_OAUTH2_ACCESS_TOKEN?: string;
|
|
13463
|
+
ATLASSIAN_OAUTH2_TOKEN_TYPE?: string;
|
|
13029
13464
|
ATLASSIAN_VERIFY_SSL?: boolean;
|
|
13030
13465
|
ATLASSIAN_PROJECT_ID?: string;
|
|
13031
13466
|
ATLASSIAN_SHARED_USERNAME?: boolean;
|
|
13032
13467
|
ATLASSIAN_CUSTOM_ISSUE_FIELD_MAPPING_ENABLED?: boolean;
|
|
13033
13468
|
ATLASSIAN_DEFAULT_OFFERING_ISSUE_TYPE?: string;
|
|
13034
13469
|
ATLASSIAN_EXCLUDED_ATTACHMENT_TYPES?: string;
|
|
13035
|
-
ATLASSIAN_PULL_PRIORITIES?: boolean;
|
|
13036
13470
|
ATLASSIAN_ISSUE_TYPES?: string;
|
|
13037
13471
|
ATLASSIAN_DESCRIPTION_TEMPLATE?: string;
|
|
13038
13472
|
ATLASSIAN_SUMMARY_TEMPLATE?: string;
|
|
@@ -13095,6 +13529,11 @@ export type ConstanceSettingsRequestForm = {
|
|
|
13095
13529
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
13096
13530
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
13097
13531
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
13532
|
+
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
13533
|
+
ONBOARDING_ARIREGISTER_BASE_URL?: string;
|
|
13534
|
+
ONBOARDING_ARIREGISTER_USERNAME?: string;
|
|
13535
|
+
ONBOARDING_ARIREGISTER_PASSWORD?: string;
|
|
13536
|
+
ONBOARDING_ARIREGISTER_TIMEOUT?: number;
|
|
13098
13537
|
};
|
|
13099
13538
|
export type ConstanceSettingsRequestMultipart = {
|
|
13100
13539
|
SITE_NAME?: string;
|
|
@@ -13154,23 +13593,23 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
13154
13593
|
WALDUR_SUPPORT_ENABLED?: boolean;
|
|
13155
13594
|
WALDUR_SUPPORT_ACTIVE_BACKEND_TYPE?: string;
|
|
13156
13595
|
WALDUR_SUPPORT_DISPLAY_REQUEST_TYPE?: boolean;
|
|
13157
|
-
ATLASSIAN_USE_OLD_API?: boolean;
|
|
13158
|
-
ATLASSIAN_USE_TEENAGE_API?: boolean;
|
|
13159
|
-
ATLASSIAN_USE_AUTOMATIC_REQUEST_MAPPING?: boolean;
|
|
13160
13596
|
ATLASSIAN_MAP_WALDUR_USERS_TO_SERVICEDESK_AGENTS?: boolean;
|
|
13161
|
-
ATLASSIAN_STRANGE_SETTING?: number;
|
|
13162
13597
|
ATLASSIAN_API_URL?: string;
|
|
13163
13598
|
ATLASSIAN_USERNAME?: string;
|
|
13164
13599
|
ATLASSIAN_PASSWORD?: string;
|
|
13165
13600
|
ATLASSIAN_EMAIL?: string;
|
|
13601
|
+
ATLASSIAN_USE_OLD_API?: boolean;
|
|
13166
13602
|
ATLASSIAN_TOKEN?: string;
|
|
13603
|
+
ATLASSIAN_PERSONAL_ACCESS_TOKEN?: string;
|
|
13604
|
+
ATLASSIAN_OAUTH2_CLIENT_ID?: string;
|
|
13605
|
+
ATLASSIAN_OAUTH2_ACCESS_TOKEN?: string;
|
|
13606
|
+
ATLASSIAN_OAUTH2_TOKEN_TYPE?: string;
|
|
13167
13607
|
ATLASSIAN_VERIFY_SSL?: boolean;
|
|
13168
13608
|
ATLASSIAN_PROJECT_ID?: string;
|
|
13169
13609
|
ATLASSIAN_SHARED_USERNAME?: boolean;
|
|
13170
13610
|
ATLASSIAN_CUSTOM_ISSUE_FIELD_MAPPING_ENABLED?: boolean;
|
|
13171
13611
|
ATLASSIAN_DEFAULT_OFFERING_ISSUE_TYPE?: string;
|
|
13172
13612
|
ATLASSIAN_EXCLUDED_ATTACHMENT_TYPES?: string;
|
|
13173
|
-
ATLASSIAN_PULL_PRIORITIES?: boolean;
|
|
13174
13613
|
ATLASSIAN_ISSUE_TYPES?: string;
|
|
13175
13614
|
ATLASSIAN_DESCRIPTION_TEMPLATE?: string;
|
|
13176
13615
|
ATLASSIAN_SUMMARY_TEMPLATE?: string;
|
|
@@ -13233,6 +13672,11 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
13233
13672
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
13234
13673
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
13235
13674
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
13675
|
+
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
13676
|
+
ONBOARDING_ARIREGISTER_BASE_URL?: string;
|
|
13677
|
+
ONBOARDING_ARIREGISTER_USERNAME?: string;
|
|
13678
|
+
ONBOARDING_ARIREGISTER_PASSWORD?: string;
|
|
13679
|
+
ONBOARDING_ARIREGISTER_TIMEOUT?: number;
|
|
13236
13680
|
};
|
|
13237
13681
|
export type PaymentRequestForm = {
|
|
13238
13682
|
profile: string;
|
|
@@ -13272,9 +13716,6 @@ export type ProjectRequestForm = {
|
|
|
13272
13716
|
type?: string | null;
|
|
13273
13717
|
backend_id?: string;
|
|
13274
13718
|
start_date?: string | null;
|
|
13275
|
-
/**
|
|
13276
|
-
* The date is inclusive. Once reached, all project resource will be scheduled for termination.
|
|
13277
|
-
*/
|
|
13278
13719
|
end_date?: string | null;
|
|
13279
13720
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
13280
13721
|
is_industry?: boolean;
|
|
@@ -13298,9 +13739,6 @@ export type ProjectRequestMultipart = {
|
|
|
13298
13739
|
type?: string | null;
|
|
13299
13740
|
backend_id?: string;
|
|
13300
13741
|
start_date?: string | null;
|
|
13301
|
-
/**
|
|
13302
|
-
* The date is inclusive. Once reached, all project resource will be scheduled for termination.
|
|
13303
|
-
*/
|
|
13304
13742
|
end_date?: string | null;
|
|
13305
13743
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
13306
13744
|
is_industry?: boolean;
|
|
@@ -13324,9 +13762,6 @@ export type PatchedProjectRequestForm = {
|
|
|
13324
13762
|
type?: string | null;
|
|
13325
13763
|
backend_id?: string;
|
|
13326
13764
|
start_date?: string | null;
|
|
13327
|
-
/**
|
|
13328
|
-
* The date is inclusive. Once reached, all project resource will be scheduled for termination.
|
|
13329
|
-
*/
|
|
13330
13765
|
end_date?: string | null;
|
|
13331
13766
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
13332
13767
|
is_industry?: boolean;
|
|
@@ -13350,9 +13785,6 @@ export type PatchedProjectRequestMultipart = {
|
|
|
13350
13785
|
type?: string | null;
|
|
13351
13786
|
backend_id?: string;
|
|
13352
13787
|
start_date?: string | null;
|
|
13353
|
-
/**
|
|
13354
|
-
* The date is inclusive. Once reached, all project resource will be scheduled for termination.
|
|
13355
|
-
*/
|
|
13356
13788
|
end_date?: string | null;
|
|
13357
13789
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
13358
13790
|
is_industry?: boolean;
|
|
@@ -16224,6 +16656,7 @@ export type BookingResourcesListData = {
|
|
|
16224
16656
|
page_size?: number;
|
|
16225
16657
|
parent_offering_uuid?: string;
|
|
16226
16658
|
paused?: boolean;
|
|
16659
|
+
plan_uuid?: string;
|
|
16227
16660
|
project_name?: string;
|
|
16228
16661
|
project_uuid?: string;
|
|
16229
16662
|
provider_uuid?: string;
|
|
@@ -16314,6 +16747,7 @@ export type BookingResourcesCountData = {
|
|
|
16314
16747
|
page_size?: number;
|
|
16315
16748
|
parent_offering_uuid?: string;
|
|
16316
16749
|
paused?: boolean;
|
|
16750
|
+
plan_uuid?: string;
|
|
16317
16751
|
project_name?: string;
|
|
16318
16752
|
project_uuid?: string;
|
|
16319
16753
|
provider_uuid?: string;
|
|
@@ -18104,7 +18538,7 @@ export type CustomersListData = {
|
|
|
18104
18538
|
archived?: boolean;
|
|
18105
18539
|
backend_id?: string;
|
|
18106
18540
|
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'>;
|
|
18541
|
+
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
18542
|
name?: string;
|
|
18109
18543
|
name_exact?: string;
|
|
18110
18544
|
native_name?: string;
|
|
@@ -18382,7 +18816,7 @@ export type CustomersRetrieveData = {
|
|
|
18382
18816
|
uuid: string;
|
|
18383
18817
|
};
|
|
18384
18818
|
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'>;
|
|
18819
|
+
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
18820
|
};
|
|
18387
18821
|
url: '/api/customers/{uuid}/';
|
|
18388
18822
|
};
|
|
@@ -24810,6 +25244,34 @@ export type MarketplaceOfferingUsersUpdateRestrictedResponses = {
|
|
|
24810
25244
|
*/
|
|
24811
25245
|
200: unknown;
|
|
24812
25246
|
};
|
|
25247
|
+
export type MarketplaceOfferingUsersChecklistTemplateRetrieveData = {
|
|
25248
|
+
body?: never;
|
|
25249
|
+
path?: never;
|
|
25250
|
+
query?: never;
|
|
25251
|
+
url: '/api/marketplace-offering-users/checklist-template/';
|
|
25252
|
+
};
|
|
25253
|
+
export type MarketplaceOfferingUsersChecklistTemplateRetrieveErrors = {
|
|
25254
|
+
/**
|
|
25255
|
+
* No checklist configured
|
|
25256
|
+
*/
|
|
25257
|
+
400: unknown;
|
|
25258
|
+
};
|
|
25259
|
+
export type MarketplaceOfferingUsersChecklistTemplateRetrieveResponses = {
|
|
25260
|
+
200: ChecklistTemplate;
|
|
25261
|
+
};
|
|
25262
|
+
export type MarketplaceOfferingUsersChecklistTemplateRetrieveResponse = MarketplaceOfferingUsersChecklistTemplateRetrieveResponses[keyof MarketplaceOfferingUsersChecklistTemplateRetrieveResponses];
|
|
25263
|
+
export type MarketplaceOfferingUsersChecklistTemplateCountData = {
|
|
25264
|
+
body?: never;
|
|
25265
|
+
path?: never;
|
|
25266
|
+
query?: never;
|
|
25267
|
+
url: '/api/marketplace-offering-users/checklist-template/';
|
|
25268
|
+
};
|
|
25269
|
+
export type MarketplaceOfferingUsersChecklistTemplateCountResponses = {
|
|
25270
|
+
/**
|
|
25271
|
+
* No response body
|
|
25272
|
+
*/
|
|
25273
|
+
200: unknown;
|
|
25274
|
+
};
|
|
24813
25275
|
export type MarketplaceOrdersListData = {
|
|
24814
25276
|
body?: never;
|
|
24815
25277
|
path?: never;
|
|
@@ -26814,6 +27276,18 @@ export type MarketplaceProviderOfferingsSyncResponses = {
|
|
|
26814
27276
|
*/
|
|
26815
27277
|
200: unknown;
|
|
26816
27278
|
};
|
|
27279
|
+
export type MarketplaceProviderOfferingsTosStatsRetrieveData = {
|
|
27280
|
+
body?: never;
|
|
27281
|
+
path: {
|
|
27282
|
+
uuid: string;
|
|
27283
|
+
};
|
|
27284
|
+
query?: never;
|
|
27285
|
+
url: '/api/marketplace-provider-offerings/{uuid}/tos_stats/';
|
|
27286
|
+
};
|
|
27287
|
+
export type MarketplaceProviderOfferingsTosStatsRetrieveResponses = {
|
|
27288
|
+
200: ToSConsentDashboard;
|
|
27289
|
+
};
|
|
27290
|
+
export type MarketplaceProviderOfferingsTosStatsRetrieveResponse = MarketplaceProviderOfferingsTosStatsRetrieveResponses[keyof MarketplaceProviderOfferingsTosStatsRetrieveResponses];
|
|
26817
27291
|
export type MarketplaceProviderOfferingsUnpauseData = {
|
|
26818
27292
|
body?: never;
|
|
26819
27293
|
path: {
|
|
@@ -27278,6 +27752,7 @@ export type MarketplaceProviderResourcesListData = {
|
|
|
27278
27752
|
page_size?: number;
|
|
27279
27753
|
parent_offering_uuid?: string;
|
|
27280
27754
|
paused?: boolean;
|
|
27755
|
+
plan_uuid?: string;
|
|
27281
27756
|
project_name?: string;
|
|
27282
27757
|
project_uuid?: string;
|
|
27283
27758
|
provider_uuid?: string;
|
|
@@ -27367,6 +27842,7 @@ export type MarketplaceProviderResourcesCountData = {
|
|
|
27367
27842
|
page_size?: number;
|
|
27368
27843
|
parent_offering_uuid?: string;
|
|
27369
27844
|
paused?: boolean;
|
|
27845
|
+
plan_uuid?: string;
|
|
27370
27846
|
project_name?: string;
|
|
27371
27847
|
project_uuid?: string;
|
|
27372
27848
|
provider_uuid?: string;
|
|
@@ -27589,6 +28065,20 @@ export type MarketplaceProviderResourcesSetBackendMetadataResponses = {
|
|
|
27589
28065
|
200: ResourceResponseStatus;
|
|
27590
28066
|
};
|
|
27591
28067
|
export type MarketplaceProviderResourcesSetBackendMetadataResponse = MarketplaceProviderResourcesSetBackendMetadataResponses[keyof MarketplaceProviderResourcesSetBackendMetadataResponses];
|
|
28068
|
+
export type MarketplaceProviderResourcesSetDownscaledData = {
|
|
28069
|
+
body?: ResourceDownscaledRequest;
|
|
28070
|
+
path: {
|
|
28071
|
+
uuid: string;
|
|
28072
|
+
};
|
|
28073
|
+
query?: never;
|
|
28074
|
+
url: '/api/marketplace-provider-resources/{uuid}/set_downscaled/';
|
|
28075
|
+
};
|
|
28076
|
+
export type MarketplaceProviderResourcesSetDownscaledResponses = {
|
|
28077
|
+
/**
|
|
28078
|
+
* No response body
|
|
28079
|
+
*/
|
|
28080
|
+
200: unknown;
|
|
28081
|
+
};
|
|
27592
28082
|
export type MarketplaceProviderResourcesSetEndDateByProviderData = {
|
|
27593
28083
|
body?: ResourceEndDateByProviderRequest;
|
|
27594
28084
|
path: {
|
|
@@ -27627,6 +28117,34 @@ export type MarketplaceProviderResourcesSetLimitsResponses = {
|
|
|
27627
28117
|
200: ResourceResponseStatus;
|
|
27628
28118
|
};
|
|
27629
28119
|
export type MarketplaceProviderResourcesSetLimitsResponse = MarketplaceProviderResourcesSetLimitsResponses[keyof MarketplaceProviderResourcesSetLimitsResponses];
|
|
28120
|
+
export type MarketplaceProviderResourcesSetPausedData = {
|
|
28121
|
+
body?: ResourcePausedRequest;
|
|
28122
|
+
path: {
|
|
28123
|
+
uuid: string;
|
|
28124
|
+
};
|
|
28125
|
+
query?: never;
|
|
28126
|
+
url: '/api/marketplace-provider-resources/{uuid}/set_paused/';
|
|
28127
|
+
};
|
|
28128
|
+
export type MarketplaceProviderResourcesSetPausedResponses = {
|
|
28129
|
+
/**
|
|
28130
|
+
* No response body
|
|
28131
|
+
*/
|
|
28132
|
+
200: unknown;
|
|
28133
|
+
};
|
|
28134
|
+
export type MarketplaceProviderResourcesSetRestrictMemberAccessData = {
|
|
28135
|
+
body?: ResourceRestrictMemberAccessRequest;
|
|
28136
|
+
path: {
|
|
28137
|
+
uuid: string;
|
|
28138
|
+
};
|
|
28139
|
+
query?: never;
|
|
28140
|
+
url: '/api/marketplace-provider-resources/{uuid}/set_restrict_member_access/';
|
|
28141
|
+
};
|
|
28142
|
+
export type MarketplaceProviderResourcesSetRestrictMemberAccessResponses = {
|
|
28143
|
+
/**
|
|
28144
|
+
* No response body
|
|
28145
|
+
*/
|
|
28146
|
+
200: unknown;
|
|
28147
|
+
};
|
|
27630
28148
|
export type MarketplaceProviderResourcesSetSlugData = {
|
|
27631
28149
|
body: ResourceSlugRequest;
|
|
27632
28150
|
path: {
|
|
@@ -27691,6 +28209,18 @@ export type MarketplaceProviderResourcesUnlinkResponses = {
|
|
|
27691
28209
|
*/
|
|
27692
28210
|
200: unknown;
|
|
27693
28211
|
};
|
|
28212
|
+
export type MarketplaceProviderResourcesUpdateOptionsData = {
|
|
28213
|
+
body?: ResourceOptionsRequest;
|
|
28214
|
+
path: {
|
|
28215
|
+
uuid: string;
|
|
28216
|
+
};
|
|
28217
|
+
query?: never;
|
|
28218
|
+
url: '/api/marketplace-provider-resources/{uuid}/update_options/';
|
|
28219
|
+
};
|
|
28220
|
+
export type MarketplaceProviderResourcesUpdateOptionsResponses = {
|
|
28221
|
+
200: ResourceResponseStatus;
|
|
28222
|
+
};
|
|
28223
|
+
export type MarketplaceProviderResourcesUpdateOptionsResponse = MarketplaceProviderResourcesUpdateOptionsResponses[keyof MarketplaceProviderResourcesUpdateOptionsResponses];
|
|
27694
28224
|
export type MarketplacePublicApiCheckSignatureData = {
|
|
27695
28225
|
body: ServiceProviderSignatureRequest;
|
|
27696
28226
|
path?: never;
|
|
@@ -28251,6 +28781,7 @@ export type MarketplaceResourcesListData = {
|
|
|
28251
28781
|
page_size?: number;
|
|
28252
28782
|
parent_offering_uuid?: string;
|
|
28253
28783
|
paused?: boolean;
|
|
28784
|
+
plan_uuid?: string;
|
|
28254
28785
|
project_name?: string;
|
|
28255
28786
|
project_uuid?: string;
|
|
28256
28787
|
provider_uuid?: string;
|
|
@@ -28340,6 +28871,7 @@ export type MarketplaceResourcesCountData = {
|
|
|
28340
28871
|
page_size?: number;
|
|
28341
28872
|
parent_offering_uuid?: string;
|
|
28342
28873
|
paused?: boolean;
|
|
28874
|
+
plan_uuid?: string;
|
|
28343
28875
|
project_name?: string;
|
|
28344
28876
|
project_uuid?: string;
|
|
28345
28877
|
provider_uuid?: string;
|
|
@@ -28496,6 +29028,32 @@ export type MarketplaceResourcesPullResponses = {
|
|
|
28496
29028
|
};
|
|
28497
29029
|
};
|
|
28498
29030
|
export type MarketplaceResourcesPullResponse = MarketplaceResourcesPullResponses[keyof MarketplaceResourcesPullResponses];
|
|
29031
|
+
export type MarketplaceResourcesRenewData = {
|
|
29032
|
+
body: ResourceRenewRequest;
|
|
29033
|
+
path: {
|
|
29034
|
+
uuid: string;
|
|
29035
|
+
};
|
|
29036
|
+
query?: never;
|
|
29037
|
+
url: '/api/marketplace-resources/{uuid}/renew/';
|
|
29038
|
+
};
|
|
29039
|
+
export type MarketplaceResourcesRenewResponses = {
|
|
29040
|
+
200: OrderUuid;
|
|
29041
|
+
};
|
|
29042
|
+
export type MarketplaceResourcesRenewResponse = MarketplaceResourcesRenewResponses[keyof MarketplaceResourcesRenewResponses];
|
|
29043
|
+
export type MarketplaceResourcesSetDownscaledData = {
|
|
29044
|
+
body?: ResourceDownscaledRequest;
|
|
29045
|
+
path: {
|
|
29046
|
+
uuid: string;
|
|
29047
|
+
};
|
|
29048
|
+
query?: never;
|
|
29049
|
+
url: '/api/marketplace-resources/{uuid}/set_downscaled/';
|
|
29050
|
+
};
|
|
29051
|
+
export type MarketplaceResourcesSetDownscaledResponses = {
|
|
29052
|
+
/**
|
|
29053
|
+
* No response body
|
|
29054
|
+
*/
|
|
29055
|
+
200: unknown;
|
|
29056
|
+
};
|
|
28499
29057
|
export type MarketplaceResourcesSetEndDateByStaffData = {
|
|
28500
29058
|
body?: ResourceEndDateByProviderRequest;
|
|
28501
29059
|
path: {
|
|
@@ -28510,6 +29068,34 @@ export type MarketplaceResourcesSetEndDateByStaffResponses = {
|
|
|
28510
29068
|
*/
|
|
28511
29069
|
200: unknown;
|
|
28512
29070
|
};
|
|
29071
|
+
export type MarketplaceResourcesSetPausedData = {
|
|
29072
|
+
body?: ResourcePausedRequest;
|
|
29073
|
+
path: {
|
|
29074
|
+
uuid: string;
|
|
29075
|
+
};
|
|
29076
|
+
query?: never;
|
|
29077
|
+
url: '/api/marketplace-resources/{uuid}/set_paused/';
|
|
29078
|
+
};
|
|
29079
|
+
export type MarketplaceResourcesSetPausedResponses = {
|
|
29080
|
+
/**
|
|
29081
|
+
* No response body
|
|
29082
|
+
*/
|
|
29083
|
+
200: unknown;
|
|
29084
|
+
};
|
|
29085
|
+
export type MarketplaceResourcesSetRestrictMemberAccessData = {
|
|
29086
|
+
body?: ResourceRestrictMemberAccessRequest;
|
|
29087
|
+
path: {
|
|
29088
|
+
uuid: string;
|
|
29089
|
+
};
|
|
29090
|
+
query?: never;
|
|
29091
|
+
url: '/api/marketplace-resources/{uuid}/set_restrict_member_access/';
|
|
29092
|
+
};
|
|
29093
|
+
export type MarketplaceResourcesSetRestrictMemberAccessResponses = {
|
|
29094
|
+
/**
|
|
29095
|
+
* No response body
|
|
29096
|
+
*/
|
|
29097
|
+
200: unknown;
|
|
29098
|
+
};
|
|
28513
29099
|
export type MarketplaceResourcesSetSlugData = {
|
|
28514
29100
|
body: ResourceSlugRequest;
|
|
28515
29101
|
path: {
|
|
@@ -29234,6 +29820,27 @@ export type MarketplaceServiceProvidersCreateResponses = {
|
|
|
29234
29820
|
201: ServiceProvider;
|
|
29235
29821
|
};
|
|
29236
29822
|
export type MarketplaceServiceProvidersCreateResponse = MarketplaceServiceProvidersCreateResponses[keyof MarketplaceServiceProvidersCreateResponses];
|
|
29823
|
+
export type ServiceProviderChecklistsSummaryData = {
|
|
29824
|
+
body?: never;
|
|
29825
|
+
path: {
|
|
29826
|
+
service_provider_uuid: string;
|
|
29827
|
+
};
|
|
29828
|
+
query?: {
|
|
29829
|
+
/**
|
|
29830
|
+
* A page number within the paginated result set.
|
|
29831
|
+
*/
|
|
29832
|
+
page?: number;
|
|
29833
|
+
/**
|
|
29834
|
+
* Number of results to return per page.
|
|
29835
|
+
*/
|
|
29836
|
+
page_size?: number;
|
|
29837
|
+
};
|
|
29838
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/compliance/checklists_summary/';
|
|
29839
|
+
};
|
|
29840
|
+
export type ServiceProviderChecklistsSummaryResponses = {
|
|
29841
|
+
200: Array<ServiceProviderChecklistSummary>;
|
|
29842
|
+
};
|
|
29843
|
+
export type ServiceProviderChecklistsSummaryResponse = ServiceProviderChecklistsSummaryResponses[keyof ServiceProviderChecklistsSummaryResponses];
|
|
29237
29844
|
export type ServiceProviderComplianceOverviewData = {
|
|
29238
29845
|
body?: never;
|
|
29239
29846
|
path: {
|
|
@@ -29695,7 +30302,7 @@ export type MarketplaceServiceProvidersProjectsListData = {
|
|
|
29695
30302
|
customer_name?: string;
|
|
29696
30303
|
customer_native_name?: string;
|
|
29697
30304
|
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'>;
|
|
30305
|
+
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
30306
|
/**
|
|
29700
30307
|
* Modified after
|
|
29701
30308
|
*/
|
|
@@ -30119,6 +30726,284 @@ export type MarketplaceServiceProvidersUpdateUserResponses = {
|
|
|
30119
30726
|
200: UserRoleExpirationTime;
|
|
30120
30727
|
};
|
|
30121
30728
|
export type MarketplaceServiceProvidersUpdateUserResponse = MarketplaceServiceProvidersUpdateUserResponses[keyof MarketplaceServiceProvidersUpdateUserResponses];
|
|
30729
|
+
export type MarketplaceSiteAgentIdentitiesListData = {
|
|
30730
|
+
body?: never;
|
|
30731
|
+
path?: never;
|
|
30732
|
+
query?: {
|
|
30733
|
+
/**
|
|
30734
|
+
* Last restarted after
|
|
30735
|
+
*/
|
|
30736
|
+
last_restarted?: string;
|
|
30737
|
+
name?: string;
|
|
30738
|
+
offering_uuid?: string;
|
|
30739
|
+
/**
|
|
30740
|
+
* A page number within the paginated result set.
|
|
30741
|
+
*/
|
|
30742
|
+
page?: number;
|
|
30743
|
+
/**
|
|
30744
|
+
* Number of results to return per page.
|
|
30745
|
+
*/
|
|
30746
|
+
page_size?: number;
|
|
30747
|
+
version?: string;
|
|
30748
|
+
};
|
|
30749
|
+
url: '/api/marketplace-site-agent-identities/';
|
|
30750
|
+
};
|
|
30751
|
+
export type MarketplaceSiteAgentIdentitiesListResponses = {
|
|
30752
|
+
200: Array<AgentIdentity>;
|
|
30753
|
+
};
|
|
30754
|
+
export type MarketplaceSiteAgentIdentitiesListResponse = MarketplaceSiteAgentIdentitiesListResponses[keyof MarketplaceSiteAgentIdentitiesListResponses];
|
|
30755
|
+
export type MarketplaceSiteAgentIdentitiesCountData = {
|
|
30756
|
+
body?: never;
|
|
30757
|
+
path?: never;
|
|
30758
|
+
query?: {
|
|
30759
|
+
/**
|
|
30760
|
+
* Last restarted after
|
|
30761
|
+
*/
|
|
30762
|
+
last_restarted?: string;
|
|
30763
|
+
name?: string;
|
|
30764
|
+
offering_uuid?: string;
|
|
30765
|
+
/**
|
|
30766
|
+
* A page number within the paginated result set.
|
|
30767
|
+
*/
|
|
30768
|
+
page?: number;
|
|
30769
|
+
/**
|
|
30770
|
+
* Number of results to return per page.
|
|
30771
|
+
*/
|
|
30772
|
+
page_size?: number;
|
|
30773
|
+
version?: string;
|
|
30774
|
+
};
|
|
30775
|
+
url: '/api/marketplace-site-agent-identities/';
|
|
30776
|
+
};
|
|
30777
|
+
export type MarketplaceSiteAgentIdentitiesCountResponses = {
|
|
30778
|
+
/**
|
|
30779
|
+
* No response body
|
|
30780
|
+
*/
|
|
30781
|
+
200: unknown;
|
|
30782
|
+
};
|
|
30783
|
+
export type MarketplaceSiteAgentIdentitiesCreateData = {
|
|
30784
|
+
body: AgentIdentityRequest;
|
|
30785
|
+
path?: never;
|
|
30786
|
+
query?: never;
|
|
30787
|
+
url: '/api/marketplace-site-agent-identities/';
|
|
30788
|
+
};
|
|
30789
|
+
export type MarketplaceSiteAgentIdentitiesCreateResponses = {
|
|
30790
|
+
201: AgentIdentity;
|
|
30791
|
+
};
|
|
30792
|
+
export type MarketplaceSiteAgentIdentitiesCreateResponse = MarketplaceSiteAgentIdentitiesCreateResponses[keyof MarketplaceSiteAgentIdentitiesCreateResponses];
|
|
30793
|
+
export type MarketplaceSiteAgentIdentitiesDestroyData = {
|
|
30794
|
+
body?: never;
|
|
30795
|
+
path: {
|
|
30796
|
+
uuid: string;
|
|
30797
|
+
};
|
|
30798
|
+
query?: never;
|
|
30799
|
+
url: '/api/marketplace-site-agent-identities/{uuid}/';
|
|
30800
|
+
};
|
|
30801
|
+
export type MarketplaceSiteAgentIdentitiesDestroyResponses = {
|
|
30802
|
+
/**
|
|
30803
|
+
* No response body
|
|
30804
|
+
*/
|
|
30805
|
+
204: void;
|
|
30806
|
+
};
|
|
30807
|
+
export type MarketplaceSiteAgentIdentitiesDestroyResponse = MarketplaceSiteAgentIdentitiesDestroyResponses[keyof MarketplaceSiteAgentIdentitiesDestroyResponses];
|
|
30808
|
+
export type MarketplaceSiteAgentIdentitiesRetrieveData = {
|
|
30809
|
+
body?: never;
|
|
30810
|
+
path: {
|
|
30811
|
+
uuid: string;
|
|
30812
|
+
};
|
|
30813
|
+
query?: never;
|
|
30814
|
+
url: '/api/marketplace-site-agent-identities/{uuid}/';
|
|
30815
|
+
};
|
|
30816
|
+
export type MarketplaceSiteAgentIdentitiesRetrieveResponses = {
|
|
30817
|
+
200: AgentIdentity;
|
|
30818
|
+
};
|
|
30819
|
+
export type MarketplaceSiteAgentIdentitiesRetrieveResponse = MarketplaceSiteAgentIdentitiesRetrieveResponses[keyof MarketplaceSiteAgentIdentitiesRetrieveResponses];
|
|
30820
|
+
export type MarketplaceSiteAgentIdentitiesUpdateData = {
|
|
30821
|
+
body: AgentIdentityRequest;
|
|
30822
|
+
path: {
|
|
30823
|
+
uuid: string;
|
|
30824
|
+
};
|
|
30825
|
+
query?: never;
|
|
30826
|
+
url: '/api/marketplace-site-agent-identities/{uuid}/';
|
|
30827
|
+
};
|
|
30828
|
+
export type MarketplaceSiteAgentIdentitiesUpdateResponses = {
|
|
30829
|
+
200: AgentIdentity;
|
|
30830
|
+
};
|
|
30831
|
+
export type MarketplaceSiteAgentIdentitiesUpdateResponse = MarketplaceSiteAgentIdentitiesUpdateResponses[keyof MarketplaceSiteAgentIdentitiesUpdateResponses];
|
|
30832
|
+
export type MarketplaceSiteAgentIdentitiesRegisterEventSubscriptionData = {
|
|
30833
|
+
body: AgentEventSubscriptionCreateRequest;
|
|
30834
|
+
path: {
|
|
30835
|
+
uuid: string;
|
|
30836
|
+
};
|
|
30837
|
+
query?: never;
|
|
30838
|
+
url: '/api/marketplace-site-agent-identities/{uuid}/register_event_subscription/';
|
|
30839
|
+
};
|
|
30840
|
+
export type MarketplaceSiteAgentIdentitiesRegisterEventSubscriptionResponses = {
|
|
30841
|
+
200: EventSubscription;
|
|
30842
|
+
201: EventSubscription;
|
|
30843
|
+
};
|
|
30844
|
+
export type MarketplaceSiteAgentIdentitiesRegisterEventSubscriptionResponse = MarketplaceSiteAgentIdentitiesRegisterEventSubscriptionResponses[keyof MarketplaceSiteAgentIdentitiesRegisterEventSubscriptionResponses];
|
|
30845
|
+
export type MarketplaceSiteAgentIdentitiesRegisterServiceData = {
|
|
30846
|
+
body: AgentServiceCreateRequest;
|
|
30847
|
+
path: {
|
|
30848
|
+
uuid: string;
|
|
30849
|
+
};
|
|
30850
|
+
query?: never;
|
|
30851
|
+
url: '/api/marketplace-site-agent-identities/{uuid}/register_service/';
|
|
30852
|
+
};
|
|
30853
|
+
export type MarketplaceSiteAgentIdentitiesRegisterServiceResponses = {
|
|
30854
|
+
200: AgentService;
|
|
30855
|
+
201: AgentService;
|
|
30856
|
+
};
|
|
30857
|
+
export type MarketplaceSiteAgentIdentitiesRegisterServiceResponse = MarketplaceSiteAgentIdentitiesRegisterServiceResponses[keyof MarketplaceSiteAgentIdentitiesRegisterServiceResponses];
|
|
30858
|
+
export type MarketplaceSiteAgentProcessorsListData = {
|
|
30859
|
+
body?: never;
|
|
30860
|
+
path?: never;
|
|
30861
|
+
query?: {
|
|
30862
|
+
backend_type?: string;
|
|
30863
|
+
backend_version?: string;
|
|
30864
|
+
/**
|
|
30865
|
+
* Last run after
|
|
30866
|
+
*/
|
|
30867
|
+
last_run?: string;
|
|
30868
|
+
/**
|
|
30869
|
+
* A page number within the paginated result set.
|
|
30870
|
+
*/
|
|
30871
|
+
page?: number;
|
|
30872
|
+
/**
|
|
30873
|
+
* Number of results to return per page.
|
|
30874
|
+
*/
|
|
30875
|
+
page_size?: number;
|
|
30876
|
+
service_uuid?: string;
|
|
30877
|
+
};
|
|
30878
|
+
url: '/api/marketplace-site-agent-processors/';
|
|
30879
|
+
};
|
|
30880
|
+
export type MarketplaceSiteAgentProcessorsListResponses = {
|
|
30881
|
+
200: Array<AgentProcessor>;
|
|
30882
|
+
};
|
|
30883
|
+
export type MarketplaceSiteAgentProcessorsListResponse = MarketplaceSiteAgentProcessorsListResponses[keyof MarketplaceSiteAgentProcessorsListResponses];
|
|
30884
|
+
export type MarketplaceSiteAgentProcessorsCountData = {
|
|
30885
|
+
body?: never;
|
|
30886
|
+
path?: never;
|
|
30887
|
+
query?: {
|
|
30888
|
+
backend_type?: string;
|
|
30889
|
+
backend_version?: string;
|
|
30890
|
+
/**
|
|
30891
|
+
* Last run after
|
|
30892
|
+
*/
|
|
30893
|
+
last_run?: string;
|
|
30894
|
+
/**
|
|
30895
|
+
* A page number within the paginated result set.
|
|
30896
|
+
*/
|
|
30897
|
+
page?: number;
|
|
30898
|
+
/**
|
|
30899
|
+
* Number of results to return per page.
|
|
30900
|
+
*/
|
|
30901
|
+
page_size?: number;
|
|
30902
|
+
service_uuid?: string;
|
|
30903
|
+
};
|
|
30904
|
+
url: '/api/marketplace-site-agent-processors/';
|
|
30905
|
+
};
|
|
30906
|
+
export type MarketplaceSiteAgentProcessorsCountResponses = {
|
|
30907
|
+
/**
|
|
30908
|
+
* No response body
|
|
30909
|
+
*/
|
|
30910
|
+
200: unknown;
|
|
30911
|
+
};
|
|
30912
|
+
export type MarketplaceSiteAgentProcessorsRetrieveData = {
|
|
30913
|
+
body?: never;
|
|
30914
|
+
path: {
|
|
30915
|
+
uuid: string;
|
|
30916
|
+
};
|
|
30917
|
+
query?: never;
|
|
30918
|
+
url: '/api/marketplace-site-agent-processors/{uuid}/';
|
|
30919
|
+
};
|
|
30920
|
+
export type MarketplaceSiteAgentProcessorsRetrieveResponses = {
|
|
30921
|
+
200: AgentProcessor;
|
|
30922
|
+
};
|
|
30923
|
+
export type MarketplaceSiteAgentProcessorsRetrieveResponse = MarketplaceSiteAgentProcessorsRetrieveResponses[keyof MarketplaceSiteAgentProcessorsRetrieveResponses];
|
|
30924
|
+
export type MarketplaceSiteAgentServicesListData = {
|
|
30925
|
+
body?: never;
|
|
30926
|
+
path?: never;
|
|
30927
|
+
query?: {
|
|
30928
|
+
identity_uuid?: string;
|
|
30929
|
+
mode?: string;
|
|
30930
|
+
/**
|
|
30931
|
+
* A page number within the paginated result set.
|
|
30932
|
+
*/
|
|
30933
|
+
page?: number;
|
|
30934
|
+
/**
|
|
30935
|
+
* Number of results to return per page.
|
|
30936
|
+
*/
|
|
30937
|
+
page_size?: number;
|
|
30938
|
+
state?: Array<1 | 2 | 3>;
|
|
30939
|
+
};
|
|
30940
|
+
url: '/api/marketplace-site-agent-services/';
|
|
30941
|
+
};
|
|
30942
|
+
export type MarketplaceSiteAgentServicesListResponses = {
|
|
30943
|
+
200: Array<AgentService>;
|
|
30944
|
+
};
|
|
30945
|
+
export type MarketplaceSiteAgentServicesListResponse = MarketplaceSiteAgentServicesListResponses[keyof MarketplaceSiteAgentServicesListResponses];
|
|
30946
|
+
export type MarketplaceSiteAgentServicesCountData = {
|
|
30947
|
+
body?: never;
|
|
30948
|
+
path?: never;
|
|
30949
|
+
query?: {
|
|
30950
|
+
identity_uuid?: string;
|
|
30951
|
+
mode?: string;
|
|
30952
|
+
/**
|
|
30953
|
+
* A page number within the paginated result set.
|
|
30954
|
+
*/
|
|
30955
|
+
page?: number;
|
|
30956
|
+
/**
|
|
30957
|
+
* Number of results to return per page.
|
|
30958
|
+
*/
|
|
30959
|
+
page_size?: number;
|
|
30960
|
+
state?: Array<1 | 2 | 3>;
|
|
30961
|
+
};
|
|
30962
|
+
url: '/api/marketplace-site-agent-services/';
|
|
30963
|
+
};
|
|
30964
|
+
export type MarketplaceSiteAgentServicesCountResponses = {
|
|
30965
|
+
/**
|
|
30966
|
+
* No response body
|
|
30967
|
+
*/
|
|
30968
|
+
200: unknown;
|
|
30969
|
+
};
|
|
30970
|
+
export type MarketplaceSiteAgentServicesRetrieveData = {
|
|
30971
|
+
body?: never;
|
|
30972
|
+
path: {
|
|
30973
|
+
uuid: string;
|
|
30974
|
+
};
|
|
30975
|
+
query?: never;
|
|
30976
|
+
url: '/api/marketplace-site-agent-services/{uuid}/';
|
|
30977
|
+
};
|
|
30978
|
+
export type MarketplaceSiteAgentServicesRetrieveResponses = {
|
|
30979
|
+
200: AgentService;
|
|
30980
|
+
};
|
|
30981
|
+
export type MarketplaceSiteAgentServicesRetrieveResponse = MarketplaceSiteAgentServicesRetrieveResponses[keyof MarketplaceSiteAgentServicesRetrieveResponses];
|
|
30982
|
+
export type MarketplaceSiteAgentServicesRegisterProcessorData = {
|
|
30983
|
+
body: AgentProcessorCreateRequest;
|
|
30984
|
+
path: {
|
|
30985
|
+
uuid: string;
|
|
30986
|
+
};
|
|
30987
|
+
query?: never;
|
|
30988
|
+
url: '/api/marketplace-site-agent-services/{uuid}/register_processor/';
|
|
30989
|
+
};
|
|
30990
|
+
export type MarketplaceSiteAgentServicesRegisterProcessorResponses = {
|
|
30991
|
+
200: AgentProcessor;
|
|
30992
|
+
201: AgentProcessor;
|
|
30993
|
+
};
|
|
30994
|
+
export type MarketplaceSiteAgentServicesRegisterProcessorResponse = MarketplaceSiteAgentServicesRegisterProcessorResponses[keyof MarketplaceSiteAgentServicesRegisterProcessorResponses];
|
|
30995
|
+
export type MarketplaceSiteAgentServicesSetStatisticsData = {
|
|
30996
|
+
body: AgentServiceStatisticsRequest;
|
|
30997
|
+
path: {
|
|
30998
|
+
uuid: string;
|
|
30999
|
+
};
|
|
31000
|
+
query?: never;
|
|
31001
|
+
url: '/api/marketplace-site-agent-services/{uuid}/set_statistics/';
|
|
31002
|
+
};
|
|
31003
|
+
export type MarketplaceSiteAgentServicesSetStatisticsResponses = {
|
|
31004
|
+
200: AgentService;
|
|
31005
|
+
};
|
|
31006
|
+
export type MarketplaceSiteAgentServicesSetStatisticsResponse = MarketplaceSiteAgentServicesSetStatisticsResponses[keyof MarketplaceSiteAgentServicesSetStatisticsResponses];
|
|
30122
31007
|
export type MarketplaceStatsComponentUsagesListData = {
|
|
30123
31008
|
body?: never;
|
|
30124
31009
|
path?: never;
|
|
@@ -31350,6 +32235,282 @@ export type NotificationMessagesEnableResponses = {
|
|
|
31350
32235
|
*/
|
|
31351
32236
|
200: unknown;
|
|
31352
32237
|
};
|
|
32238
|
+
export type OnboardingJustificationsListData = {
|
|
32239
|
+
body?: never;
|
|
32240
|
+
path?: never;
|
|
32241
|
+
query?: {
|
|
32242
|
+
/**
|
|
32243
|
+
* A page number within the paginated result set.
|
|
32244
|
+
*/
|
|
32245
|
+
page?: number;
|
|
32246
|
+
/**
|
|
32247
|
+
* Number of results to return per page.
|
|
32248
|
+
*/
|
|
32249
|
+
page_size?: number;
|
|
32250
|
+
};
|
|
32251
|
+
url: '/api/onboarding-justifications/';
|
|
32252
|
+
};
|
|
32253
|
+
export type OnboardingJustificationsListResponses = {
|
|
32254
|
+
200: Array<OnboardingJustification>;
|
|
32255
|
+
};
|
|
32256
|
+
export type OnboardingJustificationsListResponse = OnboardingJustificationsListResponses[keyof OnboardingJustificationsListResponses];
|
|
32257
|
+
export type OnboardingJustificationsCountData = {
|
|
32258
|
+
body?: never;
|
|
32259
|
+
path?: never;
|
|
32260
|
+
query?: {
|
|
32261
|
+
/**
|
|
32262
|
+
* A page number within the paginated result set.
|
|
32263
|
+
*/
|
|
32264
|
+
page?: number;
|
|
32265
|
+
/**
|
|
32266
|
+
* Number of results to return per page.
|
|
32267
|
+
*/
|
|
32268
|
+
page_size?: number;
|
|
32269
|
+
};
|
|
32270
|
+
url: '/api/onboarding-justifications/';
|
|
32271
|
+
};
|
|
32272
|
+
export type OnboardingJustificationsCountResponses = {
|
|
32273
|
+
/**
|
|
32274
|
+
* No response body
|
|
32275
|
+
*/
|
|
32276
|
+
200: unknown;
|
|
32277
|
+
};
|
|
32278
|
+
export type OnboardingJustificationsCreateData = {
|
|
32279
|
+
body: OnboardingJustificationRequest;
|
|
32280
|
+
path?: never;
|
|
32281
|
+
query?: never;
|
|
32282
|
+
url: '/api/onboarding-justifications/';
|
|
32283
|
+
};
|
|
32284
|
+
export type OnboardingJustificationsCreateResponses = {
|
|
32285
|
+
201: OnboardingJustification;
|
|
32286
|
+
};
|
|
32287
|
+
export type OnboardingJustificationsCreateResponse = OnboardingJustificationsCreateResponses[keyof OnboardingJustificationsCreateResponses];
|
|
32288
|
+
export type OnboardingJustificationsDestroyData = {
|
|
32289
|
+
body?: never;
|
|
32290
|
+
path: {
|
|
32291
|
+
uuid: string;
|
|
32292
|
+
};
|
|
32293
|
+
query?: never;
|
|
32294
|
+
url: '/api/onboarding-justifications/{uuid}/';
|
|
32295
|
+
};
|
|
32296
|
+
export type OnboardingJustificationsDestroyResponses = {
|
|
32297
|
+
/**
|
|
32298
|
+
* No response body
|
|
32299
|
+
*/
|
|
32300
|
+
204: void;
|
|
32301
|
+
};
|
|
32302
|
+
export type OnboardingJustificationsDestroyResponse = OnboardingJustificationsDestroyResponses[keyof OnboardingJustificationsDestroyResponses];
|
|
32303
|
+
export type OnboardingJustificationsRetrieveData = {
|
|
32304
|
+
body?: never;
|
|
32305
|
+
path: {
|
|
32306
|
+
uuid: string;
|
|
32307
|
+
};
|
|
32308
|
+
query?: never;
|
|
32309
|
+
url: '/api/onboarding-justifications/{uuid}/';
|
|
32310
|
+
};
|
|
32311
|
+
export type OnboardingJustificationsRetrieveResponses = {
|
|
32312
|
+
200: OnboardingJustification;
|
|
32313
|
+
};
|
|
32314
|
+
export type OnboardingJustificationsRetrieveResponse = OnboardingJustificationsRetrieveResponses[keyof OnboardingJustificationsRetrieveResponses];
|
|
32315
|
+
export type OnboardingJustificationsPartialUpdateData = {
|
|
32316
|
+
body?: PatchedOnboardingJustificationRequest;
|
|
32317
|
+
path: {
|
|
32318
|
+
uuid: string;
|
|
32319
|
+
};
|
|
32320
|
+
query?: never;
|
|
32321
|
+
url: '/api/onboarding-justifications/{uuid}/';
|
|
32322
|
+
};
|
|
32323
|
+
export type OnboardingJustificationsPartialUpdateResponses = {
|
|
32324
|
+
200: OnboardingJustification;
|
|
32325
|
+
};
|
|
32326
|
+
export type OnboardingJustificationsPartialUpdateResponse = OnboardingJustificationsPartialUpdateResponses[keyof OnboardingJustificationsPartialUpdateResponses];
|
|
32327
|
+
export type OnboardingJustificationsUpdateData = {
|
|
32328
|
+
body: OnboardingJustificationRequest;
|
|
32329
|
+
path: {
|
|
32330
|
+
uuid: string;
|
|
32331
|
+
};
|
|
32332
|
+
query?: never;
|
|
32333
|
+
url: '/api/onboarding-justifications/{uuid}/';
|
|
32334
|
+
};
|
|
32335
|
+
export type OnboardingJustificationsUpdateResponses = {
|
|
32336
|
+
200: OnboardingJustification;
|
|
32337
|
+
};
|
|
32338
|
+
export type OnboardingJustificationsUpdateResponse = OnboardingJustificationsUpdateResponses[keyof OnboardingJustificationsUpdateResponses];
|
|
32339
|
+
export type OnboardingJustificationsApproveData = {
|
|
32340
|
+
body?: OnboardingJustificationReviewRequest;
|
|
32341
|
+
path: {
|
|
32342
|
+
uuid: string;
|
|
32343
|
+
};
|
|
32344
|
+
query?: never;
|
|
32345
|
+
url: '/api/onboarding-justifications/{uuid}/approve/';
|
|
32346
|
+
};
|
|
32347
|
+
export type OnboardingJustificationsApproveResponses = {
|
|
32348
|
+
200: OnboardingJustification;
|
|
32349
|
+
};
|
|
32350
|
+
export type OnboardingJustificationsApproveResponse = OnboardingJustificationsApproveResponses[keyof OnboardingJustificationsApproveResponses];
|
|
32351
|
+
export type OnboardingJustificationsAttachDocumentData = {
|
|
32352
|
+
body?: OnboardingJustificationDocumentationRequest;
|
|
32353
|
+
path: {
|
|
32354
|
+
uuid: string;
|
|
32355
|
+
};
|
|
32356
|
+
query?: never;
|
|
32357
|
+
url: '/api/onboarding-justifications/{uuid}/attach_document/';
|
|
32358
|
+
};
|
|
32359
|
+
export type OnboardingJustificationsAttachDocumentResponses = {
|
|
32360
|
+
200: OnboardingJustificationDocumentation;
|
|
32361
|
+
};
|
|
32362
|
+
export type OnboardingJustificationsAttachDocumentResponse = OnboardingJustificationsAttachDocumentResponses[keyof OnboardingJustificationsAttachDocumentResponses];
|
|
32363
|
+
export type OnboardingJustificationsRejectData = {
|
|
32364
|
+
body?: OnboardingJustificationReviewRequest;
|
|
32365
|
+
path: {
|
|
32366
|
+
uuid: string;
|
|
32367
|
+
};
|
|
32368
|
+
query?: never;
|
|
32369
|
+
url: '/api/onboarding-justifications/{uuid}/reject/';
|
|
32370
|
+
};
|
|
32371
|
+
export type OnboardingJustificationsRejectResponses = {
|
|
32372
|
+
200: OnboardingJustification;
|
|
32373
|
+
};
|
|
32374
|
+
export type OnboardingJustificationsRejectResponse = OnboardingJustificationsRejectResponses[keyof OnboardingJustificationsRejectResponses];
|
|
32375
|
+
export type OnboardingJustificationsCreateJustificationData = {
|
|
32376
|
+
body: OnboardingJustificationCreateRequest;
|
|
32377
|
+
path?: never;
|
|
32378
|
+
query?: never;
|
|
32379
|
+
url: '/api/onboarding-justifications/create_justification/';
|
|
32380
|
+
};
|
|
32381
|
+
export type OnboardingJustificationsCreateJustificationResponses = {
|
|
32382
|
+
200: OnboardingJustification;
|
|
32383
|
+
};
|
|
32384
|
+
export type OnboardingJustificationsCreateJustificationResponse = OnboardingJustificationsCreateJustificationResponses[keyof OnboardingJustificationsCreateJustificationResponses];
|
|
32385
|
+
export type OnboardingVerificationsListData = {
|
|
32386
|
+
body?: never;
|
|
32387
|
+
path?: never;
|
|
32388
|
+
query?: {
|
|
32389
|
+
/**
|
|
32390
|
+
* A page number within the paginated result set.
|
|
32391
|
+
*/
|
|
32392
|
+
page?: number;
|
|
32393
|
+
/**
|
|
32394
|
+
* Number of results to return per page.
|
|
32395
|
+
*/
|
|
32396
|
+
page_size?: number;
|
|
32397
|
+
};
|
|
32398
|
+
url: '/api/onboarding-verifications/';
|
|
32399
|
+
};
|
|
32400
|
+
export type OnboardingVerificationsListResponses = {
|
|
32401
|
+
200: Array<OnboardingVerification>;
|
|
32402
|
+
};
|
|
32403
|
+
export type OnboardingVerificationsListResponse = OnboardingVerificationsListResponses[keyof OnboardingVerificationsListResponses];
|
|
32404
|
+
export type OnboardingVerificationsCountData = {
|
|
32405
|
+
body?: never;
|
|
32406
|
+
path?: never;
|
|
32407
|
+
query?: {
|
|
32408
|
+
/**
|
|
32409
|
+
* A page number within the paginated result set.
|
|
32410
|
+
*/
|
|
32411
|
+
page?: number;
|
|
32412
|
+
/**
|
|
32413
|
+
* Number of results to return per page.
|
|
32414
|
+
*/
|
|
32415
|
+
page_size?: number;
|
|
32416
|
+
};
|
|
32417
|
+
url: '/api/onboarding-verifications/';
|
|
32418
|
+
};
|
|
32419
|
+
export type OnboardingVerificationsCountResponses = {
|
|
32420
|
+
/**
|
|
32421
|
+
* No response body
|
|
32422
|
+
*/
|
|
32423
|
+
200: unknown;
|
|
32424
|
+
};
|
|
32425
|
+
export type OnboardingVerificationsCreateData = {
|
|
32426
|
+
body: OnboardingVerificationRequest;
|
|
32427
|
+
path?: never;
|
|
32428
|
+
query?: never;
|
|
32429
|
+
url: '/api/onboarding-verifications/';
|
|
32430
|
+
};
|
|
32431
|
+
export type OnboardingVerificationsCreateResponses = {
|
|
32432
|
+
201: OnboardingVerification;
|
|
32433
|
+
};
|
|
32434
|
+
export type OnboardingVerificationsCreateResponse = OnboardingVerificationsCreateResponses[keyof OnboardingVerificationsCreateResponses];
|
|
32435
|
+
export type OnboardingVerificationsDestroyData = {
|
|
32436
|
+
body?: never;
|
|
32437
|
+
path: {
|
|
32438
|
+
uuid: string;
|
|
32439
|
+
};
|
|
32440
|
+
query?: never;
|
|
32441
|
+
url: '/api/onboarding-verifications/{uuid}/';
|
|
32442
|
+
};
|
|
32443
|
+
export type OnboardingVerificationsDestroyResponses = {
|
|
32444
|
+
/**
|
|
32445
|
+
* No response body
|
|
32446
|
+
*/
|
|
32447
|
+
204: void;
|
|
32448
|
+
};
|
|
32449
|
+
export type OnboardingVerificationsDestroyResponse = OnboardingVerificationsDestroyResponses[keyof OnboardingVerificationsDestroyResponses];
|
|
32450
|
+
export type OnboardingVerificationsRetrieveData = {
|
|
32451
|
+
body?: never;
|
|
32452
|
+
path: {
|
|
32453
|
+
uuid: string;
|
|
32454
|
+
};
|
|
32455
|
+
query?: never;
|
|
32456
|
+
url: '/api/onboarding-verifications/{uuid}/';
|
|
32457
|
+
};
|
|
32458
|
+
export type OnboardingVerificationsRetrieveResponses = {
|
|
32459
|
+
200: OnboardingVerification;
|
|
32460
|
+
};
|
|
32461
|
+
export type OnboardingVerificationsRetrieveResponse = OnboardingVerificationsRetrieveResponses[keyof OnboardingVerificationsRetrieveResponses];
|
|
32462
|
+
export type OnboardingVerificationsPartialUpdateData = {
|
|
32463
|
+
body?: PatchedOnboardingVerificationRequest;
|
|
32464
|
+
path: {
|
|
32465
|
+
uuid: string;
|
|
32466
|
+
};
|
|
32467
|
+
query?: never;
|
|
32468
|
+
url: '/api/onboarding-verifications/{uuid}/';
|
|
32469
|
+
};
|
|
32470
|
+
export type OnboardingVerificationsPartialUpdateResponses = {
|
|
32471
|
+
200: OnboardingVerification;
|
|
32472
|
+
};
|
|
32473
|
+
export type OnboardingVerificationsPartialUpdateResponse = OnboardingVerificationsPartialUpdateResponses[keyof OnboardingVerificationsPartialUpdateResponses];
|
|
32474
|
+
export type OnboardingVerificationsUpdateData = {
|
|
32475
|
+
body: OnboardingVerificationRequest;
|
|
32476
|
+
path: {
|
|
32477
|
+
uuid: string;
|
|
32478
|
+
};
|
|
32479
|
+
query?: never;
|
|
32480
|
+
url: '/api/onboarding-verifications/{uuid}/';
|
|
32481
|
+
};
|
|
32482
|
+
export type OnboardingVerificationsUpdateResponses = {
|
|
32483
|
+
200: OnboardingVerification;
|
|
32484
|
+
};
|
|
32485
|
+
export type OnboardingVerificationsUpdateResponse = OnboardingVerificationsUpdateResponses[keyof OnboardingVerificationsUpdateResponses];
|
|
32486
|
+
export type OnboardingVerificationsCreateCustomerData = {
|
|
32487
|
+
body?: never;
|
|
32488
|
+
path: {
|
|
32489
|
+
uuid: string;
|
|
32490
|
+
};
|
|
32491
|
+
query?: never;
|
|
32492
|
+
url: '/api/onboarding-verifications/{uuid}/create_customer/';
|
|
32493
|
+
};
|
|
32494
|
+
export type OnboardingVerificationsCreateCustomerResponses = {
|
|
32495
|
+
201: Customer;
|
|
32496
|
+
};
|
|
32497
|
+
export type OnboardingVerificationsCreateCustomerResponse = OnboardingVerificationsCreateCustomerResponses[keyof OnboardingVerificationsCreateCustomerResponses];
|
|
32498
|
+
export type OnboardingVerificationsValidateCompanyData = {
|
|
32499
|
+
body: OnboardingCompanyValidationRequestRequest;
|
|
32500
|
+
path?: never;
|
|
32501
|
+
query?: never;
|
|
32502
|
+
url: '/api/onboarding-verifications/validate_company/';
|
|
32503
|
+
};
|
|
32504
|
+
export type OnboardingVerificationsValidateCompanyResponses = {
|
|
32505
|
+
200: OnboardingVerification;
|
|
32506
|
+
};
|
|
32507
|
+
export type OnboardingVerificationsValidateCompanyResponse = OnboardingVerificationsValidateCompanyResponses[keyof OnboardingVerificationsValidateCompanyResponses];
|
|
32508
|
+
export type OnboardingSupportedCountriesRetrieveData = {
|
|
32509
|
+
body?: never;
|
|
32510
|
+
path?: never;
|
|
32511
|
+
query?: never;
|
|
32512
|
+
url: '/api/onboarding/supported-countries/';
|
|
32513
|
+
};
|
|
31353
32514
|
export type OpenstackBackupsListData = {
|
|
31354
32515
|
body?: never;
|
|
31355
32516
|
path?: never;
|
|
@@ -32608,6 +33769,8 @@ export type OpenstackNetworkRbacPoliciesListData = {
|
|
|
32608
33769
|
policy_type?: 'access_as_external' | 'access_as_shared';
|
|
32609
33770
|
target_tenant?: string;
|
|
32610
33771
|
target_tenant_uuid?: string;
|
|
33772
|
+
tenant?: string;
|
|
33773
|
+
tenant_uuid?: string;
|
|
32611
33774
|
};
|
|
32612
33775
|
url: '/api/openstack-network-rbac-policies/';
|
|
32613
33776
|
};
|
|
@@ -32637,6 +33800,8 @@ export type OpenstackNetworkRbacPoliciesCountData = {
|
|
|
32637
33800
|
policy_type?: 'access_as_external' | 'access_as_shared';
|
|
32638
33801
|
target_tenant?: string;
|
|
32639
33802
|
target_tenant_uuid?: string;
|
|
33803
|
+
tenant?: string;
|
|
33804
|
+
tenant_uuid?: string;
|
|
32640
33805
|
};
|
|
32641
33806
|
url: '/api/openstack-network-rbac-policies/';
|
|
32642
33807
|
};
|
|
@@ -32646,6 +33811,31 @@ export type OpenstackNetworkRbacPoliciesCountResponses = {
|
|
|
32646
33811
|
*/
|
|
32647
33812
|
200: unknown;
|
|
32648
33813
|
};
|
|
33814
|
+
export type OpenstackNetworkRbacPoliciesCreateData = {
|
|
33815
|
+
body: NetworkRbacPolicyRequest;
|
|
33816
|
+
path?: never;
|
|
33817
|
+
query?: never;
|
|
33818
|
+
url: '/api/openstack-network-rbac-policies/';
|
|
33819
|
+
};
|
|
33820
|
+
export type OpenstackNetworkRbacPoliciesCreateResponses = {
|
|
33821
|
+
201: NetworkRbacPolicy;
|
|
33822
|
+
};
|
|
33823
|
+
export type OpenstackNetworkRbacPoliciesCreateResponse = OpenstackNetworkRbacPoliciesCreateResponses[keyof OpenstackNetworkRbacPoliciesCreateResponses];
|
|
33824
|
+
export type OpenstackNetworkRbacPoliciesDestroyData = {
|
|
33825
|
+
body?: never;
|
|
33826
|
+
path: {
|
|
33827
|
+
uuid: string;
|
|
33828
|
+
};
|
|
33829
|
+
query?: never;
|
|
33830
|
+
url: '/api/openstack-network-rbac-policies/{uuid}/';
|
|
33831
|
+
};
|
|
33832
|
+
export type OpenstackNetworkRbacPoliciesDestroyResponses = {
|
|
33833
|
+
/**
|
|
33834
|
+
* No response body
|
|
33835
|
+
*/
|
|
33836
|
+
204: void;
|
|
33837
|
+
};
|
|
33838
|
+
export type OpenstackNetworkRbacPoliciesDestroyResponse = OpenstackNetworkRbacPoliciesDestroyResponses[keyof OpenstackNetworkRbacPoliciesDestroyResponses];
|
|
32649
33839
|
export type OpenstackNetworkRbacPoliciesRetrieveData = {
|
|
32650
33840
|
body?: never;
|
|
32651
33841
|
path: {
|
|
@@ -32658,6 +33848,30 @@ export type OpenstackNetworkRbacPoliciesRetrieveResponses = {
|
|
|
32658
33848
|
200: NetworkRbacPolicy;
|
|
32659
33849
|
};
|
|
32660
33850
|
export type OpenstackNetworkRbacPoliciesRetrieveResponse = OpenstackNetworkRbacPoliciesRetrieveResponses[keyof OpenstackNetworkRbacPoliciesRetrieveResponses];
|
|
33851
|
+
export type OpenstackNetworkRbacPoliciesPartialUpdateData = {
|
|
33852
|
+
body?: PatchedNetworkRbacPolicyRequest;
|
|
33853
|
+
path: {
|
|
33854
|
+
uuid: string;
|
|
33855
|
+
};
|
|
33856
|
+
query?: never;
|
|
33857
|
+
url: '/api/openstack-network-rbac-policies/{uuid}/';
|
|
33858
|
+
};
|
|
33859
|
+
export type OpenstackNetworkRbacPoliciesPartialUpdateResponses = {
|
|
33860
|
+
200: NetworkRbacPolicy;
|
|
33861
|
+
};
|
|
33862
|
+
export type OpenstackNetworkRbacPoliciesPartialUpdateResponse = OpenstackNetworkRbacPoliciesPartialUpdateResponses[keyof OpenstackNetworkRbacPoliciesPartialUpdateResponses];
|
|
33863
|
+
export type OpenstackNetworkRbacPoliciesUpdateData = {
|
|
33864
|
+
body: NetworkRbacPolicyRequest;
|
|
33865
|
+
path: {
|
|
33866
|
+
uuid: string;
|
|
33867
|
+
};
|
|
33868
|
+
query?: never;
|
|
33869
|
+
url: '/api/openstack-network-rbac-policies/{uuid}/';
|
|
33870
|
+
};
|
|
33871
|
+
export type OpenstackNetworkRbacPoliciesUpdateResponses = {
|
|
33872
|
+
200: NetworkRbacPolicy;
|
|
33873
|
+
};
|
|
33874
|
+
export type OpenstackNetworkRbacPoliciesUpdateResponse = OpenstackNetworkRbacPoliciesUpdateResponses[keyof OpenstackNetworkRbacPoliciesUpdateResponses];
|
|
32661
33875
|
export type OpenstackNetworksListData = {
|
|
32662
33876
|
body?: never;
|
|
32663
33877
|
path?: never;
|
|
@@ -32857,7 +34071,7 @@ export type OpenstackNetworksPullResponses = {
|
|
|
32857
34071
|
200: unknown;
|
|
32858
34072
|
};
|
|
32859
34073
|
export type OpenstackNetworksRbacPolicyCreateData = {
|
|
32860
|
-
body:
|
|
34074
|
+
body: DeprecatedNetworkRbacPolicyRequest;
|
|
32861
34075
|
path: {
|
|
32862
34076
|
uuid: string;
|
|
32863
34077
|
};
|
|
@@ -32865,7 +34079,7 @@ export type OpenstackNetworksRbacPolicyCreateData = {
|
|
|
32865
34079
|
url: '/api/openstack-networks/{uuid}/rbac_policy_create/';
|
|
32866
34080
|
};
|
|
32867
34081
|
export type OpenstackNetworksRbacPolicyCreateResponses = {
|
|
32868
|
-
200:
|
|
34082
|
+
200: DeprecatedNetworkRbacPolicy;
|
|
32869
34083
|
};
|
|
32870
34084
|
export type OpenstackNetworksRbacPolicyCreateResponse = OpenstackNetworksRbacPolicyCreateResponses[keyof OpenstackNetworksRbacPolicyCreateResponses];
|
|
32871
34085
|
export type OpenstackNetworksRbacPolicyDeleteDestroyData = {
|
|
@@ -35652,7 +36866,7 @@ export type ProjectsListData = {
|
|
|
35652
36866
|
customer_name?: string;
|
|
35653
36867
|
customer_native_name?: string;
|
|
35654
36868
|
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'>;
|
|
36869
|
+
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
36870
|
/**
|
|
35657
36871
|
* Modified after
|
|
35658
36872
|
*/
|
|
@@ -35837,7 +37051,7 @@ export type ProjectsRetrieveData = {
|
|
|
35837
37051
|
uuid: string;
|
|
35838
37052
|
};
|
|
35839
37053
|
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'>;
|
|
37054
|
+
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
37055
|
};
|
|
35842
37056
|
url: '/api/projects/{uuid}/';
|
|
35843
37057
|
};
|
|
@@ -36060,6 +37274,34 @@ export type ProjectsUpdateUserResponses = {
|
|
|
36060
37274
|
200: UserRoleExpirationTime;
|
|
36061
37275
|
};
|
|
36062
37276
|
export type ProjectsUpdateUserResponse = ProjectsUpdateUserResponses[keyof ProjectsUpdateUserResponses];
|
|
37277
|
+
export type ProjectsChecklistTemplateRetrieveData = {
|
|
37278
|
+
body?: never;
|
|
37279
|
+
path?: never;
|
|
37280
|
+
query?: never;
|
|
37281
|
+
url: '/api/projects/checklist-template/';
|
|
37282
|
+
};
|
|
37283
|
+
export type ProjectsChecklistTemplateRetrieveErrors = {
|
|
37284
|
+
/**
|
|
37285
|
+
* No checklist configured
|
|
37286
|
+
*/
|
|
37287
|
+
400: unknown;
|
|
37288
|
+
};
|
|
37289
|
+
export type ProjectsChecklistTemplateRetrieveResponses = {
|
|
37290
|
+
200: ChecklistTemplate;
|
|
37291
|
+
};
|
|
37292
|
+
export type ProjectsChecklistTemplateRetrieveResponse = ProjectsChecklistTemplateRetrieveResponses[keyof ProjectsChecklistTemplateRetrieveResponses];
|
|
37293
|
+
export type ProjectsChecklistTemplateCountData = {
|
|
37294
|
+
body?: never;
|
|
37295
|
+
path?: never;
|
|
37296
|
+
query?: never;
|
|
37297
|
+
url: '/api/projects/checklist-template/';
|
|
37298
|
+
};
|
|
37299
|
+
export type ProjectsChecklistTemplateCountResponses = {
|
|
37300
|
+
/**
|
|
37301
|
+
* No response body
|
|
37302
|
+
*/
|
|
37303
|
+
200: unknown;
|
|
37304
|
+
};
|
|
36063
37305
|
export type PromotionsCampaignsListData = {
|
|
36064
37306
|
body?: never;
|
|
36065
37307
|
path?: never;
|
|
@@ -36737,6 +37979,34 @@ export type ProposalProposalsUpdateUserResponses = {
|
|
|
36737
37979
|
200: UserRoleExpirationTime;
|
|
36738
37980
|
};
|
|
36739
37981
|
export type ProposalProposalsUpdateUserResponse = ProposalProposalsUpdateUserResponses[keyof ProposalProposalsUpdateUserResponses];
|
|
37982
|
+
export type ProposalProposalsChecklistTemplateRetrieveData = {
|
|
37983
|
+
body?: never;
|
|
37984
|
+
path?: never;
|
|
37985
|
+
query?: never;
|
|
37986
|
+
url: '/api/proposal-proposals/checklist-template/';
|
|
37987
|
+
};
|
|
37988
|
+
export type ProposalProposalsChecklistTemplateRetrieveErrors = {
|
|
37989
|
+
/**
|
|
37990
|
+
* No checklist configured
|
|
37991
|
+
*/
|
|
37992
|
+
400: unknown;
|
|
37993
|
+
};
|
|
37994
|
+
export type ProposalProposalsChecklistTemplateRetrieveResponses = {
|
|
37995
|
+
200: ChecklistTemplate;
|
|
37996
|
+
};
|
|
37997
|
+
export type ProposalProposalsChecklistTemplateRetrieveResponse = ProposalProposalsChecklistTemplateRetrieveResponses[keyof ProposalProposalsChecklistTemplateRetrieveResponses];
|
|
37998
|
+
export type ProposalProposalsChecklistTemplateCountData = {
|
|
37999
|
+
body?: never;
|
|
38000
|
+
path?: never;
|
|
38001
|
+
query?: never;
|
|
38002
|
+
url: '/api/proposal-proposals/checklist-template/';
|
|
38003
|
+
};
|
|
38004
|
+
export type ProposalProposalsChecklistTemplateCountResponses = {
|
|
38005
|
+
/**
|
|
38006
|
+
* No response body
|
|
38007
|
+
*/
|
|
38008
|
+
200: unknown;
|
|
38009
|
+
};
|
|
36740
38010
|
export type ProposalProtectedCallsListData = {
|
|
36741
38011
|
body?: never;
|
|
36742
38012
|
path?: never;
|
|
@@ -37034,6 +38304,10 @@ export type ProposalProtectedCallsOfferingsListData = {
|
|
|
37034
38304
|
* Number of results to return per page.
|
|
37035
38305
|
*/
|
|
37036
38306
|
page_size?: number;
|
|
38307
|
+
/**
|
|
38308
|
+
* Filter by state
|
|
38309
|
+
*/
|
|
38310
|
+
state?: string;
|
|
37037
38311
|
};
|
|
37038
38312
|
url: '/api/proposal-protected-calls/{uuid}/offerings/';
|
|
37039
38313
|
};
|