waldur-js-client 8.0.7-dev.30 → 8.0.7-dev.32
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 +83 -5
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -4426,6 +4426,7 @@ export type ConstanceSettings = {
|
|
|
4426
4426
|
OIDC_CACHE_TIMEOUT?: number;
|
|
4427
4427
|
OIDC_ACCESS_TOKEN_ENABLED?: boolean;
|
|
4428
4428
|
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
4429
|
+
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS_RESPONSE_MESSAGE?: string;
|
|
4429
4430
|
OIDC_MATCHMAKING_BY_EMAIL?: boolean;
|
|
4430
4431
|
OIDC_DEFAULT_LOGOUT_URL?: string;
|
|
4431
4432
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
@@ -4677,6 +4678,7 @@ export type ConstanceSettingsRequest = {
|
|
|
4677
4678
|
OIDC_CACHE_TIMEOUT?: number;
|
|
4678
4679
|
OIDC_ACCESS_TOKEN_ENABLED?: boolean;
|
|
4679
4680
|
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
4681
|
+
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS_RESPONSE_MESSAGE?: string;
|
|
4680
4682
|
OIDC_MATCHMAKING_BY_EMAIL?: boolean;
|
|
4681
4683
|
OIDC_DEFAULT_LOGOUT_URL?: string;
|
|
4682
4684
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
@@ -10043,6 +10045,8 @@ export type Message = {
|
|
|
10043
10045
|
readonly sequence_index: number;
|
|
10044
10046
|
readonly replaces: string | null;
|
|
10045
10047
|
readonly created: string;
|
|
10048
|
+
readonly input_tokens: number | null;
|
|
10049
|
+
readonly output_tokens: number | null;
|
|
10046
10050
|
readonly is_flagged: boolean;
|
|
10047
10051
|
severity: InjectionSeverityEnum;
|
|
10048
10052
|
readonly injection_categories: unknown;
|
|
@@ -17126,6 +17130,10 @@ export type PatchedUserRequest = {
|
|
|
17126
17130
|
* List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
|
|
17127
17131
|
*/
|
|
17128
17132
|
managed_isds?: unknown;
|
|
17133
|
+
/**
|
|
17134
|
+
* Reason why the user was deactivated. Visible to staff and support.
|
|
17135
|
+
*/
|
|
17136
|
+
deactivation_reason?: string;
|
|
17129
17137
|
};
|
|
17130
17138
|
export type PatchedVmwareVirtualMachineRequest = {
|
|
17131
17139
|
description?: string;
|
|
@@ -23979,6 +23987,11 @@ export type ThreadSession = {
|
|
|
23979
23987
|
readonly flags?: unknown;
|
|
23980
23988
|
is_archived?: boolean;
|
|
23981
23989
|
readonly message_count?: number;
|
|
23990
|
+
readonly input_tokens?: number | null;
|
|
23991
|
+
readonly output_tokens?: number | null;
|
|
23992
|
+
readonly total_tokens?: number | null;
|
|
23993
|
+
readonly title_gen_input_tokens?: number | null;
|
|
23994
|
+
readonly title_gen_output_tokens?: number | null;
|
|
23982
23995
|
readonly is_flagged?: boolean;
|
|
23983
23996
|
max_severity?: InjectionSeverityEnum;
|
|
23984
23997
|
readonly user_username?: string;
|
|
@@ -24394,6 +24407,10 @@ export type User = {
|
|
|
24394
24407
|
* List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
|
|
24395
24408
|
*/
|
|
24396
24409
|
readonly active_isds?: unknown;
|
|
24410
|
+
/**
|
|
24411
|
+
* Reason why the user was deactivated. Visible to staff and support.
|
|
24412
|
+
*/
|
|
24413
|
+
deactivation_reason?: string;
|
|
24397
24414
|
};
|
|
24398
24415
|
export type UserAction = {
|
|
24399
24416
|
readonly uuid: string;
|
|
@@ -24783,6 +24800,10 @@ export type UserRequest = {
|
|
|
24783
24800
|
* List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
|
|
24784
24801
|
*/
|
|
24785
24802
|
managed_isds?: unknown;
|
|
24803
|
+
/**
|
|
24804
|
+
* Reason why the user was deactivated. Visible to staff and support.
|
|
24805
|
+
*/
|
|
24806
|
+
deactivation_reason?: string;
|
|
24786
24807
|
};
|
|
24787
24808
|
export type UserResidenceCountryStats = {
|
|
24788
24809
|
/**
|
|
@@ -26582,6 +26603,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
26582
26603
|
OIDC_CACHE_TIMEOUT?: number;
|
|
26583
26604
|
OIDC_ACCESS_TOKEN_ENABLED?: boolean;
|
|
26584
26605
|
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
26606
|
+
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS_RESPONSE_MESSAGE?: string;
|
|
26585
26607
|
OIDC_MATCHMAKING_BY_EMAIL?: boolean;
|
|
26586
26608
|
OIDC_DEFAULT_LOGOUT_URL?: string;
|
|
26587
26609
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
@@ -26833,6 +26855,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
26833
26855
|
OIDC_CACHE_TIMEOUT?: number;
|
|
26834
26856
|
OIDC_ACCESS_TOKEN_ENABLED?: boolean;
|
|
26835
26857
|
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
26858
|
+
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS_RESPONSE_MESSAGE?: string;
|
|
26836
26859
|
OIDC_MATCHMAKING_BY_EMAIL?: boolean;
|
|
26837
26860
|
OIDC_DEFAULT_LOGOUT_URL?: string;
|
|
26838
26861
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
@@ -27067,6 +27090,10 @@ export type UserRequestForm = {
|
|
|
27067
27090
|
* List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
|
|
27068
27091
|
*/
|
|
27069
27092
|
managed_isds?: unknown;
|
|
27093
|
+
/**
|
|
27094
|
+
* Reason why the user was deactivated. Visible to staff and support.
|
|
27095
|
+
*/
|
|
27096
|
+
deactivation_reason?: string;
|
|
27070
27097
|
};
|
|
27071
27098
|
export type UserRequestMultipart = {
|
|
27072
27099
|
/**
|
|
@@ -27154,6 +27181,10 @@ export type UserRequestMultipart = {
|
|
|
27154
27181
|
* List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
|
|
27155
27182
|
*/
|
|
27156
27183
|
managed_isds?: unknown;
|
|
27184
|
+
/**
|
|
27185
|
+
* Reason why the user was deactivated. Visible to staff and support.
|
|
27186
|
+
*/
|
|
27187
|
+
deactivation_reason?: string;
|
|
27157
27188
|
};
|
|
27158
27189
|
export type PatchedUserRequestForm = {
|
|
27159
27190
|
/**
|
|
@@ -27240,6 +27271,10 @@ export type PatchedUserRequestForm = {
|
|
|
27240
27271
|
* List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
|
|
27241
27272
|
*/
|
|
27242
27273
|
managed_isds?: unknown;
|
|
27274
|
+
/**
|
|
27275
|
+
* Reason why the user was deactivated. Visible to staff and support.
|
|
27276
|
+
*/
|
|
27277
|
+
deactivation_reason?: string;
|
|
27243
27278
|
};
|
|
27244
27279
|
export type PatchedUserRequestMultipart = {
|
|
27245
27280
|
/**
|
|
@@ -27326,6 +27361,10 @@ export type PatchedUserRequestMultipart = {
|
|
|
27326
27361
|
* List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
|
|
27327
27362
|
*/
|
|
27328
27363
|
managed_isds?: unknown;
|
|
27364
|
+
/**
|
|
27365
|
+
* Reason why the user was deactivated. Visible to staff and support.
|
|
27366
|
+
*/
|
|
27367
|
+
deactivation_reason?: string;
|
|
27329
27368
|
};
|
|
27330
27369
|
export type AdminAnnouncementFieldEnum = 'active_from' | 'active_to' | 'created' | 'description' | 'is_active' | 'maintenance_affected_offerings' | 'maintenance_external_reference_url' | 'maintenance_name' | 'maintenance_scheduled_end' | 'maintenance_scheduled_start' | 'maintenance_service_provider' | 'maintenance_state' | 'maintenance_type' | 'maintenance_uuid' | 'type' | 'uuid';
|
|
27331
27370
|
export type AdminAnnouncementOEnum = '-active_from' | '-active_to' | '-created' | '-name' | '-type' | 'active_from' | 'active_to' | 'created' | 'name' | 'type';
|
|
@@ -27349,8 +27388,8 @@ export type UserRoleDetailsFieldEnum = 'created' | 'created_by_full_name' | 'cre
|
|
|
27349
27388
|
export type UserRoleDetailsOEnum = 'created' | 'email' | 'expiration_time' | 'full_name' | 'native_name' | 'role' | 'username';
|
|
27350
27389
|
export type CallReviewerPoolOEnum = '-created' | '-current_assignments' | '-expertise_match_score' | '-invited_at' | 'created' | 'current_assignments' | 'expertise_match_score' | 'invited_at';
|
|
27351
27390
|
export type ChatSessionFieldEnum = 'created' | 'modified' | 'user' | 'user_full_name' | 'user_username' | 'uuid';
|
|
27352
|
-
export type ThreadSessionFieldEnum = 'chat_session' | 'created' | 'flags' | 'is_archived' | 'is_flagged' | 'max_severity' | 'message_count' | 'modified' | 'name' | 'user_full_name' | 'user_username' | 'uuid';
|
|
27353
|
-
export type ThreadSessionOEnum = '-created' | '-modified' | 'created' | 'modified';
|
|
27391
|
+
export type ThreadSessionFieldEnum = 'chat_session' | 'created' | 'flags' | 'input_tokens' | 'is_archived' | 'is_flagged' | 'max_severity' | 'message_count' | 'modified' | 'name' | 'output_tokens' | 'title_gen_input_tokens' | 'title_gen_output_tokens' | 'total_tokens' | 'user_full_name' | 'user_username' | 'uuid';
|
|
27392
|
+
export type ThreadSessionOEnum = '-created' | '-input_tokens' | '-modified' | '-output_tokens' | '-total_tokens' | 'created' | 'input_tokens' | 'modified' | 'output_tokens' | 'total_tokens';
|
|
27354
27393
|
export type CoiDetectionJobOEnum = '-completed_at' | '-created' | '-started_at' | '-state' | 'completed_at' | 'created' | 'started_at' | 'state';
|
|
27355
27394
|
export type CoiDisclosureFormOEnum = '-certification_date' | '-created' | '-valid_until' | 'certification_date' | 'created' | 'valid_until';
|
|
27356
27395
|
export type ConflictOfInterestOEnum = '-created' | '-detected_at' | '-severity' | '-status' | 'created' | 'detected_at' | 'severity' | 'status';
|
|
@@ -27400,7 +27439,7 @@ export type ProviderOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'ba
|
|
|
27400
27439
|
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';
|
|
27401
27440
|
export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
|
|
27402
27441
|
export type ProjectFieldEnum = 'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | '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' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
|
|
27403
|
-
export type UserFieldEnum = 'active_isds' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'date_joined' | '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_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' | 'permissions' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
|
|
27442
|
+
export type UserFieldEnum = 'active_isds' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | '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_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' | 'permissions' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
|
|
27404
27443
|
export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
|
|
27405
27444
|
export type PublicOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | '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' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | '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';
|
|
27406
27445
|
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';
|
|
@@ -27479,6 +27518,7 @@ export type ServiceSettingsFieldEnum = 'customer' | 'customer_name' | 'customer_
|
|
|
27479
27518
|
export type SlurmAllocationFieldEnum = 'access_url' | 'backend_id' | 'cpu_limit' | 'cpu_usage' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'gateway' | 'gpu_limit' | 'gpu_usage' | 'is_active' | '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' | 'ram_limit' | 'ram_usage' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'username' | 'uuid';
|
|
27480
27519
|
export type FirecrestJobFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'file' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'report' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'user' | 'user_username' | 'user_uuid' | 'uuid';
|
|
27481
27520
|
export type AttachmentFieldEnum = 'backend_id' | 'created' | 'destroy_is_available' | 'file' | 'file_name' | 'file_size' | 'issue' | 'issue_key' | 'mime_type' | 'url' | 'uuid';
|
|
27521
|
+
export type CommentOEnum = '-created' | '-modified' | 'created' | 'modified';
|
|
27482
27522
|
export type IssueOEnum = '-assignee_name' | '-caller_first_name' | '-caller_last_name' | '-created' | '-customer_name' | '-key' | '-modified' | '-priority' | '-project_name' | '-remote_id' | '-reporter_name' | '-status' | '-summary' | '-type' | 'assignee_name' | 'caller_first_name' | 'caller_last_name' | 'created' | 'customer_name' | 'key' | 'modified' | 'priority' | 'project_name' | 'remote_id' | 'reporter_name' | 'status' | 'summary' | 'type';
|
|
27483
27523
|
export type SystemLogLevelEnum = 'CRITICAL' | 'ERROR' | 'INFO' | 'WARNING';
|
|
27484
27524
|
export type SystemLogOEnum = '-created' | '-instance' | '-level_number' | 'created' | 'instance' | 'level_number';
|
|
@@ -32416,6 +32456,10 @@ export type BookingResourcesListData = {
|
|
|
32416
32456
|
* Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
|
|
32417
32457
|
*/
|
|
32418
32458
|
query?: string;
|
|
32459
|
+
/**
|
|
32460
|
+
* Resource attributes (JSON)
|
|
32461
|
+
*/
|
|
32462
|
+
resource_attributes?: string;
|
|
32419
32463
|
/**
|
|
32420
32464
|
* Restrict member access
|
|
32421
32465
|
*/
|
|
@@ -32600,6 +32644,10 @@ export type BookingResourcesCountData = {
|
|
|
32600
32644
|
* Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
|
|
32601
32645
|
*/
|
|
32602
32646
|
query?: string;
|
|
32647
|
+
/**
|
|
32648
|
+
* Resource attributes (JSON)
|
|
32649
|
+
*/
|
|
32650
|
+
resource_attributes?: string;
|
|
32603
32651
|
/**
|
|
32604
32652
|
* Restrict member access
|
|
32605
32653
|
*/
|
|
@@ -33868,6 +33916,8 @@ export type ChatThreadsListData = {
|
|
|
33868
33916
|
query?: {
|
|
33869
33917
|
created?: string;
|
|
33870
33918
|
field?: Array<ThreadSessionFieldEnum>;
|
|
33919
|
+
input_tokens_max?: number;
|
|
33920
|
+
input_tokens_min?: number;
|
|
33871
33921
|
is_archived?: boolean;
|
|
33872
33922
|
is_flagged?: boolean;
|
|
33873
33923
|
max_severity?: InjectionSeverityEnum;
|
|
@@ -33878,6 +33928,8 @@ export type ChatThreadsListData = {
|
|
|
33878
33928
|
*
|
|
33879
33929
|
*/
|
|
33880
33930
|
o?: Array<ThreadSessionOEnum>;
|
|
33931
|
+
output_tokens_max?: number;
|
|
33932
|
+
output_tokens_min?: number;
|
|
33881
33933
|
/**
|
|
33882
33934
|
* A page number within the paginated result set.
|
|
33883
33935
|
*/
|
|
@@ -33887,6 +33939,8 @@ export type ChatThreadsListData = {
|
|
|
33887
33939
|
*/
|
|
33888
33940
|
page_size?: number;
|
|
33889
33941
|
query?: string;
|
|
33942
|
+
total_tokens_max?: number;
|
|
33943
|
+
total_tokens_min?: number;
|
|
33890
33944
|
user?: string;
|
|
33891
33945
|
};
|
|
33892
33946
|
url: '/api/chat-threads/';
|
|
@@ -48937,6 +48991,10 @@ export type MarketplaceProviderResourcesListData = {
|
|
|
48937
48991
|
* Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
|
|
48938
48992
|
*/
|
|
48939
48993
|
query?: string;
|
|
48994
|
+
/**
|
|
48995
|
+
* Resource attributes (JSON)
|
|
48996
|
+
*/
|
|
48997
|
+
resource_attributes?: string;
|
|
48940
48998
|
/**
|
|
48941
48999
|
* Restrict member access
|
|
48942
49000
|
*/
|
|
@@ -49124,6 +49182,10 @@ export type MarketplaceProviderResourcesCountData = {
|
|
|
49124
49182
|
* Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
|
|
49125
49183
|
*/
|
|
49126
49184
|
query?: string;
|
|
49185
|
+
/**
|
|
49186
|
+
* Resource attributes (JSON)
|
|
49187
|
+
*/
|
|
49188
|
+
resource_attributes?: string;
|
|
49127
49189
|
/**
|
|
49128
49190
|
* Restrict member access
|
|
49129
49191
|
*/
|
|
@@ -49387,6 +49449,10 @@ export type MarketplaceProviderResourcesHistoryListData = {
|
|
|
49387
49449
|
* Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
|
|
49388
49450
|
*/
|
|
49389
49451
|
query?: string;
|
|
49452
|
+
/**
|
|
49453
|
+
* Resource attributes (JSON)
|
|
49454
|
+
*/
|
|
49455
|
+
resource_attributes?: string;
|
|
49390
49456
|
/**
|
|
49391
49457
|
* Restrict member access
|
|
49392
49458
|
*/
|
|
@@ -50673,6 +50739,10 @@ export type MarketplaceResourcesListData = {
|
|
|
50673
50739
|
* Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
|
|
50674
50740
|
*/
|
|
50675
50741
|
query?: string;
|
|
50742
|
+
/**
|
|
50743
|
+
* Resource attributes (JSON)
|
|
50744
|
+
*/
|
|
50745
|
+
resource_attributes?: string;
|
|
50676
50746
|
/**
|
|
50677
50747
|
* Restrict member access
|
|
50678
50748
|
*/
|
|
@@ -50860,6 +50930,10 @@ export type MarketplaceResourcesCountData = {
|
|
|
50860
50930
|
* Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
|
|
50861
50931
|
*/
|
|
50862
50932
|
query?: string;
|
|
50933
|
+
/**
|
|
50934
|
+
* Resource attributes (JSON)
|
|
50935
|
+
*/
|
|
50936
|
+
resource_attributes?: string;
|
|
50863
50937
|
/**
|
|
50864
50938
|
* Restrict member access
|
|
50865
50939
|
*/
|
|
@@ -51135,6 +51209,10 @@ export type MarketplaceResourcesHistoryListData = {
|
|
|
51135
51209
|
* Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
|
|
51136
51210
|
*/
|
|
51137
51211
|
query?: string;
|
|
51212
|
+
/**
|
|
51213
|
+
* Resource attributes (JSON)
|
|
51214
|
+
*/
|
|
51215
|
+
resource_attributes?: string;
|
|
51138
51216
|
/**
|
|
51139
51217
|
* Restrict member access
|
|
51140
51218
|
*/
|
|
@@ -76718,7 +76796,7 @@ export type SupportCommentsListData = {
|
|
|
76718
76796
|
*
|
|
76719
76797
|
*
|
|
76720
76798
|
*/
|
|
76721
|
-
o?: Array<
|
|
76799
|
+
o?: Array<CommentOEnum>;
|
|
76722
76800
|
/**
|
|
76723
76801
|
* A page number within the paginated result set.
|
|
76724
76802
|
*/
|
|
@@ -76757,7 +76835,7 @@ export type SupportCommentsCountData = {
|
|
|
76757
76835
|
*
|
|
76758
76836
|
*
|
|
76759
76837
|
*/
|
|
76760
|
-
o?: Array<
|
|
76838
|
+
o?: Array<CommentOEnum>;
|
|
76761
76839
|
/**
|
|
76762
76840
|
* A page number within the paginated result set.
|
|
76763
76841
|
*/
|