waldur-js-client 8.0.3-dev.9 → 8.0.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.
@@ -909,6 +909,10 @@ export type ArrowSettings = {
909
909
  * Which price to use for invoice items: sell or buy
910
910
  */
911
911
  invoice_price_source?: InvoicePriceSourceEnum;
912
+ /**
913
+ * Prefix for invoice item names (e.g. 'Arrow consumption')
914
+ */
915
+ invoice_item_prefix?: string;
912
916
  readonly created: string;
913
917
  readonly modified: string;
914
918
  };
@@ -947,6 +951,10 @@ export type ArrowSettingsCreate = {
947
951
  * Which price to use for invoice items: sell or buy
948
952
  */
949
953
  invoice_price_source?: InvoicePriceSourceEnum;
954
+ /**
955
+ * Prefix for invoice item names (e.g. 'Arrow consumption')
956
+ */
957
+ invoice_item_prefix?: string;
950
958
  readonly created: string;
951
959
  readonly modified: string;
952
960
  };
@@ -979,6 +987,10 @@ export type ArrowSettingsCreateRequest = {
979
987
  * Which price to use for invoice items: sell or buy
980
988
  */
981
989
  invoice_price_source?: InvoicePriceSourceEnum;
990
+ /**
991
+ * Prefix for invoice item names (e.g. 'Arrow consumption')
992
+ */
993
+ invoice_item_prefix?: string;
982
994
  };
983
995
  export type ArrowSettingsRequest = {
984
996
  /**
@@ -1009,6 +1021,10 @@ export type ArrowSettingsRequest = {
1009
1021
  * Which price to use for invoice items: sell or buy
1010
1022
  */
1011
1023
  invoice_price_source?: InvoicePriceSourceEnum;
1024
+ /**
1025
+ * Prefix for invoice item names (e.g. 'Arrow consumption')
1026
+ */
1027
+ invoice_item_prefix?: string;
1012
1028
  };
1013
1029
  export type ArrowVendorOfferingMapping = {
1014
1030
  readonly uuid: string;
@@ -1019,13 +1035,13 @@ export type ArrowVendorOfferingMapping = {
1019
1035
  * Arrow vendor name (e.g., 'Microsoft', 'Amazon Web Services')
1020
1036
  */
1021
1037
  arrow_vendor_name: string;
1022
- /**
1023
- * Waldur marketplace offering for this vendor
1024
- */
1025
1038
  offering: string;
1026
1039
  readonly offering_uuid: string;
1027
1040
  readonly offering_name: string;
1028
1041
  readonly offering_type: string;
1042
+ plan?: string | null;
1043
+ readonly plan_uuid: string;
1044
+ readonly plan_name: string;
1029
1045
  /**
1030
1046
  * Whether this mapping is active
1031
1047
  */
@@ -1046,6 +1062,9 @@ export type ArrowVendorOfferingMappingCreate = {
1046
1062
  readonly offering_uuid: string;
1047
1063
  readonly offering_name: string;
1048
1064
  readonly offering_type: string;
1065
+ plan?: string | null;
1066
+ readonly plan_uuid: string;
1067
+ readonly plan_name: string;
1049
1068
  /**
1050
1069
  * Whether this mapping is active
1051
1070
  */
@@ -1060,6 +1079,7 @@ export type ArrowVendorOfferingMappingCreateRequest = {
1060
1079
  */
1061
1080
  arrow_vendor_name: string;
1062
1081
  offering: string;
1082
+ plan?: string | null;
1063
1083
  /**
1064
1084
  * Whether this mapping is active
1065
1085
  */
@@ -1071,10 +1091,8 @@ export type ArrowVendorOfferingMappingRequest = {
1071
1091
  * Arrow vendor name (e.g., 'Microsoft', 'Amazon Web Services')
1072
1092
  */
1073
1093
  arrow_vendor_name: string;
1074
- /**
1075
- * Waldur marketplace offering for this vendor
1076
- */
1077
1094
  offering: string;
1095
+ plan?: string | null;
1078
1096
  /**
1079
1097
  * Whether this mapping is active
1080
1098
  */
@@ -3332,6 +3350,7 @@ export type CeleryWorkerStats = {
3332
3350
  [key: string]: unknown;
3333
3351
  };
3334
3352
  };
3353
+ export type ChatRequestModeEnum = 'reload';
3335
3354
  export type ChatRequestRequest = {
3336
3355
  /**
3337
3356
  * User input text for the chat model.
@@ -3345,6 +3364,10 @@ export type ChatRequestRequest = {
3345
3364
  * Thread UUID whose name should be set to the assistant's response. Skips message persistence for this call.
3346
3365
  */
3347
3366
  update_thread_name?: string | null;
3367
+ /**
3368
+ * 'reload': replace the last assistant response. Omit for normal new-message behavior.
3369
+ */
3370
+ mode?: ChatRequestModeEnum | NullEnum | null;
3348
3371
  };
3349
3372
  export type ChatResponse = {
3350
3373
  /**
@@ -3399,12 +3422,24 @@ export type CheckUniqueBackendIdRequest = {
3399
3422
  * Check across all offerings
3400
3423
  */
3401
3424
  check_all_offerings?: boolean;
3425
+ /**
3426
+ * Apply the offering's backend_id_rules for format and uniqueness validation
3427
+ */
3428
+ use_offering_rules?: boolean;
3402
3429
  };
3403
3430
  export type CheckUniqueBackendIdResponse = {
3404
3431
  /**
3405
3432
  * Whether the backend ID is unique
3406
3433
  */
3407
3434
  is_unique: boolean;
3435
+ /**
3436
+ * Whether the backend ID matches the offering's format regex (null if no rules configured)
3437
+ */
3438
+ is_valid_format?: boolean | null;
3439
+ /**
3440
+ * List of validation error messages
3441
+ */
3442
+ errors?: Array<string>;
3408
3443
  };
3409
3444
  export type Checklist = {
3410
3445
  readonly uuid: string;
@@ -3995,6 +4030,7 @@ export type ConstanceSettings = {
3995
4030
  ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
3996
4031
  ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
3997
4032
  RESTRICTED_OFFERING_VISIBILITY_MODE?: string;
4033
+ ALLOW_SERVICE_PROVIDER_OFFERING_MANAGEMENT?: boolean;
3998
4034
  NOTIFY_STAFF_ABOUT_APPROVALS?: boolean;
3999
4035
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
4000
4036
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
@@ -4146,6 +4182,7 @@ export type ConstanceSettings = {
4146
4182
  OIDC_CACHE_TIMEOUT?: number;
4147
4183
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
4148
4184
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
4185
+ OIDC_MATCHMAKING_BY_EMAIL?: boolean;
4149
4186
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
4150
4187
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
4151
4188
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
@@ -4191,6 +4228,8 @@ export type ConstanceSettings = {
4191
4228
  SOFTWARE_CATALOG_UPDATE_EXISTING_PACKAGES?: boolean;
4192
4229
  SOFTWARE_CATALOG_CLEANUP_ENABLED?: boolean;
4193
4230
  SOFTWARE_CATALOG_RETENTION_DAYS?: number;
4231
+ SYSTEM_LOG_ENABLED?: boolean;
4232
+ SYSTEM_LOG_MAX_ROWS_PER_SOURCE?: number;
4194
4233
  TABLE_GROWTH_MONITORING_ENABLED?: boolean;
4195
4234
  TABLE_GROWTH_WEEKLY_THRESHOLD_PERCENT?: number;
4196
4235
  TABLE_GROWTH_MONTHLY_THRESHOLD_PERCENT?: number;
@@ -4230,6 +4269,7 @@ export type ConstanceSettingsRequest = {
4230
4269
  ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
4231
4270
  ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
4232
4271
  RESTRICTED_OFFERING_VISIBILITY_MODE?: string;
4272
+ ALLOW_SERVICE_PROVIDER_OFFERING_MANAGEMENT?: boolean;
4233
4273
  NOTIFY_STAFF_ABOUT_APPROVALS?: boolean;
4234
4274
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
4235
4275
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
@@ -4381,6 +4421,7 @@ export type ConstanceSettingsRequest = {
4381
4421
  OIDC_CACHE_TIMEOUT?: number;
4382
4422
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
4383
4423
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
4424
+ OIDC_MATCHMAKING_BY_EMAIL?: boolean;
4384
4425
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
4385
4426
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
4386
4427
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
@@ -4426,6 +4467,8 @@ export type ConstanceSettingsRequest = {
4426
4467
  SOFTWARE_CATALOG_UPDATE_EXISTING_PACKAGES?: boolean;
4427
4468
  SOFTWARE_CATALOG_CLEANUP_ENABLED?: boolean;
4428
4469
  SOFTWARE_CATALOG_RETENTION_DAYS?: number;
4470
+ SYSTEM_LOG_ENABLED?: boolean;
4471
+ SYSTEM_LOG_MAX_ROWS_PER_SOURCE?: number;
4429
4472
  TABLE_GROWTH_MONITORING_ENABLED?: boolean;
4430
4473
  TABLE_GROWTH_WEEKLY_THRESHOLD_PERCENT?: number;
4431
4474
  TABLE_GROWTH_MONTHLY_THRESHOLD_PERCENT?: number;
@@ -5670,6 +5713,7 @@ export type DiscoverCustomersResponse = {
5670
5713
  arrow_customers: Array<ArrowCustomerDiscovery>;
5671
5714
  waldur_customers: Array<WaldurCustomerBrief>;
5672
5715
  suggestions: Array<CustomerMappingSuggestion>;
5716
+ export_types: Array<ExportTypeCompatibility>;
5673
5717
  };
5674
5718
  export type DiscoverExternalNetworksRequestRequest = {
5675
5719
  /**
@@ -6258,6 +6302,18 @@ export type ExportTermsOfServiceDataRequest = {
6258
6302
  requires_reconsent: boolean;
6259
6303
  grace_period_days: number | null;
6260
6304
  };
6305
+ export type ExportTypeCompatibility = {
6306
+ reference: string;
6307
+ name: string;
6308
+ required_fields_total: number;
6309
+ required_fields_found: number;
6310
+ important_fields_total: number;
6311
+ important_fields_found: number;
6312
+ missing_required_fields: Array<string>;
6313
+ missing_important_fields: Array<string>;
6314
+ compatible: boolean;
6315
+ recommended: boolean;
6316
+ };
6261
6317
  export type ExtendDeadlineRequestRequest = {
6262
6318
  /**
6263
6319
  * New expiration date and time for the assignment batch.
@@ -8600,6 +8656,10 @@ export type MergedPluginOptions = {
8600
8656
  * If set to True, send email notifications when providers or consumers exchange messages on pending orders.
8601
8657
  */
8602
8658
  notify_about_provider_consumer_messages?: boolean;
8659
+ /**
8660
+ * If set to True, offering cannot be deleted while it has non-terminated resources.
8661
+ */
8662
+ restrict_deletion_with_active_resources?: boolean;
8603
8663
  /**
8604
8664
  * If set, it will be used as a default MTU for the first network in a tenant
8605
8665
  */
@@ -8866,6 +8926,10 @@ export type MergedPluginOptionsRequest = {
8866
8926
  * If set to True, send email notifications when providers or consumers exchange messages on pending orders.
8867
8927
  */
8868
8928
  notify_about_provider_consumer_messages?: boolean;
8929
+ /**
8930
+ * If set to True, offering cannot be deleted while it has non-terminated resources.
8931
+ */
8932
+ restrict_deletion_with_active_resources?: boolean;
8869
8933
  /**
8870
8934
  * If set, it will be used as a default MTU for the first network in a tenant
8871
8935
  */
@@ -9369,19 +9433,13 @@ export type MergedSecretOptionsRequest = {
9369
9433
  };
9370
9434
  export type Message = {
9371
9435
  readonly uuid: string;
9372
- thread: string;
9436
+ readonly thread: string;
9373
9437
  role: MessageRoleEnum;
9374
9438
  content: string;
9375
9439
  readonly sequence_index: number;
9376
- replaces?: string | null;
9440
+ readonly replaces: string;
9377
9441
  readonly created: string;
9378
9442
  };
9379
- export type MessageRequest = {
9380
- thread: string;
9381
- role: MessageRoleEnum;
9382
- content: string;
9383
- replaces?: string | null;
9384
- };
9385
9443
  export type MessageResponse = {
9386
9444
  message: string;
9387
9445
  };
@@ -9466,7 +9524,6 @@ export type MigrationDetailsRequest = {
9466
9524
  error_traceback?: string;
9467
9525
  };
9468
9526
  export type MinimalConsumptionLogicEnum = 'fixed' | 'linear';
9469
- export type ModeEnum = 'production' | 'emulator';
9470
9527
  export type MoveOfferingRequest = {
9471
9528
  /**
9472
9529
  * Target customer URL with service provider profile where the offering should be moved
@@ -10393,6 +10450,12 @@ export type Offering = {
10393
10450
  readonly is_accessible?: boolean;
10394
10451
  googlecalendar?: GoogleCalendar;
10395
10452
  };
10453
+ export type OfferingBackendIdRulesUpdateRequest = {
10454
+ /**
10455
+ * Validation rules for resource backend_id: format regex and uniqueness scope.
10456
+ */
10457
+ backend_id_rules?: unknown;
10458
+ };
10396
10459
  export type OfferingBackendMetadataRequest = {
10397
10460
  backend_metadata?: unknown;
10398
10461
  };
@@ -10570,6 +10633,10 @@ export type OfferingCreateRequest = {
10570
10633
  */
10571
10634
  country?: CountryEnum | BlankEnum;
10572
10635
  backend_id?: string;
10636
+ /**
10637
+ * Validation rules for resource backend_id: format regex and uniqueness scope.
10638
+ */
10639
+ backend_id_rules?: unknown;
10573
10640
  image?: (Blob | File) | null;
10574
10641
  backend_metadata?: unknown;
10575
10642
  compliance_checklist?: string | null;
@@ -11279,6 +11346,8 @@ export type OfferingUser = {
11279
11346
  */
11280
11347
  readonly user_username?: string;
11281
11348
  readonly user_full_name?: string;
11349
+ readonly user_first_name?: string;
11350
+ readonly user_last_name?: string;
11282
11351
  /**
11283
11352
  * Email address
11284
11353
  */
@@ -13566,11 +13635,14 @@ export type OrderDetails = {
13566
13635
  provider_message_attachment?: string | null;
13567
13636
  consumer_message?: string;
13568
13637
  consumer_message_attachment?: string | null;
13638
+ readonly consumer_rejection_comment?: string;
13639
+ readonly provider_rejection_comment?: string;
13569
13640
  issue?: IssueReference | null;
13570
13641
  };
13571
13642
  export type OrderErrorDetailsRequest = {
13572
13643
  error_message?: string;
13573
13644
  error_traceback?: string;
13645
+ consumer_rejection_comment?: string;
13574
13646
  };
13575
13647
  export type OrderInfoResponse = {
13576
13648
  readonly detail: string;
@@ -13580,6 +13652,9 @@ export type OrderProviderInfoRequest = {
13580
13652
  provider_message_url?: string;
13581
13653
  provider_message_attachment?: Blob | File;
13582
13654
  };
13655
+ export type OrderProviderRejectionRequest = {
13656
+ provider_rejection_comment?: string;
13657
+ };
13583
13658
  export type OrderState = 'pending-consumer' | 'pending-provider' | 'pending-project' | 'pending-start-date' | 'executing' | 'done' | 'erred' | 'canceled' | 'rejected';
13584
13659
  export type OrderStatsResponse = {
13585
13660
  /**
@@ -13801,6 +13876,10 @@ export type PatchedArrowSettingsRequest = {
13801
13876
  * Which price to use for invoice items: sell or buy
13802
13877
  */
13803
13878
  invoice_price_source?: InvoicePriceSourceEnum;
13879
+ /**
13880
+ * Prefix for invoice item names (e.g. 'Arrow consumption')
13881
+ */
13882
+ invoice_item_prefix?: string;
13804
13883
  };
13805
13884
  export type PatchedArrowVendorOfferingMappingRequest = {
13806
13885
  settings?: string;
@@ -13808,10 +13887,8 @@ export type PatchedArrowVendorOfferingMappingRequest = {
13808
13887
  * Arrow vendor name (e.g., 'Microsoft', 'Amazon Web Services')
13809
13888
  */
13810
13889
  arrow_vendor_name?: string;
13811
- /**
13812
- * Waldur marketplace offering for this vendor
13813
- */
13814
13890
  offering?: string;
13891
+ plan?: string | null;
13815
13892
  /**
13816
13893
  * Whether this mapping is active
13817
13894
  */
@@ -14688,14 +14765,6 @@ export type PatchedOpenStackSecurityGroupUpdateRequest = {
14688
14765
  name?: string;
14689
14766
  description?: string;
14690
14767
  };
14691
- export type PatchedOpenStackServerGroupRequest = {
14692
- name?: string;
14693
- description?: string;
14694
- /**
14695
- * Server group policy determining the rules for scheduling servers in this group
14696
- */
14697
- policy?: PolicyEnum | BlankEnum;
14698
- };
14699
14768
  export type PatchedOpenStackSnapshotRequest = {
14700
14769
  name?: string;
14701
14770
  description?: string;
@@ -15543,10 +15612,6 @@ export type PatchedTemplateRequest = {
15543
15612
  description?: string;
15544
15613
  issue_type?: IssueTypeEnum;
15545
15614
  };
15546
- export type PatchedThreadSessionRequest = {
15547
- name?: string;
15548
- is_archived?: boolean;
15549
- };
15550
15615
  export type PatchedUserAgreementRequest = {
15551
15616
  content?: string;
15552
15617
  agreement_type?: AgreementTypeEnum;
@@ -17074,6 +17139,10 @@ export type ProviderOfferingDetails = {
17074
17139
  */
17075
17140
  country?: CountryEnum | BlankEnum;
17076
17141
  backend_id?: string;
17142
+ /**
17143
+ * Validation rules for resource backend_id: format regex and uniqueness scope.
17144
+ */
17145
+ backend_id_rules?: unknown;
17077
17146
  readonly organization_groups?: Array<OrganizationGroup>;
17078
17147
  readonly tags?: Array<NestedTag>;
17079
17148
  image?: string | null;
@@ -17137,6 +17206,10 @@ export type ProviderOfferingDetailsRequest = {
17137
17206
  */
17138
17207
  country?: CountryEnum | BlankEnum;
17139
17208
  backend_id?: string;
17209
+ /**
17210
+ * Validation rules for resource backend_id: format regex and uniqueness scope.
17211
+ */
17212
+ backend_id_rules?: unknown;
17140
17213
  image?: (Blob | File) | null;
17141
17214
  backend_metadata?: unknown;
17142
17215
  compliance_checklist?: string | null;
@@ -21356,6 +21429,7 @@ export type SlurmCommandHistory = {
21356
21429
  */
21357
21430
  error_message?: string;
21358
21431
  };
21432
+ export type SlurmCommandResultModeEnum = 'production' | 'emulator';
21359
21433
  export type SlurmCommandResultRequest = {
21360
21434
  /**
21361
21435
  * UUID of the resource the command was applied to
@@ -21372,7 +21446,7 @@ export type SlurmCommandResultRequest = {
21372
21446
  /**
21373
21447
  * Execution mode of the command
21374
21448
  */
21375
- mode?: ModeEnum;
21449
+ mode?: SlurmCommandResultModeEnum;
21376
21450
  /**
21377
21451
  * List of shell commands actually executed by the site agent
21378
21452
  */
@@ -22004,15 +22078,28 @@ export type SyncResourceHistoricalConsumptionRequestRequest = {
22004
22078
  * End period in YYYY-MM format. Defaults to current month.
22005
22079
  */
22006
22080
  period_to?: string;
22081
+ /**
22082
+ * If True, sync even for finalized periods.
22083
+ */
22084
+ force?: boolean;
22085
+ /**
22086
+ * If True, preview consumption data without saving.
22087
+ */
22088
+ dry_run?: boolean;
22007
22089
  };
22008
22090
  export type SyncResourceHistoricalConsumptionResponse = {
22009
22091
  resource_uuid: string;
22010
22092
  resource_name: string;
22011
22093
  periods_synced: number;
22012
22094
  periods_skipped: number;
22095
+ periods_no_data?: number;
22013
22096
  errors: Array<{
22014
22097
  [key: string]: unknown;
22015
22098
  }>;
22099
+ dry_run?: boolean;
22100
+ preview_periods?: Array<{
22101
+ [key: string]: unknown;
22102
+ }>;
22016
22103
  };
22017
22104
  export type SyncResourcesRequestRequest = {
22018
22105
  /**
@@ -22052,6 +22139,37 @@ export type SyncResourcesResponse = {
22052
22139
  }>;
22053
22140
  };
22054
22141
  export type SyncStatusEnum = 'in_sync' | 'out_of_sync' | 'sync_failed';
22142
+ export type SystemLog = {
22143
+ readonly id: number;
22144
+ readonly created: string;
22145
+ source: SystemLogSourceEnum;
22146
+ /**
22147
+ * Pod name (K8s) or container name (Docker)
22148
+ */
22149
+ readonly instance: string;
22150
+ readonly level: string;
22151
+ readonly level_number: number;
22152
+ readonly logger_name: string;
22153
+ readonly message: string;
22154
+ readonly context: unknown;
22155
+ };
22156
+ export type SystemLogInstance = {
22157
+ readonly source: string;
22158
+ readonly instance: string;
22159
+ readonly last_seen: string;
22160
+ readonly count: number;
22161
+ };
22162
+ export type SystemLogSourceEnum = 'api' | 'worker' | 'beat';
22163
+ export type SystemLogStatsInstance = {
22164
+ readonly source: string;
22165
+ readonly instance: string;
22166
+ readonly count: number;
22167
+ };
22168
+ export type SystemLogStatsResponse = {
22169
+ readonly instances: Array<SystemLogStatsInstance>;
22170
+ readonly total_size_bytes: number;
22171
+ readonly total_size_mb: number;
22172
+ };
22055
22173
  export type TableGrowthAlert = {
22056
22174
  /**
22057
22175
  * Name of the table triggering the alert
@@ -22238,7 +22356,10 @@ export type ThreadSession = {
22238
22356
  readonly flags?: unknown;
22239
22357
  is_archived?: boolean;
22240
22358
  readonly message_count?: number;
22359
+ readonly user_username?: string;
22360
+ readonly user_full_name?: string;
22241
22361
  readonly created?: string;
22362
+ readonly modified?: string;
22242
22363
  };
22243
22364
  export type ThreadSessionRequest = {
22244
22365
  name?: string;
@@ -22410,6 +22531,10 @@ export type TriggerSyncRequestRequest = {
22410
22531
  year: number;
22411
22532
  month: number;
22412
22533
  settings_uuid?: string;
22534
+ /**
22535
+ * If set, only sync billing lines for this resource.
22536
+ */
22537
+ resource_uuid?: string;
22413
22538
  };
22414
22539
  export type UnsilenceActionResponse = {
22415
22540
  status: string;
@@ -24192,6 +24317,10 @@ export type OfferingCreateRequestForm = {
24192
24317
  */
24193
24318
  country?: CountryEnum | BlankEnum;
24194
24319
  backend_id?: string;
24320
+ /**
24321
+ * Validation rules for resource backend_id: format regex and uniqueness scope.
24322
+ */
24323
+ backend_id_rules?: unknown;
24195
24324
  image?: (Blob | File) | null;
24196
24325
  backend_metadata?: unknown;
24197
24326
  compliance_checklist?: string | null;
@@ -24241,6 +24370,10 @@ export type OfferingCreateRequestMultipart = {
24241
24370
  */
24242
24371
  country?: CountryEnum | BlankEnum;
24243
24372
  backend_id?: string;
24373
+ /**
24374
+ * Validation rules for resource backend_id: format regex and uniqueness scope.
24375
+ */
24376
+ backend_id_rules?: unknown;
24244
24377
  image?: (Blob | File) | null;
24245
24378
  backend_metadata?: unknown;
24246
24379
  compliance_checklist?: string | null;
@@ -24556,6 +24689,7 @@ export type ConstanceSettingsRequestForm = {
24556
24689
  ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
24557
24690
  ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
24558
24691
  RESTRICTED_OFFERING_VISIBILITY_MODE?: string;
24692
+ ALLOW_SERVICE_PROVIDER_OFFERING_MANAGEMENT?: boolean;
24559
24693
  NOTIFY_STAFF_ABOUT_APPROVALS?: boolean;
24560
24694
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
24561
24695
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
@@ -24707,6 +24841,7 @@ export type ConstanceSettingsRequestForm = {
24707
24841
  OIDC_CACHE_TIMEOUT?: number;
24708
24842
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
24709
24843
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
24844
+ OIDC_MATCHMAKING_BY_EMAIL?: boolean;
24710
24845
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
24711
24846
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
24712
24847
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
@@ -24752,6 +24887,8 @@ export type ConstanceSettingsRequestForm = {
24752
24887
  SOFTWARE_CATALOG_UPDATE_EXISTING_PACKAGES?: boolean;
24753
24888
  SOFTWARE_CATALOG_CLEANUP_ENABLED?: boolean;
24754
24889
  SOFTWARE_CATALOG_RETENTION_DAYS?: number;
24890
+ SYSTEM_LOG_ENABLED?: boolean;
24891
+ SYSTEM_LOG_MAX_ROWS_PER_SOURCE?: number;
24755
24892
  TABLE_GROWTH_MONITORING_ENABLED?: boolean;
24756
24893
  TABLE_GROWTH_WEEKLY_THRESHOLD_PERCENT?: number;
24757
24894
  TABLE_GROWTH_MONTHLY_THRESHOLD_PERCENT?: number;
@@ -24791,6 +24928,7 @@ export type ConstanceSettingsRequestMultipart = {
24791
24928
  ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
24792
24929
  ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
24793
24930
  RESTRICTED_OFFERING_VISIBILITY_MODE?: string;
24931
+ ALLOW_SERVICE_PROVIDER_OFFERING_MANAGEMENT?: boolean;
24794
24932
  NOTIFY_STAFF_ABOUT_APPROVALS?: boolean;
24795
24933
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
24796
24934
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
@@ -24942,6 +25080,7 @@ export type ConstanceSettingsRequestMultipart = {
24942
25080
  OIDC_CACHE_TIMEOUT?: number;
24943
25081
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
24944
25082
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
25083
+ OIDC_MATCHMAKING_BY_EMAIL?: boolean;
24945
25084
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
24946
25085
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
24947
25086
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
@@ -24987,6 +25126,8 @@ export type ConstanceSettingsRequestMultipart = {
24987
25126
  SOFTWARE_CATALOG_UPDATE_EXISTING_PACKAGES?: boolean;
24988
25127
  SOFTWARE_CATALOG_CLEANUP_ENABLED?: boolean;
24989
25128
  SOFTWARE_CATALOG_RETENTION_DAYS?: number;
25129
+ SYSTEM_LOG_ENABLED?: boolean;
25130
+ SYSTEM_LOG_MAX_ROWS_PER_SOURCE?: number;
24990
25131
  TABLE_GROWTH_MONITORING_ENABLED?: boolean;
24991
25132
  TABLE_GROWTH_WEEKLY_THRESHOLD_PERCENT?: number;
24992
25133
  TABLE_GROWTH_MONTHLY_THRESHOLD_PERCENT?: number;
@@ -31473,6 +31614,7 @@ export type ChatMessagesListData = {
31473
31614
  body?: never;
31474
31615
  path?: never;
31475
31616
  query?: {
31617
+ include_history?: boolean;
31476
31618
  /**
31477
31619
  * A page number within the paginated result set.
31478
31620
  */
@@ -31489,50 +31631,6 @@ export type ChatMessagesListResponses = {
31489
31631
  200: Array<Message>;
31490
31632
  };
31491
31633
  export type ChatMessagesListResponse = ChatMessagesListResponses[keyof ChatMessagesListResponses];
31492
- export type ChatMessagesCountData = {
31493
- body?: never;
31494
- path?: never;
31495
- query?: {
31496
- /**
31497
- * A page number within the paginated result set.
31498
- */
31499
- page?: number;
31500
- /**
31501
- * Number of results to return per page.
31502
- */
31503
- page_size?: number;
31504
- thread?: string;
31505
- };
31506
- url: '/api/chat-messages/';
31507
- };
31508
- export type ChatMessagesCountResponses = {
31509
- /**
31510
- * No response body
31511
- */
31512
- 200: unknown;
31513
- };
31514
- export type ChatMessagesCreateData = {
31515
- body: MessageRequest;
31516
- path?: never;
31517
- query?: never;
31518
- url: '/api/chat-messages/';
31519
- };
31520
- export type ChatMessagesCreateResponses = {
31521
- 201: Message;
31522
- };
31523
- export type ChatMessagesCreateResponse = ChatMessagesCreateResponses[keyof ChatMessagesCreateResponses];
31524
- export type ChatMessagesRetrieveData = {
31525
- body?: never;
31526
- path: {
31527
- uuid: string;
31528
- };
31529
- query?: never;
31530
- url: '/api/chat-messages/{uuid}/';
31531
- };
31532
- export type ChatMessagesRetrieveResponses = {
31533
- 200: Message;
31534
- };
31535
- export type ChatMessagesRetrieveResponse = ChatMessagesRetrieveResponses[keyof ChatMessagesRetrieveResponses];
31536
31634
  export type ChatMessagesEditData = {
31537
31635
  body?: {
31538
31636
  content?: string;
@@ -31547,28 +31645,6 @@ export type ChatMessagesEditResponses = {
31547
31645
  200: Message;
31548
31646
  };
31549
31647
  export type ChatMessagesEditResponse = ChatMessagesEditResponses[keyof ChatMessagesEditResponses];
31550
- export type ChatMessagesHistoryListData = {
31551
- body?: never;
31552
- path: {
31553
- uuid: string;
31554
- };
31555
- query?: {
31556
- /**
31557
- * A page number within the paginated result set.
31558
- */
31559
- page?: number;
31560
- /**
31561
- * Number of results to return per page.
31562
- */
31563
- page_size?: number;
31564
- thread?: string;
31565
- };
31566
- url: '/api/chat-messages/{uuid}/history/';
31567
- };
31568
- export type ChatMessagesHistoryListResponses = {
31569
- 200: Array<Message>;
31570
- };
31571
- export type ChatMessagesHistoryListResponse = ChatMessagesHistoryListResponses[keyof ChatMessagesHistoryListResponses];
31572
31648
  export type ChatQuotaSetQuotaData = {
31573
31649
  body: SetTokenQuotaRequest;
31574
31650
  path?: never;
@@ -31616,27 +31692,6 @@ export type ChatSessionsListResponses = {
31616
31692
  200: Array<ChatSession>;
31617
31693
  };
31618
31694
  export type ChatSessionsListResponse = ChatSessionsListResponses[keyof ChatSessionsListResponses];
31619
- export type ChatSessionsCountData = {
31620
- body?: never;
31621
- path?: never;
31622
- query?: {
31623
- /**
31624
- * A page number within the paginated result set.
31625
- */
31626
- page?: number;
31627
- /**
31628
- * Number of results to return per page.
31629
- */
31630
- page_size?: number;
31631
- };
31632
- url: '/api/chat-sessions/';
31633
- };
31634
- export type ChatSessionsCountResponses = {
31635
- /**
31636
- * No response body
31637
- */
31638
- 200: unknown;
31639
- };
31640
31695
  export type ChatSessionsRetrieveData = {
31641
31696
  body?: never;
31642
31697
  path: {
@@ -31661,24 +31716,20 @@ export type ChatSessionsCurrentRetrieveResponses = {
31661
31716
  200: ChatSession;
31662
31717
  };
31663
31718
  export type ChatSessionsCurrentRetrieveResponse = ChatSessionsCurrentRetrieveResponses[keyof ChatSessionsCurrentRetrieveResponses];
31664
- export type ChatSessionsCurrentCountData = {
31665
- body?: never;
31666
- path?: never;
31667
- query?: never;
31668
- url: '/api/chat-sessions/current/';
31669
- };
31670
- export type ChatSessionsCurrentCountResponses = {
31671
- /**
31672
- * No response body
31673
- */
31674
- 200: unknown;
31675
- };
31676
31719
  export type ChatThreadsListData = {
31677
31720
  body?: never;
31678
31721
  path?: never;
31679
31722
  query?: {
31680
- field?: Array<'chat_session' | 'created' | 'flags' | 'is_archived' | 'message_count' | 'name' | 'uuid'>;
31723
+ created?: string;
31724
+ field?: Array<'chat_session' | 'created' | 'flags' | 'is_archived' | 'message_count' | 'modified' | 'name' | 'user_full_name' | 'user_username' | 'uuid'>;
31681
31725
  is_archived?: boolean;
31726
+ modified?: string;
31727
+ /**
31728
+ * Ordering
31729
+ *
31730
+ *
31731
+ */
31732
+ o?: Array<'-created' | '-modified' | 'created' | 'modified'>;
31682
31733
  /**
31683
31734
  * A page number within the paginated result set.
31684
31735
  */
@@ -31687,6 +31738,7 @@ export type ChatThreadsListData = {
31687
31738
  * Number of results to return per page.
31688
31739
  */
31689
31740
  page_size?: number;
31741
+ query?: string;
31690
31742
  user?: string;
31691
31743
  };
31692
31744
  url: '/api/chat-threads/';
@@ -31695,46 +31747,13 @@ export type ChatThreadsListResponses = {
31695
31747
  200: Array<ThreadSession>;
31696
31748
  };
31697
31749
  export type ChatThreadsListResponse = ChatThreadsListResponses[keyof ChatThreadsListResponses];
31698
- export type ChatThreadsCountData = {
31699
- body?: never;
31700
- path?: never;
31701
- query?: {
31702
- is_archived?: boolean;
31703
- /**
31704
- * A page number within the paginated result set.
31705
- */
31706
- page?: number;
31707
- /**
31708
- * Number of results to return per page.
31709
- */
31710
- page_size?: number;
31711
- user?: string;
31712
- };
31713
- url: '/api/chat-threads/';
31714
- };
31715
- export type ChatThreadsCountResponses = {
31716
- /**
31717
- * No response body
31718
- */
31719
- 200: unknown;
31720
- };
31721
- export type ChatThreadsCreateData = {
31722
- body?: ThreadSessionRequest;
31723
- path?: never;
31724
- query?: never;
31725
- url: '/api/chat-threads/';
31726
- };
31727
- export type ChatThreadsCreateResponses = {
31728
- 201: ThreadSession;
31729
- };
31730
- export type ChatThreadsCreateResponse = ChatThreadsCreateResponses[keyof ChatThreadsCreateResponses];
31731
31750
  export type ChatThreadsRetrieveData = {
31732
31751
  body?: never;
31733
31752
  path: {
31734
31753
  uuid: string;
31735
31754
  };
31736
31755
  query?: {
31737
- field?: Array<'chat_session' | 'created' | 'flags' | 'is_archived' | 'message_count' | 'name' | 'uuid'>;
31756
+ field?: Array<'chat_session' | 'created' | 'flags' | 'is_archived' | 'message_count' | 'modified' | 'name' | 'user_full_name' | 'user_username' | 'uuid'>;
31738
31757
  };
31739
31758
  url: '/api/chat-threads/{uuid}/';
31740
31759
  };
@@ -31742,30 +31761,6 @@ export type ChatThreadsRetrieveResponses = {
31742
31761
  200: ThreadSession;
31743
31762
  };
31744
31763
  export type ChatThreadsRetrieveResponse = ChatThreadsRetrieveResponses[keyof ChatThreadsRetrieveResponses];
31745
- export type ChatThreadsPartialUpdateData = {
31746
- body?: PatchedThreadSessionRequest;
31747
- path: {
31748
- uuid: string;
31749
- };
31750
- query?: never;
31751
- url: '/api/chat-threads/{uuid}/';
31752
- };
31753
- export type ChatThreadsPartialUpdateResponses = {
31754
- 200: ThreadSession;
31755
- };
31756
- export type ChatThreadsPartialUpdateResponse = ChatThreadsPartialUpdateResponses[keyof ChatThreadsPartialUpdateResponses];
31757
- export type ChatThreadsUpdateData = {
31758
- body?: ThreadSessionRequest;
31759
- path: {
31760
- uuid: string;
31761
- };
31762
- query?: never;
31763
- url: '/api/chat-threads/{uuid}/';
31764
- };
31765
- export type ChatThreadsUpdateResponses = {
31766
- 200: ThreadSession;
31767
- };
31768
- export type ChatThreadsUpdateResponse = ChatThreadsUpdateResponses[keyof ChatThreadsUpdateResponses];
31769
31764
  export type ChatThreadsArchiveData = {
31770
31765
  body?: ThreadSessionRequest;
31771
31766
  path: {
@@ -41183,7 +41178,7 @@ export type MarketplaceOfferingUsersListData = {
41183
41178
  * Created after
41184
41179
  */
41185
41180
  created?: string;
41186
- field?: Array<'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_restricted' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_active_isds' | 'user_affiliations' | 'user_birth_date' | 'user_civil_number' | 'user_country_of_residence' | 'user_eduperson_assurance' | 'user_email' | 'user_full_name' | 'user_gender' | 'user_identity_source' | 'user_job_title' | 'user_nationalities' | 'user_nationality' | 'user_organization' | 'user_organization_country' | 'user_organization_type' | 'user_personal_title' | 'user_phone_number' | 'user_place_of_birth' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
41181
+ field?: Array<'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_restricted' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_active_isds' | '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_type' | 'user_personal_title' | 'user_phone_number' | 'user_place_of_birth' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
41187
41182
  /**
41188
41183
  * User Has Consent
41189
41184
  */
@@ -41355,7 +41350,7 @@ export type MarketplaceOfferingUsersRetrieveData = {
41355
41350
  uuid: string;
41356
41351
  };
41357
41352
  query?: {
41358
- field?: Array<'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_restricted' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_active_isds' | 'user_affiliations' | 'user_birth_date' | 'user_civil_number' | 'user_country_of_residence' | 'user_eduperson_assurance' | 'user_email' | 'user_full_name' | 'user_gender' | 'user_identity_source' | 'user_job_title' | 'user_nationalities' | 'user_nationality' | 'user_organization' | 'user_organization_country' | 'user_organization_type' | 'user_personal_title' | 'user_phone_number' | 'user_place_of_birth' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
41353
+ field?: Array<'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_restricted' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_active_isds' | '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_type' | 'user_personal_title' | 'user_phone_number' | 'user_place_of_birth' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
41359
41354
  };
41360
41355
  url: '/api/marketplace-offering-users/{uuid}/';
41361
41356
  };
@@ -41734,7 +41729,7 @@ export type MarketplaceOrdersListData = {
41734
41729
  * Customer UUID
41735
41730
  */
41736
41731
  customer_uuid?: string;
41737
- field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_message' | 'consumer_message_attachment' | '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_registry_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | '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' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_message' | 'provider_message_attachment' | 'provider_message_url' | 'provider_name' | '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'>;
41732
+ field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | '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_registry_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | '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' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | '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'>;
41738
41733
  /**
41739
41734
  * Modified after
41740
41735
  */
@@ -41950,7 +41945,7 @@ export type MarketplaceOrdersRetrieveData = {
41950
41945
  uuid: string;
41951
41946
  };
41952
41947
  query?: {
41953
- field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_message' | 'consumer_message_attachment' | '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_registry_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | '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' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_message' | 'provider_message_attachment' | 'provider_message_url' | 'provider_name' | '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'>;
41948
+ field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | '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_registry_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | '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' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | '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'>;
41954
41949
  };
41955
41950
  url: '/api/marketplace-orders/{uuid}/';
41956
41951
  };
@@ -42062,7 +42057,7 @@ export type MarketplaceOrdersRejectByConsumerResponses = {
42062
42057
  200: unknown;
42063
42058
  };
42064
42059
  export type MarketplaceOrdersRejectByProviderData = {
42065
- body?: never;
42060
+ body?: OrderProviderRejectionRequest;
42066
42061
  path: {
42067
42062
  uuid: string;
42068
42063
  };
@@ -43059,7 +43054,7 @@ export type MarketplaceProviderOfferingsListData = {
43059
43054
  * Description contains
43060
43055
  */
43061
43056
  description?: string;
43062
- field?: Array<'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' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | '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' | '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' | 'uuid' | 'vendor_details'>;
43057
+ field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_id_rules' | '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' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | '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' | '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' | 'uuid' | 'vendor_details'>;
43063
43058
  /**
43064
43059
  * Has Active Terms of Service
43065
43060
  */
@@ -43376,7 +43371,7 @@ export type MarketplaceProviderOfferingsRetrieveData = {
43376
43371
  uuid: string;
43377
43372
  };
43378
43373
  query?: {
43379
- field?: Array<'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' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | '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' | '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' | 'uuid' | 'vendor_details'>;
43374
+ field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_id_rules' | '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' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | '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' | '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' | 'uuid' | 'vendor_details'>;
43380
43375
  };
43381
43376
  url: '/api/marketplace-provider-offerings/{uuid}/';
43382
43377
  };
@@ -45022,7 +45017,7 @@ export type MarketplaceProviderOfferingsOrdersListData = {
45022
45017
  uuid: string;
45023
45018
  };
45024
45019
  query?: {
45025
- field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_message' | 'consumer_message_attachment' | '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_registry_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | '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' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_message' | 'provider_message_attachment' | 'provider_message_url' | 'provider_name' | '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'>;
45020
+ field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | '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_registry_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | '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' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | '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'>;
45026
45021
  /**
45027
45022
  * A page number within the paginated result set.
45028
45023
  */
@@ -45238,6 +45233,20 @@ export type MarketplaceProviderOfferingsUpdateAttributesResponses = {
45238
45233
  */
45239
45234
  200: unknown;
45240
45235
  };
45236
+ export type MarketplaceProviderOfferingsUpdateBackendIdRulesData = {
45237
+ body?: OfferingBackendIdRulesUpdateRequest;
45238
+ path: {
45239
+ uuid: string;
45240
+ };
45241
+ query?: never;
45242
+ url: '/api/marketplace-provider-offerings/{uuid}/update_backend_id_rules/';
45243
+ };
45244
+ export type MarketplaceProviderOfferingsUpdateBackendIdRulesResponses = {
45245
+ /**
45246
+ * No response body
45247
+ */
45248
+ 200: unknown;
45249
+ };
45241
45250
  export type MarketplaceProviderOfferingsUpdateComplianceChecklistData = {
45242
45251
  body?: OfferingComplianceChecklistUpdateRequest;
45243
45252
  path: {
@@ -45460,7 +45469,7 @@ export type MarketplaceProviderOfferingsUserHasResourceAccessRetrieveData = {
45460
45469
  uuid: string;
45461
45470
  };
45462
45471
  query: {
45463
- field?: Array<'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' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | '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' | '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' | 'uuid' | 'vendor_details'>;
45472
+ field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_id_rules' | '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' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | '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' | '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' | 'uuid' | 'vendor_details'>;
45464
45473
  /**
45465
45474
  * Username of the user to check.
45466
45475
  */
@@ -46680,6 +46689,18 @@ export type MarketplaceProviderResourcesSetSlugResponses = {
46680
46689
  };
46681
46690
  };
46682
46691
  export type MarketplaceProviderResourcesSetSlugResponse = MarketplaceProviderResourcesSetSlugResponses[keyof MarketplaceProviderResourcesSetSlugResponses];
46692
+ export type MarketplaceProviderResourcesSetStateOkData = {
46693
+ body?: never;
46694
+ path: {
46695
+ uuid: string;
46696
+ };
46697
+ query?: never;
46698
+ url: '/api/marketplace-provider-resources/{uuid}/set_state_ok/';
46699
+ };
46700
+ export type MarketplaceProviderResourcesSetStateOkResponses = {
46701
+ 200: ResourceResponseStatus;
46702
+ };
46703
+ export type MarketplaceProviderResourcesSetStateOkResponse = MarketplaceProviderResourcesSetStateOkResponses[keyof MarketplaceProviderResourcesSetStateOkResponses];
46683
46704
  export type MarketplaceProviderResourcesSubmitReportData = {
46684
46705
  body: ResourceReportRequest;
46685
46706
  path: {
@@ -60049,30 +60070,6 @@ export type OpenstackServerGroupsRetrieveResponses = {
60049
60070
  200: OpenStackServerGroup;
60050
60071
  };
60051
60072
  export type OpenstackServerGroupsRetrieveResponse = OpenstackServerGroupsRetrieveResponses[keyof OpenstackServerGroupsRetrieveResponses];
60052
- export type OpenstackServerGroupsPartialUpdateData = {
60053
- body?: PatchedOpenStackServerGroupRequest;
60054
- path: {
60055
- uuid: string;
60056
- };
60057
- query?: never;
60058
- url: '/api/openstack-server-groups/{uuid}/';
60059
- };
60060
- export type OpenstackServerGroupsPartialUpdateResponses = {
60061
- 200: OpenStackServerGroup;
60062
- };
60063
- export type OpenstackServerGroupsPartialUpdateResponse = OpenstackServerGroupsPartialUpdateResponses[keyof OpenstackServerGroupsPartialUpdateResponses];
60064
- export type OpenstackServerGroupsUpdateData = {
60065
- body: OpenStackServerGroupRequest;
60066
- path: {
60067
- uuid: string;
60068
- };
60069
- query?: never;
60070
- url: '/api/openstack-server-groups/{uuid}/';
60071
- };
60072
- export type OpenstackServerGroupsUpdateResponses = {
60073
- 200: OpenStackServerGroup;
60074
- };
60075
- export type OpenstackServerGroupsUpdateResponse = OpenstackServerGroupsUpdateResponses[keyof OpenstackServerGroupsUpdateResponses];
60076
60073
  export type OpenstackServerGroupsPullData = {
60077
60074
  body?: never;
60078
60075
  path: {
@@ -63870,7 +63867,7 @@ export type PromotionsCampaignsOrdersListData = {
63870
63867
  uuid: string;
63871
63868
  };
63872
63869
  query?: {
63873
- field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_message' | 'consumer_message_attachment' | '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_registry_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | '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' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_message' | 'provider_message_attachment' | 'provider_message_url' | 'provider_name' | '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'>;
63870
+ field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | '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_registry_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | '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' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | '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'>;
63874
63871
  /**
63875
63872
  * A page number within the paginated result set.
63876
63873
  */
@@ -72635,6 +72632,191 @@ export type SyncIssuesResponses = {
72635
72632
  */
72636
72633
  202: unknown;
72637
72634
  };
72635
+ export type SystemLogsListData = {
72636
+ body?: never;
72637
+ path?: never;
72638
+ query?: {
72639
+ created_from?: number;
72640
+ created_to?: number;
72641
+ instance?: string;
72642
+ level?: 'CRITICAL' | 'ERROR' | 'INFO' | 'WARNING';
72643
+ /**
72644
+ * Min level: 20=INFO, 30=WARNING, 40=ERROR, 50=CRITICAL
72645
+ */
72646
+ level_gte?: number;
72647
+ logger_name?: string;
72648
+ message?: string;
72649
+ /**
72650
+ * Ordering
72651
+ *
72652
+ *
72653
+ */
72654
+ o?: Array<'-created' | '-instance' | '-level_number' | 'created' | 'instance' | 'level_number'>;
72655
+ /**
72656
+ * A page number within the paginated result set.
72657
+ */
72658
+ page?: number;
72659
+ /**
72660
+ * Number of results to return per page.
72661
+ */
72662
+ page_size?: number;
72663
+ source?: 'api' | 'beat' | 'worker';
72664
+ };
72665
+ url: '/api/system-logs/';
72666
+ };
72667
+ export type SystemLogsListResponses = {
72668
+ 200: Array<SystemLog>;
72669
+ };
72670
+ export type SystemLogsListResponse = SystemLogsListResponses[keyof SystemLogsListResponses];
72671
+ export type SystemLogsCountData = {
72672
+ body?: never;
72673
+ path?: never;
72674
+ query?: {
72675
+ created_from?: number;
72676
+ created_to?: number;
72677
+ instance?: string;
72678
+ level?: 'CRITICAL' | 'ERROR' | 'INFO' | 'WARNING';
72679
+ /**
72680
+ * Min level: 20=INFO, 30=WARNING, 40=ERROR, 50=CRITICAL
72681
+ */
72682
+ level_gte?: number;
72683
+ logger_name?: string;
72684
+ message?: string;
72685
+ /**
72686
+ * Ordering
72687
+ *
72688
+ *
72689
+ */
72690
+ o?: Array<'-created' | '-instance' | '-level_number' | 'created' | 'instance' | 'level_number'>;
72691
+ /**
72692
+ * A page number within the paginated result set.
72693
+ */
72694
+ page?: number;
72695
+ /**
72696
+ * Number of results to return per page.
72697
+ */
72698
+ page_size?: number;
72699
+ source?: 'api' | 'beat' | 'worker';
72700
+ };
72701
+ url: '/api/system-logs/';
72702
+ };
72703
+ export type SystemLogsCountResponses = {
72704
+ /**
72705
+ * No response body
72706
+ */
72707
+ 200: unknown;
72708
+ };
72709
+ export type SystemLogsRetrieveData = {
72710
+ body?: never;
72711
+ path: {
72712
+ /**
72713
+ * A unique integer value identifying this system log.
72714
+ */
72715
+ id: number;
72716
+ };
72717
+ query?: never;
72718
+ url: '/api/system-logs/{id}/';
72719
+ };
72720
+ export type SystemLogsRetrieveResponses = {
72721
+ 200: SystemLog;
72722
+ };
72723
+ export type SystemLogsRetrieveResponse = SystemLogsRetrieveResponses[keyof SystemLogsRetrieveResponses];
72724
+ export type SystemLogsInstancesListData = {
72725
+ body?: never;
72726
+ path?: never;
72727
+ query?: {
72728
+ created_from?: number;
72729
+ created_to?: number;
72730
+ instance?: string;
72731
+ level?: 'CRITICAL' | 'ERROR' | 'INFO' | 'WARNING';
72732
+ /**
72733
+ * Min level: 20=INFO, 30=WARNING, 40=ERROR, 50=CRITICAL
72734
+ */
72735
+ level_gte?: number;
72736
+ logger_name?: string;
72737
+ message?: string;
72738
+ /**
72739
+ * Ordering
72740
+ *
72741
+ *
72742
+ */
72743
+ o?: Array<'-created' | '-instance' | '-level_number' | 'created' | 'instance' | 'level_number'>;
72744
+ /**
72745
+ * A page number within the paginated result set.
72746
+ */
72747
+ page?: number;
72748
+ /**
72749
+ * Number of results to return per page.
72750
+ */
72751
+ page_size?: number;
72752
+ source?: 'api' | 'beat' | 'worker';
72753
+ };
72754
+ url: '/api/system-logs/instances/';
72755
+ };
72756
+ export type SystemLogsInstancesListResponses = {
72757
+ 200: Array<SystemLogInstance>;
72758
+ };
72759
+ export type SystemLogsInstancesListResponse = SystemLogsInstancesListResponses[keyof SystemLogsInstancesListResponses];
72760
+ export type SystemLogsInstancesCountData = {
72761
+ body?: never;
72762
+ path?: never;
72763
+ query?: {
72764
+ created_from?: number;
72765
+ created_to?: number;
72766
+ instance?: string;
72767
+ level?: 'CRITICAL' | 'ERROR' | 'INFO' | 'WARNING';
72768
+ /**
72769
+ * Min level: 20=INFO, 30=WARNING, 40=ERROR, 50=CRITICAL
72770
+ */
72771
+ level_gte?: number;
72772
+ logger_name?: string;
72773
+ message?: string;
72774
+ /**
72775
+ * Ordering
72776
+ *
72777
+ *
72778
+ */
72779
+ o?: Array<'-created' | '-instance' | '-level_number' | 'created' | 'instance' | 'level_number'>;
72780
+ /**
72781
+ * A page number within the paginated result set.
72782
+ */
72783
+ page?: number;
72784
+ /**
72785
+ * Number of results to return per page.
72786
+ */
72787
+ page_size?: number;
72788
+ source?: 'api' | 'beat' | 'worker';
72789
+ };
72790
+ url: '/api/system-logs/instances/';
72791
+ };
72792
+ export type SystemLogsInstancesCountResponses = {
72793
+ /**
72794
+ * No response body
72795
+ */
72796
+ 200: unknown;
72797
+ };
72798
+ export type SystemLogsStatsRetrieveData = {
72799
+ body?: never;
72800
+ path?: never;
72801
+ query?: never;
72802
+ url: '/api/system-logs/stats/';
72803
+ };
72804
+ export type SystemLogsStatsRetrieveResponses = {
72805
+ 200: SystemLogStatsResponse;
72806
+ };
72807
+ export type SystemLogsStatsRetrieveResponse = SystemLogsStatsRetrieveResponses[keyof SystemLogsStatsRetrieveResponses];
72808
+ export type SystemLogsStatsCountData = {
72809
+ body?: never;
72810
+ path?: never;
72811
+ query?: never;
72812
+ url: '/api/system-logs/stats/';
72813
+ };
72814
+ export type SystemLogsStatsCountResponses = {
72815
+ /**
72816
+ * No response body
72817
+ */
72818
+ 200: unknown;
72819
+ };
72638
72820
  export type UserActionExecutionsListData = {
72639
72821
  body?: never;
72640
72822
  path?: never;