waldur-js-client 8.0.9-dev.31 → 8.0.9-dev.33
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 +1062 -5
- package/dist/sdk.gen.js +28379 -55517
- package/dist/types.gen.d.ts +248 -166
- 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;
|
|
@@ -4435,6 +4439,10 @@ export type CompleteWorkflowStepRequest = {
|
|
|
4435
4439
|
* Explanation for the outcome.
|
|
4436
4440
|
*/
|
|
4437
4441
|
outcome_reason?: string;
|
|
4442
|
+
/**
|
|
4443
|
+
* Internal notes captured by the call-management team. Stored on the step instance and never returned to applicants.
|
|
4444
|
+
*/
|
|
4445
|
+
internal_notes?: string;
|
|
4438
4446
|
};
|
|
4439
4447
|
export type CompleteWorkflowStepResponse = {
|
|
4440
4448
|
detail: string;
|
|
@@ -5155,27 +5163,27 @@ export type ConstanceSettingsRequest = {
|
|
|
5155
5163
|
COMMON_FOOTER_HTML?: string;
|
|
5156
5164
|
LANGUAGE_CHOICES?: string;
|
|
5157
5165
|
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?:
|
|
5166
|
+
POWERED_BY_LOGO?: Blob | File | null;
|
|
5167
|
+
HERO_IMAGE?: Blob | File | null;
|
|
5168
|
+
MARKETPLACE_HERO_IMAGE?: Blob | File | null;
|
|
5169
|
+
CALL_MANAGEMENT_HERO_IMAGE?: Blob | File | null;
|
|
5170
|
+
SIDEBAR_LOGO?: Blob | File | null;
|
|
5171
|
+
SIDEBAR_LOGO_DARK?: Blob | File | null;
|
|
5172
|
+
SIDEBAR_LOGO_MOBILE?: Blob | File | null;
|
|
5165
5173
|
SIDEBAR_STYLE?: SidebarstyleEnum;
|
|
5166
5174
|
FONT_FAMILY?: FontfamilyEnum;
|
|
5167
|
-
LOGIN_LOGO?:
|
|
5175
|
+
LOGIN_LOGO?: Blob | File | null;
|
|
5168
5176
|
LOGIN_LOGO_MULTILINGUAL?: {
|
|
5169
|
-
[key: string]:
|
|
5177
|
+
[key: string]: Blob | File | null;
|
|
5170
5178
|
};
|
|
5171
5179
|
LOGIN_PAGE_LAYOUT?: LoginpagelayoutEnum;
|
|
5172
5180
|
LOGIN_PAGE_VIDEO_URL?: string;
|
|
5173
5181
|
LOGIN_PAGE_STATS?: Array<unknown>;
|
|
5174
5182
|
LOGIN_PAGE_CAROUSEL_SLIDES?: Array<unknown>;
|
|
5175
5183
|
LOGIN_PAGE_NEWS?: Array<unknown>;
|
|
5176
|
-
FAVICON?:
|
|
5177
|
-
OFFERING_LOGO_PLACEHOLDER?:
|
|
5178
|
-
DISCLAIMER_AREA_LOGO?:
|
|
5184
|
+
FAVICON?: Blob | File | null;
|
|
5185
|
+
OFFERING_LOGO_PLACEHOLDER?: Blob | File | null;
|
|
5186
|
+
DISCLAIMER_AREA_LOGO?: Blob | File | null;
|
|
5179
5187
|
WALDUR_SUPPORT_ENABLED?: boolean;
|
|
5180
5188
|
WALDUR_SUPPORT_ACTIVE_BACKEND_TYPE?: WaldursupportactivebackendtypeEnum;
|
|
5181
5189
|
WALDUR_SUPPORT_DISPLAY_REQUEST_TYPE?: boolean;
|
|
@@ -5269,7 +5277,7 @@ export type ConstanceSettingsRequest = {
|
|
|
5269
5277
|
SCIM_PULL_API_URL?: string;
|
|
5270
5278
|
SCIM_PULL_API_KEY?: string;
|
|
5271
5279
|
SCIM_PULL_SOURCE_NAME?: string;
|
|
5272
|
-
KEYCLOAK_ICON?:
|
|
5280
|
+
KEYCLOAK_ICON?: Blob | File | null;
|
|
5273
5281
|
COUNTRIES?: Array<string>;
|
|
5274
5282
|
OIDC_AUTH_URL?: string;
|
|
5275
5283
|
OIDC_INTROSPECTION_URL?: string;
|
|
@@ -5746,7 +5754,7 @@ export type CreatePoolMember = {
|
|
|
5746
5754
|
/**
|
|
5747
5755
|
* An IPv4 or IPv6 address.
|
|
5748
5756
|
*/
|
|
5749
|
-
address: string;
|
|
5757
|
+
address: string | string;
|
|
5750
5758
|
/**
|
|
5751
5759
|
* Port on the backend server
|
|
5752
5760
|
*/
|
|
@@ -5763,7 +5771,7 @@ export type CreatePoolMemberRequest = {
|
|
|
5763
5771
|
/**
|
|
5764
5772
|
* An IPv4 or IPv6 address.
|
|
5765
5773
|
*/
|
|
5766
|
-
address: string;
|
|
5774
|
+
address: string | string;
|
|
5767
5775
|
/**
|
|
5768
5776
|
* Port on the backend server
|
|
5769
5777
|
*/
|
|
@@ -6214,7 +6222,7 @@ export type CustomerRequest = {
|
|
|
6214
6222
|
* Organization identifier in another application.
|
|
6215
6223
|
*/
|
|
6216
6224
|
backend_id?: string;
|
|
6217
|
-
image?:
|
|
6225
|
+
image?: Blob | File | null;
|
|
6218
6226
|
blocked?: boolean;
|
|
6219
6227
|
archived?: boolean;
|
|
6220
6228
|
display_billing_info_in_projects?: boolean;
|
|
@@ -7213,7 +7221,7 @@ export type EventSubscription = {
|
|
|
7213
7221
|
/**
|
|
7214
7222
|
* An IPv4 or IPv6 address.
|
|
7215
7223
|
*/
|
|
7216
|
-
source_ip: string | null;
|
|
7224
|
+
source_ip: string | string | null;
|
|
7217
7225
|
};
|
|
7218
7226
|
export type EventSubscriptionQueue = {
|
|
7219
7227
|
readonly uuid: string;
|
|
@@ -7494,7 +7502,7 @@ export type ExternalLinkRequest = {
|
|
|
7494
7502
|
name: string;
|
|
7495
7503
|
description?: string;
|
|
7496
7504
|
link: string;
|
|
7497
|
-
image?:
|
|
7505
|
+
image?: Blob | File | null;
|
|
7498
7506
|
};
|
|
7499
7507
|
export type ExternalNetwork = {
|
|
7500
7508
|
readonly url?: string;
|
|
@@ -7529,7 +7537,7 @@ export type ExternalSubnet = {
|
|
|
7529
7537
|
/**
|
|
7530
7538
|
* An IPv4 or IPv6 address.
|
|
7531
7539
|
*/
|
|
7532
|
-
gateway_ip?: string | null;
|
|
7540
|
+
gateway_ip?: string | string | null;
|
|
7533
7541
|
ip_version?: number;
|
|
7534
7542
|
enable_dhcp?: boolean;
|
|
7535
7543
|
allocation_pools?: unknown;
|
|
@@ -7862,7 +7870,7 @@ export type GlobalUserDataAccessLog = {
|
|
|
7862
7870
|
/**
|
|
7863
7871
|
* An IPv4 or IPv6 address.
|
|
7864
7872
|
*/
|
|
7865
|
-
ip_address: string | null;
|
|
7873
|
+
ip_address: string | string | null;
|
|
7866
7874
|
context: {
|
|
7867
7875
|
[key: string]: unknown;
|
|
7868
7876
|
};
|
|
@@ -9729,6 +9737,7 @@ export type ManagedProject = {
|
|
|
9729
9737
|
project_template_data: ProjectTemplate;
|
|
9730
9738
|
/**
|
|
9731
9739
|
* Local ID
|
|
9740
|
+
*
|
|
9732
9741
|
* The local project identifier in this portal.
|
|
9733
9742
|
*/
|
|
9734
9743
|
local_identifier?: string | null;
|
|
@@ -9797,7 +9806,7 @@ export type MarketplaceCategory = {
|
|
|
9797
9806
|
export type MarketplaceCategoryRequest = {
|
|
9798
9807
|
title: string;
|
|
9799
9808
|
description?: string;
|
|
9800
|
-
icon?:
|
|
9809
|
+
icon?: Blob | File | null;
|
|
9801
9810
|
/**
|
|
9802
9811
|
* Set to "true" if this category is for OpenStack VM. Only one category can have "true" value.
|
|
9803
9812
|
*/
|
|
@@ -9885,6 +9894,7 @@ export type MarketplaceServiceProviderUser = {
|
|
|
9885
9894
|
affiliations?: unknown;
|
|
9886
9895
|
/**
|
|
9887
9896
|
* Active
|
|
9897
|
+
*
|
|
9888
9898
|
* Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
|
|
9889
9899
|
*/
|
|
9890
9900
|
is_active?: boolean;
|
|
@@ -9925,6 +9935,7 @@ export type MarketplaceServiceProviderUser = {
|
|
|
9925
9935
|
birth_date?: string | null;
|
|
9926
9936
|
/**
|
|
9927
9937
|
* Source of identity
|
|
9938
|
+
*
|
|
9928
9939
|
* Indicates what identity provider was used.
|
|
9929
9940
|
*/
|
|
9930
9941
|
identity_source?: string;
|
|
@@ -10899,7 +10910,7 @@ export type Message = {
|
|
|
10899
10910
|
id: string;
|
|
10900
10911
|
key: 'markdown' | 'code' | 'mermaid' | 'vm_order' | 'resource_list' | 'homeport_nav' | 'ask_user_form' | 'tool';
|
|
10901
10912
|
status: string;
|
|
10902
|
-
[key: string]: unknown
|
|
10913
|
+
[key: string]: unknown;
|
|
10903
10914
|
}>;
|
|
10904
10915
|
readonly warning: string;
|
|
10905
10916
|
readonly sequence_index: number;
|
|
@@ -11895,7 +11906,7 @@ export type NotificationTemplateUpdateSerializersRequest = {
|
|
|
11895
11906
|
content: string;
|
|
11896
11907
|
};
|
|
11897
11908
|
export type NotifySystemEnum = 'AdminAnnouncement' | 'BroadcastMessage';
|
|
11898
|
-
export type NullEnum =
|
|
11909
|
+
export type NullEnum = never;
|
|
11899
11910
|
export type ObservableObjectTypeEnum = 'order' | 'user_role' | 'resource' | 'offering_user' | 'importable_resources' | 'service_account' | 'course_account' | 'resource_periodic_limits';
|
|
11900
11911
|
export type ObtainAuthTokenRequest = {
|
|
11901
11912
|
/**
|
|
@@ -12208,7 +12219,7 @@ export type OfferingCreateRequest = {
|
|
|
12208
12219
|
vendor_details?: string;
|
|
12209
12220
|
getting_started?: string;
|
|
12210
12221
|
integration_guide?: string;
|
|
12211
|
-
thumbnail?:
|
|
12222
|
+
thumbnail?: Blob | File | null;
|
|
12212
12223
|
plans?: Array<BaseProviderPlanRequest>;
|
|
12213
12224
|
type: string;
|
|
12214
12225
|
/**
|
|
@@ -12231,7 +12242,7 @@ export type OfferingCreateRequest = {
|
|
|
12231
12242
|
* Validation rules for resource backend_id: format regex and uniqueness scope.
|
|
12232
12243
|
*/
|
|
12233
12244
|
backend_id_rules?: unknown;
|
|
12234
|
-
image?:
|
|
12245
|
+
image?: Blob | File | null;
|
|
12235
12246
|
backend_metadata?: unknown;
|
|
12236
12247
|
compliance_checklist?: string | null;
|
|
12237
12248
|
offering_group?: string | null;
|
|
@@ -12414,7 +12425,7 @@ export type OfferingGroupAssignRequest = {
|
|
|
12414
12425
|
export type OfferingGroupRequest = {
|
|
12415
12426
|
title: string;
|
|
12416
12427
|
description?: string;
|
|
12417
|
-
icon?:
|
|
12428
|
+
icon?: Blob | File | null;
|
|
12418
12429
|
customer: string;
|
|
12419
12430
|
};
|
|
12420
12431
|
export type OfferingGroups = {
|
|
@@ -13134,6 +13145,7 @@ export type OfferingUser = {
|
|
|
13134
13145
|
readonly user_birth_date?: string | null;
|
|
13135
13146
|
/**
|
|
13136
13147
|
* Source of identity
|
|
13148
|
+
*
|
|
13137
13149
|
* Indicates what identity provider was used.
|
|
13138
13150
|
*/
|
|
13139
13151
|
readonly user_identity_source?: string;
|
|
@@ -13374,7 +13386,7 @@ export type OnboardingJustificationDocumentationRequest = {
|
|
|
13374
13386
|
/**
|
|
13375
13387
|
* Upload supporting documentation.
|
|
13376
13388
|
*/
|
|
13377
|
-
file?:
|
|
13389
|
+
file?: Blob | File | null;
|
|
13378
13390
|
};
|
|
13379
13391
|
export type OnboardingJustificationRequest = {
|
|
13380
13392
|
verification: string;
|
|
@@ -13710,7 +13722,7 @@ export type OpenStackCreateFloatingIpRequest = {
|
|
|
13710
13722
|
/**
|
|
13711
13723
|
* Existing floating IP address in selected OpenStack tenant to be assigned to new virtual machine
|
|
13712
13724
|
*/
|
|
13713
|
-
ip_address?: string;
|
|
13725
|
+
ip_address?: string | string;
|
|
13714
13726
|
subnet: string;
|
|
13715
13727
|
};
|
|
13716
13728
|
export type OpenStackCreatePortRequest = {
|
|
@@ -13758,7 +13770,7 @@ export type OpenStackFixedIp = {
|
|
|
13758
13770
|
/**
|
|
13759
13771
|
* IP address to assign to the port
|
|
13760
13772
|
*/
|
|
13761
|
-
ip_address?: string;
|
|
13773
|
+
ip_address?: string | string;
|
|
13762
13774
|
/**
|
|
13763
13775
|
* ID of the subnet in which to assign the IP address
|
|
13764
13776
|
*/
|
|
@@ -13768,7 +13780,7 @@ export type OpenStackFixedIpRequest = {
|
|
|
13768
13780
|
/**
|
|
13769
13781
|
* IP address to assign to the port
|
|
13770
13782
|
*/
|
|
13771
|
-
ip_address: string;
|
|
13783
|
+
ip_address: string | string;
|
|
13772
13784
|
/**
|
|
13773
13785
|
* ID of the subnet in which to assign the IP address
|
|
13774
13786
|
*/
|
|
@@ -13824,7 +13836,7 @@ export type OpenStackFloatingIp = {
|
|
|
13824
13836
|
/**
|
|
13825
13837
|
* The public IPv4 address of the floating IP
|
|
13826
13838
|
*/
|
|
13827
|
-
address?: string | null;
|
|
13839
|
+
address?: string | string | null;
|
|
13828
13840
|
/**
|
|
13829
13841
|
* ID of network in OpenStack where this floating IP is allocated
|
|
13830
13842
|
*/
|
|
@@ -13839,7 +13851,7 @@ export type OpenStackFloatingIp = {
|
|
|
13839
13851
|
/**
|
|
13840
13852
|
* Optional address that maps to floating IP's address in external networks
|
|
13841
13853
|
*/
|
|
13842
|
-
external_address?: string | null;
|
|
13854
|
+
external_address?: string | string | null;
|
|
13843
13855
|
readonly port_fixed_ips?: Array<OpenStackFixedIp>;
|
|
13844
13856
|
readonly instance_uuid?: string | null;
|
|
13845
13857
|
readonly instance_name?: string | null;
|
|
@@ -14367,7 +14379,7 @@ export type OpenStackLoadBalancer = {
|
|
|
14367
14379
|
/**
|
|
14368
14380
|
* An IPv4 or IPv6 address.
|
|
14369
14381
|
*/
|
|
14370
|
-
vip_address?: string;
|
|
14382
|
+
vip_address?: string | string;
|
|
14371
14383
|
readonly vip_subnet?: string | null;
|
|
14372
14384
|
readonly vip_port?: string | null;
|
|
14373
14385
|
/**
|
|
@@ -14406,7 +14418,7 @@ export type OpenStackNestedFloatingIp = {
|
|
|
14406
14418
|
/**
|
|
14407
14419
|
* The public IPv4 address of the floating IP
|
|
14408
14420
|
*/
|
|
14409
|
-
address?: string | null;
|
|
14421
|
+
address?: string | string | null;
|
|
14410
14422
|
readonly port_fixed_ips?: Array<OpenStackFixedIp>;
|
|
14411
14423
|
/**
|
|
14412
14424
|
* MAC address of the port
|
|
@@ -14495,7 +14507,7 @@ export type OpenStackNestedSubNet = {
|
|
|
14495
14507
|
/**
|
|
14496
14508
|
* IP address of the gateway for this subnet
|
|
14497
14509
|
*/
|
|
14498
|
-
gateway_ip?: string | null;
|
|
14510
|
+
gateway_ip?: string | string | null;
|
|
14499
14511
|
readonly allocation_pools?: Array<OpenStackSubNetAllocationPool>;
|
|
14500
14512
|
/**
|
|
14501
14513
|
* IP protocol version (4 or 6)
|
|
@@ -14516,7 +14528,7 @@ export type OpenStackNestedSubNetRequest = {
|
|
|
14516
14528
|
/**
|
|
14517
14529
|
* IP address of the gateway for this subnet
|
|
14518
14530
|
*/
|
|
14519
|
-
gateway_ip?: string | null;
|
|
14531
|
+
gateway_ip?: string | string | null;
|
|
14520
14532
|
/**
|
|
14521
14533
|
* IP protocol version (4 or 6)
|
|
14522
14534
|
*/
|
|
@@ -14737,7 +14749,7 @@ export type OpenStackPoolMember = {
|
|
|
14737
14749
|
/**
|
|
14738
14750
|
* An IPv4 or IPv6 address.
|
|
14739
14751
|
*/
|
|
14740
|
-
address?: string;
|
|
14752
|
+
address?: string | string;
|
|
14741
14753
|
readonly protocol_port?: number;
|
|
14742
14754
|
readonly subnet?: string | null;
|
|
14743
14755
|
readonly weight?: number;
|
|
@@ -14848,7 +14860,7 @@ export type OpenStackPortIpUpdateRequest = {
|
|
|
14848
14860
|
/**
|
|
14849
14861
|
* The IP address to assign within the subnet
|
|
14850
14862
|
*/
|
|
14851
|
-
ip_address: string;
|
|
14863
|
+
ip_address: string | string;
|
|
14852
14864
|
};
|
|
14853
14865
|
export type OpenStackPortNestedSecurityGroup = {
|
|
14854
14866
|
readonly uuid?: string;
|
|
@@ -15315,14 +15327,14 @@ export type OpenStackStaticRoute = {
|
|
|
15315
15327
|
/**
|
|
15316
15328
|
* An IPv4 or IPv6 address.
|
|
15317
15329
|
*/
|
|
15318
|
-
nexthop?: string;
|
|
15330
|
+
nexthop?: string | string;
|
|
15319
15331
|
};
|
|
15320
15332
|
export type OpenStackStaticRouteRequest = {
|
|
15321
15333
|
destination: string;
|
|
15322
15334
|
/**
|
|
15323
15335
|
* An IPv4 or IPv6 address.
|
|
15324
15336
|
*/
|
|
15325
|
-
nexthop: string;
|
|
15337
|
+
nexthop: string | string;
|
|
15326
15338
|
};
|
|
15327
15339
|
export type OpenStackSubNet = {
|
|
15328
15340
|
readonly url?: string;
|
|
@@ -15361,7 +15373,7 @@ export type OpenStackSubNet = {
|
|
|
15361
15373
|
/**
|
|
15362
15374
|
* IP address of the gateway for this subnet
|
|
15363
15375
|
*/
|
|
15364
|
-
gateway_ip?: string | null;
|
|
15376
|
+
gateway_ip?: string | string | null;
|
|
15365
15377
|
/**
|
|
15366
15378
|
* If True, no gateway IP address will be allocated
|
|
15367
15379
|
*/
|
|
@@ -15378,7 +15390,7 @@ export type OpenStackSubNet = {
|
|
|
15378
15390
|
/**
|
|
15379
15391
|
* An IPv4 or IPv6 address.
|
|
15380
15392
|
*/
|
|
15381
|
-
dns_nameservers?: Array<string>;
|
|
15393
|
+
dns_nameservers?: Array<string | string>;
|
|
15382
15394
|
host_routes?: Array<OpenStackStaticRoute>;
|
|
15383
15395
|
/**
|
|
15384
15396
|
* Is subnet connected to the default tenant router.
|
|
@@ -15402,21 +15414,21 @@ export type OpenStackSubNetAllocationPool = {
|
|
|
15402
15414
|
/**
|
|
15403
15415
|
* An IPv4 or IPv6 address.
|
|
15404
15416
|
*/
|
|
15405
|
-
start?: string;
|
|
15417
|
+
start?: string | string;
|
|
15406
15418
|
/**
|
|
15407
15419
|
* An IPv4 or IPv6 address.
|
|
15408
15420
|
*/
|
|
15409
|
-
end?: string;
|
|
15421
|
+
end?: string | string;
|
|
15410
15422
|
};
|
|
15411
15423
|
export type OpenStackSubNetAllocationPoolRequest = {
|
|
15412
15424
|
/**
|
|
15413
15425
|
* An IPv4 or IPv6 address.
|
|
15414
15426
|
*/
|
|
15415
|
-
start: string;
|
|
15427
|
+
start: string | string;
|
|
15416
15428
|
/**
|
|
15417
15429
|
* An IPv4 or IPv6 address.
|
|
15418
15430
|
*/
|
|
15419
|
-
end: string;
|
|
15431
|
+
end: string | string;
|
|
15420
15432
|
};
|
|
15421
15433
|
export type OpenStackSubNetRequest = {
|
|
15422
15434
|
name: string;
|
|
@@ -15425,7 +15437,7 @@ export type OpenStackSubNetRequest = {
|
|
|
15425
15437
|
/**
|
|
15426
15438
|
* IP address of the gateway for this subnet
|
|
15427
15439
|
*/
|
|
15428
|
-
gateway_ip?: string | null;
|
|
15440
|
+
gateway_ip?: string | string | null;
|
|
15429
15441
|
/**
|
|
15430
15442
|
* If True, no gateway IP address will be allocated
|
|
15431
15443
|
*/
|
|
@@ -15434,7 +15446,7 @@ export type OpenStackSubNetRequest = {
|
|
|
15434
15446
|
/**
|
|
15435
15447
|
* An IPv4 or IPv6 address.
|
|
15436
15448
|
*/
|
|
15437
|
-
dns_nameservers?: Array<string>;
|
|
15449
|
+
dns_nameservers?: Array<string | string>;
|
|
15438
15450
|
host_routes?: Array<OpenStackStaticRouteRequest>;
|
|
15439
15451
|
};
|
|
15440
15452
|
export type OpenStackTenant = {
|
|
@@ -15732,7 +15744,7 @@ export type OrderAttachment = {
|
|
|
15732
15744
|
attachment?: string | null;
|
|
15733
15745
|
};
|
|
15734
15746
|
export type OrderAttachmentRequest = {
|
|
15735
|
-
attachment?:
|
|
15747
|
+
attachment?: Blob | File | null;
|
|
15736
15748
|
};
|
|
15737
15749
|
export type OrderBackendIdRequest = {
|
|
15738
15750
|
backend_id: string;
|
|
@@ -16308,7 +16320,7 @@ export type PatchedCallCoiConfigurationRequest = {
|
|
|
16308
16320
|
};
|
|
16309
16321
|
export type PatchedCallManagingOrganisationRequest = {
|
|
16310
16322
|
description?: string;
|
|
16311
|
-
image?:
|
|
16323
|
+
image?: Blob | File | null;
|
|
16312
16324
|
};
|
|
16313
16325
|
export type PatchedCallResourceTemplateRequest = {
|
|
16314
16326
|
name?: string;
|
|
@@ -16413,7 +16425,7 @@ export type PatchedCategoryComponentsRequest = {
|
|
|
16413
16425
|
export type PatchedCategoryGroupRequest = {
|
|
16414
16426
|
title?: string;
|
|
16415
16427
|
description?: string;
|
|
16416
|
-
icon?:
|
|
16428
|
+
icon?: Blob | File | null;
|
|
16417
16429
|
};
|
|
16418
16430
|
export type PatchedCategoryHelpArticlesRequest = {
|
|
16419
16431
|
title?: string | null;
|
|
@@ -16483,7 +16495,7 @@ export type PatchedCustomerRequest = {
|
|
|
16483
16495
|
* Organization identifier in another application.
|
|
16484
16496
|
*/
|
|
16485
16497
|
backend_id?: string;
|
|
16486
|
-
image?:
|
|
16498
|
+
image?: Blob | File | null;
|
|
16487
16499
|
blocked?: boolean;
|
|
16488
16500
|
archived?: boolean;
|
|
16489
16501
|
display_billing_info_in_projects?: boolean;
|
|
@@ -16588,7 +16600,7 @@ export type PatchedExternalLinkRequest = {
|
|
|
16588
16600
|
name?: string;
|
|
16589
16601
|
description?: string;
|
|
16590
16602
|
link?: string;
|
|
16591
|
-
image?:
|
|
16603
|
+
image?: Blob | File | null;
|
|
16592
16604
|
};
|
|
16593
16605
|
export type PatchedFirecrestJobRequest = {
|
|
16594
16606
|
name?: string;
|
|
@@ -16816,7 +16828,7 @@ export type PatchedMaintenanceAnnouncementTemplateRequest = {
|
|
|
16816
16828
|
export type PatchedMarketplaceCategoryRequest = {
|
|
16817
16829
|
title?: string;
|
|
16818
16830
|
description?: string;
|
|
16819
|
-
icon?:
|
|
16831
|
+
icon?: Blob | File | null;
|
|
16820
16832
|
/**
|
|
16821
16833
|
* Set to "true" if this category is for OpenStack VM. Only one category can have "true" value.
|
|
16822
16834
|
*/
|
|
@@ -16894,7 +16906,7 @@ export type PatchedOfferingEstimatedCostPolicyRequest = {
|
|
|
16894
16906
|
export type PatchedOfferingGroupRequest = {
|
|
16895
16907
|
title?: string;
|
|
16896
16908
|
description?: string;
|
|
16897
|
-
icon?:
|
|
16909
|
+
icon?: Blob | File | null;
|
|
16898
16910
|
};
|
|
16899
16911
|
export type PatchedOfferingPartitionUpdateRequest = {
|
|
16900
16912
|
partition_uuid?: string;
|
|
@@ -17161,7 +17173,7 @@ export type PatchedOpenStackSubNetRequest = {
|
|
|
17161
17173
|
/**
|
|
17162
17174
|
* IP address of the gateway for this subnet
|
|
17163
17175
|
*/
|
|
17164
|
-
gateway_ip?: string | null;
|
|
17176
|
+
gateway_ip?: string | string | null;
|
|
17165
17177
|
/**
|
|
17166
17178
|
* If True, no gateway IP address will be allocated
|
|
17167
17179
|
*/
|
|
@@ -17170,7 +17182,7 @@ export type PatchedOpenStackSubNetRequest = {
|
|
|
17170
17182
|
/**
|
|
17171
17183
|
* An IPv4 or IPv6 address.
|
|
17172
17184
|
*/
|
|
17173
|
-
dns_nameservers?: Array<string>;
|
|
17185
|
+
dns_nameservers?: Array<string | string>;
|
|
17174
17186
|
host_routes?: Array<OpenStackStaticRouteRequest>;
|
|
17175
17187
|
};
|
|
17176
17188
|
export type PatchedOpenStackTenantRequest = {
|
|
@@ -17221,7 +17233,7 @@ export type PatchedPaymentRequest = {
|
|
|
17221
17233
|
profile?: string;
|
|
17222
17234
|
date_of_payment?: string;
|
|
17223
17235
|
sum?: string;
|
|
17224
|
-
proof?:
|
|
17236
|
+
proof?: Blob | File | null;
|
|
17225
17237
|
};
|
|
17226
17238
|
export type PatchedProjectCreditRequest = {
|
|
17227
17239
|
value?: string;
|
|
@@ -17301,7 +17313,7 @@ export type PatchedProjectRequest = {
|
|
|
17301
17313
|
end_date?: string | null;
|
|
17302
17314
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
17303
17315
|
is_industry?: boolean;
|
|
17304
|
-
image?:
|
|
17316
|
+
image?: Blob | File | null;
|
|
17305
17317
|
/**
|
|
17306
17318
|
* Project type
|
|
17307
17319
|
*/
|
|
@@ -17352,6 +17364,7 @@ export type PatchedProjectTemplateRequest = {
|
|
|
17352
17364
|
approval_limit?: string | null;
|
|
17353
17365
|
/**
|
|
17354
17366
|
* Maximum credit limit
|
|
17367
|
+
*
|
|
17355
17368
|
* 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
17369
|
*/
|
|
17357
17370
|
max_credit_limit?: string | null;
|
|
@@ -17633,7 +17646,7 @@ export type PatchedRancherServiceRequest = {
|
|
|
17633
17646
|
/**
|
|
17634
17647
|
* An IPv4 or IPv6 address.
|
|
17635
17648
|
*/
|
|
17636
|
-
cluster_ip?: string | null;
|
|
17649
|
+
cluster_ip?: string | string | null;
|
|
17637
17650
|
selector?: unknown;
|
|
17638
17651
|
target_workloads?: Array<RancherNestedWorkloadRequest>;
|
|
17639
17652
|
};
|
|
@@ -17932,7 +17945,7 @@ export type PatchedSectionRequest = {
|
|
|
17932
17945
|
export type PatchedServiceProviderRequest = {
|
|
17933
17946
|
description?: string;
|
|
17934
17947
|
enable_notifications?: boolean;
|
|
17935
|
-
image?:
|
|
17948
|
+
image?: Blob | File | null;
|
|
17936
17949
|
/**
|
|
17937
17950
|
* List of allowed domains for offering endpoints. Only staff can modify this field.
|
|
17938
17951
|
*/
|
|
@@ -18117,16 +18130,19 @@ export type PatchedUserRequest = {
|
|
|
18117
18130
|
description?: string;
|
|
18118
18131
|
/**
|
|
18119
18132
|
* Staff status
|
|
18133
|
+
*
|
|
18120
18134
|
* Designates whether the user can log into this admin site.
|
|
18121
18135
|
*/
|
|
18122
18136
|
is_staff?: boolean;
|
|
18123
18137
|
/**
|
|
18124
18138
|
* Active
|
|
18139
|
+
*
|
|
18125
18140
|
* Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
|
|
18126
18141
|
*/
|
|
18127
18142
|
is_active?: boolean;
|
|
18128
18143
|
/**
|
|
18129
18144
|
* Support status
|
|
18145
|
+
*
|
|
18130
18146
|
* Designates whether the user is a global support user.
|
|
18131
18147
|
*/
|
|
18132
18148
|
is_support?: boolean;
|
|
@@ -18146,7 +18162,7 @@ export type PatchedUserRequest = {
|
|
|
18146
18162
|
first_name?: string;
|
|
18147
18163
|
last_name?: string;
|
|
18148
18164
|
birth_date?: string | null;
|
|
18149
|
-
image?:
|
|
18165
|
+
image?: Blob | File | null;
|
|
18150
18166
|
/**
|
|
18151
18167
|
* User's gender (male, female, or unknown)
|
|
18152
18168
|
*/
|
|
@@ -18183,6 +18199,10 @@ export type PatchedUserRequest = {
|
|
|
18183
18199
|
* Designates whether the user is allowed to manage remote user identities.
|
|
18184
18200
|
*/
|
|
18185
18201
|
is_identity_manager?: boolean;
|
|
18202
|
+
/**
|
|
18203
|
+
* Designates whether the user is allowed to create and use personal access tokens.
|
|
18204
|
+
*/
|
|
18205
|
+
can_use_personal_access_tokens?: boolean;
|
|
18186
18206
|
/**
|
|
18187
18207
|
* 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
18208
|
*/
|
|
@@ -18258,7 +18278,7 @@ export type PaymentRequest = {
|
|
|
18258
18278
|
profile: string;
|
|
18259
18279
|
date_of_payment: string;
|
|
18260
18280
|
sum?: string;
|
|
18261
|
-
proof?:
|
|
18281
|
+
proof?: Blob | File | null;
|
|
18262
18282
|
};
|
|
18263
18283
|
export type PaymentTypeEnum = 'fixed_price' | 'invoices' | 'payment_gw_monthly';
|
|
18264
18284
|
export type PaymentUrlRequest = {
|
|
@@ -18405,7 +18425,7 @@ export type PersonalAccessToken = {
|
|
|
18405
18425
|
/**
|
|
18406
18426
|
* An IPv4 or IPv6 address.
|
|
18407
18427
|
*/
|
|
18408
|
-
last_used_ip: string;
|
|
18428
|
+
last_used_ip: string | string;
|
|
18409
18429
|
use_count: number;
|
|
18410
18430
|
created: string;
|
|
18411
18431
|
};
|
|
@@ -19136,7 +19156,7 @@ export type ProjectRequest = {
|
|
|
19136
19156
|
end_date?: string | null;
|
|
19137
19157
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
19138
19158
|
is_industry?: boolean;
|
|
19139
|
-
image?:
|
|
19159
|
+
image?: Blob | File | null;
|
|
19140
19160
|
/**
|
|
19141
19161
|
* Project type
|
|
19142
19162
|
*/
|
|
@@ -19245,6 +19265,7 @@ export type ProjectTemplate = {
|
|
|
19245
19265
|
approval_limit?: string | null;
|
|
19246
19266
|
/**
|
|
19247
19267
|
* Maximum credit limit
|
|
19268
|
+
*
|
|
19248
19269
|
* 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
19270
|
*/
|
|
19250
19271
|
max_credit_limit?: string | null;
|
|
@@ -19286,6 +19307,7 @@ export type ProjectTemplateRequest = {
|
|
|
19286
19307
|
approval_limit?: string | null;
|
|
19287
19308
|
/**
|
|
19288
19309
|
* Maximum credit limit
|
|
19310
|
+
*
|
|
19289
19311
|
* 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
19312
|
*/
|
|
19291
19313
|
max_credit_limit?: string | null;
|
|
@@ -19457,6 +19479,7 @@ export type Proposal = {
|
|
|
19457
19479
|
readonly applicant_eduperson_assurance: unknown;
|
|
19458
19480
|
/**
|
|
19459
19481
|
* Source of identity
|
|
19482
|
+
*
|
|
19460
19483
|
* Indicates what identity provider was used.
|
|
19461
19484
|
*/
|
|
19462
19485
|
readonly applicant_identity_source: string;
|
|
@@ -19526,7 +19549,7 @@ export type ProposalDocumentationRequest = {
|
|
|
19526
19549
|
/**
|
|
19527
19550
|
* Upload supporting documentation in PDF format.
|
|
19528
19551
|
*/
|
|
19529
|
-
file?:
|
|
19552
|
+
file?: Blob | File | null;
|
|
19530
19553
|
};
|
|
19531
19554
|
export type ProposalProjectRoleMapping = {
|
|
19532
19555
|
readonly url: string;
|
|
@@ -19642,6 +19665,8 @@ export type ProposalWorkflowStepInstance = {
|
|
|
19642
19665
|
* Explanation for the outcome (e.g., rejection reason).
|
|
19643
19666
|
*/
|
|
19644
19667
|
readonly outcome_reason: string;
|
|
19668
|
+
readonly rejection_reason: string | null;
|
|
19669
|
+
readonly internal_notes: string | null;
|
|
19645
19670
|
/**
|
|
19646
19671
|
* When this step became active.
|
|
19647
19672
|
*/
|
|
@@ -19652,6 +19677,9 @@ export type ProposalWorkflowStepInstance = {
|
|
|
19652
19677
|
* Computed from started_at + step duration_in_days.
|
|
19653
19678
|
*/
|
|
19654
19679
|
readonly deadline: string | null;
|
|
19680
|
+
readonly applicant_visible: boolean;
|
|
19681
|
+
readonly duration_in_days: number | null;
|
|
19682
|
+
readonly is_required: boolean;
|
|
19655
19683
|
};
|
|
19656
19684
|
export type ProposalWorkflowStepInstanceStatusEnum = 'pending' | 'active' | 'completed' | 'expired' | 'skipped';
|
|
19657
19685
|
export type ProposedAssignment = {
|
|
@@ -21539,11 +21567,11 @@ export type RancherNestedPublicIp = {
|
|
|
21539
21567
|
/**
|
|
21540
21568
|
* An IPv4 or IPv6 address.
|
|
21541
21569
|
*/
|
|
21542
|
-
ip_address?: string;
|
|
21570
|
+
ip_address?: string | string;
|
|
21543
21571
|
/**
|
|
21544
21572
|
* An IPv4 or IPv6 address.
|
|
21545
21573
|
*/
|
|
21546
|
-
external_ip_address?: string;
|
|
21574
|
+
external_ip_address?: string | string;
|
|
21547
21575
|
};
|
|
21548
21576
|
export type RancherNestedWorkload = {
|
|
21549
21577
|
readonly uuid?: string;
|
|
@@ -21636,7 +21664,7 @@ export type RancherService = {
|
|
|
21636
21664
|
/**
|
|
21637
21665
|
* An IPv4 or IPv6 address.
|
|
21638
21666
|
*/
|
|
21639
|
-
cluster_ip?: string | null;
|
|
21667
|
+
cluster_ip?: string | string | null;
|
|
21640
21668
|
selector?: unknown;
|
|
21641
21669
|
target_workloads?: Array<RancherNestedWorkload>;
|
|
21642
21670
|
readonly marketplace_offering_uuid?: string | null;
|
|
@@ -21685,7 +21713,7 @@ export type RancherServiceCreate = {
|
|
|
21685
21713
|
/**
|
|
21686
21714
|
* An IPv4 or IPv6 address.
|
|
21687
21715
|
*/
|
|
21688
|
-
cluster_ip?: string | null;
|
|
21716
|
+
cluster_ip?: string | string | null;
|
|
21689
21717
|
selector?: unknown;
|
|
21690
21718
|
target_workloads?: Array<RancherWorkloadCreate>;
|
|
21691
21719
|
readonly marketplace_offering_uuid: string | null;
|
|
@@ -21715,7 +21743,7 @@ export type RancherServiceCreateRequest = {
|
|
|
21715
21743
|
/**
|
|
21716
21744
|
* An IPv4 or IPv6 address.
|
|
21717
21745
|
*/
|
|
21718
|
-
cluster_ip?: string | null;
|
|
21746
|
+
cluster_ip?: string | string | null;
|
|
21719
21747
|
selector?: unknown;
|
|
21720
21748
|
target_workloads?: Array<RancherWorkloadCreateRequest>;
|
|
21721
21749
|
};
|
|
@@ -21732,7 +21760,7 @@ export type RancherServiceRequest = {
|
|
|
21732
21760
|
/**
|
|
21733
21761
|
* An IPv4 or IPv6 address.
|
|
21734
21762
|
*/
|
|
21735
|
-
cluster_ip?: string | null;
|
|
21763
|
+
cluster_ip?: string | string | null;
|
|
21736
21764
|
selector?: unknown;
|
|
21737
21765
|
target_workloads: Array<RancherNestedWorkloadRequest>;
|
|
21738
21766
|
};
|
|
@@ -21881,6 +21909,10 @@ export type RejectWorkflowStepRequest = {
|
|
|
21881
21909
|
* Reason for rejecting the proposal at this step.
|
|
21882
21910
|
*/
|
|
21883
21911
|
reason: string;
|
|
21912
|
+
/**
|
|
21913
|
+
* Internal notes captured by the call-management team alongside the rejection. Never returned to applicants.
|
|
21914
|
+
*/
|
|
21915
|
+
internal_notes?: string;
|
|
21884
21916
|
};
|
|
21885
21917
|
export type RejectWorkflowStepResponse = {
|
|
21886
21918
|
detail: string;
|
|
@@ -22802,6 +22834,7 @@ export type ResourceTeamMember = {
|
|
|
22802
22834
|
export type ResourceTerminateRequest = {
|
|
22803
22835
|
/**
|
|
22804
22836
|
* Termination attributes
|
|
22837
|
+
*
|
|
22805
22838
|
* Optional attributes/parameters to pass to the termination operation
|
|
22806
22839
|
*/
|
|
22807
22840
|
attributes?: unknown;
|
|
@@ -23657,7 +23690,7 @@ export type RmqSubscription = {
|
|
|
23657
23690
|
/**
|
|
23658
23691
|
* An IPv4 or IPv6 address.
|
|
23659
23692
|
*/
|
|
23660
|
-
source_ip: string;
|
|
23693
|
+
source_ip: string | string;
|
|
23661
23694
|
};
|
|
23662
23695
|
export type RmqVHostStatsItem = {
|
|
23663
23696
|
readonly name: string;
|
|
@@ -24405,7 +24438,7 @@ export type ServiceProviderRequest = {
|
|
|
24405
24438
|
description?: string;
|
|
24406
24439
|
enable_notifications?: boolean;
|
|
24407
24440
|
customer: string;
|
|
24408
|
-
image?:
|
|
24441
|
+
image?: Blob | File | null;
|
|
24409
24442
|
/**
|
|
24410
24443
|
* List of allowed domains for offering endpoints. Only staff can modify this field.
|
|
24411
24444
|
*/
|
|
@@ -26104,16 +26137,19 @@ export type User = {
|
|
|
26104
26137
|
description?: string;
|
|
26105
26138
|
/**
|
|
26106
26139
|
* Staff status
|
|
26140
|
+
*
|
|
26107
26141
|
* Designates whether the user can log into this admin site.
|
|
26108
26142
|
*/
|
|
26109
26143
|
is_staff?: boolean;
|
|
26110
26144
|
/**
|
|
26111
26145
|
* Active
|
|
26146
|
+
*
|
|
26112
26147
|
* Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
|
|
26113
26148
|
*/
|
|
26114
26149
|
is_active?: boolean;
|
|
26115
26150
|
/**
|
|
26116
26151
|
* Support status
|
|
26152
|
+
*
|
|
26117
26153
|
* Designates whether the user is a global support user.
|
|
26118
26154
|
*/
|
|
26119
26155
|
is_support?: boolean;
|
|
@@ -26153,6 +26189,7 @@ export type User = {
|
|
|
26153
26189
|
image?: string | null;
|
|
26154
26190
|
/**
|
|
26155
26191
|
* Source of identity
|
|
26192
|
+
*
|
|
26156
26193
|
* Indicates what identity provider was used.
|
|
26157
26194
|
*/
|
|
26158
26195
|
readonly identity_source?: string;
|
|
@@ -26196,6 +26233,10 @@ export type User = {
|
|
|
26196
26233
|
* Designates whether the user is allowed to manage remote user identities.
|
|
26197
26234
|
*/
|
|
26198
26235
|
is_identity_manager?: boolean;
|
|
26236
|
+
/**
|
|
26237
|
+
* Designates whether the user is allowed to create and use personal access tokens.
|
|
26238
|
+
*/
|
|
26239
|
+
can_use_personal_access_tokens?: boolean;
|
|
26199
26240
|
/**
|
|
26200
26241
|
* Per-attribute source and freshness tracking. Format: {'field_name': {'source': 'isd:<name>', 'timestamp': 'ISO8601'}}.
|
|
26201
26242
|
*/
|
|
@@ -26357,6 +26398,7 @@ export type UserAuthToken = {
|
|
|
26357
26398
|
readonly user_username: string;
|
|
26358
26399
|
/**
|
|
26359
26400
|
* Active
|
|
26401
|
+
*
|
|
26360
26402
|
* Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
|
|
26361
26403
|
*/
|
|
26362
26404
|
readonly user_is_active: boolean;
|
|
@@ -26432,7 +26474,7 @@ export type UserDataAccessLog = {
|
|
|
26432
26474
|
/**
|
|
26433
26475
|
* An IPv4 or IPv6 address.
|
|
26434
26476
|
*/
|
|
26435
|
-
ip_address?: string | null;
|
|
26477
|
+
ip_address?: string | string | null;
|
|
26436
26478
|
context?: {
|
|
26437
26479
|
[key: string]: unknown;
|
|
26438
26480
|
};
|
|
@@ -26511,16 +26553,19 @@ export type UserMe = {
|
|
|
26511
26553
|
description?: string;
|
|
26512
26554
|
/**
|
|
26513
26555
|
* Staff status
|
|
26556
|
+
*
|
|
26514
26557
|
* Designates whether the user can log into this admin site.
|
|
26515
26558
|
*/
|
|
26516
26559
|
is_staff?: boolean;
|
|
26517
26560
|
/**
|
|
26518
26561
|
* Active
|
|
26562
|
+
*
|
|
26519
26563
|
* Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
|
|
26520
26564
|
*/
|
|
26521
26565
|
is_active?: boolean;
|
|
26522
26566
|
/**
|
|
26523
26567
|
* Support status
|
|
26568
|
+
*
|
|
26524
26569
|
* Designates whether the user is a global support user.
|
|
26525
26570
|
*/
|
|
26526
26571
|
is_support?: boolean;
|
|
@@ -26560,6 +26605,7 @@ export type UserMe = {
|
|
|
26560
26605
|
image?: string | null;
|
|
26561
26606
|
/**
|
|
26562
26607
|
* Source of identity
|
|
26608
|
+
*
|
|
26563
26609
|
* Indicates what identity provider was used.
|
|
26564
26610
|
*/
|
|
26565
26611
|
readonly identity_source: string;
|
|
@@ -26603,6 +26649,10 @@ export type UserMe = {
|
|
|
26603
26649
|
* Designates whether the user is allowed to manage remote user identities.
|
|
26604
26650
|
*/
|
|
26605
26651
|
is_identity_manager?: boolean;
|
|
26652
|
+
/**
|
|
26653
|
+
* Designates whether the user is allowed to create and use personal access tokens.
|
|
26654
|
+
*/
|
|
26655
|
+
can_use_personal_access_tokens?: boolean;
|
|
26606
26656
|
/**
|
|
26607
26657
|
* Per-attribute source and freshness tracking. Format: {'field_name': {'source': 'isd:<name>', 'timestamp': 'ISO8601'}}.
|
|
26608
26658
|
*/
|
|
@@ -26709,16 +26759,19 @@ export type UserRequest = {
|
|
|
26709
26759
|
description?: string;
|
|
26710
26760
|
/**
|
|
26711
26761
|
* Staff status
|
|
26762
|
+
*
|
|
26712
26763
|
* Designates whether the user can log into this admin site.
|
|
26713
26764
|
*/
|
|
26714
26765
|
is_staff?: boolean;
|
|
26715
26766
|
/**
|
|
26716
26767
|
* Active
|
|
26768
|
+
*
|
|
26717
26769
|
* Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
|
|
26718
26770
|
*/
|
|
26719
26771
|
is_active?: boolean;
|
|
26720
26772
|
/**
|
|
26721
26773
|
* Support status
|
|
26774
|
+
*
|
|
26722
26775
|
* Designates whether the user is a global support user.
|
|
26723
26776
|
*/
|
|
26724
26777
|
is_support?: boolean;
|
|
@@ -26738,7 +26791,7 @@ export type UserRequest = {
|
|
|
26738
26791
|
first_name?: string;
|
|
26739
26792
|
last_name?: string;
|
|
26740
26793
|
birth_date?: string | null;
|
|
26741
|
-
image?:
|
|
26794
|
+
image?: Blob | File | null;
|
|
26742
26795
|
/**
|
|
26743
26796
|
* User's gender (male, female, or unknown)
|
|
26744
26797
|
*/
|
|
@@ -26775,6 +26828,10 @@ export type UserRequest = {
|
|
|
26775
26828
|
* Designates whether the user is allowed to manage remote user identities.
|
|
26776
26829
|
*/
|
|
26777
26830
|
is_identity_manager?: boolean;
|
|
26831
|
+
/**
|
|
26832
|
+
* Designates whether the user is allowed to create and use personal access tokens.
|
|
26833
|
+
*/
|
|
26834
|
+
can_use_personal_access_tokens?: boolean;
|
|
26778
26835
|
/**
|
|
26779
26836
|
* 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
26837
|
*/
|
|
@@ -27521,32 +27578,32 @@ export type GenericOrderAttributes = {
|
|
|
27521
27578
|
* A free-form description for the resource.
|
|
27522
27579
|
*/
|
|
27523
27580
|
description?: string;
|
|
27524
|
-
[key: string]: unknown
|
|
27581
|
+
[key: string]: unknown;
|
|
27525
27582
|
};
|
|
27526
27583
|
export type CallManagingOrganisationRequestForm = {
|
|
27527
27584
|
description?: string;
|
|
27528
27585
|
customer: string;
|
|
27529
|
-
image?:
|
|
27586
|
+
image?: Blob | File | null;
|
|
27530
27587
|
};
|
|
27531
27588
|
export type CallManagingOrganisationRequestMultipart = {
|
|
27532
27589
|
description?: string;
|
|
27533
27590
|
customer: string;
|
|
27534
|
-
image?:
|
|
27591
|
+
image?: Blob | File | null;
|
|
27535
27592
|
};
|
|
27536
27593
|
export type PatchedCallManagingOrganisationRequestForm = {
|
|
27537
27594
|
description?: string;
|
|
27538
|
-
image?:
|
|
27595
|
+
image?: Blob | File | null;
|
|
27539
27596
|
};
|
|
27540
27597
|
export type PatchedCallManagingOrganisationRequestMultipart = {
|
|
27541
27598
|
description?: string;
|
|
27542
|
-
image?:
|
|
27599
|
+
image?: Blob | File | null;
|
|
27543
27600
|
};
|
|
27544
27601
|
export type CustomerRequestForm = {
|
|
27545
27602
|
/**
|
|
27546
27603
|
* Organization identifier in another application.
|
|
27547
27604
|
*/
|
|
27548
27605
|
backend_id?: string;
|
|
27549
|
-
image?:
|
|
27606
|
+
image?: Blob | File | null;
|
|
27550
27607
|
blocked?: boolean;
|
|
27551
27608
|
archived?: boolean;
|
|
27552
27609
|
display_billing_info_in_projects?: boolean;
|
|
@@ -27634,7 +27691,7 @@ export type CustomerRequestMultipart = {
|
|
|
27634
27691
|
* Organization identifier in another application.
|
|
27635
27692
|
*/
|
|
27636
27693
|
backend_id?: string;
|
|
27637
|
-
image?:
|
|
27694
|
+
image?: Blob | File | null;
|
|
27638
27695
|
blocked?: boolean;
|
|
27639
27696
|
archived?: boolean;
|
|
27640
27697
|
display_billing_info_in_projects?: boolean;
|
|
@@ -27722,7 +27779,7 @@ export type PatchedCustomerRequestForm = {
|
|
|
27722
27779
|
* Organization identifier in another application.
|
|
27723
27780
|
*/
|
|
27724
27781
|
backend_id?: string;
|
|
27725
|
-
image?:
|
|
27782
|
+
image?: Blob | File | null;
|
|
27726
27783
|
blocked?: boolean;
|
|
27727
27784
|
archived?: boolean;
|
|
27728
27785
|
display_billing_info_in_projects?: boolean;
|
|
@@ -27810,7 +27867,7 @@ export type PatchedCustomerRequestMultipart = {
|
|
|
27810
27867
|
* Organization identifier in another application.
|
|
27811
27868
|
*/
|
|
27812
27869
|
backend_id?: string;
|
|
27813
|
-
image?:
|
|
27870
|
+
image?: Blob | File | null;
|
|
27814
27871
|
blocked?: boolean;
|
|
27815
27872
|
archived?: boolean;
|
|
27816
27873
|
display_billing_info_in_projects?: boolean;
|
|
@@ -27897,25 +27954,25 @@ export type ExternalLinkRequestForm = {
|
|
|
27897
27954
|
name: string;
|
|
27898
27955
|
description?: string;
|
|
27899
27956
|
link: string;
|
|
27900
|
-
image?:
|
|
27957
|
+
image?: Blob | File | null;
|
|
27901
27958
|
};
|
|
27902
27959
|
export type ExternalLinkRequestMultipart = {
|
|
27903
27960
|
name: string;
|
|
27904
27961
|
description?: string;
|
|
27905
27962
|
link: string;
|
|
27906
|
-
image?:
|
|
27963
|
+
image?: Blob | File | null;
|
|
27907
27964
|
};
|
|
27908
27965
|
export type PatchedExternalLinkRequestForm = {
|
|
27909
27966
|
name?: string;
|
|
27910
27967
|
description?: string;
|
|
27911
27968
|
link?: string;
|
|
27912
|
-
image?:
|
|
27969
|
+
image?: Blob | File | null;
|
|
27913
27970
|
};
|
|
27914
27971
|
export type PatchedExternalLinkRequestMultipart = {
|
|
27915
27972
|
name?: string;
|
|
27916
27973
|
description?: string;
|
|
27917
27974
|
link?: string;
|
|
27918
|
-
image?:
|
|
27975
|
+
image?: Blob | File | null;
|
|
27919
27976
|
};
|
|
27920
27977
|
export type PaidRequestForm = {
|
|
27921
27978
|
date: string;
|
|
@@ -27928,7 +27985,7 @@ export type PaidRequestMultipart = {
|
|
|
27928
27985
|
export type MarketplaceCategoryRequestForm = {
|
|
27929
27986
|
title: string;
|
|
27930
27987
|
description?: string;
|
|
27931
|
-
icon?:
|
|
27988
|
+
icon?: Blob | File | null;
|
|
27932
27989
|
/**
|
|
27933
27990
|
* Set to "true" if this category is for OpenStack VM. Only one category can have "true" value.
|
|
27934
27991
|
*/
|
|
@@ -27946,7 +28003,7 @@ export type MarketplaceCategoryRequestForm = {
|
|
|
27946
28003
|
export type MarketplaceCategoryRequestMultipart = {
|
|
27947
28004
|
title: string;
|
|
27948
28005
|
description?: string;
|
|
27949
|
-
icon?:
|
|
28006
|
+
icon?: Blob | File | null;
|
|
27950
28007
|
/**
|
|
27951
28008
|
* Set to "true" if this category is for OpenStack VM. Only one category can have "true" value.
|
|
27952
28009
|
*/
|
|
@@ -27964,7 +28021,7 @@ export type MarketplaceCategoryRequestMultipart = {
|
|
|
27964
28021
|
export type PatchedMarketplaceCategoryRequestForm = {
|
|
27965
28022
|
title?: string;
|
|
27966
28023
|
description?: string;
|
|
27967
|
-
icon?:
|
|
28024
|
+
icon?: Blob | File | null;
|
|
27968
28025
|
/**
|
|
27969
28026
|
* Set to "true" if this category is for OpenStack VM. Only one category can have "true" value.
|
|
27970
28027
|
*/
|
|
@@ -27982,7 +28039,7 @@ export type PatchedMarketplaceCategoryRequestForm = {
|
|
|
27982
28039
|
export type PatchedMarketplaceCategoryRequestMultipart = {
|
|
27983
28040
|
title?: string;
|
|
27984
28041
|
description?: string;
|
|
27985
|
-
icon?:
|
|
28042
|
+
icon?: Blob | File | null;
|
|
27986
28043
|
/**
|
|
27987
28044
|
* Set to "true" if this category is for OpenStack VM. Only one category can have "true" value.
|
|
27988
28045
|
*/
|
|
@@ -28000,22 +28057,22 @@ export type PatchedMarketplaceCategoryRequestMultipart = {
|
|
|
28000
28057
|
export type CategoryGroupRequestForm = {
|
|
28001
28058
|
title: string;
|
|
28002
28059
|
description?: string;
|
|
28003
|
-
icon?:
|
|
28060
|
+
icon?: Blob | File | null;
|
|
28004
28061
|
};
|
|
28005
28062
|
export type CategoryGroupRequestMultipart = {
|
|
28006
28063
|
title: string;
|
|
28007
28064
|
description?: string;
|
|
28008
|
-
icon?:
|
|
28065
|
+
icon?: Blob | File | null;
|
|
28009
28066
|
};
|
|
28010
28067
|
export type PatchedCategoryGroupRequestForm = {
|
|
28011
28068
|
title?: string;
|
|
28012
28069
|
description?: string;
|
|
28013
|
-
icon?:
|
|
28070
|
+
icon?: Blob | File | null;
|
|
28014
28071
|
};
|
|
28015
28072
|
export type PatchedCategoryGroupRequestMultipart = {
|
|
28016
28073
|
title?: string;
|
|
28017
28074
|
description?: string;
|
|
28018
|
-
icon?:
|
|
28075
|
+
icon?: Blob | File | null;
|
|
28019
28076
|
};
|
|
28020
28077
|
export type OfferingFileRequestForm = {
|
|
28021
28078
|
name: string;
|
|
@@ -28030,24 +28087,24 @@ export type OfferingFileRequestMultipart = {
|
|
|
28030
28087
|
export type OfferingGroupRequestForm = {
|
|
28031
28088
|
title: string;
|
|
28032
28089
|
description?: string;
|
|
28033
|
-
icon?:
|
|
28090
|
+
icon?: Blob | File | null;
|
|
28034
28091
|
customer: string;
|
|
28035
28092
|
};
|
|
28036
28093
|
export type OfferingGroupRequestMultipart = {
|
|
28037
28094
|
title: string;
|
|
28038
28095
|
description?: string;
|
|
28039
|
-
icon?:
|
|
28096
|
+
icon?: Blob | File | null;
|
|
28040
28097
|
customer: string;
|
|
28041
28098
|
};
|
|
28042
28099
|
export type PatchedOfferingGroupRequestForm = {
|
|
28043
28100
|
title?: string;
|
|
28044
28101
|
description?: string;
|
|
28045
|
-
icon?:
|
|
28102
|
+
icon?: Blob | File | null;
|
|
28046
28103
|
};
|
|
28047
28104
|
export type PatchedOfferingGroupRequestMultipart = {
|
|
28048
28105
|
title?: string;
|
|
28049
28106
|
description?: string;
|
|
28050
|
-
icon?:
|
|
28107
|
+
icon?: Blob | File | null;
|
|
28051
28108
|
};
|
|
28052
28109
|
export type OrderConsumerInfoRequestForm = {
|
|
28053
28110
|
consumer_message?: string;
|
|
@@ -28068,10 +28125,10 @@ export type OrderProviderInfoRequestMultipart = {
|
|
|
28068
28125
|
provider_message_attachment?: Blob | File;
|
|
28069
28126
|
};
|
|
28070
28127
|
export type OrderAttachmentRequestForm = {
|
|
28071
|
-
attachment?:
|
|
28128
|
+
attachment?: Blob | File | null;
|
|
28072
28129
|
};
|
|
28073
28130
|
export type OrderAttachmentRequestMultipart = {
|
|
28074
|
-
attachment?:
|
|
28131
|
+
attachment?: Blob | File | null;
|
|
28075
28132
|
};
|
|
28076
28133
|
export type OfferingCreateRequestForm = {
|
|
28077
28134
|
name: string;
|
|
@@ -28098,7 +28155,7 @@ export type OfferingCreateRequestForm = {
|
|
|
28098
28155
|
vendor_details?: string;
|
|
28099
28156
|
getting_started?: string;
|
|
28100
28157
|
integration_guide?: string;
|
|
28101
|
-
thumbnail?:
|
|
28158
|
+
thumbnail?: Blob | File | null;
|
|
28102
28159
|
plans?: Array<BaseProviderPlanRequest>;
|
|
28103
28160
|
type: string;
|
|
28104
28161
|
/**
|
|
@@ -28121,7 +28178,7 @@ export type OfferingCreateRequestForm = {
|
|
|
28121
28178
|
* Validation rules for resource backend_id: format regex and uniqueness scope.
|
|
28122
28179
|
*/
|
|
28123
28180
|
backend_id_rules?: unknown;
|
|
28124
|
-
image?:
|
|
28181
|
+
image?: Blob | File | null;
|
|
28125
28182
|
backend_metadata?: unknown;
|
|
28126
28183
|
compliance_checklist?: string | null;
|
|
28127
28184
|
offering_group?: string | null;
|
|
@@ -28154,7 +28211,7 @@ export type OfferingCreateRequestMultipart = {
|
|
|
28154
28211
|
vendor_details?: string;
|
|
28155
28212
|
getting_started?: string;
|
|
28156
28213
|
integration_guide?: string;
|
|
28157
|
-
thumbnail?:
|
|
28214
|
+
thumbnail?: Blob | File | null;
|
|
28158
28215
|
plans?: Array<BaseProviderPlanRequest>;
|
|
28159
28216
|
type: string;
|
|
28160
28217
|
/**
|
|
@@ -28177,7 +28234,7 @@ export type OfferingCreateRequestMultipart = {
|
|
|
28177
28234
|
* Validation rules for resource backend_id: format regex and uniqueness scope.
|
|
28178
28235
|
*/
|
|
28179
28236
|
backend_id_rules?: unknown;
|
|
28180
|
-
image?:
|
|
28237
|
+
image?: Blob | File | null;
|
|
28181
28238
|
backend_metadata?: unknown;
|
|
28182
28239
|
compliance_checklist?: string | null;
|
|
28183
28240
|
offering_group?: string | null;
|
|
@@ -28279,7 +28336,7 @@ export type ServiceProviderRequestForm = {
|
|
|
28279
28336
|
description?: string;
|
|
28280
28337
|
enable_notifications?: boolean;
|
|
28281
28338
|
customer: string;
|
|
28282
|
-
image?:
|
|
28339
|
+
image?: Blob | File | null;
|
|
28283
28340
|
/**
|
|
28284
28341
|
* List of allowed domains for offering endpoints. Only staff can modify this field.
|
|
28285
28342
|
*/
|
|
@@ -28289,7 +28346,7 @@ export type ServiceProviderRequestMultipart = {
|
|
|
28289
28346
|
description?: string;
|
|
28290
28347
|
enable_notifications?: boolean;
|
|
28291
28348
|
customer: string;
|
|
28292
|
-
image?:
|
|
28349
|
+
image?: Blob | File | null;
|
|
28293
28350
|
/**
|
|
28294
28351
|
* List of allowed domains for offering endpoints. Only staff can modify this field.
|
|
28295
28352
|
*/
|
|
@@ -28298,7 +28355,7 @@ export type ServiceProviderRequestMultipart = {
|
|
|
28298
28355
|
export type PatchedServiceProviderRequestForm = {
|
|
28299
28356
|
description?: string;
|
|
28300
28357
|
enable_notifications?: boolean;
|
|
28301
|
-
image?:
|
|
28358
|
+
image?: Blob | File | null;
|
|
28302
28359
|
/**
|
|
28303
28360
|
* List of allowed domains for offering endpoints. Only staff can modify this field.
|
|
28304
28361
|
*/
|
|
@@ -28307,7 +28364,7 @@ export type PatchedServiceProviderRequestForm = {
|
|
|
28307
28364
|
export type PatchedServiceProviderRequestMultipart = {
|
|
28308
28365
|
description?: string;
|
|
28309
28366
|
enable_notifications?: boolean;
|
|
28310
|
-
image?:
|
|
28367
|
+
image?: Blob | File | null;
|
|
28311
28368
|
/**
|
|
28312
28369
|
* List of allowed domains for offering endpoints. Only staff can modify this field.
|
|
28313
28370
|
*/
|
|
@@ -28317,13 +28374,13 @@ export type OnboardingJustificationDocumentationRequestForm = {
|
|
|
28317
28374
|
/**
|
|
28318
28375
|
* Upload supporting documentation.
|
|
28319
28376
|
*/
|
|
28320
|
-
file?:
|
|
28377
|
+
file?: Blob | File | null;
|
|
28321
28378
|
};
|
|
28322
28379
|
export type OnboardingJustificationDocumentationRequestMultipart = {
|
|
28323
28380
|
/**
|
|
28324
28381
|
* Upload supporting documentation.
|
|
28325
28382
|
*/
|
|
28326
|
-
file?:
|
|
28383
|
+
file?: Blob | File | null;
|
|
28327
28384
|
};
|
|
28328
28385
|
export type ProjectRequestForm = {
|
|
28329
28386
|
name: string;
|
|
@@ -28354,7 +28411,7 @@ export type ProjectRequestForm = {
|
|
|
28354
28411
|
end_date?: string | null;
|
|
28355
28412
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
28356
28413
|
is_industry?: boolean;
|
|
28357
|
-
image?:
|
|
28414
|
+
image?: Blob | File | null;
|
|
28358
28415
|
/**
|
|
28359
28416
|
* Project type
|
|
28360
28417
|
*/
|
|
@@ -28405,7 +28462,7 @@ export type ProjectRequestMultipart = {
|
|
|
28405
28462
|
end_date?: string | null;
|
|
28406
28463
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
28407
28464
|
is_industry?: boolean;
|
|
28408
|
-
image?:
|
|
28465
|
+
image?: Blob | File | null;
|
|
28409
28466
|
/**
|
|
28410
28467
|
* Project type
|
|
28411
28468
|
*/
|
|
@@ -28456,7 +28513,7 @@ export type PatchedProjectRequestForm = {
|
|
|
28456
28513
|
end_date?: string | null;
|
|
28457
28514
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
28458
28515
|
is_industry?: boolean;
|
|
28459
|
-
image?:
|
|
28516
|
+
image?: Blob | File | null;
|
|
28460
28517
|
/**
|
|
28461
28518
|
* Project type
|
|
28462
28519
|
*/
|
|
@@ -28507,7 +28564,7 @@ export type PatchedProjectRequestMultipart = {
|
|
|
28507
28564
|
end_date?: string | null;
|
|
28508
28565
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
28509
28566
|
is_industry?: boolean;
|
|
28510
|
-
image?:
|
|
28567
|
+
image?: Blob | File | null;
|
|
28511
28568
|
/**
|
|
28512
28569
|
* Project type
|
|
28513
28570
|
*/
|
|
@@ -28584,27 +28641,27 @@ export type ConstanceSettingsRequestForm = {
|
|
|
28584
28641
|
COMMON_FOOTER_HTML?: string;
|
|
28585
28642
|
LANGUAGE_CHOICES?: string;
|
|
28586
28643
|
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?:
|
|
28644
|
+
POWERED_BY_LOGO?: Blob | File | null;
|
|
28645
|
+
HERO_IMAGE?: Blob | File | null;
|
|
28646
|
+
MARKETPLACE_HERO_IMAGE?: Blob | File | null;
|
|
28647
|
+
CALL_MANAGEMENT_HERO_IMAGE?: Blob | File | null;
|
|
28648
|
+
SIDEBAR_LOGO?: Blob | File | null;
|
|
28649
|
+
SIDEBAR_LOGO_DARK?: Blob | File | null;
|
|
28650
|
+
SIDEBAR_LOGO_MOBILE?: Blob | File | null;
|
|
28594
28651
|
SIDEBAR_STYLE?: SidebarstyleEnum;
|
|
28595
28652
|
FONT_FAMILY?: FontfamilyEnum;
|
|
28596
|
-
LOGIN_LOGO?:
|
|
28653
|
+
LOGIN_LOGO?: Blob | File | null;
|
|
28597
28654
|
LOGIN_LOGO_MULTILINGUAL?: {
|
|
28598
|
-
[key: string]:
|
|
28655
|
+
[key: string]: Blob | File | null;
|
|
28599
28656
|
};
|
|
28600
28657
|
LOGIN_PAGE_LAYOUT?: LoginpagelayoutEnum;
|
|
28601
28658
|
LOGIN_PAGE_VIDEO_URL?: string;
|
|
28602
28659
|
LOGIN_PAGE_STATS?: Array<unknown>;
|
|
28603
28660
|
LOGIN_PAGE_CAROUSEL_SLIDES?: Array<unknown>;
|
|
28604
28661
|
LOGIN_PAGE_NEWS?: Array<unknown>;
|
|
28605
|
-
FAVICON?:
|
|
28606
|
-
OFFERING_LOGO_PLACEHOLDER?:
|
|
28607
|
-
DISCLAIMER_AREA_LOGO?:
|
|
28662
|
+
FAVICON?: Blob | File | null;
|
|
28663
|
+
OFFERING_LOGO_PLACEHOLDER?: Blob | File | null;
|
|
28664
|
+
DISCLAIMER_AREA_LOGO?: Blob | File | null;
|
|
28608
28665
|
WALDUR_SUPPORT_ENABLED?: boolean;
|
|
28609
28666
|
WALDUR_SUPPORT_ACTIVE_BACKEND_TYPE?: WaldursupportactivebackendtypeEnum;
|
|
28610
28667
|
WALDUR_SUPPORT_DISPLAY_REQUEST_TYPE?: boolean;
|
|
@@ -28698,7 +28755,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
28698
28755
|
SCIM_PULL_API_URL?: string;
|
|
28699
28756
|
SCIM_PULL_API_KEY?: string;
|
|
28700
28757
|
SCIM_PULL_SOURCE_NAME?: string;
|
|
28701
|
-
KEYCLOAK_ICON?:
|
|
28758
|
+
KEYCLOAK_ICON?: Blob | File | null;
|
|
28702
28759
|
COUNTRIES?: Array<string>;
|
|
28703
28760
|
OIDC_AUTH_URL?: string;
|
|
28704
28761
|
OIDC_INTROSPECTION_URL?: string;
|
|
@@ -28862,27 +28919,27 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
28862
28919
|
COMMON_FOOTER_HTML?: string;
|
|
28863
28920
|
LANGUAGE_CHOICES?: string;
|
|
28864
28921
|
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?:
|
|
28922
|
+
POWERED_BY_LOGO?: Blob | File | null;
|
|
28923
|
+
HERO_IMAGE?: Blob | File | null;
|
|
28924
|
+
MARKETPLACE_HERO_IMAGE?: Blob | File | null;
|
|
28925
|
+
CALL_MANAGEMENT_HERO_IMAGE?: Blob | File | null;
|
|
28926
|
+
SIDEBAR_LOGO?: Blob | File | null;
|
|
28927
|
+
SIDEBAR_LOGO_DARK?: Blob | File | null;
|
|
28928
|
+
SIDEBAR_LOGO_MOBILE?: Blob | File | null;
|
|
28872
28929
|
SIDEBAR_STYLE?: SidebarstyleEnum;
|
|
28873
28930
|
FONT_FAMILY?: FontfamilyEnum;
|
|
28874
|
-
LOGIN_LOGO?:
|
|
28931
|
+
LOGIN_LOGO?: Blob | File | null;
|
|
28875
28932
|
LOGIN_LOGO_MULTILINGUAL?: {
|
|
28876
|
-
[key: string]:
|
|
28933
|
+
[key: string]: Blob | File | null;
|
|
28877
28934
|
};
|
|
28878
28935
|
LOGIN_PAGE_LAYOUT?: LoginpagelayoutEnum;
|
|
28879
28936
|
LOGIN_PAGE_VIDEO_URL?: string;
|
|
28880
28937
|
LOGIN_PAGE_STATS?: Array<unknown>;
|
|
28881
28938
|
LOGIN_PAGE_CAROUSEL_SLIDES?: Array<unknown>;
|
|
28882
28939
|
LOGIN_PAGE_NEWS?: Array<unknown>;
|
|
28883
|
-
FAVICON?:
|
|
28884
|
-
OFFERING_LOGO_PLACEHOLDER?:
|
|
28885
|
-
DISCLAIMER_AREA_LOGO?:
|
|
28940
|
+
FAVICON?: Blob | File | null;
|
|
28941
|
+
OFFERING_LOGO_PLACEHOLDER?: Blob | File | null;
|
|
28942
|
+
DISCLAIMER_AREA_LOGO?: Blob | File | null;
|
|
28886
28943
|
WALDUR_SUPPORT_ENABLED?: boolean;
|
|
28887
28944
|
WALDUR_SUPPORT_ACTIVE_BACKEND_TYPE?: WaldursupportactivebackendtypeEnum;
|
|
28888
28945
|
WALDUR_SUPPORT_DISPLAY_REQUEST_TYPE?: boolean;
|
|
@@ -28976,7 +29033,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
28976
29033
|
SCIM_PULL_API_URL?: string;
|
|
28977
29034
|
SCIM_PULL_API_KEY?: string;
|
|
28978
29035
|
SCIM_PULL_SOURCE_NAME?: string;
|
|
28979
|
-
KEYCLOAK_ICON?:
|
|
29036
|
+
KEYCLOAK_ICON?: Blob | File | null;
|
|
28980
29037
|
COUNTRIES?: Array<string>;
|
|
28981
29038
|
OIDC_AUTH_URL?: string;
|
|
28982
29039
|
OIDC_INTROSPECTION_URL?: string;
|
|
@@ -29089,37 +29146,37 @@ export type PaymentRequestForm = {
|
|
|
29089
29146
|
profile: string;
|
|
29090
29147
|
date_of_payment: string;
|
|
29091
29148
|
sum?: string;
|
|
29092
|
-
proof?:
|
|
29149
|
+
proof?: Blob | File | null;
|
|
29093
29150
|
};
|
|
29094
29151
|
export type PaymentRequestMultipart = {
|
|
29095
29152
|
profile: string;
|
|
29096
29153
|
date_of_payment: string;
|
|
29097
29154
|
sum?: string;
|
|
29098
|
-
proof?:
|
|
29155
|
+
proof?: Blob | File | null;
|
|
29099
29156
|
};
|
|
29100
29157
|
export type PatchedPaymentRequestForm = {
|
|
29101
29158
|
profile?: string;
|
|
29102
29159
|
date_of_payment?: string;
|
|
29103
29160
|
sum?: string;
|
|
29104
|
-
proof?:
|
|
29161
|
+
proof?: Blob | File | null;
|
|
29105
29162
|
};
|
|
29106
29163
|
export type PatchedPaymentRequestMultipart = {
|
|
29107
29164
|
profile?: string;
|
|
29108
29165
|
date_of_payment?: string;
|
|
29109
29166
|
sum?: string;
|
|
29110
|
-
proof?:
|
|
29167
|
+
proof?: Blob | File | null;
|
|
29111
29168
|
};
|
|
29112
29169
|
export type ProposalDocumentationRequestForm = {
|
|
29113
29170
|
/**
|
|
29114
29171
|
* Upload supporting documentation in PDF format.
|
|
29115
29172
|
*/
|
|
29116
|
-
file?:
|
|
29173
|
+
file?: Blob | File | null;
|
|
29117
29174
|
};
|
|
29118
29175
|
export type ProposalDocumentationRequestMultipart = {
|
|
29119
29176
|
/**
|
|
29120
29177
|
* Upload supporting documentation in PDF format.
|
|
29121
29178
|
*/
|
|
29122
|
-
file?:
|
|
29179
|
+
file?: Blob | File | null;
|
|
29123
29180
|
};
|
|
29124
29181
|
export type FirecrestJobRequestForm = {
|
|
29125
29182
|
name: string;
|
|
@@ -29168,16 +29225,19 @@ export type UserRequestForm = {
|
|
|
29168
29225
|
description?: string;
|
|
29169
29226
|
/**
|
|
29170
29227
|
* Staff status
|
|
29228
|
+
*
|
|
29171
29229
|
* Designates whether the user can log into this admin site.
|
|
29172
29230
|
*/
|
|
29173
29231
|
is_staff?: boolean;
|
|
29174
29232
|
/**
|
|
29175
29233
|
* Active
|
|
29234
|
+
*
|
|
29176
29235
|
* Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
|
|
29177
29236
|
*/
|
|
29178
29237
|
is_active?: boolean;
|
|
29179
29238
|
/**
|
|
29180
29239
|
* Support status
|
|
29240
|
+
*
|
|
29181
29241
|
* Designates whether the user is a global support user.
|
|
29182
29242
|
*/
|
|
29183
29243
|
is_support?: boolean;
|
|
@@ -29197,7 +29257,7 @@ export type UserRequestForm = {
|
|
|
29197
29257
|
first_name?: string;
|
|
29198
29258
|
last_name?: string;
|
|
29199
29259
|
birth_date?: string | null;
|
|
29200
|
-
image?:
|
|
29260
|
+
image?: Blob | File | null;
|
|
29201
29261
|
/**
|
|
29202
29262
|
* User's gender (male, female, or unknown)
|
|
29203
29263
|
*/
|
|
@@ -29234,6 +29294,10 @@ export type UserRequestForm = {
|
|
|
29234
29294
|
* Designates whether the user is allowed to manage remote user identities.
|
|
29235
29295
|
*/
|
|
29236
29296
|
is_identity_manager?: boolean;
|
|
29297
|
+
/**
|
|
29298
|
+
* Designates whether the user is allowed to create and use personal access tokens.
|
|
29299
|
+
*/
|
|
29300
|
+
can_use_personal_access_tokens?: boolean;
|
|
29237
29301
|
/**
|
|
29238
29302
|
* 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
29303
|
*/
|
|
@@ -29260,16 +29324,19 @@ export type UserRequestMultipart = {
|
|
|
29260
29324
|
description?: string;
|
|
29261
29325
|
/**
|
|
29262
29326
|
* Staff status
|
|
29327
|
+
*
|
|
29263
29328
|
* Designates whether the user can log into this admin site.
|
|
29264
29329
|
*/
|
|
29265
29330
|
is_staff?: boolean;
|
|
29266
29331
|
/**
|
|
29267
29332
|
* Active
|
|
29333
|
+
*
|
|
29268
29334
|
* Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
|
|
29269
29335
|
*/
|
|
29270
29336
|
is_active?: boolean;
|
|
29271
29337
|
/**
|
|
29272
29338
|
* Support status
|
|
29339
|
+
*
|
|
29273
29340
|
* Designates whether the user is a global support user.
|
|
29274
29341
|
*/
|
|
29275
29342
|
is_support?: boolean;
|
|
@@ -29289,7 +29356,7 @@ export type UserRequestMultipart = {
|
|
|
29289
29356
|
first_name?: string;
|
|
29290
29357
|
last_name?: string;
|
|
29291
29358
|
birth_date?: string | null;
|
|
29292
|
-
image?:
|
|
29359
|
+
image?: Blob | File | null;
|
|
29293
29360
|
/**
|
|
29294
29361
|
* User's gender (male, female, or unknown)
|
|
29295
29362
|
*/
|
|
@@ -29326,6 +29393,10 @@ export type UserRequestMultipart = {
|
|
|
29326
29393
|
* Designates whether the user is allowed to manage remote user identities.
|
|
29327
29394
|
*/
|
|
29328
29395
|
is_identity_manager?: boolean;
|
|
29396
|
+
/**
|
|
29397
|
+
* Designates whether the user is allowed to create and use personal access tokens.
|
|
29398
|
+
*/
|
|
29399
|
+
can_use_personal_access_tokens?: boolean;
|
|
29329
29400
|
/**
|
|
29330
29401
|
* 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
29402
|
*/
|
|
@@ -29351,16 +29422,19 @@ export type PatchedUserRequestForm = {
|
|
|
29351
29422
|
description?: string;
|
|
29352
29423
|
/**
|
|
29353
29424
|
* Staff status
|
|
29425
|
+
*
|
|
29354
29426
|
* Designates whether the user can log into this admin site.
|
|
29355
29427
|
*/
|
|
29356
29428
|
is_staff?: boolean;
|
|
29357
29429
|
/**
|
|
29358
29430
|
* Active
|
|
29431
|
+
*
|
|
29359
29432
|
* Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
|
|
29360
29433
|
*/
|
|
29361
29434
|
is_active?: boolean;
|
|
29362
29435
|
/**
|
|
29363
29436
|
* Support status
|
|
29437
|
+
*
|
|
29364
29438
|
* Designates whether the user is a global support user.
|
|
29365
29439
|
*/
|
|
29366
29440
|
is_support?: boolean;
|
|
@@ -29380,7 +29454,7 @@ export type PatchedUserRequestForm = {
|
|
|
29380
29454
|
first_name?: string;
|
|
29381
29455
|
last_name?: string;
|
|
29382
29456
|
birth_date?: string | null;
|
|
29383
|
-
image?:
|
|
29457
|
+
image?: Blob | File | null;
|
|
29384
29458
|
/**
|
|
29385
29459
|
* User's gender (male, female, or unknown)
|
|
29386
29460
|
*/
|
|
@@ -29417,6 +29491,10 @@ export type PatchedUserRequestForm = {
|
|
|
29417
29491
|
* Designates whether the user is allowed to manage remote user identities.
|
|
29418
29492
|
*/
|
|
29419
29493
|
is_identity_manager?: boolean;
|
|
29494
|
+
/**
|
|
29495
|
+
* Designates whether the user is allowed to create and use personal access tokens.
|
|
29496
|
+
*/
|
|
29497
|
+
can_use_personal_access_tokens?: boolean;
|
|
29420
29498
|
/**
|
|
29421
29499
|
* 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
29500
|
*/
|
|
@@ -29442,16 +29520,19 @@ export type PatchedUserRequestMultipart = {
|
|
|
29442
29520
|
description?: string;
|
|
29443
29521
|
/**
|
|
29444
29522
|
* Staff status
|
|
29523
|
+
*
|
|
29445
29524
|
* Designates whether the user can log into this admin site.
|
|
29446
29525
|
*/
|
|
29447
29526
|
is_staff?: boolean;
|
|
29448
29527
|
/**
|
|
29449
29528
|
* Active
|
|
29529
|
+
*
|
|
29450
29530
|
* Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
|
|
29451
29531
|
*/
|
|
29452
29532
|
is_active?: boolean;
|
|
29453
29533
|
/**
|
|
29454
29534
|
* Support status
|
|
29535
|
+
*
|
|
29455
29536
|
* Designates whether the user is a global support user.
|
|
29456
29537
|
*/
|
|
29457
29538
|
is_support?: boolean;
|
|
@@ -29471,7 +29552,7 @@ export type PatchedUserRequestMultipart = {
|
|
|
29471
29552
|
first_name?: string;
|
|
29472
29553
|
last_name?: string;
|
|
29473
29554
|
birth_date?: string | null;
|
|
29474
|
-
image?:
|
|
29555
|
+
image?: Blob | File | null;
|
|
29475
29556
|
/**
|
|
29476
29557
|
* User's gender (male, female, or unknown)
|
|
29477
29558
|
*/
|
|
@@ -29508,6 +29589,10 @@ export type PatchedUserRequestMultipart = {
|
|
|
29508
29589
|
* Designates whether the user is allowed to manage remote user identities.
|
|
29509
29590
|
*/
|
|
29510
29591
|
is_identity_manager?: boolean;
|
|
29592
|
+
/**
|
|
29593
|
+
* Designates whether the user is allowed to create and use personal access tokens.
|
|
29594
|
+
*/
|
|
29595
|
+
can_use_personal_access_tokens?: boolean;
|
|
29511
29596
|
/**
|
|
29512
29597
|
* 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
29598
|
*/
|
|
@@ -29596,7 +29681,7 @@ export type ProviderOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'ba
|
|
|
29596
29681
|
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
29682
|
export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
|
|
29598
29683
|
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';
|
|
29684
|
+
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
29685
|
export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
|
|
29601
29686
|
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
29687
|
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 +38513,7 @@ export type CustomersUsersListData = {
|
|
|
38428
38513
|
/**
|
|
38429
38514
|
* Filter by one or more organization roles. Select a standard role or provide a custom role string. Can be specified multiple times.
|
|
38430
38515
|
*/
|
|
38431
|
-
organization_role?: Array<
|
|
38516
|
+
organization_role?: Array<'CUSTOMER.MANAGER' | 'CUSTOMER.OWNER' | 'CUSTOMER.SUPPORT' | string>;
|
|
38432
38517
|
/**
|
|
38433
38518
|
* A page number within the paginated result set.
|
|
38434
38519
|
*/
|
|
@@ -38441,7 +38526,7 @@ export type CustomersUsersListData = {
|
|
|
38441
38526
|
/**
|
|
38442
38527
|
* Filter by one or more project roles. Select a standard role or provide a custom role string. Can be specified multiple times.
|
|
38443
38528
|
*/
|
|
38444
|
-
project_role?: Array<
|
|
38529
|
+
project_role?: Array<'PROJECT.ADMIN' | 'PROJECT.MANAGER' | 'PROJECT.MEMBER' | string>;
|
|
38445
38530
|
registration_method?: string;
|
|
38446
38531
|
/**
|
|
38447
38532
|
* User keyword
|
|
@@ -53788,7 +53873,7 @@ export type MarketplaceProviderResourcesTeamListData = {
|
|
|
53788
53873
|
};
|
|
53789
53874
|
query?: {
|
|
53790
53875
|
/**
|
|
53791
|
-
* When
|
|
53876
|
+
* When ENFORCE_USER_CONSENT_FOR_OFFERINGS is disabled, passing true returns only users who have active consent for this offering.
|
|
53792
53877
|
*/
|
|
53793
53878
|
has_consent?: boolean;
|
|
53794
53879
|
};
|
|
@@ -72034,7 +72119,7 @@ export type OpenstackTenantsSetQuotasData = {
|
|
|
72034
72119
|
* Use 0 to deny, -1 for unlimited
|
|
72035
72120
|
*/
|
|
72036
72121
|
port_count?: number;
|
|
72037
|
-
[key: string]: number | undefined;
|
|
72122
|
+
[key: string]: number | number | undefined;
|
|
72038
72123
|
};
|
|
72039
72124
|
path: {
|
|
72040
72125
|
uuid: string;
|
|
@@ -88285,6 +88370,3 @@ export type VmwareVirtualMachineWebConsoleRetrieveResponses = {
|
|
|
88285
88370
|
200: ConsoleUrl;
|
|
88286
88371
|
};
|
|
88287
88372
|
export type VmwareVirtualMachineWebConsoleRetrieveResponse = VmwareVirtualMachineWebConsoleRetrieveResponses[keyof VmwareVirtualMachineWebConsoleRetrieveResponses];
|
|
88288
|
-
export type ClientOptions = {
|
|
88289
|
-
baseUrl: `${string}://waldur-openapi-schema.yaml` | (string & {});
|
|
88290
|
-
};
|