waldur-js-client 8.0.9-dev.31 → 8.0.9-dev.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client/{client.d.ts → client.gen.d.ts} +1 -1
- package/dist/client/client.gen.js +216 -0
- package/dist/client/index.d.ts +8 -7
- package/dist/client/index.js +6 -4
- package/dist/client/{types.d.ts → types.gen.d.ts} +22 -21
- package/dist/client/types.gen.js +2 -0
- package/dist/client/{utils.d.ts → utils.gen.d.ts} +16 -24
- package/dist/client/{utils.js → utils.gen.js} +65 -121
- package/dist/client.gen.d.ts +3 -3
- package/dist/core/{auth.js → auth.gen.js} +1 -0
- package/dist/core/bodySerializer.gen.d.ts +25 -0
- package/dist/core/{bodySerializer.js → bodySerializer.gen.js} +5 -1
- package/dist/core/{params.d.ts → params.gen.d.ts} +20 -0
- package/dist/core/{params.js → params.gen.js} +23 -10
- package/dist/core/{pathSerializer.js → pathSerializer.gen.js} +4 -11
- package/dist/core/queryKeySerializer.gen.d.ts +18 -0
- package/dist/core/queryKeySerializer.gen.js +92 -0
- package/dist/core/serverSentEvents.gen.d.ts +71 -0
- package/dist/core/serverSentEvents.gen.js +132 -0
- package/dist/core/{types.d.ts → types.gen.d.ts} +20 -15
- package/dist/core/types.gen.js +2 -0
- package/dist/core/utils.gen.d.ts +19 -0
- package/dist/core/utils.gen.js +87 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -2
- package/dist/sdk.gen.d.ts +1060 -3
- package/dist/sdk.gen.js +28375 -55513
- package/dist/types.gen.d.ts +234 -165
- package/package.json +1 -1
- package/dist/client/client.js +0 -143
- package/dist/client/types.js +0 -1
- package/dist/core/bodySerializer.d.ts +0 -17
- package/dist/core/types.js +0 -1
- /package/dist/core/{auth.d.ts → auth.gen.d.ts} +0 -0
- /package/dist/core/{pathSerializer.d.ts → pathSerializer.gen.d.ts} +0 -0
package/dist/types.gen.d.ts
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
export type ClientOptions = {
|
|
2
|
+
baseUrl: `${string}://waldur-openapi-schema.yaml` | (string & {});
|
|
3
|
+
};
|
|
1
4
|
export type AiassistantenabledrolesEnum = 'disabled' | 'staff' | 'staff_and_support' | 'all' | 'anonymous';
|
|
2
5
|
export type AccessProject = {
|
|
3
6
|
name: string;
|
|
@@ -655,7 +658,7 @@ export type AnonymousChatFeedback = {
|
|
|
655
658
|
/**
|
|
656
659
|
* An IPv4 or IPv6 address.
|
|
657
660
|
*/
|
|
658
|
-
submitted_from_ip: string | null;
|
|
661
|
+
submitted_from_ip: string | string | null;
|
|
659
662
|
readonly submitted_at: string | null;
|
|
660
663
|
readonly llm_resolution_score: number | null;
|
|
661
664
|
readonly llm_intent_category: string;
|
|
@@ -706,7 +709,7 @@ export type AnonymousChatInteraction = {
|
|
|
706
709
|
/**
|
|
707
710
|
* An IPv4 or IPv6 address.
|
|
708
711
|
*/
|
|
709
|
-
ip_address: string | null;
|
|
712
|
+
ip_address: string | string | null;
|
|
710
713
|
readonly session_id: string;
|
|
711
714
|
readonly last_active_at: string | null;
|
|
712
715
|
readonly created: string;
|
|
@@ -1880,6 +1883,7 @@ export type AuthToken = {
|
|
|
1880
1883
|
readonly user_username: string;
|
|
1881
1884
|
/**
|
|
1882
1885
|
* Active
|
|
1886
|
+
*
|
|
1883
1887
|
* Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
|
|
1884
1888
|
*/
|
|
1885
1889
|
readonly user_is_active: boolean;
|
|
@@ -3237,7 +3241,7 @@ export type CallDocumentRequest = {
|
|
|
3237
3241
|
/**
|
|
3238
3242
|
* Documentation for call for proposals.
|
|
3239
3243
|
*/
|
|
3240
|
-
file?:
|
|
3244
|
+
file?: Blob | File | null;
|
|
3241
3245
|
description?: string;
|
|
3242
3246
|
};
|
|
3243
3247
|
export type CallManagingOrganisation = {
|
|
@@ -3257,7 +3261,7 @@ export type CallManagingOrganisation = {
|
|
|
3257
3261
|
export type CallManagingOrganisationRequest = {
|
|
3258
3262
|
description?: string;
|
|
3259
3263
|
customer: string;
|
|
3260
|
-
image?:
|
|
3264
|
+
image?: Blob | File | null;
|
|
3261
3265
|
};
|
|
3262
3266
|
export type CallManagingOrganisationStat = {
|
|
3263
3267
|
readonly open_calls: number;
|
|
@@ -3773,7 +3777,7 @@ export type CategoryGroup = {
|
|
|
3773
3777
|
export type CategoryGroupRequest = {
|
|
3774
3778
|
title: string;
|
|
3775
3779
|
description?: string;
|
|
3776
|
-
icon?:
|
|
3780
|
+
icon?: Blob | File | null;
|
|
3777
3781
|
};
|
|
3778
3782
|
export type CategoryHelpArticle = {
|
|
3779
3783
|
title?: string | null;
|
|
@@ -5155,27 +5159,27 @@ export type ConstanceSettingsRequest = {
|
|
|
5155
5159
|
COMMON_FOOTER_HTML?: string;
|
|
5156
5160
|
LANGUAGE_CHOICES?: string;
|
|
5157
5161
|
DISABLE_DARK_THEME?: boolean;
|
|
5158
|
-
POWERED_BY_LOGO?:
|
|
5159
|
-
HERO_IMAGE?:
|
|
5160
|
-
MARKETPLACE_HERO_IMAGE?:
|
|
5161
|
-
CALL_MANAGEMENT_HERO_IMAGE?:
|
|
5162
|
-
SIDEBAR_LOGO?:
|
|
5163
|
-
SIDEBAR_LOGO_DARK?:
|
|
5164
|
-
SIDEBAR_LOGO_MOBILE?:
|
|
5162
|
+
POWERED_BY_LOGO?: Blob | File | null;
|
|
5163
|
+
HERO_IMAGE?: Blob | File | null;
|
|
5164
|
+
MARKETPLACE_HERO_IMAGE?: Blob | File | null;
|
|
5165
|
+
CALL_MANAGEMENT_HERO_IMAGE?: Blob | File | null;
|
|
5166
|
+
SIDEBAR_LOGO?: Blob | File | null;
|
|
5167
|
+
SIDEBAR_LOGO_DARK?: Blob | File | null;
|
|
5168
|
+
SIDEBAR_LOGO_MOBILE?: Blob | File | null;
|
|
5165
5169
|
SIDEBAR_STYLE?: SidebarstyleEnum;
|
|
5166
5170
|
FONT_FAMILY?: FontfamilyEnum;
|
|
5167
|
-
LOGIN_LOGO?:
|
|
5171
|
+
LOGIN_LOGO?: Blob | File | null;
|
|
5168
5172
|
LOGIN_LOGO_MULTILINGUAL?: {
|
|
5169
|
-
[key: string]:
|
|
5173
|
+
[key: string]: Blob | File | null;
|
|
5170
5174
|
};
|
|
5171
5175
|
LOGIN_PAGE_LAYOUT?: LoginpagelayoutEnum;
|
|
5172
5176
|
LOGIN_PAGE_VIDEO_URL?: string;
|
|
5173
5177
|
LOGIN_PAGE_STATS?: Array<unknown>;
|
|
5174
5178
|
LOGIN_PAGE_CAROUSEL_SLIDES?: Array<unknown>;
|
|
5175
5179
|
LOGIN_PAGE_NEWS?: Array<unknown>;
|
|
5176
|
-
FAVICON?:
|
|
5177
|
-
OFFERING_LOGO_PLACEHOLDER?:
|
|
5178
|
-
DISCLAIMER_AREA_LOGO?:
|
|
5180
|
+
FAVICON?: Blob | File | null;
|
|
5181
|
+
OFFERING_LOGO_PLACEHOLDER?: Blob | File | null;
|
|
5182
|
+
DISCLAIMER_AREA_LOGO?: Blob | File | null;
|
|
5179
5183
|
WALDUR_SUPPORT_ENABLED?: boolean;
|
|
5180
5184
|
WALDUR_SUPPORT_ACTIVE_BACKEND_TYPE?: WaldursupportactivebackendtypeEnum;
|
|
5181
5185
|
WALDUR_SUPPORT_DISPLAY_REQUEST_TYPE?: boolean;
|
|
@@ -5269,7 +5273,7 @@ export type ConstanceSettingsRequest = {
|
|
|
5269
5273
|
SCIM_PULL_API_URL?: string;
|
|
5270
5274
|
SCIM_PULL_API_KEY?: string;
|
|
5271
5275
|
SCIM_PULL_SOURCE_NAME?: string;
|
|
5272
|
-
KEYCLOAK_ICON?:
|
|
5276
|
+
KEYCLOAK_ICON?: Blob | File | null;
|
|
5273
5277
|
COUNTRIES?: Array<string>;
|
|
5274
5278
|
OIDC_AUTH_URL?: string;
|
|
5275
5279
|
OIDC_INTROSPECTION_URL?: string;
|
|
@@ -5746,7 +5750,7 @@ export type CreatePoolMember = {
|
|
|
5746
5750
|
/**
|
|
5747
5751
|
* An IPv4 or IPv6 address.
|
|
5748
5752
|
*/
|
|
5749
|
-
address: string;
|
|
5753
|
+
address: string | string;
|
|
5750
5754
|
/**
|
|
5751
5755
|
* Port on the backend server
|
|
5752
5756
|
*/
|
|
@@ -5763,7 +5767,7 @@ export type CreatePoolMemberRequest = {
|
|
|
5763
5767
|
/**
|
|
5764
5768
|
* An IPv4 or IPv6 address.
|
|
5765
5769
|
*/
|
|
5766
|
-
address: string;
|
|
5770
|
+
address: string | string;
|
|
5767
5771
|
/**
|
|
5768
5772
|
* Port on the backend server
|
|
5769
5773
|
*/
|
|
@@ -6214,7 +6218,7 @@ export type CustomerRequest = {
|
|
|
6214
6218
|
* Organization identifier in another application.
|
|
6215
6219
|
*/
|
|
6216
6220
|
backend_id?: string;
|
|
6217
|
-
image?:
|
|
6221
|
+
image?: Blob | File | null;
|
|
6218
6222
|
blocked?: boolean;
|
|
6219
6223
|
archived?: boolean;
|
|
6220
6224
|
display_billing_info_in_projects?: boolean;
|
|
@@ -7213,7 +7217,7 @@ export type EventSubscription = {
|
|
|
7213
7217
|
/**
|
|
7214
7218
|
* An IPv4 or IPv6 address.
|
|
7215
7219
|
*/
|
|
7216
|
-
source_ip: string | null;
|
|
7220
|
+
source_ip: string | string | null;
|
|
7217
7221
|
};
|
|
7218
7222
|
export type EventSubscriptionQueue = {
|
|
7219
7223
|
readonly uuid: string;
|
|
@@ -7494,7 +7498,7 @@ export type ExternalLinkRequest = {
|
|
|
7494
7498
|
name: string;
|
|
7495
7499
|
description?: string;
|
|
7496
7500
|
link: string;
|
|
7497
|
-
image?:
|
|
7501
|
+
image?: Blob | File | null;
|
|
7498
7502
|
};
|
|
7499
7503
|
export type ExternalNetwork = {
|
|
7500
7504
|
readonly url?: string;
|
|
@@ -7529,7 +7533,7 @@ export type ExternalSubnet = {
|
|
|
7529
7533
|
/**
|
|
7530
7534
|
* An IPv4 or IPv6 address.
|
|
7531
7535
|
*/
|
|
7532
|
-
gateway_ip?: string | null;
|
|
7536
|
+
gateway_ip?: string | string | null;
|
|
7533
7537
|
ip_version?: number;
|
|
7534
7538
|
enable_dhcp?: boolean;
|
|
7535
7539
|
allocation_pools?: unknown;
|
|
@@ -7862,7 +7866,7 @@ export type GlobalUserDataAccessLog = {
|
|
|
7862
7866
|
/**
|
|
7863
7867
|
* An IPv4 or IPv6 address.
|
|
7864
7868
|
*/
|
|
7865
|
-
ip_address: string | null;
|
|
7869
|
+
ip_address: string | string | null;
|
|
7866
7870
|
context: {
|
|
7867
7871
|
[key: string]: unknown;
|
|
7868
7872
|
};
|
|
@@ -9729,6 +9733,7 @@ export type ManagedProject = {
|
|
|
9729
9733
|
project_template_data: ProjectTemplate;
|
|
9730
9734
|
/**
|
|
9731
9735
|
* Local ID
|
|
9736
|
+
*
|
|
9732
9737
|
* The local project identifier in this portal.
|
|
9733
9738
|
*/
|
|
9734
9739
|
local_identifier?: string | null;
|
|
@@ -9797,7 +9802,7 @@ export type MarketplaceCategory = {
|
|
|
9797
9802
|
export type MarketplaceCategoryRequest = {
|
|
9798
9803
|
title: string;
|
|
9799
9804
|
description?: string;
|
|
9800
|
-
icon?:
|
|
9805
|
+
icon?: Blob | File | null;
|
|
9801
9806
|
/**
|
|
9802
9807
|
* Set to "true" if this category is for OpenStack VM. Only one category can have "true" value.
|
|
9803
9808
|
*/
|
|
@@ -9885,6 +9890,7 @@ export type MarketplaceServiceProviderUser = {
|
|
|
9885
9890
|
affiliations?: unknown;
|
|
9886
9891
|
/**
|
|
9887
9892
|
* Active
|
|
9893
|
+
*
|
|
9888
9894
|
* Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
|
|
9889
9895
|
*/
|
|
9890
9896
|
is_active?: boolean;
|
|
@@ -9925,6 +9931,7 @@ export type MarketplaceServiceProviderUser = {
|
|
|
9925
9931
|
birth_date?: string | null;
|
|
9926
9932
|
/**
|
|
9927
9933
|
* Source of identity
|
|
9934
|
+
*
|
|
9928
9935
|
* Indicates what identity provider was used.
|
|
9929
9936
|
*/
|
|
9930
9937
|
identity_source?: string;
|
|
@@ -10899,7 +10906,7 @@ export type Message = {
|
|
|
10899
10906
|
id: string;
|
|
10900
10907
|
key: 'markdown' | 'code' | 'mermaid' | 'vm_order' | 'resource_list' | 'homeport_nav' | 'ask_user_form' | 'tool';
|
|
10901
10908
|
status: string;
|
|
10902
|
-
[key: string]: unknown
|
|
10909
|
+
[key: string]: unknown;
|
|
10903
10910
|
}>;
|
|
10904
10911
|
readonly warning: string;
|
|
10905
10912
|
readonly sequence_index: number;
|
|
@@ -11895,7 +11902,7 @@ export type NotificationTemplateUpdateSerializersRequest = {
|
|
|
11895
11902
|
content: string;
|
|
11896
11903
|
};
|
|
11897
11904
|
export type NotifySystemEnum = 'AdminAnnouncement' | 'BroadcastMessage';
|
|
11898
|
-
export type NullEnum =
|
|
11905
|
+
export type NullEnum = never;
|
|
11899
11906
|
export type ObservableObjectTypeEnum = 'order' | 'user_role' | 'resource' | 'offering_user' | 'importable_resources' | 'service_account' | 'course_account' | 'resource_periodic_limits';
|
|
11900
11907
|
export type ObtainAuthTokenRequest = {
|
|
11901
11908
|
/**
|
|
@@ -12208,7 +12215,7 @@ export type OfferingCreateRequest = {
|
|
|
12208
12215
|
vendor_details?: string;
|
|
12209
12216
|
getting_started?: string;
|
|
12210
12217
|
integration_guide?: string;
|
|
12211
|
-
thumbnail?:
|
|
12218
|
+
thumbnail?: Blob | File | null;
|
|
12212
12219
|
plans?: Array<BaseProviderPlanRequest>;
|
|
12213
12220
|
type: string;
|
|
12214
12221
|
/**
|
|
@@ -12231,7 +12238,7 @@ export type OfferingCreateRequest = {
|
|
|
12231
12238
|
* Validation rules for resource backend_id: format regex and uniqueness scope.
|
|
12232
12239
|
*/
|
|
12233
12240
|
backend_id_rules?: unknown;
|
|
12234
|
-
image?:
|
|
12241
|
+
image?: Blob | File | null;
|
|
12235
12242
|
backend_metadata?: unknown;
|
|
12236
12243
|
compliance_checklist?: string | null;
|
|
12237
12244
|
offering_group?: string | null;
|
|
@@ -12414,7 +12421,7 @@ export type OfferingGroupAssignRequest = {
|
|
|
12414
12421
|
export type OfferingGroupRequest = {
|
|
12415
12422
|
title: string;
|
|
12416
12423
|
description?: string;
|
|
12417
|
-
icon?:
|
|
12424
|
+
icon?: Blob | File | null;
|
|
12418
12425
|
customer: string;
|
|
12419
12426
|
};
|
|
12420
12427
|
export type OfferingGroups = {
|
|
@@ -13134,6 +13141,7 @@ export type OfferingUser = {
|
|
|
13134
13141
|
readonly user_birth_date?: string | null;
|
|
13135
13142
|
/**
|
|
13136
13143
|
* Source of identity
|
|
13144
|
+
*
|
|
13137
13145
|
* Indicates what identity provider was used.
|
|
13138
13146
|
*/
|
|
13139
13147
|
readonly user_identity_source?: string;
|
|
@@ -13374,7 +13382,7 @@ export type OnboardingJustificationDocumentationRequest = {
|
|
|
13374
13382
|
/**
|
|
13375
13383
|
* Upload supporting documentation.
|
|
13376
13384
|
*/
|
|
13377
|
-
file?:
|
|
13385
|
+
file?: Blob | File | null;
|
|
13378
13386
|
};
|
|
13379
13387
|
export type OnboardingJustificationRequest = {
|
|
13380
13388
|
verification: string;
|
|
@@ -13710,7 +13718,7 @@ export type OpenStackCreateFloatingIpRequest = {
|
|
|
13710
13718
|
/**
|
|
13711
13719
|
* Existing floating IP address in selected OpenStack tenant to be assigned to new virtual machine
|
|
13712
13720
|
*/
|
|
13713
|
-
ip_address?: string;
|
|
13721
|
+
ip_address?: string | string;
|
|
13714
13722
|
subnet: string;
|
|
13715
13723
|
};
|
|
13716
13724
|
export type OpenStackCreatePortRequest = {
|
|
@@ -13758,7 +13766,7 @@ export type OpenStackFixedIp = {
|
|
|
13758
13766
|
/**
|
|
13759
13767
|
* IP address to assign to the port
|
|
13760
13768
|
*/
|
|
13761
|
-
ip_address?: string;
|
|
13769
|
+
ip_address?: string | string;
|
|
13762
13770
|
/**
|
|
13763
13771
|
* ID of the subnet in which to assign the IP address
|
|
13764
13772
|
*/
|
|
@@ -13768,7 +13776,7 @@ export type OpenStackFixedIpRequest = {
|
|
|
13768
13776
|
/**
|
|
13769
13777
|
* IP address to assign to the port
|
|
13770
13778
|
*/
|
|
13771
|
-
ip_address: string;
|
|
13779
|
+
ip_address: string | string;
|
|
13772
13780
|
/**
|
|
13773
13781
|
* ID of the subnet in which to assign the IP address
|
|
13774
13782
|
*/
|
|
@@ -13824,7 +13832,7 @@ export type OpenStackFloatingIp = {
|
|
|
13824
13832
|
/**
|
|
13825
13833
|
* The public IPv4 address of the floating IP
|
|
13826
13834
|
*/
|
|
13827
|
-
address?: string | null;
|
|
13835
|
+
address?: string | string | null;
|
|
13828
13836
|
/**
|
|
13829
13837
|
* ID of network in OpenStack where this floating IP is allocated
|
|
13830
13838
|
*/
|
|
@@ -13839,7 +13847,7 @@ export type OpenStackFloatingIp = {
|
|
|
13839
13847
|
/**
|
|
13840
13848
|
* Optional address that maps to floating IP's address in external networks
|
|
13841
13849
|
*/
|
|
13842
|
-
external_address?: string | null;
|
|
13850
|
+
external_address?: string | string | null;
|
|
13843
13851
|
readonly port_fixed_ips?: Array<OpenStackFixedIp>;
|
|
13844
13852
|
readonly instance_uuid?: string | null;
|
|
13845
13853
|
readonly instance_name?: string | null;
|
|
@@ -14367,7 +14375,7 @@ export type OpenStackLoadBalancer = {
|
|
|
14367
14375
|
/**
|
|
14368
14376
|
* An IPv4 or IPv6 address.
|
|
14369
14377
|
*/
|
|
14370
|
-
vip_address?: string;
|
|
14378
|
+
vip_address?: string | string;
|
|
14371
14379
|
readonly vip_subnet?: string | null;
|
|
14372
14380
|
readonly vip_port?: string | null;
|
|
14373
14381
|
/**
|
|
@@ -14406,7 +14414,7 @@ export type OpenStackNestedFloatingIp = {
|
|
|
14406
14414
|
/**
|
|
14407
14415
|
* The public IPv4 address of the floating IP
|
|
14408
14416
|
*/
|
|
14409
|
-
address?: string | null;
|
|
14417
|
+
address?: string | string | null;
|
|
14410
14418
|
readonly port_fixed_ips?: Array<OpenStackFixedIp>;
|
|
14411
14419
|
/**
|
|
14412
14420
|
* MAC address of the port
|
|
@@ -14495,7 +14503,7 @@ export type OpenStackNestedSubNet = {
|
|
|
14495
14503
|
/**
|
|
14496
14504
|
* IP address of the gateway for this subnet
|
|
14497
14505
|
*/
|
|
14498
|
-
gateway_ip?: string | null;
|
|
14506
|
+
gateway_ip?: string | string | null;
|
|
14499
14507
|
readonly allocation_pools?: Array<OpenStackSubNetAllocationPool>;
|
|
14500
14508
|
/**
|
|
14501
14509
|
* IP protocol version (4 or 6)
|
|
@@ -14516,7 +14524,7 @@ export type OpenStackNestedSubNetRequest = {
|
|
|
14516
14524
|
/**
|
|
14517
14525
|
* IP address of the gateway for this subnet
|
|
14518
14526
|
*/
|
|
14519
|
-
gateway_ip?: string | null;
|
|
14527
|
+
gateway_ip?: string | string | null;
|
|
14520
14528
|
/**
|
|
14521
14529
|
* IP protocol version (4 or 6)
|
|
14522
14530
|
*/
|
|
@@ -14737,7 +14745,7 @@ export type OpenStackPoolMember = {
|
|
|
14737
14745
|
/**
|
|
14738
14746
|
* An IPv4 or IPv6 address.
|
|
14739
14747
|
*/
|
|
14740
|
-
address?: string;
|
|
14748
|
+
address?: string | string;
|
|
14741
14749
|
readonly protocol_port?: number;
|
|
14742
14750
|
readonly subnet?: string | null;
|
|
14743
14751
|
readonly weight?: number;
|
|
@@ -14848,7 +14856,7 @@ export type OpenStackPortIpUpdateRequest = {
|
|
|
14848
14856
|
/**
|
|
14849
14857
|
* The IP address to assign within the subnet
|
|
14850
14858
|
*/
|
|
14851
|
-
ip_address: string;
|
|
14859
|
+
ip_address: string | string;
|
|
14852
14860
|
};
|
|
14853
14861
|
export type OpenStackPortNestedSecurityGroup = {
|
|
14854
14862
|
readonly uuid?: string;
|
|
@@ -15315,14 +15323,14 @@ export type OpenStackStaticRoute = {
|
|
|
15315
15323
|
/**
|
|
15316
15324
|
* An IPv4 or IPv6 address.
|
|
15317
15325
|
*/
|
|
15318
|
-
nexthop?: string;
|
|
15326
|
+
nexthop?: string | string;
|
|
15319
15327
|
};
|
|
15320
15328
|
export type OpenStackStaticRouteRequest = {
|
|
15321
15329
|
destination: string;
|
|
15322
15330
|
/**
|
|
15323
15331
|
* An IPv4 or IPv6 address.
|
|
15324
15332
|
*/
|
|
15325
|
-
nexthop: string;
|
|
15333
|
+
nexthop: string | string;
|
|
15326
15334
|
};
|
|
15327
15335
|
export type OpenStackSubNet = {
|
|
15328
15336
|
readonly url?: string;
|
|
@@ -15361,7 +15369,7 @@ export type OpenStackSubNet = {
|
|
|
15361
15369
|
/**
|
|
15362
15370
|
* IP address of the gateway for this subnet
|
|
15363
15371
|
*/
|
|
15364
|
-
gateway_ip?: string | null;
|
|
15372
|
+
gateway_ip?: string | string | null;
|
|
15365
15373
|
/**
|
|
15366
15374
|
* If True, no gateway IP address will be allocated
|
|
15367
15375
|
*/
|
|
@@ -15378,7 +15386,7 @@ export type OpenStackSubNet = {
|
|
|
15378
15386
|
/**
|
|
15379
15387
|
* An IPv4 or IPv6 address.
|
|
15380
15388
|
*/
|
|
15381
|
-
dns_nameservers?: Array<string>;
|
|
15389
|
+
dns_nameservers?: Array<string | string>;
|
|
15382
15390
|
host_routes?: Array<OpenStackStaticRoute>;
|
|
15383
15391
|
/**
|
|
15384
15392
|
* Is subnet connected to the default tenant router.
|
|
@@ -15402,21 +15410,21 @@ export type OpenStackSubNetAllocationPool = {
|
|
|
15402
15410
|
/**
|
|
15403
15411
|
* An IPv4 or IPv6 address.
|
|
15404
15412
|
*/
|
|
15405
|
-
start?: string;
|
|
15413
|
+
start?: string | string;
|
|
15406
15414
|
/**
|
|
15407
15415
|
* An IPv4 or IPv6 address.
|
|
15408
15416
|
*/
|
|
15409
|
-
end?: string;
|
|
15417
|
+
end?: string | string;
|
|
15410
15418
|
};
|
|
15411
15419
|
export type OpenStackSubNetAllocationPoolRequest = {
|
|
15412
15420
|
/**
|
|
15413
15421
|
* An IPv4 or IPv6 address.
|
|
15414
15422
|
*/
|
|
15415
|
-
start: string;
|
|
15423
|
+
start: string | string;
|
|
15416
15424
|
/**
|
|
15417
15425
|
* An IPv4 or IPv6 address.
|
|
15418
15426
|
*/
|
|
15419
|
-
end: string;
|
|
15427
|
+
end: string | string;
|
|
15420
15428
|
};
|
|
15421
15429
|
export type OpenStackSubNetRequest = {
|
|
15422
15430
|
name: string;
|
|
@@ -15425,7 +15433,7 @@ export type OpenStackSubNetRequest = {
|
|
|
15425
15433
|
/**
|
|
15426
15434
|
* IP address of the gateway for this subnet
|
|
15427
15435
|
*/
|
|
15428
|
-
gateway_ip?: string | null;
|
|
15436
|
+
gateway_ip?: string | string | null;
|
|
15429
15437
|
/**
|
|
15430
15438
|
* If True, no gateway IP address will be allocated
|
|
15431
15439
|
*/
|
|
@@ -15434,7 +15442,7 @@ export type OpenStackSubNetRequest = {
|
|
|
15434
15442
|
/**
|
|
15435
15443
|
* An IPv4 or IPv6 address.
|
|
15436
15444
|
*/
|
|
15437
|
-
dns_nameservers?: Array<string>;
|
|
15445
|
+
dns_nameservers?: Array<string | string>;
|
|
15438
15446
|
host_routes?: Array<OpenStackStaticRouteRequest>;
|
|
15439
15447
|
};
|
|
15440
15448
|
export type OpenStackTenant = {
|
|
@@ -15732,7 +15740,7 @@ export type OrderAttachment = {
|
|
|
15732
15740
|
attachment?: string | null;
|
|
15733
15741
|
};
|
|
15734
15742
|
export type OrderAttachmentRequest = {
|
|
15735
|
-
attachment?:
|
|
15743
|
+
attachment?: Blob | File | null;
|
|
15736
15744
|
};
|
|
15737
15745
|
export type OrderBackendIdRequest = {
|
|
15738
15746
|
backend_id: string;
|
|
@@ -16308,7 +16316,7 @@ export type PatchedCallCoiConfigurationRequest = {
|
|
|
16308
16316
|
};
|
|
16309
16317
|
export type PatchedCallManagingOrganisationRequest = {
|
|
16310
16318
|
description?: string;
|
|
16311
|
-
image?:
|
|
16319
|
+
image?: Blob | File | null;
|
|
16312
16320
|
};
|
|
16313
16321
|
export type PatchedCallResourceTemplateRequest = {
|
|
16314
16322
|
name?: string;
|
|
@@ -16413,7 +16421,7 @@ export type PatchedCategoryComponentsRequest = {
|
|
|
16413
16421
|
export type PatchedCategoryGroupRequest = {
|
|
16414
16422
|
title?: string;
|
|
16415
16423
|
description?: string;
|
|
16416
|
-
icon?:
|
|
16424
|
+
icon?: Blob | File | null;
|
|
16417
16425
|
};
|
|
16418
16426
|
export type PatchedCategoryHelpArticlesRequest = {
|
|
16419
16427
|
title?: string | null;
|
|
@@ -16483,7 +16491,7 @@ export type PatchedCustomerRequest = {
|
|
|
16483
16491
|
* Organization identifier in another application.
|
|
16484
16492
|
*/
|
|
16485
16493
|
backend_id?: string;
|
|
16486
|
-
image?:
|
|
16494
|
+
image?: Blob | File | null;
|
|
16487
16495
|
blocked?: boolean;
|
|
16488
16496
|
archived?: boolean;
|
|
16489
16497
|
display_billing_info_in_projects?: boolean;
|
|
@@ -16588,7 +16596,7 @@ export type PatchedExternalLinkRequest = {
|
|
|
16588
16596
|
name?: string;
|
|
16589
16597
|
description?: string;
|
|
16590
16598
|
link?: string;
|
|
16591
|
-
image?:
|
|
16599
|
+
image?: Blob | File | null;
|
|
16592
16600
|
};
|
|
16593
16601
|
export type PatchedFirecrestJobRequest = {
|
|
16594
16602
|
name?: string;
|
|
@@ -16816,7 +16824,7 @@ export type PatchedMaintenanceAnnouncementTemplateRequest = {
|
|
|
16816
16824
|
export type PatchedMarketplaceCategoryRequest = {
|
|
16817
16825
|
title?: string;
|
|
16818
16826
|
description?: string;
|
|
16819
|
-
icon?:
|
|
16827
|
+
icon?: Blob | File | null;
|
|
16820
16828
|
/**
|
|
16821
16829
|
* Set to "true" if this category is for OpenStack VM. Only one category can have "true" value.
|
|
16822
16830
|
*/
|
|
@@ -16894,7 +16902,7 @@ export type PatchedOfferingEstimatedCostPolicyRequest = {
|
|
|
16894
16902
|
export type PatchedOfferingGroupRequest = {
|
|
16895
16903
|
title?: string;
|
|
16896
16904
|
description?: string;
|
|
16897
|
-
icon?:
|
|
16905
|
+
icon?: Blob | File | null;
|
|
16898
16906
|
};
|
|
16899
16907
|
export type PatchedOfferingPartitionUpdateRequest = {
|
|
16900
16908
|
partition_uuid?: string;
|
|
@@ -17161,7 +17169,7 @@ export type PatchedOpenStackSubNetRequest = {
|
|
|
17161
17169
|
/**
|
|
17162
17170
|
* IP address of the gateway for this subnet
|
|
17163
17171
|
*/
|
|
17164
|
-
gateway_ip?: string | null;
|
|
17172
|
+
gateway_ip?: string | string | null;
|
|
17165
17173
|
/**
|
|
17166
17174
|
* If True, no gateway IP address will be allocated
|
|
17167
17175
|
*/
|
|
@@ -17170,7 +17178,7 @@ export type PatchedOpenStackSubNetRequest = {
|
|
|
17170
17178
|
/**
|
|
17171
17179
|
* An IPv4 or IPv6 address.
|
|
17172
17180
|
*/
|
|
17173
|
-
dns_nameservers?: Array<string>;
|
|
17181
|
+
dns_nameservers?: Array<string | string>;
|
|
17174
17182
|
host_routes?: Array<OpenStackStaticRouteRequest>;
|
|
17175
17183
|
};
|
|
17176
17184
|
export type PatchedOpenStackTenantRequest = {
|
|
@@ -17221,7 +17229,7 @@ export type PatchedPaymentRequest = {
|
|
|
17221
17229
|
profile?: string;
|
|
17222
17230
|
date_of_payment?: string;
|
|
17223
17231
|
sum?: string;
|
|
17224
|
-
proof?:
|
|
17232
|
+
proof?: Blob | File | null;
|
|
17225
17233
|
};
|
|
17226
17234
|
export type PatchedProjectCreditRequest = {
|
|
17227
17235
|
value?: string;
|
|
@@ -17301,7 +17309,7 @@ export type PatchedProjectRequest = {
|
|
|
17301
17309
|
end_date?: string | null;
|
|
17302
17310
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
17303
17311
|
is_industry?: boolean;
|
|
17304
|
-
image?:
|
|
17312
|
+
image?: Blob | File | null;
|
|
17305
17313
|
/**
|
|
17306
17314
|
* Project type
|
|
17307
17315
|
*/
|
|
@@ -17352,6 +17360,7 @@ export type PatchedProjectTemplateRequest = {
|
|
|
17352
17360
|
approval_limit?: string | null;
|
|
17353
17361
|
/**
|
|
17354
17362
|
* Maximum credit limit
|
|
17363
|
+
*
|
|
17355
17364
|
* The maximum credit limit for any projects created in this class. Any requests beyond this limit are automatically rejected. If this is None, then no maximum limit is set. If this is set to 0, then no projects can be created in this class.
|
|
17356
17365
|
*/
|
|
17357
17366
|
max_credit_limit?: string | null;
|
|
@@ -17633,7 +17642,7 @@ export type PatchedRancherServiceRequest = {
|
|
|
17633
17642
|
/**
|
|
17634
17643
|
* An IPv4 or IPv6 address.
|
|
17635
17644
|
*/
|
|
17636
|
-
cluster_ip?: string | null;
|
|
17645
|
+
cluster_ip?: string | string | null;
|
|
17637
17646
|
selector?: unknown;
|
|
17638
17647
|
target_workloads?: Array<RancherNestedWorkloadRequest>;
|
|
17639
17648
|
};
|
|
@@ -17932,7 +17941,7 @@ export type PatchedSectionRequest = {
|
|
|
17932
17941
|
export type PatchedServiceProviderRequest = {
|
|
17933
17942
|
description?: string;
|
|
17934
17943
|
enable_notifications?: boolean;
|
|
17935
|
-
image?:
|
|
17944
|
+
image?: Blob | File | null;
|
|
17936
17945
|
/**
|
|
17937
17946
|
* List of allowed domains for offering endpoints. Only staff can modify this field.
|
|
17938
17947
|
*/
|
|
@@ -18117,16 +18126,19 @@ export type PatchedUserRequest = {
|
|
|
18117
18126
|
description?: string;
|
|
18118
18127
|
/**
|
|
18119
18128
|
* Staff status
|
|
18129
|
+
*
|
|
18120
18130
|
* Designates whether the user can log into this admin site.
|
|
18121
18131
|
*/
|
|
18122
18132
|
is_staff?: boolean;
|
|
18123
18133
|
/**
|
|
18124
18134
|
* Active
|
|
18135
|
+
*
|
|
18125
18136
|
* Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
|
|
18126
18137
|
*/
|
|
18127
18138
|
is_active?: boolean;
|
|
18128
18139
|
/**
|
|
18129
18140
|
* Support status
|
|
18141
|
+
*
|
|
18130
18142
|
* Designates whether the user is a global support user.
|
|
18131
18143
|
*/
|
|
18132
18144
|
is_support?: boolean;
|
|
@@ -18146,7 +18158,7 @@ export type PatchedUserRequest = {
|
|
|
18146
18158
|
first_name?: string;
|
|
18147
18159
|
last_name?: string;
|
|
18148
18160
|
birth_date?: string | null;
|
|
18149
|
-
image?:
|
|
18161
|
+
image?: Blob | File | null;
|
|
18150
18162
|
/**
|
|
18151
18163
|
* User's gender (male, female, or unknown)
|
|
18152
18164
|
*/
|
|
@@ -18183,6 +18195,10 @@ export type PatchedUserRequest = {
|
|
|
18183
18195
|
* Designates whether the user is allowed to manage remote user identities.
|
|
18184
18196
|
*/
|
|
18185
18197
|
is_identity_manager?: boolean;
|
|
18198
|
+
/**
|
|
18199
|
+
* Designates whether the user is allowed to create and use personal access tokens.
|
|
18200
|
+
*/
|
|
18201
|
+
can_use_personal_access_tokens?: boolean;
|
|
18186
18202
|
/**
|
|
18187
18203
|
* List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
|
|
18188
18204
|
*/
|
|
@@ -18258,7 +18274,7 @@ export type PaymentRequest = {
|
|
|
18258
18274
|
profile: string;
|
|
18259
18275
|
date_of_payment: string;
|
|
18260
18276
|
sum?: string;
|
|
18261
|
-
proof?:
|
|
18277
|
+
proof?: Blob | File | null;
|
|
18262
18278
|
};
|
|
18263
18279
|
export type PaymentTypeEnum = 'fixed_price' | 'invoices' | 'payment_gw_monthly';
|
|
18264
18280
|
export type PaymentUrlRequest = {
|
|
@@ -18405,7 +18421,7 @@ export type PersonalAccessToken = {
|
|
|
18405
18421
|
/**
|
|
18406
18422
|
* An IPv4 or IPv6 address.
|
|
18407
18423
|
*/
|
|
18408
|
-
last_used_ip: string;
|
|
18424
|
+
last_used_ip: string | string;
|
|
18409
18425
|
use_count: number;
|
|
18410
18426
|
created: string;
|
|
18411
18427
|
};
|
|
@@ -19136,7 +19152,7 @@ export type ProjectRequest = {
|
|
|
19136
19152
|
end_date?: string | null;
|
|
19137
19153
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
19138
19154
|
is_industry?: boolean;
|
|
19139
|
-
image?:
|
|
19155
|
+
image?: Blob | File | null;
|
|
19140
19156
|
/**
|
|
19141
19157
|
* Project type
|
|
19142
19158
|
*/
|
|
@@ -19245,6 +19261,7 @@ export type ProjectTemplate = {
|
|
|
19245
19261
|
approval_limit?: string | null;
|
|
19246
19262
|
/**
|
|
19247
19263
|
* Maximum credit limit
|
|
19264
|
+
*
|
|
19248
19265
|
* The maximum credit limit for any projects created in this class. Any requests beyond this limit are automatically rejected. If this is None, then no maximum limit is set. If this is set to 0, then no projects can be created in this class.
|
|
19249
19266
|
*/
|
|
19250
19267
|
max_credit_limit?: string | null;
|
|
@@ -19286,6 +19303,7 @@ export type ProjectTemplateRequest = {
|
|
|
19286
19303
|
approval_limit?: string | null;
|
|
19287
19304
|
/**
|
|
19288
19305
|
* Maximum credit limit
|
|
19306
|
+
*
|
|
19289
19307
|
* The maximum credit limit for any projects created in this class. Any requests beyond this limit are automatically rejected. If this is None, then no maximum limit is set. If this is set to 0, then no projects can be created in this class.
|
|
19290
19308
|
*/
|
|
19291
19309
|
max_credit_limit?: string | null;
|
|
@@ -19457,6 +19475,7 @@ export type Proposal = {
|
|
|
19457
19475
|
readonly applicant_eduperson_assurance: unknown;
|
|
19458
19476
|
/**
|
|
19459
19477
|
* Source of identity
|
|
19478
|
+
*
|
|
19460
19479
|
* Indicates what identity provider was used.
|
|
19461
19480
|
*/
|
|
19462
19481
|
readonly applicant_identity_source: string;
|
|
@@ -19526,7 +19545,7 @@ export type ProposalDocumentationRequest = {
|
|
|
19526
19545
|
/**
|
|
19527
19546
|
* Upload supporting documentation in PDF format.
|
|
19528
19547
|
*/
|
|
19529
|
-
file?:
|
|
19548
|
+
file?: Blob | File | null;
|
|
19530
19549
|
};
|
|
19531
19550
|
export type ProposalProjectRoleMapping = {
|
|
19532
19551
|
readonly url: string;
|
|
@@ -21539,11 +21558,11 @@ export type RancherNestedPublicIp = {
|
|
|
21539
21558
|
/**
|
|
21540
21559
|
* An IPv4 or IPv6 address.
|
|
21541
21560
|
*/
|
|
21542
|
-
ip_address?: string;
|
|
21561
|
+
ip_address?: string | string;
|
|
21543
21562
|
/**
|
|
21544
21563
|
* An IPv4 or IPv6 address.
|
|
21545
21564
|
*/
|
|
21546
|
-
external_ip_address?: string;
|
|
21565
|
+
external_ip_address?: string | string;
|
|
21547
21566
|
};
|
|
21548
21567
|
export type RancherNestedWorkload = {
|
|
21549
21568
|
readonly uuid?: string;
|
|
@@ -21636,7 +21655,7 @@ export type RancherService = {
|
|
|
21636
21655
|
/**
|
|
21637
21656
|
* An IPv4 or IPv6 address.
|
|
21638
21657
|
*/
|
|
21639
|
-
cluster_ip?: string | null;
|
|
21658
|
+
cluster_ip?: string | string | null;
|
|
21640
21659
|
selector?: unknown;
|
|
21641
21660
|
target_workloads?: Array<RancherNestedWorkload>;
|
|
21642
21661
|
readonly marketplace_offering_uuid?: string | null;
|
|
@@ -21685,7 +21704,7 @@ export type RancherServiceCreate = {
|
|
|
21685
21704
|
/**
|
|
21686
21705
|
* An IPv4 or IPv6 address.
|
|
21687
21706
|
*/
|
|
21688
|
-
cluster_ip?: string | null;
|
|
21707
|
+
cluster_ip?: string | string | null;
|
|
21689
21708
|
selector?: unknown;
|
|
21690
21709
|
target_workloads?: Array<RancherWorkloadCreate>;
|
|
21691
21710
|
readonly marketplace_offering_uuid: string | null;
|
|
@@ -21715,7 +21734,7 @@ export type RancherServiceCreateRequest = {
|
|
|
21715
21734
|
/**
|
|
21716
21735
|
* An IPv4 or IPv6 address.
|
|
21717
21736
|
*/
|
|
21718
|
-
cluster_ip?: string | null;
|
|
21737
|
+
cluster_ip?: string | string | null;
|
|
21719
21738
|
selector?: unknown;
|
|
21720
21739
|
target_workloads?: Array<RancherWorkloadCreateRequest>;
|
|
21721
21740
|
};
|
|
@@ -21732,7 +21751,7 @@ export type RancherServiceRequest = {
|
|
|
21732
21751
|
/**
|
|
21733
21752
|
* An IPv4 or IPv6 address.
|
|
21734
21753
|
*/
|
|
21735
|
-
cluster_ip?: string | null;
|
|
21754
|
+
cluster_ip?: string | string | null;
|
|
21736
21755
|
selector?: unknown;
|
|
21737
21756
|
target_workloads: Array<RancherNestedWorkloadRequest>;
|
|
21738
21757
|
};
|
|
@@ -22802,6 +22821,7 @@ export type ResourceTeamMember = {
|
|
|
22802
22821
|
export type ResourceTerminateRequest = {
|
|
22803
22822
|
/**
|
|
22804
22823
|
* Termination attributes
|
|
22824
|
+
*
|
|
22805
22825
|
* Optional attributes/parameters to pass to the termination operation
|
|
22806
22826
|
*/
|
|
22807
22827
|
attributes?: unknown;
|
|
@@ -23657,7 +23677,7 @@ export type RmqSubscription = {
|
|
|
23657
23677
|
/**
|
|
23658
23678
|
* An IPv4 or IPv6 address.
|
|
23659
23679
|
*/
|
|
23660
|
-
source_ip: string;
|
|
23680
|
+
source_ip: string | string;
|
|
23661
23681
|
};
|
|
23662
23682
|
export type RmqVHostStatsItem = {
|
|
23663
23683
|
readonly name: string;
|
|
@@ -24405,7 +24425,7 @@ export type ServiceProviderRequest = {
|
|
|
24405
24425
|
description?: string;
|
|
24406
24426
|
enable_notifications?: boolean;
|
|
24407
24427
|
customer: string;
|
|
24408
|
-
image?:
|
|
24428
|
+
image?: Blob | File | null;
|
|
24409
24429
|
/**
|
|
24410
24430
|
* List of allowed domains for offering endpoints. Only staff can modify this field.
|
|
24411
24431
|
*/
|
|
@@ -26104,16 +26124,19 @@ export type User = {
|
|
|
26104
26124
|
description?: string;
|
|
26105
26125
|
/**
|
|
26106
26126
|
* Staff status
|
|
26127
|
+
*
|
|
26107
26128
|
* Designates whether the user can log into this admin site.
|
|
26108
26129
|
*/
|
|
26109
26130
|
is_staff?: boolean;
|
|
26110
26131
|
/**
|
|
26111
26132
|
* Active
|
|
26133
|
+
*
|
|
26112
26134
|
* Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
|
|
26113
26135
|
*/
|
|
26114
26136
|
is_active?: boolean;
|
|
26115
26137
|
/**
|
|
26116
26138
|
* Support status
|
|
26139
|
+
*
|
|
26117
26140
|
* Designates whether the user is a global support user.
|
|
26118
26141
|
*/
|
|
26119
26142
|
is_support?: boolean;
|
|
@@ -26153,6 +26176,7 @@ export type User = {
|
|
|
26153
26176
|
image?: string | null;
|
|
26154
26177
|
/**
|
|
26155
26178
|
* Source of identity
|
|
26179
|
+
*
|
|
26156
26180
|
* Indicates what identity provider was used.
|
|
26157
26181
|
*/
|
|
26158
26182
|
readonly identity_source?: string;
|
|
@@ -26196,6 +26220,10 @@ export type User = {
|
|
|
26196
26220
|
* Designates whether the user is allowed to manage remote user identities.
|
|
26197
26221
|
*/
|
|
26198
26222
|
is_identity_manager?: boolean;
|
|
26223
|
+
/**
|
|
26224
|
+
* Designates whether the user is allowed to create and use personal access tokens.
|
|
26225
|
+
*/
|
|
26226
|
+
can_use_personal_access_tokens?: boolean;
|
|
26199
26227
|
/**
|
|
26200
26228
|
* Per-attribute source and freshness tracking. Format: {'field_name': {'source': 'isd:<name>', 'timestamp': 'ISO8601'}}.
|
|
26201
26229
|
*/
|
|
@@ -26357,6 +26385,7 @@ export type UserAuthToken = {
|
|
|
26357
26385
|
readonly user_username: string;
|
|
26358
26386
|
/**
|
|
26359
26387
|
* Active
|
|
26388
|
+
*
|
|
26360
26389
|
* Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
|
|
26361
26390
|
*/
|
|
26362
26391
|
readonly user_is_active: boolean;
|
|
@@ -26432,7 +26461,7 @@ export type UserDataAccessLog = {
|
|
|
26432
26461
|
/**
|
|
26433
26462
|
* An IPv4 or IPv6 address.
|
|
26434
26463
|
*/
|
|
26435
|
-
ip_address?: string | null;
|
|
26464
|
+
ip_address?: string | string | null;
|
|
26436
26465
|
context?: {
|
|
26437
26466
|
[key: string]: unknown;
|
|
26438
26467
|
};
|
|
@@ -26511,16 +26540,19 @@ export type UserMe = {
|
|
|
26511
26540
|
description?: string;
|
|
26512
26541
|
/**
|
|
26513
26542
|
* Staff status
|
|
26543
|
+
*
|
|
26514
26544
|
* Designates whether the user can log into this admin site.
|
|
26515
26545
|
*/
|
|
26516
26546
|
is_staff?: boolean;
|
|
26517
26547
|
/**
|
|
26518
26548
|
* Active
|
|
26549
|
+
*
|
|
26519
26550
|
* Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
|
|
26520
26551
|
*/
|
|
26521
26552
|
is_active?: boolean;
|
|
26522
26553
|
/**
|
|
26523
26554
|
* Support status
|
|
26555
|
+
*
|
|
26524
26556
|
* Designates whether the user is a global support user.
|
|
26525
26557
|
*/
|
|
26526
26558
|
is_support?: boolean;
|
|
@@ -26560,6 +26592,7 @@ export type UserMe = {
|
|
|
26560
26592
|
image?: string | null;
|
|
26561
26593
|
/**
|
|
26562
26594
|
* Source of identity
|
|
26595
|
+
*
|
|
26563
26596
|
* Indicates what identity provider was used.
|
|
26564
26597
|
*/
|
|
26565
26598
|
readonly identity_source: string;
|
|
@@ -26603,6 +26636,10 @@ export type UserMe = {
|
|
|
26603
26636
|
* Designates whether the user is allowed to manage remote user identities.
|
|
26604
26637
|
*/
|
|
26605
26638
|
is_identity_manager?: boolean;
|
|
26639
|
+
/**
|
|
26640
|
+
* Designates whether the user is allowed to create and use personal access tokens.
|
|
26641
|
+
*/
|
|
26642
|
+
can_use_personal_access_tokens?: boolean;
|
|
26606
26643
|
/**
|
|
26607
26644
|
* Per-attribute source and freshness tracking. Format: {'field_name': {'source': 'isd:<name>', 'timestamp': 'ISO8601'}}.
|
|
26608
26645
|
*/
|
|
@@ -26709,16 +26746,19 @@ export type UserRequest = {
|
|
|
26709
26746
|
description?: string;
|
|
26710
26747
|
/**
|
|
26711
26748
|
* Staff status
|
|
26749
|
+
*
|
|
26712
26750
|
* Designates whether the user can log into this admin site.
|
|
26713
26751
|
*/
|
|
26714
26752
|
is_staff?: boolean;
|
|
26715
26753
|
/**
|
|
26716
26754
|
* Active
|
|
26755
|
+
*
|
|
26717
26756
|
* Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
|
|
26718
26757
|
*/
|
|
26719
26758
|
is_active?: boolean;
|
|
26720
26759
|
/**
|
|
26721
26760
|
* Support status
|
|
26761
|
+
*
|
|
26722
26762
|
* Designates whether the user is a global support user.
|
|
26723
26763
|
*/
|
|
26724
26764
|
is_support?: boolean;
|
|
@@ -26738,7 +26778,7 @@ export type UserRequest = {
|
|
|
26738
26778
|
first_name?: string;
|
|
26739
26779
|
last_name?: string;
|
|
26740
26780
|
birth_date?: string | null;
|
|
26741
|
-
image?:
|
|
26781
|
+
image?: Blob | File | null;
|
|
26742
26782
|
/**
|
|
26743
26783
|
* User's gender (male, female, or unknown)
|
|
26744
26784
|
*/
|
|
@@ -26775,6 +26815,10 @@ export type UserRequest = {
|
|
|
26775
26815
|
* Designates whether the user is allowed to manage remote user identities.
|
|
26776
26816
|
*/
|
|
26777
26817
|
is_identity_manager?: boolean;
|
|
26818
|
+
/**
|
|
26819
|
+
* Designates whether the user is allowed to create and use personal access tokens.
|
|
26820
|
+
*/
|
|
26821
|
+
can_use_personal_access_tokens?: boolean;
|
|
26778
26822
|
/**
|
|
26779
26823
|
* List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
|
|
26780
26824
|
*/
|
|
@@ -27521,32 +27565,32 @@ export type GenericOrderAttributes = {
|
|
|
27521
27565
|
* A free-form description for the resource.
|
|
27522
27566
|
*/
|
|
27523
27567
|
description?: string;
|
|
27524
|
-
[key: string]: unknown
|
|
27568
|
+
[key: string]: unknown;
|
|
27525
27569
|
};
|
|
27526
27570
|
export type CallManagingOrganisationRequestForm = {
|
|
27527
27571
|
description?: string;
|
|
27528
27572
|
customer: string;
|
|
27529
|
-
image?:
|
|
27573
|
+
image?: Blob | File | null;
|
|
27530
27574
|
};
|
|
27531
27575
|
export type CallManagingOrganisationRequestMultipart = {
|
|
27532
27576
|
description?: string;
|
|
27533
27577
|
customer: string;
|
|
27534
|
-
image?:
|
|
27578
|
+
image?: Blob | File | null;
|
|
27535
27579
|
};
|
|
27536
27580
|
export type PatchedCallManagingOrganisationRequestForm = {
|
|
27537
27581
|
description?: string;
|
|
27538
|
-
image?:
|
|
27582
|
+
image?: Blob | File | null;
|
|
27539
27583
|
};
|
|
27540
27584
|
export type PatchedCallManagingOrganisationRequestMultipart = {
|
|
27541
27585
|
description?: string;
|
|
27542
|
-
image?:
|
|
27586
|
+
image?: Blob | File | null;
|
|
27543
27587
|
};
|
|
27544
27588
|
export type CustomerRequestForm = {
|
|
27545
27589
|
/**
|
|
27546
27590
|
* Organization identifier in another application.
|
|
27547
27591
|
*/
|
|
27548
27592
|
backend_id?: string;
|
|
27549
|
-
image?:
|
|
27593
|
+
image?: Blob | File | null;
|
|
27550
27594
|
blocked?: boolean;
|
|
27551
27595
|
archived?: boolean;
|
|
27552
27596
|
display_billing_info_in_projects?: boolean;
|
|
@@ -27634,7 +27678,7 @@ export type CustomerRequestMultipart = {
|
|
|
27634
27678
|
* Organization identifier in another application.
|
|
27635
27679
|
*/
|
|
27636
27680
|
backend_id?: string;
|
|
27637
|
-
image?:
|
|
27681
|
+
image?: Blob | File | null;
|
|
27638
27682
|
blocked?: boolean;
|
|
27639
27683
|
archived?: boolean;
|
|
27640
27684
|
display_billing_info_in_projects?: boolean;
|
|
@@ -27722,7 +27766,7 @@ export type PatchedCustomerRequestForm = {
|
|
|
27722
27766
|
* Organization identifier in another application.
|
|
27723
27767
|
*/
|
|
27724
27768
|
backend_id?: string;
|
|
27725
|
-
image?:
|
|
27769
|
+
image?: Blob | File | null;
|
|
27726
27770
|
blocked?: boolean;
|
|
27727
27771
|
archived?: boolean;
|
|
27728
27772
|
display_billing_info_in_projects?: boolean;
|
|
@@ -27810,7 +27854,7 @@ export type PatchedCustomerRequestMultipart = {
|
|
|
27810
27854
|
* Organization identifier in another application.
|
|
27811
27855
|
*/
|
|
27812
27856
|
backend_id?: string;
|
|
27813
|
-
image?:
|
|
27857
|
+
image?: Blob | File | null;
|
|
27814
27858
|
blocked?: boolean;
|
|
27815
27859
|
archived?: boolean;
|
|
27816
27860
|
display_billing_info_in_projects?: boolean;
|
|
@@ -27897,25 +27941,25 @@ export type ExternalLinkRequestForm = {
|
|
|
27897
27941
|
name: string;
|
|
27898
27942
|
description?: string;
|
|
27899
27943
|
link: string;
|
|
27900
|
-
image?:
|
|
27944
|
+
image?: Blob | File | null;
|
|
27901
27945
|
};
|
|
27902
27946
|
export type ExternalLinkRequestMultipart = {
|
|
27903
27947
|
name: string;
|
|
27904
27948
|
description?: string;
|
|
27905
27949
|
link: string;
|
|
27906
|
-
image?:
|
|
27950
|
+
image?: Blob | File | null;
|
|
27907
27951
|
};
|
|
27908
27952
|
export type PatchedExternalLinkRequestForm = {
|
|
27909
27953
|
name?: string;
|
|
27910
27954
|
description?: string;
|
|
27911
27955
|
link?: string;
|
|
27912
|
-
image?:
|
|
27956
|
+
image?: Blob | File | null;
|
|
27913
27957
|
};
|
|
27914
27958
|
export type PatchedExternalLinkRequestMultipart = {
|
|
27915
27959
|
name?: string;
|
|
27916
27960
|
description?: string;
|
|
27917
27961
|
link?: string;
|
|
27918
|
-
image?:
|
|
27962
|
+
image?: Blob | File | null;
|
|
27919
27963
|
};
|
|
27920
27964
|
export type PaidRequestForm = {
|
|
27921
27965
|
date: string;
|
|
@@ -27928,7 +27972,7 @@ export type PaidRequestMultipart = {
|
|
|
27928
27972
|
export type MarketplaceCategoryRequestForm = {
|
|
27929
27973
|
title: string;
|
|
27930
27974
|
description?: string;
|
|
27931
|
-
icon?:
|
|
27975
|
+
icon?: Blob | File | null;
|
|
27932
27976
|
/**
|
|
27933
27977
|
* Set to "true" if this category is for OpenStack VM. Only one category can have "true" value.
|
|
27934
27978
|
*/
|
|
@@ -27946,7 +27990,7 @@ export type MarketplaceCategoryRequestForm = {
|
|
|
27946
27990
|
export type MarketplaceCategoryRequestMultipart = {
|
|
27947
27991
|
title: string;
|
|
27948
27992
|
description?: string;
|
|
27949
|
-
icon?:
|
|
27993
|
+
icon?: Blob | File | null;
|
|
27950
27994
|
/**
|
|
27951
27995
|
* Set to "true" if this category is for OpenStack VM. Only one category can have "true" value.
|
|
27952
27996
|
*/
|
|
@@ -27964,7 +28008,7 @@ export type MarketplaceCategoryRequestMultipart = {
|
|
|
27964
28008
|
export type PatchedMarketplaceCategoryRequestForm = {
|
|
27965
28009
|
title?: string;
|
|
27966
28010
|
description?: string;
|
|
27967
|
-
icon?:
|
|
28011
|
+
icon?: Blob | File | null;
|
|
27968
28012
|
/**
|
|
27969
28013
|
* Set to "true" if this category is for OpenStack VM. Only one category can have "true" value.
|
|
27970
28014
|
*/
|
|
@@ -27982,7 +28026,7 @@ export type PatchedMarketplaceCategoryRequestForm = {
|
|
|
27982
28026
|
export type PatchedMarketplaceCategoryRequestMultipart = {
|
|
27983
28027
|
title?: string;
|
|
27984
28028
|
description?: string;
|
|
27985
|
-
icon?:
|
|
28029
|
+
icon?: Blob | File | null;
|
|
27986
28030
|
/**
|
|
27987
28031
|
* Set to "true" if this category is for OpenStack VM. Only one category can have "true" value.
|
|
27988
28032
|
*/
|
|
@@ -28000,22 +28044,22 @@ export type PatchedMarketplaceCategoryRequestMultipart = {
|
|
|
28000
28044
|
export type CategoryGroupRequestForm = {
|
|
28001
28045
|
title: string;
|
|
28002
28046
|
description?: string;
|
|
28003
|
-
icon?:
|
|
28047
|
+
icon?: Blob | File | null;
|
|
28004
28048
|
};
|
|
28005
28049
|
export type CategoryGroupRequestMultipart = {
|
|
28006
28050
|
title: string;
|
|
28007
28051
|
description?: string;
|
|
28008
|
-
icon?:
|
|
28052
|
+
icon?: Blob | File | null;
|
|
28009
28053
|
};
|
|
28010
28054
|
export type PatchedCategoryGroupRequestForm = {
|
|
28011
28055
|
title?: string;
|
|
28012
28056
|
description?: string;
|
|
28013
|
-
icon?:
|
|
28057
|
+
icon?: Blob | File | null;
|
|
28014
28058
|
};
|
|
28015
28059
|
export type PatchedCategoryGroupRequestMultipart = {
|
|
28016
28060
|
title?: string;
|
|
28017
28061
|
description?: string;
|
|
28018
|
-
icon?:
|
|
28062
|
+
icon?: Blob | File | null;
|
|
28019
28063
|
};
|
|
28020
28064
|
export type OfferingFileRequestForm = {
|
|
28021
28065
|
name: string;
|
|
@@ -28030,24 +28074,24 @@ export type OfferingFileRequestMultipart = {
|
|
|
28030
28074
|
export type OfferingGroupRequestForm = {
|
|
28031
28075
|
title: string;
|
|
28032
28076
|
description?: string;
|
|
28033
|
-
icon?:
|
|
28077
|
+
icon?: Blob | File | null;
|
|
28034
28078
|
customer: string;
|
|
28035
28079
|
};
|
|
28036
28080
|
export type OfferingGroupRequestMultipart = {
|
|
28037
28081
|
title: string;
|
|
28038
28082
|
description?: string;
|
|
28039
|
-
icon?:
|
|
28083
|
+
icon?: Blob | File | null;
|
|
28040
28084
|
customer: string;
|
|
28041
28085
|
};
|
|
28042
28086
|
export type PatchedOfferingGroupRequestForm = {
|
|
28043
28087
|
title?: string;
|
|
28044
28088
|
description?: string;
|
|
28045
|
-
icon?:
|
|
28089
|
+
icon?: Blob | File | null;
|
|
28046
28090
|
};
|
|
28047
28091
|
export type PatchedOfferingGroupRequestMultipart = {
|
|
28048
28092
|
title?: string;
|
|
28049
28093
|
description?: string;
|
|
28050
|
-
icon?:
|
|
28094
|
+
icon?: Blob | File | null;
|
|
28051
28095
|
};
|
|
28052
28096
|
export type OrderConsumerInfoRequestForm = {
|
|
28053
28097
|
consumer_message?: string;
|
|
@@ -28068,10 +28112,10 @@ export type OrderProviderInfoRequestMultipart = {
|
|
|
28068
28112
|
provider_message_attachment?: Blob | File;
|
|
28069
28113
|
};
|
|
28070
28114
|
export type OrderAttachmentRequestForm = {
|
|
28071
|
-
attachment?:
|
|
28115
|
+
attachment?: Blob | File | null;
|
|
28072
28116
|
};
|
|
28073
28117
|
export type OrderAttachmentRequestMultipart = {
|
|
28074
|
-
attachment?:
|
|
28118
|
+
attachment?: Blob | File | null;
|
|
28075
28119
|
};
|
|
28076
28120
|
export type OfferingCreateRequestForm = {
|
|
28077
28121
|
name: string;
|
|
@@ -28098,7 +28142,7 @@ export type OfferingCreateRequestForm = {
|
|
|
28098
28142
|
vendor_details?: string;
|
|
28099
28143
|
getting_started?: string;
|
|
28100
28144
|
integration_guide?: string;
|
|
28101
|
-
thumbnail?:
|
|
28145
|
+
thumbnail?: Blob | File | null;
|
|
28102
28146
|
plans?: Array<BaseProviderPlanRequest>;
|
|
28103
28147
|
type: string;
|
|
28104
28148
|
/**
|
|
@@ -28121,7 +28165,7 @@ export type OfferingCreateRequestForm = {
|
|
|
28121
28165
|
* Validation rules for resource backend_id: format regex and uniqueness scope.
|
|
28122
28166
|
*/
|
|
28123
28167
|
backend_id_rules?: unknown;
|
|
28124
|
-
image?:
|
|
28168
|
+
image?: Blob | File | null;
|
|
28125
28169
|
backend_metadata?: unknown;
|
|
28126
28170
|
compliance_checklist?: string | null;
|
|
28127
28171
|
offering_group?: string | null;
|
|
@@ -28154,7 +28198,7 @@ export type OfferingCreateRequestMultipart = {
|
|
|
28154
28198
|
vendor_details?: string;
|
|
28155
28199
|
getting_started?: string;
|
|
28156
28200
|
integration_guide?: string;
|
|
28157
|
-
thumbnail?:
|
|
28201
|
+
thumbnail?: Blob | File | null;
|
|
28158
28202
|
plans?: Array<BaseProviderPlanRequest>;
|
|
28159
28203
|
type: string;
|
|
28160
28204
|
/**
|
|
@@ -28177,7 +28221,7 @@ export type OfferingCreateRequestMultipart = {
|
|
|
28177
28221
|
* Validation rules for resource backend_id: format regex and uniqueness scope.
|
|
28178
28222
|
*/
|
|
28179
28223
|
backend_id_rules?: unknown;
|
|
28180
|
-
image?:
|
|
28224
|
+
image?: Blob | File | null;
|
|
28181
28225
|
backend_metadata?: unknown;
|
|
28182
28226
|
compliance_checklist?: string | null;
|
|
28183
28227
|
offering_group?: string | null;
|
|
@@ -28279,7 +28323,7 @@ export type ServiceProviderRequestForm = {
|
|
|
28279
28323
|
description?: string;
|
|
28280
28324
|
enable_notifications?: boolean;
|
|
28281
28325
|
customer: string;
|
|
28282
|
-
image?:
|
|
28326
|
+
image?: Blob | File | null;
|
|
28283
28327
|
/**
|
|
28284
28328
|
* List of allowed domains for offering endpoints. Only staff can modify this field.
|
|
28285
28329
|
*/
|
|
@@ -28289,7 +28333,7 @@ export type ServiceProviderRequestMultipart = {
|
|
|
28289
28333
|
description?: string;
|
|
28290
28334
|
enable_notifications?: boolean;
|
|
28291
28335
|
customer: string;
|
|
28292
|
-
image?:
|
|
28336
|
+
image?: Blob | File | null;
|
|
28293
28337
|
/**
|
|
28294
28338
|
* List of allowed domains for offering endpoints. Only staff can modify this field.
|
|
28295
28339
|
*/
|
|
@@ -28298,7 +28342,7 @@ export type ServiceProviderRequestMultipart = {
|
|
|
28298
28342
|
export type PatchedServiceProviderRequestForm = {
|
|
28299
28343
|
description?: string;
|
|
28300
28344
|
enable_notifications?: boolean;
|
|
28301
|
-
image?:
|
|
28345
|
+
image?: Blob | File | null;
|
|
28302
28346
|
/**
|
|
28303
28347
|
* List of allowed domains for offering endpoints. Only staff can modify this field.
|
|
28304
28348
|
*/
|
|
@@ -28307,7 +28351,7 @@ export type PatchedServiceProviderRequestForm = {
|
|
|
28307
28351
|
export type PatchedServiceProviderRequestMultipart = {
|
|
28308
28352
|
description?: string;
|
|
28309
28353
|
enable_notifications?: boolean;
|
|
28310
|
-
image?:
|
|
28354
|
+
image?: Blob | File | null;
|
|
28311
28355
|
/**
|
|
28312
28356
|
* List of allowed domains for offering endpoints. Only staff can modify this field.
|
|
28313
28357
|
*/
|
|
@@ -28317,13 +28361,13 @@ export type OnboardingJustificationDocumentationRequestForm = {
|
|
|
28317
28361
|
/**
|
|
28318
28362
|
* Upload supporting documentation.
|
|
28319
28363
|
*/
|
|
28320
|
-
file?:
|
|
28364
|
+
file?: Blob | File | null;
|
|
28321
28365
|
};
|
|
28322
28366
|
export type OnboardingJustificationDocumentationRequestMultipart = {
|
|
28323
28367
|
/**
|
|
28324
28368
|
* Upload supporting documentation.
|
|
28325
28369
|
*/
|
|
28326
|
-
file?:
|
|
28370
|
+
file?: Blob | File | null;
|
|
28327
28371
|
};
|
|
28328
28372
|
export type ProjectRequestForm = {
|
|
28329
28373
|
name: string;
|
|
@@ -28354,7 +28398,7 @@ export type ProjectRequestForm = {
|
|
|
28354
28398
|
end_date?: string | null;
|
|
28355
28399
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
28356
28400
|
is_industry?: boolean;
|
|
28357
|
-
image?:
|
|
28401
|
+
image?: Blob | File | null;
|
|
28358
28402
|
/**
|
|
28359
28403
|
* Project type
|
|
28360
28404
|
*/
|
|
@@ -28405,7 +28449,7 @@ export type ProjectRequestMultipart = {
|
|
|
28405
28449
|
end_date?: string | null;
|
|
28406
28450
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
28407
28451
|
is_industry?: boolean;
|
|
28408
|
-
image?:
|
|
28452
|
+
image?: Blob | File | null;
|
|
28409
28453
|
/**
|
|
28410
28454
|
* Project type
|
|
28411
28455
|
*/
|
|
@@ -28456,7 +28500,7 @@ export type PatchedProjectRequestForm = {
|
|
|
28456
28500
|
end_date?: string | null;
|
|
28457
28501
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
28458
28502
|
is_industry?: boolean;
|
|
28459
|
-
image?:
|
|
28503
|
+
image?: Blob | File | null;
|
|
28460
28504
|
/**
|
|
28461
28505
|
* Project type
|
|
28462
28506
|
*/
|
|
@@ -28507,7 +28551,7 @@ export type PatchedProjectRequestMultipart = {
|
|
|
28507
28551
|
end_date?: string | null;
|
|
28508
28552
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
28509
28553
|
is_industry?: boolean;
|
|
28510
|
-
image?:
|
|
28554
|
+
image?: Blob | File | null;
|
|
28511
28555
|
/**
|
|
28512
28556
|
* Project type
|
|
28513
28557
|
*/
|
|
@@ -28584,27 +28628,27 @@ export type ConstanceSettingsRequestForm = {
|
|
|
28584
28628
|
COMMON_FOOTER_HTML?: string;
|
|
28585
28629
|
LANGUAGE_CHOICES?: string;
|
|
28586
28630
|
DISABLE_DARK_THEME?: boolean;
|
|
28587
|
-
POWERED_BY_LOGO?:
|
|
28588
|
-
HERO_IMAGE?:
|
|
28589
|
-
MARKETPLACE_HERO_IMAGE?:
|
|
28590
|
-
CALL_MANAGEMENT_HERO_IMAGE?:
|
|
28591
|
-
SIDEBAR_LOGO?:
|
|
28592
|
-
SIDEBAR_LOGO_DARK?:
|
|
28593
|
-
SIDEBAR_LOGO_MOBILE?:
|
|
28631
|
+
POWERED_BY_LOGO?: Blob | File | null;
|
|
28632
|
+
HERO_IMAGE?: Blob | File | null;
|
|
28633
|
+
MARKETPLACE_HERO_IMAGE?: Blob | File | null;
|
|
28634
|
+
CALL_MANAGEMENT_HERO_IMAGE?: Blob | File | null;
|
|
28635
|
+
SIDEBAR_LOGO?: Blob | File | null;
|
|
28636
|
+
SIDEBAR_LOGO_DARK?: Blob | File | null;
|
|
28637
|
+
SIDEBAR_LOGO_MOBILE?: Blob | File | null;
|
|
28594
28638
|
SIDEBAR_STYLE?: SidebarstyleEnum;
|
|
28595
28639
|
FONT_FAMILY?: FontfamilyEnum;
|
|
28596
|
-
LOGIN_LOGO?:
|
|
28640
|
+
LOGIN_LOGO?: Blob | File | null;
|
|
28597
28641
|
LOGIN_LOGO_MULTILINGUAL?: {
|
|
28598
|
-
[key: string]:
|
|
28642
|
+
[key: string]: Blob | File | null;
|
|
28599
28643
|
};
|
|
28600
28644
|
LOGIN_PAGE_LAYOUT?: LoginpagelayoutEnum;
|
|
28601
28645
|
LOGIN_PAGE_VIDEO_URL?: string;
|
|
28602
28646
|
LOGIN_PAGE_STATS?: Array<unknown>;
|
|
28603
28647
|
LOGIN_PAGE_CAROUSEL_SLIDES?: Array<unknown>;
|
|
28604
28648
|
LOGIN_PAGE_NEWS?: Array<unknown>;
|
|
28605
|
-
FAVICON?:
|
|
28606
|
-
OFFERING_LOGO_PLACEHOLDER?:
|
|
28607
|
-
DISCLAIMER_AREA_LOGO?:
|
|
28649
|
+
FAVICON?: Blob | File | null;
|
|
28650
|
+
OFFERING_LOGO_PLACEHOLDER?: Blob | File | null;
|
|
28651
|
+
DISCLAIMER_AREA_LOGO?: Blob | File | null;
|
|
28608
28652
|
WALDUR_SUPPORT_ENABLED?: boolean;
|
|
28609
28653
|
WALDUR_SUPPORT_ACTIVE_BACKEND_TYPE?: WaldursupportactivebackendtypeEnum;
|
|
28610
28654
|
WALDUR_SUPPORT_DISPLAY_REQUEST_TYPE?: boolean;
|
|
@@ -28698,7 +28742,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
28698
28742
|
SCIM_PULL_API_URL?: string;
|
|
28699
28743
|
SCIM_PULL_API_KEY?: string;
|
|
28700
28744
|
SCIM_PULL_SOURCE_NAME?: string;
|
|
28701
|
-
KEYCLOAK_ICON?:
|
|
28745
|
+
KEYCLOAK_ICON?: Blob | File | null;
|
|
28702
28746
|
COUNTRIES?: Array<string>;
|
|
28703
28747
|
OIDC_AUTH_URL?: string;
|
|
28704
28748
|
OIDC_INTROSPECTION_URL?: string;
|
|
@@ -28862,27 +28906,27 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
28862
28906
|
COMMON_FOOTER_HTML?: string;
|
|
28863
28907
|
LANGUAGE_CHOICES?: string;
|
|
28864
28908
|
DISABLE_DARK_THEME?: boolean;
|
|
28865
|
-
POWERED_BY_LOGO?:
|
|
28866
|
-
HERO_IMAGE?:
|
|
28867
|
-
MARKETPLACE_HERO_IMAGE?:
|
|
28868
|
-
CALL_MANAGEMENT_HERO_IMAGE?:
|
|
28869
|
-
SIDEBAR_LOGO?:
|
|
28870
|
-
SIDEBAR_LOGO_DARK?:
|
|
28871
|
-
SIDEBAR_LOGO_MOBILE?:
|
|
28909
|
+
POWERED_BY_LOGO?: Blob | File | null;
|
|
28910
|
+
HERO_IMAGE?: Blob | File | null;
|
|
28911
|
+
MARKETPLACE_HERO_IMAGE?: Blob | File | null;
|
|
28912
|
+
CALL_MANAGEMENT_HERO_IMAGE?: Blob | File | null;
|
|
28913
|
+
SIDEBAR_LOGO?: Blob | File | null;
|
|
28914
|
+
SIDEBAR_LOGO_DARK?: Blob | File | null;
|
|
28915
|
+
SIDEBAR_LOGO_MOBILE?: Blob | File | null;
|
|
28872
28916
|
SIDEBAR_STYLE?: SidebarstyleEnum;
|
|
28873
28917
|
FONT_FAMILY?: FontfamilyEnum;
|
|
28874
|
-
LOGIN_LOGO?:
|
|
28918
|
+
LOGIN_LOGO?: Blob | File | null;
|
|
28875
28919
|
LOGIN_LOGO_MULTILINGUAL?: {
|
|
28876
|
-
[key: string]:
|
|
28920
|
+
[key: string]: Blob | File | null;
|
|
28877
28921
|
};
|
|
28878
28922
|
LOGIN_PAGE_LAYOUT?: LoginpagelayoutEnum;
|
|
28879
28923
|
LOGIN_PAGE_VIDEO_URL?: string;
|
|
28880
28924
|
LOGIN_PAGE_STATS?: Array<unknown>;
|
|
28881
28925
|
LOGIN_PAGE_CAROUSEL_SLIDES?: Array<unknown>;
|
|
28882
28926
|
LOGIN_PAGE_NEWS?: Array<unknown>;
|
|
28883
|
-
FAVICON?:
|
|
28884
|
-
OFFERING_LOGO_PLACEHOLDER?:
|
|
28885
|
-
DISCLAIMER_AREA_LOGO?:
|
|
28927
|
+
FAVICON?: Blob | File | null;
|
|
28928
|
+
OFFERING_LOGO_PLACEHOLDER?: Blob | File | null;
|
|
28929
|
+
DISCLAIMER_AREA_LOGO?: Blob | File | null;
|
|
28886
28930
|
WALDUR_SUPPORT_ENABLED?: boolean;
|
|
28887
28931
|
WALDUR_SUPPORT_ACTIVE_BACKEND_TYPE?: WaldursupportactivebackendtypeEnum;
|
|
28888
28932
|
WALDUR_SUPPORT_DISPLAY_REQUEST_TYPE?: boolean;
|
|
@@ -28976,7 +29020,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
28976
29020
|
SCIM_PULL_API_URL?: string;
|
|
28977
29021
|
SCIM_PULL_API_KEY?: string;
|
|
28978
29022
|
SCIM_PULL_SOURCE_NAME?: string;
|
|
28979
|
-
KEYCLOAK_ICON?:
|
|
29023
|
+
KEYCLOAK_ICON?: Blob | File | null;
|
|
28980
29024
|
COUNTRIES?: Array<string>;
|
|
28981
29025
|
OIDC_AUTH_URL?: string;
|
|
28982
29026
|
OIDC_INTROSPECTION_URL?: string;
|
|
@@ -29089,37 +29133,37 @@ export type PaymentRequestForm = {
|
|
|
29089
29133
|
profile: string;
|
|
29090
29134
|
date_of_payment: string;
|
|
29091
29135
|
sum?: string;
|
|
29092
|
-
proof?:
|
|
29136
|
+
proof?: Blob | File | null;
|
|
29093
29137
|
};
|
|
29094
29138
|
export type PaymentRequestMultipart = {
|
|
29095
29139
|
profile: string;
|
|
29096
29140
|
date_of_payment: string;
|
|
29097
29141
|
sum?: string;
|
|
29098
|
-
proof?:
|
|
29142
|
+
proof?: Blob | File | null;
|
|
29099
29143
|
};
|
|
29100
29144
|
export type PatchedPaymentRequestForm = {
|
|
29101
29145
|
profile?: string;
|
|
29102
29146
|
date_of_payment?: string;
|
|
29103
29147
|
sum?: string;
|
|
29104
|
-
proof?:
|
|
29148
|
+
proof?: Blob | File | null;
|
|
29105
29149
|
};
|
|
29106
29150
|
export type PatchedPaymentRequestMultipart = {
|
|
29107
29151
|
profile?: string;
|
|
29108
29152
|
date_of_payment?: string;
|
|
29109
29153
|
sum?: string;
|
|
29110
|
-
proof?:
|
|
29154
|
+
proof?: Blob | File | null;
|
|
29111
29155
|
};
|
|
29112
29156
|
export type ProposalDocumentationRequestForm = {
|
|
29113
29157
|
/**
|
|
29114
29158
|
* Upload supporting documentation in PDF format.
|
|
29115
29159
|
*/
|
|
29116
|
-
file?:
|
|
29160
|
+
file?: Blob | File | null;
|
|
29117
29161
|
};
|
|
29118
29162
|
export type ProposalDocumentationRequestMultipart = {
|
|
29119
29163
|
/**
|
|
29120
29164
|
* Upload supporting documentation in PDF format.
|
|
29121
29165
|
*/
|
|
29122
|
-
file?:
|
|
29166
|
+
file?: Blob | File | null;
|
|
29123
29167
|
};
|
|
29124
29168
|
export type FirecrestJobRequestForm = {
|
|
29125
29169
|
name: string;
|
|
@@ -29168,16 +29212,19 @@ export type UserRequestForm = {
|
|
|
29168
29212
|
description?: string;
|
|
29169
29213
|
/**
|
|
29170
29214
|
* Staff status
|
|
29215
|
+
*
|
|
29171
29216
|
* Designates whether the user can log into this admin site.
|
|
29172
29217
|
*/
|
|
29173
29218
|
is_staff?: boolean;
|
|
29174
29219
|
/**
|
|
29175
29220
|
* Active
|
|
29221
|
+
*
|
|
29176
29222
|
* Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
|
|
29177
29223
|
*/
|
|
29178
29224
|
is_active?: boolean;
|
|
29179
29225
|
/**
|
|
29180
29226
|
* Support status
|
|
29227
|
+
*
|
|
29181
29228
|
* Designates whether the user is a global support user.
|
|
29182
29229
|
*/
|
|
29183
29230
|
is_support?: boolean;
|
|
@@ -29197,7 +29244,7 @@ export type UserRequestForm = {
|
|
|
29197
29244
|
first_name?: string;
|
|
29198
29245
|
last_name?: string;
|
|
29199
29246
|
birth_date?: string | null;
|
|
29200
|
-
image?:
|
|
29247
|
+
image?: Blob | File | null;
|
|
29201
29248
|
/**
|
|
29202
29249
|
* User's gender (male, female, or unknown)
|
|
29203
29250
|
*/
|
|
@@ -29234,6 +29281,10 @@ export type UserRequestForm = {
|
|
|
29234
29281
|
* Designates whether the user is allowed to manage remote user identities.
|
|
29235
29282
|
*/
|
|
29236
29283
|
is_identity_manager?: boolean;
|
|
29284
|
+
/**
|
|
29285
|
+
* Designates whether the user is allowed to create and use personal access tokens.
|
|
29286
|
+
*/
|
|
29287
|
+
can_use_personal_access_tokens?: boolean;
|
|
29237
29288
|
/**
|
|
29238
29289
|
* List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
|
|
29239
29290
|
*/
|
|
@@ -29260,16 +29311,19 @@ export type UserRequestMultipart = {
|
|
|
29260
29311
|
description?: string;
|
|
29261
29312
|
/**
|
|
29262
29313
|
* Staff status
|
|
29314
|
+
*
|
|
29263
29315
|
* Designates whether the user can log into this admin site.
|
|
29264
29316
|
*/
|
|
29265
29317
|
is_staff?: boolean;
|
|
29266
29318
|
/**
|
|
29267
29319
|
* Active
|
|
29320
|
+
*
|
|
29268
29321
|
* Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
|
|
29269
29322
|
*/
|
|
29270
29323
|
is_active?: boolean;
|
|
29271
29324
|
/**
|
|
29272
29325
|
* Support status
|
|
29326
|
+
*
|
|
29273
29327
|
* Designates whether the user is a global support user.
|
|
29274
29328
|
*/
|
|
29275
29329
|
is_support?: boolean;
|
|
@@ -29289,7 +29343,7 @@ export type UserRequestMultipart = {
|
|
|
29289
29343
|
first_name?: string;
|
|
29290
29344
|
last_name?: string;
|
|
29291
29345
|
birth_date?: string | null;
|
|
29292
|
-
image?:
|
|
29346
|
+
image?: Blob | File | null;
|
|
29293
29347
|
/**
|
|
29294
29348
|
* User's gender (male, female, or unknown)
|
|
29295
29349
|
*/
|
|
@@ -29326,6 +29380,10 @@ export type UserRequestMultipart = {
|
|
|
29326
29380
|
* Designates whether the user is allowed to manage remote user identities.
|
|
29327
29381
|
*/
|
|
29328
29382
|
is_identity_manager?: boolean;
|
|
29383
|
+
/**
|
|
29384
|
+
* Designates whether the user is allowed to create and use personal access tokens.
|
|
29385
|
+
*/
|
|
29386
|
+
can_use_personal_access_tokens?: boolean;
|
|
29329
29387
|
/**
|
|
29330
29388
|
* List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
|
|
29331
29389
|
*/
|
|
@@ -29351,16 +29409,19 @@ export type PatchedUserRequestForm = {
|
|
|
29351
29409
|
description?: string;
|
|
29352
29410
|
/**
|
|
29353
29411
|
* Staff status
|
|
29412
|
+
*
|
|
29354
29413
|
* Designates whether the user can log into this admin site.
|
|
29355
29414
|
*/
|
|
29356
29415
|
is_staff?: boolean;
|
|
29357
29416
|
/**
|
|
29358
29417
|
* Active
|
|
29418
|
+
*
|
|
29359
29419
|
* Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
|
|
29360
29420
|
*/
|
|
29361
29421
|
is_active?: boolean;
|
|
29362
29422
|
/**
|
|
29363
29423
|
* Support status
|
|
29424
|
+
*
|
|
29364
29425
|
* Designates whether the user is a global support user.
|
|
29365
29426
|
*/
|
|
29366
29427
|
is_support?: boolean;
|
|
@@ -29380,7 +29441,7 @@ export type PatchedUserRequestForm = {
|
|
|
29380
29441
|
first_name?: string;
|
|
29381
29442
|
last_name?: string;
|
|
29382
29443
|
birth_date?: string | null;
|
|
29383
|
-
image?:
|
|
29444
|
+
image?: Blob | File | null;
|
|
29384
29445
|
/**
|
|
29385
29446
|
* User's gender (male, female, or unknown)
|
|
29386
29447
|
*/
|
|
@@ -29417,6 +29478,10 @@ export type PatchedUserRequestForm = {
|
|
|
29417
29478
|
* Designates whether the user is allowed to manage remote user identities.
|
|
29418
29479
|
*/
|
|
29419
29480
|
is_identity_manager?: boolean;
|
|
29481
|
+
/**
|
|
29482
|
+
* Designates whether the user is allowed to create and use personal access tokens.
|
|
29483
|
+
*/
|
|
29484
|
+
can_use_personal_access_tokens?: boolean;
|
|
29420
29485
|
/**
|
|
29421
29486
|
* List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
|
|
29422
29487
|
*/
|
|
@@ -29442,16 +29507,19 @@ export type PatchedUserRequestMultipart = {
|
|
|
29442
29507
|
description?: string;
|
|
29443
29508
|
/**
|
|
29444
29509
|
* Staff status
|
|
29510
|
+
*
|
|
29445
29511
|
* Designates whether the user can log into this admin site.
|
|
29446
29512
|
*/
|
|
29447
29513
|
is_staff?: boolean;
|
|
29448
29514
|
/**
|
|
29449
29515
|
* Active
|
|
29516
|
+
*
|
|
29450
29517
|
* Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
|
|
29451
29518
|
*/
|
|
29452
29519
|
is_active?: boolean;
|
|
29453
29520
|
/**
|
|
29454
29521
|
* Support status
|
|
29522
|
+
*
|
|
29455
29523
|
* Designates whether the user is a global support user.
|
|
29456
29524
|
*/
|
|
29457
29525
|
is_support?: boolean;
|
|
@@ -29471,7 +29539,7 @@ export type PatchedUserRequestMultipart = {
|
|
|
29471
29539
|
first_name?: string;
|
|
29472
29540
|
last_name?: string;
|
|
29473
29541
|
birth_date?: string | null;
|
|
29474
|
-
image?:
|
|
29542
|
+
image?: Blob | File | null;
|
|
29475
29543
|
/**
|
|
29476
29544
|
* User's gender (male, female, or unknown)
|
|
29477
29545
|
*/
|
|
@@ -29508,6 +29576,10 @@ export type PatchedUserRequestMultipart = {
|
|
|
29508
29576
|
* Designates whether the user is allowed to manage remote user identities.
|
|
29509
29577
|
*/
|
|
29510
29578
|
is_identity_manager?: boolean;
|
|
29579
|
+
/**
|
|
29580
|
+
* Designates whether the user is allowed to create and use personal access tokens.
|
|
29581
|
+
*/
|
|
29582
|
+
can_use_personal_access_tokens?: boolean;
|
|
29511
29583
|
/**
|
|
29512
29584
|
* List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
|
|
29513
29585
|
*/
|
|
@@ -29596,7 +29668,7 @@ export type ProviderOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'ba
|
|
|
29596
29668
|
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';
|
|
29597
29669
|
export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
|
|
29598
29670
|
export type ProjectFieldEnum = 'affiliation' | 'affiliation_code' | 'affiliation_name' | 'affiliation_uuid' | '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' | 'science_domain_code' | 'science_domain_name' | 'science_domain_uuid' | 'science_sub_domain' | 'science_sub_domain_code' | 'science_sub_domain_name' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
|
|
29599
|
-
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' | 'should_protect_user_details' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
|
|
29671
|
+
export type UserFieldEnum = 'active_isds' | 'address' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | 'can_use_personal_access_tokens' | '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' | 'should_protect_user_details' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
|
|
29600
29672
|
export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
|
|
29601
29673
|
export type PublicOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'config_drive_default' | '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' | 'offering_group' | 'offering_group_title' | 'offering_group_uuid' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | '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';
|
|
29602
29674
|
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';
|
|
@@ -38428,7 +38500,7 @@ export type CustomersUsersListData = {
|
|
|
38428
38500
|
/**
|
|
38429
38501
|
* Filter by one or more organization roles. Select a standard role or provide a custom role string. Can be specified multiple times.
|
|
38430
38502
|
*/
|
|
38431
|
-
organization_role?: Array<
|
|
38503
|
+
organization_role?: Array<'CUSTOMER.MANAGER' | 'CUSTOMER.OWNER' | 'CUSTOMER.SUPPORT' | string>;
|
|
38432
38504
|
/**
|
|
38433
38505
|
* A page number within the paginated result set.
|
|
38434
38506
|
*/
|
|
@@ -38441,7 +38513,7 @@ export type CustomersUsersListData = {
|
|
|
38441
38513
|
/**
|
|
38442
38514
|
* Filter by one or more project roles. Select a standard role or provide a custom role string. Can be specified multiple times.
|
|
38443
38515
|
*/
|
|
38444
|
-
project_role?: Array<
|
|
38516
|
+
project_role?: Array<'PROJECT.ADMIN' | 'PROJECT.MANAGER' | 'PROJECT.MEMBER' | string>;
|
|
38445
38517
|
registration_method?: string;
|
|
38446
38518
|
/**
|
|
38447
38519
|
* User keyword
|
|
@@ -72034,7 +72106,7 @@ export type OpenstackTenantsSetQuotasData = {
|
|
|
72034
72106
|
* Use 0 to deny, -1 for unlimited
|
|
72035
72107
|
*/
|
|
72036
72108
|
port_count?: number;
|
|
72037
|
-
[key: string]: number | undefined;
|
|
72109
|
+
[key: string]: number | number | undefined;
|
|
72038
72110
|
};
|
|
72039
72111
|
path: {
|
|
72040
72112
|
uuid: string;
|
|
@@ -88285,6 +88357,3 @@ export type VmwareVirtualMachineWebConsoleRetrieveResponses = {
|
|
|
88285
88357
|
200: ConsoleUrl;
|
|
88286
88358
|
};
|
|
88287
88359
|
export type VmwareVirtualMachineWebConsoleRetrieveResponse = VmwareVirtualMachineWebConsoleRetrieveResponses[keyof VmwareVirtualMachineWebConsoleRetrieveResponses];
|
|
88288
|
-
export type ClientOptions = {
|
|
88289
|
-
baseUrl: `${string}://waldur-openapi-schema.yaml` | (string & {});
|
|
88290
|
-
};
|