waldur-js-client 7.7.8-dev.6 → 7.7.8-dev.8
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 +48 -9
- package/dist/sdk.gen.js +265 -38
- package/dist/types.gen.d.ts +504 -79
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -1160,6 +1160,20 @@ export type CampaignRequest = {
|
|
|
1160
1160
|
offerings: Array<string>;
|
|
1161
1161
|
required_offerings?: Array<string>;
|
|
1162
1162
|
};
|
|
1163
|
+
export type CancelRequestResponse = {
|
|
1164
|
+
/**
|
|
1165
|
+
* UUID of the canceled permission request
|
|
1166
|
+
*/
|
|
1167
|
+
uuid: string;
|
|
1168
|
+
/**
|
|
1169
|
+
* Name of the invitation scope
|
|
1170
|
+
*/
|
|
1171
|
+
scope_name: string;
|
|
1172
|
+
/**
|
|
1173
|
+
* UUID of the invitation scope
|
|
1174
|
+
*/
|
|
1175
|
+
scope_uuid: string;
|
|
1176
|
+
};
|
|
1163
1177
|
export type CategoryColumn = {
|
|
1164
1178
|
readonly uuid: string;
|
|
1165
1179
|
/**
|
|
@@ -1924,6 +1938,46 @@ export type Country = {
|
|
|
1924
1938
|
readonly value: string;
|
|
1925
1939
|
};
|
|
1926
1940
|
export type CountryEnum = 'AL' | 'AT' | 'BE' | 'BG' | 'BA' | 'CH' | 'CY' | 'CZ' | 'DE' | 'DK' | 'ES' | 'EE' | 'FI' | 'FR' | 'GB' | 'GE' | 'GR' | 'HR' | 'HU' | 'IE' | 'IS' | 'IT' | 'LT' | 'LU' | 'LV' | 'MC' | 'MK' | 'MT' | 'NL' | 'NO' | 'PL' | 'PT' | 'RO' | 'RS' | 'SK' | 'SI' | 'SE' | 'UA' | 'EU';
|
|
1941
|
+
export type CourseAccount = {
|
|
1942
|
+
readonly url: string;
|
|
1943
|
+
readonly uuid: string;
|
|
1944
|
+
readonly created: string;
|
|
1945
|
+
readonly modified: string;
|
|
1946
|
+
project: string;
|
|
1947
|
+
readonly project_uuid: string;
|
|
1948
|
+
readonly project_name: string;
|
|
1949
|
+
readonly user_uuid: string;
|
|
1950
|
+
readonly user_username: string;
|
|
1951
|
+
readonly customer_uuid: string;
|
|
1952
|
+
readonly customer_name: string;
|
|
1953
|
+
state: ServiceAccountState;
|
|
1954
|
+
email?: string;
|
|
1955
|
+
description?: string;
|
|
1956
|
+
readonly error_message: string;
|
|
1957
|
+
error_traceback?: string;
|
|
1958
|
+
};
|
|
1959
|
+
export type CourseAccountCreateNested = {
|
|
1960
|
+
email?: string;
|
|
1961
|
+
description?: string;
|
|
1962
|
+
};
|
|
1963
|
+
export type CourseAccountCreateNestedRequest = {
|
|
1964
|
+
email?: string;
|
|
1965
|
+
description?: string;
|
|
1966
|
+
};
|
|
1967
|
+
export type CourseAccountRequest = {
|
|
1968
|
+
project: string;
|
|
1969
|
+
email?: string;
|
|
1970
|
+
description?: string;
|
|
1971
|
+
error_traceback?: string;
|
|
1972
|
+
};
|
|
1973
|
+
export type CourseAccountsBulkCreate = {
|
|
1974
|
+
course_accounts: Array<CourseAccountCreateNested>;
|
|
1975
|
+
project: string;
|
|
1976
|
+
};
|
|
1977
|
+
export type CourseAccountsBulkCreateRequest = {
|
|
1978
|
+
course_accounts: Array<CourseAccountCreateNestedRequest>;
|
|
1979
|
+
project: string;
|
|
1980
|
+
};
|
|
1927
1981
|
export type CreateAttachmentsRequest = {
|
|
1928
1982
|
attachments: Array<Blob | File>;
|
|
1929
1983
|
};
|
|
@@ -2019,6 +2073,7 @@ export type Customer = {
|
|
|
2019
2073
|
slug?: string;
|
|
2020
2074
|
native_name?: string;
|
|
2021
2075
|
abbreviation?: string;
|
|
2076
|
+
description?: string;
|
|
2022
2077
|
contact_details?: string;
|
|
2023
2078
|
readonly agreement_number?: string;
|
|
2024
2079
|
/**
|
|
@@ -2160,11 +2215,11 @@ export type CustomerPermissionReview = {
|
|
|
2160
2215
|
readonly uuid: string;
|
|
2161
2216
|
readonly reviewer_full_name: string | null;
|
|
2162
2217
|
readonly reviewer_uuid: string | null;
|
|
2163
|
-
readonly customer_uuid: string;
|
|
2164
|
-
readonly customer_name: string;
|
|
2165
2218
|
readonly is_pending: boolean;
|
|
2166
2219
|
readonly created: string;
|
|
2167
2220
|
readonly closed: string | null;
|
|
2221
|
+
readonly customer_uuid: string;
|
|
2222
|
+
readonly customer_name: string;
|
|
2168
2223
|
};
|
|
2169
2224
|
export type CustomerQuotas = {
|
|
2170
2225
|
readonly customer_name: string;
|
|
@@ -2180,6 +2235,7 @@ export type CustomerRequest = {
|
|
|
2180
2235
|
name: string;
|
|
2181
2236
|
native_name?: string;
|
|
2182
2237
|
abbreviation?: string;
|
|
2238
|
+
description?: string;
|
|
2183
2239
|
contact_details?: string;
|
|
2184
2240
|
/**
|
|
2185
2241
|
* Email address
|
|
@@ -2495,7 +2551,7 @@ export type EventSubscriptionRequest = {
|
|
|
2495
2551
|
description?: string;
|
|
2496
2552
|
observable_objects?: unknown;
|
|
2497
2553
|
};
|
|
2498
|
-
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' | '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' | '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';
|
|
2554
|
+
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';
|
|
2499
2555
|
export type ExecutionStateEnum = 'Scheduled' | 'Processing' | 'OK' | 'Erred';
|
|
2500
2556
|
export type ExternalLink = {
|
|
2501
2557
|
readonly url: string;
|
|
@@ -2665,6 +2721,11 @@ export type GoogleCredentials = {
|
|
|
2665
2721
|
export type GroupInvitation = {
|
|
2666
2722
|
readonly scope_uuid: string;
|
|
2667
2723
|
readonly scope_name: string;
|
|
2724
|
+
/**
|
|
2725
|
+
* Get the description field from the scope if it exists.
|
|
2726
|
+
* Returns empty string if scope doesn't have a description field.
|
|
2727
|
+
*/
|
|
2728
|
+
readonly scope_description: string;
|
|
2668
2729
|
readonly scope_type: string | null;
|
|
2669
2730
|
readonly customer_uuid: string;
|
|
2670
2731
|
readonly customer_name: string;
|
|
@@ -2866,6 +2927,11 @@ export type IntegrationStatusDetails = {
|
|
|
2866
2927
|
export type Invitation = {
|
|
2867
2928
|
readonly scope_uuid: string;
|
|
2868
2929
|
readonly scope_name: string;
|
|
2930
|
+
/**
|
|
2931
|
+
* Get the description field from the scope if it exists.
|
|
2932
|
+
* Returns empty string if scope doesn't have a description field.
|
|
2933
|
+
*/
|
|
2934
|
+
readonly scope_description: string;
|
|
2869
2935
|
readonly scope_type: string | null;
|
|
2870
2936
|
readonly customer_uuid: string;
|
|
2871
2937
|
readonly customer_name: string;
|
|
@@ -3291,6 +3357,7 @@ export type KeycloakUserGroupMembershipRequest = {
|
|
|
3291
3357
|
role: string;
|
|
3292
3358
|
};
|
|
3293
3359
|
export type KeycloakUserGroupMembershipState = 'pending' | 'active';
|
|
3360
|
+
export type KindEnum = 'default' | 'course' | 'public';
|
|
3294
3361
|
export type LexisLink = {
|
|
3295
3362
|
readonly url: string;
|
|
3296
3363
|
readonly uuid: string;
|
|
@@ -7213,6 +7280,7 @@ export type PatchedCustomerRequest = {
|
|
|
7213
7280
|
name?: string;
|
|
7214
7281
|
native_name?: string;
|
|
7215
7282
|
abbreviation?: string;
|
|
7283
|
+
description?: string;
|
|
7216
7284
|
contact_details?: string;
|
|
7217
7285
|
/**
|
|
7218
7286
|
* Email address
|
|
@@ -7635,6 +7703,10 @@ export type PatchedProjectRequest = {
|
|
|
7635
7703
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
7636
7704
|
is_industry?: boolean;
|
|
7637
7705
|
image?: (Blob | File) | null;
|
|
7706
|
+
/**
|
|
7707
|
+
* Project type
|
|
7708
|
+
*/
|
|
7709
|
+
kind?: KindEnum;
|
|
7638
7710
|
};
|
|
7639
7711
|
export type PatchedProjectServiceAccountRequest = {
|
|
7640
7712
|
username?: string;
|
|
@@ -8274,6 +8346,10 @@ export type Project = {
|
|
|
8274
8346
|
* Maximum number of service accounts allowed
|
|
8275
8347
|
*/
|
|
8276
8348
|
readonly max_service_accounts?: number | null;
|
|
8349
|
+
/**
|
|
8350
|
+
* Project type
|
|
8351
|
+
*/
|
|
8352
|
+
kind?: KindEnum;
|
|
8277
8353
|
readonly project_credit?: number | null;
|
|
8278
8354
|
readonly marketplace_resource_count?: {
|
|
8279
8355
|
[key: string]: number;
|
|
@@ -8421,6 +8497,17 @@ export type ProjectPermissionLog = {
|
|
|
8421
8497
|
*/
|
|
8422
8498
|
readonly user_email?: string;
|
|
8423
8499
|
};
|
|
8500
|
+
export type ProjectPermissionReview = {
|
|
8501
|
+
readonly url: string;
|
|
8502
|
+
readonly uuid: string;
|
|
8503
|
+
readonly reviewer_full_name: string | null;
|
|
8504
|
+
readonly reviewer_uuid: string | null;
|
|
8505
|
+
readonly is_pending: boolean;
|
|
8506
|
+
readonly created: string;
|
|
8507
|
+
readonly closed: string | null;
|
|
8508
|
+
readonly project_uuid: string;
|
|
8509
|
+
readonly project_name: string;
|
|
8510
|
+
};
|
|
8424
8511
|
export type ProjectQuotas = {
|
|
8425
8512
|
readonly project_name: string;
|
|
8426
8513
|
readonly customer_name: string;
|
|
@@ -8447,6 +8534,10 @@ export type ProjectRequest = {
|
|
|
8447
8534
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
8448
8535
|
is_industry?: boolean;
|
|
8449
8536
|
image?: (Blob | File) | null;
|
|
8537
|
+
/**
|
|
8538
|
+
* Project type
|
|
8539
|
+
*/
|
|
8540
|
+
kind?: KindEnum;
|
|
8450
8541
|
};
|
|
8451
8542
|
export type ProjectServiceAccount = {
|
|
8452
8543
|
readonly url: string;
|
|
@@ -11311,6 +11402,20 @@ export type SubNetMappingRequest = {
|
|
|
11311
11402
|
src_cidr: string;
|
|
11312
11403
|
dst_cidr: string;
|
|
11313
11404
|
};
|
|
11405
|
+
export type SubmitRequestResponse = {
|
|
11406
|
+
/**
|
|
11407
|
+
* UUID of the created permission request
|
|
11408
|
+
*/
|
|
11409
|
+
uuid: string;
|
|
11410
|
+
/**
|
|
11411
|
+
* Name of the invitation scope
|
|
11412
|
+
*/
|
|
11413
|
+
scope_name: string;
|
|
11414
|
+
/**
|
|
11415
|
+
* UUID of the invitation scope
|
|
11416
|
+
*/
|
|
11417
|
+
scope_uuid: string;
|
|
11418
|
+
};
|
|
11314
11419
|
export type SubresourceOffering = {
|
|
11315
11420
|
readonly uuid: string;
|
|
11316
11421
|
readonly type: string;
|
|
@@ -11640,6 +11745,11 @@ export type VisibilityEnum = 'private' | 'public';
|
|
|
11640
11745
|
export type VisibleInvitationDetails = {
|
|
11641
11746
|
readonly scope_uuid: string;
|
|
11642
11747
|
readonly scope_name: string;
|
|
11748
|
+
/**
|
|
11749
|
+
* Get the description field from the scope if it exists.
|
|
11750
|
+
* Returns empty string if scope doesn't have a description field.
|
|
11751
|
+
*/
|
|
11752
|
+
readonly scope_description: string;
|
|
11643
11753
|
readonly scope_type: string | null;
|
|
11644
11754
|
readonly customer_uuid: string;
|
|
11645
11755
|
readonly customer_name: string;
|
|
@@ -16595,7 +16705,14 @@ export type CustomerPermissionsReviewsListData = {
|
|
|
16595
16705
|
body?: never;
|
|
16596
16706
|
path?: never;
|
|
16597
16707
|
query?: {
|
|
16708
|
+
closed?: string;
|
|
16709
|
+
/**
|
|
16710
|
+
* Customer UUID
|
|
16711
|
+
*/
|
|
16598
16712
|
customer_uuid?: string;
|
|
16713
|
+
/**
|
|
16714
|
+
* Is pending
|
|
16715
|
+
*/
|
|
16599
16716
|
is_pending?: boolean;
|
|
16600
16717
|
/**
|
|
16601
16718
|
* Ordering
|
|
@@ -16611,6 +16728,9 @@ export type CustomerPermissionsReviewsListData = {
|
|
|
16611
16728
|
* Number of results to return per page.
|
|
16612
16729
|
*/
|
|
16613
16730
|
page_size?: number;
|
|
16731
|
+
/**
|
|
16732
|
+
* Reviewer UUID
|
|
16733
|
+
*/
|
|
16614
16734
|
reviewer_uuid?: string;
|
|
16615
16735
|
};
|
|
16616
16736
|
url: '/api/customer-permissions-reviews/';
|
|
@@ -16623,7 +16743,14 @@ export type CustomerPermissionsReviewsCountData = {
|
|
|
16623
16743
|
body?: never;
|
|
16624
16744
|
path?: never;
|
|
16625
16745
|
query?: {
|
|
16746
|
+
closed?: string;
|
|
16747
|
+
/**
|
|
16748
|
+
* Customer UUID
|
|
16749
|
+
*/
|
|
16626
16750
|
customer_uuid?: string;
|
|
16751
|
+
/**
|
|
16752
|
+
* Is pending
|
|
16753
|
+
*/
|
|
16627
16754
|
is_pending?: boolean;
|
|
16628
16755
|
/**
|
|
16629
16756
|
* Ordering
|
|
@@ -16639,6 +16766,9 @@ export type CustomerPermissionsReviewsCountData = {
|
|
|
16639
16766
|
* Number of results to return per page.
|
|
16640
16767
|
*/
|
|
16641
16768
|
page_size?: number;
|
|
16769
|
+
/**
|
|
16770
|
+
* Reviewer UUID
|
|
16771
|
+
*/
|
|
16642
16772
|
reviewer_uuid?: string;
|
|
16643
16773
|
};
|
|
16644
16774
|
url: '/api/customer-permissions-reviews/';
|
|
@@ -16724,7 +16854,7 @@ export type CustomersListData = {
|
|
|
16724
16854
|
archived?: boolean;
|
|
16725
16855
|
backend_id?: string;
|
|
16726
16856
|
contact_details?: string;
|
|
16727
|
-
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' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | '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'>;
|
|
16857
|
+
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' | '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'>;
|
|
16728
16858
|
name?: string;
|
|
16729
16859
|
name_exact?: string;
|
|
16730
16860
|
native_name?: string;
|
|
@@ -16914,6 +17044,73 @@ export type CustomersProjectMetadataQuestionAnswersListResponses = {
|
|
|
16914
17044
|
200: Array<QuestionAnswer>;
|
|
16915
17045
|
};
|
|
16916
17046
|
export type CustomersProjectMetadataQuestionAnswersListResponse = CustomersProjectMetadataQuestionAnswersListResponses[keyof CustomersProjectMetadataQuestionAnswersListResponses];
|
|
17047
|
+
export type CustomersUsersListData = {
|
|
17048
|
+
body?: never;
|
|
17049
|
+
path: {
|
|
17050
|
+
/**
|
|
17051
|
+
* UUID of the customer
|
|
17052
|
+
*/
|
|
17053
|
+
customer_uuid: string;
|
|
17054
|
+
};
|
|
17055
|
+
query?: {
|
|
17056
|
+
/**
|
|
17057
|
+
* Agreement date after
|
|
17058
|
+
*/
|
|
17059
|
+
agreement_date?: string;
|
|
17060
|
+
civil_number?: string;
|
|
17061
|
+
/**
|
|
17062
|
+
* Date joined after
|
|
17063
|
+
*/
|
|
17064
|
+
date_joined?: string;
|
|
17065
|
+
description?: string;
|
|
17066
|
+
email?: string;
|
|
17067
|
+
field?: Array<'email' | 'expiration_time' | 'full_name' | 'image' | 'projects' | 'role_name' | 'url' | 'username' | 'uuid'>;
|
|
17068
|
+
/**
|
|
17069
|
+
* Full name
|
|
17070
|
+
*/
|
|
17071
|
+
full_name?: string;
|
|
17072
|
+
is_active?: boolean;
|
|
17073
|
+
job_title?: string;
|
|
17074
|
+
/**
|
|
17075
|
+
* Date modified after
|
|
17076
|
+
*/
|
|
17077
|
+
modified?: string;
|
|
17078
|
+
native_name?: string;
|
|
17079
|
+
/**
|
|
17080
|
+
* Ordering. Sort by a combination of first name, last name, and username.
|
|
17081
|
+
*/
|
|
17082
|
+
o?: 'concatenated_name' | '-concatenated_name';
|
|
17083
|
+
organization?: string;
|
|
17084
|
+
/**
|
|
17085
|
+
* Filter by one or more organization roles. Select a standard role or provide a custom role string. Can be specified multiple times.
|
|
17086
|
+
*/
|
|
17087
|
+
organization_role?: Array<('CUSTOMER.MANAGER' | 'CUSTOMER.OWNER' | 'CUSTOMER.SUPPORT') | string>;
|
|
17088
|
+
/**
|
|
17089
|
+
* A page number within the paginated result set.
|
|
17090
|
+
*/
|
|
17091
|
+
page?: number;
|
|
17092
|
+
/**
|
|
17093
|
+
* Number of results to return per page.
|
|
17094
|
+
*/
|
|
17095
|
+
page_size?: number;
|
|
17096
|
+
phone_number?: string;
|
|
17097
|
+
/**
|
|
17098
|
+
* Filter by one or more project roles. Select a standard role or provide a custom role string. Can be specified multiple times.
|
|
17099
|
+
*/
|
|
17100
|
+
project_role?: Array<('PROJECT.ADMIN' | 'PROJECT.MANAGER' | 'PROJECT.MEMBER') | string>;
|
|
17101
|
+
registration_method?: string;
|
|
17102
|
+
/**
|
|
17103
|
+
* User keyword
|
|
17104
|
+
*/
|
|
17105
|
+
user_keyword?: string;
|
|
17106
|
+
username?: string;
|
|
17107
|
+
};
|
|
17108
|
+
url: '/api/customers/{customer_uuid}/users/';
|
|
17109
|
+
};
|
|
17110
|
+
export type CustomersUsersListResponses = {
|
|
17111
|
+
200: Array<CustomerUser>;
|
|
17112
|
+
};
|
|
17113
|
+
export type CustomersUsersListResponse = CustomersUsersListResponses[keyof CustomersUsersListResponses];
|
|
16917
17114
|
export type CustomersDestroyData = {
|
|
16918
17115
|
body?: never;
|
|
16919
17116
|
path: {
|
|
@@ -16935,7 +17132,7 @@ export type CustomersRetrieveData = {
|
|
|
16935
17132
|
uuid: string;
|
|
16936
17133
|
};
|
|
16937
17134
|
query?: {
|
|
16938
|
-
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' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | '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'>;
|
|
17135
|
+
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' | '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'>;
|
|
16939
17136
|
};
|
|
16940
17137
|
url: '/api/customers/{uuid}/';
|
|
16941
17138
|
};
|
|
@@ -17094,43 +17291,6 @@ export type CustomersUpdateUserResponses = {
|
|
|
17094
17291
|
200: UserRoleExpirationTime;
|
|
17095
17292
|
};
|
|
17096
17293
|
export type CustomersUpdateUserResponse = CustomersUpdateUserResponses[keyof CustomersUpdateUserResponses];
|
|
17097
|
-
export type CustomersUsersListData = {
|
|
17098
|
-
body?: never;
|
|
17099
|
-
path: {
|
|
17100
|
-
uuid: string;
|
|
17101
|
-
};
|
|
17102
|
-
query?: {
|
|
17103
|
-
civil_number?: string;
|
|
17104
|
-
description?: string;
|
|
17105
|
-
email?: string;
|
|
17106
|
-
field?: Array<'email' | 'expiration_time' | 'full_name' | 'image' | 'projects' | 'role_name' | 'url' | 'username' | 'uuid'>;
|
|
17107
|
-
full_name?: string;
|
|
17108
|
-
is_active?: string;
|
|
17109
|
-
job_title?: string;
|
|
17110
|
-
native_name?: string;
|
|
17111
|
-
o?: string;
|
|
17112
|
-
organization?: string;
|
|
17113
|
-
organization_role?: string;
|
|
17114
|
-
/**
|
|
17115
|
-
* A page number within the paginated result set.
|
|
17116
|
-
*/
|
|
17117
|
-
page?: number;
|
|
17118
|
-
/**
|
|
17119
|
-
* Number of results to return per page.
|
|
17120
|
-
*/
|
|
17121
|
-
page_size?: number;
|
|
17122
|
-
phone_number?: string;
|
|
17123
|
-
project_role?: string;
|
|
17124
|
-
registration_method?: string;
|
|
17125
|
-
user_keyword?: string;
|
|
17126
|
-
username?: string;
|
|
17127
|
-
};
|
|
17128
|
-
url: '/api/customers/{uuid}/users/';
|
|
17129
|
-
};
|
|
17130
|
-
export type CustomersUsersListResponses = {
|
|
17131
|
-
200: Array<CustomerUser>;
|
|
17132
|
-
};
|
|
17133
|
-
export type CustomersUsersListResponse = CustomersUsersListResponses[keyof CustomersUsersListResponses];
|
|
17134
17294
|
export type CustomersCountriesListData = {
|
|
17135
17295
|
body?: never;
|
|
17136
17296
|
path?: never;
|
|
@@ -21389,6 +21549,101 @@ export type MarketplaceComponentUserUsagesRetrieveResponses = {
|
|
|
21389
21549
|
200: ComponentUserUsage;
|
|
21390
21550
|
};
|
|
21391
21551
|
export type MarketplaceComponentUserUsagesRetrieveResponse = MarketplaceComponentUserUsagesRetrieveResponses[keyof MarketplaceComponentUserUsagesRetrieveResponses];
|
|
21552
|
+
export type MarketplaceCourseAccountsListData = {
|
|
21553
|
+
body?: never;
|
|
21554
|
+
path?: never;
|
|
21555
|
+
query?: {
|
|
21556
|
+
email?: string;
|
|
21557
|
+
/**
|
|
21558
|
+
* A page number within the paginated result set.
|
|
21559
|
+
*/
|
|
21560
|
+
page?: number;
|
|
21561
|
+
/**
|
|
21562
|
+
* Number of results to return per page.
|
|
21563
|
+
*/
|
|
21564
|
+
page_size?: number;
|
|
21565
|
+
project_uuid?: string;
|
|
21566
|
+
state?: Array<'Closed' | 'Erred' | 'OK'>;
|
|
21567
|
+
username?: string;
|
|
21568
|
+
};
|
|
21569
|
+
url: '/api/marketplace-course-accounts/';
|
|
21570
|
+
};
|
|
21571
|
+
export type MarketplaceCourseAccountsListResponses = {
|
|
21572
|
+
200: Array<CourseAccount>;
|
|
21573
|
+
};
|
|
21574
|
+
export type MarketplaceCourseAccountsListResponse = MarketplaceCourseAccountsListResponses[keyof MarketplaceCourseAccountsListResponses];
|
|
21575
|
+
export type MarketplaceCourseAccountsCountData = {
|
|
21576
|
+
body?: never;
|
|
21577
|
+
path?: never;
|
|
21578
|
+
query?: {
|
|
21579
|
+
email?: string;
|
|
21580
|
+
/**
|
|
21581
|
+
* A page number within the paginated result set.
|
|
21582
|
+
*/
|
|
21583
|
+
page?: number;
|
|
21584
|
+
/**
|
|
21585
|
+
* Number of results to return per page.
|
|
21586
|
+
*/
|
|
21587
|
+
page_size?: number;
|
|
21588
|
+
project_uuid?: string;
|
|
21589
|
+
state?: Array<'Closed' | 'Erred' | 'OK'>;
|
|
21590
|
+
username?: string;
|
|
21591
|
+
};
|
|
21592
|
+
url: '/api/marketplace-course-accounts/';
|
|
21593
|
+
};
|
|
21594
|
+
export type MarketplaceCourseAccountsCountResponses = {
|
|
21595
|
+
/**
|
|
21596
|
+
* No response body
|
|
21597
|
+
*/
|
|
21598
|
+
200: unknown;
|
|
21599
|
+
};
|
|
21600
|
+
export type MarketplaceCourseAccountsCreateData = {
|
|
21601
|
+
body: CourseAccountRequest;
|
|
21602
|
+
path?: never;
|
|
21603
|
+
query?: never;
|
|
21604
|
+
url: '/api/marketplace-course-accounts/';
|
|
21605
|
+
};
|
|
21606
|
+
export type MarketplaceCourseAccountsCreateResponses = {
|
|
21607
|
+
201: CourseAccount;
|
|
21608
|
+
};
|
|
21609
|
+
export type MarketplaceCourseAccountsCreateResponse = MarketplaceCourseAccountsCreateResponses[keyof MarketplaceCourseAccountsCreateResponses];
|
|
21610
|
+
export type MarketplaceCourseAccountsDestroyData = {
|
|
21611
|
+
body?: never;
|
|
21612
|
+
path: {
|
|
21613
|
+
uuid: string;
|
|
21614
|
+
};
|
|
21615
|
+
query?: never;
|
|
21616
|
+
url: '/api/marketplace-course-accounts/{uuid}/';
|
|
21617
|
+
};
|
|
21618
|
+
export type MarketplaceCourseAccountsDestroyResponses = {
|
|
21619
|
+
/**
|
|
21620
|
+
* No response body
|
|
21621
|
+
*/
|
|
21622
|
+
204: void;
|
|
21623
|
+
};
|
|
21624
|
+
export type MarketplaceCourseAccountsDestroyResponse = MarketplaceCourseAccountsDestroyResponses[keyof MarketplaceCourseAccountsDestroyResponses];
|
|
21625
|
+
export type MarketplaceCourseAccountsRetrieveData = {
|
|
21626
|
+
body?: never;
|
|
21627
|
+
path: {
|
|
21628
|
+
uuid: string;
|
|
21629
|
+
};
|
|
21630
|
+
query?: never;
|
|
21631
|
+
url: '/api/marketplace-course-accounts/{uuid}/';
|
|
21632
|
+
};
|
|
21633
|
+
export type MarketplaceCourseAccountsRetrieveResponses = {
|
|
21634
|
+
200: CourseAccount;
|
|
21635
|
+
};
|
|
21636
|
+
export type MarketplaceCourseAccountsRetrieveResponse = MarketplaceCourseAccountsRetrieveResponses[keyof MarketplaceCourseAccountsRetrieveResponses];
|
|
21637
|
+
export type MarketplaceCourseAccountsCreateBulkData = {
|
|
21638
|
+
body: CourseAccountsBulkCreateRequest;
|
|
21639
|
+
path?: never;
|
|
21640
|
+
query?: never;
|
|
21641
|
+
url: '/api/marketplace-course-accounts/create_bulk/';
|
|
21642
|
+
};
|
|
21643
|
+
export type MarketplaceCourseAccountsCreateBulkResponses = {
|
|
21644
|
+
200: CourseAccountsBulkCreate;
|
|
21645
|
+
};
|
|
21646
|
+
export type MarketplaceCourseAccountsCreateBulkResponse = MarketplaceCourseAccountsCreateBulkResponses[keyof MarketplaceCourseAccountsCreateBulkResponses];
|
|
21392
21647
|
export type MarketplaceCustomerEstimatedCostPoliciesListData = {
|
|
21393
21648
|
body?: never;
|
|
21394
21649
|
path?: never;
|
|
@@ -27487,6 +27742,31 @@ export type ServiceProviderOfferingUsersComplianceResponses = {
|
|
|
27487
27742
|
200: Array<ServiceProviderOfferingUserCompliance>;
|
|
27488
27743
|
};
|
|
27489
27744
|
export type ServiceProviderOfferingUsersComplianceResponse = ServiceProviderOfferingUsersComplianceResponses[keyof ServiceProviderOfferingUsersComplianceResponses];
|
|
27745
|
+
export type MarketplaceServiceProvidersCourseAccountsListData = {
|
|
27746
|
+
body?: never;
|
|
27747
|
+
path: {
|
|
27748
|
+
service_provider_uuid: string;
|
|
27749
|
+
};
|
|
27750
|
+
query?: {
|
|
27751
|
+
email?: string;
|
|
27752
|
+
/**
|
|
27753
|
+
* A page number within the paginated result set.
|
|
27754
|
+
*/
|
|
27755
|
+
page?: number;
|
|
27756
|
+
/**
|
|
27757
|
+
* Number of results to return per page.
|
|
27758
|
+
*/
|
|
27759
|
+
page_size?: number;
|
|
27760
|
+
project_uuid?: string;
|
|
27761
|
+
state?: Array<'Closed' | 'Erred' | 'OK'>;
|
|
27762
|
+
username?: string;
|
|
27763
|
+
};
|
|
27764
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/course_accounts/';
|
|
27765
|
+
};
|
|
27766
|
+
export type MarketplaceServiceProvidersCourseAccountsListResponses = {
|
|
27767
|
+
200: Array<CourseAccount>;
|
|
27768
|
+
};
|
|
27769
|
+
export type MarketplaceServiceProvidersCourseAccountsListResponse = MarketplaceServiceProvidersCourseAccountsListResponses[keyof MarketplaceServiceProvidersCourseAccountsListResponses];
|
|
27490
27770
|
export type MarketplaceServiceProvidersCustomerProjectsListData = {
|
|
27491
27771
|
body?: never;
|
|
27492
27772
|
path: {
|
|
@@ -27851,7 +28131,7 @@ export type MarketplaceServiceProvidersProjectsListData = {
|
|
|
27851
28131
|
customer_name?: string;
|
|
27852
28132
|
customer_native_name?: string;
|
|
27853
28133
|
description?: string;
|
|
27854
|
-
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' | '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'>;
|
|
28134
|
+
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'>;
|
|
27855
28135
|
/**
|
|
27856
28136
|
* Modified after
|
|
27857
28137
|
*/
|
|
@@ -33579,6 +33859,110 @@ export type ProjectCreditsUpdateResponses = {
|
|
|
33579
33859
|
200: ProjectCredit;
|
|
33580
33860
|
};
|
|
33581
33861
|
export type ProjectCreditsUpdateResponse = ProjectCreditsUpdateResponses[keyof ProjectCreditsUpdateResponses];
|
|
33862
|
+
export type ProjectPermissionsReviewsListData = {
|
|
33863
|
+
body?: never;
|
|
33864
|
+
path?: never;
|
|
33865
|
+
query?: {
|
|
33866
|
+
closed?: string;
|
|
33867
|
+
/**
|
|
33868
|
+
* Is pending
|
|
33869
|
+
*/
|
|
33870
|
+
is_pending?: boolean;
|
|
33871
|
+
/**
|
|
33872
|
+
* Ordering
|
|
33873
|
+
*
|
|
33874
|
+
*
|
|
33875
|
+
*/
|
|
33876
|
+
o?: Array<'-closed' | '-created' | 'closed' | 'created'>;
|
|
33877
|
+
/**
|
|
33878
|
+
* A page number within the paginated result set.
|
|
33879
|
+
*/
|
|
33880
|
+
page?: number;
|
|
33881
|
+
/**
|
|
33882
|
+
* Number of results to return per page.
|
|
33883
|
+
*/
|
|
33884
|
+
page_size?: number;
|
|
33885
|
+
/**
|
|
33886
|
+
* Project UUID
|
|
33887
|
+
*/
|
|
33888
|
+
project_uuid?: string;
|
|
33889
|
+
/**
|
|
33890
|
+
* Reviewer UUID
|
|
33891
|
+
*/
|
|
33892
|
+
reviewer_uuid?: string;
|
|
33893
|
+
};
|
|
33894
|
+
url: '/api/project-permissions-reviews/';
|
|
33895
|
+
};
|
|
33896
|
+
export type ProjectPermissionsReviewsListResponses = {
|
|
33897
|
+
200: Array<ProjectPermissionReview>;
|
|
33898
|
+
};
|
|
33899
|
+
export type ProjectPermissionsReviewsListResponse = ProjectPermissionsReviewsListResponses[keyof ProjectPermissionsReviewsListResponses];
|
|
33900
|
+
export type ProjectPermissionsReviewsCountData = {
|
|
33901
|
+
body?: never;
|
|
33902
|
+
path?: never;
|
|
33903
|
+
query?: {
|
|
33904
|
+
closed?: string;
|
|
33905
|
+
/**
|
|
33906
|
+
* Is pending
|
|
33907
|
+
*/
|
|
33908
|
+
is_pending?: boolean;
|
|
33909
|
+
/**
|
|
33910
|
+
* Ordering
|
|
33911
|
+
*
|
|
33912
|
+
*
|
|
33913
|
+
*/
|
|
33914
|
+
o?: Array<'-closed' | '-created' | 'closed' | 'created'>;
|
|
33915
|
+
/**
|
|
33916
|
+
* A page number within the paginated result set.
|
|
33917
|
+
*/
|
|
33918
|
+
page?: number;
|
|
33919
|
+
/**
|
|
33920
|
+
* Number of results to return per page.
|
|
33921
|
+
*/
|
|
33922
|
+
page_size?: number;
|
|
33923
|
+
/**
|
|
33924
|
+
* Project UUID
|
|
33925
|
+
*/
|
|
33926
|
+
project_uuid?: string;
|
|
33927
|
+
/**
|
|
33928
|
+
* Reviewer UUID
|
|
33929
|
+
*/
|
|
33930
|
+
reviewer_uuid?: string;
|
|
33931
|
+
};
|
|
33932
|
+
url: '/api/project-permissions-reviews/';
|
|
33933
|
+
};
|
|
33934
|
+
export type ProjectPermissionsReviewsCountResponses = {
|
|
33935
|
+
/**
|
|
33936
|
+
* No response body
|
|
33937
|
+
*/
|
|
33938
|
+
200: unknown;
|
|
33939
|
+
};
|
|
33940
|
+
export type ProjectPermissionsReviewsRetrieveData = {
|
|
33941
|
+
body?: never;
|
|
33942
|
+
path: {
|
|
33943
|
+
uuid: string;
|
|
33944
|
+
};
|
|
33945
|
+
query?: never;
|
|
33946
|
+
url: '/api/project-permissions-reviews/{uuid}/';
|
|
33947
|
+
};
|
|
33948
|
+
export type ProjectPermissionsReviewsRetrieveResponses = {
|
|
33949
|
+
200: ProjectPermissionReview;
|
|
33950
|
+
};
|
|
33951
|
+
export type ProjectPermissionsReviewsRetrieveResponse = ProjectPermissionsReviewsRetrieveResponses[keyof ProjectPermissionsReviewsRetrieveResponses];
|
|
33952
|
+
export type ProjectPermissionsReviewsCloseData = {
|
|
33953
|
+
body?: never;
|
|
33954
|
+
path: {
|
|
33955
|
+
uuid: string;
|
|
33956
|
+
};
|
|
33957
|
+
query?: never;
|
|
33958
|
+
url: '/api/project-permissions-reviews/{uuid}/close/';
|
|
33959
|
+
};
|
|
33960
|
+
export type ProjectPermissionsReviewsCloseResponses = {
|
|
33961
|
+
/**
|
|
33962
|
+
* No response body
|
|
33963
|
+
*/
|
|
33964
|
+
200: unknown;
|
|
33965
|
+
};
|
|
33582
33966
|
export type ProjectQuotasListData = {
|
|
33583
33967
|
body?: never;
|
|
33584
33968
|
path?: never;
|
|
@@ -33704,7 +34088,7 @@ export type ProjectsListData = {
|
|
|
33704
34088
|
customer_name?: string;
|
|
33705
34089
|
customer_native_name?: string;
|
|
33706
34090
|
description?: string;
|
|
33707
|
-
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' | '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'>;
|
|
34091
|
+
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'>;
|
|
33708
34092
|
/**
|
|
33709
34093
|
* Modified after
|
|
33710
34094
|
*/
|
|
@@ -33810,6 +34194,64 @@ export type ProjectsCreateResponses = {
|
|
|
33810
34194
|
201: Project;
|
|
33811
34195
|
};
|
|
33812
34196
|
export type ProjectsCreateResponse = ProjectsCreateResponses[keyof ProjectsCreateResponses];
|
|
34197
|
+
export type ProjectsOtherUsersListData = {
|
|
34198
|
+
body?: never;
|
|
34199
|
+
path: {
|
|
34200
|
+
/**
|
|
34201
|
+
* UUID of the project
|
|
34202
|
+
*/
|
|
34203
|
+
project_uuid: string;
|
|
34204
|
+
};
|
|
34205
|
+
query?: {
|
|
34206
|
+
/**
|
|
34207
|
+
* Agreement date after
|
|
34208
|
+
*/
|
|
34209
|
+
agreement_date?: string;
|
|
34210
|
+
civil_number?: string;
|
|
34211
|
+
/**
|
|
34212
|
+
* Date joined after
|
|
34213
|
+
*/
|
|
34214
|
+
date_joined?: string;
|
|
34215
|
+
description?: string;
|
|
34216
|
+
email?: string;
|
|
34217
|
+
/**
|
|
34218
|
+
* Full name
|
|
34219
|
+
*/
|
|
34220
|
+
full_name?: string;
|
|
34221
|
+
is_active?: boolean;
|
|
34222
|
+
job_title?: string;
|
|
34223
|
+
/**
|
|
34224
|
+
* Date modified after
|
|
34225
|
+
*/
|
|
34226
|
+
modified?: string;
|
|
34227
|
+
native_name?: string;
|
|
34228
|
+
/**
|
|
34229
|
+
* Ordering. Sort by a combination of first name, last name, and username.
|
|
34230
|
+
*/
|
|
34231
|
+
o?: 'concatenated_name' | '-concatenated_name';
|
|
34232
|
+
organization?: string;
|
|
34233
|
+
/**
|
|
34234
|
+
* A page number within the paginated result set.
|
|
34235
|
+
*/
|
|
34236
|
+
page?: number;
|
|
34237
|
+
/**
|
|
34238
|
+
* Number of results to return per page.
|
|
34239
|
+
*/
|
|
34240
|
+
page_size?: number;
|
|
34241
|
+
phone_number?: string;
|
|
34242
|
+
registration_method?: string;
|
|
34243
|
+
/**
|
|
34244
|
+
* User keyword
|
|
34245
|
+
*/
|
|
34246
|
+
user_keyword?: string;
|
|
34247
|
+
username?: string;
|
|
34248
|
+
};
|
|
34249
|
+
url: '/api/projects/{project_uuid}/other_users/';
|
|
34250
|
+
};
|
|
34251
|
+
export type ProjectsOtherUsersListResponses = {
|
|
34252
|
+
200: Array<BasicUser>;
|
|
34253
|
+
};
|
|
34254
|
+
export type ProjectsOtherUsersListResponse = ProjectsOtherUsersListResponses[keyof ProjectsOtherUsersListResponses];
|
|
33813
34255
|
export type ProjectsDestroyData = {
|
|
33814
34256
|
body?: never;
|
|
33815
34257
|
path: {
|
|
@@ -33831,7 +34273,7 @@ export type ProjectsRetrieveData = {
|
|
|
33831
34273
|
uuid: string;
|
|
33832
34274
|
};
|
|
33833
34275
|
query?: {
|
|
33834
|
-
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' | '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'>;
|
|
34276
|
+
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'>;
|
|
33835
34277
|
};
|
|
33836
34278
|
url: '/api/projects/{uuid}/';
|
|
33837
34279
|
};
|
|
@@ -34006,39 +34448,6 @@ export type ProjectsMoveProjectResponses = {
|
|
|
34006
34448
|
200: Project;
|
|
34007
34449
|
};
|
|
34008
34450
|
export type ProjectsMoveProjectResponse = ProjectsMoveProjectResponses[keyof ProjectsMoveProjectResponses];
|
|
34009
|
-
export type ProjectsOtherUsersListData = {
|
|
34010
|
-
body?: never;
|
|
34011
|
-
path: {
|
|
34012
|
-
uuid: string;
|
|
34013
|
-
};
|
|
34014
|
-
query?: {
|
|
34015
|
-
civil_number?: string;
|
|
34016
|
-
description?: string;
|
|
34017
|
-
email?: string;
|
|
34018
|
-
full_name?: string;
|
|
34019
|
-
is_active?: string;
|
|
34020
|
-
job_title?: string;
|
|
34021
|
-
native_name?: string;
|
|
34022
|
-
organization?: string;
|
|
34023
|
-
/**
|
|
34024
|
-
* A page number within the paginated result set.
|
|
34025
|
-
*/
|
|
34026
|
-
page?: number;
|
|
34027
|
-
/**
|
|
34028
|
-
* Number of results to return per page.
|
|
34029
|
-
*/
|
|
34030
|
-
page_size?: number;
|
|
34031
|
-
phone_number?: string;
|
|
34032
|
-
registration_method?: string;
|
|
34033
|
-
user_keyword?: string;
|
|
34034
|
-
username?: string;
|
|
34035
|
-
};
|
|
34036
|
-
url: '/api/projects/{uuid}/other_users/';
|
|
34037
|
-
};
|
|
34038
|
-
export type ProjectsOtherUsersListResponses = {
|
|
34039
|
-
200: Array<BasicUser>;
|
|
34040
|
-
};
|
|
34041
|
-
export type ProjectsOtherUsersListResponse = ProjectsOtherUsersListResponses[keyof ProjectsOtherUsersListResponses];
|
|
34042
34451
|
export type ProjectsStatsRetrieveData = {
|
|
34043
34452
|
body?: never;
|
|
34044
34453
|
path: {
|
|
@@ -40138,7 +40547,7 @@ export type UserGroupInvitationsSubmitRequestData = {
|
|
|
40138
40547
|
url: '/api/user-group-invitations/{uuid}/submit_request/';
|
|
40139
40548
|
};
|
|
40140
40549
|
export type UserGroupInvitationsSubmitRequestResponses = {
|
|
40141
|
-
200:
|
|
40550
|
+
200: SubmitRequestResponse;
|
|
40142
40551
|
};
|
|
40143
40552
|
export type UserGroupInvitationsSubmitRequestResponse = UserGroupInvitationsSubmitRequestResponses[keyof UserGroupInvitationsSubmitRequestResponses];
|
|
40144
40553
|
export type UserInvitationsListData = {
|
|
@@ -40164,6 +40573,8 @@ export type UserInvitationsListData = {
|
|
|
40164
40573
|
page_size?: number;
|
|
40165
40574
|
role_name?: string;
|
|
40166
40575
|
role_uuid?: string;
|
|
40576
|
+
scope_description?: string;
|
|
40577
|
+
scope_name?: string;
|
|
40167
40578
|
scope_type?: string;
|
|
40168
40579
|
state?: Array<'accepted' | 'canceled' | 'expired' | 'pending' | 'project' | 'rejected' | 'requested'>;
|
|
40169
40580
|
};
|
|
@@ -40196,6 +40607,8 @@ export type UserInvitationsCountData = {
|
|
|
40196
40607
|
page_size?: number;
|
|
40197
40608
|
role_name?: string;
|
|
40198
40609
|
role_uuid?: string;
|
|
40610
|
+
scope_description?: string;
|
|
40611
|
+
scope_name?: string;
|
|
40199
40612
|
scope_type?: string;
|
|
40200
40613
|
state?: Array<'accepted' | 'canceled' | 'expired' | 'pending' | 'project' | 'rejected' | 'requested'>;
|
|
40201
40614
|
};
|
|
@@ -40417,6 +40830,18 @@ export type UserPermissionRequestsApproveResponses = {
|
|
|
40417
40830
|
200: ReviewComment;
|
|
40418
40831
|
};
|
|
40419
40832
|
export type UserPermissionRequestsApproveResponse = UserPermissionRequestsApproveResponses[keyof UserPermissionRequestsApproveResponses];
|
|
40833
|
+
export type UserPermissionRequestsCancelRequestData = {
|
|
40834
|
+
body?: never;
|
|
40835
|
+
path: {
|
|
40836
|
+
uuid: string;
|
|
40837
|
+
};
|
|
40838
|
+
query?: never;
|
|
40839
|
+
url: '/api/user-permission-requests/{uuid}/cancel_request/';
|
|
40840
|
+
};
|
|
40841
|
+
export type UserPermissionRequestsCancelRequestResponses = {
|
|
40842
|
+
200: CancelRequestResponse;
|
|
40843
|
+
};
|
|
40844
|
+
export type UserPermissionRequestsCancelRequestResponse = UserPermissionRequestsCancelRequestResponses[keyof UserPermissionRequestsCancelRequestResponses];
|
|
40420
40845
|
export type UserPermissionRequestsRejectData = {
|
|
40421
40846
|
body?: ReviewCommentRequest;
|
|
40422
40847
|
path: {
|