waldur-js-client 8.0.3-dev.8 → 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
  */
@@ -13533,6 +13602,15 @@ export type OrderDetails = {
13533
13602
  readonly created_by_username?: string;
13534
13603
  readonly created_by_full_name?: string;
13535
13604
  readonly created_by_civil_number?: string | null;
13605
+ /**
13606
+ * Email address
13607
+ */
13608
+ readonly created_by_email?: string | null;
13609
+ readonly created_by_organization?: string | null;
13610
+ /**
13611
+ * Company registration code of the user's organization, if known
13612
+ */
13613
+ readonly created_by_organization_registry_code?: string | null;
13536
13614
  readonly customer_name?: string;
13537
13615
  readonly customer_uuid?: string;
13538
13616
  readonly customer_slug?: string;
@@ -13557,11 +13635,14 @@ export type OrderDetails = {
13557
13635
  provider_message_attachment?: string | null;
13558
13636
  consumer_message?: string;
13559
13637
  consumer_message_attachment?: string | null;
13638
+ readonly consumer_rejection_comment?: string;
13639
+ readonly provider_rejection_comment?: string;
13560
13640
  issue?: IssueReference | null;
13561
13641
  };
13562
13642
  export type OrderErrorDetailsRequest = {
13563
13643
  error_message?: string;
13564
13644
  error_traceback?: string;
13645
+ consumer_rejection_comment?: string;
13565
13646
  };
13566
13647
  export type OrderInfoResponse = {
13567
13648
  readonly detail: string;
@@ -13571,6 +13652,9 @@ export type OrderProviderInfoRequest = {
13571
13652
  provider_message_url?: string;
13572
13653
  provider_message_attachment?: Blob | File;
13573
13654
  };
13655
+ export type OrderProviderRejectionRequest = {
13656
+ provider_rejection_comment?: string;
13657
+ };
13574
13658
  export type OrderState = 'pending-consumer' | 'pending-provider' | 'pending-project' | 'pending-start-date' | 'executing' | 'done' | 'erred' | 'canceled' | 'rejected';
13575
13659
  export type OrderStatsResponse = {
13576
13660
  /**
@@ -13792,6 +13876,10 @@ export type PatchedArrowSettingsRequest = {
13792
13876
  * Which price to use for invoice items: sell or buy
13793
13877
  */
13794
13878
  invoice_price_source?: InvoicePriceSourceEnum;
13879
+ /**
13880
+ * Prefix for invoice item names (e.g. 'Arrow consumption')
13881
+ */
13882
+ invoice_item_prefix?: string;
13795
13883
  };
13796
13884
  export type PatchedArrowVendorOfferingMappingRequest = {
13797
13885
  settings?: string;
@@ -13799,10 +13887,8 @@ export type PatchedArrowVendorOfferingMappingRequest = {
13799
13887
  * Arrow vendor name (e.g., 'Microsoft', 'Amazon Web Services')
13800
13888
  */
13801
13889
  arrow_vendor_name?: string;
13802
- /**
13803
- * Waldur marketplace offering for this vendor
13804
- */
13805
13890
  offering?: string;
13891
+ plan?: string | null;
13806
13892
  /**
13807
13893
  * Whether this mapping is active
13808
13894
  */
@@ -14679,14 +14765,6 @@ export type PatchedOpenStackSecurityGroupUpdateRequest = {
14679
14765
  name?: string;
14680
14766
  description?: string;
14681
14767
  };
14682
- export type PatchedOpenStackServerGroupRequest = {
14683
- name?: string;
14684
- description?: string;
14685
- /**
14686
- * Server group policy determining the rules for scheduling servers in this group
14687
- */
14688
- policy?: PolicyEnum | BlankEnum;
14689
- };
14690
14768
  export type PatchedOpenStackSnapshotRequest = {
14691
14769
  name?: string;
14692
14770
  description?: string;
@@ -15534,10 +15612,6 @@ export type PatchedTemplateRequest = {
15534
15612
  description?: string;
15535
15613
  issue_type?: IssueTypeEnum;
15536
15614
  };
15537
- export type PatchedThreadSessionRequest = {
15538
- name?: string;
15539
- is_archived?: boolean;
15540
- };
15541
15615
  export type PatchedUserAgreementRequest = {
15542
15616
  content?: string;
15543
15617
  agreement_type?: AgreementTypeEnum;
@@ -17065,6 +17139,10 @@ export type ProviderOfferingDetails = {
17065
17139
  */
17066
17140
  country?: CountryEnum | BlankEnum;
17067
17141
  backend_id?: string;
17142
+ /**
17143
+ * Validation rules for resource backend_id: format regex and uniqueness scope.
17144
+ */
17145
+ backend_id_rules?: unknown;
17068
17146
  readonly organization_groups?: Array<OrganizationGroup>;
17069
17147
  readonly tags?: Array<NestedTag>;
17070
17148
  image?: string | null;
@@ -17128,6 +17206,10 @@ export type ProviderOfferingDetailsRequest = {
17128
17206
  */
17129
17207
  country?: CountryEnum | BlankEnum;
17130
17208
  backend_id?: string;
17209
+ /**
17210
+ * Validation rules for resource backend_id: format regex and uniqueness scope.
17211
+ */
17212
+ backend_id_rules?: unknown;
17131
17213
  image?: (Blob | File) | null;
17132
17214
  backend_metadata?: unknown;
17133
17215
  compliance_checklist?: string | null;
@@ -21347,6 +21429,7 @@ export type SlurmCommandHistory = {
21347
21429
  */
21348
21430
  error_message?: string;
21349
21431
  };
21432
+ export type SlurmCommandResultModeEnum = 'production' | 'emulator';
21350
21433
  export type SlurmCommandResultRequest = {
21351
21434
  /**
21352
21435
  * UUID of the resource the command was applied to
@@ -21363,7 +21446,7 @@ export type SlurmCommandResultRequest = {
21363
21446
  /**
21364
21447
  * Execution mode of the command
21365
21448
  */
21366
- mode?: ModeEnum;
21449
+ mode?: SlurmCommandResultModeEnum;
21367
21450
  /**
21368
21451
  * List of shell commands actually executed by the site agent
21369
21452
  */
@@ -21995,15 +22078,28 @@ export type SyncResourceHistoricalConsumptionRequestRequest = {
21995
22078
  * End period in YYYY-MM format. Defaults to current month.
21996
22079
  */
21997
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;
21998
22089
  };
21999
22090
  export type SyncResourceHistoricalConsumptionResponse = {
22000
22091
  resource_uuid: string;
22001
22092
  resource_name: string;
22002
22093
  periods_synced: number;
22003
22094
  periods_skipped: number;
22095
+ periods_no_data?: number;
22004
22096
  errors: Array<{
22005
22097
  [key: string]: unknown;
22006
22098
  }>;
22099
+ dry_run?: boolean;
22100
+ preview_periods?: Array<{
22101
+ [key: string]: unknown;
22102
+ }>;
22007
22103
  };
22008
22104
  export type SyncResourcesRequestRequest = {
22009
22105
  /**
@@ -22043,6 +22139,37 @@ export type SyncResourcesResponse = {
22043
22139
  }>;
22044
22140
  };
22045
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
+ };
22046
22173
  export type TableGrowthAlert = {
22047
22174
  /**
22048
22175
  * Name of the table triggering the alert
@@ -22229,7 +22356,10 @@ export type ThreadSession = {
22229
22356
  readonly flags?: unknown;
22230
22357
  is_archived?: boolean;
22231
22358
  readonly message_count?: number;
22359
+ readonly user_username?: string;
22360
+ readonly user_full_name?: string;
22232
22361
  readonly created?: string;
22362
+ readonly modified?: string;
22233
22363
  };
22234
22364
  export type ThreadSessionRequest = {
22235
22365
  name?: string;
@@ -22401,6 +22531,10 @@ export type TriggerSyncRequestRequest = {
22401
22531
  year: number;
22402
22532
  month: number;
22403
22533
  settings_uuid?: string;
22534
+ /**
22535
+ * If set, only sync billing lines for this resource.
22536
+ */
22537
+ resource_uuid?: string;
22404
22538
  };
22405
22539
  export type UnsilenceActionResponse = {
22406
22540
  status: string;
@@ -24183,6 +24317,10 @@ export type OfferingCreateRequestForm = {
24183
24317
  */
24184
24318
  country?: CountryEnum | BlankEnum;
24185
24319
  backend_id?: string;
24320
+ /**
24321
+ * Validation rules for resource backend_id: format regex and uniqueness scope.
24322
+ */
24323
+ backend_id_rules?: unknown;
24186
24324
  image?: (Blob | File) | null;
24187
24325
  backend_metadata?: unknown;
24188
24326
  compliance_checklist?: string | null;
@@ -24232,6 +24370,10 @@ export type OfferingCreateRequestMultipart = {
24232
24370
  */
24233
24371
  country?: CountryEnum | BlankEnum;
24234
24372
  backend_id?: string;
24373
+ /**
24374
+ * Validation rules for resource backend_id: format regex and uniqueness scope.
24375
+ */
24376
+ backend_id_rules?: unknown;
24235
24377
  image?: (Blob | File) | null;
24236
24378
  backend_metadata?: unknown;
24237
24379
  compliance_checklist?: string | null;
@@ -24547,6 +24689,7 @@ export type ConstanceSettingsRequestForm = {
24547
24689
  ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
24548
24690
  ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
24549
24691
  RESTRICTED_OFFERING_VISIBILITY_MODE?: string;
24692
+ ALLOW_SERVICE_PROVIDER_OFFERING_MANAGEMENT?: boolean;
24550
24693
  NOTIFY_STAFF_ABOUT_APPROVALS?: boolean;
24551
24694
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
24552
24695
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
@@ -24698,6 +24841,7 @@ export type ConstanceSettingsRequestForm = {
24698
24841
  OIDC_CACHE_TIMEOUT?: number;
24699
24842
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
24700
24843
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
24844
+ OIDC_MATCHMAKING_BY_EMAIL?: boolean;
24701
24845
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
24702
24846
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
24703
24847
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
@@ -24743,6 +24887,8 @@ export type ConstanceSettingsRequestForm = {
24743
24887
  SOFTWARE_CATALOG_UPDATE_EXISTING_PACKAGES?: boolean;
24744
24888
  SOFTWARE_CATALOG_CLEANUP_ENABLED?: boolean;
24745
24889
  SOFTWARE_CATALOG_RETENTION_DAYS?: number;
24890
+ SYSTEM_LOG_ENABLED?: boolean;
24891
+ SYSTEM_LOG_MAX_ROWS_PER_SOURCE?: number;
24746
24892
  TABLE_GROWTH_MONITORING_ENABLED?: boolean;
24747
24893
  TABLE_GROWTH_WEEKLY_THRESHOLD_PERCENT?: number;
24748
24894
  TABLE_GROWTH_MONTHLY_THRESHOLD_PERCENT?: number;
@@ -24782,6 +24928,7 @@ export type ConstanceSettingsRequestMultipart = {
24782
24928
  ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
24783
24929
  ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
24784
24930
  RESTRICTED_OFFERING_VISIBILITY_MODE?: string;
24931
+ ALLOW_SERVICE_PROVIDER_OFFERING_MANAGEMENT?: boolean;
24785
24932
  NOTIFY_STAFF_ABOUT_APPROVALS?: boolean;
24786
24933
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
24787
24934
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
@@ -24933,6 +25080,7 @@ export type ConstanceSettingsRequestMultipart = {
24933
25080
  OIDC_CACHE_TIMEOUT?: number;
24934
25081
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
24935
25082
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
25083
+ OIDC_MATCHMAKING_BY_EMAIL?: boolean;
24936
25084
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
24937
25085
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
24938
25086
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
@@ -24978,6 +25126,8 @@ export type ConstanceSettingsRequestMultipart = {
24978
25126
  SOFTWARE_CATALOG_UPDATE_EXISTING_PACKAGES?: boolean;
24979
25127
  SOFTWARE_CATALOG_CLEANUP_ENABLED?: boolean;
24980
25128
  SOFTWARE_CATALOG_RETENTION_DAYS?: number;
25129
+ SYSTEM_LOG_ENABLED?: boolean;
25130
+ SYSTEM_LOG_MAX_ROWS_PER_SOURCE?: number;
24981
25131
  TABLE_GROWTH_MONITORING_ENABLED?: boolean;
24982
25132
  TABLE_GROWTH_WEEKLY_THRESHOLD_PERCENT?: number;
24983
25133
  TABLE_GROWTH_MONTHLY_THRESHOLD_PERCENT?: number;
@@ -31464,6 +31614,7 @@ export type ChatMessagesListData = {
31464
31614
  body?: never;
31465
31615
  path?: never;
31466
31616
  query?: {
31617
+ include_history?: boolean;
31467
31618
  /**
31468
31619
  * A page number within the paginated result set.
31469
31620
  */
@@ -31480,50 +31631,6 @@ export type ChatMessagesListResponses = {
31480
31631
  200: Array<Message>;
31481
31632
  };
31482
31633
  export type ChatMessagesListResponse = ChatMessagesListResponses[keyof ChatMessagesListResponses];
31483
- export type ChatMessagesCountData = {
31484
- body?: never;
31485
- path?: never;
31486
- query?: {
31487
- /**
31488
- * A page number within the paginated result set.
31489
- */
31490
- page?: number;
31491
- /**
31492
- * Number of results to return per page.
31493
- */
31494
- page_size?: number;
31495
- thread?: string;
31496
- };
31497
- url: '/api/chat-messages/';
31498
- };
31499
- export type ChatMessagesCountResponses = {
31500
- /**
31501
- * No response body
31502
- */
31503
- 200: unknown;
31504
- };
31505
- export type ChatMessagesCreateData = {
31506
- body: MessageRequest;
31507
- path?: never;
31508
- query?: never;
31509
- url: '/api/chat-messages/';
31510
- };
31511
- export type ChatMessagesCreateResponses = {
31512
- 201: Message;
31513
- };
31514
- export type ChatMessagesCreateResponse = ChatMessagesCreateResponses[keyof ChatMessagesCreateResponses];
31515
- export type ChatMessagesRetrieveData = {
31516
- body?: never;
31517
- path: {
31518
- uuid: string;
31519
- };
31520
- query?: never;
31521
- url: '/api/chat-messages/{uuid}/';
31522
- };
31523
- export type ChatMessagesRetrieveResponses = {
31524
- 200: Message;
31525
- };
31526
- export type ChatMessagesRetrieveResponse = ChatMessagesRetrieveResponses[keyof ChatMessagesRetrieveResponses];
31527
31634
  export type ChatMessagesEditData = {
31528
31635
  body?: {
31529
31636
  content?: string;
@@ -31538,28 +31645,6 @@ export type ChatMessagesEditResponses = {
31538
31645
  200: Message;
31539
31646
  };
31540
31647
  export type ChatMessagesEditResponse = ChatMessagesEditResponses[keyof ChatMessagesEditResponses];
31541
- export type ChatMessagesHistoryListData = {
31542
- body?: never;
31543
- path: {
31544
- uuid: string;
31545
- };
31546
- query?: {
31547
- /**
31548
- * A page number within the paginated result set.
31549
- */
31550
- page?: number;
31551
- /**
31552
- * Number of results to return per page.
31553
- */
31554
- page_size?: number;
31555
- thread?: string;
31556
- };
31557
- url: '/api/chat-messages/{uuid}/history/';
31558
- };
31559
- export type ChatMessagesHistoryListResponses = {
31560
- 200: Array<Message>;
31561
- };
31562
- export type ChatMessagesHistoryListResponse = ChatMessagesHistoryListResponses[keyof ChatMessagesHistoryListResponses];
31563
31648
  export type ChatQuotaSetQuotaData = {
31564
31649
  body: SetTokenQuotaRequest;
31565
31650
  path?: never;
@@ -31607,27 +31692,6 @@ export type ChatSessionsListResponses = {
31607
31692
  200: Array<ChatSession>;
31608
31693
  };
31609
31694
  export type ChatSessionsListResponse = ChatSessionsListResponses[keyof ChatSessionsListResponses];
31610
- export type ChatSessionsCountData = {
31611
- body?: never;
31612
- path?: never;
31613
- query?: {
31614
- /**
31615
- * A page number within the paginated result set.
31616
- */
31617
- page?: number;
31618
- /**
31619
- * Number of results to return per page.
31620
- */
31621
- page_size?: number;
31622
- };
31623
- url: '/api/chat-sessions/';
31624
- };
31625
- export type ChatSessionsCountResponses = {
31626
- /**
31627
- * No response body
31628
- */
31629
- 200: unknown;
31630
- };
31631
31695
  export type ChatSessionsRetrieveData = {
31632
31696
  body?: never;
31633
31697
  path: {
@@ -31652,24 +31716,20 @@ export type ChatSessionsCurrentRetrieveResponses = {
31652
31716
  200: ChatSession;
31653
31717
  };
31654
31718
  export type ChatSessionsCurrentRetrieveResponse = ChatSessionsCurrentRetrieveResponses[keyof ChatSessionsCurrentRetrieveResponses];
31655
- export type ChatSessionsCurrentCountData = {
31656
- body?: never;
31657
- path?: never;
31658
- query?: never;
31659
- url: '/api/chat-sessions/current/';
31660
- };
31661
- export type ChatSessionsCurrentCountResponses = {
31662
- /**
31663
- * No response body
31664
- */
31665
- 200: unknown;
31666
- };
31667
31719
  export type ChatThreadsListData = {
31668
31720
  body?: never;
31669
31721
  path?: never;
31670
31722
  query?: {
31671
- 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'>;
31672
31725
  is_archived?: boolean;
31726
+ modified?: string;
31727
+ /**
31728
+ * Ordering
31729
+ *
31730
+ *
31731
+ */
31732
+ o?: Array<'-created' | '-modified' | 'created' | 'modified'>;
31673
31733
  /**
31674
31734
  * A page number within the paginated result set.
31675
31735
  */
@@ -31678,6 +31738,7 @@ export type ChatThreadsListData = {
31678
31738
  * Number of results to return per page.
31679
31739
  */
31680
31740
  page_size?: number;
31741
+ query?: string;
31681
31742
  user?: string;
31682
31743
  };
31683
31744
  url: '/api/chat-threads/';
@@ -31686,46 +31747,13 @@ export type ChatThreadsListResponses = {
31686
31747
  200: Array<ThreadSession>;
31687
31748
  };
31688
31749
  export type ChatThreadsListResponse = ChatThreadsListResponses[keyof ChatThreadsListResponses];
31689
- export type ChatThreadsCountData = {
31690
- body?: never;
31691
- path?: never;
31692
- query?: {
31693
- is_archived?: boolean;
31694
- /**
31695
- * A page number within the paginated result set.
31696
- */
31697
- page?: number;
31698
- /**
31699
- * Number of results to return per page.
31700
- */
31701
- page_size?: number;
31702
- user?: string;
31703
- };
31704
- url: '/api/chat-threads/';
31705
- };
31706
- export type ChatThreadsCountResponses = {
31707
- /**
31708
- * No response body
31709
- */
31710
- 200: unknown;
31711
- };
31712
- export type ChatThreadsCreateData = {
31713
- body?: ThreadSessionRequest;
31714
- path?: never;
31715
- query?: never;
31716
- url: '/api/chat-threads/';
31717
- };
31718
- export type ChatThreadsCreateResponses = {
31719
- 201: ThreadSession;
31720
- };
31721
- export type ChatThreadsCreateResponse = ChatThreadsCreateResponses[keyof ChatThreadsCreateResponses];
31722
31750
  export type ChatThreadsRetrieveData = {
31723
31751
  body?: never;
31724
31752
  path: {
31725
31753
  uuid: string;
31726
31754
  };
31727
31755
  query?: {
31728
- 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'>;
31729
31757
  };
31730
31758
  url: '/api/chat-threads/{uuid}/';
31731
31759
  };
@@ -31733,30 +31761,6 @@ export type ChatThreadsRetrieveResponses = {
31733
31761
  200: ThreadSession;
31734
31762
  };
31735
31763
  export type ChatThreadsRetrieveResponse = ChatThreadsRetrieveResponses[keyof ChatThreadsRetrieveResponses];
31736
- export type ChatThreadsPartialUpdateData = {
31737
- body?: PatchedThreadSessionRequest;
31738
- path: {
31739
- uuid: string;
31740
- };
31741
- query?: never;
31742
- url: '/api/chat-threads/{uuid}/';
31743
- };
31744
- export type ChatThreadsPartialUpdateResponses = {
31745
- 200: ThreadSession;
31746
- };
31747
- export type ChatThreadsPartialUpdateResponse = ChatThreadsPartialUpdateResponses[keyof ChatThreadsPartialUpdateResponses];
31748
- export type ChatThreadsUpdateData = {
31749
- body?: ThreadSessionRequest;
31750
- path: {
31751
- uuid: string;
31752
- };
31753
- query?: never;
31754
- url: '/api/chat-threads/{uuid}/';
31755
- };
31756
- export type ChatThreadsUpdateResponses = {
31757
- 200: ThreadSession;
31758
- };
31759
- export type ChatThreadsUpdateResponse = ChatThreadsUpdateResponses[keyof ChatThreadsUpdateResponses];
31760
31764
  export type ChatThreadsArchiveData = {
31761
31765
  body?: ThreadSessionRequest;
31762
31766
  path: {
@@ -41174,7 +41178,7 @@ export type MarketplaceOfferingUsersListData = {
41174
41178
  * Created after
41175
41179
  */
41176
41180
  created?: string;
41177
- 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'>;
41178
41182
  /**
41179
41183
  * User Has Consent
41180
41184
  */
@@ -41346,7 +41350,7 @@ export type MarketplaceOfferingUsersRetrieveData = {
41346
41350
  uuid: string;
41347
41351
  };
41348
41352
  query?: {
41349
- 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'>;
41350
41354
  };
41351
41355
  url: '/api/marketplace-offering-users/{uuid}/';
41352
41356
  };
@@ -41725,7 +41729,7 @@ export type MarketplaceOrdersListData = {
41725
41729
  * Customer UUID
41726
41730
  */
41727
41731
  customer_uuid?: string;
41728
- 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_full_name' | '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'>;
41729
41733
  /**
41730
41734
  * Modified after
41731
41735
  */
@@ -41941,7 +41945,7 @@ export type MarketplaceOrdersRetrieveData = {
41941
41945
  uuid: string;
41942
41946
  };
41943
41947
  query?: {
41944
- 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_full_name' | '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'>;
41945
41949
  };
41946
41950
  url: '/api/marketplace-orders/{uuid}/';
41947
41951
  };
@@ -42053,7 +42057,7 @@ export type MarketplaceOrdersRejectByConsumerResponses = {
42053
42057
  200: unknown;
42054
42058
  };
42055
42059
  export type MarketplaceOrdersRejectByProviderData = {
42056
- body?: never;
42060
+ body?: OrderProviderRejectionRequest;
42057
42061
  path: {
42058
42062
  uuid: string;
42059
42063
  };
@@ -43050,7 +43054,7 @@ export type MarketplaceProviderOfferingsListData = {
43050
43054
  * Description contains
43051
43055
  */
43052
43056
  description?: string;
43053
- 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'>;
43054
43058
  /**
43055
43059
  * Has Active Terms of Service
43056
43060
  */
@@ -43367,7 +43371,7 @@ export type MarketplaceProviderOfferingsRetrieveData = {
43367
43371
  uuid: string;
43368
43372
  };
43369
43373
  query?: {
43370
- 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'>;
43371
43375
  };
43372
43376
  url: '/api/marketplace-provider-offerings/{uuid}/';
43373
43377
  };
@@ -45013,7 +45017,7 @@ export type MarketplaceProviderOfferingsOrdersListData = {
45013
45017
  uuid: string;
45014
45018
  };
45015
45019
  query?: {
45016
- 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_full_name' | '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'>;
45017
45021
  /**
45018
45022
  * A page number within the paginated result set.
45019
45023
  */
@@ -45229,6 +45233,20 @@ export type MarketplaceProviderOfferingsUpdateAttributesResponses = {
45229
45233
  */
45230
45234
  200: unknown;
45231
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
+ };
45232
45250
  export type MarketplaceProviderOfferingsUpdateComplianceChecklistData = {
45233
45251
  body?: OfferingComplianceChecklistUpdateRequest;
45234
45252
  path: {
@@ -45451,7 +45469,7 @@ export type MarketplaceProviderOfferingsUserHasResourceAccessRetrieveData = {
45451
45469
  uuid: string;
45452
45470
  };
45453
45471
  query: {
45454
- 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'>;
45455
45473
  /**
45456
45474
  * Username of the user to check.
45457
45475
  */
@@ -46671,6 +46689,18 @@ export type MarketplaceProviderResourcesSetSlugResponses = {
46671
46689
  };
46672
46690
  };
46673
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];
46674
46704
  export type MarketplaceProviderResourcesSubmitReportData = {
46675
46705
  body: ResourceReportRequest;
46676
46706
  path: {
@@ -60040,30 +60070,6 @@ export type OpenstackServerGroupsRetrieveResponses = {
60040
60070
  200: OpenStackServerGroup;
60041
60071
  };
60042
60072
  export type OpenstackServerGroupsRetrieveResponse = OpenstackServerGroupsRetrieveResponses[keyof OpenstackServerGroupsRetrieveResponses];
60043
- export type OpenstackServerGroupsPartialUpdateData = {
60044
- body?: PatchedOpenStackServerGroupRequest;
60045
- path: {
60046
- uuid: string;
60047
- };
60048
- query?: never;
60049
- url: '/api/openstack-server-groups/{uuid}/';
60050
- };
60051
- export type OpenstackServerGroupsPartialUpdateResponses = {
60052
- 200: OpenStackServerGroup;
60053
- };
60054
- export type OpenstackServerGroupsPartialUpdateResponse = OpenstackServerGroupsPartialUpdateResponses[keyof OpenstackServerGroupsPartialUpdateResponses];
60055
- export type OpenstackServerGroupsUpdateData = {
60056
- body: OpenStackServerGroupRequest;
60057
- path: {
60058
- uuid: string;
60059
- };
60060
- query?: never;
60061
- url: '/api/openstack-server-groups/{uuid}/';
60062
- };
60063
- export type OpenstackServerGroupsUpdateResponses = {
60064
- 200: OpenStackServerGroup;
60065
- };
60066
- export type OpenstackServerGroupsUpdateResponse = OpenstackServerGroupsUpdateResponses[keyof OpenstackServerGroupsUpdateResponses];
60067
60073
  export type OpenstackServerGroupsPullData = {
60068
60074
  body?: never;
60069
60075
  path: {
@@ -63861,7 +63867,7 @@ export type PromotionsCampaignsOrdersListData = {
63861
63867
  uuid: string;
63862
63868
  };
63863
63869
  query?: {
63864
- 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_full_name' | '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'>;
63865
63871
  /**
63866
63872
  * A page number within the paginated result set.
63867
63873
  */
@@ -72626,6 +72632,191 @@ export type SyncIssuesResponses = {
72626
72632
  */
72627
72633
  202: unknown;
72628
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
+ };
72629
72820
  export type UserActionExecutionsListData = {
72630
72821
  body?: never;
72631
72822
  path?: never;