waldur-js-client 8.0.10-dev.1 → 8.0.10-dev.3
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/types.gen.d.ts +127 -6
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -3095,6 +3095,7 @@ export type CallApplicantVisibilityConfig = {
|
|
|
3095
3095
|
expose_organization_type?: boolean;
|
|
3096
3096
|
expose_organization_registry_code?: boolean;
|
|
3097
3097
|
expose_organization_vat_code?: boolean;
|
|
3098
|
+
expose_organization_address?: boolean;
|
|
3098
3099
|
expose_affiliations?: boolean;
|
|
3099
3100
|
expose_phone_number?: boolean;
|
|
3100
3101
|
expose_job_title?: boolean;
|
|
@@ -3126,6 +3127,7 @@ export type CallApplicantVisibilityConfigRequest = {
|
|
|
3126
3127
|
expose_organization_type?: boolean;
|
|
3127
3128
|
expose_organization_registry_code?: boolean;
|
|
3128
3129
|
expose_organization_vat_code?: boolean;
|
|
3130
|
+
expose_organization_address?: boolean;
|
|
3129
3131
|
expose_affiliations?: boolean;
|
|
3130
3132
|
expose_phone_number?: boolean;
|
|
3131
3133
|
expose_job_title?: boolean;
|
|
@@ -10275,6 +10277,10 @@ export type MarketplaceServiceProviderUser = {
|
|
|
10275
10277
|
* VAT code of the user's organization
|
|
10276
10278
|
*/
|
|
10277
10279
|
organization_vat_code?: string;
|
|
10280
|
+
/**
|
|
10281
|
+
* Postal address of the user's organization
|
|
10282
|
+
*/
|
|
10283
|
+
organization_address?: string;
|
|
10278
10284
|
/**
|
|
10279
10285
|
* REFEDS assurance profile URIs from identity provider
|
|
10280
10286
|
*/
|
|
@@ -10518,6 +10524,10 @@ export type MergedPluginOptions = {
|
|
|
10518
10524
|
* Required user role in a project for provisioning of resources
|
|
10519
10525
|
*/
|
|
10520
10526
|
required_team_role_for_provisioning?: string | null;
|
|
10527
|
+
/**
|
|
10528
|
+
* List of project or organization role names (e.g. 'PROJECT.MANAGER') allowed to view and order this offering. When set, the offering is hidden from the catalog for other users and they cannot create orders for it. Whether their orders skip consumer review still depends on the role having the order-approval permission.
|
|
10529
|
+
*/
|
|
10530
|
+
restricted_to_roles?: Array<string>;
|
|
10521
10531
|
/**
|
|
10522
10532
|
* If set to True, users will be able to upload purchase orders.
|
|
10523
10533
|
*/
|
|
@@ -10860,6 +10870,10 @@ export type MergedPluginOptionsRequest = {
|
|
|
10860
10870
|
* Required user role in a project for provisioning of resources
|
|
10861
10871
|
*/
|
|
10862
10872
|
required_team_role_for_provisioning?: string | null;
|
|
10873
|
+
/**
|
|
10874
|
+
* List of project or organization role names (e.g. 'PROJECT.MANAGER') allowed to view and order this offering. When set, the offering is hidden from the catalog for other users and they cannot create orders for it. Whether their orders skip consumer review still depends on the role having the order-approval permission.
|
|
10875
|
+
*/
|
|
10876
|
+
restricted_to_roles?: Array<string>;
|
|
10863
10877
|
/**
|
|
10864
10878
|
* If set to True, users will be able to upload purchase orders.
|
|
10865
10879
|
*/
|
|
@@ -13778,6 +13792,10 @@ export type OfferingUser = {
|
|
|
13778
13792
|
* VAT code of the user's organization
|
|
13779
13793
|
*/
|
|
13780
13794
|
readonly user_organization_vat_code: string;
|
|
13795
|
+
/**
|
|
13796
|
+
* Postal address of the user's organization
|
|
13797
|
+
*/
|
|
13798
|
+
readonly user_organization_address: string;
|
|
13781
13799
|
/**
|
|
13782
13800
|
* REFEDS assurance profile URIs from identity provider
|
|
13783
13801
|
*/
|
|
@@ -13847,6 +13865,7 @@ export type OfferingUserAttributeConfig = {
|
|
|
13847
13865
|
expose_organization_type?: boolean;
|
|
13848
13866
|
expose_organization_registry_code?: boolean;
|
|
13849
13867
|
expose_organization_vat_code?: boolean;
|
|
13868
|
+
expose_organization_address?: boolean;
|
|
13850
13869
|
expose_affiliations?: boolean;
|
|
13851
13870
|
expose_phone_number?: boolean;
|
|
13852
13871
|
expose_job_title?: boolean;
|
|
@@ -13880,6 +13899,7 @@ export type OfferingUserAttributeConfigRequest = {
|
|
|
13880
13899
|
expose_organization_type?: boolean;
|
|
13881
13900
|
expose_organization_registry_code?: boolean;
|
|
13882
13901
|
expose_organization_vat_code?: boolean;
|
|
13902
|
+
expose_organization_address?: boolean;
|
|
13883
13903
|
expose_affiliations?: boolean;
|
|
13884
13904
|
expose_phone_number?: boolean;
|
|
13885
13905
|
expose_job_title?: boolean;
|
|
@@ -16573,6 +16593,10 @@ export type OrderDetails = {
|
|
|
16573
16593
|
* VAT code of the user's organization
|
|
16574
16594
|
*/
|
|
16575
16595
|
readonly created_by_organization_vat_code: string | null;
|
|
16596
|
+
/**
|
|
16597
|
+
* Postal address of the user's organization
|
|
16598
|
+
*/
|
|
16599
|
+
readonly created_by_organization_address: string | null;
|
|
16576
16600
|
readonly customer_name: string;
|
|
16577
16601
|
readonly customer_uuid: string;
|
|
16578
16602
|
readonly customer_slug: string;
|
|
@@ -17782,6 +17806,7 @@ export type PatchedOfferingUserAttributeConfigRequest = {
|
|
|
17782
17806
|
expose_organization_type?: boolean;
|
|
17783
17807
|
expose_organization_registry_code?: boolean;
|
|
17784
17808
|
expose_organization_vat_code?: boolean;
|
|
17809
|
+
expose_organization_address?: boolean;
|
|
17785
17810
|
expose_affiliations?: boolean;
|
|
17786
17811
|
expose_phone_number?: boolean;
|
|
17787
17812
|
expose_job_title?: boolean;
|
|
@@ -18948,6 +18973,10 @@ export type PatchedUserRequest = {
|
|
|
18948
18973
|
* VAT code of the user's organization
|
|
18949
18974
|
*/
|
|
18950
18975
|
organization_vat_code?: string;
|
|
18976
|
+
/**
|
|
18977
|
+
* Postal address of the user's organization
|
|
18978
|
+
*/
|
|
18979
|
+
organization_address?: string;
|
|
18951
18980
|
eduperson_assurance?: Array<string>;
|
|
18952
18981
|
/**
|
|
18953
18982
|
* Designates whether the user is allowed to manage remote user identities.
|
|
@@ -20250,6 +20279,10 @@ export type Proposal = {
|
|
|
20250
20279
|
* VAT code of the user's organization
|
|
20251
20280
|
*/
|
|
20252
20281
|
readonly applicant_organization_vat_code: string;
|
|
20282
|
+
/**
|
|
20283
|
+
* Postal address of the user's organization
|
|
20284
|
+
*/
|
|
20285
|
+
readonly applicant_organization_address: string | null;
|
|
20253
20286
|
readonly applicant_job_title: string;
|
|
20254
20287
|
/**
|
|
20255
20288
|
* Person's affiliation within organization such as student, faculty, staff.
|
|
@@ -27244,6 +27277,10 @@ export type User = {
|
|
|
27244
27277
|
* VAT code of the user's organization
|
|
27245
27278
|
*/
|
|
27246
27279
|
organization_vat_code?: string;
|
|
27280
|
+
/**
|
|
27281
|
+
* Postal address of the user's organization
|
|
27282
|
+
*/
|
|
27283
|
+
organization_address?: string;
|
|
27247
27284
|
eduperson_assurance?: Array<string>;
|
|
27248
27285
|
/**
|
|
27249
27286
|
* Designates whether the user is allowed to manage remote user identities.
|
|
@@ -27393,7 +27430,7 @@ export type UserAgreementRequest = {
|
|
|
27393
27430
|
*/
|
|
27394
27431
|
language: string;
|
|
27395
27432
|
};
|
|
27396
|
-
export type UserAttributeEnum = 'username' | 'registration_method' | 'first_name' | 'last_name' | 'full_name' | 'email' | 'phone_number' | 'organization' | 'job_title' | 'affiliations' | 'gender' | 'personal_title' | 'birth_date' | 'place_of_birth' | 'country_of_residence' | 'nationality' | 'nationalities' | 'organization_country' | 'organization_type' | 'organization_registry_code' | 'organization_vat_code' | 'eduperson_assurance' | 'civil_number' | 'identity_source';
|
|
27433
|
+
export type UserAttributeEnum = 'username' | 'registration_method' | 'first_name' | 'last_name' | 'full_name' | 'email' | 'phone_number' | 'organization' | 'job_title' | 'affiliations' | 'gender' | 'personal_title' | 'birth_date' | 'place_of_birth' | 'country_of_residence' | 'nationality' | 'nationalities' | 'organization_country' | 'organization_type' | 'organization_registry_code' | 'organization_vat_code' | 'organization_address' | 'eduperson_assurance' | 'civil_number' | 'identity_source';
|
|
27397
27434
|
export type UserAuthMethodCount = {
|
|
27398
27435
|
/**
|
|
27399
27436
|
* Authentication method
|
|
@@ -27655,6 +27692,10 @@ export type UserMe = {
|
|
|
27655
27692
|
* VAT code of the user's organization
|
|
27656
27693
|
*/
|
|
27657
27694
|
organization_vat_code?: string;
|
|
27695
|
+
/**
|
|
27696
|
+
* Postal address of the user's organization
|
|
27697
|
+
*/
|
|
27698
|
+
organization_address?: string;
|
|
27658
27699
|
eduperson_assurance?: Array<string>;
|
|
27659
27700
|
/**
|
|
27660
27701
|
* Designates whether the user is allowed to manage remote user identities.
|
|
@@ -27833,6 +27874,10 @@ export type UserRequest = {
|
|
|
27833
27874
|
* VAT code of the user's organization
|
|
27834
27875
|
*/
|
|
27835
27876
|
organization_vat_code?: string;
|
|
27877
|
+
/**
|
|
27878
|
+
* Postal address of the user's organization
|
|
27879
|
+
*/
|
|
27880
|
+
organization_address?: string;
|
|
27836
27881
|
eduperson_assurance?: Array<string>;
|
|
27837
27882
|
/**
|
|
27838
27883
|
* Designates whether the user is allowed to manage remote user identities.
|
|
@@ -30412,6 +30457,10 @@ export type UserRequestForm = {
|
|
|
30412
30457
|
* VAT code of the user's organization
|
|
30413
30458
|
*/
|
|
30414
30459
|
organization_vat_code?: string;
|
|
30460
|
+
/**
|
|
30461
|
+
* Postal address of the user's organization
|
|
30462
|
+
*/
|
|
30463
|
+
organization_address?: string;
|
|
30415
30464
|
eduperson_assurance?: Array<string>;
|
|
30416
30465
|
/**
|
|
30417
30466
|
* Designates whether the user is allowed to manage remote user identities.
|
|
@@ -30508,6 +30557,10 @@ export type UserRequestMultipart = {
|
|
|
30508
30557
|
* VAT code of the user's organization
|
|
30509
30558
|
*/
|
|
30510
30559
|
organization_vat_code?: string;
|
|
30560
|
+
/**
|
|
30561
|
+
* Postal address of the user's organization
|
|
30562
|
+
*/
|
|
30563
|
+
organization_address?: string;
|
|
30511
30564
|
eduperson_assurance?: Array<string>;
|
|
30512
30565
|
/**
|
|
30513
30566
|
* Designates whether the user is allowed to manage remote user identities.
|
|
@@ -30603,6 +30656,10 @@ export type PatchedUserRequestForm = {
|
|
|
30603
30656
|
* VAT code of the user's organization
|
|
30604
30657
|
*/
|
|
30605
30658
|
organization_vat_code?: string;
|
|
30659
|
+
/**
|
|
30660
|
+
* Postal address of the user's organization
|
|
30661
|
+
*/
|
|
30662
|
+
organization_address?: string;
|
|
30606
30663
|
eduperson_assurance?: Array<string>;
|
|
30607
30664
|
/**
|
|
30608
30665
|
* Designates whether the user is allowed to manage remote user identities.
|
|
@@ -30698,6 +30755,10 @@ export type PatchedUserRequestMultipart = {
|
|
|
30698
30755
|
* VAT code of the user's organization
|
|
30699
30756
|
*/
|
|
30700
30757
|
organization_vat_code?: string;
|
|
30758
|
+
/**
|
|
30759
|
+
* Postal address of the user's organization
|
|
30760
|
+
*/
|
|
30761
|
+
organization_address?: string;
|
|
30701
30762
|
eduperson_assurance?: Array<string>;
|
|
30702
30763
|
/**
|
|
30703
30764
|
* Designates whether the user is allowed to manage remote user identities.
|
|
@@ -30784,9 +30845,9 @@ export type OfferingPermissionOEnum = '-created' | '-email' | '-expiration_time'
|
|
|
30784
30845
|
export type OfferingReferralOEnum = '-published' | '-relation_type' | '-resource_type' | 'published' | 'relation_type' | 'resource_type';
|
|
30785
30846
|
export type OfferingTermsOfServiceOEnum = '-created' | '-modified' | '-version' | 'created' | 'modified' | 'version';
|
|
30786
30847
|
export type UserChecklistCompletionOEnum = '-is_completed' | '-modified' | 'is_completed' | 'modified';
|
|
30787
|
-
export type OfferingUserFieldEnum = 'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_profile_complete' | 'is_restricted' | 'missing_profile_attributes' | 'modified' | 'offering' | 'offering_has_active_tos' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'runtime_state' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_active_isds' | 'user_address' | 'user_affiliations' | 'user_birth_date' | 'user_civil_number' | 'user_country_of_residence' | 'user_eduperson_assurance' | 'user_email' | 'user_first_name' | 'user_full_name' | 'user_gender' | 'user_identity_source' | 'user_job_title' | 'user_last_name' | 'user_nationalities' | 'user_nationality' | 'user_organization' | 'user_organization_country' | 'user_organization_registry_code' | 'user_organization_type' | 'user_organization_vat_code' | 'user_personal_title' | 'user_phone_number' | 'user_place_of_birth' | 'user_username' | 'user_uuid' | 'username' | 'uuid';
|
|
30848
|
+
export type OfferingUserFieldEnum = 'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_profile_complete' | 'is_restricted' | 'missing_profile_attributes' | 'modified' | 'offering' | 'offering_has_active_tos' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'runtime_state' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_active_isds' | 'user_address' | 'user_affiliations' | 'user_birth_date' | 'user_civil_number' | 'user_country_of_residence' | 'user_eduperson_assurance' | 'user_email' | 'user_first_name' | 'user_full_name' | 'user_gender' | 'user_identity_source' | 'user_job_title' | 'user_last_name' | 'user_nationalities' | 'user_nationality' | 'user_organization' | 'user_organization_address' | 'user_organization_country' | 'user_organization_registry_code' | 'user_organization_type' | 'user_organization_vat_code' | 'user_personal_title' | 'user_phone_number' | 'user_place_of_birth' | 'user_username' | 'user_uuid' | 'username' | 'uuid';
|
|
30788
30849
|
export type OfferingUserOEnum = '-created' | '-modified' | '-username' | 'created' | 'modified' | 'username';
|
|
30789
|
-
export type OrderDetailsFieldEnum = 'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'auto_approved' | 'auto_approved_by_rule_uuid' | 'auto_approved_cost_limit_snapshot' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_message' | 'consumer_message_attachment' | 'consumer_rejection_comment' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_email' | 'created_by_full_name' | 'created_by_organization' | 'created_by_organization_country' | 'created_by_organization_registry_code' | 'created_by_organization_vat_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'error_updated_at' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'order_subtype' | 'output' | 'output_updated_at' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_message' | 'provider_message_attachment' | 'provider_message_url' | 'provider_name' | 'provider_rejection_comment' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'slug' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid';
|
|
30850
|
+
export type OrderDetailsFieldEnum = 'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'auto_approved' | 'auto_approved_by_rule_uuid' | 'auto_approved_cost_limit_snapshot' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_message' | 'consumer_message_attachment' | 'consumer_rejection_comment' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_email' | 'created_by_full_name' | 'created_by_organization' | 'created_by_organization_address' | 'created_by_organization_country' | 'created_by_organization_registry_code' | 'created_by_organization_vat_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'error_updated_at' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'order_subtype' | 'output' | 'output_updated_at' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_message' | 'provider_message_attachment' | 'provider_message_url' | 'provider_name' | 'provider_rejection_comment' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'slug' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid';
|
|
30790
30851
|
export type OrderDetailsOEnum = '-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state';
|
|
30791
30852
|
export type PublicOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'config_drive_default' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'offering_group' | 'offering_group_title' | 'offering_group_uuid' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details';
|
|
30792
30853
|
export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'draft' | 'pending' | 'rejected';
|
|
@@ -30794,7 +30855,7 @@ export type ProviderOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'ba
|
|
|
30794
30855
|
export type ProviderOfferingDetailsOEnum = '-created' | '-name' | '-state' | '-total_cost' | '-total_cost_estimated' | '-total_customers' | '-type' | 'created' | 'name' | 'state' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type';
|
|
30795
30856
|
export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
|
|
30796
30857
|
export type ProjectFieldEnum = 'affiliation' | 'affiliation_code' | 'affiliation_name' | 'affiliation_uuid' | 'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_grace_period_days' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'effective_end_date' | 'end_date' | 'end_date_requested_by' | 'end_date_updated_at' | 'grace_period_days' | 'image' | 'is_in_grace_period' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'project_metadata' | 'resources_count' | 'science_domain_code' | 'science_domain_name' | 'science_domain_uuid' | 'science_sub_domain' | 'science_sub_domain_code' | 'science_sub_domain_name' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
|
|
30797
|
-
export type UserFieldEnum = 'active_isds' | 'address' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | 'can_use_personal_access_tokens' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'deactivation_reason' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'has_usable_password' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_admin_deactivated' | 'is_identity_manager' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'managed_isds' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'organization_vat_code' | 'permissions' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'preferred_language' | 'registration_method' | 'requested_email' | 'should_protect_user_details' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
|
|
30858
|
+
export type UserFieldEnum = 'active_isds' | 'address' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | 'can_use_personal_access_tokens' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'deactivation_reason' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'has_usable_password' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_admin_deactivated' | 'is_identity_manager' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'managed_isds' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_address' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'organization_vat_code' | 'permissions' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'preferred_language' | 'registration_method' | 'requested_email' | 'should_protect_user_details' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
|
|
30798
30859
|
export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
|
|
30799
30860
|
export type ResourceTeamMemberFieldEnum = 'email' | 'expiration_time' | 'full_name' | 'image' | 'resource_projects' | 'role_name' | 'role_uuid' | 'url' | 'username' | 'uuid';
|
|
30800
30861
|
export type RobotAccountDetailsFieldEnum = 'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fingerprints' | 'keys' | 'modified' | 'offering_plugin_options' | 'project_name' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'resource' | 'resource_name' | 'resource_uuid' | 'responsible_user' | 'state' | 'type' | 'url' | 'user_keys' | 'username' | 'users' | 'uuid';
|
|
@@ -30804,7 +30865,7 @@ export type MarketplaceProviderCustomerProjectOEnum = '-created' | '-customer_ab
|
|
|
30804
30865
|
export type MarketplaceProviderCustomerFieldEnum = 'abbreviation' | 'billing_price_estimate' | 'email' | 'name' | 'payment_profiles' | 'phone_number' | 'projects' | 'projects_count' | 'slug' | 'users' | 'users_count' | 'uuid';
|
|
30805
30866
|
export type ProviderOfferingFieldEnum = 'billing_price_estimate' | 'category_title' | 'components' | 'customer_uuid' | 'name' | 'offering_group_title' | 'offering_group_uuid' | 'options' | 'plans' | 'resource_options' | 'resources_count' | 'secret_options' | 'slug' | 'state' | 'thumbnail' | 'type' | 'uuid';
|
|
30806
30867
|
export type ProjectPermissionLogFieldEnum = 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_uuid' | 'expiration_time' | 'project' | 'project_created' | 'project_end_date' | 'project_name' | 'project_uuid' | 'role' | 'role_name' | 'user' | 'user_email' | 'user_full_name' | 'user_native_name' | 'user_username' | 'user_uuid';
|
|
30807
|
-
export type MarketplaceServiceProviderUserFieldEnum = 'active_isds' | 'address' | 'affiliations' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'identity_source' | 'is_active' | 'job_title' | 'last_name' | 'nationalities' | 'nationality' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'organization_vat_code' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'projects_count' | 'registration_method' | 'username' | 'uuid';
|
|
30868
|
+
export type MarketplaceServiceProviderUserFieldEnum = 'active_isds' | 'address' | 'affiliations' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'identity_source' | 'is_active' | 'job_title' | 'last_name' | 'nationalities' | 'nationality' | 'organization' | 'organization_address' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'organization_vat_code' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'projects_count' | 'registration_method' | 'username' | 'uuid';
|
|
30808
30869
|
export type MarketplaceServiceProviderUserOEnum = '-description' | '-email' | '-full_name' | '-is_active' | '-is_staff' | '-is_support' | '-job_title' | '-native_name' | '-organization' | '-phone_number' | '-registration_method' | '-username' | 'description' | 'email' | 'full_name' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'native_name' | 'organization' | 'phone_number' | 'registration_method' | 'username';
|
|
30809
30870
|
export type AgentServiceStateEnum = 1 | 2 | 3;
|
|
30810
30871
|
export type SoftwareCatalogOEnum = '-catalog_type' | '-created' | '-modified' | '-name' | '-version' | 'catalog_type' | 'created' | 'modified' | 'name' | 'version';
|
|
@@ -30881,7 +30942,7 @@ export type IssueOEnum = '-assignee_name' | '-caller_first_name' | '-caller_last
|
|
|
30881
30942
|
export type SystemLogLevelEnum = 'CRITICAL' | 'ERROR' | 'INFO' | 'WARNING';
|
|
30882
30943
|
export type SystemLogOEnum = '-created' | '-instance' | '-level_number' | 'created' | 'instance' | 'level_number';
|
|
30883
30944
|
export type InvitationOEnum = '-created' | '-created_by' | '-email' | '-state' | 'created' | 'created_by' | 'email' | 'state';
|
|
30884
|
-
export type UserMeFieldEnum = 'active_isds' | 'address' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | 'can_use_personal_access_tokens' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'deactivation_reason' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'has_usable_password' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_admin_deactivated' | 'is_identity_manager' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'managed_isds' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'organization_vat_code' | 'permissions' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'preferred_language' | 'profile_completeness' | 'registration_method' | 'requested_email' | 'should_protect_user_details' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
|
|
30945
|
+
export type UserMeFieldEnum = 'active_isds' | 'address' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | 'can_use_personal_access_tokens' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'deactivation_reason' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'has_usable_password' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_admin_deactivated' | 'is_identity_manager' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'managed_isds' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_address' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'organization_vat_code' | 'permissions' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'preferred_language' | 'profile_completeness' | 'registration_method' | 'requested_email' | 'should_protect_user_details' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
|
|
30885
30946
|
export type VmwareDiskFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'state' | 'url' | 'uuid' | 'vm' | 'vm_name' | 'vm_uuid';
|
|
30886
30947
|
export type VmwarePortFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'mac_address' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'network' | 'network_name' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid' | 'vm' | 'vm_name' | 'vm_uuid';
|
|
30887
30948
|
export type VmwareVirtualMachineFieldEnum = 'access_url' | 'backend_id' | 'cluster' | 'cluster_name' | 'cores' | 'cores_per_socket' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'datastore' | 'datastore_name' | 'description' | 'disk' | 'disks' | 'error_message' | 'error_traceback' | 'folder' | 'folder_name' | 'guest_os' | 'guest_os_name' | 'guest_power_state' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'networks' | 'ports' | 'project' | 'project_name' | 'project_uuid' | 'ram' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'template' | 'template_name' | 'tools_installed' | 'tools_state' | 'url' | 'uuid';
|
|
@@ -39378,6 +39439,10 @@ export type CustomersListData = {
|
|
|
39378
39439
|
* Return a list of customers where current user has project create permission.
|
|
39379
39440
|
*/
|
|
39380
39441
|
current_user_has_project_create_permission?: boolean;
|
|
39442
|
+
/**
|
|
39443
|
+
* Multiple values may be separated by commas.
|
|
39444
|
+
*/
|
|
39445
|
+
current_user_has_role?: Array<string>;
|
|
39381
39446
|
field?: Array<CustomerFieldEnum>;
|
|
39382
39447
|
/**
|
|
39383
39448
|
* Filter by customers with resources.
|
|
@@ -39474,6 +39539,10 @@ export type CustomersCountData = {
|
|
|
39474
39539
|
* Return a list of customers where current user has project create permission.
|
|
39475
39540
|
*/
|
|
39476
39541
|
current_user_has_project_create_permission?: boolean;
|
|
39542
|
+
/**
|
|
39543
|
+
* Multiple values may be separated by commas.
|
|
39544
|
+
*/
|
|
39545
|
+
current_user_has_role?: Array<string>;
|
|
39477
39546
|
/**
|
|
39478
39547
|
* Filter by customers with resources.
|
|
39479
39548
|
*/
|
|
@@ -39869,6 +39938,10 @@ export type CustomersHistoryListData = {
|
|
|
39869
39938
|
* Return a list of customers where current user has project create permission.
|
|
39870
39939
|
*/
|
|
39871
39940
|
current_user_has_project_create_permission?: boolean;
|
|
39941
|
+
/**
|
|
39942
|
+
* Multiple values may be separated by commas.
|
|
39943
|
+
*/
|
|
39944
|
+
current_user_has_role?: Array<string>;
|
|
39872
39945
|
/**
|
|
39873
39946
|
* Filter by customers with resources.
|
|
39874
39947
|
*/
|
|
@@ -40170,6 +40243,10 @@ export type CustomersCountriesListData = {
|
|
|
40170
40243
|
* Return a list of customers where current user has project create permission.
|
|
40171
40244
|
*/
|
|
40172
40245
|
current_user_has_project_create_permission?: boolean;
|
|
40246
|
+
/**
|
|
40247
|
+
* Multiple values may be separated by commas.
|
|
40248
|
+
*/
|
|
40249
|
+
current_user_has_role?: Array<string>;
|
|
40173
40250
|
/**
|
|
40174
40251
|
* Filter by customers with resources.
|
|
40175
40252
|
*/
|
|
@@ -40265,6 +40342,10 @@ export type CustomersCountriesCountData = {
|
|
|
40265
40342
|
* Return a list of customers where current user has project create permission.
|
|
40266
40343
|
*/
|
|
40267
40344
|
current_user_has_project_create_permission?: boolean;
|
|
40345
|
+
/**
|
|
40346
|
+
* Multiple values may be separated by commas.
|
|
40347
|
+
*/
|
|
40348
|
+
current_user_has_role?: Array<string>;
|
|
40268
40349
|
/**
|
|
40269
40350
|
* Filter by customers with resources.
|
|
40270
40351
|
*/
|
|
@@ -41877,6 +41958,10 @@ export type FinancialReportsListData = {
|
|
|
41877
41958
|
* Return a list of customers where current user has project create permission.
|
|
41878
41959
|
*/
|
|
41879
41960
|
current_user_has_project_create_permission?: boolean;
|
|
41961
|
+
/**
|
|
41962
|
+
* Multiple values may be separated by commas.
|
|
41963
|
+
*/
|
|
41964
|
+
current_user_has_role?: Array<string>;
|
|
41880
41965
|
/**
|
|
41881
41966
|
* Filter by customer UUID.
|
|
41882
41967
|
*/
|
|
@@ -41964,6 +42049,10 @@ export type FinancialReportsCountData = {
|
|
|
41964
42049
|
* Return a list of customers where current user has project create permission.
|
|
41965
42050
|
*/
|
|
41966
42051
|
current_user_has_project_create_permission?: boolean;
|
|
42052
|
+
/**
|
|
42053
|
+
* Multiple values may be separated by commas.
|
|
42054
|
+
*/
|
|
42055
|
+
current_user_has_role?: Array<string>;
|
|
41967
42056
|
/**
|
|
41968
42057
|
* Filter by customer UUID.
|
|
41969
42058
|
*/
|
|
@@ -58452,6 +58541,10 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
|
|
|
58452
58541
|
* Created before
|
|
58453
58542
|
*/
|
|
58454
58543
|
created_before?: string;
|
|
58544
|
+
/**
|
|
58545
|
+
* Multiple values may be separated by commas.
|
|
58546
|
+
*/
|
|
58547
|
+
current_user_has_role?: Array<string>;
|
|
58455
58548
|
/**
|
|
58456
58549
|
* Multiple values may be separated by commas.
|
|
58457
58550
|
*/
|
|
@@ -58563,6 +58656,10 @@ export type MarketplaceServiceProvidersCustomersListData = {
|
|
|
58563
58656
|
* Return a list of customers where current user has project create permission.
|
|
58564
58657
|
*/
|
|
58565
58658
|
current_user_has_project_create_permission?: boolean;
|
|
58659
|
+
/**
|
|
58660
|
+
* Multiple values may be separated by commas.
|
|
58661
|
+
*/
|
|
58662
|
+
current_user_has_role?: Array<string>;
|
|
58566
58663
|
field?: Array<MarketplaceProviderCustomerFieldEnum>;
|
|
58567
58664
|
/**
|
|
58568
58665
|
* Name
|
|
@@ -59192,6 +59289,10 @@ export type MarketplaceServiceProvidersProjectsListData = {
|
|
|
59192
59289
|
* Created before
|
|
59193
59290
|
*/
|
|
59194
59291
|
created_before?: string;
|
|
59292
|
+
/**
|
|
59293
|
+
* Multiple values may be separated by commas.
|
|
59294
|
+
*/
|
|
59295
|
+
current_user_has_role?: Array<string>;
|
|
59195
59296
|
/**
|
|
59196
59297
|
* Multiple values may be separated by commas.
|
|
59197
59298
|
*/
|
|
@@ -59299,6 +59400,10 @@ export type MarketplaceServiceProvidersUserCustomersListData = {
|
|
|
59299
59400
|
* Return a list of customers where current user has project create permission.
|
|
59300
59401
|
*/
|
|
59301
59402
|
current_user_has_project_create_permission?: boolean;
|
|
59403
|
+
/**
|
|
59404
|
+
* Multiple values may be separated by commas.
|
|
59405
|
+
*/
|
|
59406
|
+
current_user_has_role?: Array<string>;
|
|
59302
59407
|
field?: Array<MarketplaceProviderCustomerFieldEnum>;
|
|
59303
59408
|
/**
|
|
59304
59409
|
* Name
|
|
@@ -66755,6 +66860,10 @@ export type OpenportalUnmanagedProjectsListData = {
|
|
|
66755
66860
|
* Created before
|
|
66756
66861
|
*/
|
|
66757
66862
|
created_before?: string;
|
|
66863
|
+
/**
|
|
66864
|
+
* Multiple values may be separated by commas.
|
|
66865
|
+
*/
|
|
66866
|
+
current_user_has_role?: Array<string>;
|
|
66758
66867
|
/**
|
|
66759
66868
|
* Multiple values may be separated by commas.
|
|
66760
66869
|
*/
|
|
@@ -66886,6 +66995,10 @@ export type OpenportalUnmanagedProjectsCountData = {
|
|
|
66886
66995
|
* Created before
|
|
66887
66996
|
*/
|
|
66888
66997
|
created_before?: string;
|
|
66998
|
+
/**
|
|
66999
|
+
* Multiple values may be separated by commas.
|
|
67000
|
+
*/
|
|
67001
|
+
current_user_has_role?: Array<string>;
|
|
66889
67002
|
/**
|
|
66890
67003
|
* Multiple values may be separated by commas.
|
|
66891
67004
|
*/
|
|
@@ -75817,6 +75930,10 @@ export type ProjectsListData = {
|
|
|
75817
75930
|
* Created before
|
|
75818
75931
|
*/
|
|
75819
75932
|
created_before?: string;
|
|
75933
|
+
/**
|
|
75934
|
+
* Multiple values may be separated by commas.
|
|
75935
|
+
*/
|
|
75936
|
+
current_user_has_role?: Array<string>;
|
|
75820
75937
|
/**
|
|
75821
75938
|
* Multiple values may be separated by commas.
|
|
75822
75939
|
*/
|
|
@@ -75948,6 +76065,10 @@ export type ProjectsCountData = {
|
|
|
75948
76065
|
* Created before
|
|
75949
76066
|
*/
|
|
75950
76067
|
created_before?: string;
|
|
76068
|
+
/**
|
|
76069
|
+
* Multiple values may be separated by commas.
|
|
76070
|
+
*/
|
|
76071
|
+
current_user_has_role?: Array<string>;
|
|
75951
76072
|
/**
|
|
75952
76073
|
* Multiple values may be separated by commas.
|
|
75953
76074
|
*/
|