waldur-js-client 8.0.9-dev.30 → 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.
Files changed (35) hide show
  1. package/dist/client/{client.d.ts → client.gen.d.ts} +1 -1
  2. package/dist/client/client.gen.js +216 -0
  3. package/dist/client/index.d.ts +8 -7
  4. package/dist/client/index.js +6 -4
  5. package/dist/client/{types.d.ts → types.gen.d.ts} +22 -21
  6. package/dist/client/types.gen.js +2 -0
  7. package/dist/client/{utils.d.ts → utils.gen.d.ts} +16 -24
  8. package/dist/client/{utils.js → utils.gen.js} +65 -121
  9. package/dist/client.gen.d.ts +3 -3
  10. package/dist/core/{auth.js → auth.gen.js} +1 -0
  11. package/dist/core/bodySerializer.gen.d.ts +25 -0
  12. package/dist/core/{bodySerializer.js → bodySerializer.gen.js} +5 -1
  13. package/dist/core/{params.d.ts → params.gen.d.ts} +20 -0
  14. package/dist/core/{params.js → params.gen.js} +23 -10
  15. package/dist/core/{pathSerializer.js → pathSerializer.gen.js} +4 -11
  16. package/dist/core/queryKeySerializer.gen.d.ts +18 -0
  17. package/dist/core/queryKeySerializer.gen.js +92 -0
  18. package/dist/core/serverSentEvents.gen.d.ts +71 -0
  19. package/dist/core/serverSentEvents.gen.js +132 -0
  20. package/dist/core/{types.d.ts → types.gen.d.ts} +20 -15
  21. package/dist/core/types.gen.js +2 -0
  22. package/dist/core/utils.gen.d.ts +19 -0
  23. package/dist/core/utils.gen.js +87 -0
  24. package/dist/index.d.ts +2 -2
  25. package/dist/index.js +1 -2
  26. package/dist/sdk.gen.d.ts +1061 -4
  27. package/dist/sdk.gen.js +28375 -55513
  28. package/dist/types.gen.d.ts +604 -422
  29. package/package.json +1 -1
  30. package/dist/client/client.js +0 -143
  31. package/dist/client/types.js +0 -1
  32. package/dist/core/bodySerializer.d.ts +0 -17
  33. package/dist/core/types.js +0 -1
  34. /package/dist/core/{auth.d.ts → auth.gen.d.ts} +0 -0
  35. /package/dist/core/{pathSerializer.d.ts → pathSerializer.gen.d.ts} +0 -0
@@ -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;
@@ -2033,9 +2037,6 @@ export type AwsInstanceRequest = {
2033
2037
  image: string;
2034
2038
  size: string;
2035
2039
  };
2036
- export type AwsInstanceResize = {
2037
- size: string;
2038
- };
2039
2040
  export type AwsInstanceResizeRequest = {
2040
2041
  size: string;
2041
2042
  };
@@ -2111,13 +2112,6 @@ export type AwsVolume = {
2111
2112
  readonly is_usage_based?: boolean | null;
2112
2113
  readonly is_limit_based?: boolean | null;
2113
2114
  };
2114
- export type AwsVolumeAttach = {
2115
- instance: string;
2116
- /**
2117
- * The device name for attachment. For example, use /dev/sd[f-p] for Linux instances.
2118
- */
2119
- device: string;
2120
- };
2121
2115
  export type AwsVolumeAttachRequest = {
2122
2116
  instance: string;
2123
2117
  /**
@@ -2301,14 +2295,14 @@ export type AzureSqlDatabase = {
2301
2295
  readonly is_usage_based?: boolean | null;
2302
2296
  readonly is_limit_based?: boolean | null;
2303
2297
  };
2304
- export type AzureSqlDatabaseCreate = {
2305
- name: string;
2306
- description?: string;
2307
- };
2308
2298
  export type AzureSqlDatabaseCreateRequest = {
2309
2299
  name: string;
2310
2300
  description?: string;
2311
2301
  };
2302
+ export type AzureSqlDatabaseCreateResponse = {
2303
+ status: string;
2304
+ database_uuid: string;
2305
+ };
2312
2306
  export type AzureSqlDatabaseRequest = {
2313
2307
  name: string;
2314
2308
  description?: string;
@@ -2705,6 +2699,9 @@ export type Booking = {
2705
2699
  start: string;
2706
2700
  end: string;
2707
2701
  };
2702
+ export type BookingOrderUuid = {
2703
+ order_uuid: string;
2704
+ };
2708
2705
  export type BookingResource = {
2709
2706
  offering?: string;
2710
2707
  readonly offering_name?: string;
@@ -3244,7 +3241,7 @@ export type CallDocumentRequest = {
3244
3241
  /**
3245
3242
  * Documentation for call for proposals.
3246
3243
  */
3247
- file?: (Blob | File) | null;
3244
+ file?: Blob | File | null;
3248
3245
  description?: string;
3249
3246
  };
3250
3247
  export type CallManagingOrganisation = {
@@ -3264,7 +3261,7 @@ export type CallManagingOrganisation = {
3264
3261
  export type CallManagingOrganisationRequest = {
3265
3262
  description?: string;
3266
3263
  customer: string;
3267
- image?: (Blob | File) | null;
3264
+ image?: Blob | File | null;
3268
3265
  };
3269
3266
  export type CallManagingOrganisationStat = {
3270
3267
  readonly open_calls: number;
@@ -3780,7 +3777,7 @@ export type CategoryGroup = {
3780
3777
  export type CategoryGroupRequest = {
3781
3778
  title: string;
3782
3779
  description?: string;
3783
- icon?: (Blob | File) | null;
3780
+ icon?: Blob | File | null;
3784
3781
  };
3785
3782
  export type CategoryHelpArticle = {
3786
3783
  title?: string | null;
@@ -5162,27 +5159,27 @@ export type ConstanceSettingsRequest = {
5162
5159
  COMMON_FOOTER_HTML?: string;
5163
5160
  LANGUAGE_CHOICES?: string;
5164
5161
  DISABLE_DARK_THEME?: boolean;
5165
- POWERED_BY_LOGO?: (Blob | File) | null;
5166
- HERO_IMAGE?: (Blob | File) | null;
5167
- MARKETPLACE_HERO_IMAGE?: (Blob | File) | null;
5168
- CALL_MANAGEMENT_HERO_IMAGE?: (Blob | File) | null;
5169
- SIDEBAR_LOGO?: (Blob | File) | null;
5170
- SIDEBAR_LOGO_DARK?: (Blob | File) | null;
5171
- SIDEBAR_LOGO_MOBILE?: (Blob | File) | null;
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;
5172
5169
  SIDEBAR_STYLE?: SidebarstyleEnum;
5173
5170
  FONT_FAMILY?: FontfamilyEnum;
5174
- LOGIN_LOGO?: (Blob | File) | null;
5171
+ LOGIN_LOGO?: Blob | File | null;
5175
5172
  LOGIN_LOGO_MULTILINGUAL?: {
5176
- [key: string]: (Blob | File) | null;
5173
+ [key: string]: Blob | File | null;
5177
5174
  };
5178
5175
  LOGIN_PAGE_LAYOUT?: LoginpagelayoutEnum;
5179
5176
  LOGIN_PAGE_VIDEO_URL?: string;
5180
5177
  LOGIN_PAGE_STATS?: Array<unknown>;
5181
5178
  LOGIN_PAGE_CAROUSEL_SLIDES?: Array<unknown>;
5182
5179
  LOGIN_PAGE_NEWS?: Array<unknown>;
5183
- FAVICON?: (Blob | File) | null;
5184
- OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
5185
- DISCLAIMER_AREA_LOGO?: (Blob | File) | null;
5180
+ FAVICON?: Blob | File | null;
5181
+ OFFERING_LOGO_PLACEHOLDER?: Blob | File | null;
5182
+ DISCLAIMER_AREA_LOGO?: Blob | File | null;
5186
5183
  WALDUR_SUPPORT_ENABLED?: boolean;
5187
5184
  WALDUR_SUPPORT_ACTIVE_BACKEND_TYPE?: WaldursupportactivebackendtypeEnum;
5188
5185
  WALDUR_SUPPORT_DISPLAY_REQUEST_TYPE?: boolean;
@@ -5276,7 +5273,7 @@ export type ConstanceSettingsRequest = {
5276
5273
  SCIM_PULL_API_URL?: string;
5277
5274
  SCIM_PULL_API_KEY?: string;
5278
5275
  SCIM_PULL_SOURCE_NAME?: string;
5279
- KEYCLOAK_ICON?: (Blob | File) | null;
5276
+ KEYCLOAK_ICON?: Blob | File | null;
5280
5277
  COUNTRIES?: Array<string>;
5281
5278
  OIDC_AUTH_URL?: string;
5282
5279
  OIDC_INTROSPECTION_URL?: string;
@@ -5753,7 +5750,7 @@ export type CreatePoolMember = {
5753
5750
  /**
5754
5751
  * An IPv4 or IPv6 address.
5755
5752
  */
5756
- address: string;
5753
+ address: string | string;
5757
5754
  /**
5758
5755
  * Port on the backend server
5759
5756
  */
@@ -5770,7 +5767,7 @@ export type CreatePoolMemberRequest = {
5770
5767
  /**
5771
5768
  * An IPv4 or IPv6 address.
5772
5769
  */
5773
- address: string;
5770
+ address: string | string;
5774
5771
  /**
5775
5772
  * Port on the backend server
5776
5773
  */
@@ -6051,6 +6048,10 @@ export type CustomerCreditConsumption = {
6051
6048
  readonly date: string;
6052
6049
  readonly price: string;
6053
6050
  };
6051
+ export type CustomerCreditConsumptionByMonth = {
6052
+ readonly month: string;
6053
+ readonly price: string;
6054
+ };
6054
6055
  export type CustomerDefaultAffiliationsUpdateRequest = {
6055
6056
  default_affiliations?: Array<string>;
6056
6057
  };
@@ -6217,7 +6218,7 @@ export type CustomerRequest = {
6217
6218
  * Organization identifier in another application.
6218
6219
  */
6219
6220
  backend_id?: string;
6220
- image?: (Blob | File) | null;
6221
+ image?: Blob | File | null;
6221
6222
  blocked?: boolean;
6222
6223
  archived?: boolean;
6223
6224
  display_billing_info_in_projects?: boolean;
@@ -6728,9 +6729,6 @@ export type DigitalOceanDropletRequest = {
6728
6729
  image: string;
6729
6730
  size: string;
6730
6731
  };
6731
- export type DigitalOceanDropletResize = {
6732
- disk: boolean;
6733
- };
6734
6732
  export type DigitalOceanDropletResizeRequest = {
6735
6733
  size: string;
6736
6734
  disk: boolean;
@@ -7182,6 +7180,9 @@ export type Event = {
7182
7180
  message?: string;
7183
7181
  readonly context?: unknown;
7184
7182
  };
7183
+ export type EventCount = {
7184
+ count: number;
7185
+ };
7185
7186
  export type EventGroupsEnum = 'access_subnets' | 'auth' | 'call' | 'chat' | 'credits' | 'customers' | 'invoices' | 'offering_accounting' | 'onboarding' | 'permissions' | 'projects' | 'proposal' | 'providers' | 'resources' | 'review' | 'ssh' | 'support' | 'users' | 'terms_of_service';
7186
7187
  export type EventMetadataResponse = {
7187
7188
  /**
@@ -7216,7 +7217,7 @@ export type EventSubscription = {
7216
7217
  /**
7217
7218
  * An IPv4 or IPv6 address.
7218
7219
  */
7219
- source_ip: string | null;
7220
+ source_ip: string | string | null;
7220
7221
  };
7221
7222
  export type EventSubscriptionQueue = {
7222
7223
  readonly uuid: string;
@@ -7497,7 +7498,7 @@ export type ExternalLinkRequest = {
7497
7498
  name: string;
7498
7499
  description?: string;
7499
7500
  link: string;
7500
- image?: (Blob | File) | null;
7501
+ image?: Blob | File | null;
7501
7502
  };
7502
7503
  export type ExternalNetwork = {
7503
7504
  readonly url?: string;
@@ -7532,7 +7533,7 @@ export type ExternalSubnet = {
7532
7533
  /**
7533
7534
  * An IPv4 or IPv6 address.
7534
7535
  */
7535
- gateway_ip?: string | null;
7536
+ gateway_ip?: string | string | null;
7536
7537
  ip_version?: number;
7537
7538
  enable_dhcp?: boolean;
7538
7539
  allocation_pools?: unknown;
@@ -7865,11 +7866,14 @@ export type GlobalUserDataAccessLog = {
7865
7866
  /**
7866
7867
  * An IPv4 or IPv6 address.
7867
7868
  */
7868
- ip_address: string | null;
7869
+ ip_address: string | string | null;
7869
7870
  context: {
7870
7871
  [key: string]: unknown;
7871
7872
  };
7872
7873
  };
7874
+ export type GoogleAuthUrl = {
7875
+ request_url: string;
7876
+ };
7873
7877
  export type GoogleCalendar = {
7874
7878
  backend_id?: string | null;
7875
7879
  public?: boolean;
@@ -8889,12 +8893,6 @@ export type InvoiceItem = {
8889
8893
  readonly backend_uuid?: string | null;
8890
8894
  readonly credit?: boolean;
8891
8895
  };
8892
- export type InvoiceItemCompensation = {
8893
- /**
8894
- * Name of the offering component for compensation
8895
- */
8896
- offering_component_name: string;
8897
- };
8898
8896
  export type InvoiceItemCompensationRequest = {
8899
8897
  /**
8900
8898
  * Name of the offering component for compensation
@@ -8989,9 +8987,6 @@ export type InvoiceItemDetails = {
8989
8987
  */
8990
8988
  resource_limit_periods?: Array<ResourceLimitPeriod>;
8991
8989
  };
8992
- export type InvoiceItemMigrateTo = {
8993
- invoice: string;
8994
- };
8995
8990
  export type InvoiceItemMigrateToRequest = {
8996
8991
  invoice: string;
8997
8992
  };
@@ -9001,6 +8996,9 @@ export type InvoiceItemTotalPrice = {
9001
8996
  */
9002
8997
  total_price: string;
9003
8998
  };
8999
+ export type InvoiceItemUuid = {
9000
+ invoice_item_uuid: string;
9001
+ };
9004
9002
  export type InvoiceItemUpdate = {
9005
9003
  article_code?: string;
9006
9004
  quantity?: string;
@@ -9401,18 +9399,9 @@ export type LinkResourceResponse = {
9401
9399
  previous_backend_id: string;
9402
9400
  success: boolean;
9403
9401
  };
9404
- export type LinkToInvoice = {
9405
- invoice: string;
9406
- };
9407
9402
  export type LinkToInvoiceRequest = {
9408
9403
  invoice: string;
9409
9404
  };
9410
- export type LoadBalancerAsyncOperationResponse = {
9411
- /**
9412
- * Message that execution of the operation was scheduled.
9413
- */
9414
- status: string;
9415
- };
9416
9405
  export type LoadBalancerAttachFloatingIpRequest = {
9417
9406
  floating_ip: string;
9418
9407
  };
@@ -9744,6 +9733,7 @@ export type ManagedProject = {
9744
9733
  project_template_data: ProjectTemplate;
9745
9734
  /**
9746
9735
  * Local ID
9736
+ *
9747
9737
  * The local project identifier in this portal.
9748
9738
  */
9749
9739
  local_identifier?: string | null;
@@ -9812,7 +9802,7 @@ export type MarketplaceCategory = {
9812
9802
  export type MarketplaceCategoryRequest = {
9813
9803
  title: string;
9814
9804
  description?: string;
9815
- icon?: (Blob | File) | null;
9805
+ icon?: Blob | File | null;
9816
9806
  /**
9817
9807
  * Set to "true" if this category is for OpenStack VM. Only one category can have "true" value.
9818
9808
  */
@@ -9900,6 +9890,7 @@ export type MarketplaceServiceProviderUser = {
9900
9890
  affiliations?: unknown;
9901
9891
  /**
9902
9892
  * Active
9893
+ *
9903
9894
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
9904
9895
  */
9905
9896
  is_active?: boolean;
@@ -9940,6 +9931,7 @@ export type MarketplaceServiceProviderUser = {
9940
9931
  birth_date?: string | null;
9941
9932
  /**
9942
9933
  * Source of identity
9934
+ *
9943
9935
  * Indicates what identity provider was used.
9944
9936
  */
9945
9937
  identity_source?: string;
@@ -10914,7 +10906,7 @@ export type Message = {
10914
10906
  id: string;
10915
10907
  key: 'markdown' | 'code' | 'mermaid' | 'vm_order' | 'resource_list' | 'homeport_nav' | 'ask_user_form' | 'tool';
10916
10908
  status: string;
10917
- [key: string]: unknown | string | ('markdown' | 'code' | 'mermaid' | 'vm_order' | 'resource_list' | 'homeport_nav' | 'ask_user_form' | 'tool');
10909
+ [key: string]: unknown;
10918
10910
  }>;
10919
10911
  readonly warning: string;
10920
10912
  readonly sequence_index: number;
@@ -10998,12 +10990,6 @@ export type MessageTemplateRequest = {
10998
10990
  subject: string;
10999
10991
  body: string;
11000
10992
  };
11001
- export type MetricsReset = {
11002
- /**
11003
- * Operation status
11004
- */
11005
- readonly status: string;
11006
- };
11007
10993
  export type MigrationCreate = {
11008
10994
  mappings?: Mapping;
11009
10995
  src_resource: string;
@@ -11875,6 +11861,20 @@ export type Notification = {
11875
11861
  [key: string]: unknown;
11876
11862
  };
11877
11863
  };
11864
+ export type NotificationRecipient = {
11865
+ full_name?: string | null;
11866
+ email: string;
11867
+ offerings: Array<NotificationRecipientOffering>;
11868
+ customers: Array<NotificationRecipientCustomer>;
11869
+ };
11870
+ export type NotificationRecipientCustomer = {
11871
+ uuid: string;
11872
+ name: string;
11873
+ };
11874
+ export type NotificationRecipientOffering = {
11875
+ uuid: string;
11876
+ name: string;
11877
+ };
11878
11878
  export type NotificationRequest = {
11879
11879
  key: string;
11880
11880
  description?: string;
@@ -11902,7 +11902,7 @@ export type NotificationTemplateUpdateSerializersRequest = {
11902
11902
  content: string;
11903
11903
  };
11904
11904
  export type NotifySystemEnum = 'AdminAnnouncement' | 'BroadcastMessage';
11905
- export type NullEnum = unknown;
11905
+ export type NullEnum = never;
11906
11906
  export type ObservableObjectTypeEnum = 'order' | 'user_role' | 'resource' | 'offering_user' | 'importable_resources' | 'service_account' | 'course_account' | 'resource_periodic_limits';
11907
11907
  export type ObtainAuthTokenRequest = {
11908
11908
  /**
@@ -12215,7 +12215,7 @@ export type OfferingCreateRequest = {
12215
12215
  vendor_details?: string;
12216
12216
  getting_started?: string;
12217
12217
  integration_guide?: string;
12218
- thumbnail?: (Blob | File) | null;
12218
+ thumbnail?: Blob | File | null;
12219
12219
  plans?: Array<BaseProviderPlanRequest>;
12220
12220
  type: string;
12221
12221
  /**
@@ -12238,7 +12238,7 @@ export type OfferingCreateRequest = {
12238
12238
  * Validation rules for resource backend_id: format regex and uniqueness scope.
12239
12239
  */
12240
12240
  backend_id_rules?: unknown;
12241
- image?: (Blob | File) | null;
12241
+ image?: Blob | File | null;
12242
12242
  backend_metadata?: unknown;
12243
12243
  compliance_checklist?: string | null;
12244
12244
  offering_group?: string | null;
@@ -12421,7 +12421,7 @@ export type OfferingGroupAssignRequest = {
12421
12421
  export type OfferingGroupRequest = {
12422
12422
  title: string;
12423
12423
  description?: string;
12424
- icon?: (Blob | File) | null;
12424
+ icon?: Blob | File | null;
12425
12425
  customer: string;
12426
12426
  };
12427
12427
  export type OfferingGroups = {
@@ -12522,6 +12522,15 @@ export type OfferingLocationUpdateRequest = {
12522
12522
  latitude: number;
12523
12523
  longitude: number;
12524
12524
  };
12525
+ export type OfferingMapping = {
12526
+ uuid: string;
12527
+ name: string;
12528
+ description: string;
12529
+ slug: string;
12530
+ };
12531
+ export type OfferingMappingMap = {
12532
+ '*': OfferingMapping | null;
12533
+ };
12525
12534
  export type OfferingOptions = {
12526
12535
  order?: Array<string>;
12527
12536
  options?: {
@@ -12792,12 +12801,6 @@ export type OfferingProfileRequest = {
12792
12801
  name: string;
12793
12802
  description?: string;
12794
12803
  };
12795
- export type OfferingProfileRoleAssign = {
12796
- /**
12797
- * Role UUID to add or remove.
12798
- */
12799
- role: string;
12800
- };
12801
12804
  export type OfferingProfileRoleAssignRequest = {
12802
12805
  /**
12803
12806
  * Role UUID to add or remove.
@@ -13138,6 +13141,7 @@ export type OfferingUser = {
13138
13141
  readonly user_birth_date?: string | null;
13139
13142
  /**
13140
13143
  * Source of identity
13144
+ *
13141
13145
  * Indicates what identity provider was used.
13142
13146
  */
13143
13147
  readonly user_identity_source?: string;
@@ -13378,7 +13382,7 @@ export type OnboardingJustificationDocumentationRequest = {
13378
13382
  /**
13379
13383
  * Upload supporting documentation.
13380
13384
  */
13381
- file?: (Blob | File) | null;
13385
+ file?: Blob | File | null;
13382
13386
  };
13383
13387
  export type OnboardingJustificationRequest = {
13384
13388
  verification: string;
@@ -13714,7 +13718,7 @@ export type OpenStackCreateFloatingIpRequest = {
13714
13718
  /**
13715
13719
  * Existing floating IP address in selected OpenStack tenant to be assigned to new virtual machine
13716
13720
  */
13717
- ip_address?: string;
13721
+ ip_address?: string | string;
13718
13722
  subnet: string;
13719
13723
  };
13720
13724
  export type OpenStackCreatePortRequest = {
@@ -13762,7 +13766,7 @@ export type OpenStackFixedIp = {
13762
13766
  /**
13763
13767
  * IP address to assign to the port
13764
13768
  */
13765
- ip_address?: string;
13769
+ ip_address?: string | string;
13766
13770
  /**
13767
13771
  * ID of the subnet in which to assign the IP address
13768
13772
  */
@@ -13772,7 +13776,7 @@ export type OpenStackFixedIpRequest = {
13772
13776
  /**
13773
13777
  * IP address to assign to the port
13774
13778
  */
13775
- ip_address: string;
13779
+ ip_address: string | string;
13776
13780
  /**
13777
13781
  * ID of the subnet in which to assign the IP address
13778
13782
  */
@@ -13828,7 +13832,7 @@ export type OpenStackFloatingIp = {
13828
13832
  /**
13829
13833
  * The public IPv4 address of the floating IP
13830
13834
  */
13831
- address?: string | null;
13835
+ address?: string | string | null;
13832
13836
  /**
13833
13837
  * ID of network in OpenStack where this floating IP is allocated
13834
13838
  */
@@ -13843,7 +13847,7 @@ export type OpenStackFloatingIp = {
13843
13847
  /**
13844
13848
  * Optional address that maps to floating IP's address in external networks
13845
13849
  */
13846
- external_address?: string | null;
13850
+ external_address?: string | string | null;
13847
13851
  readonly port_fixed_ips?: Array<OpenStackFixedIp>;
13848
13852
  readonly instance_uuid?: string | null;
13849
13853
  readonly instance_name?: string | null;
@@ -14371,7 +14375,7 @@ export type OpenStackLoadBalancer = {
14371
14375
  /**
14372
14376
  * An IPv4 or IPv6 address.
14373
14377
  */
14374
- vip_address?: string;
14378
+ vip_address?: string | string;
14375
14379
  readonly vip_subnet?: string | null;
14376
14380
  readonly vip_port?: string | null;
14377
14381
  /**
@@ -14410,7 +14414,7 @@ export type OpenStackNestedFloatingIp = {
14410
14414
  /**
14411
14415
  * The public IPv4 address of the floating IP
14412
14416
  */
14413
- address?: string | null;
14417
+ address?: string | string | null;
14414
14418
  readonly port_fixed_ips?: Array<OpenStackFixedIp>;
14415
14419
  /**
14416
14420
  * MAC address of the port
@@ -14499,7 +14503,7 @@ export type OpenStackNestedSubNet = {
14499
14503
  /**
14500
14504
  * IP address of the gateway for this subnet
14501
14505
  */
14502
- gateway_ip?: string | null;
14506
+ gateway_ip?: string | string | null;
14503
14507
  readonly allocation_pools?: Array<OpenStackSubNetAllocationPool>;
14504
14508
  /**
14505
14509
  * IP protocol version (4 or 6)
@@ -14520,7 +14524,7 @@ export type OpenStackNestedSubNetRequest = {
14520
14524
  /**
14521
14525
  * IP address of the gateway for this subnet
14522
14526
  */
14523
- gateway_ip?: string | null;
14527
+ gateway_ip?: string | string | null;
14524
14528
  /**
14525
14529
  * IP protocol version (4 or 6)
14526
14530
  */
@@ -14741,7 +14745,7 @@ export type OpenStackPoolMember = {
14741
14745
  /**
14742
14746
  * An IPv4 or IPv6 address.
14743
14747
  */
14744
- address?: string;
14748
+ address?: string | string;
14745
14749
  readonly protocol_port?: number;
14746
14750
  readonly subnet?: string | null;
14747
14751
  readonly weight?: number;
@@ -14852,7 +14856,7 @@ export type OpenStackPortIpUpdateRequest = {
14852
14856
  /**
14853
14857
  * The IP address to assign within the subnet
14854
14858
  */
14855
- ip_address: string;
14859
+ ip_address: string | string;
14856
14860
  };
14857
14861
  export type OpenStackPortNestedSecurityGroup = {
14858
14862
  readonly uuid?: string;
@@ -15319,14 +15323,14 @@ export type OpenStackStaticRoute = {
15319
15323
  /**
15320
15324
  * An IPv4 or IPv6 address.
15321
15325
  */
15322
- nexthop?: string;
15326
+ nexthop?: string | string;
15323
15327
  };
15324
15328
  export type OpenStackStaticRouteRequest = {
15325
15329
  destination: string;
15326
15330
  /**
15327
15331
  * An IPv4 or IPv6 address.
15328
15332
  */
15329
- nexthop: string;
15333
+ nexthop: string | string;
15330
15334
  };
15331
15335
  export type OpenStackSubNet = {
15332
15336
  readonly url?: string;
@@ -15365,7 +15369,7 @@ export type OpenStackSubNet = {
15365
15369
  /**
15366
15370
  * IP address of the gateway for this subnet
15367
15371
  */
15368
- gateway_ip?: string | null;
15372
+ gateway_ip?: string | string | null;
15369
15373
  /**
15370
15374
  * If True, no gateway IP address will be allocated
15371
15375
  */
@@ -15382,7 +15386,7 @@ export type OpenStackSubNet = {
15382
15386
  /**
15383
15387
  * An IPv4 or IPv6 address.
15384
15388
  */
15385
- dns_nameservers?: Array<string>;
15389
+ dns_nameservers?: Array<string | string>;
15386
15390
  host_routes?: Array<OpenStackStaticRoute>;
15387
15391
  /**
15388
15392
  * Is subnet connected to the default tenant router.
@@ -15406,21 +15410,21 @@ export type OpenStackSubNetAllocationPool = {
15406
15410
  /**
15407
15411
  * An IPv4 or IPv6 address.
15408
15412
  */
15409
- start?: string;
15413
+ start?: string | string;
15410
15414
  /**
15411
15415
  * An IPv4 or IPv6 address.
15412
15416
  */
15413
- end?: string;
15417
+ end?: string | string;
15414
15418
  };
15415
15419
  export type OpenStackSubNetAllocationPoolRequest = {
15416
15420
  /**
15417
15421
  * An IPv4 or IPv6 address.
15418
15422
  */
15419
- start: string;
15423
+ start: string | string;
15420
15424
  /**
15421
15425
  * An IPv4 or IPv6 address.
15422
15426
  */
15423
- end: string;
15427
+ end: string | string;
15424
15428
  };
15425
15429
  export type OpenStackSubNetRequest = {
15426
15430
  name: string;
@@ -15429,7 +15433,7 @@ export type OpenStackSubNetRequest = {
15429
15433
  /**
15430
15434
  * IP address of the gateway for this subnet
15431
15435
  */
15432
- gateway_ip?: string | null;
15436
+ gateway_ip?: string | string | null;
15433
15437
  /**
15434
15438
  * If True, no gateway IP address will be allocated
15435
15439
  */
@@ -15438,7 +15442,7 @@ export type OpenStackSubNetRequest = {
15438
15442
  /**
15439
15443
  * An IPv4 or IPv6 address.
15440
15444
  */
15441
- dns_nameservers?: Array<string>;
15445
+ dns_nameservers?: Array<string | string>;
15442
15446
  host_routes?: Array<OpenStackStaticRouteRequest>;
15443
15447
  };
15444
15448
  export type OpenStackTenant = {
@@ -15518,20 +15522,6 @@ export type OpenStackTenantChangePasswordRequest = {
15518
15522
  */
15519
15523
  user_password: string;
15520
15524
  };
15521
- export type OpenStackTenantQuota = {
15522
- instances?: number;
15523
- volumes?: number;
15524
- snapshots?: number;
15525
- ram?: number;
15526
- vcpu?: number;
15527
- storage?: number;
15528
- security_group_count?: number;
15529
- security_group_rule_count?: number;
15530
- floating_ip_count?: number;
15531
- network_count?: number;
15532
- subnet_count?: number;
15533
- port_count?: number;
15534
- };
15535
15525
  export type OpenStackTenantRequest = {
15536
15526
  name: string;
15537
15527
  description?: string;
@@ -15557,6 +15547,11 @@ export type OpenStackTenantSecurityGroupRequest = {
15557
15547
  description?: string;
15558
15548
  rules?: Array<OpenStackSecurityGroupRuleCreateRequest>;
15559
15549
  };
15550
+ export type OpenStackUsageStatsResponse = {
15551
+ readonly name: string;
15552
+ readonly running_instances_count: number;
15553
+ readonly created_instances_count: number;
15554
+ };
15560
15555
  export type OpenStackVolume = {
15561
15556
  readonly url?: string;
15562
15557
  readonly uuid?: string;
@@ -15745,7 +15740,7 @@ export type OrderAttachment = {
15745
15740
  attachment?: string | null;
15746
15741
  };
15747
15742
  export type OrderAttachmentRequest = {
15748
- attachment?: (Blob | File) | null;
15743
+ attachment?: Blob | File | null;
15749
15744
  };
15750
15745
  export type OrderBackendIdRequest = {
15751
15746
  backend_id: string;
@@ -16321,7 +16316,7 @@ export type PatchedCallCoiConfigurationRequest = {
16321
16316
  };
16322
16317
  export type PatchedCallManagingOrganisationRequest = {
16323
16318
  description?: string;
16324
- image?: (Blob | File) | null;
16319
+ image?: Blob | File | null;
16325
16320
  };
16326
16321
  export type PatchedCallResourceTemplateRequest = {
16327
16322
  name?: string;
@@ -16426,7 +16421,7 @@ export type PatchedCategoryComponentsRequest = {
16426
16421
  export type PatchedCategoryGroupRequest = {
16427
16422
  title?: string;
16428
16423
  description?: string;
16429
- icon?: (Blob | File) | null;
16424
+ icon?: Blob | File | null;
16430
16425
  };
16431
16426
  export type PatchedCategoryHelpArticlesRequest = {
16432
16427
  title?: string | null;
@@ -16496,7 +16491,7 @@ export type PatchedCustomerRequest = {
16496
16491
  * Organization identifier in another application.
16497
16492
  */
16498
16493
  backend_id?: string;
16499
- image?: (Blob | File) | null;
16494
+ image?: Blob | File | null;
16500
16495
  blocked?: boolean;
16501
16496
  archived?: boolean;
16502
16497
  display_billing_info_in_projects?: boolean;
@@ -16601,7 +16596,7 @@ export type PatchedExternalLinkRequest = {
16601
16596
  name?: string;
16602
16597
  description?: string;
16603
16598
  link?: string;
16604
- image?: (Blob | File) | null;
16599
+ image?: Blob | File | null;
16605
16600
  };
16606
16601
  export type PatchedFirecrestJobRequest = {
16607
16602
  name?: string;
@@ -16829,7 +16824,7 @@ export type PatchedMaintenanceAnnouncementTemplateRequest = {
16829
16824
  export type PatchedMarketplaceCategoryRequest = {
16830
16825
  title?: string;
16831
16826
  description?: string;
16832
- icon?: (Blob | File) | null;
16827
+ icon?: Blob | File | null;
16833
16828
  /**
16834
16829
  * Set to "true" if this category is for OpenStack VM. Only one category can have "true" value.
16835
16830
  */
@@ -16907,7 +16902,7 @@ export type PatchedOfferingEstimatedCostPolicyRequest = {
16907
16902
  export type PatchedOfferingGroupRequest = {
16908
16903
  title?: string;
16909
16904
  description?: string;
16910
- icon?: (Blob | File) | null;
16905
+ icon?: Blob | File | null;
16911
16906
  };
16912
16907
  export type PatchedOfferingPartitionUpdateRequest = {
16913
16908
  partition_uuid?: string;
@@ -17174,7 +17169,7 @@ export type PatchedOpenStackSubNetRequest = {
17174
17169
  /**
17175
17170
  * IP address of the gateway for this subnet
17176
17171
  */
17177
- gateway_ip?: string | null;
17172
+ gateway_ip?: string | string | null;
17178
17173
  /**
17179
17174
  * If True, no gateway IP address will be allocated
17180
17175
  */
@@ -17183,7 +17178,7 @@ export type PatchedOpenStackSubNetRequest = {
17183
17178
  /**
17184
17179
  * An IPv4 or IPv6 address.
17185
17180
  */
17186
- dns_nameservers?: Array<string>;
17181
+ dns_nameservers?: Array<string | string>;
17187
17182
  host_routes?: Array<OpenStackStaticRouteRequest>;
17188
17183
  };
17189
17184
  export type PatchedOpenStackTenantRequest = {
@@ -17234,7 +17229,7 @@ export type PatchedPaymentRequest = {
17234
17229
  profile?: string;
17235
17230
  date_of_payment?: string;
17236
17231
  sum?: string;
17237
- proof?: (Blob | File) | null;
17232
+ proof?: Blob | File | null;
17238
17233
  };
17239
17234
  export type PatchedProjectCreditRequest = {
17240
17235
  value?: string;
@@ -17314,7 +17309,7 @@ export type PatchedProjectRequest = {
17314
17309
  end_date?: string | null;
17315
17310
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
17316
17311
  is_industry?: boolean;
17317
- image?: (Blob | File) | null;
17312
+ image?: Blob | File | null;
17318
17313
  /**
17319
17314
  * Project type
17320
17315
  */
@@ -17365,6 +17360,7 @@ export type PatchedProjectTemplateRequest = {
17365
17360
  approval_limit?: string | null;
17366
17361
  /**
17367
17362
  * Maximum credit limit
17363
+ *
17368
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.
17369
17365
  */
17370
17366
  max_credit_limit?: string | null;
@@ -17646,7 +17642,7 @@ export type PatchedRancherServiceRequest = {
17646
17642
  /**
17647
17643
  * An IPv4 or IPv6 address.
17648
17644
  */
17649
- cluster_ip?: string | null;
17645
+ cluster_ip?: string | string | null;
17650
17646
  selector?: unknown;
17651
17647
  target_workloads?: Array<RancherNestedWorkloadRequest>;
17652
17648
  };
@@ -17945,7 +17941,7 @@ export type PatchedSectionRequest = {
17945
17941
  export type PatchedServiceProviderRequest = {
17946
17942
  description?: string;
17947
17943
  enable_notifications?: boolean;
17948
- image?: (Blob | File) | null;
17944
+ image?: Blob | File | null;
17949
17945
  /**
17950
17946
  * List of allowed domains for offering endpoints. Only staff can modify this field.
17951
17947
  */
@@ -18130,16 +18126,19 @@ export type PatchedUserRequest = {
18130
18126
  description?: string;
18131
18127
  /**
18132
18128
  * Staff status
18129
+ *
18133
18130
  * Designates whether the user can log into this admin site.
18134
18131
  */
18135
18132
  is_staff?: boolean;
18136
18133
  /**
18137
18134
  * Active
18135
+ *
18138
18136
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
18139
18137
  */
18140
18138
  is_active?: boolean;
18141
18139
  /**
18142
18140
  * Support status
18141
+ *
18143
18142
  * Designates whether the user is a global support user.
18144
18143
  */
18145
18144
  is_support?: boolean;
@@ -18159,7 +18158,7 @@ export type PatchedUserRequest = {
18159
18158
  first_name?: string;
18160
18159
  last_name?: string;
18161
18160
  birth_date?: string | null;
18162
- image?: (Blob | File) | null;
18161
+ image?: Blob | File | null;
18163
18162
  /**
18164
18163
  * User's gender (male, female, or unknown)
18165
18164
  */
@@ -18196,6 +18195,10 @@ export type PatchedUserRequest = {
18196
18195
  * Designates whether the user is allowed to manage remote user identities.
18197
18196
  */
18198
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;
18199
18202
  /**
18200
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.
18201
18204
  */
@@ -18271,7 +18274,7 @@ export type PaymentRequest = {
18271
18274
  profile: string;
18272
18275
  date_of_payment: string;
18273
18276
  sum?: string;
18274
- proof?: (Blob | File) | null;
18277
+ proof?: Blob | File | null;
18275
18278
  };
18276
18279
  export type PaymentTypeEnum = 'fixed_price' | 'invoices' | 'payment_gw_monthly';
18277
18280
  export type PaymentUrlRequest = {
@@ -18418,7 +18421,7 @@ export type PersonalAccessToken = {
18418
18421
  /**
18419
18422
  * An IPv4 or IPv6 address.
18420
18423
  */
18421
- last_used_ip: string;
18424
+ last_used_ip: string | string;
18422
18425
  use_count: number;
18423
18426
  created: string;
18424
18427
  };
@@ -19019,6 +19022,15 @@ export type ProjectInfoRequest = {
19019
19022
  */
19020
19023
  allowed_destinations?: string | null;
19021
19024
  };
19025
+ export type ProjectMapping = {
19026
+ uuid: string;
19027
+ name: string;
19028
+ customer_uuid: string;
19029
+ customer_name: string;
19030
+ };
19031
+ export type ProjectMappingMap = {
19032
+ '*': ProjectMapping | null;
19033
+ };
19022
19034
  export type ProjectOrderAutoApproval = {
19023
19035
  readonly uuid: string;
19024
19036
  readonly url: string;
@@ -19140,7 +19152,7 @@ export type ProjectRequest = {
19140
19152
  end_date?: string | null;
19141
19153
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
19142
19154
  is_industry?: boolean;
19143
- image?: (Blob | File) | null;
19155
+ image?: Blob | File | null;
19144
19156
  /**
19145
19157
  * Project type
19146
19158
  */
@@ -19249,6 +19261,7 @@ export type ProjectTemplate = {
19249
19261
  approval_limit?: string | null;
19250
19262
  /**
19251
19263
  * Maximum credit limit
19264
+ *
19252
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.
19253
19266
  */
19254
19267
  max_credit_limit?: string | null;
@@ -19290,6 +19303,7 @@ export type ProjectTemplateRequest = {
19290
19303
  approval_limit?: string | null;
19291
19304
  /**
19292
19305
  * Maximum credit limit
19306
+ *
19293
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.
19294
19308
  */
19295
19309
  max_credit_limit?: string | null;
@@ -19461,6 +19475,7 @@ export type Proposal = {
19461
19475
  readonly applicant_eduperson_assurance: unknown;
19462
19476
  /**
19463
19477
  * Source of identity
19478
+ *
19464
19479
  * Indicates what identity provider was used.
19465
19480
  */
19466
19481
  readonly applicant_identity_source: string;
@@ -19530,7 +19545,7 @@ export type ProposalDocumentationRequest = {
19530
19545
  /**
19531
19546
  * Upload supporting documentation in PDF format.
19532
19547
  */
19533
- file?: (Blob | File) | null;
19548
+ file?: Blob | File | null;
19534
19549
  };
19535
19550
  export type ProposalProjectRoleMapping = {
19536
19551
  readonly url: string;
@@ -21359,6 +21374,9 @@ export type RancherClusterTemplateNode = {
21359
21374
  preferred_volume_type?: string;
21360
21375
  role: RancherNodeRoleEnum;
21361
21376
  };
21377
+ export type RancherCreateManagementSecurityGroupResponse = {
21378
+ security_group_uuid: string;
21379
+ };
21362
21380
  export type RancherCreateNode = {
21363
21381
  cluster: string;
21364
21382
  role: RancherNodeRoleEnum;
@@ -21411,11 +21429,6 @@ export type RancherHpaRequest = {
21411
21429
  max_replicas?: number;
21412
21430
  metrics: unknown;
21413
21431
  };
21414
- export type RancherImportYaml = {
21415
- yaml: string;
21416
- default_namespace?: string | null;
21417
- namespace?: string | null;
21418
- };
21419
21432
  export type RancherImportYamlRequest = {
21420
21433
  yaml: string;
21421
21434
  default_namespace?: string | null;
@@ -21545,11 +21558,11 @@ export type RancherNestedPublicIp = {
21545
21558
  /**
21546
21559
  * An IPv4 or IPv6 address.
21547
21560
  */
21548
- ip_address?: string;
21561
+ ip_address?: string | string;
21549
21562
  /**
21550
21563
  * An IPv4 or IPv6 address.
21551
21564
  */
21552
- external_ip_address?: string;
21565
+ external_ip_address?: string | string;
21553
21566
  };
21554
21567
  export type RancherNestedWorkload = {
21555
21568
  readonly uuid?: string;
@@ -21642,7 +21655,7 @@ export type RancherService = {
21642
21655
  /**
21643
21656
  * An IPv4 or IPv6 address.
21644
21657
  */
21645
- cluster_ip?: string | null;
21658
+ cluster_ip?: string | string | null;
21646
21659
  selector?: unknown;
21647
21660
  target_workloads?: Array<RancherNestedWorkload>;
21648
21661
  readonly marketplace_offering_uuid?: string | null;
@@ -21691,7 +21704,7 @@ export type RancherServiceCreate = {
21691
21704
  /**
21692
21705
  * An IPv4 or IPv6 address.
21693
21706
  */
21694
- cluster_ip?: string | null;
21707
+ cluster_ip?: string | string | null;
21695
21708
  selector?: unknown;
21696
21709
  target_workloads?: Array<RancherWorkloadCreate>;
21697
21710
  readonly marketplace_offering_uuid: string | null;
@@ -21721,7 +21734,7 @@ export type RancherServiceCreateRequest = {
21721
21734
  /**
21722
21735
  * An IPv4 or IPv6 address.
21723
21736
  */
21724
- cluster_ip?: string | null;
21737
+ cluster_ip?: string | string | null;
21725
21738
  selector?: unknown;
21726
21739
  target_workloads?: Array<RancherWorkloadCreateRequest>;
21727
21740
  };
@@ -21738,7 +21751,7 @@ export type RancherServiceRequest = {
21738
21751
  /**
21739
21752
  * An IPv4 or IPv6 address.
21740
21753
  */
21741
- cluster_ip?: string | null;
21754
+ cluster_ip?: string | string | null;
21742
21755
  selector?: unknown;
21743
21756
  target_workloads: Array<RancherNestedWorkloadRequest>;
21744
21757
  };
@@ -22627,18 +22640,9 @@ export type ResourceProject = {
22627
22640
  readonly removed_by_username: string;
22628
22641
  readonly termination_metadata: unknown;
22629
22642
  };
22630
- export type ResourceProjectBackendId = {
22631
- backend_id: string;
22632
- };
22633
22643
  export type ResourceProjectBackendIdRequest = {
22634
22644
  backend_id: string;
22635
22645
  };
22636
- export type ResourceProjectErrorMessage = {
22637
- /**
22638
- * Free-form description of why the project transitioned to Erred.
22639
- */
22640
- error_message?: string;
22641
- };
22642
22646
  export type ResourceProjectErrorMessageRequest = {
22643
22647
  /**
22644
22648
  * Free-form description of why the project transitioned to Erred.
@@ -22817,6 +22821,7 @@ export type ResourceTeamMember = {
22817
22821
  export type ResourceTerminateRequest = {
22818
22822
  /**
22819
22823
  * Termination attributes
22824
+ *
22820
22825
  * Optional attributes/parameters to pass to the termination operation
22821
22826
  */
22822
22827
  attributes?: unknown;
@@ -23672,7 +23677,7 @@ export type RmqSubscription = {
23672
23677
  /**
23673
23678
  * An IPv4 or IPv6 address.
23674
23679
  */
23675
- source_ip: string;
23680
+ source_ip: string | string;
23676
23681
  };
23677
23682
  export type RmqVHostStatsItem = {
23678
23683
  readonly name: string;
@@ -24061,12 +24066,6 @@ export type RoundReviewer = {
24061
24066
  in_review_proposals: number;
24062
24067
  };
24063
24068
  export type RoundStatus = 'scheduled' | 'open' | 'ended';
24064
- export type RouterSetErredResponse = {
24065
- detail: string;
24066
- };
24067
- export type RouterSetOkResponse = {
24068
- detail: string;
24069
- };
24070
24069
  export type Rule = {
24071
24070
  name: string;
24072
24071
  readonly uuid: string;
@@ -24273,6 +24272,12 @@ export type ScreenshotRequest = {
24273
24272
  image: Blob | File;
24274
24273
  offering: string;
24275
24274
  };
24275
+ export type ScriptAsyncDryRunResponse = {
24276
+ uuid: string;
24277
+ };
24278
+ export type ScriptDryRunResponse = {
24279
+ output: string;
24280
+ };
24276
24281
  export type Secret = {
24277
24282
  name: string;
24278
24283
  id: string;
@@ -24420,7 +24425,7 @@ export type ServiceProviderRequest = {
24420
24425
  description?: string;
24421
24426
  enable_notifications?: boolean;
24422
24427
  customer: string;
24423
- image?: (Blob | File) | null;
24428
+ image?: Blob | File | null;
24424
24429
  /**
24425
24430
  * List of allowed domains for offering endpoints. Only staff can modify this field.
24426
24431
  */
@@ -25968,9 +25973,6 @@ export type TriggerSyncRequestRequest = {
25968
25973
  */
25969
25974
  resource_uuid?: string;
25970
25975
  };
25971
- export type UnsilenceActionResponse = {
25972
- status: string;
25973
- };
25974
25976
  export type UpdateActionsRequest = {
25975
25977
  /**
25976
25978
  * Optional provider action type to update. If not provided, updates all providers.
@@ -26122,16 +26124,19 @@ export type User = {
26122
26124
  description?: string;
26123
26125
  /**
26124
26126
  * Staff status
26127
+ *
26125
26128
  * Designates whether the user can log into this admin site.
26126
26129
  */
26127
26130
  is_staff?: boolean;
26128
26131
  /**
26129
26132
  * Active
26133
+ *
26130
26134
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
26131
26135
  */
26132
26136
  is_active?: boolean;
26133
26137
  /**
26134
26138
  * Support status
26139
+ *
26135
26140
  * Designates whether the user is a global support user.
26136
26141
  */
26137
26142
  is_support?: boolean;
@@ -26171,6 +26176,7 @@ export type User = {
26171
26176
  image?: string | null;
26172
26177
  /**
26173
26178
  * Source of identity
26179
+ *
26174
26180
  * Indicates what identity provider was used.
26175
26181
  */
26176
26182
  readonly identity_source?: string;
@@ -26214,6 +26220,10 @@ export type User = {
26214
26220
  * Designates whether the user is allowed to manage remote user identities.
26215
26221
  */
26216
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;
26217
26227
  /**
26218
26228
  * Per-attribute source and freshness tracking. Format: {'field_name': {'source': 'isd:<name>', 'timestamp': 'ISO8601'}}.
26219
26229
  */
@@ -26375,6 +26385,7 @@ export type UserAuthToken = {
26375
26385
  readonly user_username: string;
26376
26386
  /**
26377
26387
  * Active
26388
+ *
26378
26389
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
26379
26390
  */
26380
26391
  readonly user_is_active: boolean;
@@ -26450,7 +26461,7 @@ export type UserDataAccessLog = {
26450
26461
  /**
26451
26462
  * An IPv4 or IPv6 address.
26452
26463
  */
26453
- ip_address?: string | null;
26464
+ ip_address?: string | string | null;
26454
26465
  context?: {
26455
26466
  [key: string]: unknown;
26456
26467
  };
@@ -26458,6 +26469,9 @@ export type UserDataAccessLog = {
26458
26469
  export type UserEmailChangeRequest = {
26459
26470
  email: string;
26460
26471
  };
26472
+ export type UserHasResourceAccess = {
26473
+ readonly has_access: boolean;
26474
+ };
26461
26475
  export type UserIdentitySourceCount = {
26462
26476
  /**
26463
26477
  * Identity source
@@ -26496,6 +26510,154 @@ export type UserLanguageCount = {
26496
26510
  language: string;
26497
26511
  count: number;
26498
26512
  };
26513
+ export type UserMapping = {
26514
+ uuid: string;
26515
+ full_name: string;
26516
+ email: string;
26517
+ username: string;
26518
+ };
26519
+ export type UserMappingMap = {
26520
+ '*': UserMapping | null;
26521
+ };
26522
+ export type UserMe = {
26523
+ readonly url: string;
26524
+ readonly uuid: string;
26525
+ /**
26526
+ * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
26527
+ */
26528
+ username: string;
26529
+ /**
26530
+ * URL-friendly identifier. Only editable by staff users.
26531
+ */
26532
+ slug?: string;
26533
+ readonly full_name: string;
26534
+ native_name?: string;
26535
+ job_title?: string;
26536
+ email: string;
26537
+ phone_number?: string;
26538
+ organization?: string;
26539
+ readonly civil_number: string | null;
26540
+ description?: string;
26541
+ /**
26542
+ * Staff status
26543
+ *
26544
+ * Designates whether the user can log into this admin site.
26545
+ */
26546
+ is_staff?: boolean;
26547
+ /**
26548
+ * Active
26549
+ *
26550
+ * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
26551
+ */
26552
+ is_active?: boolean;
26553
+ /**
26554
+ * Support status
26555
+ *
26556
+ * Designates whether the user is a global support user.
26557
+ */
26558
+ is_support?: boolean;
26559
+ readonly token: string;
26560
+ /**
26561
+ * Token lifetime in seconds.
26562
+ */
26563
+ token_lifetime?: number | null;
26564
+ readonly token_expires_at: string | null;
26565
+ /**
26566
+ * Indicates what registration method was used.
26567
+ */
26568
+ readonly registration_method: string;
26569
+ readonly date_joined: string;
26570
+ /**
26571
+ * Indicates when the user has agreed with the policy.
26572
+ */
26573
+ readonly agreement_date: string | null;
26574
+ /**
26575
+ * Designates whether the user is allowed to receive email notifications.
26576
+ */
26577
+ notifications_enabled?: boolean;
26578
+ preferred_language?: string;
26579
+ readonly permissions: Array<Permission>;
26580
+ readonly requested_email: string | null;
26581
+ /**
26582
+ * Person's affiliation within organization such as student, faculty, staff.
26583
+ */
26584
+ readonly affiliations: unknown;
26585
+ first_name?: string;
26586
+ last_name?: string;
26587
+ birth_date?: string | null;
26588
+ readonly identity_provider_name: string;
26589
+ readonly identity_provider_label: string;
26590
+ readonly identity_provider_management_url: string;
26591
+ readonly identity_provider_fields: Array<string>;
26592
+ image?: string | null;
26593
+ /**
26594
+ * Source of identity
26595
+ *
26596
+ * Indicates what identity provider was used.
26597
+ */
26598
+ readonly identity_source: string;
26599
+ readonly should_protect_user_details: boolean;
26600
+ readonly has_active_session: boolean;
26601
+ readonly has_usable_password: boolean;
26602
+ readonly ip_address: string;
26603
+ /**
26604
+ * User's gender (male, female, or unknown)
26605
+ */
26606
+ gender?: GenderEnum | BlankEnum | NullEnum | null;
26607
+ /**
26608
+ * Honorific title (Mr, Ms, Dr, Prof, etc.)
26609
+ */
26610
+ personal_title?: string;
26611
+ place_of_birth?: string;
26612
+ address?: string;
26613
+ country_of_residence?: string;
26614
+ /**
26615
+ * Primary citizenship (ISO 3166-1 alpha-2 code)
26616
+ */
26617
+ nationality?: string;
26618
+ /**
26619
+ * List of all citizenships (ISO 3166-1 alpha-2 codes)
26620
+ */
26621
+ nationalities?: unknown;
26622
+ organization_country?: string;
26623
+ /**
26624
+ * SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
26625
+ */
26626
+ organization_type?: string;
26627
+ /**
26628
+ * Company registration code of the user's organization, if known
26629
+ */
26630
+ organization_registry_code?: string;
26631
+ /**
26632
+ * REFEDS assurance profile URIs from identity provider
26633
+ */
26634
+ eduperson_assurance?: unknown;
26635
+ /**
26636
+ * Designates whether the user is allowed to manage remote user identities.
26637
+ */
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;
26643
+ /**
26644
+ * Per-attribute source and freshness tracking. Format: {'field_name': {'source': 'isd:<name>', 'timestamp': 'ISO8601'}}.
26645
+ */
26646
+ readonly attribute_sources: unknown;
26647
+ /**
26648
+ * 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.
26649
+ */
26650
+ managed_isds?: unknown;
26651
+ /**
26652
+ * List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
26653
+ */
26654
+ readonly active_isds: unknown;
26655
+ /**
26656
+ * Reason why the user was deactivated. Visible to staff and support.
26657
+ */
26658
+ deactivation_reason?: string;
26659
+ profile_completeness: ProfileCompleteness;
26660
+ };
26499
26661
  export type UserNationalityStats = {
26500
26662
  /**
26501
26663
  * Nationality code
@@ -26584,16 +26746,19 @@ export type UserRequest = {
26584
26746
  description?: string;
26585
26747
  /**
26586
26748
  * Staff status
26749
+ *
26587
26750
  * Designates whether the user can log into this admin site.
26588
26751
  */
26589
26752
  is_staff?: boolean;
26590
26753
  /**
26591
26754
  * Active
26755
+ *
26592
26756
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
26593
26757
  */
26594
26758
  is_active?: boolean;
26595
26759
  /**
26596
26760
  * Support status
26761
+ *
26597
26762
  * Designates whether the user is a global support user.
26598
26763
  */
26599
26764
  is_support?: boolean;
@@ -26613,7 +26778,7 @@ export type UserRequest = {
26613
26778
  first_name?: string;
26614
26779
  last_name?: string;
26615
26780
  birth_date?: string | null;
26616
- image?: (Blob | File) | null;
26781
+ image?: Blob | File | null;
26617
26782
  /**
26618
26783
  * User's gender (male, female, or unknown)
26619
26784
  */
@@ -26650,6 +26815,10 @@ export type UserRequest = {
26650
26815
  * Designates whether the user is allowed to manage remote user identities.
26651
26816
  */
26652
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;
26653
26822
  /**
26654
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.
26655
26824
  */
@@ -26885,12 +27054,6 @@ export type VmwareDisk = {
26885
27054
  readonly is_usage_based?: boolean | null;
26886
27055
  readonly is_limit_based?: boolean | null;
26887
27056
  };
26888
- export type VmwareDiskExtend = {
26889
- /**
26890
- * Size in MiB
26891
- */
26892
- size: number;
26893
- };
26894
27057
  export type VmwareDiskExtendRequest = {
26895
27058
  /**
26896
27059
  * Size in MiB
@@ -27402,32 +27565,32 @@ export type GenericOrderAttributes = {
27402
27565
  * A free-form description for the resource.
27403
27566
  */
27404
27567
  description?: string;
27405
- [key: string]: unknown | string | undefined;
27568
+ [key: string]: unknown;
27406
27569
  };
27407
27570
  export type CallManagingOrganisationRequestForm = {
27408
27571
  description?: string;
27409
27572
  customer: string;
27410
- image?: (Blob | File) | null;
27573
+ image?: Blob | File | null;
27411
27574
  };
27412
27575
  export type CallManagingOrganisationRequestMultipart = {
27413
27576
  description?: string;
27414
27577
  customer: string;
27415
- image?: (Blob | File) | null;
27578
+ image?: Blob | File | null;
27416
27579
  };
27417
27580
  export type PatchedCallManagingOrganisationRequestForm = {
27418
27581
  description?: string;
27419
- image?: (Blob | File) | null;
27582
+ image?: Blob | File | null;
27420
27583
  };
27421
27584
  export type PatchedCallManagingOrganisationRequestMultipart = {
27422
27585
  description?: string;
27423
- image?: (Blob | File) | null;
27586
+ image?: Blob | File | null;
27424
27587
  };
27425
27588
  export type CustomerRequestForm = {
27426
27589
  /**
27427
27590
  * Organization identifier in another application.
27428
27591
  */
27429
27592
  backend_id?: string;
27430
- image?: (Blob | File) | null;
27593
+ image?: Blob | File | null;
27431
27594
  blocked?: boolean;
27432
27595
  archived?: boolean;
27433
27596
  display_billing_info_in_projects?: boolean;
@@ -27515,7 +27678,7 @@ export type CustomerRequestMultipart = {
27515
27678
  * Organization identifier in another application.
27516
27679
  */
27517
27680
  backend_id?: string;
27518
- image?: (Blob | File) | null;
27681
+ image?: Blob | File | null;
27519
27682
  blocked?: boolean;
27520
27683
  archived?: boolean;
27521
27684
  display_billing_info_in_projects?: boolean;
@@ -27603,7 +27766,7 @@ export type PatchedCustomerRequestForm = {
27603
27766
  * Organization identifier in another application.
27604
27767
  */
27605
27768
  backend_id?: string;
27606
- image?: (Blob | File) | null;
27769
+ image?: Blob | File | null;
27607
27770
  blocked?: boolean;
27608
27771
  archived?: boolean;
27609
27772
  display_billing_info_in_projects?: boolean;
@@ -27691,7 +27854,7 @@ export type PatchedCustomerRequestMultipart = {
27691
27854
  * Organization identifier in another application.
27692
27855
  */
27693
27856
  backend_id?: string;
27694
- image?: (Blob | File) | null;
27857
+ image?: Blob | File | null;
27695
27858
  blocked?: boolean;
27696
27859
  archived?: boolean;
27697
27860
  display_billing_info_in_projects?: boolean;
@@ -27778,25 +27941,25 @@ export type ExternalLinkRequestForm = {
27778
27941
  name: string;
27779
27942
  description?: string;
27780
27943
  link: string;
27781
- image?: (Blob | File) | null;
27944
+ image?: Blob | File | null;
27782
27945
  };
27783
27946
  export type ExternalLinkRequestMultipart = {
27784
27947
  name: string;
27785
27948
  description?: string;
27786
27949
  link: string;
27787
- image?: (Blob | File) | null;
27950
+ image?: Blob | File | null;
27788
27951
  };
27789
27952
  export type PatchedExternalLinkRequestForm = {
27790
27953
  name?: string;
27791
27954
  description?: string;
27792
27955
  link?: string;
27793
- image?: (Blob | File) | null;
27956
+ image?: Blob | File | null;
27794
27957
  };
27795
27958
  export type PatchedExternalLinkRequestMultipart = {
27796
27959
  name?: string;
27797
27960
  description?: string;
27798
27961
  link?: string;
27799
- image?: (Blob | File) | null;
27962
+ image?: Blob | File | null;
27800
27963
  };
27801
27964
  export type PaidRequestForm = {
27802
27965
  date: string;
@@ -27809,7 +27972,7 @@ export type PaidRequestMultipart = {
27809
27972
  export type MarketplaceCategoryRequestForm = {
27810
27973
  title: string;
27811
27974
  description?: string;
27812
- icon?: (Blob | File) | null;
27975
+ icon?: Blob | File | null;
27813
27976
  /**
27814
27977
  * Set to "true" if this category is for OpenStack VM. Only one category can have "true" value.
27815
27978
  */
@@ -27827,7 +27990,7 @@ export type MarketplaceCategoryRequestForm = {
27827
27990
  export type MarketplaceCategoryRequestMultipart = {
27828
27991
  title: string;
27829
27992
  description?: string;
27830
- icon?: (Blob | File) | null;
27993
+ icon?: Blob | File | null;
27831
27994
  /**
27832
27995
  * Set to "true" if this category is for OpenStack VM. Only one category can have "true" value.
27833
27996
  */
@@ -27845,7 +28008,7 @@ export type MarketplaceCategoryRequestMultipart = {
27845
28008
  export type PatchedMarketplaceCategoryRequestForm = {
27846
28009
  title?: string;
27847
28010
  description?: string;
27848
- icon?: (Blob | File) | null;
28011
+ icon?: Blob | File | null;
27849
28012
  /**
27850
28013
  * Set to "true" if this category is for OpenStack VM. Only one category can have "true" value.
27851
28014
  */
@@ -27863,7 +28026,7 @@ export type PatchedMarketplaceCategoryRequestForm = {
27863
28026
  export type PatchedMarketplaceCategoryRequestMultipart = {
27864
28027
  title?: string;
27865
28028
  description?: string;
27866
- icon?: (Blob | File) | null;
28029
+ icon?: Blob | File | null;
27867
28030
  /**
27868
28031
  * Set to "true" if this category is for OpenStack VM. Only one category can have "true" value.
27869
28032
  */
@@ -27881,22 +28044,22 @@ export type PatchedMarketplaceCategoryRequestMultipart = {
27881
28044
  export type CategoryGroupRequestForm = {
27882
28045
  title: string;
27883
28046
  description?: string;
27884
- icon?: (Blob | File) | null;
28047
+ icon?: Blob | File | null;
27885
28048
  };
27886
28049
  export type CategoryGroupRequestMultipart = {
27887
28050
  title: string;
27888
28051
  description?: string;
27889
- icon?: (Blob | File) | null;
28052
+ icon?: Blob | File | null;
27890
28053
  };
27891
28054
  export type PatchedCategoryGroupRequestForm = {
27892
28055
  title?: string;
27893
28056
  description?: string;
27894
- icon?: (Blob | File) | null;
28057
+ icon?: Blob | File | null;
27895
28058
  };
27896
28059
  export type PatchedCategoryGroupRequestMultipart = {
27897
28060
  title?: string;
27898
28061
  description?: string;
27899
- icon?: (Blob | File) | null;
28062
+ icon?: Blob | File | null;
27900
28063
  };
27901
28064
  export type OfferingFileRequestForm = {
27902
28065
  name: string;
@@ -27911,24 +28074,24 @@ export type OfferingFileRequestMultipart = {
27911
28074
  export type OfferingGroupRequestForm = {
27912
28075
  title: string;
27913
28076
  description?: string;
27914
- icon?: (Blob | File) | null;
28077
+ icon?: Blob | File | null;
27915
28078
  customer: string;
27916
28079
  };
27917
28080
  export type OfferingGroupRequestMultipart = {
27918
28081
  title: string;
27919
28082
  description?: string;
27920
- icon?: (Blob | File) | null;
28083
+ icon?: Blob | File | null;
27921
28084
  customer: string;
27922
28085
  };
27923
28086
  export type PatchedOfferingGroupRequestForm = {
27924
28087
  title?: string;
27925
28088
  description?: string;
27926
- icon?: (Blob | File) | null;
28089
+ icon?: Blob | File | null;
27927
28090
  };
27928
28091
  export type PatchedOfferingGroupRequestMultipart = {
27929
28092
  title?: string;
27930
28093
  description?: string;
27931
- icon?: (Blob | File) | null;
28094
+ icon?: Blob | File | null;
27932
28095
  };
27933
28096
  export type OrderConsumerInfoRequestForm = {
27934
28097
  consumer_message?: string;
@@ -27949,10 +28112,10 @@ export type OrderProviderInfoRequestMultipart = {
27949
28112
  provider_message_attachment?: Blob | File;
27950
28113
  };
27951
28114
  export type OrderAttachmentRequestForm = {
27952
- attachment?: (Blob | File) | null;
28115
+ attachment?: Blob | File | null;
27953
28116
  };
27954
28117
  export type OrderAttachmentRequestMultipart = {
27955
- attachment?: (Blob | File) | null;
28118
+ attachment?: Blob | File | null;
27956
28119
  };
27957
28120
  export type OfferingCreateRequestForm = {
27958
28121
  name: string;
@@ -27979,7 +28142,7 @@ export type OfferingCreateRequestForm = {
27979
28142
  vendor_details?: string;
27980
28143
  getting_started?: string;
27981
28144
  integration_guide?: string;
27982
- thumbnail?: (Blob | File) | null;
28145
+ thumbnail?: Blob | File | null;
27983
28146
  plans?: Array<BaseProviderPlanRequest>;
27984
28147
  type: string;
27985
28148
  /**
@@ -28002,7 +28165,7 @@ export type OfferingCreateRequestForm = {
28002
28165
  * Validation rules for resource backend_id: format regex and uniqueness scope.
28003
28166
  */
28004
28167
  backend_id_rules?: unknown;
28005
- image?: (Blob | File) | null;
28168
+ image?: Blob | File | null;
28006
28169
  backend_metadata?: unknown;
28007
28170
  compliance_checklist?: string | null;
28008
28171
  offering_group?: string | null;
@@ -28035,7 +28198,7 @@ export type OfferingCreateRequestMultipart = {
28035
28198
  vendor_details?: string;
28036
28199
  getting_started?: string;
28037
28200
  integration_guide?: string;
28038
- thumbnail?: (Blob | File) | null;
28201
+ thumbnail?: Blob | File | null;
28039
28202
  plans?: Array<BaseProviderPlanRequest>;
28040
28203
  type: string;
28041
28204
  /**
@@ -28058,7 +28221,7 @@ export type OfferingCreateRequestMultipart = {
28058
28221
  * Validation rules for resource backend_id: format regex and uniqueness scope.
28059
28222
  */
28060
28223
  backend_id_rules?: unknown;
28061
- image?: (Blob | File) | null;
28224
+ image?: Blob | File | null;
28062
28225
  backend_metadata?: unknown;
28063
28226
  compliance_checklist?: string | null;
28064
28227
  offering_group?: string | null;
@@ -28160,7 +28323,7 @@ export type ServiceProviderRequestForm = {
28160
28323
  description?: string;
28161
28324
  enable_notifications?: boolean;
28162
28325
  customer: string;
28163
- image?: (Blob | File) | null;
28326
+ image?: Blob | File | null;
28164
28327
  /**
28165
28328
  * List of allowed domains for offering endpoints. Only staff can modify this field.
28166
28329
  */
@@ -28170,7 +28333,7 @@ export type ServiceProviderRequestMultipart = {
28170
28333
  description?: string;
28171
28334
  enable_notifications?: boolean;
28172
28335
  customer: string;
28173
- image?: (Blob | File) | null;
28336
+ image?: Blob | File | null;
28174
28337
  /**
28175
28338
  * List of allowed domains for offering endpoints. Only staff can modify this field.
28176
28339
  */
@@ -28179,7 +28342,7 @@ export type ServiceProviderRequestMultipart = {
28179
28342
  export type PatchedServiceProviderRequestForm = {
28180
28343
  description?: string;
28181
28344
  enable_notifications?: boolean;
28182
- image?: (Blob | File) | null;
28345
+ image?: Blob | File | null;
28183
28346
  /**
28184
28347
  * List of allowed domains for offering endpoints. Only staff can modify this field.
28185
28348
  */
@@ -28188,7 +28351,7 @@ export type PatchedServiceProviderRequestForm = {
28188
28351
  export type PatchedServiceProviderRequestMultipart = {
28189
28352
  description?: string;
28190
28353
  enable_notifications?: boolean;
28191
- image?: (Blob | File) | null;
28354
+ image?: Blob | File | null;
28192
28355
  /**
28193
28356
  * List of allowed domains for offering endpoints. Only staff can modify this field.
28194
28357
  */
@@ -28198,13 +28361,13 @@ export type OnboardingJustificationDocumentationRequestForm = {
28198
28361
  /**
28199
28362
  * Upload supporting documentation.
28200
28363
  */
28201
- file?: (Blob | File) | null;
28364
+ file?: Blob | File | null;
28202
28365
  };
28203
28366
  export type OnboardingJustificationDocumentationRequestMultipart = {
28204
28367
  /**
28205
28368
  * Upload supporting documentation.
28206
28369
  */
28207
- file?: (Blob | File) | null;
28370
+ file?: Blob | File | null;
28208
28371
  };
28209
28372
  export type ProjectRequestForm = {
28210
28373
  name: string;
@@ -28235,7 +28398,7 @@ export type ProjectRequestForm = {
28235
28398
  end_date?: string | null;
28236
28399
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
28237
28400
  is_industry?: boolean;
28238
- image?: (Blob | File) | null;
28401
+ image?: Blob | File | null;
28239
28402
  /**
28240
28403
  * Project type
28241
28404
  */
@@ -28286,7 +28449,7 @@ export type ProjectRequestMultipart = {
28286
28449
  end_date?: string | null;
28287
28450
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
28288
28451
  is_industry?: boolean;
28289
- image?: (Blob | File) | null;
28452
+ image?: Blob | File | null;
28290
28453
  /**
28291
28454
  * Project type
28292
28455
  */
@@ -28337,7 +28500,7 @@ export type PatchedProjectRequestForm = {
28337
28500
  end_date?: string | null;
28338
28501
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
28339
28502
  is_industry?: boolean;
28340
- image?: (Blob | File) | null;
28503
+ image?: Blob | File | null;
28341
28504
  /**
28342
28505
  * Project type
28343
28506
  */
@@ -28388,7 +28551,7 @@ export type PatchedProjectRequestMultipart = {
28388
28551
  end_date?: string | null;
28389
28552
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
28390
28553
  is_industry?: boolean;
28391
- image?: (Blob | File) | null;
28554
+ image?: Blob | File | null;
28392
28555
  /**
28393
28556
  * Project type
28394
28557
  */
@@ -28465,27 +28628,27 @@ export type ConstanceSettingsRequestForm = {
28465
28628
  COMMON_FOOTER_HTML?: string;
28466
28629
  LANGUAGE_CHOICES?: string;
28467
28630
  DISABLE_DARK_THEME?: boolean;
28468
- POWERED_BY_LOGO?: (Blob | File) | null;
28469
- HERO_IMAGE?: (Blob | File) | null;
28470
- MARKETPLACE_HERO_IMAGE?: (Blob | File) | null;
28471
- CALL_MANAGEMENT_HERO_IMAGE?: (Blob | File) | null;
28472
- SIDEBAR_LOGO?: (Blob | File) | null;
28473
- SIDEBAR_LOGO_DARK?: (Blob | File) | null;
28474
- SIDEBAR_LOGO_MOBILE?: (Blob | File) | null;
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;
28475
28638
  SIDEBAR_STYLE?: SidebarstyleEnum;
28476
28639
  FONT_FAMILY?: FontfamilyEnum;
28477
- LOGIN_LOGO?: (Blob | File) | null;
28640
+ LOGIN_LOGO?: Blob | File | null;
28478
28641
  LOGIN_LOGO_MULTILINGUAL?: {
28479
- [key: string]: (Blob | File) | null;
28642
+ [key: string]: Blob | File | null;
28480
28643
  };
28481
28644
  LOGIN_PAGE_LAYOUT?: LoginpagelayoutEnum;
28482
28645
  LOGIN_PAGE_VIDEO_URL?: string;
28483
28646
  LOGIN_PAGE_STATS?: Array<unknown>;
28484
28647
  LOGIN_PAGE_CAROUSEL_SLIDES?: Array<unknown>;
28485
28648
  LOGIN_PAGE_NEWS?: Array<unknown>;
28486
- FAVICON?: (Blob | File) | null;
28487
- OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
28488
- DISCLAIMER_AREA_LOGO?: (Blob | File) | null;
28649
+ FAVICON?: Blob | File | null;
28650
+ OFFERING_LOGO_PLACEHOLDER?: Blob | File | null;
28651
+ DISCLAIMER_AREA_LOGO?: Blob | File | null;
28489
28652
  WALDUR_SUPPORT_ENABLED?: boolean;
28490
28653
  WALDUR_SUPPORT_ACTIVE_BACKEND_TYPE?: WaldursupportactivebackendtypeEnum;
28491
28654
  WALDUR_SUPPORT_DISPLAY_REQUEST_TYPE?: boolean;
@@ -28579,7 +28742,7 @@ export type ConstanceSettingsRequestForm = {
28579
28742
  SCIM_PULL_API_URL?: string;
28580
28743
  SCIM_PULL_API_KEY?: string;
28581
28744
  SCIM_PULL_SOURCE_NAME?: string;
28582
- KEYCLOAK_ICON?: (Blob | File) | null;
28745
+ KEYCLOAK_ICON?: Blob | File | null;
28583
28746
  COUNTRIES?: Array<string>;
28584
28747
  OIDC_AUTH_URL?: string;
28585
28748
  OIDC_INTROSPECTION_URL?: string;
@@ -28743,27 +28906,27 @@ export type ConstanceSettingsRequestMultipart = {
28743
28906
  COMMON_FOOTER_HTML?: string;
28744
28907
  LANGUAGE_CHOICES?: string;
28745
28908
  DISABLE_DARK_THEME?: boolean;
28746
- POWERED_BY_LOGO?: (Blob | File) | null;
28747
- HERO_IMAGE?: (Blob | File) | null;
28748
- MARKETPLACE_HERO_IMAGE?: (Blob | File) | null;
28749
- CALL_MANAGEMENT_HERO_IMAGE?: (Blob | File) | null;
28750
- SIDEBAR_LOGO?: (Blob | File) | null;
28751
- SIDEBAR_LOGO_DARK?: (Blob | File) | null;
28752
- SIDEBAR_LOGO_MOBILE?: (Blob | File) | null;
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;
28753
28916
  SIDEBAR_STYLE?: SidebarstyleEnum;
28754
28917
  FONT_FAMILY?: FontfamilyEnum;
28755
- LOGIN_LOGO?: (Blob | File) | null;
28918
+ LOGIN_LOGO?: Blob | File | null;
28756
28919
  LOGIN_LOGO_MULTILINGUAL?: {
28757
- [key: string]: (Blob | File) | null;
28920
+ [key: string]: Blob | File | null;
28758
28921
  };
28759
28922
  LOGIN_PAGE_LAYOUT?: LoginpagelayoutEnum;
28760
28923
  LOGIN_PAGE_VIDEO_URL?: string;
28761
28924
  LOGIN_PAGE_STATS?: Array<unknown>;
28762
28925
  LOGIN_PAGE_CAROUSEL_SLIDES?: Array<unknown>;
28763
28926
  LOGIN_PAGE_NEWS?: Array<unknown>;
28764
- FAVICON?: (Blob | File) | null;
28765
- OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
28766
- DISCLAIMER_AREA_LOGO?: (Blob | File) | null;
28927
+ FAVICON?: Blob | File | null;
28928
+ OFFERING_LOGO_PLACEHOLDER?: Blob | File | null;
28929
+ DISCLAIMER_AREA_LOGO?: Blob | File | null;
28767
28930
  WALDUR_SUPPORT_ENABLED?: boolean;
28768
28931
  WALDUR_SUPPORT_ACTIVE_BACKEND_TYPE?: WaldursupportactivebackendtypeEnum;
28769
28932
  WALDUR_SUPPORT_DISPLAY_REQUEST_TYPE?: boolean;
@@ -28857,7 +29020,7 @@ export type ConstanceSettingsRequestMultipart = {
28857
29020
  SCIM_PULL_API_URL?: string;
28858
29021
  SCIM_PULL_API_KEY?: string;
28859
29022
  SCIM_PULL_SOURCE_NAME?: string;
28860
- KEYCLOAK_ICON?: (Blob | File) | null;
29023
+ KEYCLOAK_ICON?: Blob | File | null;
28861
29024
  COUNTRIES?: Array<string>;
28862
29025
  OIDC_AUTH_URL?: string;
28863
29026
  OIDC_INTROSPECTION_URL?: string;
@@ -28970,37 +29133,37 @@ export type PaymentRequestForm = {
28970
29133
  profile: string;
28971
29134
  date_of_payment: string;
28972
29135
  sum?: string;
28973
- proof?: (Blob | File) | null;
29136
+ proof?: Blob | File | null;
28974
29137
  };
28975
29138
  export type PaymentRequestMultipart = {
28976
29139
  profile: string;
28977
29140
  date_of_payment: string;
28978
29141
  sum?: string;
28979
- proof?: (Blob | File) | null;
29142
+ proof?: Blob | File | null;
28980
29143
  };
28981
29144
  export type PatchedPaymentRequestForm = {
28982
29145
  profile?: string;
28983
29146
  date_of_payment?: string;
28984
29147
  sum?: string;
28985
- proof?: (Blob | File) | null;
29148
+ proof?: Blob | File | null;
28986
29149
  };
28987
29150
  export type PatchedPaymentRequestMultipart = {
28988
29151
  profile?: string;
28989
29152
  date_of_payment?: string;
28990
29153
  sum?: string;
28991
- proof?: (Blob | File) | null;
29154
+ proof?: Blob | File | null;
28992
29155
  };
28993
29156
  export type ProposalDocumentationRequestForm = {
28994
29157
  /**
28995
29158
  * Upload supporting documentation in PDF format.
28996
29159
  */
28997
- file?: (Blob | File) | null;
29160
+ file?: Blob | File | null;
28998
29161
  };
28999
29162
  export type ProposalDocumentationRequestMultipart = {
29000
29163
  /**
29001
29164
  * Upload supporting documentation in PDF format.
29002
29165
  */
29003
- file?: (Blob | File) | null;
29166
+ file?: Blob | File | null;
29004
29167
  };
29005
29168
  export type FirecrestJobRequestForm = {
29006
29169
  name: string;
@@ -29049,16 +29212,19 @@ export type UserRequestForm = {
29049
29212
  description?: string;
29050
29213
  /**
29051
29214
  * Staff status
29215
+ *
29052
29216
  * Designates whether the user can log into this admin site.
29053
29217
  */
29054
29218
  is_staff?: boolean;
29055
29219
  /**
29056
29220
  * Active
29221
+ *
29057
29222
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
29058
29223
  */
29059
29224
  is_active?: boolean;
29060
29225
  /**
29061
29226
  * Support status
29227
+ *
29062
29228
  * Designates whether the user is a global support user.
29063
29229
  */
29064
29230
  is_support?: boolean;
@@ -29078,7 +29244,7 @@ export type UserRequestForm = {
29078
29244
  first_name?: string;
29079
29245
  last_name?: string;
29080
29246
  birth_date?: string | null;
29081
- image?: (Blob | File) | null;
29247
+ image?: Blob | File | null;
29082
29248
  /**
29083
29249
  * User's gender (male, female, or unknown)
29084
29250
  */
@@ -29115,6 +29281,10 @@ export type UserRequestForm = {
29115
29281
  * Designates whether the user is allowed to manage remote user identities.
29116
29282
  */
29117
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;
29118
29288
  /**
29119
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.
29120
29290
  */
@@ -29141,16 +29311,19 @@ export type UserRequestMultipart = {
29141
29311
  description?: string;
29142
29312
  /**
29143
29313
  * Staff status
29314
+ *
29144
29315
  * Designates whether the user can log into this admin site.
29145
29316
  */
29146
29317
  is_staff?: boolean;
29147
29318
  /**
29148
29319
  * Active
29320
+ *
29149
29321
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
29150
29322
  */
29151
29323
  is_active?: boolean;
29152
29324
  /**
29153
29325
  * Support status
29326
+ *
29154
29327
  * Designates whether the user is a global support user.
29155
29328
  */
29156
29329
  is_support?: boolean;
@@ -29170,7 +29343,7 @@ export type UserRequestMultipart = {
29170
29343
  first_name?: string;
29171
29344
  last_name?: string;
29172
29345
  birth_date?: string | null;
29173
- image?: (Blob | File) | null;
29346
+ image?: Blob | File | null;
29174
29347
  /**
29175
29348
  * User's gender (male, female, or unknown)
29176
29349
  */
@@ -29207,6 +29380,10 @@ export type UserRequestMultipart = {
29207
29380
  * Designates whether the user is allowed to manage remote user identities.
29208
29381
  */
29209
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;
29210
29387
  /**
29211
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.
29212
29389
  */
@@ -29232,16 +29409,19 @@ export type PatchedUserRequestForm = {
29232
29409
  description?: string;
29233
29410
  /**
29234
29411
  * Staff status
29412
+ *
29235
29413
  * Designates whether the user can log into this admin site.
29236
29414
  */
29237
29415
  is_staff?: boolean;
29238
29416
  /**
29239
29417
  * Active
29418
+ *
29240
29419
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
29241
29420
  */
29242
29421
  is_active?: boolean;
29243
29422
  /**
29244
29423
  * Support status
29424
+ *
29245
29425
  * Designates whether the user is a global support user.
29246
29426
  */
29247
29427
  is_support?: boolean;
@@ -29261,7 +29441,7 @@ export type PatchedUserRequestForm = {
29261
29441
  first_name?: string;
29262
29442
  last_name?: string;
29263
29443
  birth_date?: string | null;
29264
- image?: (Blob | File) | null;
29444
+ image?: Blob | File | null;
29265
29445
  /**
29266
29446
  * User's gender (male, female, or unknown)
29267
29447
  */
@@ -29298,6 +29478,10 @@ export type PatchedUserRequestForm = {
29298
29478
  * Designates whether the user is allowed to manage remote user identities.
29299
29479
  */
29300
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;
29301
29485
  /**
29302
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.
29303
29487
  */
@@ -29323,16 +29507,19 @@ export type PatchedUserRequestMultipart = {
29323
29507
  description?: string;
29324
29508
  /**
29325
29509
  * Staff status
29510
+ *
29326
29511
  * Designates whether the user can log into this admin site.
29327
29512
  */
29328
29513
  is_staff?: boolean;
29329
29514
  /**
29330
29515
  * Active
29516
+ *
29331
29517
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
29332
29518
  */
29333
29519
  is_active?: boolean;
29334
29520
  /**
29335
29521
  * Support status
29522
+ *
29336
29523
  * Designates whether the user is a global support user.
29337
29524
  */
29338
29525
  is_support?: boolean;
@@ -29352,7 +29539,7 @@ export type PatchedUserRequestMultipart = {
29352
29539
  first_name?: string;
29353
29540
  last_name?: string;
29354
29541
  birth_date?: string | null;
29355
- image?: (Blob | File) | null;
29542
+ image?: Blob | File | null;
29356
29543
  /**
29357
29544
  * User's gender (male, female, or unknown)
29358
29545
  */
@@ -29389,6 +29576,10 @@ export type PatchedUserRequestMultipart = {
29389
29576
  * Designates whether the user is allowed to manage remote user identities.
29390
29577
  */
29391
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;
29392
29583
  /**
29393
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.
29394
29585
  */
@@ -29477,7 +29668,7 @@ export type ProviderOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'ba
29477
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';
29478
29669
  export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
29479
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';
29480
- 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';
29481
29672
  export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
29482
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';
29483
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';
@@ -32360,7 +32551,7 @@ export type AwsInstancesResizeData = {
32360
32551
  url: '/api/aws-instances/{uuid}/resize/';
32361
32552
  };
32362
32553
  export type AwsInstancesResizeResponses = {
32363
- 200: AwsInstanceResize;
32554
+ 202: Status;
32364
32555
  };
32365
32556
  export type AwsInstancesResizeResponse = AwsInstancesResizeResponses[keyof AwsInstancesResizeResponses];
32366
32557
  export type AwsInstancesRestartData = {
@@ -32689,9 +32880,11 @@ export type AwsVolumesAttachData = {
32689
32880
  url: '/api/aws-volumes/{uuid}/attach/';
32690
32881
  };
32691
32882
  export type AwsVolumesAttachResponses = {
32692
- 200: AwsVolumeAttach;
32883
+ /**
32884
+ * No response body
32885
+ */
32886
+ 202: unknown;
32693
32887
  };
32694
- export type AwsVolumesAttachResponse = AwsVolumesAttachResponses[keyof AwsVolumesAttachResponses];
32695
32888
  export type AwsVolumesDetachData = {
32696
32889
  body?: never;
32697
32890
  path: {
@@ -33945,7 +34138,7 @@ export type AzureSqlServersCreateDatabaseData = {
33945
34138
  url: '/api/azure-sql-servers/{uuid}/create_database/';
33946
34139
  };
33947
34140
  export type AzureSqlServersCreateDatabaseResponses = {
33948
- 200: AzureSqlDatabaseCreate;
34141
+ 202: AzureSqlDatabaseCreateResponse;
33949
34142
  };
33950
34143
  export type AzureSqlServersCreateDatabaseResponse = AzureSqlServersCreateDatabaseResponses[keyof AzureSqlServersCreateDatabaseResponses];
33951
34144
  export type AzureSqlServersPullData = {
@@ -35232,7 +35425,7 @@ export type BookingResourcesAcceptData = {
35232
35425
  url: '/api/booking-resources/{uuid}/accept/';
35233
35426
  };
35234
35427
  export type BookingResourcesAcceptResponses = {
35235
- 200: BookingResource;
35428
+ 200: BookingOrderUuid;
35236
35429
  };
35237
35430
  export type BookingResourcesAcceptResponse = BookingResourcesAcceptResponses[keyof BookingResourcesAcceptResponses];
35238
35431
  export type BookingResourcesRejectData = {
@@ -35244,7 +35437,7 @@ export type BookingResourcesRejectData = {
35244
35437
  url: '/api/booking-resources/{uuid}/reject/';
35245
35438
  };
35246
35439
  export type BookingResourcesRejectResponses = {
35247
- 200: BookingResource;
35440
+ 200: BookingOrderUuid;
35248
35441
  };
35249
35442
  export type BookingResourcesRejectResponse = BookingResourcesRejectResponses[keyof BookingResourcesRejectResponses];
35250
35443
  export type BroadcastMessageTemplatesListData = {
@@ -35501,13 +35694,11 @@ export type BroadcastMessagesSendResponses = {
35501
35694
  export type BroadcastMessagesRecipientsRetrieveData = {
35502
35695
  body?: never;
35503
35696
  path?: never;
35504
- query?: {
35505
- field?: Array<BroadcastMessageFieldEnum>;
35506
- };
35697
+ query?: never;
35507
35698
  url: '/api/broadcast-messages/recipients/';
35508
35699
  };
35509
35700
  export type BroadcastMessagesRecipientsRetrieveResponses = {
35510
- 200: BroadcastMessage;
35701
+ 200: NotificationRecipient;
35511
35702
  };
35512
35703
  export type BroadcastMessagesRecipientsRetrieveResponse = BroadcastMessagesRecipientsRetrieveResponses[keyof BroadcastMessagesRecipientsRetrieveResponses];
35513
35704
  export type BroadcastMessagesRecipientsCountData = {
@@ -37753,9 +37944,11 @@ export type CustomerCreditsApplyCompensationsData = {
37753
37944
  url: '/api/customer-credits/{uuid}/apply_compensations/';
37754
37945
  };
37755
37946
  export type CustomerCreditsApplyCompensationsResponses = {
37756
- 200: CustomerCredit;
37947
+ /**
37948
+ * No response body
37949
+ */
37950
+ 200: unknown;
37757
37951
  };
37758
- export type CustomerCreditsApplyCompensationsResponse = CustomerCreditsApplyCompensationsResponses[keyof CustomerCreditsApplyCompensationsResponses];
37759
37952
  export type CustomerCreditsClearCompensationsData = {
37760
37953
  body?: never;
37761
37954
  path: {
@@ -37765,9 +37958,11 @@ export type CustomerCreditsClearCompensationsData = {
37765
37958
  url: '/api/customer-credits/{uuid}/clear_compensations/';
37766
37959
  };
37767
37960
  export type CustomerCreditsClearCompensationsResponses = {
37768
- 200: CustomerCredit;
37961
+ /**
37962
+ * No response body
37963
+ */
37964
+ 200: unknown;
37769
37965
  };
37770
- export type CustomerCreditsClearCompensationsResponse = CustomerCreditsClearCompensationsResponses[keyof CustomerCreditsClearCompensationsResponses];
37771
37966
  export type CustomerCreditsConsumptionsListData = {
37772
37967
  body?: never;
37773
37968
  path: {
@@ -38305,7 +38500,7 @@ export type CustomersUsersListData = {
38305
38500
  /**
38306
38501
  * Filter by one or more organization roles. Select a standard role or provide a custom role string. Can be specified multiple times.
38307
38502
  */
38308
- organization_role?: Array<('CUSTOMER.MANAGER' | 'CUSTOMER.OWNER' | 'CUSTOMER.SUPPORT') | string>;
38503
+ organization_role?: Array<'CUSTOMER.MANAGER' | 'CUSTOMER.OWNER' | 'CUSTOMER.SUPPORT' | string>;
38309
38504
  /**
38310
38505
  * A page number within the paginated result set.
38311
38506
  */
@@ -38318,7 +38513,7 @@ export type CustomersUsersListData = {
38318
38513
  /**
38319
38514
  * Filter by one or more project roles. Select a standard role or provide a custom role string. Can be specified multiple times.
38320
38515
  */
38321
- project_role?: Array<('PROJECT.ADMIN' | 'PROJECT.MANAGER' | 'PROJECT.MEMBER') | string>;
38516
+ project_role?: Array<'PROJECT.ADMIN' | 'PROJECT.MANAGER' | 'PROJECT.MEMBER' | string>;
38322
38517
  registration_method?: string;
38323
38518
  /**
38324
38519
  * User keyword
@@ -39136,7 +39331,7 @@ export type DebugPubsubMetricsResetData = {
39136
39331
  url: '/api/debug/pubsub/metrics_reset/';
39137
39332
  };
39138
39333
  export type DebugPubsubMetricsResetResponses = {
39139
- 200: MetricsReset;
39334
+ 200: Status;
39140
39335
  };
39141
39336
  export type DebugPubsubMetricsResetResponse = DebugPubsubMetricsResetResponses[keyof DebugPubsubMetricsResetResponses];
39142
39337
  export type DebugPubsubOverviewRetrieveData = {
@@ -39426,7 +39621,7 @@ export type DigitaloceanDropletsResizeData = {
39426
39621
  url: '/api/digitalocean-droplets/{uuid}/resize/';
39427
39622
  };
39428
39623
  export type DigitaloceanDropletsResizeResponses = {
39429
- 200: DigitalOceanDropletResize;
39624
+ 202: Status;
39430
39625
  };
39431
39626
  export type DigitaloceanDropletsResizeResponse = DigitaloceanDropletsResizeResponses[keyof DigitaloceanDropletsResizeResponses];
39432
39627
  export type DigitaloceanDropletsRestartData = {
@@ -39438,7 +39633,7 @@ export type DigitaloceanDropletsRestartData = {
39438
39633
  url: '/api/digitalocean-droplets/{uuid}/restart/';
39439
39634
  };
39440
39635
  export type DigitaloceanDropletsRestartResponses = {
39441
- 200: DigitalOceanDroplet;
39636
+ 202: Status;
39442
39637
  };
39443
39638
  export type DigitaloceanDropletsRestartResponse = DigitaloceanDropletsRestartResponses[keyof DigitaloceanDropletsRestartResponses];
39444
39639
  export type DigitaloceanDropletsSetErredData = {
@@ -39474,7 +39669,7 @@ export type DigitaloceanDropletsStartData = {
39474
39669
  url: '/api/digitalocean-droplets/{uuid}/start/';
39475
39670
  };
39476
39671
  export type DigitaloceanDropletsStartResponses = {
39477
- 200: DigitalOceanDroplet;
39672
+ 202: Status;
39478
39673
  };
39479
39674
  export type DigitaloceanDropletsStartResponse = DigitaloceanDropletsStartResponses[keyof DigitaloceanDropletsStartResponses];
39480
39675
  export type DigitaloceanDropletsStopData = {
@@ -39486,7 +39681,7 @@ export type DigitaloceanDropletsStopData = {
39486
39681
  url: '/api/digitalocean-droplets/{uuid}/stop/';
39487
39682
  };
39488
39683
  export type DigitaloceanDropletsStopResponses = {
39489
- 200: DigitalOceanDroplet;
39684
+ 202: Status;
39490
39685
  };
39491
39686
  export type DigitaloceanDropletsStopResponse = DigitaloceanDropletsStopResponses[keyof DigitaloceanDropletsStopResponses];
39492
39687
  export type DigitaloceanDropletsUnlinkData = {
@@ -40184,13 +40379,11 @@ export type EventsRetrieveResponse = EventsRetrieveResponses[keyof EventsRetriev
40184
40379
  export type EventsCountRetrieveData = {
40185
40380
  body?: never;
40186
40381
  path?: never;
40187
- query?: {
40188
- field?: Array<EventFieldEnum>;
40189
- };
40382
+ query?: never;
40190
40383
  url: '/api/events/count/';
40191
40384
  };
40192
40385
  export type EventsCountRetrieveResponses = {
40193
- 200: Event;
40386
+ 200: EventCount;
40194
40387
  };
40195
40388
  export type EventsCountRetrieveResponse = EventsCountRetrieveResponses[keyof EventsCountRetrieveResponses];
40196
40389
  export type EventsCountCountData = {
@@ -40208,13 +40401,13 @@ export type EventsCountCountResponses = {
40208
40401
  export type EventsEventGroupsRetrieveData = {
40209
40402
  body?: never;
40210
40403
  path?: never;
40211
- query?: {
40212
- field?: Array<EventFieldEnum>;
40213
- };
40404
+ query?: never;
40214
40405
  url: '/api/events/event_groups/';
40215
40406
  };
40216
40407
  export type EventsEventGroupsRetrieveResponses = {
40217
- 200: Event;
40408
+ 200: {
40409
+ [key: string]: Array<string>;
40410
+ };
40218
40411
  };
40219
40412
  export type EventsEventGroupsRetrieveResponse = EventsEventGroupsRetrieveResponses[keyof EventsEventGroupsRetrieveResponses];
40220
40413
  export type EventsEventGroupsCountData = {
@@ -40232,13 +40425,11 @@ export type EventsEventGroupsCountResponses = {
40232
40425
  export type EventsScopeTypesRetrieveData = {
40233
40426
  body?: never;
40234
40427
  path?: never;
40235
- query?: {
40236
- field?: Array<EventFieldEnum>;
40237
- };
40428
+ query?: never;
40238
40429
  url: '/api/events/scope_types/';
40239
40430
  };
40240
40431
  export type EventsScopeTypesRetrieveResponses = {
40241
- 200: Event;
40432
+ 200: Array<string>;
40242
40433
  };
40243
40434
  export type EventsScopeTypesRetrieveResponse = EventsScopeTypesRetrieveResponses[keyof EventsScopeTypesRetrieveResponses];
40244
40435
  export type EventsScopeTypesCountData = {
@@ -40820,13 +41011,11 @@ export type GoogleAuthAuthorizeRetrieveData = {
40820
41011
  path: {
40821
41012
  uuid: string;
40822
41013
  };
40823
- query?: {
40824
- field?: Array<GoogleCredentialsFieldEnum>;
40825
- };
41014
+ query?: never;
40826
41015
  url: '/api/google-auth/{uuid}/authorize/';
40827
41016
  };
40828
41017
  export type GoogleAuthAuthorizeRetrieveResponses = {
40829
- 200: GoogleCredentials;
41018
+ 200: GoogleAuthUrl;
40830
41019
  };
40831
41020
  export type GoogleAuthAuthorizeRetrieveResponse = GoogleAuthAuthorizeRetrieveResponses[keyof GoogleAuthAuthorizeRetrieveResponses];
40832
41021
  export type GoogleAuthCallbackRetrieveData = {
@@ -40845,11 +41034,9 @@ export type GoogleAuthCallbackRetrieveData = {
40845
41034
  url: '/api/google-auth/callback/';
40846
41035
  };
40847
41036
  export type GoogleAuthCallbackRetrieveResponses = {
40848
- /**
40849
- * No response body
40850
- */
40851
- 200: unknown;
41037
+ 200: string;
40852
41038
  };
41039
+ export type GoogleAuthCallbackRetrieveResponse = GoogleAuthCallbackRetrieveResponses[keyof GoogleAuthCallbackRetrieveResponses];
40853
41040
  export type GoogleAuthCallbackCountData = {
40854
41041
  body?: never;
40855
41042
  path?: never;
@@ -41492,18 +41679,42 @@ export type InvoiceItemsUpdateResponses = {
41492
41679
  200: InvoiceItemUpdate;
41493
41680
  };
41494
41681
  export type InvoiceItemsUpdateResponse = InvoiceItemsUpdateResponses[keyof InvoiceItemsUpdateResponses];
41495
- export type InvoiceItemsConsumptionsRetrieveData = {
41682
+ export type InvoiceItemsConsumptionsListData = {
41496
41683
  body?: never;
41497
41684
  path: {
41498
41685
  uuid: string;
41499
41686
  };
41500
- query?: never;
41687
+ query?: {
41688
+ credit_uuid?: string;
41689
+ customer_uuid?: string;
41690
+ month?: number;
41691
+ offering_uuid?: string;
41692
+ /**
41693
+ * A page number within the paginated result set.
41694
+ */
41695
+ page?: number;
41696
+ /**
41697
+ * Number of results to return per page.
41698
+ */
41699
+ page_size?: number;
41700
+ project_uuid?: string;
41701
+ resource_uuid?: string;
41702
+ /**
41703
+ * Start month
41704
+ */
41705
+ start_month?: number;
41706
+ /**
41707
+ * Start year
41708
+ */
41709
+ start_year?: number;
41710
+ year?: number;
41711
+ };
41501
41712
  url: '/api/invoice-items/{uuid}/consumptions/';
41502
41713
  };
41503
- export type InvoiceItemsConsumptionsRetrieveResponses = {
41504
- 200: InvoiceItemDetail;
41714
+ export type InvoiceItemsConsumptionsListResponses = {
41715
+ 200: Array<CustomerCreditConsumptionByMonth>;
41505
41716
  };
41506
- export type InvoiceItemsConsumptionsRetrieveResponse = InvoiceItemsConsumptionsRetrieveResponses[keyof InvoiceItemsConsumptionsRetrieveResponses];
41717
+ export type InvoiceItemsConsumptionsListResponse = InvoiceItemsConsumptionsListResponses[keyof InvoiceItemsConsumptionsListResponses];
41507
41718
  export type InvoiceItemsCreateCompensationData = {
41508
41719
  body: InvoiceItemCompensationRequest;
41509
41720
  path: {
@@ -41513,7 +41724,7 @@ export type InvoiceItemsCreateCompensationData = {
41513
41724
  url: '/api/invoice-items/{uuid}/create_compensation/';
41514
41725
  };
41515
41726
  export type InvoiceItemsCreateCompensationResponses = {
41516
- 200: InvoiceItemCompensation;
41727
+ 201: InvoiceItemUuid;
41517
41728
  };
41518
41729
  export type InvoiceItemsCreateCompensationResponse = InvoiceItemsCreateCompensationResponses[keyof InvoiceItemsCreateCompensationResponses];
41519
41730
  export type InvoiceItemsMigrateToData = {
@@ -41525,7 +41736,7 @@ export type InvoiceItemsMigrateToData = {
41525
41736
  url: '/api/invoice-items/{uuid}/migrate_to/';
41526
41737
  };
41527
41738
  export type InvoiceItemsMigrateToResponses = {
41528
- 200: InvoiceItemMigrateTo;
41739
+ 200: InvoiceItemUuid;
41529
41740
  };
41530
41741
  export type InvoiceItemsMigrateToResponse = InvoiceItemsMigrateToResponses[keyof InvoiceItemsMigrateToResponses];
41531
41742
  export type InvoiceItemsCostsListData = {
@@ -41918,9 +42129,11 @@ export type InvoicesPaidData = {
41918
42129
  url: '/api/invoices/{uuid}/paid/';
41919
42130
  };
41920
42131
  export type InvoicesPaidResponses = {
41921
- 200: Invoice;
42132
+ /**
42133
+ * No response body
42134
+ */
42135
+ 200: unknown;
41922
42136
  };
41923
- export type InvoicesPaidResponse = InvoicesPaidResponses[keyof InvoicesPaidResponses];
41924
42137
  export type InvoicesSendNotificationData = {
41925
42138
  body?: never;
41926
42139
  path: {
@@ -41930,7 +42143,7 @@ export type InvoicesSendNotificationData = {
41930
42143
  url: '/api/invoices/{uuid}/send_notification/';
41931
42144
  };
41932
42145
  export type InvoicesSendNotificationResponses = {
41933
- 200: Invoice;
42146
+ 200: Detail;
41934
42147
  };
41935
42148
  export type InvoicesSendNotificationResponse = InvoicesSendNotificationResponses[keyof InvoicesSendNotificationResponses];
41936
42149
  export type InvoicesSetBackendIdData = {
@@ -45128,7 +45341,7 @@ export type MarketplaceCustomerComponentUsagePoliciesActionsRetrieveData = {
45128
45341
  url: '/api/marketplace-customer-component-usage-policies/actions/';
45129
45342
  };
45130
45343
  export type MarketplaceCustomerComponentUsagePoliciesActionsRetrieveResponses = {
45131
- 200: CustomerComponentUsagePolicy;
45344
+ 200: Array<string>;
45132
45345
  };
45133
45346
  export type MarketplaceCustomerComponentUsagePoliciesActionsRetrieveResponse = MarketplaceCustomerComponentUsagePoliciesActionsRetrieveResponses[keyof MarketplaceCustomerComponentUsagePoliciesActionsRetrieveResponses];
45134
45347
  export type MarketplaceCustomerComponentUsagePoliciesActionsCountData = {
@@ -45259,7 +45472,7 @@ export type MarketplaceCustomerEstimatedCostPoliciesActionsRetrieveData = {
45259
45472
  url: '/api/marketplace-customer-estimated-cost-policies/actions/';
45260
45473
  };
45261
45474
  export type MarketplaceCustomerEstimatedCostPoliciesActionsRetrieveResponses = {
45262
- 200: CustomerEstimatedCostPolicy;
45475
+ 200: Array<string>;
45263
45476
  };
45264
45477
  export type MarketplaceCustomerEstimatedCostPoliciesActionsRetrieveResponse = MarketplaceCustomerEstimatedCostPoliciesActionsRetrieveResponses[keyof MarketplaceCustomerEstimatedCostPoliciesActionsRetrieveResponses];
45265
45478
  export type MarketplaceCustomerEstimatedCostPoliciesActionsCountData = {
@@ -45823,7 +46036,7 @@ export type MarketplaceOfferingEstimatedCostPoliciesActionsRetrieveData = {
45823
46036
  url: '/api/marketplace-offering-estimated-cost-policies/actions/';
45824
46037
  };
45825
46038
  export type MarketplaceOfferingEstimatedCostPoliciesActionsRetrieveResponses = {
45826
- 200: OfferingEstimatedCostPolicy;
46039
+ 200: Array<string>;
45827
46040
  };
45828
46041
  export type MarketplaceOfferingEstimatedCostPoliciesActionsRetrieveResponse = MarketplaceOfferingEstimatedCostPoliciesActionsRetrieveResponses[keyof MarketplaceOfferingEstimatedCostPoliciesActionsRetrieveResponses];
45829
46042
  export type MarketplaceOfferingEstimatedCostPoliciesActionsCountData = {
@@ -46508,7 +46721,7 @@ export type MarketplaceOfferingProfilesAddRoleData = {
46508
46721
  url: '/api/marketplace-offering-profiles/{uuid}/add_role/';
46509
46722
  };
46510
46723
  export type MarketplaceOfferingProfilesAddRoleResponses = {
46511
- 200: OfferingProfileRoleAssign;
46724
+ 200: OfferingProfile;
46512
46725
  };
46513
46726
  export type MarketplaceOfferingProfilesAddRoleResponse = MarketplaceOfferingProfilesAddRoleResponses[keyof MarketplaceOfferingProfilesAddRoleResponses];
46514
46727
  export type MarketplaceOfferingProfilesRemoveRoleData = {
@@ -46520,7 +46733,7 @@ export type MarketplaceOfferingProfilesRemoveRoleData = {
46520
46733
  url: '/api/marketplace-offering-profiles/{uuid}/remove_role/';
46521
46734
  };
46522
46735
  export type MarketplaceOfferingProfilesRemoveRoleResponses = {
46523
- 200: OfferingProfileRoleAssign;
46736
+ 200: OfferingProfile;
46524
46737
  };
46525
46738
  export type MarketplaceOfferingProfilesRemoveRoleResponse = MarketplaceOfferingProfilesRemoveRoleResponses[keyof MarketplaceOfferingProfilesRemoveRoleResponses];
46526
46739
  export type MarketplaceOfferingReferralsListData = {
@@ -46967,7 +47180,7 @@ export type MarketplaceOfferingUsagePoliciesActionsRetrieveData = {
46967
47180
  url: '/api/marketplace-offering-usage-policies/actions/';
46968
47181
  };
46969
47182
  export type MarketplaceOfferingUsagePoliciesActionsRetrieveResponses = {
46970
- 200: OfferingUsagePolicy;
47183
+ 200: Array<string>;
46971
47184
  };
46972
47185
  export type MarketplaceOfferingUsagePoliciesActionsRetrieveResponse = MarketplaceOfferingUsagePoliciesActionsRetrieveResponses[keyof MarketplaceOfferingUsagePoliciesActionsRetrieveResponses];
46973
47186
  export type MarketplaceOfferingUsagePoliciesActionsCountData = {
@@ -48790,7 +49003,7 @@ export type MarketplaceProjectEstimatedCostPoliciesActionsRetrieveData = {
48790
49003
  url: '/api/marketplace-project-estimated-cost-policies/actions/';
48791
49004
  };
48792
49005
  export type MarketplaceProjectEstimatedCostPoliciesActionsRetrieveResponses = {
48793
- 200: ProjectEstimatedCostPolicy;
49006
+ 200: Array<string>;
48794
49007
  };
48795
49008
  export type MarketplaceProjectEstimatedCostPoliciesActionsRetrieveResponse = MarketplaceProjectEstimatedCostPoliciesActionsRetrieveResponses[keyof MarketplaceProjectEstimatedCostPoliciesActionsRetrieveResponses];
48796
49009
  export type MarketplaceProjectEstimatedCostPoliciesActionsCountData = {
@@ -51915,7 +52128,6 @@ export type MarketplaceProviderOfferingsUserHasResourceAccessRetrieveData = {
51915
52128
  uuid: string;
51916
52129
  };
51917
52130
  query: {
51918
- field?: Array<ProviderOfferingDetailsFieldEnum>;
51919
52131
  /**
51920
52132
  * Username of the user to check.
51921
52133
  */
@@ -51924,7 +52136,7 @@ export type MarketplaceProviderOfferingsUserHasResourceAccessRetrieveData = {
51924
52136
  url: '/api/marketplace-provider-offerings/{uuid}/user_has_resource_access/';
51925
52137
  };
51926
52138
  export type MarketplaceProviderOfferingsUserHasResourceAccessRetrieveResponses = {
51927
- 200: ProviderOfferingDetails;
52139
+ 200: UserHasResourceAccess;
51928
52140
  };
51929
52141
  export type MarketplaceProviderOfferingsUserHasResourceAccessRetrieveResponse = MarketplaceProviderOfferingsUserHasResourceAccessRetrieveResponses[keyof MarketplaceProviderOfferingsUserHasResourceAccessRetrieveResponses];
51930
52142
  export type MarketplaceProviderOfferingsGroupsListData = {
@@ -52495,7 +52707,7 @@ export type MarketplaceProviderResourceProjectsSetBackendIdData = {
52495
52707
  url: '/api/marketplace-provider-resource-projects/{uuid}/set_backend_id/';
52496
52708
  };
52497
52709
  export type MarketplaceProviderResourceProjectsSetBackendIdResponses = {
52498
- 200: ResourceProjectBackendId;
52710
+ 200: Status;
52499
52711
  };
52500
52712
  export type MarketplaceProviderResourceProjectsSetBackendIdResponse = MarketplaceProviderResourceProjectsSetBackendIdResponses[keyof MarketplaceProviderResourceProjectsSetBackendIdResponses];
52501
52713
  export type MarketplaceProviderResourceProjectsSetStateErredData = {
@@ -52507,7 +52719,7 @@ export type MarketplaceProviderResourceProjectsSetStateErredData = {
52507
52719
  url: '/api/marketplace-provider-resource-projects/{uuid}/set_state_erred/';
52508
52720
  };
52509
52721
  export type MarketplaceProviderResourceProjectsSetStateErredResponses = {
52510
- 200: ResourceProjectErrorMessage;
52722
+ 200: Status;
52511
52723
  };
52512
52724
  export type MarketplaceProviderResourceProjectsSetStateErredResponse = MarketplaceProviderResourceProjectsSetStateErredResponses[keyof MarketplaceProviderResourceProjectsSetStateErredResponses];
52513
52725
  export type MarketplaceProviderResourceProjectsSetStateOkData = {
@@ -52519,9 +52731,7 @@ export type MarketplaceProviderResourceProjectsSetStateOkData = {
52519
52731
  url: '/api/marketplace-provider-resource-projects/{uuid}/set_state_ok/';
52520
52732
  };
52521
52733
  export type MarketplaceProviderResourceProjectsSetStateOkResponses = {
52522
- 200: {
52523
- [key: string]: unknown;
52524
- };
52734
+ 200: Status;
52525
52735
  };
52526
52736
  export type MarketplaceProviderResourceProjectsSetStateOkResponse = MarketplaceProviderResourceProjectsSetStateOkResponses[keyof MarketplaceProviderResourceProjectsSetStateOkResponses];
52527
52737
  export type MarketplaceProviderResourceProjectsUpdateUserData = {
@@ -53438,7 +53648,7 @@ export type MarketplaceProviderResourcesRestoreData = {
53438
53648
  url: '/api/marketplace-provider-resources/{uuid}/restore/';
53439
53649
  };
53440
53650
  export type MarketplaceProviderResourcesRestoreResponses = {
53441
- 200: Resource;
53651
+ 200: OrderUuid;
53442
53652
  };
53443
53653
  export type MarketplaceProviderResourcesRestoreResponse = MarketplaceProviderResourcesRestoreResponses[keyof MarketplaceProviderResourcesRestoreResponses];
53444
53654
  export type MarketplaceProviderResourcesSetAsErredData = {
@@ -55632,7 +55842,7 @@ export type MarketplaceResourcesRestoreData = {
55632
55842
  url: '/api/marketplace-resources/{uuid}/restore/';
55633
55843
  };
55634
55844
  export type MarketplaceResourcesRestoreResponses = {
55635
- 200: Resource;
55845
+ 200: OrderUuid;
55636
55846
  };
55637
55847
  export type MarketplaceResourcesRestoreResponse = MarketplaceResourcesRestoreResponses[keyof MarketplaceResourcesRestoreResponses];
55638
55848
  export type MarketplaceResourcesSetDownscaledData = {
@@ -56540,7 +56750,7 @@ export type MarketplaceScriptDryRunAsyncRunData = {
56540
56750
  url: '/api/marketplace-script-dry-run/{uuid}/async_run/';
56541
56751
  };
56542
56752
  export type MarketplaceScriptDryRunAsyncRunResponses = {
56543
- 200: PublicOfferingDetails;
56753
+ 202: ScriptAsyncDryRunResponse;
56544
56754
  };
56545
56755
  export type MarketplaceScriptDryRunAsyncRunResponse = MarketplaceScriptDryRunAsyncRunResponses[keyof MarketplaceScriptDryRunAsyncRunResponses];
56546
56756
  export type MarketplaceScriptDryRunRunData = {
@@ -56552,7 +56762,7 @@ export type MarketplaceScriptDryRunRunData = {
56552
56762
  url: '/api/marketplace-script-dry-run/{uuid}/run/';
56553
56763
  };
56554
56764
  export type MarketplaceScriptDryRunRunResponses = {
56555
- 200: PublicOfferingDetails;
56765
+ 200: ScriptDryRunResponse;
56556
56766
  };
56557
56767
  export type MarketplaceScriptDryRunRunResponse = MarketplaceScriptDryRunRunResponses[keyof MarketplaceScriptDryRunRunResponses];
56558
56768
  export type MarketplaceScriptSyncResourceData = {
@@ -58933,7 +59143,7 @@ export type MarketplaceSlurmPeriodicUsagePoliciesActionsRetrieveData = {
58933
59143
  url: '/api/marketplace-slurm-periodic-usage-policies/actions/';
58934
59144
  };
58935
59145
  export type MarketplaceSlurmPeriodicUsagePoliciesActionsRetrieveResponses = {
58936
- 200: SlurmPeriodicUsagePolicy;
59146
+ 200: Array<string>;
58937
59147
  };
58938
59148
  export type MarketplaceSlurmPeriodicUsagePoliciesActionsRetrieveResponse = MarketplaceSlurmPeriodicUsagePoliciesActionsRetrieveResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesActionsRetrieveResponses];
58939
59149
  export type MarketplaceSlurmPeriodicUsagePoliciesActionsCountData = {
@@ -65604,9 +65814,7 @@ export type OpenportalOfferingMappingRetrieveData = {
65604
65814
  url: '/api/openportal/offering_mapping/';
65605
65815
  };
65606
65816
  export type OpenportalOfferingMappingRetrieveResponses = {
65607
- 200: {
65608
- [key: string]: unknown;
65609
- };
65817
+ 200: OfferingMappingMap;
65610
65818
  };
65611
65819
  export type OpenportalOfferingMappingRetrieveResponse = OpenportalOfferingMappingRetrieveResponses[keyof OpenportalOfferingMappingRetrieveResponses];
65612
65820
  export type OpenportalProjectMappingRetrieveData = {
@@ -65621,9 +65829,7 @@ export type OpenportalProjectMappingRetrieveData = {
65621
65829
  url: '/api/openportal/project_mapping/';
65622
65830
  };
65623
65831
  export type OpenportalProjectMappingRetrieveResponses = {
65624
- 200: {
65625
- [key: string]: unknown;
65626
- };
65832
+ 200: ProjectMappingMap;
65627
65833
  };
65628
65834
  export type OpenportalProjectMappingRetrieveResponse = OpenportalProjectMappingRetrieveResponses[keyof OpenportalProjectMappingRetrieveResponses];
65629
65835
  export type OpenportalUserMappingRetrieveData = {
@@ -65638,9 +65844,7 @@ export type OpenportalUserMappingRetrieveData = {
65638
65844
  url: '/api/openportal/user_mapping/';
65639
65845
  };
65640
65846
  export type OpenportalUserMappingRetrieveResponses = {
65641
- 200: {
65642
- [key: string]: unknown;
65643
- };
65847
+ 200: UserMappingMap;
65644
65848
  };
65645
65849
  export type OpenportalUserMappingRetrieveResponse = OpenportalUserMappingRetrieveResponses[keyof OpenportalUserMappingRetrieveResponses];
65646
65850
  export type OpenstackBackupsListData = {
@@ -66215,13 +66419,13 @@ export type OpenstackFlavorsRetrieveResponse = OpenstackFlavorsRetrieveResponses
66215
66419
  export type OpenstackFlavorsUsageStatsRetrieveData = {
66216
66420
  body?: never;
66217
66421
  path?: never;
66218
- query?: {
66219
- field?: Array<OpenStackFlavorFieldEnum>;
66220
- };
66422
+ query?: never;
66221
66423
  url: '/api/openstack-flavors/usage_stats/';
66222
66424
  };
66223
66425
  export type OpenstackFlavorsUsageStatsRetrieveResponses = {
66224
- 200: OpenStackFlavor;
66426
+ 200: {
66427
+ [key: string]: unknown;
66428
+ };
66225
66429
  };
66226
66430
  export type OpenstackFlavorsUsageStatsRetrieveResponse = OpenstackFlavorsUsageStatsRetrieveResponses[keyof OpenstackFlavorsUsageStatsRetrieveResponses];
66227
66431
  export type OpenstackFlavorsUsageStatsCountData = {
@@ -67104,7 +67308,7 @@ export type OpenstackImagesUsageStatsRetrieveData = {
67104
67308
  url: '/api/openstack-images/usage_stats/';
67105
67309
  };
67106
67310
  export type OpenstackImagesUsageStatsRetrieveResponses = {
67107
- 200: OpenStackImage;
67311
+ 200: OpenStackUsageStatsResponse;
67108
67312
  };
67109
67313
  export type OpenstackImagesUsageStatsRetrieveResponse = OpenstackImagesUsageStatsRetrieveResponses[keyof OpenstackImagesUsageStatsRetrieveResponses];
67110
67314
  export type OpenstackImagesUsageStatsCountData = {
@@ -68091,7 +68295,7 @@ export type OpenstackLoadbalancersAttachFloatingIpData = {
68091
68295
  url: '/api/openstack-loadbalancers/{uuid}/attach_floating_ip/';
68092
68296
  };
68093
68297
  export type OpenstackLoadbalancersAttachFloatingIpResponses = {
68094
- 202: LoadBalancerAsyncOperationResponse;
68298
+ 202: Status;
68095
68299
  };
68096
68300
  export type OpenstackLoadbalancersAttachFloatingIpResponse = OpenstackLoadbalancersAttachFloatingIpResponses[keyof OpenstackLoadbalancersAttachFloatingIpResponses];
68097
68301
  export type OpenstackLoadbalancersDetachFloatingIpData = {
@@ -68103,7 +68307,7 @@ export type OpenstackLoadbalancersDetachFloatingIpData = {
68103
68307
  url: '/api/openstack-loadbalancers/{uuid}/detach_floating_ip/';
68104
68308
  };
68105
68309
  export type OpenstackLoadbalancersDetachFloatingIpResponses = {
68106
- 202: LoadBalancerAsyncOperationResponse;
68310
+ 202: Status;
68107
68311
  };
68108
68312
  export type OpenstackLoadbalancersDetachFloatingIpResponse = OpenstackLoadbalancersDetachFloatingIpResponses[keyof OpenstackLoadbalancersDetachFloatingIpResponses];
68109
68313
  export type OpenstackLoadbalancersPullData = {
@@ -68129,7 +68333,7 @@ export type OpenstackLoadbalancersSetSecurityGroupsData = {
68129
68333
  url: '/api/openstack-loadbalancers/{uuid}/set_security_groups/';
68130
68334
  };
68131
68335
  export type OpenstackLoadbalancersSetSecurityGroupsResponses = {
68132
- 202: LoadBalancerAsyncOperationResponse;
68336
+ 202: Status;
68133
68337
  };
68134
68338
  export type OpenstackLoadbalancersSetSecurityGroupsResponse = OpenstackLoadbalancersSetSecurityGroupsResponses[keyof OpenstackLoadbalancersSetSecurityGroupsResponses];
68135
68339
  export type OpenstackLoadbalancersUnlinkData = {
@@ -68909,7 +69113,7 @@ export type OpenstackNetworksCreateSubnetData = {
68909
69113
  url: '/api/openstack-networks/{uuid}/create_subnet/';
68910
69114
  };
68911
69115
  export type OpenstackNetworksCreateSubnetResponses = {
68912
- 200: OpenStackSubNet;
69116
+ 201: OpenStackSubNet;
68913
69117
  };
68914
69118
  export type OpenstackNetworksCreateSubnetResponse = OpenstackNetworksCreateSubnetResponses[keyof OpenstackNetworksCreateSubnetResponses];
68915
69119
  export type OpenstackNetworksPullData = {
@@ -68980,7 +69184,7 @@ export type OpenstackNetworksSetMtuData = {
68980
69184
  url: '/api/openstack-networks/{uuid}/set_mtu/';
68981
69185
  };
68982
69186
  export type OpenstackNetworksSetMtuResponses = {
68983
- 200: SetMtu;
69187
+ 202: SetMtu;
68984
69188
  };
68985
69189
  export type OpenstackNetworksSetMtuResponse = OpenstackNetworksSetMtuResponses[keyof OpenstackNetworksSetMtuResponses];
68986
69190
  export type OpenstackNetworksSetOkData = {
@@ -69891,11 +70095,9 @@ export type OpenstackRoutersRemoveExternalGatewayData = {
69891
70095
  url: '/api/openstack-routers/{uuid}/remove_external_gateway/';
69892
70096
  };
69893
70097
  export type OpenstackRoutersRemoveExternalGatewayResponses = {
69894
- /**
69895
- * No response body
69896
- */
69897
- 202: unknown;
70098
+ 202: Status;
69898
70099
  };
70100
+ export type OpenstackRoutersRemoveExternalGatewayResponse = OpenstackRoutersRemoveExternalGatewayResponses[keyof OpenstackRoutersRemoveExternalGatewayResponses];
69899
70101
  export type OpenstackRoutersRemoveRouterInterfaceData = {
69900
70102
  body?: OpenStackRouterInterfaceRequest;
69901
70103
  path: {
@@ -69917,7 +70119,7 @@ export type OpenstackRoutersSetErredData = {
69917
70119
  url: '/api/openstack-routers/{uuid}/set_erred/';
69918
70120
  };
69919
70121
  export type OpenstackRoutersSetErredResponses = {
69920
- 200: RouterSetErredResponse;
70122
+ 200: Detail;
69921
70123
  };
69922
70124
  export type OpenstackRoutersSetErredResponse = OpenstackRoutersSetErredResponses[keyof OpenstackRoutersSetErredResponses];
69923
70125
  export type OpenstackRoutersSetExternalGatewayData = {
@@ -69929,11 +70131,9 @@ export type OpenstackRoutersSetExternalGatewayData = {
69929
70131
  url: '/api/openstack-routers/{uuid}/set_external_gateway/';
69930
70132
  };
69931
70133
  export type OpenstackRoutersSetExternalGatewayResponses = {
69932
- /**
69933
- * No response body
69934
- */
69935
- 202: unknown;
70134
+ 202: Status;
69936
70135
  };
70136
+ export type OpenstackRoutersSetExternalGatewayResponse = OpenstackRoutersSetExternalGatewayResponses[keyof OpenstackRoutersSetExternalGatewayResponses];
69937
70137
  export type OpenstackRoutersSetOkData = {
69938
70138
  body?: never;
69939
70139
  path: {
@@ -69943,7 +70143,7 @@ export type OpenstackRoutersSetOkData = {
69943
70143
  url: '/api/openstack-routers/{uuid}/set_ok/';
69944
70144
  };
69945
70145
  export type OpenstackRoutersSetOkResponses = {
69946
- 200: RouterSetOkResponse;
70146
+ 200: Detail;
69947
70147
  };
69948
70148
  export type OpenstackRoutersSetOkResponse = OpenstackRoutersSetOkResponses[keyof OpenstackRoutersSetOkResponses];
69949
70149
  export type OpenstackRoutersSetRoutesData = {
@@ -71241,7 +71441,7 @@ export type OpenstackSubnetsConnectData = {
71241
71441
  url: '/api/openstack-subnets/{uuid}/connect/';
71242
71442
  };
71243
71443
  export type OpenstackSubnetsConnectResponses = {
71244
- 200: OpenStackSubNet;
71444
+ 202: Status;
71245
71445
  };
71246
71446
  export type OpenstackSubnetsConnectResponse = OpenstackSubnetsConnectResponses[keyof OpenstackSubnetsConnectResponses];
71247
71447
  export type OpenstackSubnetsDisconnectData = {
@@ -71253,7 +71453,7 @@ export type OpenstackSubnetsDisconnectData = {
71253
71453
  url: '/api/openstack-subnets/{uuid}/disconnect/';
71254
71454
  };
71255
71455
  export type OpenstackSubnetsDisconnectResponses = {
71256
- 200: OpenStackSubNet;
71456
+ 202: Status;
71257
71457
  };
71258
71458
  export type OpenstackSubnetsDisconnectResponse = OpenstackSubnetsDisconnectResponses[keyof OpenstackSubnetsDisconnectResponses];
71259
71459
  export type OpenstackSubnetsPullData = {
@@ -71745,7 +71945,7 @@ export type OpenstackTenantsCreateNetworkData = {
71745
71945
  url: '/api/openstack-tenants/{uuid}/create_network/';
71746
71946
  };
71747
71947
  export type OpenstackTenantsCreateNetworkResponses = {
71748
- 200: OpenStackNetwork;
71948
+ 201: OpenStackNetwork;
71749
71949
  };
71750
71950
  export type OpenstackTenantsCreateNetworkResponse = OpenstackTenantsCreateNetworkResponses[keyof OpenstackTenantsCreateNetworkResponses];
71751
71951
  export type OpenstackTenantsCreateSecurityGroupData = {
@@ -71769,7 +71969,7 @@ export type OpenstackTenantsCreateServerGroupData = {
71769
71969
  url: '/api/openstack-tenants/{uuid}/create_server_group/';
71770
71970
  };
71771
71971
  export type OpenstackTenantsCreateServerGroupResponses = {
71772
- 200: OpenStackServerGroup;
71972
+ 201: OpenStackServerGroup;
71773
71973
  };
71774
71974
  export type OpenstackTenantsCreateServerGroupResponse = OpenstackTenantsCreateServerGroupResponses[keyof OpenstackTenantsCreateServerGroupResponses];
71775
71975
  export type OpenstackTenantsPullData = {
@@ -71823,7 +72023,7 @@ export type OpenstackTenantsPullSecurityGroupsData = {
71823
72023
  url: '/api/openstack-tenants/{uuid}/pull_security_groups/';
71824
72024
  };
71825
72025
  export type OpenstackTenantsPullSecurityGroupsResponses = {
71826
- 200: OpenStackTenant;
72026
+ 202: Status;
71827
72027
  };
71828
72028
  export type OpenstackTenantsPullSecurityGroupsResponse = OpenstackTenantsPullSecurityGroupsResponses[keyof OpenstackTenantsPullSecurityGroupsResponses];
71829
72029
  export type OpenstackTenantsPullServerGroupsData = {
@@ -71835,7 +72035,7 @@ export type OpenstackTenantsPullServerGroupsData = {
71835
72035
  url: '/api/openstack-tenants/{uuid}/pull_server_groups/';
71836
72036
  };
71837
72037
  export type OpenstackTenantsPullServerGroupsResponses = {
71838
- 200: OpenStackTenant;
72038
+ 202: Status;
71839
72039
  };
71840
72040
  export type OpenstackTenantsPullServerGroupsResponse = OpenstackTenantsPullServerGroupsResponses[keyof OpenstackTenantsPullServerGroupsResponses];
71841
72041
  export type OpenstackTenantsPushSecurityGroupsData = {
@@ -71906,7 +72106,7 @@ export type OpenstackTenantsSetQuotasData = {
71906
72106
  * Use 0 to deny, -1 for unlimited
71907
72107
  */
71908
72108
  port_count?: number;
71909
- [key: string]: number | undefined;
72109
+ [key: string]: number | number | undefined;
71910
72110
  };
71911
72111
  path: {
71912
72112
  uuid: string;
@@ -71915,7 +72115,7 @@ export type OpenstackTenantsSetQuotasData = {
71915
72115
  url: '/api/openstack-tenants/{uuid}/set_quotas/';
71916
72116
  };
71917
72117
  export type OpenstackTenantsSetQuotasResponses = {
71918
- 200: OpenStackTenantQuota;
72118
+ 202: Status;
71919
72119
  };
71920
72120
  export type OpenstackTenantsSetQuotasResponse = OpenstackTenantsSetQuotasResponses[keyof OpenstackTenantsSetQuotasResponses];
71921
72121
  export type OpenstackTenantsUnlinkData = {
@@ -73065,7 +73265,7 @@ export type PaymentProfilesEnableData = {
73065
73265
  url: '/api/payment-profiles/{uuid}/enable/';
73066
73266
  };
73067
73267
  export type PaymentProfilesEnableResponses = {
73068
- 200: PaymentProfile;
73268
+ 200: Status;
73069
73269
  };
73070
73270
  export type PaymentProfilesEnableResponse = PaymentProfilesEnableResponses[keyof PaymentProfilesEnableResponses];
73071
73271
  export type PaymentsListData = {
@@ -73184,7 +73384,7 @@ export type PaymentsLinkToInvoiceData = {
73184
73384
  url: '/api/payments/{uuid}/link_to_invoice/';
73185
73385
  };
73186
73386
  export type PaymentsLinkToInvoiceResponses = {
73187
- 200: LinkToInvoice;
73387
+ 200: Detail;
73188
73388
  };
73189
73389
  export type PaymentsLinkToInvoiceResponse = PaymentsLinkToInvoiceResponses[keyof PaymentsLinkToInvoiceResponses];
73190
73390
  export type PaymentsUnlinkFromInvoiceData = {
@@ -73196,7 +73396,7 @@ export type PaymentsUnlinkFromInvoiceData = {
73196
73396
  url: '/api/payments/{uuid}/unlink_from_invoice/';
73197
73397
  };
73198
73398
  export type PaymentsUnlinkFromInvoiceResponses = {
73199
- 200: Payment;
73399
+ 200: Detail;
73200
73400
  };
73201
73401
  export type PaymentsUnlinkFromInvoiceResponse = PaymentsUnlinkFromInvoiceResponses[keyof PaymentsUnlinkFromInvoiceResponses];
73202
73402
  export type PersonalAccessTokensListData = {
@@ -75179,10 +75379,7 @@ export type ProposalProposalsResourcesDestroyData = {
75179
75379
  url: '/api/proposal-proposals/{uuid}/resources/{obj_uuid}/';
75180
75380
  };
75181
75381
  export type ProposalProposalsResourcesDestroyResponses = {
75182
- /**
75183
- * No response body
75184
- */
75185
- 204: void;
75382
+ 200: RequestedResource;
75186
75383
  };
75187
75384
  export type ProposalProposalsResourcesDestroyResponse = ProposalProposalsResourcesDestroyResponses[keyof ProposalProposalsResourcesDestroyResponses];
75188
75385
  export type ProposalProposalsResourcesRetrieveData = {
@@ -75911,10 +76108,7 @@ export type ProposalProtectedCallsOfferingsDestroyData = {
75911
76108
  url: '/api/proposal-protected-calls/{uuid}/offerings/{obj_uuid}/';
75912
76109
  };
75913
76110
  export type ProposalProtectedCallsOfferingsDestroyResponses = {
75914
- /**
75915
- * No response body
75916
- */
75917
- 204: void;
76111
+ 200: RequestedOffering;
75918
76112
  };
75919
76113
  export type ProposalProtectedCallsOfferingsDestroyResponse = ProposalProtectedCallsOfferingsDestroyResponses[keyof ProposalProtectedCallsOfferingsDestroyResponses];
75920
76114
  export type ProposalProtectedCallsOfferingsRetrieveData = {
@@ -76081,10 +76275,7 @@ export type ProposalProtectedCallsResourceTemplatesDestroyData = {
76081
76275
  url: '/api/proposal-protected-calls/{uuid}/resource_templates/{obj_uuid}/';
76082
76276
  };
76083
76277
  export type ProposalProtectedCallsResourceTemplatesDestroyResponses = {
76084
- /**
76085
- * No response body
76086
- */
76087
- 204: void;
76278
+ 200: CallResourceTemplate;
76088
76279
  };
76089
76280
  export type ProposalProtectedCallsResourceTemplatesDestroyResponse = ProposalProtectedCallsResourceTemplatesDestroyResponses[keyof ProposalProtectedCallsResourceTemplatesDestroyResponses];
76090
76281
  export type ProposalProtectedCallsResourceTemplatesRetrieveData = {
@@ -76282,10 +76473,7 @@ export type ProposalProtectedCallsRoundsDestroyData = {
76282
76473
  url: '/api/proposal-protected-calls/{uuid}/rounds/{obj_uuid}/';
76283
76474
  };
76284
76475
  export type ProposalProtectedCallsRoundsDestroyResponses = {
76285
- /**
76286
- * No response body
76287
- */
76288
- 204: void;
76476
+ 200: ProtectedRound;
76289
76477
  };
76290
76478
  export type ProposalProtectedCallsRoundsDestroyResponse = ProposalProtectedCallsRoundsDestroyResponses[keyof ProposalProtectedCallsRoundsDestroyResponses];
76291
76479
  export type ProposalProtectedCallsRoundsRetrieveData = {
@@ -76337,7 +76525,7 @@ export type ProposalProtectedCallsRoundsCloseData = {
76337
76525
  url: '/api/proposal-protected-calls/{uuid}/rounds/{obj_uuid}/close/';
76338
76526
  };
76339
76527
  export type ProposalProtectedCallsRoundsCloseResponses = {
76340
- 200: ProtectedCall;
76528
+ 200: string;
76341
76529
  };
76342
76530
  export type ProposalProtectedCallsRoundsCloseResponse = ProposalProtectedCallsRoundsCloseResponses[keyof ProposalProtectedCallsRoundsCloseResponses];
76343
76531
  export type ProposalProtectedCallsSendAllAssignmentsData = {
@@ -76458,10 +76646,7 @@ export type ProposalProtectedCallsWorkflowStepsDestroyData = {
76458
76646
  url: '/api/proposal-protected-calls/{uuid}/workflow_steps/{obj_uuid}/';
76459
76647
  };
76460
76648
  export type ProposalProtectedCallsWorkflowStepsDestroyResponses = {
76461
- /**
76462
- * No response body
76463
- */
76464
- 204: void;
76649
+ 200: CallWorkflowStep;
76465
76650
  };
76466
76651
  export type ProposalProtectedCallsWorkflowStepsDestroyResponse = ProposalProtectedCallsWorkflowStepsDestroyResponses[keyof ProposalProtectedCallsWorkflowStepsDestroyResponses];
76467
76652
  export type ProposalProtectedCallsWorkflowStepsRetrieveData = {
@@ -77802,9 +77987,11 @@ export type RancherCatalogsRefreshData = {
77802
77987
  url: '/api/rancher-catalogs/{uuid}/refresh/';
77803
77988
  };
77804
77989
  export type RancherCatalogsRefreshResponses = {
77805
- 200: RancherCatalog;
77990
+ /**
77991
+ * No response body
77992
+ */
77993
+ 200: unknown;
77806
77994
  };
77807
- export type RancherCatalogsRefreshResponse = RancherCatalogsRefreshResponses[keyof RancherCatalogsRefreshResponses];
77808
77995
  export type RancherClusterSecurityGroupsListData = {
77809
77996
  body?: never;
77810
77997
  path?: never;
@@ -78179,7 +78366,7 @@ export type RancherClustersCreateManagementSecurityGroupData = {
78179
78366
  url: '/api/rancher-clusters/{uuid}/create_management_security_group/';
78180
78367
  };
78181
78368
  export type RancherClustersCreateManagementSecurityGroupResponses = {
78182
- 200: RancherCluster;
78369
+ 201: RancherCreateManagementSecurityGroupResponse;
78183
78370
  };
78184
78371
  export type RancherClustersCreateManagementSecurityGroupResponse = RancherClustersCreateManagementSecurityGroupResponses[keyof RancherClustersCreateManagementSecurityGroupResponses];
78185
78372
  export type RancherClustersImportYamlData = {
@@ -78191,9 +78378,11 @@ export type RancherClustersImportYamlData = {
78191
78378
  url: '/api/rancher-clusters/{uuid}/import_yaml/';
78192
78379
  };
78193
78380
  export type RancherClustersImportYamlResponses = {
78194
- 200: RancherImportYaml;
78381
+ /**
78382
+ * No response body
78383
+ */
78384
+ 200: unknown;
78195
78385
  };
78196
- export type RancherClustersImportYamlResponse = RancherClustersImportYamlResponses[keyof RancherClustersImportYamlResponses];
78197
78386
  export type RancherClustersPullData = {
78198
78387
  body?: never;
78199
78388
  path: {
@@ -78454,7 +78643,7 @@ export type RancherHpasYamlRetrieveData = {
78454
78643
  url: '/api/rancher-hpas/{uuid}/yaml/';
78455
78644
  };
78456
78645
  export type RancherHpasYamlRetrieveResponses = {
78457
- 200: RancherHpa;
78646
+ 200: Detail;
78458
78647
  };
78459
78648
  export type RancherHpasYamlRetrieveResponse = RancherHpasYamlRetrieveResponses[keyof RancherHpasYamlRetrieveResponses];
78460
78649
  export type RancherHpasYamlUpdateData = {
@@ -78466,7 +78655,7 @@ export type RancherHpasYamlUpdateData = {
78466
78655
  url: '/api/rancher-hpas/{uuid}/yaml/';
78467
78656
  };
78468
78657
  export type RancherHpasYamlUpdateResponses = {
78469
- 200: RancherHpa;
78658
+ 200: Detail;
78470
78659
  };
78471
78660
  export type RancherHpasYamlUpdateResponse = RancherHpasYamlUpdateResponses[keyof RancherHpasYamlUpdateResponses];
78472
78661
  export type RancherIngressesListData = {
@@ -78779,13 +78968,11 @@ export type RancherIngressesYamlRetrieveData = {
78779
78968
  path: {
78780
78969
  uuid: string;
78781
78970
  };
78782
- query?: {
78783
- field?: Array<RancherIngressFieldEnum>;
78784
- };
78971
+ query?: never;
78785
78972
  url: '/api/rancher-ingresses/{uuid}/yaml/';
78786
78973
  };
78787
78974
  export type RancherIngressesYamlRetrieveResponses = {
78788
- 200: RancherIngress;
78975
+ 200: Detail;
78789
78976
  };
78790
78977
  export type RancherIngressesYamlRetrieveResponse = RancherIngressesYamlRetrieveResponses[keyof RancherIngressesYamlRetrieveResponses];
78791
78978
  export type RancherIngressesYamlUpdateData = {
@@ -78797,7 +78984,7 @@ export type RancherIngressesYamlUpdateData = {
78797
78984
  url: '/api/rancher-ingresses/{uuid}/yaml/';
78798
78985
  };
78799
78986
  export type RancherIngressesYamlUpdateResponses = {
78800
- 200: RancherIngress;
78987
+ 200: Detail;
78801
78988
  };
78802
78989
  export type RancherIngressesYamlUpdateResponse = RancherIngressesYamlUpdateResponses[keyof RancherIngressesYamlUpdateResponses];
78803
78990
  export type RancherNamespacesListData = {
@@ -79581,13 +79768,11 @@ export type RancherServicesYamlRetrieveData = {
79581
79768
  path: {
79582
79769
  uuid: string;
79583
79770
  };
79584
- query?: {
79585
- field?: Array<RancherServiceFieldEnum>;
79586
- };
79771
+ query?: never;
79587
79772
  url: '/api/rancher-services/{uuid}/yaml/';
79588
79773
  };
79589
79774
  export type RancherServicesYamlRetrieveResponses = {
79590
- 200: RancherService;
79775
+ 200: Detail;
79591
79776
  };
79592
79777
  export type RancherServicesYamlRetrieveResponse = RancherServicesYamlRetrieveResponses[keyof RancherServicesYamlRetrieveResponses];
79593
79778
  export type RancherServicesYamlUpdateData = {
@@ -79599,7 +79784,7 @@ export type RancherServicesYamlUpdateData = {
79599
79784
  url: '/api/rancher-services/{uuid}/yaml/';
79600
79785
  };
79601
79786
  export type RancherServicesYamlUpdateResponses = {
79602
- 200: RancherService;
79787
+ 200: Detail;
79603
79788
  };
79604
79789
  export type RancherServicesYamlUpdateResponse = RancherServicesYamlUpdateResponses[keyof RancherServicesYamlUpdateResponses];
79605
79790
  export type RancherTemplateVersionsRetrieveData = {
@@ -79967,7 +80152,7 @@ export type RancherWorkloadsYamlRetrieveData = {
79967
80152
  url: '/api/rancher-workloads/{uuid}/yaml/';
79968
80153
  };
79969
80154
  export type RancherWorkloadsYamlRetrieveResponses = {
79970
- 200: RancherWorkload;
80155
+ 200: Detail;
79971
80156
  };
79972
80157
  export type RancherWorkloadsYamlRetrieveResponse = RancherWorkloadsYamlRetrieveResponses[keyof RancherWorkloadsYamlRetrieveResponses];
79973
80158
  export type RancherWorkloadsYamlUpdateData = {
@@ -79979,7 +80164,7 @@ export type RancherWorkloadsYamlUpdateData = {
79979
80164
  url: '/api/rancher-workloads/{uuid}/yaml/';
79980
80165
  };
79981
80166
  export type RancherWorkloadsYamlUpdateResponses = {
79982
- 200: RancherWorkload;
80167
+ 200: Detail;
79983
80168
  };
79984
80169
  export type RancherWorkloadsYamlUpdateResponse = RancherWorkloadsYamlUpdateResponses[keyof RancherWorkloadsYamlUpdateResponses];
79985
80170
  export type RemoteEduteamsData = {
@@ -83237,7 +83422,7 @@ export type SupportIssuesCommentData = {
83237
83422
  url: '/api/support-issues/{uuid}/comment/';
83238
83423
  };
83239
83424
  export type SupportIssuesCommentResponses = {
83240
- 200: Comment;
83425
+ 201: Comment;
83241
83426
  };
83242
83427
  export type SupportIssuesCommentResponse = SupportIssuesCommentResponses[keyof SupportIssuesCommentResponses];
83243
83428
  export type SupportIssuesSyncData = {
@@ -83249,9 +83434,11 @@ export type SupportIssuesSyncData = {
83249
83434
  url: '/api/support-issues/{uuid}/sync/';
83250
83435
  };
83251
83436
  export type SupportIssuesSyncResponses = {
83252
- 200: Issue;
83437
+ /**
83438
+ * No response body
83439
+ */
83440
+ 200: unknown;
83253
83441
  };
83254
- export type SupportIssuesSyncResponse = SupportIssuesSyncResponses[keyof SupportIssuesSyncResponses];
83255
83442
  export type SupportJiraWebhookData = {
83256
83443
  body: WebHookReceiverRequest;
83257
83444
  path?: never;
@@ -83484,7 +83671,7 @@ export type SupportRequestTypesAdminActivateData = {
83484
83671
  url: '/api/support-request-types-admin/{uuid}/activate/';
83485
83672
  };
83486
83673
  export type SupportRequestTypesAdminActivateResponses = {
83487
- 200: RequestTypeAdmin;
83674
+ 200: Status;
83488
83675
  };
83489
83676
  export type SupportRequestTypesAdminActivateResponse = SupportRequestTypesAdminActivateResponses[keyof SupportRequestTypesAdminActivateResponses];
83490
83677
  export type SupportRequestTypesAdminDeactivateData = {
@@ -83496,7 +83683,7 @@ export type SupportRequestTypesAdminDeactivateData = {
83496
83683
  url: '/api/support-request-types-admin/{uuid}/deactivate/';
83497
83684
  };
83498
83685
  export type SupportRequestTypesAdminDeactivateResponses = {
83499
- 200: RequestTypeAdmin;
83686
+ 200: Status;
83500
83687
  };
83501
83688
  export type SupportRequestTypesAdminDeactivateResponse = SupportRequestTypesAdminDeactivateResponses[keyof SupportRequestTypesAdminDeactivateResponses];
83502
83689
  export type SupportRequestTypesAdminReorderData = {
@@ -83506,7 +83693,7 @@ export type SupportRequestTypesAdminReorderData = {
83506
83693
  url: '/api/support-request-types-admin/reorder/';
83507
83694
  };
83508
83695
  export type SupportRequestTypesAdminReorderResponses = {
83509
- 200: RequestTypeAdmin;
83696
+ 200: Status;
83510
83697
  };
83511
83698
  export type SupportRequestTypesAdminReorderResponse = SupportRequestTypesAdminReorderResponses[keyof SupportRequestTypesAdminReorderResponses];
83512
83699
  export type SupportRequestTypesRetrieveData = {
@@ -84433,7 +84620,7 @@ export type UserActionsUnsilenceData = {
84433
84620
  url: '/api/user-actions/{uuid}/unsilence/';
84434
84621
  };
84435
84622
  export type UserActionsUnsilenceResponses = {
84436
- 200: UnsilenceActionResponse;
84623
+ 200: Status;
84437
84624
  };
84438
84625
  export type UserActionsUnsilenceResponse = UserActionsUnsilenceResponses[keyof UserActionsUnsilenceResponses];
84439
84626
  export type UserActionsBulkSilenceData = {
@@ -86026,13 +86213,11 @@ export type UsersConfirmEmailResponses = {
86026
86213
  export type UsersMeRetrieveData = {
86027
86214
  body?: never;
86028
86215
  path?: never;
86029
- query?: {
86030
- field?: Array<UserFieldEnum>;
86031
- };
86216
+ query?: never;
86032
86217
  url: '/api/users/me/';
86033
86218
  };
86034
86219
  export type UsersMeRetrieveResponses = {
86035
- 200: User;
86220
+ 200: UserMe;
86036
86221
  };
86037
86222
  export type UsersMeRetrieveResponse = UsersMeRetrieveResponses[keyof UsersMeRetrieveResponses];
86038
86223
  export type UsersMeCountData = {
@@ -87132,7 +87317,7 @@ export type VmwareDisksExtendData = {
87132
87317
  url: '/api/vmware-disks/{uuid}/extend/';
87133
87318
  };
87134
87319
  export type VmwareDisksExtendResponses = {
87135
- 200: VmwareDiskExtend;
87320
+ 202: Status;
87136
87321
  };
87137
87322
  export type VmwareDisksExtendResponse = VmwareDisksExtendResponses[keyof VmwareDisksExtendResponses];
87138
87323
  export type VmwareDisksPullData = {
@@ -88018,7 +88203,7 @@ export type VmwareVirtualMachineCreateDiskData = {
88018
88203
  url: '/api/vmware-virtual-machine/{uuid}/create_disk/';
88019
88204
  };
88020
88205
  export type VmwareVirtualMachineCreateDiskResponses = {
88021
- 200: VmwareDisk;
88206
+ 201: VmwareDisk;
88022
88207
  };
88023
88208
  export type VmwareVirtualMachineCreateDiskResponse = VmwareVirtualMachineCreateDiskResponses[keyof VmwareVirtualMachineCreateDiskResponses];
88024
88209
  export type VmwareVirtualMachineCreatePortData = {
@@ -88030,7 +88215,7 @@ export type VmwareVirtualMachineCreatePortData = {
88030
88215
  url: '/api/vmware-virtual-machine/{uuid}/create_port/';
88031
88216
  };
88032
88217
  export type VmwareVirtualMachineCreatePortResponses = {
88033
- 200: VmwarePort;
88218
+ 201: VmwarePort;
88034
88219
  };
88035
88220
  export type VmwareVirtualMachineCreatePortResponse = VmwareVirtualMachineCreatePortResponses[keyof VmwareVirtualMachineCreatePortResponses];
88036
88221
  export type VmwareVirtualMachinePullData = {
@@ -88058,7 +88243,7 @@ export type VmwareVirtualMachineRebootGuestData = {
88058
88243
  url: '/api/vmware-virtual-machine/{uuid}/reboot_guest/';
88059
88244
  };
88060
88245
  export type VmwareVirtualMachineRebootGuestResponses = {
88061
- 200: VmwareVirtualMachine;
88246
+ 202: Status;
88062
88247
  };
88063
88248
  export type VmwareVirtualMachineRebootGuestResponse = VmwareVirtualMachineRebootGuestResponses[keyof VmwareVirtualMachineRebootGuestResponses];
88064
88249
  export type VmwareVirtualMachineResetData = {
@@ -88070,7 +88255,7 @@ export type VmwareVirtualMachineResetData = {
88070
88255
  url: '/api/vmware-virtual-machine/{uuid}/reset/';
88071
88256
  };
88072
88257
  export type VmwareVirtualMachineResetResponses = {
88073
- 200: VmwareVirtualMachine;
88258
+ 202: Status;
88074
88259
  };
88075
88260
  export type VmwareVirtualMachineResetResponse = VmwareVirtualMachineResetResponses[keyof VmwareVirtualMachineResetResponses];
88076
88261
  export type VmwareVirtualMachineSetErredData = {
@@ -88106,7 +88291,7 @@ export type VmwareVirtualMachineShutdownGuestData = {
88106
88291
  url: '/api/vmware-virtual-machine/{uuid}/shutdown_guest/';
88107
88292
  };
88108
88293
  export type VmwareVirtualMachineShutdownGuestResponses = {
88109
- 200: VmwareVirtualMachine;
88294
+ 202: Status;
88110
88295
  };
88111
88296
  export type VmwareVirtualMachineShutdownGuestResponse = VmwareVirtualMachineShutdownGuestResponses[keyof VmwareVirtualMachineShutdownGuestResponses];
88112
88297
  export type VmwareVirtualMachineStartData = {
@@ -88118,7 +88303,7 @@ export type VmwareVirtualMachineStartData = {
88118
88303
  url: '/api/vmware-virtual-machine/{uuid}/start/';
88119
88304
  };
88120
88305
  export type VmwareVirtualMachineStartResponses = {
88121
- 200: VmwareVirtualMachine;
88306
+ 202: Status;
88122
88307
  };
88123
88308
  export type VmwareVirtualMachineStartResponse = VmwareVirtualMachineStartResponses[keyof VmwareVirtualMachineStartResponses];
88124
88309
  export type VmwareVirtualMachineStopData = {
@@ -88130,7 +88315,7 @@ export type VmwareVirtualMachineStopData = {
88130
88315
  url: '/api/vmware-virtual-machine/{uuid}/stop/';
88131
88316
  };
88132
88317
  export type VmwareVirtualMachineStopResponses = {
88133
- 200: VmwareVirtualMachine;
88318
+ 202: Status;
88134
88319
  };
88135
88320
  export type VmwareVirtualMachineStopResponse = VmwareVirtualMachineStopResponses[keyof VmwareVirtualMachineStopResponses];
88136
88321
  export type VmwareVirtualMachineSuspendData = {
@@ -88142,7 +88327,7 @@ export type VmwareVirtualMachineSuspendData = {
88142
88327
  url: '/api/vmware-virtual-machine/{uuid}/suspend/';
88143
88328
  };
88144
88329
  export type VmwareVirtualMachineSuspendResponses = {
88145
- 200: VmwareVirtualMachine;
88330
+ 202: Status;
88146
88331
  };
88147
88332
  export type VmwareVirtualMachineSuspendResponse = VmwareVirtualMachineSuspendResponses[keyof VmwareVirtualMachineSuspendResponses];
88148
88333
  export type VmwareVirtualMachineUnlinkData = {
@@ -88172,6 +88357,3 @@ export type VmwareVirtualMachineWebConsoleRetrieveResponses = {
88172
88357
  200: ConsoleUrl;
88173
88358
  };
88174
88359
  export type VmwareVirtualMachineWebConsoleRetrieveResponse = VmwareVirtualMachineWebConsoleRetrieveResponses[keyof VmwareVirtualMachineWebConsoleRetrieveResponses];
88175
- export type ClientOptions = {
88176
- baseUrl: `${string}://waldur-openapi-schema.yaml` | (string & {});
88177
- };