waldur-js-client 8.0.8-dev.1 → 8.0.8-dev.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/sdk.gen.d.ts +67 -1
- package/dist/sdk.gen.js +470 -0
- package/dist/types.gen.d.ts +779 -85
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -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;
|
|
@@ -2295,11 +2345,11 @@ export type BaseProviderPlan = {
|
|
|
2295
2345
|
[key: string]: string;
|
|
2296
2346
|
};
|
|
2297
2347
|
readonly quotas?: {
|
|
2298
|
-
[key: string]:
|
|
2348
|
+
[key: string]: number;
|
|
2299
2349
|
};
|
|
2300
2350
|
readonly resources_count?: number;
|
|
2301
2351
|
readonly plan_type?: string;
|
|
2302
|
-
readonly minimal_price?:
|
|
2352
|
+
readonly minimal_price?: string;
|
|
2303
2353
|
};
|
|
2304
2354
|
export type BaseProviderPlanRequest = {
|
|
2305
2355
|
name: string;
|
|
@@ -2346,11 +2396,11 @@ export type BasePublicPlan = {
|
|
|
2346
2396
|
[key: string]: string;
|
|
2347
2397
|
};
|
|
2348
2398
|
readonly quotas?: {
|
|
2349
|
-
[key: string]:
|
|
2399
|
+
[key: string]: number;
|
|
2350
2400
|
};
|
|
2351
2401
|
readonly resources_count?: number;
|
|
2352
2402
|
readonly plan_type?: string;
|
|
2353
|
-
readonly minimal_price?:
|
|
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', '
|
|
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:
|
|
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>;
|
|
@@ -7429,6 +7514,62 @@ export type GroupInvitationUpdateRequest = {
|
|
|
7429
7514
|
export type GrowthPeriodEnum = 'weekly' | 'monthly';
|
|
7430
7515
|
export type GuestOsEnum = 'DOS' | 'WIN_31' | 'WIN_95' | 'WIN_98' | 'WIN_ME' | 'WIN_NT' | 'WIN_2000_PRO' | 'WIN_2000_SERV' | 'WIN_2000_ADV_SERV' | 'WIN_XP_HOME' | 'WIN_XP_PRO' | 'WIN_XP_PRO_64' | 'WIN_NET_WEB' | 'WIN_NET_STANDARD' | 'WIN_NET_ENTERPRISE' | 'WIN_NET_DATACENTER' | 'WIN_NET_BUSINESS' | 'WIN_NET_STANDARD_64' | 'WIN_NET_ENTERPRISE_64' | 'WIN_LONGHORN' | 'WIN_LONGHORN_64' | 'WIN_NET_DATACENTER_64' | 'WIN_VISTA' | 'WIN_VISTA_64' | 'WINDOWS_7' | 'WINDOWS_7_64' | 'WINDOWS_7_SERVER_64' | 'WINDOWS_8' | 'WINDOWS_8_64' | 'WINDOWS_8_SERVER_64' | 'WINDOWS_9' | 'WINDOWS_9_64' | 'WINDOWS_9_SERVER_64' | 'WINDOWS_HYPERV' | 'FREEBSD' | 'FREEBSD_64' | 'REDHAT' | 'RHEL_2' | 'RHEL_3' | 'RHEL_3_64' | 'RHEL_4' | 'RHEL_4_64' | 'RHEL_5' | 'RHEL_5_64' | 'RHEL_6' | 'RHEL_6_64' | 'RHEL_7' | 'RHEL_7_64' | 'CENTOS' | 'CENTOS_64' | 'CENTOS_6' | 'CENTOS_6_64' | 'CENTOS_7' | 'CENTOS_7_64' | 'ORACLE_LINUX' | 'ORACLE_LINUX_64' | 'ORACLE_LINUX_6' | 'ORACLE_LINUX_6_64' | 'ORACLE_LINUX_7' | 'ORACLE_LINUX_7_64' | 'SUSE' | 'SUSE_64' | 'SLES' | 'SLES_64' | 'SLES_10' | 'SLES_10_64' | 'SLES_11' | 'SLES_11_64' | 'SLES_12' | 'SLES_12_64' | 'NLD_9' | 'OES' | 'SJDS' | 'MANDRAKE' | 'MANDRIVA' | 'MANDRIVA_64' | 'TURBO_LINUX' | 'TURBO_LINUX_64' | 'UBUNTU' | 'UBUNTU_64' | 'DEBIAN_4' | 'DEBIAN_4_64' | 'DEBIAN_5' | 'DEBIAN_5_64' | 'DEBIAN_6' | 'DEBIAN_6_64' | 'DEBIAN_7' | 'DEBIAN_7_64' | 'DEBIAN_8' | 'DEBIAN_8_64' | 'DEBIAN_9' | 'DEBIAN_9_64' | 'DEBIAN_10' | 'DEBIAN_10_64' | 'ASIANUX_3' | 'ASIANUX_3_64' | 'ASIANUX_4' | 'ASIANUX_4_64' | 'ASIANUX_5_64' | 'ASIANUX_7_64' | 'OPENSUSE' | 'OPENSUSE_64' | 'FEDORA' | 'FEDORA_64' | 'COREOS_64' | 'VMWARE_PHOTON_64' | 'OTHER_24X_LINUX' | 'OTHER_24X_LINUX_64' | 'OTHER_26X_LINUX' | 'OTHER_26X_LINUX_64' | 'OTHER_3X_LINUX' | 'OTHER_3X_LINUX_64' | 'OTHER_LINUX' | 'GENERIC_LINUX' | 'OTHER_LINUX_64' | 'SOLARIS_6' | 'SOLARIS_7' | 'SOLARIS_8' | 'SOLARIS_9' | 'SOLARIS_10' | 'SOLARIS_10_64' | 'SOLARIS_11_64' | 'OS2' | 'ECOMSTATION' | 'ECOMSTATION_2' | 'NETWARE_4' | 'NETWARE_5' | 'NETWARE_6' | 'OPENSERVER_5' | 'OPENSERVER_6' | 'UNIXWARE_7' | 'DARWIN' | 'DARWIN_64' | 'DARWIN_10' | 'DARWIN_10_64' | 'DARWIN_11' | 'DARWIN_11_64' | 'DARWIN_12_64' | 'DARWIN_13_64' | 'DARWIN_14_64' | 'DARWIN_15_64' | 'DARWIN_16_64' | 'VMKERNEL' | 'VMKERNEL_5' | 'VMKERNEL_6' | 'VMKERNEL_65' | 'OTHER' | 'OTHER_64';
|
|
7431
7516
|
export type GuestPowerStateEnum = 'RUNNING' | 'SHUTTING_DOWN' | 'RESETTING' | 'STANDBY' | 'NOT_RUNNING' | 'UNAVAILABLE';
|
|
7517
|
+
export type Hypervisor = {
|
|
7518
|
+
readonly url: string;
|
|
7519
|
+
readonly uuid: string;
|
|
7520
|
+
name: string;
|
|
7521
|
+
settings: string;
|
|
7522
|
+
backend_id: string;
|
|
7523
|
+
/**
|
|
7524
|
+
* Hypervisor type, e.g. KVM, QEMU, VMware
|
|
7525
|
+
*/
|
|
7526
|
+
hypervisor_type?: string;
|
|
7527
|
+
/**
|
|
7528
|
+
* Total vCPUs
|
|
7529
|
+
*/
|
|
7530
|
+
vcpus?: number;
|
|
7531
|
+
/**
|
|
7532
|
+
* Used vCPUs
|
|
7533
|
+
*/
|
|
7534
|
+
vcpus_used?: number;
|
|
7535
|
+
/**
|
|
7536
|
+
* Total RAM in MiB
|
|
7537
|
+
*/
|
|
7538
|
+
memory_mb?: number;
|
|
7539
|
+
/**
|
|
7540
|
+
* Used RAM in MiB
|
|
7541
|
+
*/
|
|
7542
|
+
memory_mb_used?: number;
|
|
7543
|
+
/**
|
|
7544
|
+
* Total disk in GiB
|
|
7545
|
+
*/
|
|
7546
|
+
local_gb?: number;
|
|
7547
|
+
/**
|
|
7548
|
+
* Used disk in GiB
|
|
7549
|
+
*/
|
|
7550
|
+
local_gb_used?: number;
|
|
7551
|
+
/**
|
|
7552
|
+
* Number of running VMs
|
|
7553
|
+
*/
|
|
7554
|
+
running_vms?: number;
|
|
7555
|
+
/**
|
|
7556
|
+
* Hypervisor state, e.g. up or down
|
|
7557
|
+
*/
|
|
7558
|
+
state?: string;
|
|
7559
|
+
/**
|
|
7560
|
+
* Hypervisor status, e.g. enabled or disabled
|
|
7561
|
+
*/
|
|
7562
|
+
status?: string;
|
|
7563
|
+
};
|
|
7564
|
+
export type HypervisorSummary = {
|
|
7565
|
+
total_vcpus: number;
|
|
7566
|
+
used_vcpus: number;
|
|
7567
|
+
total_memory_mb: number;
|
|
7568
|
+
used_memory_mb: number;
|
|
7569
|
+
total_local_gb: number;
|
|
7570
|
+
used_local_gb: number;
|
|
7571
|
+
total_running_vms: number;
|
|
7572
|
+
};
|
|
7432
7573
|
export type IpMapping = {
|
|
7433
7574
|
/**
|
|
7434
7575
|
* Floating IP
|
|
@@ -7493,6 +7634,7 @@ export type IdentityBridgeRequestRequest = {
|
|
|
7493
7634
|
personal_title?: string;
|
|
7494
7635
|
birth_date?: string | null;
|
|
7495
7636
|
place_of_birth?: string;
|
|
7637
|
+
address?: string;
|
|
7496
7638
|
country_of_residence?: string;
|
|
7497
7639
|
nationality?: string;
|
|
7498
7640
|
nationalities?: Array<string>;
|
|
@@ -8553,6 +8695,7 @@ export type KeycloakUserGroupMembershipState = 'pending' | 'active';
|
|
|
8553
8695
|
export type KeywordSearchModeEnum = 'expertise_only' | 'full_text';
|
|
8554
8696
|
export type KindEnum = 'default' | 'course' | 'public';
|
|
8555
8697
|
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';
|
|
8698
|
+
export type LbAlgorithmEnum = 'ROUND_ROBIN' | 'LEAST_CONNECTIONS' | 'SOURCE_IP' | 'SOURCE_IP_PORT';
|
|
8556
8699
|
export type LexisLink = {
|
|
8557
8700
|
readonly url: string;
|
|
8558
8701
|
readonly uuid: string;
|
|
@@ -8627,6 +8770,9 @@ export type LoadBalancerAttachFloatingIpRequest = {
|
|
|
8627
8770
|
floating_ip: string;
|
|
8628
8771
|
};
|
|
8629
8772
|
export type LoadBalancerProtocolEnum = 'TCP' | 'UDP';
|
|
8773
|
+
export type LoadBalancerSetSecurityGroupsRequest = {
|
|
8774
|
+
security_groups: Array<string>;
|
|
8775
|
+
};
|
|
8630
8776
|
export type LockStats = {
|
|
8631
8777
|
/**
|
|
8632
8778
|
* Total number of locks currently held
|
|
@@ -9102,6 +9248,7 @@ export type MarketplaceServiceProviderUser = {
|
|
|
9102
9248
|
*/
|
|
9103
9249
|
personal_title?: string;
|
|
9104
9250
|
place_of_birth?: string;
|
|
9251
|
+
address?: string;
|
|
9105
9252
|
country_of_residence?: string;
|
|
9106
9253
|
/**
|
|
9107
9254
|
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
@@ -10445,6 +10592,7 @@ export type NestedParentSoftware = {
|
|
|
10445
10592
|
readonly uuid: string;
|
|
10446
10593
|
name: string;
|
|
10447
10594
|
readonly url: string;
|
|
10595
|
+
readonly versions: Array<string>;
|
|
10448
10596
|
};
|
|
10449
10597
|
export type NestedParentSoftwareRequest = {
|
|
10450
10598
|
name: string;
|
|
@@ -12223,6 +12371,7 @@ export type OfferingUser = {
|
|
|
12223
12371
|
*/
|
|
12224
12372
|
readonly user_personal_title?: string;
|
|
12225
12373
|
readonly user_place_of_birth?: string;
|
|
12374
|
+
readonly user_address?: string;
|
|
12226
12375
|
readonly user_country_of_residence?: string;
|
|
12227
12376
|
/**
|
|
12228
12377
|
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
@@ -12310,6 +12459,7 @@ export type OfferingUserAttributeConfig = {
|
|
|
12310
12459
|
expose_gender?: boolean;
|
|
12311
12460
|
expose_personal_title?: boolean;
|
|
12312
12461
|
expose_place_of_birth?: boolean;
|
|
12462
|
+
expose_address?: boolean;
|
|
12313
12463
|
expose_country_of_residence?: boolean;
|
|
12314
12464
|
expose_nationality?: boolean;
|
|
12315
12465
|
expose_nationalities?: boolean;
|
|
@@ -12342,6 +12492,7 @@ export type OfferingUserAttributeConfigRequest = {
|
|
|
12342
12492
|
expose_gender?: boolean;
|
|
12343
12493
|
expose_personal_title?: boolean;
|
|
12344
12494
|
expose_place_of_birth?: boolean;
|
|
12495
|
+
expose_address?: boolean;
|
|
12345
12496
|
expose_country_of_residence?: boolean;
|
|
12346
12497
|
expose_nationality?: boolean;
|
|
12347
12498
|
expose_nationalities?: boolean;
|
|
@@ -13472,6 +13623,12 @@ export type OpenStackLoadBalancer = {
|
|
|
13472
13623
|
readonly provider?: string;
|
|
13473
13624
|
readonly provisioning_status?: string;
|
|
13474
13625
|
readonly operating_status?: string;
|
|
13626
|
+
/**
|
|
13627
|
+
* Security groups assigned to the VIP port.
|
|
13628
|
+
*/
|
|
13629
|
+
readonly vip_security_groups?: Array<{
|
|
13630
|
+
[key: string]: unknown;
|
|
13631
|
+
}>;
|
|
13475
13632
|
readonly marketplace_offering_uuid?: string | null;
|
|
13476
13633
|
readonly marketplace_offering_name?: string | null;
|
|
13477
13634
|
readonly marketplace_offering_type?: string | null;
|
|
@@ -15181,6 +15338,19 @@ export type PatchedAdminAnnouncementRequest = {
|
|
|
15181
15338
|
active_to?: string;
|
|
15182
15339
|
type?: AdminAnnouncementTypeEnum;
|
|
15183
15340
|
};
|
|
15341
|
+
export type PatchedAffiliatedOrganizationRequest = {
|
|
15342
|
+
name?: string;
|
|
15343
|
+
/**
|
|
15344
|
+
* Unique short identifier, e.g. CERN, EMBL.
|
|
15345
|
+
*/
|
|
15346
|
+
code?: string;
|
|
15347
|
+
abbreviation?: string;
|
|
15348
|
+
description?: string;
|
|
15349
|
+
email?: string;
|
|
15350
|
+
homepage?: string;
|
|
15351
|
+
country?: string;
|
|
15352
|
+
address?: string;
|
|
15353
|
+
};
|
|
15184
15354
|
export type PatchedAllocationRequest = {
|
|
15185
15355
|
name?: string;
|
|
15186
15356
|
description?: string;
|
|
@@ -16067,6 +16237,7 @@ export type PatchedOfferingUserAttributeConfigRequest = {
|
|
|
16067
16237
|
expose_gender?: boolean;
|
|
16068
16238
|
expose_personal_title?: boolean;
|
|
16069
16239
|
expose_place_of_birth?: boolean;
|
|
16240
|
+
expose_address?: boolean;
|
|
16070
16241
|
expose_country_of_residence?: boolean;
|
|
16071
16242
|
expose_nationality?: boolean;
|
|
16072
16243
|
expose_nationalities?: boolean;
|
|
@@ -17117,6 +17288,7 @@ export type PatchedUserRequest = {
|
|
|
17117
17288
|
*/
|
|
17118
17289
|
personal_title?: string;
|
|
17119
17290
|
place_of_birth?: string;
|
|
17291
|
+
address?: string;
|
|
17120
17292
|
country_of_residence?: string;
|
|
17121
17293
|
/**
|
|
17122
17294
|
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
@@ -17635,6 +17807,7 @@ export type Project = {
|
|
|
17635
17807
|
* List of allowed identity sources (identity providers).
|
|
17636
17808
|
*/
|
|
17637
17809
|
user_identity_sources?: unknown;
|
|
17810
|
+
readonly affiliated_organizations?: Array<AffiliatedOrganization>;
|
|
17638
17811
|
readonly project_credit?: number | null;
|
|
17639
17812
|
readonly marketplace_resource_count?: {
|
|
17640
17813
|
[key: string]: number;
|
|
@@ -17864,8 +18037,8 @@ export type ProjectEstimatedCostPolicy = {
|
|
|
17864
18037
|
limit_cost: number;
|
|
17865
18038
|
period?: PolicyPeriodEnum;
|
|
17866
18039
|
readonly period_name: string;
|
|
17867
|
-
readonly project_credit:
|
|
17868
|
-
readonly customer_credit:
|
|
18040
|
+
readonly project_credit: string | null;
|
|
18041
|
+
readonly customer_credit: string | null;
|
|
17869
18042
|
billing_price_estimate: NestedPriceEstimate;
|
|
17870
18043
|
};
|
|
17871
18044
|
export type ProjectEstimatedCostPolicyRequest = {
|
|
@@ -18817,11 +18990,11 @@ export type ProviderPlanDetails = {
|
|
|
18817
18990
|
[key: string]: string;
|
|
18818
18991
|
};
|
|
18819
18992
|
readonly quotas: {
|
|
18820
|
-
[key: string]:
|
|
18993
|
+
[key: string]: number;
|
|
18821
18994
|
};
|
|
18822
18995
|
readonly resources_count: number;
|
|
18823
18996
|
readonly plan_type: string;
|
|
18824
|
-
readonly minimal_price:
|
|
18997
|
+
readonly minimal_price: string;
|
|
18825
18998
|
};
|
|
18826
18999
|
export type ProviderPlanDetailsRequest = {
|
|
18827
19000
|
name: string;
|
|
@@ -21065,54 +21238,18 @@ export type ResourceLimitPeriod = {
|
|
|
21065
21238
|
total?: string;
|
|
21066
21239
|
};
|
|
21067
21240
|
export type ResourceMissingUsage = {
|
|
21068
|
-
|
|
21069
|
-
* UUID of the resource
|
|
21070
|
-
*/
|
|
21071
|
-
uuid: string;
|
|
21072
|
-
/**
|
|
21073
|
-
* Name of the resource
|
|
21074
|
-
*/
|
|
21241
|
+
readonly uuid: string;
|
|
21075
21242
|
name: string;
|
|
21076
|
-
|
|
21077
|
-
|
|
21078
|
-
|
|
21079
|
-
|
|
21080
|
-
|
|
21081
|
-
|
|
21082
|
-
|
|
21083
|
-
|
|
21084
|
-
|
|
21085
|
-
|
|
21086
|
-
*/
|
|
21087
|
-
offering_name: string;
|
|
21088
|
-
/**
|
|
21089
|
-
* UUID of the offering
|
|
21090
|
-
*/
|
|
21091
|
-
offering_uuid: string;
|
|
21092
|
-
/**
|
|
21093
|
-
* Name of the service provider
|
|
21094
|
-
*/
|
|
21095
|
-
provider_name: string;
|
|
21096
|
-
/**
|
|
21097
|
-
* UUID of the service provider
|
|
21098
|
-
*/
|
|
21099
|
-
provider_uuid: string;
|
|
21100
|
-
/**
|
|
21101
|
-
* Name of the customer organization
|
|
21102
|
-
*/
|
|
21103
|
-
customer_name: string;
|
|
21104
|
-
/**
|
|
21105
|
-
* UUID of the customer organization
|
|
21106
|
-
*/
|
|
21107
|
-
customer_uuid: string;
|
|
21108
|
-
/**
|
|
21109
|
-
* Name of the project
|
|
21110
|
-
*/
|
|
21111
|
-
project_name: string;
|
|
21112
|
-
/**
|
|
21113
|
-
* UUID of the project
|
|
21114
|
-
*/
|
|
21115
|
-
project_uuid: string;
|
|
21243
|
+
readonly state: string;
|
|
21244
|
+
readonly created: string;
|
|
21245
|
+
readonly offering_name: string;
|
|
21246
|
+
readonly offering_uuid: string;
|
|
21247
|
+
readonly provider_name: string;
|
|
21248
|
+
readonly provider_uuid: string;
|
|
21249
|
+
readonly customer_name: string;
|
|
21250
|
+
readonly customer_uuid: string;
|
|
21251
|
+
readonly project_name: string;
|
|
21252
|
+
readonly project_uuid: string;
|
|
21116
21253
|
/**
|
|
21117
21254
|
* Date of the last usage report
|
|
21118
21255
|
*/
|
|
@@ -21120,7 +21257,7 @@ export type ResourceMissingUsage = {
|
|
|
21120
21257
|
/**
|
|
21121
21258
|
* Number of days since last usage report
|
|
21122
21259
|
*/
|
|
21123
|
-
days_since_last_report: number | null;
|
|
21260
|
+
readonly days_since_last_report: number | null;
|
|
21124
21261
|
};
|
|
21125
21262
|
export type ResourceOffering = {
|
|
21126
21263
|
name: string;
|
|
@@ -24482,6 +24619,7 @@ export type User = {
|
|
|
24482
24619
|
*/
|
|
24483
24620
|
personal_title?: string;
|
|
24484
24621
|
place_of_birth?: string;
|
|
24622
|
+
address?: string;
|
|
24485
24623
|
country_of_residence?: string;
|
|
24486
24624
|
/**
|
|
24487
24625
|
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
@@ -24883,6 +25021,7 @@ export type UserRequest = {
|
|
|
24883
25021
|
*/
|
|
24884
25022
|
personal_title?: string;
|
|
24885
25023
|
place_of_birth?: string;
|
|
25024
|
+
address?: string;
|
|
24886
25025
|
country_of_residence?: string;
|
|
24887
25026
|
/**
|
|
24888
25027
|
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
@@ -26587,6 +26726,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
26587
26726
|
CURRENCY_NAME?: string;
|
|
26588
26727
|
THUMBNAIL_SIZE?: string;
|
|
26589
26728
|
ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
|
|
26729
|
+
SHOW_OFFERING_COVER_IMAGE?: boolean;
|
|
26590
26730
|
ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
|
|
26591
26731
|
RESTRICTED_OFFERING_VISIBILITY_MODE?: RestrictedofferingvisibilitymodeEnum;
|
|
26592
26732
|
ALLOW_SERVICE_PROVIDER_OFFERING_MANAGEMENT?: boolean;
|
|
@@ -26842,6 +26982,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
26842
26982
|
CURRENCY_NAME?: string;
|
|
26843
26983
|
THUMBNAIL_SIZE?: string;
|
|
26844
26984
|
ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
|
|
26985
|
+
SHOW_OFFERING_COVER_IMAGE?: boolean;
|
|
26845
26986
|
ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
|
|
26846
26987
|
RESTRICTED_OFFERING_VISIBILITY_MODE?: RestrictedofferingvisibilitymodeEnum;
|
|
26847
26988
|
ALLOW_SERVICE_PROVIDER_OFFERING_MANAGEMENT?: boolean;
|
|
@@ -27207,6 +27348,7 @@ export type UserRequestForm = {
|
|
|
27207
27348
|
*/
|
|
27208
27349
|
personal_title?: string;
|
|
27209
27350
|
place_of_birth?: string;
|
|
27351
|
+
address?: string;
|
|
27210
27352
|
country_of_residence?: string;
|
|
27211
27353
|
/**
|
|
27212
27354
|
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
@@ -27298,6 +27440,7 @@ export type UserRequestMultipart = {
|
|
|
27298
27440
|
*/
|
|
27299
27441
|
personal_title?: string;
|
|
27300
27442
|
place_of_birth?: string;
|
|
27443
|
+
address?: string;
|
|
27301
27444
|
country_of_residence?: string;
|
|
27302
27445
|
/**
|
|
27303
27446
|
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
@@ -27388,6 +27531,7 @@ export type PatchedUserRequestForm = {
|
|
|
27388
27531
|
*/
|
|
27389
27532
|
personal_title?: string;
|
|
27390
27533
|
place_of_birth?: string;
|
|
27534
|
+
address?: string;
|
|
27391
27535
|
country_of_residence?: string;
|
|
27392
27536
|
/**
|
|
27393
27537
|
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
@@ -27478,6 +27622,7 @@ export type PatchedUserRequestMultipart = {
|
|
|
27478
27622
|
*/
|
|
27479
27623
|
personal_title?: string;
|
|
27480
27624
|
place_of_birth?: string;
|
|
27625
|
+
address?: string;
|
|
27481
27626
|
country_of_residence?: string;
|
|
27482
27627
|
/**
|
|
27483
27628
|
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
@@ -27565,6 +27710,7 @@ export type ResourceFieldEnum = 'attributes' | 'available_actions' | 'backend_id
|
|
|
27565
27710
|
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
27711
|
export type CategoryComponentUsageFieldEnum = 'category_title' | 'category_uuid' | 'date' | 'fixed_usage' | 'measured_unit' | 'name' | 'reported_usage' | 'scope' | 'type';
|
|
27567
27712
|
export type CategoryGroupFieldEnum = 'description' | 'icon' | 'title' | 'url' | 'uuid';
|
|
27713
|
+
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
27714
|
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
27715
|
export type ComponentUsageOEnum = '-billing_period' | '-usage' | 'billing_period' | 'usage';
|
|
27570
27716
|
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 +27723,7 @@ export type OfferingPermissionOEnum = '-created' | '-email' | '-expiration_time'
|
|
|
27577
27723
|
export type OfferingReferralOEnum = '-published' | '-relation_type' | '-resource_type' | 'published' | 'relation_type' | 'resource_type';
|
|
27578
27724
|
export type OfferingTermsOfServiceOEnum = '-created' | '-modified' | '-version' | 'created' | 'modified' | 'version';
|
|
27579
27725
|
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';
|
|
27726
|
+
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
27727
|
export type OfferingUserOEnum = '-created' | '-modified' | '-username' | 'created' | 'modified' | 'username';
|
|
27582
27728
|
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
27729
|
export type OrderDetailsOEnum = '-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state';
|
|
@@ -27585,8 +27731,8 @@ export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'dra
|
|
|
27585
27731
|
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
27732
|
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
27733
|
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';
|
|
27734
|
+
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';
|
|
27735
|
+
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
27736
|
export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
|
|
27591
27737
|
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
27738
|
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 +27742,7 @@ export type MarketplaceProviderCustomerProjectOEnum = '-created' | '-customer_ab
|
|
|
27596
27742
|
export type MarketplaceProviderCustomerFieldEnum = 'abbreviation' | 'billing_price_estimate' | 'email' | 'name' | 'payment_profiles' | 'phone_number' | 'projects' | 'projects_count' | 'slug' | 'users' | 'users_count' | 'uuid';
|
|
27597
27743
|
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
27744
|
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';
|
|
27745
|
+
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
27746
|
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
27747
|
export type AgentServiceStateEnum = 1 | 2 | 3;
|
|
27602
27748
|
export type SoftwareCatalogOEnum = '-catalog_type' | '-created' | '-modified' | '-name' | '-version' | 'catalog_type' | 'created' | 'modified' | 'name' | 'version';
|
|
@@ -27623,7 +27769,7 @@ export type OpenStackHealthMonitorFieldEnum = 'access_url' | 'backend_id' | 'cre
|
|
|
27623
27769
|
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
27770
|
export type OpenStackInstanceOEnum = 'start_time' | '-start_time';
|
|
27625
27771
|
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';
|
|
27772
|
+
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
27773
|
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
27774
|
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
27775
|
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 +29224,271 @@ export type AdminArrowVendorOfferingMappingsVendorChoicesCountResponses = {
|
|
|
29078
29224
|
*/
|
|
29079
29225
|
200: unknown;
|
|
29080
29226
|
};
|
|
29227
|
+
export type AffiliatedOrganizationsListData = {
|
|
29228
|
+
body?: never;
|
|
29229
|
+
path?: never;
|
|
29230
|
+
query?: {
|
|
29231
|
+
/**
|
|
29232
|
+
* Abbreviation
|
|
29233
|
+
*/
|
|
29234
|
+
abbreviation?: string;
|
|
29235
|
+
/**
|
|
29236
|
+
* Code
|
|
29237
|
+
*/
|
|
29238
|
+
code?: string;
|
|
29239
|
+
/**
|
|
29240
|
+
* Country
|
|
29241
|
+
*/
|
|
29242
|
+
country?: string;
|
|
29243
|
+
/**
|
|
29244
|
+
* Name
|
|
29245
|
+
*/
|
|
29246
|
+
name?: string;
|
|
29247
|
+
/**
|
|
29248
|
+
* Name (exact)
|
|
29249
|
+
*/
|
|
29250
|
+
name_exact?: string;
|
|
29251
|
+
/**
|
|
29252
|
+
* Which field to use when ordering the results.
|
|
29253
|
+
*/
|
|
29254
|
+
o?: string;
|
|
29255
|
+
/**
|
|
29256
|
+
* A page number within the paginated result set.
|
|
29257
|
+
*/
|
|
29258
|
+
page?: number;
|
|
29259
|
+
/**
|
|
29260
|
+
* Number of results to return per page.
|
|
29261
|
+
*/
|
|
29262
|
+
page_size?: number;
|
|
29263
|
+
/**
|
|
29264
|
+
* Search
|
|
29265
|
+
*/
|
|
29266
|
+
query?: string;
|
|
29267
|
+
};
|
|
29268
|
+
url: '/api/affiliated-organizations/';
|
|
29269
|
+
};
|
|
29270
|
+
export type AffiliatedOrganizationsListResponses = {
|
|
29271
|
+
200: Array<AffiliatedOrganization>;
|
|
29272
|
+
};
|
|
29273
|
+
export type AffiliatedOrganizationsListResponse = AffiliatedOrganizationsListResponses[keyof AffiliatedOrganizationsListResponses];
|
|
29274
|
+
export type AffiliatedOrganizationsCountData = {
|
|
29275
|
+
body?: never;
|
|
29276
|
+
path?: never;
|
|
29277
|
+
query?: {
|
|
29278
|
+
/**
|
|
29279
|
+
* Abbreviation
|
|
29280
|
+
*/
|
|
29281
|
+
abbreviation?: string;
|
|
29282
|
+
/**
|
|
29283
|
+
* Code
|
|
29284
|
+
*/
|
|
29285
|
+
code?: string;
|
|
29286
|
+
/**
|
|
29287
|
+
* Country
|
|
29288
|
+
*/
|
|
29289
|
+
country?: string;
|
|
29290
|
+
/**
|
|
29291
|
+
* Name
|
|
29292
|
+
*/
|
|
29293
|
+
name?: string;
|
|
29294
|
+
/**
|
|
29295
|
+
* Name (exact)
|
|
29296
|
+
*/
|
|
29297
|
+
name_exact?: string;
|
|
29298
|
+
/**
|
|
29299
|
+
* Which field to use when ordering the results.
|
|
29300
|
+
*/
|
|
29301
|
+
o?: string;
|
|
29302
|
+
/**
|
|
29303
|
+
* A page number within the paginated result set.
|
|
29304
|
+
*/
|
|
29305
|
+
page?: number;
|
|
29306
|
+
/**
|
|
29307
|
+
* Number of results to return per page.
|
|
29308
|
+
*/
|
|
29309
|
+
page_size?: number;
|
|
29310
|
+
/**
|
|
29311
|
+
* Search
|
|
29312
|
+
*/
|
|
29313
|
+
query?: string;
|
|
29314
|
+
};
|
|
29315
|
+
url: '/api/affiliated-organizations/';
|
|
29316
|
+
};
|
|
29317
|
+
export type AffiliatedOrganizationsCountResponses = {
|
|
29318
|
+
/**
|
|
29319
|
+
* No response body
|
|
29320
|
+
*/
|
|
29321
|
+
200: unknown;
|
|
29322
|
+
};
|
|
29323
|
+
export type AffiliatedOrganizationsCreateData = {
|
|
29324
|
+
body: AffiliatedOrganizationRequest;
|
|
29325
|
+
path?: never;
|
|
29326
|
+
query?: never;
|
|
29327
|
+
url: '/api/affiliated-organizations/';
|
|
29328
|
+
};
|
|
29329
|
+
export type AffiliatedOrganizationsCreateResponses = {
|
|
29330
|
+
201: AffiliatedOrganization;
|
|
29331
|
+
};
|
|
29332
|
+
export type AffiliatedOrganizationsCreateResponse = AffiliatedOrganizationsCreateResponses[keyof AffiliatedOrganizationsCreateResponses];
|
|
29333
|
+
export type AffiliatedOrganizationsDestroyData = {
|
|
29334
|
+
body?: never;
|
|
29335
|
+
path: {
|
|
29336
|
+
uuid: string;
|
|
29337
|
+
};
|
|
29338
|
+
query?: never;
|
|
29339
|
+
url: '/api/affiliated-organizations/{uuid}/';
|
|
29340
|
+
};
|
|
29341
|
+
export type AffiliatedOrganizationsDestroyResponses = {
|
|
29342
|
+
/**
|
|
29343
|
+
* No response body
|
|
29344
|
+
*/
|
|
29345
|
+
204: void;
|
|
29346
|
+
};
|
|
29347
|
+
export type AffiliatedOrganizationsDestroyResponse = AffiliatedOrganizationsDestroyResponses[keyof AffiliatedOrganizationsDestroyResponses];
|
|
29348
|
+
export type AffiliatedOrganizationsRetrieveData = {
|
|
29349
|
+
body?: never;
|
|
29350
|
+
path: {
|
|
29351
|
+
uuid: string;
|
|
29352
|
+
};
|
|
29353
|
+
query?: never;
|
|
29354
|
+
url: '/api/affiliated-organizations/{uuid}/';
|
|
29355
|
+
};
|
|
29356
|
+
export type AffiliatedOrganizationsRetrieveResponses = {
|
|
29357
|
+
200: AffiliatedOrganization;
|
|
29358
|
+
};
|
|
29359
|
+
export type AffiliatedOrganizationsRetrieveResponse = AffiliatedOrganizationsRetrieveResponses[keyof AffiliatedOrganizationsRetrieveResponses];
|
|
29360
|
+
export type AffiliatedOrganizationsPartialUpdateData = {
|
|
29361
|
+
body?: PatchedAffiliatedOrganizationRequest;
|
|
29362
|
+
path: {
|
|
29363
|
+
uuid: string;
|
|
29364
|
+
};
|
|
29365
|
+
query?: never;
|
|
29366
|
+
url: '/api/affiliated-organizations/{uuid}/';
|
|
29367
|
+
};
|
|
29368
|
+
export type AffiliatedOrganizationsPartialUpdateResponses = {
|
|
29369
|
+
200: AffiliatedOrganization;
|
|
29370
|
+
};
|
|
29371
|
+
export type AffiliatedOrganizationsPartialUpdateResponse = AffiliatedOrganizationsPartialUpdateResponses[keyof AffiliatedOrganizationsPartialUpdateResponses];
|
|
29372
|
+
export type AffiliatedOrganizationsUpdateData = {
|
|
29373
|
+
body: AffiliatedOrganizationRequest;
|
|
29374
|
+
path: {
|
|
29375
|
+
uuid: string;
|
|
29376
|
+
};
|
|
29377
|
+
query?: never;
|
|
29378
|
+
url: '/api/affiliated-organizations/{uuid}/';
|
|
29379
|
+
};
|
|
29380
|
+
export type AffiliatedOrganizationsUpdateResponses = {
|
|
29381
|
+
200: AffiliatedOrganization;
|
|
29382
|
+
};
|
|
29383
|
+
export type AffiliatedOrganizationsUpdateResponse = AffiliatedOrganizationsUpdateResponses[keyof AffiliatedOrganizationsUpdateResponses];
|
|
29384
|
+
export type AffiliatedOrganizationsStatsRetrieveData = {
|
|
29385
|
+
body?: never;
|
|
29386
|
+
path: {
|
|
29387
|
+
uuid: string;
|
|
29388
|
+
};
|
|
29389
|
+
query?: never;
|
|
29390
|
+
url: '/api/affiliated-organizations/{uuid}/stats/';
|
|
29391
|
+
};
|
|
29392
|
+
export type AffiliatedOrganizationsStatsRetrieveResponses = {
|
|
29393
|
+
200: AffiliatedOrganizationStats;
|
|
29394
|
+
};
|
|
29395
|
+
export type AffiliatedOrganizationsStatsRetrieveResponse = AffiliatedOrganizationsStatsRetrieveResponses[keyof AffiliatedOrganizationsStatsRetrieveResponses];
|
|
29396
|
+
export type AffiliatedOrganizationsReportListData = {
|
|
29397
|
+
body?: never;
|
|
29398
|
+
path?: never;
|
|
29399
|
+
query?: {
|
|
29400
|
+
/**
|
|
29401
|
+
* Abbreviation
|
|
29402
|
+
*/
|
|
29403
|
+
abbreviation?: string;
|
|
29404
|
+
/**
|
|
29405
|
+
* Code
|
|
29406
|
+
*/
|
|
29407
|
+
code?: string;
|
|
29408
|
+
/**
|
|
29409
|
+
* Country
|
|
29410
|
+
*/
|
|
29411
|
+
country?: string;
|
|
29412
|
+
/**
|
|
29413
|
+
* Name
|
|
29414
|
+
*/
|
|
29415
|
+
name?: string;
|
|
29416
|
+
/**
|
|
29417
|
+
* Name (exact)
|
|
29418
|
+
*/
|
|
29419
|
+
name_exact?: string;
|
|
29420
|
+
/**
|
|
29421
|
+
* Which field to use when ordering the results.
|
|
29422
|
+
*/
|
|
29423
|
+
o?: string;
|
|
29424
|
+
/**
|
|
29425
|
+
* A page number within the paginated result set.
|
|
29426
|
+
*/
|
|
29427
|
+
page?: number;
|
|
29428
|
+
/**
|
|
29429
|
+
* Number of results to return per page.
|
|
29430
|
+
*/
|
|
29431
|
+
page_size?: number;
|
|
29432
|
+
/**
|
|
29433
|
+
* Search
|
|
29434
|
+
*/
|
|
29435
|
+
query?: string;
|
|
29436
|
+
};
|
|
29437
|
+
url: '/api/affiliated-organizations/report/';
|
|
29438
|
+
};
|
|
29439
|
+
export type AffiliatedOrganizationsReportListResponses = {
|
|
29440
|
+
200: Array<AffiliatedOrganizationReportRow>;
|
|
29441
|
+
};
|
|
29442
|
+
export type AffiliatedOrganizationsReportListResponse = AffiliatedOrganizationsReportListResponses[keyof AffiliatedOrganizationsReportListResponses];
|
|
29443
|
+
export type AffiliatedOrganizationsReportCountData = {
|
|
29444
|
+
body?: never;
|
|
29445
|
+
path?: never;
|
|
29446
|
+
query?: {
|
|
29447
|
+
/**
|
|
29448
|
+
* Abbreviation
|
|
29449
|
+
*/
|
|
29450
|
+
abbreviation?: string;
|
|
29451
|
+
/**
|
|
29452
|
+
* Code
|
|
29453
|
+
*/
|
|
29454
|
+
code?: string;
|
|
29455
|
+
/**
|
|
29456
|
+
* Country
|
|
29457
|
+
*/
|
|
29458
|
+
country?: string;
|
|
29459
|
+
/**
|
|
29460
|
+
* Name
|
|
29461
|
+
*/
|
|
29462
|
+
name?: string;
|
|
29463
|
+
/**
|
|
29464
|
+
* Name (exact)
|
|
29465
|
+
*/
|
|
29466
|
+
name_exact?: string;
|
|
29467
|
+
/**
|
|
29468
|
+
* Which field to use when ordering the results.
|
|
29469
|
+
*/
|
|
29470
|
+
o?: string;
|
|
29471
|
+
/**
|
|
29472
|
+
* A page number within the paginated result set.
|
|
29473
|
+
*/
|
|
29474
|
+
page?: number;
|
|
29475
|
+
/**
|
|
29476
|
+
* Number of results to return per page.
|
|
29477
|
+
*/
|
|
29478
|
+
page_size?: number;
|
|
29479
|
+
/**
|
|
29480
|
+
* Search
|
|
29481
|
+
*/
|
|
29482
|
+
query?: string;
|
|
29483
|
+
};
|
|
29484
|
+
url: '/api/affiliated-organizations/report/';
|
|
29485
|
+
};
|
|
29486
|
+
export type AffiliatedOrganizationsReportCountResponses = {
|
|
29487
|
+
/**
|
|
29488
|
+
* No response body
|
|
29489
|
+
*/
|
|
29490
|
+
200: unknown;
|
|
29491
|
+
};
|
|
29081
29492
|
export type AssignmentBatchesListData = {
|
|
29082
29493
|
body?: never;
|
|
29083
29494
|
path?: never;
|
|
@@ -41784,6 +42195,73 @@ export type MarketplaceCategoryHelpArticlesUpdateResponses = {
|
|
|
41784
42195
|
200: CategoryHelpArticles;
|
|
41785
42196
|
};
|
|
41786
42197
|
export type MarketplaceCategoryHelpArticlesUpdateResponse = MarketplaceCategoryHelpArticlesUpdateResponses[keyof MarketplaceCategoryHelpArticlesUpdateResponses];
|
|
42198
|
+
export type MarketplaceComponentUsageMonthlyListData = {
|
|
42199
|
+
body?: never;
|
|
42200
|
+
path?: never;
|
|
42201
|
+
query?: {
|
|
42202
|
+
billing_period?: string;
|
|
42203
|
+
billing_type?: string;
|
|
42204
|
+
component_type?: string;
|
|
42205
|
+
customer_uuid?: string;
|
|
42206
|
+
end?: string;
|
|
42207
|
+
field?: Array<ComponentUsageMonthlyFieldEnum>;
|
|
42208
|
+
/**
|
|
42209
|
+
* Which field to use when ordering the results.
|
|
42210
|
+
*/
|
|
42211
|
+
o?: string;
|
|
42212
|
+
offering_type?: string;
|
|
42213
|
+
offering_uuid?: string;
|
|
42214
|
+
/**
|
|
42215
|
+
* A page number within the paginated result set.
|
|
42216
|
+
*/
|
|
42217
|
+
page?: number;
|
|
42218
|
+
/**
|
|
42219
|
+
* Number of results to return per page.
|
|
42220
|
+
*/
|
|
42221
|
+
page_size?: number;
|
|
42222
|
+
project_uuid?: string;
|
|
42223
|
+
start?: string;
|
|
42224
|
+
};
|
|
42225
|
+
url: '/api/marketplace-component-usage-monthly/';
|
|
42226
|
+
};
|
|
42227
|
+
export type MarketplaceComponentUsageMonthlyListResponses = {
|
|
42228
|
+
200: Array<ComponentUsageMonthly>;
|
|
42229
|
+
};
|
|
42230
|
+
export type MarketplaceComponentUsageMonthlyListResponse = MarketplaceComponentUsageMonthlyListResponses[keyof MarketplaceComponentUsageMonthlyListResponses];
|
|
42231
|
+
export type MarketplaceComponentUsageMonthlyCountData = {
|
|
42232
|
+
body?: never;
|
|
42233
|
+
path?: never;
|
|
42234
|
+
query?: {
|
|
42235
|
+
billing_period?: string;
|
|
42236
|
+
billing_type?: string;
|
|
42237
|
+
component_type?: string;
|
|
42238
|
+
customer_uuid?: string;
|
|
42239
|
+
end?: string;
|
|
42240
|
+
/**
|
|
42241
|
+
* Which field to use when ordering the results.
|
|
42242
|
+
*/
|
|
42243
|
+
o?: string;
|
|
42244
|
+
offering_type?: string;
|
|
42245
|
+
offering_uuid?: string;
|
|
42246
|
+
/**
|
|
42247
|
+
* A page number within the paginated result set.
|
|
42248
|
+
*/
|
|
42249
|
+
page?: number;
|
|
42250
|
+
/**
|
|
42251
|
+
* Number of results to return per page.
|
|
42252
|
+
*/
|
|
42253
|
+
page_size?: number;
|
|
42254
|
+
project_uuid?: string;
|
|
42255
|
+
start?: string;
|
|
42256
|
+
};
|
|
42257
|
+
url: '/api/marketplace-component-usage-monthly/';
|
|
42258
|
+
};
|
|
42259
|
+
export type MarketplaceComponentUsageMonthlyCountResponses = {
|
|
42260
|
+
/**
|
|
42261
|
+
* No response body
|
|
42262
|
+
*/
|
|
42263
|
+
200: unknown;
|
|
42264
|
+
};
|
|
41787
42265
|
export type MarketplaceComponentUsagesListData = {
|
|
41788
42266
|
body?: never;
|
|
41789
42267
|
path?: never;
|
|
@@ -52745,6 +53223,14 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
|
|
|
52745
53223
|
service_provider_uuid: string;
|
|
52746
53224
|
};
|
|
52747
53225
|
query: {
|
|
53226
|
+
/**
|
|
53227
|
+
* Affiliated organization name
|
|
53228
|
+
*/
|
|
53229
|
+
affiliated_organization_name?: string;
|
|
53230
|
+
/**
|
|
53231
|
+
* Affiliated organization UUID
|
|
53232
|
+
*/
|
|
53233
|
+
affiliated_organization_uuid?: Array<string>;
|
|
52748
53234
|
backend_id?: string;
|
|
52749
53235
|
/**
|
|
52750
53236
|
* Return a list of projects where current user is admin.
|
|
@@ -52787,6 +53273,10 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
|
|
|
52787
53273
|
*/
|
|
52788
53274
|
description?: string;
|
|
52789
53275
|
field?: Array<MarketplaceProviderCustomerProjectFieldEnum>;
|
|
53276
|
+
/**
|
|
53277
|
+
* Filter projects that have at least one affiliated organization.
|
|
53278
|
+
*/
|
|
53279
|
+
has_affiliated_organization?: boolean;
|
|
52790
53280
|
/**
|
|
52791
53281
|
* Is removed
|
|
52792
53282
|
*/
|
|
@@ -53283,6 +53773,14 @@ export type MarketplaceServiceProvidersProjectsListData = {
|
|
|
53283
53773
|
service_provider_uuid: string;
|
|
53284
53774
|
};
|
|
53285
53775
|
query?: {
|
|
53776
|
+
/**
|
|
53777
|
+
* Affiliated organization name
|
|
53778
|
+
*/
|
|
53779
|
+
affiliated_organization_name?: string;
|
|
53780
|
+
/**
|
|
53781
|
+
* Affiliated organization UUID
|
|
53782
|
+
*/
|
|
53783
|
+
affiliated_organization_uuid?: Array<string>;
|
|
53286
53784
|
backend_id?: string;
|
|
53287
53785
|
/**
|
|
53288
53786
|
* Return a list of projects where current user is admin.
|
|
@@ -53325,6 +53823,10 @@ export type MarketplaceServiceProvidersProjectsListData = {
|
|
|
53325
53823
|
*/
|
|
53326
53824
|
description?: string;
|
|
53327
53825
|
field?: Array<ProjectFieldEnum>;
|
|
53826
|
+
/**
|
|
53827
|
+
* Filter projects that have at least one affiliated organization.
|
|
53828
|
+
*/
|
|
53829
|
+
has_affiliated_organization?: boolean;
|
|
53328
53830
|
/**
|
|
53329
53831
|
* Is removed
|
|
53330
53832
|
*/
|
|
@@ -55584,10 +56086,6 @@ export type MarketplaceStatsCountActiveResourcesGroupedByOfferingListData = {
|
|
|
55584
56086
|
body?: never;
|
|
55585
56087
|
path?: never;
|
|
55586
56088
|
query?: {
|
|
55587
|
-
/**
|
|
55588
|
-
* Limit number of results (e.g. top N offerings). No limit by default.
|
|
55589
|
-
*/
|
|
55590
|
-
limit?: number;
|
|
55591
56089
|
/**
|
|
55592
56090
|
* A page number within the paginated result set.
|
|
55593
56091
|
*/
|
|
@@ -55607,10 +56105,6 @@ export type MarketplaceStatsCountActiveResourcesGroupedByOfferingCountData = {
|
|
|
55607
56105
|
body?: never;
|
|
55608
56106
|
path?: never;
|
|
55609
56107
|
query?: {
|
|
55610
|
-
/**
|
|
55611
|
-
* Limit number of results (e.g. top N offerings). No limit by default.
|
|
55612
|
-
*/
|
|
55613
|
-
limit?: number;
|
|
55614
56108
|
/**
|
|
55615
56109
|
* A page number within the paginated result set.
|
|
55616
56110
|
*/
|
|
@@ -60545,6 +61039,14 @@ export type OpenportalUnmanagedProjectsListData = {
|
|
|
60545
61039
|
* Filter by whether accounting is running.
|
|
60546
61040
|
*/
|
|
60547
61041
|
accounting_is_running?: boolean;
|
|
61042
|
+
/**
|
|
61043
|
+
* Affiliated organization name
|
|
61044
|
+
*/
|
|
61045
|
+
affiliated_organization_name?: string;
|
|
61046
|
+
/**
|
|
61047
|
+
* Affiliated organization UUID
|
|
61048
|
+
*/
|
|
61049
|
+
affiliated_organization_uuid?: Array<string>;
|
|
60548
61050
|
backend_id?: string;
|
|
60549
61051
|
/**
|
|
60550
61052
|
* Return a list of projects where current user is admin.
|
|
@@ -60587,6 +61089,10 @@ export type OpenportalUnmanagedProjectsListData = {
|
|
|
60587
61089
|
*/
|
|
60588
61090
|
description?: string;
|
|
60589
61091
|
field?: Array<ProjectFieldEnum>;
|
|
61092
|
+
/**
|
|
61093
|
+
* Filter projects that have at least one affiliated organization.
|
|
61094
|
+
*/
|
|
61095
|
+
has_affiliated_organization?: boolean;
|
|
60590
61096
|
/**
|
|
60591
61097
|
* Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
|
|
60592
61098
|
*/
|
|
@@ -60656,6 +61162,14 @@ export type OpenportalUnmanagedProjectsCountData = {
|
|
|
60656
61162
|
* Filter by whether accounting is running.
|
|
60657
61163
|
*/
|
|
60658
61164
|
accounting_is_running?: boolean;
|
|
61165
|
+
/**
|
|
61166
|
+
* Affiliated organization name
|
|
61167
|
+
*/
|
|
61168
|
+
affiliated_organization_name?: string;
|
|
61169
|
+
/**
|
|
61170
|
+
* Affiliated organization UUID
|
|
61171
|
+
*/
|
|
61172
|
+
affiliated_organization_uuid?: Array<string>;
|
|
60659
61173
|
backend_id?: string;
|
|
60660
61174
|
/**
|
|
60661
61175
|
* Return a list of projects where current user is admin.
|
|
@@ -60697,6 +61211,10 @@ export type OpenportalUnmanagedProjectsCountData = {
|
|
|
60697
61211
|
* Description
|
|
60698
61212
|
*/
|
|
60699
61213
|
description?: string;
|
|
61214
|
+
/**
|
|
61215
|
+
* Filter projects that have at least one affiliated organization.
|
|
61216
|
+
*/
|
|
61217
|
+
has_affiliated_organization?: boolean;
|
|
60700
61218
|
/**
|
|
60701
61219
|
* Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
|
|
60702
61220
|
*/
|
|
@@ -61028,6 +61546,20 @@ export type OpenportalUnmanagedProjectsSubmitAnswersResponses = {
|
|
|
61028
61546
|
200: AnswerSubmitResponse;
|
|
61029
61547
|
};
|
|
61030
61548
|
export type OpenportalUnmanagedProjectsSubmitAnswersResponse = OpenportalUnmanagedProjectsSubmitAnswersResponses[keyof OpenportalUnmanagedProjectsSubmitAnswersResponses];
|
|
61549
|
+
export type OpenportalUnmanagedProjectsUpdateAffiliatedOrganizationsData = {
|
|
61550
|
+
body?: AffiliatedOrganizationsUpdateRequest;
|
|
61551
|
+
path: {
|
|
61552
|
+
uuid: string;
|
|
61553
|
+
};
|
|
61554
|
+
query?: never;
|
|
61555
|
+
url: '/api/openportal-unmanaged-projects/{uuid}/update_affiliated_organizations/';
|
|
61556
|
+
};
|
|
61557
|
+
export type OpenportalUnmanagedProjectsUpdateAffiliatedOrganizationsResponses = {
|
|
61558
|
+
/**
|
|
61559
|
+
* No response body
|
|
61560
|
+
*/
|
|
61561
|
+
200: unknown;
|
|
61562
|
+
};
|
|
61031
61563
|
export type OpenportalUnmanagedProjectsUpdateUserData = {
|
|
61032
61564
|
body: UserRoleUpdateRequest;
|
|
61033
61565
|
path: {
|
|
@@ -62343,6 +62875,118 @@ export type OpenstackHealthMonitorsPullResponses = {
|
|
|
62343
62875
|
*/
|
|
62344
62876
|
202: unknown;
|
|
62345
62877
|
};
|
|
62878
|
+
export type OpenstackHypervisorsListData = {
|
|
62879
|
+
body?: never;
|
|
62880
|
+
path?: never;
|
|
62881
|
+
query?: {
|
|
62882
|
+
hypervisor_type?: string;
|
|
62883
|
+
/**
|
|
62884
|
+
* Name
|
|
62885
|
+
*/
|
|
62886
|
+
name?: string;
|
|
62887
|
+
/**
|
|
62888
|
+
* Name (exact)
|
|
62889
|
+
*/
|
|
62890
|
+
name_exact?: string;
|
|
62891
|
+
/**
|
|
62892
|
+
* A page number within the paginated result set.
|
|
62893
|
+
*/
|
|
62894
|
+
page?: number;
|
|
62895
|
+
/**
|
|
62896
|
+
* Number of results to return per page.
|
|
62897
|
+
*/
|
|
62898
|
+
page_size?: number;
|
|
62899
|
+
/**
|
|
62900
|
+
* Settings URL
|
|
62901
|
+
*/
|
|
62902
|
+
settings?: string;
|
|
62903
|
+
/**
|
|
62904
|
+
* Settings UUID
|
|
62905
|
+
*/
|
|
62906
|
+
settings_uuid?: string;
|
|
62907
|
+
state?: string;
|
|
62908
|
+
status?: string;
|
|
62909
|
+
};
|
|
62910
|
+
url: '/api/openstack-hypervisors/';
|
|
62911
|
+
};
|
|
62912
|
+
export type OpenstackHypervisorsListResponses = {
|
|
62913
|
+
200: Array<Hypervisor>;
|
|
62914
|
+
};
|
|
62915
|
+
export type OpenstackHypervisorsListResponse = OpenstackHypervisorsListResponses[keyof OpenstackHypervisorsListResponses];
|
|
62916
|
+
export type OpenstackHypervisorsCountData = {
|
|
62917
|
+
body?: never;
|
|
62918
|
+
path?: never;
|
|
62919
|
+
query?: {
|
|
62920
|
+
hypervisor_type?: string;
|
|
62921
|
+
/**
|
|
62922
|
+
* Name
|
|
62923
|
+
*/
|
|
62924
|
+
name?: string;
|
|
62925
|
+
/**
|
|
62926
|
+
* Name (exact)
|
|
62927
|
+
*/
|
|
62928
|
+
name_exact?: string;
|
|
62929
|
+
/**
|
|
62930
|
+
* A page number within the paginated result set.
|
|
62931
|
+
*/
|
|
62932
|
+
page?: number;
|
|
62933
|
+
/**
|
|
62934
|
+
* Number of results to return per page.
|
|
62935
|
+
*/
|
|
62936
|
+
page_size?: number;
|
|
62937
|
+
/**
|
|
62938
|
+
* Settings URL
|
|
62939
|
+
*/
|
|
62940
|
+
settings?: string;
|
|
62941
|
+
/**
|
|
62942
|
+
* Settings UUID
|
|
62943
|
+
*/
|
|
62944
|
+
settings_uuid?: string;
|
|
62945
|
+
state?: string;
|
|
62946
|
+
status?: string;
|
|
62947
|
+
};
|
|
62948
|
+
url: '/api/openstack-hypervisors/';
|
|
62949
|
+
};
|
|
62950
|
+
export type OpenstackHypervisorsCountResponses = {
|
|
62951
|
+
/**
|
|
62952
|
+
* No response body
|
|
62953
|
+
*/
|
|
62954
|
+
200: unknown;
|
|
62955
|
+
};
|
|
62956
|
+
export type OpenstackHypervisorsRetrieveData = {
|
|
62957
|
+
body?: never;
|
|
62958
|
+
path: {
|
|
62959
|
+
uuid: string;
|
|
62960
|
+
};
|
|
62961
|
+
query?: never;
|
|
62962
|
+
url: '/api/openstack-hypervisors/{uuid}/';
|
|
62963
|
+
};
|
|
62964
|
+
export type OpenstackHypervisorsRetrieveResponses = {
|
|
62965
|
+
200: Hypervisor;
|
|
62966
|
+
};
|
|
62967
|
+
export type OpenstackHypervisorsRetrieveResponse = OpenstackHypervisorsRetrieveResponses[keyof OpenstackHypervisorsRetrieveResponses];
|
|
62968
|
+
export type OpenstackHypervisorsSummaryRetrieveData = {
|
|
62969
|
+
body?: never;
|
|
62970
|
+
path?: never;
|
|
62971
|
+
query?: never;
|
|
62972
|
+
url: '/api/openstack-hypervisors/summary/';
|
|
62973
|
+
};
|
|
62974
|
+
export type OpenstackHypervisorsSummaryRetrieveResponses = {
|
|
62975
|
+
200: HypervisorSummary;
|
|
62976
|
+
};
|
|
62977
|
+
export type OpenstackHypervisorsSummaryRetrieveResponse = OpenstackHypervisorsSummaryRetrieveResponses[keyof OpenstackHypervisorsSummaryRetrieveResponses];
|
|
62978
|
+
export type OpenstackHypervisorsSummaryCountData = {
|
|
62979
|
+
body?: never;
|
|
62980
|
+
path?: never;
|
|
62981
|
+
query?: never;
|
|
62982
|
+
url: '/api/openstack-hypervisors/summary/';
|
|
62983
|
+
};
|
|
62984
|
+
export type OpenstackHypervisorsSummaryCountResponses = {
|
|
62985
|
+
/**
|
|
62986
|
+
* No response body
|
|
62987
|
+
*/
|
|
62988
|
+
200: unknown;
|
|
62989
|
+
};
|
|
62346
62990
|
export type OpenstackImagesListData = {
|
|
62347
62991
|
body?: never;
|
|
62348
62992
|
path?: never;
|
|
@@ -63461,6 +64105,18 @@ export type OpenstackLoadbalancersPullResponses = {
|
|
|
63461
64105
|
*/
|
|
63462
64106
|
202: unknown;
|
|
63463
64107
|
};
|
|
64108
|
+
export type OpenstackLoadbalancersSetSecurityGroupsData = {
|
|
64109
|
+
body: LoadBalancerSetSecurityGroupsRequest;
|
|
64110
|
+
path: {
|
|
64111
|
+
uuid: string;
|
|
64112
|
+
};
|
|
64113
|
+
query?: never;
|
|
64114
|
+
url: '/api/openstack-loadbalancers/{uuid}/set_security_groups/';
|
|
64115
|
+
};
|
|
64116
|
+
export type OpenstackLoadbalancersSetSecurityGroupsResponses = {
|
|
64117
|
+
202: LoadBalancerAsyncOperationResponse;
|
|
64118
|
+
};
|
|
64119
|
+
export type OpenstackLoadbalancersSetSecurityGroupsResponse = OpenstackLoadbalancersSetSecurityGroupsResponses[keyof OpenstackLoadbalancersSetSecurityGroupsResponses];
|
|
63464
64120
|
export type OpenstackLoadbalancersUnlinkData = {
|
|
63465
64121
|
body?: never;
|
|
63466
64122
|
path: {
|
|
@@ -69139,6 +69795,14 @@ export type ProjectsListData = {
|
|
|
69139
69795
|
* Filter by whether accounting is running.
|
|
69140
69796
|
*/
|
|
69141
69797
|
accounting_is_running?: boolean;
|
|
69798
|
+
/**
|
|
69799
|
+
* Affiliated organization name
|
|
69800
|
+
*/
|
|
69801
|
+
affiliated_organization_name?: string;
|
|
69802
|
+
/**
|
|
69803
|
+
* Affiliated organization UUID
|
|
69804
|
+
*/
|
|
69805
|
+
affiliated_organization_uuid?: Array<string>;
|
|
69142
69806
|
backend_id?: string;
|
|
69143
69807
|
/**
|
|
69144
69808
|
* Return a list of projects where current user is admin.
|
|
@@ -69181,6 +69845,10 @@ export type ProjectsListData = {
|
|
|
69181
69845
|
*/
|
|
69182
69846
|
description?: string;
|
|
69183
69847
|
field?: Array<ProjectFieldEnum>;
|
|
69848
|
+
/**
|
|
69849
|
+
* Filter projects that have at least one affiliated organization.
|
|
69850
|
+
*/
|
|
69851
|
+
has_affiliated_organization?: boolean;
|
|
69184
69852
|
/**
|
|
69185
69853
|
* Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
|
|
69186
69854
|
*/
|
|
@@ -69250,6 +69918,14 @@ export type ProjectsCountData = {
|
|
|
69250
69918
|
* Filter by whether accounting is running.
|
|
69251
69919
|
*/
|
|
69252
69920
|
accounting_is_running?: boolean;
|
|
69921
|
+
/**
|
|
69922
|
+
* Affiliated organization name
|
|
69923
|
+
*/
|
|
69924
|
+
affiliated_organization_name?: string;
|
|
69925
|
+
/**
|
|
69926
|
+
* Affiliated organization UUID
|
|
69927
|
+
*/
|
|
69928
|
+
affiliated_organization_uuid?: Array<string>;
|
|
69253
69929
|
backend_id?: string;
|
|
69254
69930
|
/**
|
|
69255
69931
|
* Return a list of projects where current user is admin.
|
|
@@ -69291,6 +69967,10 @@ export type ProjectsCountData = {
|
|
|
69291
69967
|
* Description
|
|
69292
69968
|
*/
|
|
69293
69969
|
description?: string;
|
|
69970
|
+
/**
|
|
69971
|
+
* Filter projects that have at least one affiliated organization.
|
|
69972
|
+
*/
|
|
69973
|
+
has_affiliated_organization?: boolean;
|
|
69294
69974
|
/**
|
|
69295
69975
|
* Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
|
|
69296
69976
|
*/
|
|
@@ -69712,6 +70392,20 @@ export type ProjectsSyncUserRolesResponses = {
|
|
|
69712
70392
|
*/
|
|
69713
70393
|
200: unknown;
|
|
69714
70394
|
};
|
|
70395
|
+
export type ProjectsUpdateAffiliatedOrganizationsData = {
|
|
70396
|
+
body?: AffiliatedOrganizationsUpdateRequest;
|
|
70397
|
+
path: {
|
|
70398
|
+
uuid: string;
|
|
70399
|
+
};
|
|
70400
|
+
query?: never;
|
|
70401
|
+
url: '/api/projects/{uuid}/update_affiliated_organizations/';
|
|
70402
|
+
};
|
|
70403
|
+
export type ProjectsUpdateAffiliatedOrganizationsResponses = {
|
|
70404
|
+
/**
|
|
70405
|
+
* No response body
|
|
70406
|
+
*/
|
|
70407
|
+
200: unknown;
|
|
70408
|
+
};
|
|
69715
70409
|
export type ProjectsUpdateUserData = {
|
|
69716
70410
|
body: UserRoleUpdateRequest;
|
|
69717
70411
|
path: {
|