waldur-js-client 8.0.8-dev.0 → 8.0.8-dev.10

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.
@@ -102,6 +102,56 @@ export type AdministrativeAccess = {
102
102
  support_count?: number;
103
103
  users?: Array<AdminUser>;
104
104
  };
105
+ export type AffiliatedOrganization = {
106
+ readonly uuid?: string;
107
+ readonly url?: string;
108
+ name?: string;
109
+ /**
110
+ * Unique short identifier, e.g. CERN, EMBL.
111
+ */
112
+ code?: string;
113
+ abbreviation?: string;
114
+ description?: string;
115
+ email?: string;
116
+ homepage?: string;
117
+ country?: string;
118
+ address?: string;
119
+ readonly created?: string;
120
+ readonly modified?: string;
121
+ /**
122
+ * Number of active projects affiliated with this organization
123
+ */
124
+ readonly projects_count?: number;
125
+ };
126
+ export type AffiliatedOrganizationReportRow = {
127
+ org_uuid: string | null;
128
+ org_name: string;
129
+ org_abbreviation: string;
130
+ projects_count: number;
131
+ resources_count: number;
132
+ estimated_cost: string;
133
+ };
134
+ export type AffiliatedOrganizationRequest = {
135
+ name: string;
136
+ /**
137
+ * Unique short identifier, e.g. CERN, EMBL.
138
+ */
139
+ code: string;
140
+ abbreviation?: string;
141
+ description?: string;
142
+ email?: string;
143
+ homepage?: string;
144
+ country?: string;
145
+ address?: string;
146
+ };
147
+ export type AffiliatedOrganizationStats = {
148
+ active_projects_count: number;
149
+ resources_count: number;
150
+ estimated_monthly_cost: string;
151
+ };
152
+ export type AffiliatedOrganizationsUpdateRequest = {
153
+ affiliated_organizations?: Array<string>;
154
+ };
105
155
  export type AffiliationTypeEnum = 'employment' | 'education' | 'visiting' | 'honorary' | 'consulting';
106
156
  export type AffinityMatrixEntry = {
107
157
  uuid: string;
@@ -2289,17 +2339,17 @@ export type BaseProviderPlan = {
2289
2339
  readonly organization_groups?: Array<OrganizationGroup>;
2290
2340
  readonly components?: Array<NestedPlanComponent>;
2291
2341
  readonly prices?: {
2292
- [key: string]: number;
2342
+ [key: string]: string;
2293
2343
  };
2294
2344
  readonly future_prices?: {
2295
- [key: string]: number;
2345
+ [key: string]: string;
2296
2346
  };
2297
2347
  readonly quotas?: {
2298
2348
  [key: string]: number;
2299
2349
  };
2300
2350
  readonly resources_count?: number;
2301
2351
  readonly plan_type?: string;
2302
- readonly minimal_price?: number;
2352
+ readonly minimal_price?: string;
2303
2353
  };
2304
2354
  export type BaseProviderPlanRequest = {
2305
2355
  name: string;
@@ -2340,17 +2390,17 @@ export type BasePublicPlan = {
2340
2390
  readonly organization_groups?: Array<OrganizationGroup>;
2341
2391
  readonly components?: Array<NestedPlanComponent>;
2342
2392
  readonly prices?: {
2343
- [key: string]: number;
2393
+ [key: string]: string;
2344
2394
  };
2345
2395
  readonly future_prices?: {
2346
- [key: string]: number;
2396
+ [key: string]: string;
2347
2397
  };
2348
2398
  readonly quotas?: {
2349
2399
  [key: string]: number;
2350
2400
  };
2351
2401
  readonly resources_count?: number;
2352
2402
  readonly plan_type?: string;
2353
- readonly minimal_price?: number;
2403
+ readonly minimal_price?: string;
2354
2404
  };
2355
2405
  export type BasePublicPlanRequest = {
2356
2406
  url: string;
@@ -3550,7 +3600,7 @@ export type ChatRequestRequest = {
3550
3600
  };
3551
3601
  export type ChatResponse = {
3552
3602
  /**
3553
- * Component key (e.g. 'markdown', 'code', 'table', 'vm_order').
3603
+ * Component key (e.g. 'markdown', 'code', 'vm_order', 'resource_list').
3554
3604
  */
3555
3605
  k?: string;
3556
3606
  /**
@@ -3565,18 +3615,6 @@ export type ChatResponse = {
3565
3615
  * Error message.
3566
3616
  */
3567
3617
  e?: string;
3568
- /**
3569
- * Table headers.
3570
- */
3571
- h?: Array<unknown>;
3572
- /**
3573
- * Table rows.
3574
- */
3575
- r?: Array<unknown>;
3576
- /**
3577
- * Total row count.
3578
- */
3579
- n?: number;
3580
3618
  /**
3581
3619
  * System metadata (thread_uuid, message UUIDs).
3582
3620
  */
@@ -3616,7 +3654,7 @@ export type ChatResponse = {
3616
3654
  */
3617
3655
  organization?: string;
3618
3656
  /**
3619
- * Project UUID.
3657
+ * Project UUID. Present when k='vm_order' or k='resource_list'.
3620
3658
  */
3621
3659
  project_uuid?: string;
3622
3660
  /**
@@ -3647,6 +3685,30 @@ export type ChatResponse = {
3647
3685
  * Available offering options [{uuid, name}]. Present when status='offering_form'.
3648
3686
  */
3649
3687
  offerings?: Array<unknown>;
3688
+ /**
3689
+ * Customer/organization UUID filter hint. Present when k='resource_list'.
3690
+ */
3691
+ customer_uuid?: string;
3692
+ /**
3693
+ * Category UUID filter hint. Present when k='resource_list'.
3694
+ */
3695
+ category_uuid?: string;
3696
+ /**
3697
+ * State display name filters (e.g. ['OK', 'Erred']). Present when k='resource_list'.
3698
+ */
3699
+ state?: Array<unknown>;
3700
+ /**
3701
+ * Table headers - list of column names. Present when k='table'.
3702
+ */
3703
+ h?: Array<unknown>;
3704
+ /**
3705
+ * Table rows - list of row data (each row is a list of strings). Present when k='table'.
3706
+ */
3707
+ r?: Array<unknown>;
3708
+ /**
3709
+ * Total count of rows in the table (used for pagination display). Present when k='table'.
3710
+ */
3711
+ n?: number | null;
3650
3712
  };
3651
3713
  export type ChatSession = {
3652
3714
  readonly uuid?: string;
@@ -4025,6 +4087,25 @@ export type ComponentUsageItemRequest = {
4025
4087
  */
4026
4088
  recurring?: boolean;
4027
4089
  };
4090
+ export type ComponentUsageMonthly = {
4091
+ readonly offering_uuid?: string;
4092
+ readonly offering_name?: string;
4093
+ readonly offering_type?: string;
4094
+ readonly service_provider_uuid?: string;
4095
+ readonly service_provider_name?: string;
4096
+ readonly category_uuid?: string;
4097
+ readonly category_title?: string;
4098
+ readonly component_type?: string;
4099
+ readonly component_name?: string;
4100
+ readonly measured_unit?: string;
4101
+ readonly billing_type?: string;
4102
+ readonly limit_amount?: number;
4103
+ readonly limit_period?: string;
4104
+ billing_period?: string;
4105
+ total_consumed?: string;
4106
+ total_allocated?: string;
4107
+ usage_percent?: string | null;
4108
+ };
4028
4109
  export type ComponentUsagesPerMonthStats = {
4029
4110
  /**
4030
4111
  * Total usage amount
@@ -4274,6 +4355,7 @@ export type ConstanceSettings = {
4274
4355
  CURRENCY_NAME?: string;
4275
4356
  THUMBNAIL_SIZE?: string;
4276
4357
  ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
4358
+ SHOW_OFFERING_COVER_IMAGE?: boolean;
4277
4359
  ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
4278
4360
  RESTRICTED_OFFERING_VISIBILITY_MODE?: RestrictedofferingvisibilitymodeEnum;
4279
4361
  ALLOW_SERVICE_PROVIDER_OFFERING_MANAGEMENT?: boolean;
@@ -4529,6 +4611,7 @@ export type ConstanceSettingsRequest = {
4529
4611
  CURRENCY_NAME?: string;
4530
4612
  THUMBNAIL_SIZE?: string;
4531
4613
  ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
4614
+ SHOW_OFFERING_COVER_IMAGE?: boolean;
4532
4615
  ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
4533
4616
  RESTRICTED_OFFERING_VISIBILITY_MODE?: RestrictedofferingvisibilitymodeEnum;
4534
4617
  ALLOW_SERVICE_PROVIDER_OFFERING_MANAGEMENT?: boolean;
@@ -5126,6 +5209,7 @@ export type CreatePool = {
5126
5209
  */
5127
5210
  load_balancer: string;
5128
5211
  protocol: LoadBalancerProtocolEnum;
5212
+ lb_algorithm?: LbAlgorithmEnum;
5129
5213
  };
5130
5214
  export type CreatePoolMember = {
5131
5215
  readonly url: string;
@@ -5170,6 +5254,7 @@ export type CreatePoolRequest = {
5170
5254
  */
5171
5255
  load_balancer: string;
5172
5256
  protocol: LoadBalancerProtocolEnum;
5257
+ lb_algorithm?: LbAlgorithmEnum;
5173
5258
  };
5174
5259
  export type CreateRouter = {
5175
5260
  readonly url: string;
@@ -5469,7 +5554,7 @@ export type CustomerEstimatedCostPolicy = {
5469
5554
  limit_cost: number;
5470
5555
  period?: PolicyPeriodEnum;
5471
5556
  readonly period_name: string;
5472
- readonly customer_credit: number;
5557
+ readonly customer_credit: string | null;
5473
5558
  billing_price_estimate: NestedPriceEstimate;
5474
5559
  };
5475
5560
  export type CustomerEstimatedCostPolicyRequest = {
@@ -6419,7 +6504,7 @@ export type DryRunRequest = {
6419
6504
  };
6420
6505
  export type DryRunStateEnum = 1 | 2 | 3 | 4;
6421
6506
  export type DryRunTypeEnum = 'Create' | 'Update' | 'Terminate' | 'Restore' | 'Pull';
6422
- export type EnabledreportingscreensEnum = 'resource-usage' | 'user-usage' | 'quotas' | 'usage-monitoring' | 'usage-trends' | 'organization-summary' | 'project-detail' | 'resources-geography' | 'project-classification' | 'usage-by-customer' | 'usage-by-org-type' | 'usage-by-creator' | 'call-performance' | 'review-progress' | 'resource-demand' | 'capacity' | 'provider-overview' | 'provider-revenue' | 'provider-orders' | 'provider-resources' | 'provider-customers' | 'provider-offerings' | 'openstack-instances' | 'user-analytics' | 'user-demographics' | 'user-organizations' | 'user-affiliations' | 'user-roles' | 'growth' | 'revenue' | 'pricelist' | 'orders' | 'offering-costs' | 'maintenance-overview' | 'provisioning-stats';
6507
+ export type EnabledreportingscreensEnum = 'resource-usage' | 'user-usage' | 'quotas' | 'usage-monitoring' | 'usage-trends' | 'organization-summary' | 'project-detail' | 'resources-geography' | 'project-classification' | 'usage-by-customer' | 'usage-by-org-type' | 'usage-by-creator' | 'call-performance' | 'review-progress' | 'resource-demand' | 'capacity' | 'provider-overview' | 'provider-revenue' | 'provider-orders' | 'provider-resources' | 'provider-customers' | 'provider-offerings' | 'openstack-instances' | 'offering-usage' | 'user-analytics' | 'user-demographics' | 'user-organizations' | 'user-affiliations' | 'user-roles' | 'growth' | 'revenue' | 'pricelist' | 'orders' | 'offering-costs' | 'maintenance-overview' | 'provisioning-stats';
6423
6508
  export type EligibilityCheck = {
6424
6509
  is_eligible: boolean;
6425
6510
  restrictions: Array<string>;
@@ -7493,6 +7578,7 @@ export type IdentityBridgeRequestRequest = {
7493
7578
  personal_title?: string;
7494
7579
  birth_date?: string | null;
7495
7580
  place_of_birth?: string;
7581
+ address?: string;
7496
7582
  country_of_residence?: string;
7497
7583
  nationality?: string;
7498
7584
  nationalities?: Array<string>;
@@ -8553,6 +8639,7 @@ export type KeycloakUserGroupMembershipState = 'pending' | 'active';
8553
8639
  export type KeywordSearchModeEnum = 'expertise_only' | 'full_text';
8554
8640
  export type KindEnum = 'default' | 'course' | 'public';
8555
8641
  export type LoginpagelayoutEnum = 'split-screen' | 'centered-card' | 'minimal' | 'full-hero' | 'gradient' | 'stacked' | 'right-split' | 'glassmorphism' | 'neumorphism' | 'animated-gradient' | 'video-background' | 'bottom-sheet' | 'tabbed' | 'wizard' | 'stats' | 'news' | 'carousel' | 'logo-watermark' | 'brand-pattern' | 'duotone' | 'diagonal' | 'time-based' | 'seasonal' | 'weather';
8642
+ export type LbAlgorithmEnum = 'ROUND_ROBIN' | 'LEAST_CONNECTIONS' | 'SOURCE_IP' | 'SOURCE_IP_PORT';
8556
8643
  export type LexisLink = {
8557
8644
  readonly url: string;
8558
8645
  readonly uuid: string;
@@ -8627,6 +8714,9 @@ export type LoadBalancerAttachFloatingIpRequest = {
8627
8714
  floating_ip: string;
8628
8715
  };
8629
8716
  export type LoadBalancerProtocolEnum = 'TCP' | 'UDP';
8717
+ export type LoadBalancerSetSecurityGroupsRequest = {
8718
+ security_groups: Array<string>;
8719
+ };
8630
8720
  export type LockStats = {
8631
8721
  /**
8632
8722
  * Total number of locks currently held
@@ -9102,6 +9192,7 @@ export type MarketplaceServiceProviderUser = {
9102
9192
  */
9103
9193
  personal_title?: string;
9104
9194
  place_of_birth?: string;
9195
+ address?: string;
9105
9196
  country_of_residence?: string;
9106
9197
  /**
9107
9198
  * Primary citizenship (ISO 3166-1 alpha-2 code)
@@ -10445,6 +10536,7 @@ export type NestedParentSoftware = {
10445
10536
  readonly uuid: string;
10446
10537
  name: string;
10447
10538
  readonly url: string;
10539
+ readonly versions: Array<string>;
10448
10540
  };
10449
10541
  export type NestedParentSoftwareRequest = {
10450
10542
  name: string;
@@ -12223,6 +12315,7 @@ export type OfferingUser = {
12223
12315
  */
12224
12316
  readonly user_personal_title?: string;
12225
12317
  readonly user_place_of_birth?: string;
12318
+ readonly user_address?: string;
12226
12319
  readonly user_country_of_residence?: string;
12227
12320
  /**
12228
12321
  * Primary citizenship (ISO 3166-1 alpha-2 code)
@@ -12310,6 +12403,7 @@ export type OfferingUserAttributeConfig = {
12310
12403
  expose_gender?: boolean;
12311
12404
  expose_personal_title?: boolean;
12312
12405
  expose_place_of_birth?: boolean;
12406
+ expose_address?: boolean;
12313
12407
  expose_country_of_residence?: boolean;
12314
12408
  expose_nationality?: boolean;
12315
12409
  expose_nationalities?: boolean;
@@ -12342,6 +12436,7 @@ export type OfferingUserAttributeConfigRequest = {
12342
12436
  expose_gender?: boolean;
12343
12437
  expose_personal_title?: boolean;
12344
12438
  expose_place_of_birth?: boolean;
12439
+ expose_address?: boolean;
12345
12440
  expose_country_of_residence?: boolean;
12346
12441
  expose_nationality?: boolean;
12347
12442
  expose_nationalities?: boolean;
@@ -13472,6 +13567,12 @@ export type OpenStackLoadBalancer = {
13472
13567
  readonly provider?: string;
13473
13568
  readonly provisioning_status?: string;
13474
13569
  readonly operating_status?: string;
13570
+ /**
13571
+ * Security groups assigned to the VIP port.
13572
+ */
13573
+ readonly vip_security_groups?: Array<{
13574
+ [key: string]: unknown;
13575
+ }>;
13475
13576
  readonly marketplace_offering_uuid?: string | null;
13476
13577
  readonly marketplace_offering_name?: string | null;
13477
13578
  readonly marketplace_offering_type?: string | null;
@@ -15181,6 +15282,19 @@ export type PatchedAdminAnnouncementRequest = {
15181
15282
  active_to?: string;
15182
15283
  type?: AdminAnnouncementTypeEnum;
15183
15284
  };
15285
+ export type PatchedAffiliatedOrganizationRequest = {
15286
+ name?: string;
15287
+ /**
15288
+ * Unique short identifier, e.g. CERN, EMBL.
15289
+ */
15290
+ code?: string;
15291
+ abbreviation?: string;
15292
+ description?: string;
15293
+ email?: string;
15294
+ homepage?: string;
15295
+ country?: string;
15296
+ address?: string;
15297
+ };
15184
15298
  export type PatchedAllocationRequest = {
15185
15299
  name?: string;
15186
15300
  description?: string;
@@ -16067,6 +16181,7 @@ export type PatchedOfferingUserAttributeConfigRequest = {
16067
16181
  expose_gender?: boolean;
16068
16182
  expose_personal_title?: boolean;
16069
16183
  expose_place_of_birth?: boolean;
16184
+ expose_address?: boolean;
16070
16185
  expose_country_of_residence?: boolean;
16071
16186
  expose_nationality?: boolean;
16072
16187
  expose_nationalities?: boolean;
@@ -17117,6 +17232,7 @@ export type PatchedUserRequest = {
17117
17232
  */
17118
17233
  personal_title?: string;
17119
17234
  place_of_birth?: string;
17235
+ address?: string;
17120
17236
  country_of_residence?: string;
17121
17237
  /**
17122
17238
  * Primary citizenship (ISO 3166-1 alpha-2 code)
@@ -17635,6 +17751,7 @@ export type Project = {
17635
17751
  * List of allowed identity sources (identity providers).
17636
17752
  */
17637
17753
  user_identity_sources?: unknown;
17754
+ readonly affiliated_organizations?: Array<AffiliatedOrganization>;
17638
17755
  readonly project_credit?: number | null;
17639
17756
  readonly marketplace_resource_count?: {
17640
17757
  [key: string]: number;
@@ -17864,8 +17981,8 @@ export type ProjectEstimatedCostPolicy = {
17864
17981
  limit_cost: number;
17865
17982
  period?: PolicyPeriodEnum;
17866
17983
  readonly period_name: string;
17867
- readonly project_credit: number | null;
17868
- readonly customer_credit: number | null;
17984
+ readonly project_credit: string | null;
17985
+ readonly customer_credit: string | null;
17869
17986
  billing_price_estimate: NestedPriceEstimate;
17870
17987
  };
17871
17988
  export type ProjectEstimatedCostPolicyRequest = {
@@ -18811,17 +18928,17 @@ export type ProviderPlanDetails = {
18811
18928
  readonly components: Array<NestedPlanComponent>;
18812
18929
  offering: string;
18813
18930
  readonly prices: {
18814
- [key: string]: number;
18931
+ [key: string]: string;
18815
18932
  };
18816
18933
  readonly future_prices: {
18817
- [key: string]: number;
18934
+ [key: string]: string;
18818
18935
  };
18819
18936
  readonly quotas: {
18820
18937
  [key: string]: number;
18821
18938
  };
18822
18939
  readonly resources_count: number;
18823
18940
  readonly plan_type: string;
18824
- readonly minimal_price: number;
18941
+ readonly minimal_price: string;
18825
18942
  };
18826
18943
  export type ProviderPlanDetailsRequest = {
18827
18944
  name: string;
@@ -24482,6 +24599,7 @@ export type User = {
24482
24599
  */
24483
24600
  personal_title?: string;
24484
24601
  place_of_birth?: string;
24602
+ address?: string;
24485
24603
  country_of_residence?: string;
24486
24604
  /**
24487
24605
  * Primary citizenship (ISO 3166-1 alpha-2 code)
@@ -24883,6 +25001,7 @@ export type UserRequest = {
24883
25001
  */
24884
25002
  personal_title?: string;
24885
25003
  place_of_birth?: string;
25004
+ address?: string;
24886
25005
  country_of_residence?: string;
24887
25006
  /**
24888
25007
  * Primary citizenship (ISO 3166-1 alpha-2 code)
@@ -26587,6 +26706,7 @@ export type ConstanceSettingsRequestForm = {
26587
26706
  CURRENCY_NAME?: string;
26588
26707
  THUMBNAIL_SIZE?: string;
26589
26708
  ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
26709
+ SHOW_OFFERING_COVER_IMAGE?: boolean;
26590
26710
  ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
26591
26711
  RESTRICTED_OFFERING_VISIBILITY_MODE?: RestrictedofferingvisibilitymodeEnum;
26592
26712
  ALLOW_SERVICE_PROVIDER_OFFERING_MANAGEMENT?: boolean;
@@ -26842,6 +26962,7 @@ export type ConstanceSettingsRequestMultipart = {
26842
26962
  CURRENCY_NAME?: string;
26843
26963
  THUMBNAIL_SIZE?: string;
26844
26964
  ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
26965
+ SHOW_OFFERING_COVER_IMAGE?: boolean;
26845
26966
  ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
26846
26967
  RESTRICTED_OFFERING_VISIBILITY_MODE?: RestrictedofferingvisibilitymodeEnum;
26847
26968
  ALLOW_SERVICE_PROVIDER_OFFERING_MANAGEMENT?: boolean;
@@ -27207,6 +27328,7 @@ export type UserRequestForm = {
27207
27328
  */
27208
27329
  personal_title?: string;
27209
27330
  place_of_birth?: string;
27331
+ address?: string;
27210
27332
  country_of_residence?: string;
27211
27333
  /**
27212
27334
  * Primary citizenship (ISO 3166-1 alpha-2 code)
@@ -27298,6 +27420,7 @@ export type UserRequestMultipart = {
27298
27420
  */
27299
27421
  personal_title?: string;
27300
27422
  place_of_birth?: string;
27423
+ address?: string;
27301
27424
  country_of_residence?: string;
27302
27425
  /**
27303
27426
  * Primary citizenship (ISO 3166-1 alpha-2 code)
@@ -27388,6 +27511,7 @@ export type PatchedUserRequestForm = {
27388
27511
  */
27389
27512
  personal_title?: string;
27390
27513
  place_of_birth?: string;
27514
+ address?: string;
27391
27515
  country_of_residence?: string;
27392
27516
  /**
27393
27517
  * Primary citizenship (ISO 3166-1 alpha-2 code)
@@ -27478,6 +27602,7 @@ export type PatchedUserRequestMultipart = {
27478
27602
  */
27479
27603
  personal_title?: string;
27480
27604
  place_of_birth?: string;
27605
+ address?: string;
27481
27606
  country_of_residence?: string;
27482
27607
  /**
27483
27608
  * Primary citizenship (ISO 3166-1 alpha-2 code)
@@ -27565,6 +27690,7 @@ export type ResourceFieldEnum = 'attributes' | 'available_actions' | 'backend_id
27565
27690
  export type MarketplaceCategoryFieldEnum = 'articles' | 'available_offerings_count' | 'columns' | 'components' | 'default_tenant_category' | 'default_vm_category' | 'default_volume_category' | 'description' | 'group' | 'icon' | 'offering_count' | 'sections' | 'title' | 'url' | 'uuid';
27566
27691
  export type CategoryComponentUsageFieldEnum = 'category_title' | 'category_uuid' | 'date' | 'fixed_usage' | 'measured_unit' | 'name' | 'reported_usage' | 'scope' | 'type';
27567
27692
  export type CategoryGroupFieldEnum = 'description' | 'icon' | 'title' | 'url' | 'uuid';
27693
+ export type ComponentUsageMonthlyFieldEnum = 'billing_period' | 'billing_type' | 'category_title' | 'category_uuid' | 'component_name' | 'component_type' | 'limit_amount' | 'limit_period' | 'measured_unit' | 'offering_name' | 'offering_type' | 'offering_uuid' | 'service_provider_name' | 'service_provider_uuid' | 'total_allocated' | 'total_consumed' | 'usage_percent';
27568
27694
  export type ComponentUsageFieldEnum = 'billing_period' | 'created' | 'customer_name' | 'customer_uuid' | 'date' | 'description' | 'measured_unit' | 'modified_by' | 'name' | 'offering_name' | 'offering_uuid' | 'project_name' | 'project_uuid' | 'recurring' | 'resource_name' | 'resource_uuid' | 'type' | 'usage' | 'uuid';
27569
27695
  export type ComponentUsageOEnum = '-billing_period' | '-usage' | 'billing_period' | 'usage';
27570
27696
  export type ComponentUserUsageFieldEnum = 'backend_id' | 'billing_period' | 'component_type' | 'component_usage' | 'created' | 'customer_name' | 'customer_uuid' | 'date' | 'description' | 'measured_unit' | 'modified' | 'offering_name' | 'offering_uuid' | 'project_name' | 'project_uuid' | 'resource_name' | 'resource_uuid' | 'usage' | 'user' | 'username' | 'uuid';
@@ -27577,7 +27703,7 @@ export type OfferingPermissionOEnum = '-created' | '-email' | '-expiration_time'
27577
27703
  export type OfferingReferralOEnum = '-published' | '-relation_type' | '-resource_type' | 'published' | 'relation_type' | 'resource_type';
27578
27704
  export type OfferingTermsOfServiceOEnum = '-created' | '-modified' | '-version' | 'created' | 'modified' | 'version';
27579
27705
  export type UserChecklistCompletionOEnum = '-is_completed' | '-modified' | 'is_completed' | 'modified';
27580
- export type OfferingUserFieldEnum = 'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_profile_complete' | 'is_restricted' | 'missing_profile_attributes' | 'modified' | 'offering' | 'offering_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_registry_code' | 'user_organization_type' | 'user_personal_title' | 'user_phone_number' | 'user_place_of_birth' | 'user_username' | 'user_uuid' | 'username' | 'uuid';
27706
+ export type OfferingUserFieldEnum = 'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_profile_complete' | 'is_restricted' | 'missing_profile_attributes' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_active_isds' | 'user_address' | 'user_affiliations' | 'user_birth_date' | 'user_civil_number' | 'user_country_of_residence' | 'user_eduperson_assurance' | 'user_email' | 'user_first_name' | 'user_full_name' | 'user_gender' | 'user_identity_source' | 'user_job_title' | 'user_last_name' | 'user_nationalities' | 'user_nationality' | 'user_organization' | 'user_organization_country' | 'user_organization_registry_code' | 'user_organization_type' | 'user_personal_title' | 'user_phone_number' | 'user_place_of_birth' | 'user_username' | 'user_uuid' | 'username' | 'uuid';
27581
27707
  export type OfferingUserOEnum = '-created' | '-modified' | '-username' | 'created' | 'modified' | 'username';
27582
27708
  export type OrderDetailsFieldEnum = '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' | 'error_updated_at' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'order_subtype' | 'output' | 'output_updated_at' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_message' | 'provider_message_attachment' | 'provider_message_url' | 'provider_name' | 'provider_rejection_comment' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'slug' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid';
27583
27709
  export type OrderDetailsOEnum = '-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state';
@@ -27585,8 +27711,8 @@ export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'dra
27585
27711
  export type ProviderOfferingDetailsFieldEnum = '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' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | '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';
27586
27712
  export type ProviderOfferingDetailsOEnum = '-created' | '-name' | '-state' | '-total_cost' | '-total_cost_estimated' | '-total_customers' | '-type' | 'created' | 'name' | 'state' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type';
27587
27713
  export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
27588
- export type ProjectFieldEnum = 'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_grace_period_days' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'effective_end_date' | 'end_date' | 'end_date_requested_by' | 'end_date_updated_at' | 'grace_period_days' | 'image' | 'is_in_grace_period' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
27589
- export type UserFieldEnum = 'active_isds' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'deactivation_reason' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'has_usable_password' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_identity_manager' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'managed_isds' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'permissions' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
27714
+ export type ProjectFieldEnum = 'affiliated_organizations' | 'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_grace_period_days' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'effective_end_date' | 'end_date' | 'end_date_requested_by' | 'end_date_updated_at' | 'grace_period_days' | 'image' | 'is_in_grace_period' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
27715
+ export type UserFieldEnum = 'active_isds' | 'address' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'deactivation_reason' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'has_usable_password' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_identity_manager' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'managed_isds' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'permissions' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
27590
27716
  export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
27591
27717
  export type PublicOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details';
27592
27718
  export type RobotAccountDetailsFieldEnum = 'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fingerprints' | 'keys' | 'modified' | 'offering_plugin_options' | 'project_name' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'resource' | 'resource_name' | 'resource_uuid' | 'responsible_user' | 'state' | 'type' | 'url' | 'user_keys' | 'username' | 'users' | 'uuid';
@@ -27596,7 +27722,7 @@ export type MarketplaceProviderCustomerProjectOEnum = '-created' | '-customer_ab
27596
27722
  export type MarketplaceProviderCustomerFieldEnum = 'abbreviation' | 'billing_price_estimate' | 'email' | 'name' | 'payment_profiles' | 'phone_number' | 'projects' | 'projects_count' | 'slug' | 'users' | 'users_count' | 'uuid';
27597
27723
  export type ProviderOfferingFieldEnum = 'billing_price_estimate' | 'category_title' | 'components' | 'customer_uuid' | 'name' | 'options' | 'plans' | 'resource_options' | 'resources_count' | 'secret_options' | 'slug' | 'state' | 'thumbnail' | 'type' | 'uuid';
27598
27724
  export type ProjectPermissionLogFieldEnum = 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_uuid' | 'expiration_time' | 'project' | 'project_created' | 'project_end_date' | 'project_name' | 'project_uuid' | 'role' | 'role_name' | 'user' | 'user_email' | 'user_full_name' | 'user_native_name' | 'user_username' | 'user_uuid';
27599
- export type MarketplaceServiceProviderUserFieldEnum = 'active_isds' | 'affiliations' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'identity_source' | 'is_active' | 'job_title' | 'last_name' | 'nationalities' | 'nationality' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'projects_count' | 'registration_method' | 'username' | 'uuid';
27725
+ export type MarketplaceServiceProviderUserFieldEnum = 'active_isds' | 'address' | 'affiliations' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'identity_source' | 'is_active' | 'job_title' | 'last_name' | 'nationalities' | 'nationality' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'projects_count' | 'registration_method' | 'username' | 'uuid';
27600
27726
  export type MarketplaceServiceProviderUserOEnum = '-description' | '-email' | '-full_name' | '-is_active' | '-is_staff' | '-is_support' | '-job_title' | '-native_name' | '-organization' | '-phone_number' | '-registration_method' | '-username' | 'description' | 'email' | 'full_name' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'native_name' | 'organization' | 'phone_number' | 'registration_method' | 'username';
27601
27727
  export type AgentServiceStateEnum = 1 | 2 | 3;
27602
27728
  export type SoftwareCatalogOEnum = '-catalog_type' | '-created' | '-modified' | '-name' | '-version' | 'catalog_type' | 'created' | 'modified' | 'name' | 'version';
@@ -27623,7 +27749,7 @@ export type OpenStackHealthMonitorFieldEnum = 'access_url' | 'backend_id' | 'cre
27623
27749
  export type OpenStackInstanceFieldEnum = 'access_url' | 'action' | 'action_details' | 'availability_zone' | 'availability_zone_name' | 'backend_id' | 'connect_directly_to_external_network' | 'cores' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'disk' | 'error_message' | 'error_traceback' | 'external_address' | 'external_ips' | 'flavor_disk' | 'flavor_name' | 'floating_ips' | 'hypervisor_hostname' | 'image_name' | 'internal_ips' | 'is_limit_based' | 'is_usage_based' | 'key_fingerprint' | 'key_name' | 'latitude' | 'longitude' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'min_disk' | 'min_ram' | 'modified' | 'name' | 'ports' | 'project' | 'project_name' | 'project_uuid' | 'ram' | 'rancher_cluster' | 'resource_type' | 'runtime_state' | 'security_groups' | 'server_group' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'ssh_public_key' | 'start_time' | 'state' | 'tenant' | 'tenant_uuid' | 'url' | 'user_data' | 'uuid' | 'volumes';
27624
27750
  export type OpenStackInstanceOEnum = 'start_time' | '-start_time';
27625
27751
  export type OpenStackListenerFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'default_pool' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'load_balancer' | 'load_balancer_name' | 'load_balancer_uuid' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'operating_status' | 'project' | 'project_name' | 'project_uuid' | 'protocol' | 'protocol_port' | 'provisioning_status' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid';
27626
- export type OpenStackLoadBalancerFieldEnum = 'access_url' | 'attached_floating_ip' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'operating_status' | 'project' | 'project_name' | 'project_uuid' | 'provider' | 'provisioning_status' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid' | 'vip_address' | 'vip_port' | 'vip_subnet';
27752
+ export type OpenStackLoadBalancerFieldEnum = 'access_url' | 'attached_floating_ip' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'operating_status' | 'project' | 'project_name' | 'project_uuid' | 'provider' | 'provisioning_status' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid' | 'vip_address' | 'vip_port' | 'vip_security_groups' | 'vip_subnet';
27627
27753
  export type OpenStackNetworkFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_external' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'mtu' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'rbac_policies' | 'resource_type' | 'segmentation_id' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnets' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'type' | 'url' | 'uuid';
27628
27754
  export type OpenStackPoolMemberFieldEnum = 'access_url' | 'address' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'load_balancer_uuid' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'operating_status' | 'pool' | 'pool_name' | 'pool_uuid' | 'project' | 'project_name' | 'project_uuid' | 'protocol_port' | 'provisioning_status' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnet' | 'url' | 'uuid' | 'weight';
27629
27755
  export type OpenStackPoolFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'lb_algorithm' | 'load_balancer' | 'load_balancer_name' | 'load_balancer_uuid' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'operating_status' | 'project' | 'project_name' | 'project_uuid' | 'protocol' | 'provisioning_status' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid';
@@ -29078,6 +29204,271 @@ export type AdminArrowVendorOfferingMappingsVendorChoicesCountResponses = {
29078
29204
  */
29079
29205
  200: unknown;
29080
29206
  };
29207
+ export type AffiliatedOrganizationsListData = {
29208
+ body?: never;
29209
+ path?: never;
29210
+ query?: {
29211
+ /**
29212
+ * Abbreviation
29213
+ */
29214
+ abbreviation?: string;
29215
+ /**
29216
+ * Code
29217
+ */
29218
+ code?: string;
29219
+ /**
29220
+ * Country
29221
+ */
29222
+ country?: string;
29223
+ /**
29224
+ * Name
29225
+ */
29226
+ name?: string;
29227
+ /**
29228
+ * Name (exact)
29229
+ */
29230
+ name_exact?: string;
29231
+ /**
29232
+ * Which field to use when ordering the results.
29233
+ */
29234
+ o?: string;
29235
+ /**
29236
+ * A page number within the paginated result set.
29237
+ */
29238
+ page?: number;
29239
+ /**
29240
+ * Number of results to return per page.
29241
+ */
29242
+ page_size?: number;
29243
+ /**
29244
+ * Search
29245
+ */
29246
+ query?: string;
29247
+ };
29248
+ url: '/api/affiliated-organizations/';
29249
+ };
29250
+ export type AffiliatedOrganizationsListResponses = {
29251
+ 200: Array<AffiliatedOrganization>;
29252
+ };
29253
+ export type AffiliatedOrganizationsListResponse = AffiliatedOrganizationsListResponses[keyof AffiliatedOrganizationsListResponses];
29254
+ export type AffiliatedOrganizationsCountData = {
29255
+ body?: never;
29256
+ path?: never;
29257
+ query?: {
29258
+ /**
29259
+ * Abbreviation
29260
+ */
29261
+ abbreviation?: string;
29262
+ /**
29263
+ * Code
29264
+ */
29265
+ code?: string;
29266
+ /**
29267
+ * Country
29268
+ */
29269
+ country?: string;
29270
+ /**
29271
+ * Name
29272
+ */
29273
+ name?: string;
29274
+ /**
29275
+ * Name (exact)
29276
+ */
29277
+ name_exact?: string;
29278
+ /**
29279
+ * Which field to use when ordering the results.
29280
+ */
29281
+ o?: string;
29282
+ /**
29283
+ * A page number within the paginated result set.
29284
+ */
29285
+ page?: number;
29286
+ /**
29287
+ * Number of results to return per page.
29288
+ */
29289
+ page_size?: number;
29290
+ /**
29291
+ * Search
29292
+ */
29293
+ query?: string;
29294
+ };
29295
+ url: '/api/affiliated-organizations/';
29296
+ };
29297
+ export type AffiliatedOrganizationsCountResponses = {
29298
+ /**
29299
+ * No response body
29300
+ */
29301
+ 200: unknown;
29302
+ };
29303
+ export type AffiliatedOrganizationsCreateData = {
29304
+ body: AffiliatedOrganizationRequest;
29305
+ path?: never;
29306
+ query?: never;
29307
+ url: '/api/affiliated-organizations/';
29308
+ };
29309
+ export type AffiliatedOrganizationsCreateResponses = {
29310
+ 201: AffiliatedOrganization;
29311
+ };
29312
+ export type AffiliatedOrganizationsCreateResponse = AffiliatedOrganizationsCreateResponses[keyof AffiliatedOrganizationsCreateResponses];
29313
+ export type AffiliatedOrganizationsDestroyData = {
29314
+ body?: never;
29315
+ path: {
29316
+ uuid: string;
29317
+ };
29318
+ query?: never;
29319
+ url: '/api/affiliated-organizations/{uuid}/';
29320
+ };
29321
+ export type AffiliatedOrganizationsDestroyResponses = {
29322
+ /**
29323
+ * No response body
29324
+ */
29325
+ 204: void;
29326
+ };
29327
+ export type AffiliatedOrganizationsDestroyResponse = AffiliatedOrganizationsDestroyResponses[keyof AffiliatedOrganizationsDestroyResponses];
29328
+ export type AffiliatedOrganizationsRetrieveData = {
29329
+ body?: never;
29330
+ path: {
29331
+ uuid: string;
29332
+ };
29333
+ query?: never;
29334
+ url: '/api/affiliated-organizations/{uuid}/';
29335
+ };
29336
+ export type AffiliatedOrganizationsRetrieveResponses = {
29337
+ 200: AffiliatedOrganization;
29338
+ };
29339
+ export type AffiliatedOrganizationsRetrieveResponse = AffiliatedOrganizationsRetrieveResponses[keyof AffiliatedOrganizationsRetrieveResponses];
29340
+ export type AffiliatedOrganizationsPartialUpdateData = {
29341
+ body?: PatchedAffiliatedOrganizationRequest;
29342
+ path: {
29343
+ uuid: string;
29344
+ };
29345
+ query?: never;
29346
+ url: '/api/affiliated-organizations/{uuid}/';
29347
+ };
29348
+ export type AffiliatedOrganizationsPartialUpdateResponses = {
29349
+ 200: AffiliatedOrganization;
29350
+ };
29351
+ export type AffiliatedOrganizationsPartialUpdateResponse = AffiliatedOrganizationsPartialUpdateResponses[keyof AffiliatedOrganizationsPartialUpdateResponses];
29352
+ export type AffiliatedOrganizationsUpdateData = {
29353
+ body: AffiliatedOrganizationRequest;
29354
+ path: {
29355
+ uuid: string;
29356
+ };
29357
+ query?: never;
29358
+ url: '/api/affiliated-organizations/{uuid}/';
29359
+ };
29360
+ export type AffiliatedOrganizationsUpdateResponses = {
29361
+ 200: AffiliatedOrganization;
29362
+ };
29363
+ export type AffiliatedOrganizationsUpdateResponse = AffiliatedOrganizationsUpdateResponses[keyof AffiliatedOrganizationsUpdateResponses];
29364
+ export type AffiliatedOrganizationsStatsRetrieveData = {
29365
+ body?: never;
29366
+ path: {
29367
+ uuid: string;
29368
+ };
29369
+ query?: never;
29370
+ url: '/api/affiliated-organizations/{uuid}/stats/';
29371
+ };
29372
+ export type AffiliatedOrganizationsStatsRetrieveResponses = {
29373
+ 200: AffiliatedOrganizationStats;
29374
+ };
29375
+ export type AffiliatedOrganizationsStatsRetrieveResponse = AffiliatedOrganizationsStatsRetrieveResponses[keyof AffiliatedOrganizationsStatsRetrieveResponses];
29376
+ export type AffiliatedOrganizationsReportListData = {
29377
+ body?: never;
29378
+ path?: never;
29379
+ query?: {
29380
+ /**
29381
+ * Abbreviation
29382
+ */
29383
+ abbreviation?: string;
29384
+ /**
29385
+ * Code
29386
+ */
29387
+ code?: string;
29388
+ /**
29389
+ * Country
29390
+ */
29391
+ country?: string;
29392
+ /**
29393
+ * Name
29394
+ */
29395
+ name?: string;
29396
+ /**
29397
+ * Name (exact)
29398
+ */
29399
+ name_exact?: string;
29400
+ /**
29401
+ * Which field to use when ordering the results.
29402
+ */
29403
+ o?: string;
29404
+ /**
29405
+ * A page number within the paginated result set.
29406
+ */
29407
+ page?: number;
29408
+ /**
29409
+ * Number of results to return per page.
29410
+ */
29411
+ page_size?: number;
29412
+ /**
29413
+ * Search
29414
+ */
29415
+ query?: string;
29416
+ };
29417
+ url: '/api/affiliated-organizations/report/';
29418
+ };
29419
+ export type AffiliatedOrganizationsReportListResponses = {
29420
+ 200: Array<AffiliatedOrganizationReportRow>;
29421
+ };
29422
+ export type AffiliatedOrganizationsReportListResponse = AffiliatedOrganizationsReportListResponses[keyof AffiliatedOrganizationsReportListResponses];
29423
+ export type AffiliatedOrganizationsReportCountData = {
29424
+ body?: never;
29425
+ path?: never;
29426
+ query?: {
29427
+ /**
29428
+ * Abbreviation
29429
+ */
29430
+ abbreviation?: string;
29431
+ /**
29432
+ * Code
29433
+ */
29434
+ code?: string;
29435
+ /**
29436
+ * Country
29437
+ */
29438
+ country?: string;
29439
+ /**
29440
+ * Name
29441
+ */
29442
+ name?: string;
29443
+ /**
29444
+ * Name (exact)
29445
+ */
29446
+ name_exact?: string;
29447
+ /**
29448
+ * Which field to use when ordering the results.
29449
+ */
29450
+ o?: string;
29451
+ /**
29452
+ * A page number within the paginated result set.
29453
+ */
29454
+ page?: number;
29455
+ /**
29456
+ * Number of results to return per page.
29457
+ */
29458
+ page_size?: number;
29459
+ /**
29460
+ * Search
29461
+ */
29462
+ query?: string;
29463
+ };
29464
+ url: '/api/affiliated-organizations/report/';
29465
+ };
29466
+ export type AffiliatedOrganizationsReportCountResponses = {
29467
+ /**
29468
+ * No response body
29469
+ */
29470
+ 200: unknown;
29471
+ };
29081
29472
  export type AssignmentBatchesListData = {
29082
29473
  body?: never;
29083
29474
  path?: never;
@@ -41784,6 +42175,73 @@ export type MarketplaceCategoryHelpArticlesUpdateResponses = {
41784
42175
  200: CategoryHelpArticles;
41785
42176
  };
41786
42177
  export type MarketplaceCategoryHelpArticlesUpdateResponse = MarketplaceCategoryHelpArticlesUpdateResponses[keyof MarketplaceCategoryHelpArticlesUpdateResponses];
42178
+ export type MarketplaceComponentUsageMonthlyListData = {
42179
+ body?: never;
42180
+ path?: never;
42181
+ query?: {
42182
+ billing_period?: string;
42183
+ billing_type?: string;
42184
+ component_type?: string;
42185
+ customer_uuid?: string;
42186
+ end?: string;
42187
+ field?: Array<ComponentUsageMonthlyFieldEnum>;
42188
+ /**
42189
+ * Which field to use when ordering the results.
42190
+ */
42191
+ o?: string;
42192
+ offering_type?: string;
42193
+ offering_uuid?: string;
42194
+ /**
42195
+ * A page number within the paginated result set.
42196
+ */
42197
+ page?: number;
42198
+ /**
42199
+ * Number of results to return per page.
42200
+ */
42201
+ page_size?: number;
42202
+ project_uuid?: string;
42203
+ start?: string;
42204
+ };
42205
+ url: '/api/marketplace-component-usage-monthly/';
42206
+ };
42207
+ export type MarketplaceComponentUsageMonthlyListResponses = {
42208
+ 200: Array<ComponentUsageMonthly>;
42209
+ };
42210
+ export type MarketplaceComponentUsageMonthlyListResponse = MarketplaceComponentUsageMonthlyListResponses[keyof MarketplaceComponentUsageMonthlyListResponses];
42211
+ export type MarketplaceComponentUsageMonthlyCountData = {
42212
+ body?: never;
42213
+ path?: never;
42214
+ query?: {
42215
+ billing_period?: string;
42216
+ billing_type?: string;
42217
+ component_type?: string;
42218
+ customer_uuid?: string;
42219
+ end?: string;
42220
+ /**
42221
+ * Which field to use when ordering the results.
42222
+ */
42223
+ o?: string;
42224
+ offering_type?: string;
42225
+ offering_uuid?: string;
42226
+ /**
42227
+ * A page number within the paginated result set.
42228
+ */
42229
+ page?: number;
42230
+ /**
42231
+ * Number of results to return per page.
42232
+ */
42233
+ page_size?: number;
42234
+ project_uuid?: string;
42235
+ start?: string;
42236
+ };
42237
+ url: '/api/marketplace-component-usage-monthly/';
42238
+ };
42239
+ export type MarketplaceComponentUsageMonthlyCountResponses = {
42240
+ /**
42241
+ * No response body
42242
+ */
42243
+ 200: unknown;
42244
+ };
41787
42245
  export type MarketplaceComponentUsagesListData = {
41788
42246
  body?: never;
41789
42247
  path?: never;
@@ -52745,6 +53203,14 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
52745
53203
  service_provider_uuid: string;
52746
53204
  };
52747
53205
  query: {
53206
+ /**
53207
+ * Affiliated organization name
53208
+ */
53209
+ affiliated_organization_name?: string;
53210
+ /**
53211
+ * Affiliated organization UUID
53212
+ */
53213
+ affiliated_organization_uuid?: Array<string>;
52748
53214
  backend_id?: string;
52749
53215
  /**
52750
53216
  * Return a list of projects where current user is admin.
@@ -52787,6 +53253,10 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
52787
53253
  */
52788
53254
  description?: string;
52789
53255
  field?: Array<MarketplaceProviderCustomerProjectFieldEnum>;
53256
+ /**
53257
+ * Filter projects that have at least one affiliated organization.
53258
+ */
53259
+ has_affiliated_organization?: boolean;
52790
53260
  /**
52791
53261
  * Is removed
52792
53262
  */
@@ -53283,6 +53753,14 @@ export type MarketplaceServiceProvidersProjectsListData = {
53283
53753
  service_provider_uuid: string;
53284
53754
  };
53285
53755
  query?: {
53756
+ /**
53757
+ * Affiliated organization name
53758
+ */
53759
+ affiliated_organization_name?: string;
53760
+ /**
53761
+ * Affiliated organization UUID
53762
+ */
53763
+ affiliated_organization_uuid?: Array<string>;
53286
53764
  backend_id?: string;
53287
53765
  /**
53288
53766
  * Return a list of projects where current user is admin.
@@ -53325,6 +53803,10 @@ export type MarketplaceServiceProvidersProjectsListData = {
53325
53803
  */
53326
53804
  description?: string;
53327
53805
  field?: Array<ProjectFieldEnum>;
53806
+ /**
53807
+ * Filter projects that have at least one affiliated organization.
53808
+ */
53809
+ has_affiliated_organization?: boolean;
53328
53810
  /**
53329
53811
  * Is removed
53330
53812
  */
@@ -55584,10 +56066,6 @@ export type MarketplaceStatsCountActiveResourcesGroupedByOfferingListData = {
55584
56066
  body?: never;
55585
56067
  path?: never;
55586
56068
  query?: {
55587
- /**
55588
- * Limit number of results (e.g. top N offerings). No limit by default.
55589
- */
55590
- limit?: number;
55591
56069
  /**
55592
56070
  * A page number within the paginated result set.
55593
56071
  */
@@ -55607,10 +56085,6 @@ export type MarketplaceStatsCountActiveResourcesGroupedByOfferingCountData = {
55607
56085
  body?: never;
55608
56086
  path?: never;
55609
56087
  query?: {
55610
- /**
55611
- * Limit number of results (e.g. top N offerings). No limit by default.
55612
- */
55613
- limit?: number;
55614
56088
  /**
55615
56089
  * A page number within the paginated result set.
55616
56090
  */
@@ -60545,6 +61019,14 @@ export type OpenportalUnmanagedProjectsListData = {
60545
61019
  * Filter by whether accounting is running.
60546
61020
  */
60547
61021
  accounting_is_running?: boolean;
61022
+ /**
61023
+ * Affiliated organization name
61024
+ */
61025
+ affiliated_organization_name?: string;
61026
+ /**
61027
+ * Affiliated organization UUID
61028
+ */
61029
+ affiliated_organization_uuid?: Array<string>;
60548
61030
  backend_id?: string;
60549
61031
  /**
60550
61032
  * Return a list of projects where current user is admin.
@@ -60587,6 +61069,10 @@ export type OpenportalUnmanagedProjectsListData = {
60587
61069
  */
60588
61070
  description?: string;
60589
61071
  field?: Array<ProjectFieldEnum>;
61072
+ /**
61073
+ * Filter projects that have at least one affiliated organization.
61074
+ */
61075
+ has_affiliated_organization?: boolean;
60590
61076
  /**
60591
61077
  * Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
60592
61078
  */
@@ -60656,6 +61142,14 @@ export type OpenportalUnmanagedProjectsCountData = {
60656
61142
  * Filter by whether accounting is running.
60657
61143
  */
60658
61144
  accounting_is_running?: boolean;
61145
+ /**
61146
+ * Affiliated organization name
61147
+ */
61148
+ affiliated_organization_name?: string;
61149
+ /**
61150
+ * Affiliated organization UUID
61151
+ */
61152
+ affiliated_organization_uuid?: Array<string>;
60659
61153
  backend_id?: string;
60660
61154
  /**
60661
61155
  * Return a list of projects where current user is admin.
@@ -60697,6 +61191,10 @@ export type OpenportalUnmanagedProjectsCountData = {
60697
61191
  * Description
60698
61192
  */
60699
61193
  description?: string;
61194
+ /**
61195
+ * Filter projects that have at least one affiliated organization.
61196
+ */
61197
+ has_affiliated_organization?: boolean;
60700
61198
  /**
60701
61199
  * Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
60702
61200
  */
@@ -61028,6 +61526,20 @@ export type OpenportalUnmanagedProjectsSubmitAnswersResponses = {
61028
61526
  200: AnswerSubmitResponse;
61029
61527
  };
61030
61528
  export type OpenportalUnmanagedProjectsSubmitAnswersResponse = OpenportalUnmanagedProjectsSubmitAnswersResponses[keyof OpenportalUnmanagedProjectsSubmitAnswersResponses];
61529
+ export type OpenportalUnmanagedProjectsUpdateAffiliatedOrganizationsData = {
61530
+ body?: AffiliatedOrganizationsUpdateRequest;
61531
+ path: {
61532
+ uuid: string;
61533
+ };
61534
+ query?: never;
61535
+ url: '/api/openportal-unmanaged-projects/{uuid}/update_affiliated_organizations/';
61536
+ };
61537
+ export type OpenportalUnmanagedProjectsUpdateAffiliatedOrganizationsResponses = {
61538
+ /**
61539
+ * No response body
61540
+ */
61541
+ 200: unknown;
61542
+ };
61031
61543
  export type OpenportalUnmanagedProjectsUpdateUserData = {
61032
61544
  body: UserRoleUpdateRequest;
61033
61545
  path: {
@@ -63461,6 +63973,18 @@ export type OpenstackLoadbalancersPullResponses = {
63461
63973
  */
63462
63974
  202: unknown;
63463
63975
  };
63976
+ export type OpenstackLoadbalancersSetSecurityGroupsData = {
63977
+ body: LoadBalancerSetSecurityGroupsRequest;
63978
+ path: {
63979
+ uuid: string;
63980
+ };
63981
+ query?: never;
63982
+ url: '/api/openstack-loadbalancers/{uuid}/set_security_groups/';
63983
+ };
63984
+ export type OpenstackLoadbalancersSetSecurityGroupsResponses = {
63985
+ 202: LoadBalancerAsyncOperationResponse;
63986
+ };
63987
+ export type OpenstackLoadbalancersSetSecurityGroupsResponse = OpenstackLoadbalancersSetSecurityGroupsResponses[keyof OpenstackLoadbalancersSetSecurityGroupsResponses];
63464
63988
  export type OpenstackLoadbalancersUnlinkData = {
63465
63989
  body?: never;
63466
63990
  path: {
@@ -69139,6 +69663,14 @@ export type ProjectsListData = {
69139
69663
  * Filter by whether accounting is running.
69140
69664
  */
69141
69665
  accounting_is_running?: boolean;
69666
+ /**
69667
+ * Affiliated organization name
69668
+ */
69669
+ affiliated_organization_name?: string;
69670
+ /**
69671
+ * Affiliated organization UUID
69672
+ */
69673
+ affiliated_organization_uuid?: Array<string>;
69142
69674
  backend_id?: string;
69143
69675
  /**
69144
69676
  * Return a list of projects where current user is admin.
@@ -69181,6 +69713,10 @@ export type ProjectsListData = {
69181
69713
  */
69182
69714
  description?: string;
69183
69715
  field?: Array<ProjectFieldEnum>;
69716
+ /**
69717
+ * Filter projects that have at least one affiliated organization.
69718
+ */
69719
+ has_affiliated_organization?: boolean;
69184
69720
  /**
69185
69721
  * Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
69186
69722
  */
@@ -69250,6 +69786,14 @@ export type ProjectsCountData = {
69250
69786
  * Filter by whether accounting is running.
69251
69787
  */
69252
69788
  accounting_is_running?: boolean;
69789
+ /**
69790
+ * Affiliated organization name
69791
+ */
69792
+ affiliated_organization_name?: string;
69793
+ /**
69794
+ * Affiliated organization UUID
69795
+ */
69796
+ affiliated_organization_uuid?: Array<string>;
69253
69797
  backend_id?: string;
69254
69798
  /**
69255
69799
  * Return a list of projects where current user is admin.
@@ -69291,6 +69835,10 @@ export type ProjectsCountData = {
69291
69835
  * Description
69292
69836
  */
69293
69837
  description?: string;
69838
+ /**
69839
+ * Filter projects that have at least one affiliated organization.
69840
+ */
69841
+ has_affiliated_organization?: boolean;
69294
69842
  /**
69295
69843
  * Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
69296
69844
  */
@@ -69712,6 +70260,20 @@ export type ProjectsSyncUserRolesResponses = {
69712
70260
  */
69713
70261
  200: unknown;
69714
70262
  };
70263
+ export type ProjectsUpdateAffiliatedOrganizationsData = {
70264
+ body?: AffiliatedOrganizationsUpdateRequest;
70265
+ path: {
70266
+ uuid: string;
70267
+ };
70268
+ query?: never;
70269
+ url: '/api/projects/{uuid}/update_affiliated_organizations/';
70270
+ };
70271
+ export type ProjectsUpdateAffiliatedOrganizationsResponses = {
70272
+ /**
70273
+ * No response body
70274
+ */
70275
+ 200: unknown;
70276
+ };
69715
70277
  export type ProjectsUpdateUserData = {
69716
70278
  body: UserRoleUpdateRequest;
69717
70279
  path: {