waldur-js-client 7.9.10-dev.8 → 8.0.0

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.
@@ -531,6 +531,555 @@ export type AnswerSubmitResponse = {
531
531
  detail: string;
532
532
  completion: ChecklistCompletion;
533
533
  };
534
+ export type ArrowBillingLine = {
535
+ vendor_name: string;
536
+ subscription_reference: string;
537
+ /**
538
+ * Arrow license reference. Used to fetch consumption data.
539
+ */
540
+ license_reference: string;
541
+ offer_sku: string;
542
+ classification: string;
543
+ quantity: string | null;
544
+ sell_price: string | null;
545
+ buy_price: string | null;
546
+ };
547
+ export type ArrowBillingSync = {
548
+ readonly uuid: string;
549
+ readonly url: string;
550
+ readonly customer_mapping: string;
551
+ readonly customer_mapping_uuid: string;
552
+ /**
553
+ * Arrow customer ID (e.g., 'XSP661245')
554
+ */
555
+ readonly arrow_reference: string;
556
+ readonly waldur_customer_name: string;
557
+ /**
558
+ * Arrow statement ID
559
+ */
560
+ readonly statement_reference: string;
561
+ /**
562
+ * Report period in YYYY-MM format
563
+ */
564
+ readonly report_period: string;
565
+ /**
566
+ * Arrow billing state (pending/validated)
567
+ */
568
+ readonly arrow_state: string;
569
+ /**
570
+ * Waldur sync state
571
+ */
572
+ state: ArrowBillingSyncStateEnum;
573
+ readonly state_display: string;
574
+ /**
575
+ * Total buy amount
576
+ */
577
+ readonly buy_total: string;
578
+ /**
579
+ * Total sell amount
580
+ */
581
+ readonly sell_total: string;
582
+ /**
583
+ * Currency code
584
+ */
585
+ readonly currency: string;
586
+ readonly invoice_uuid: string;
587
+ /**
588
+ * Error message if sync failed
589
+ */
590
+ readonly error_message: string;
591
+ /**
592
+ * When billing was last synced
593
+ */
594
+ readonly synced_at: string | null;
595
+ /**
596
+ * When Arrow validated the billing
597
+ */
598
+ readonly validated_at: string | null;
599
+ /**
600
+ * When reconciliation was applied
601
+ */
602
+ readonly reconciled_at: string | null;
603
+ readonly items: Array<ArrowBillingSyncItem>;
604
+ readonly created: string;
605
+ readonly modified: string;
606
+ };
607
+ export type ArrowBillingSyncItem = {
608
+ readonly uuid: string;
609
+ /**
610
+ * Arrow line ID
611
+ */
612
+ readonly arrow_line_reference: string;
613
+ readonly invoice_item_uuid: string;
614
+ /**
615
+ * Original price for reconciliation tracking
616
+ */
617
+ readonly original_price: string;
618
+ readonly compensation_item_uuid: string;
619
+ /**
620
+ * Vendor name (e.g., Microsoft)
621
+ */
622
+ readonly vendor_name: string;
623
+ /**
624
+ * Arrow subscription reference
625
+ */
626
+ readonly subscription_reference: string;
627
+ /**
628
+ * Classification (IAAS/SAAS)
629
+ */
630
+ readonly classification: string;
631
+ /**
632
+ * Line item description
633
+ */
634
+ readonly description: string;
635
+ /**
636
+ * Quantity
637
+ */
638
+ readonly quantity: string;
639
+ readonly created: string;
640
+ };
641
+ export type ArrowBillingSyncItemDetail = {
642
+ readonly uuid: string;
643
+ readonly url: string;
644
+ readonly billing_sync: string;
645
+ readonly billing_sync_uuid: string;
646
+ /**
647
+ * Report period in YYYY-MM format
648
+ */
649
+ readonly report_period: string;
650
+ /**
651
+ * Arrow line ID
652
+ */
653
+ readonly arrow_line_reference: string;
654
+ readonly invoice_item_uuid: string;
655
+ /**
656
+ * Original price for reconciliation tracking
657
+ */
658
+ readonly original_price: string;
659
+ readonly compensation_item_uuid: string;
660
+ readonly has_compensation: boolean;
661
+ /**
662
+ * Vendor name (e.g., Microsoft)
663
+ */
664
+ readonly vendor_name: string;
665
+ /**
666
+ * Arrow subscription reference
667
+ */
668
+ readonly subscription_reference: string;
669
+ /**
670
+ * Classification (IAAS/SAAS)
671
+ */
672
+ readonly classification: string;
673
+ /**
674
+ * Line item description
675
+ */
676
+ readonly description: string;
677
+ /**
678
+ * Quantity
679
+ */
680
+ readonly quantity: string;
681
+ readonly created: string;
682
+ };
683
+ export type ArrowBillingSyncStateEnum = 1 | 2 | 3 | 4;
684
+ export type ArrowConsumptionLine = {
685
+ /**
686
+ * Arrow license reference (same as resource backend_id).
687
+ */
688
+ license_reference: string;
689
+ resource_name: string | null;
690
+ /**
691
+ * UUID of the Waldur resource.
692
+ */
693
+ resource_uuid: string | null;
694
+ period: string;
695
+ sell_price: string | null;
696
+ buy_price: string | null;
697
+ /**
698
+ * Error message if fetch failed.
699
+ */
700
+ error?: string | null;
701
+ };
702
+ export type ArrowConsumptionRecord = {
703
+ readonly uuid: string;
704
+ readonly url: string;
705
+ readonly resource: string;
706
+ readonly resource_uuid: string;
707
+ readonly resource_name: string;
708
+ readonly project_uuid: string;
709
+ readonly project_name: string;
710
+ readonly customer_uuid: string;
711
+ readonly customer_name: string;
712
+ /**
713
+ * Arrow license reference (e.g., 'XSP12345')
714
+ */
715
+ readonly license_reference: string;
716
+ /**
717
+ * First day of the billing month
718
+ */
719
+ readonly billing_period: string;
720
+ /**
721
+ * Consumed sell amount from Consumption API
722
+ */
723
+ readonly consumed_sell: string;
724
+ /**
725
+ * Consumed buy amount from Consumption API
726
+ */
727
+ readonly consumed_buy: string;
728
+ /**
729
+ * Final sell amount from billing export
730
+ */
731
+ readonly final_sell: string | null;
732
+ /**
733
+ * Final buy amount from billing export
734
+ */
735
+ readonly final_buy: string | null;
736
+ readonly invoice_item_uuid: string;
737
+ readonly compensation_item_uuid: string;
738
+ /**
739
+ * When consumption was last synced from API
740
+ */
741
+ readonly last_sync_at: string | null;
742
+ /**
743
+ * When billing export data arrived
744
+ */
745
+ readonly finalized_at: string | null;
746
+ /**
747
+ * When reconciliation was applied
748
+ */
749
+ readonly reconciled_at: string | null;
750
+ readonly is_finalized: boolean;
751
+ readonly is_reconciled: boolean;
752
+ readonly adjustment_amount: string | null;
753
+ /**
754
+ * Raw consumption data for debugging
755
+ */
756
+ readonly raw_data: unknown;
757
+ readonly created: string;
758
+ readonly modified: string;
759
+ };
760
+ export type ArrowCredentialsRequest = {
761
+ /**
762
+ * Arrow API base URL
763
+ */
764
+ api_url: string;
765
+ /**
766
+ * Arrow API Key
767
+ */
768
+ api_key: string;
769
+ };
770
+ export type ArrowCredentialsValidationResponse = {
771
+ valid: boolean;
772
+ message?: string;
773
+ error?: string;
774
+ partner_info?: {
775
+ [key: string]: unknown;
776
+ };
777
+ };
778
+ export type ArrowCustomerDiscovery = {
779
+ reference: string;
780
+ companyName: string;
781
+ email?: string;
782
+ city?: string;
783
+ countryCode?: string;
784
+ };
785
+ export type ArrowCustomerMapping = {
786
+ readonly uuid: string;
787
+ readonly url: string;
788
+ settings: string;
789
+ readonly settings_uuid: string;
790
+ /**
791
+ * Arrow customer ID (e.g., 'XSP661245')
792
+ */
793
+ arrow_reference: string;
794
+ /**
795
+ * Arrow company name
796
+ */
797
+ arrow_company_name?: string;
798
+ waldur_customer: string;
799
+ readonly waldur_customer_uuid: string;
800
+ readonly waldur_customer_name: string;
801
+ /**
802
+ * Whether this mapping is active
803
+ */
804
+ is_active?: boolean;
805
+ readonly created: string;
806
+ readonly modified: string;
807
+ };
808
+ export type ArrowCustomerMappingCreate = {
809
+ readonly uuid: string;
810
+ readonly url: string;
811
+ settings: string;
812
+ readonly settings_uuid: string;
813
+ /**
814
+ * Arrow customer ID (e.g., 'XSP661245')
815
+ */
816
+ arrow_reference: string;
817
+ /**
818
+ * Arrow company name
819
+ */
820
+ arrow_company_name?: string;
821
+ waldur_customer: string;
822
+ readonly waldur_customer_uuid: string;
823
+ readonly waldur_customer_name: string;
824
+ /**
825
+ * Whether this mapping is active
826
+ */
827
+ is_active?: boolean;
828
+ readonly created: string;
829
+ readonly modified: string;
830
+ };
831
+ export type ArrowCustomerMappingCreateRequest = {
832
+ settings: string;
833
+ /**
834
+ * Arrow customer ID (e.g., 'XSP661245')
835
+ */
836
+ arrow_reference: string;
837
+ /**
838
+ * Arrow company name
839
+ */
840
+ arrow_company_name?: string;
841
+ waldur_customer: string;
842
+ /**
843
+ * Whether this mapping is active
844
+ */
845
+ is_active?: boolean;
846
+ };
847
+ export type ArrowCustomerMappingRequest = {
848
+ settings: string;
849
+ /**
850
+ * Arrow customer ID (e.g., 'XSP661245')
851
+ */
852
+ arrow_reference: string;
853
+ /**
854
+ * Arrow company name
855
+ */
856
+ arrow_company_name?: string;
857
+ waldur_customer: string;
858
+ /**
859
+ * Whether this mapping is active
860
+ */
861
+ is_active?: boolean;
862
+ };
863
+ export type ArrowLicense = {
864
+ /**
865
+ * Arrow license reference (e.g., XSP12345). Use this as resource backend_id.
866
+ */
867
+ license_reference: string;
868
+ vendor_name: string;
869
+ offer_name: string;
870
+ offer_sku: string;
871
+ friendly_name: string;
872
+ };
873
+ export type ArrowSettings = {
874
+ readonly uuid: string;
875
+ readonly url: string;
876
+ /**
877
+ * Arrow API base URL
878
+ */
879
+ api_url: string;
880
+ /**
881
+ * Arrow API Key (leave empty on update to keep current)
882
+ */
883
+ api_key?: string;
884
+ /**
885
+ * Billing export template reference
886
+ */
887
+ export_type_reference?: string;
888
+ /**
889
+ * Filter for IaaS/SaaS classification
890
+ */
891
+ classification_filter?: string;
892
+ /**
893
+ * Whether this settings record is active
894
+ */
895
+ is_active?: boolean;
896
+ /**
897
+ * Whether automatic billing sync is enabled
898
+ */
899
+ sync_enabled?: boolean;
900
+ /**
901
+ * Arrow partner reference (discovered from API)
902
+ */
903
+ readonly partner_reference: string;
904
+ /**
905
+ * Arrow partner name (discovered from API)
906
+ */
907
+ readonly partner_name: string;
908
+ /**
909
+ * Which price to use for invoice items: sell or buy
910
+ */
911
+ invoice_price_source?: InvoicePriceSourceEnum;
912
+ readonly created: string;
913
+ readonly modified: string;
914
+ };
915
+ export type ArrowSettingsCreate = {
916
+ readonly uuid: string;
917
+ readonly url: string;
918
+ /**
919
+ * Arrow API base URL
920
+ */
921
+ api_url: string;
922
+ /**
923
+ * Billing export template reference
924
+ */
925
+ export_type_reference?: string;
926
+ /**
927
+ * Filter for IaaS/SaaS classification
928
+ */
929
+ classification_filter?: string;
930
+ /**
931
+ * Whether this settings record is active
932
+ */
933
+ is_active?: boolean;
934
+ /**
935
+ * Whether automatic billing sync is enabled
936
+ */
937
+ sync_enabled?: boolean;
938
+ /**
939
+ * Arrow partner reference (discovered from API)
940
+ */
941
+ readonly partner_reference: string;
942
+ /**
943
+ * Arrow partner name (discovered from API)
944
+ */
945
+ readonly partner_name: string;
946
+ /**
947
+ * Which price to use for invoice items: sell or buy
948
+ */
949
+ invoice_price_source?: InvoicePriceSourceEnum;
950
+ readonly created: string;
951
+ readonly modified: string;
952
+ };
953
+ export type ArrowSettingsCreateRequest = {
954
+ /**
955
+ * Arrow API base URL
956
+ */
957
+ api_url: string;
958
+ /**
959
+ * Arrow API Key (required for creation)
960
+ */
961
+ api_key: string;
962
+ /**
963
+ * Billing export template reference
964
+ */
965
+ export_type_reference?: string;
966
+ /**
967
+ * Filter for IaaS/SaaS classification
968
+ */
969
+ classification_filter?: string;
970
+ /**
971
+ * Whether this settings record is active
972
+ */
973
+ is_active?: boolean;
974
+ /**
975
+ * Whether automatic billing sync is enabled
976
+ */
977
+ sync_enabled?: boolean;
978
+ /**
979
+ * Which price to use for invoice items: sell or buy
980
+ */
981
+ invoice_price_source?: InvoicePriceSourceEnum;
982
+ };
983
+ export type ArrowSettingsRequest = {
984
+ /**
985
+ * Arrow API base URL
986
+ */
987
+ api_url: string;
988
+ /**
989
+ * Arrow API Key (leave empty on update to keep current)
990
+ */
991
+ api_key?: string;
992
+ /**
993
+ * Billing export template reference
994
+ */
995
+ export_type_reference?: string;
996
+ /**
997
+ * Filter for IaaS/SaaS classification
998
+ */
999
+ classification_filter?: string;
1000
+ /**
1001
+ * Whether this settings record is active
1002
+ */
1003
+ is_active?: boolean;
1004
+ /**
1005
+ * Whether automatic billing sync is enabled
1006
+ */
1007
+ sync_enabled?: boolean;
1008
+ /**
1009
+ * Which price to use for invoice items: sell or buy
1010
+ */
1011
+ invoice_price_source?: InvoicePriceSourceEnum;
1012
+ };
1013
+ export type ArrowVendorOfferingMapping = {
1014
+ readonly uuid: string;
1015
+ readonly url: string;
1016
+ settings: string;
1017
+ readonly settings_uuid: string;
1018
+ /**
1019
+ * Arrow vendor name (e.g., 'Microsoft', 'Amazon Web Services')
1020
+ */
1021
+ arrow_vendor_name: string;
1022
+ /**
1023
+ * Waldur marketplace offering for this vendor
1024
+ */
1025
+ offering: string;
1026
+ readonly offering_uuid: string;
1027
+ readonly offering_name: string;
1028
+ readonly offering_type: string;
1029
+ /**
1030
+ * Whether this mapping is active
1031
+ */
1032
+ is_active?: boolean;
1033
+ readonly created: string;
1034
+ readonly modified: string;
1035
+ };
1036
+ export type ArrowVendorOfferingMappingCreate = {
1037
+ readonly uuid: string;
1038
+ readonly url: string;
1039
+ settings: string;
1040
+ readonly settings_uuid: string;
1041
+ /**
1042
+ * Arrow vendor name (e.g., 'Microsoft', 'Amazon Web Services')
1043
+ */
1044
+ arrow_vendor_name: string;
1045
+ offering: string;
1046
+ readonly offering_uuid: string;
1047
+ readonly offering_name: string;
1048
+ readonly offering_type: string;
1049
+ /**
1050
+ * Whether this mapping is active
1051
+ */
1052
+ is_active?: boolean;
1053
+ readonly created: string;
1054
+ readonly modified: string;
1055
+ };
1056
+ export type ArrowVendorOfferingMappingCreateRequest = {
1057
+ settings: string;
1058
+ /**
1059
+ * Arrow vendor name (e.g., 'Microsoft', 'Amazon Web Services')
1060
+ */
1061
+ arrow_vendor_name: string;
1062
+ offering: string;
1063
+ /**
1064
+ * Whether this mapping is active
1065
+ */
1066
+ is_active?: boolean;
1067
+ };
1068
+ export type ArrowVendorOfferingMappingRequest = {
1069
+ settings: string;
1070
+ /**
1071
+ * Arrow vendor name (e.g., 'Microsoft', 'Amazon Web Services')
1072
+ */
1073
+ arrow_vendor_name: string;
1074
+ /**
1075
+ * Waldur marketplace offering for this vendor
1076
+ */
1077
+ offering: string;
1078
+ /**
1079
+ * Whether this mapping is active
1080
+ */
1081
+ is_active?: boolean;
1082
+ };
534
1083
  export type AssignmentBatch = {
535
1084
  readonly url: string;
536
1085
  readonly uuid: string;
@@ -913,6 +1462,12 @@ export type AuthToken = {
913
1462
  */
914
1463
  readonly user_token_lifetime: number | null;
915
1464
  };
1465
+ export type AvailableArrowCustomersResponse = {
1466
+ settings_uuid: string;
1467
+ arrow_customers: Array<ArrowCustomerDiscovery>;
1468
+ waldur_customers: Array<WaldurCustomerBrief>;
1469
+ suggestions: Array<CustomerMappingSuggestion>;
1470
+ };
916
1471
  export type AvailableChecklist = {
917
1472
  readonly uuid: string;
918
1473
  readonly name: string;
@@ -2962,6 +3517,27 @@ export type CircuitBreakerStatus = {
2962
3517
  */
2963
3518
  readonly state_history: Array<CircuitBreakerStateChange>;
2964
3519
  };
3520
+ export type CleanupConsumptionRequestRequest = {
3521
+ /**
3522
+ * YYYY-MM format
3523
+ */
3524
+ period_from?: string;
3525
+ /**
3526
+ * YYYY-MM format
3527
+ */
3528
+ period_to?: string;
3529
+ resource_uuid?: string;
3530
+ only_finalized?: boolean;
3531
+ only_unfinalized?: boolean;
3532
+ dry_run?: boolean;
3533
+ };
3534
+ export type CleanupConsumptionResponse = {
3535
+ dry_run: boolean;
3536
+ records_to_delete: number;
3537
+ records_deleted: number;
3538
+ compensation_items_affected: number;
3539
+ invoice_items_affected: number;
3540
+ };
2965
3541
  export type CleanupRequestRequest = {
2966
3542
  /**
2967
3543
  * If true, only return what would be deleted without actually deleting
@@ -3505,6 +4081,10 @@ export type ConstanceSettings = {
3505
4081
  FREEIPA_GROUPNAME_PREFIX?: string;
3506
4082
  FREEIPA_BLACKLISTED_USERNAMES?: Array<string>;
3507
4083
  FREEIPA_GROUP_SYNCHRONIZATION_ENABLED?: boolean;
4084
+ SCIM_MEMBERSHIP_SYNC_ENABLED?: boolean;
4085
+ SCIM_API_URL?: string;
4086
+ SCIM_API_KEY?: string;
4087
+ SCIM_URN_NAMESPACE?: string;
3508
4088
  KEYCLOAK_ICON?: string | null;
3509
4089
  COUNTRIES?: Array<string>;
3510
4090
  OIDC_AUTH_URL?: string;
@@ -3571,6 +4151,11 @@ export type ConstanceSettings = {
3571
4151
  USER_DATA_ACCESS_LOGGING_ENABLED?: boolean;
3572
4152
  USER_DATA_ACCESS_LOG_RETENTION_DAYS?: number;
3573
4153
  USER_DATA_ACCESS_LOG_SELF_ACCESS?: boolean;
4154
+ ARROW_AUTO_RECONCILIATION?: boolean;
4155
+ ARROW_SYNC_INTERVAL_HOURS?: number;
4156
+ ARROW_CONSUMPTION_SYNC_ENABLED?: boolean;
4157
+ ARROW_CONSUMPTION_SYNC_INTERVAL_HOURS?: number;
4158
+ ARROW_BILLING_CHECK_INTERVAL_HOURS?: number;
3574
4159
  SLURM_POLICY_EVALUATION_LOG_RETENTION_DAYS?: number;
3575
4160
  };
3576
4161
  export type ConstanceSettingsRequest = {
@@ -3722,6 +4307,10 @@ export type ConstanceSettingsRequest = {
3722
4307
  FREEIPA_GROUPNAME_PREFIX?: string;
3723
4308
  FREEIPA_BLACKLISTED_USERNAMES?: Array<string>;
3724
4309
  FREEIPA_GROUP_SYNCHRONIZATION_ENABLED?: boolean;
4310
+ SCIM_MEMBERSHIP_SYNC_ENABLED?: boolean;
4311
+ SCIM_API_URL?: string;
4312
+ SCIM_API_KEY?: string;
4313
+ SCIM_URN_NAMESPACE?: string;
3725
4314
  KEYCLOAK_ICON?: (Blob | File) | null;
3726
4315
  COUNTRIES?: Array<string>;
3727
4316
  OIDC_AUTH_URL?: string;
@@ -3788,8 +4377,28 @@ export type ConstanceSettingsRequest = {
3788
4377
  USER_DATA_ACCESS_LOGGING_ENABLED?: boolean;
3789
4378
  USER_DATA_ACCESS_LOG_RETENTION_DAYS?: number;
3790
4379
  USER_DATA_ACCESS_LOG_SELF_ACCESS?: boolean;
4380
+ ARROW_AUTO_RECONCILIATION?: boolean;
4381
+ ARROW_SYNC_INTERVAL_HOURS?: number;
4382
+ ARROW_CONSUMPTION_SYNC_ENABLED?: boolean;
4383
+ ARROW_CONSUMPTION_SYNC_INTERVAL_HOURS?: number;
4384
+ ARROW_BILLING_CHECK_INTERVAL_HOURS?: number;
3791
4385
  SLURM_POLICY_EVALUATION_LOG_RETENTION_DAYS?: number;
3792
4386
  };
4387
+ export type ConsumptionStatisticsResponse = {
4388
+ total_records: number;
4389
+ pending_records: number;
4390
+ finalized_records: number;
4391
+ reconciled_records: number;
4392
+ total_consumed_sell: string;
4393
+ total_adjustments: string;
4394
+ period_breakdown: Array<PeriodBreakdown>;
4395
+ };
4396
+ export type ConsumptionStatusResponse = {
4397
+ global_sync_enabled: boolean;
4398
+ settings_sync_enabled: boolean;
4399
+ settings_uuid: string | null;
4400
+ last_sync_run: string | null;
4401
+ };
3793
4402
  export type ContainerFormatEnum = 'bare' | 'ovf' | 'aki' | 'ami' | 'ari';
3794
4403
  export type CoreAuthToken = {
3795
4404
  /**
@@ -4162,6 +4771,41 @@ export type Customer = {
4162
4771
  readonly call_managing_organization_uuid?: string | null;
4163
4772
  billing_price_estimate?: NestedPriceEstimate;
4164
4773
  };
4774
+ export type CustomerBillingSummaryBillingSync = {
4775
+ uuid: string;
4776
+ report_period: string;
4777
+ state: string;
4778
+ sell_total: string | null;
4779
+ items_count: number;
4780
+ created: string;
4781
+ };
4782
+ export type CustomerBillingSummaryConsumptionRecord = {
4783
+ uuid: string;
4784
+ license_reference: string;
4785
+ resource_name: string | null;
4786
+ billing_period: string;
4787
+ consumed_sell: string;
4788
+ final_sell: string | null;
4789
+ is_finalized: boolean;
4790
+ is_reconciled: boolean;
4791
+ };
4792
+ export type CustomerBillingSummaryResponse = {
4793
+ customer_mapping_uuid: string;
4794
+ arrow_reference: string;
4795
+ arrow_company_name: string;
4796
+ waldur_customer_uuid: string;
4797
+ waldur_customer_name: string;
4798
+ total_consumption_records: number;
4799
+ total_consumed_sell: string;
4800
+ total_final_sell: string | null;
4801
+ pending_records: number;
4802
+ finalized_records: number;
4803
+ reconciled_records: number;
4804
+ total_billing_syncs: number;
4805
+ total_billing_sell: string | null;
4806
+ recent_consumption_records: Array<CustomerBillingSummaryConsumptionRecord>;
4807
+ recent_billing_syncs: Array<CustomerBillingSummaryBillingSync>;
4808
+ };
4165
4809
  export type CustomerComponentUsagePolicy = {
4166
4810
  readonly uuid: string;
4167
4811
  readonly url: string;
@@ -4255,7 +4899,7 @@ export type CustomerEstimatedCostPolicy = {
4255
4899
  */
4256
4900
  options?: unknown;
4257
4901
  limit_cost: number;
4258
- period?: PeriodEnum;
4902
+ period?: PolicyPeriodEnum;
4259
4903
  readonly period_name: string;
4260
4904
  readonly customer_credit: number;
4261
4905
  billing_price_estimate: NestedPriceEstimate;
@@ -4268,7 +4912,7 @@ export type CustomerEstimatedCostPolicyRequest = {
4268
4912
  */
4269
4913
  options?: unknown;
4270
4914
  limit_cost: number;
4271
- period?: PeriodEnum;
4915
+ period?: PolicyPeriodEnum;
4272
4916
  };
4273
4917
  export type CustomerIndustryFlagStats = {
4274
4918
  /**
@@ -4292,6 +4936,16 @@ export type CustomerIndustryFlagStats = {
4292
4936
  */
4293
4937
  is_industry: string;
4294
4938
  };
4939
+ export type CustomerMappingInputRequest = {
4940
+ arrow_reference: string;
4941
+ waldur_customer_uuid: string;
4942
+ };
4943
+ export type CustomerMappingSuggestion = {
4944
+ arrow_customer: ArrowCustomerDiscovery;
4945
+ suggested_waldur_customer?: WaldurCustomerBrief;
4946
+ confidence?: number;
4947
+ existing_mapping?: boolean;
4948
+ };
4295
4949
  export type CustomerMemberCount = {
4296
4950
  /**
4297
4951
  * UUID of the customer
@@ -4903,6 +5557,39 @@ export type DiscoverCustomFieldsRequestRequest = {
4903
5557
  */
4904
5558
  request_type_id?: string;
4905
5559
  };
5560
+ export type DiscoverCustomersRequestRequest = {
5561
+ /**
5562
+ * Arrow API base URL
5563
+ */
5564
+ api_url: string;
5565
+ /**
5566
+ * Arrow API Key
5567
+ */
5568
+ api_key: string;
5569
+ };
5570
+ export type DiscoverCustomersResponse = {
5571
+ arrow_customers: Array<ArrowCustomerDiscovery>;
5572
+ waldur_customers: Array<WaldurCustomerBrief>;
5573
+ suggestions: Array<CustomerMappingSuggestion>;
5574
+ };
5575
+ export type DiscoverLicensesResponse = {
5576
+ customer_mapping_uuid: string;
5577
+ arrow_reference: string;
5578
+ waldur_customer_name: string;
5579
+ /**
5580
+ * Arrow licenses from billing export for this customer.
5581
+ */
5582
+ arrow_licenses: Array<ArrowLicense>;
5583
+ /**
5584
+ * Waldur resources for this customer.
5585
+ */
5586
+ waldur_resources: Array<WaldurResourceForLinking>;
5587
+ /**
5588
+ * Suggested matches based on name similarity.
5589
+ */
5590
+ suggestions: Array<LicenseSuggestion>;
5591
+ error: string | null;
5592
+ };
4906
5593
  export type DiscoverMetadataRequestRequest = {
4907
5594
  /**
4908
5595
  * OIDC discovery URL (e.g., https://idp.example.com/.well-known/openid-configuration)
@@ -5407,6 +6094,79 @@ export type Feedback = {
5407
6094
  readonly issue_key: string;
5408
6095
  readonly issue_summary: string;
5409
6096
  };
6097
+ export type FetchBillingExportRequestRequest = {
6098
+ /**
6099
+ * YYYY-MM format
6100
+ */
6101
+ period_from: string;
6102
+ /**
6103
+ * YYYY-MM format
6104
+ */
6105
+ period_to: string;
6106
+ classification?: string;
6107
+ };
6108
+ export type FetchBillingExportResponse = {
6109
+ period_from: string;
6110
+ period_to: string;
6111
+ classification: string;
6112
+ row_count: number;
6113
+ data: Array<{
6114
+ [key: string]: unknown;
6115
+ }>;
6116
+ };
6117
+ export type FetchConsumptionRequestRequest = {
6118
+ license_reference: string;
6119
+ /**
6120
+ * YYYY-MM format
6121
+ */
6122
+ period: string;
6123
+ };
6124
+ export type FetchConsumptionResponse = {
6125
+ license_reference: string;
6126
+ period: string;
6127
+ row_count: number;
6128
+ data: Array<{
6129
+ [key: string]: unknown;
6130
+ }>;
6131
+ };
6132
+ export type FetchCustomerArrowDataResponse = {
6133
+ customer_mapping_uuid: string;
6134
+ arrow_reference: string;
6135
+ arrow_company_name: string;
6136
+ waldur_customer_name: string;
6137
+ period: string;
6138
+ billing_available: boolean;
6139
+ billing_lines: Array<ArrowBillingLine>;
6140
+ billing_total_sell: string | null;
6141
+ billing_total_buy: string | null;
6142
+ consumption_lines: Array<ArrowConsumptionLine>;
6143
+ consumption_total_sell: string | null;
6144
+ consumption_total_buy: string | null;
6145
+ /**
6146
+ * Total number of resources for this customer in Waldur.
6147
+ */
6148
+ total_customer_resources: number;
6149
+ /**
6150
+ * Number of resources with backend_id set (Arrow license reference).
6151
+ */
6152
+ resources_with_backend_id: number;
6153
+ /**
6154
+ * Number of resources for which consumption was successfully fetched.
6155
+ */
6156
+ matched_resources: number;
6157
+ error: string | null;
6158
+ };
6159
+ export type FetchLicenseInfoRequestRequest = {
6160
+ license_reference: string;
6161
+ };
6162
+ export type FetchLicenseInfoResponse = {
6163
+ /**
6164
+ * Raw license data from Arrow API
6165
+ */
6166
+ data: {
6167
+ [key: string]: unknown;
6168
+ };
6169
+ };
5410
6170
  export type FinancialReport = {
5411
6171
  name: string;
5412
6172
  readonly uuid: string;
@@ -5528,6 +6288,7 @@ export type FreeipaProfileRequest = {
5528
6288
  */
5529
6289
  agreement_date?: string;
5530
6290
  };
6291
+ export type FrequencyEnum = 'weekly' | 'biweekly' | 'monthly';
5531
6292
  export type GenderEnum = 0 | 1 | 2 | 9;
5532
6293
  export type GenerateAssignmentsRequest = {
5533
6294
  /**
@@ -5740,6 +6501,7 @@ export type GroupInvitationRequest = {
5740
6501
  */
5741
6502
  user_identity_sources?: unknown;
5742
6503
  };
6504
+ export type GrowthPeriodEnum = 'weekly' | 'monthly';
5743
6505
  export type GuestOsEnum = 'DOS' | 'WIN_31' | 'WIN_95' | 'WIN_98' | 'WIN_ME' | 'WIN_NT' | 'WIN_2000_PRO' | 'WIN_2000_SERV' | 'WIN_2000_ADV_SERV' | 'WIN_XP_HOME' | 'WIN_XP_PRO' | 'WIN_XP_PRO_64' | 'WIN_NET_WEB' | 'WIN_NET_STANDARD' | 'WIN_NET_ENTERPRISE' | 'WIN_NET_DATACENTER' | 'WIN_NET_BUSINESS' | 'WIN_NET_STANDARD_64' | 'WIN_NET_ENTERPRISE_64' | 'WIN_LONGHORN' | 'WIN_LONGHORN_64' | 'WIN_NET_DATACENTER_64' | 'WIN_VISTA' | 'WIN_VISTA_64' | 'WINDOWS_7' | 'WINDOWS_7_64' | 'WINDOWS_7_SERVER_64' | 'WINDOWS_8' | 'WINDOWS_8_64' | 'WINDOWS_8_SERVER_64' | 'WINDOWS_9' | 'WINDOWS_9_64' | 'WINDOWS_9_SERVER_64' | 'WINDOWS_HYPERV' | 'FREEBSD' | 'FREEBSD_64' | 'REDHAT' | 'RHEL_2' | 'RHEL_3' | 'RHEL_3_64' | 'RHEL_4' | 'RHEL_4_64' | 'RHEL_5' | 'RHEL_5_64' | 'RHEL_6' | 'RHEL_6_64' | 'RHEL_7' | 'RHEL_7_64' | 'CENTOS' | 'CENTOS_64' | 'CENTOS_6' | 'CENTOS_6_64' | 'CENTOS_7' | 'CENTOS_7_64' | 'ORACLE_LINUX' | 'ORACLE_LINUX_64' | 'ORACLE_LINUX_6' | 'ORACLE_LINUX_6_64' | 'ORACLE_LINUX_7' | 'ORACLE_LINUX_7_64' | 'SUSE' | 'SUSE_64' | 'SLES' | 'SLES_64' | 'SLES_10' | 'SLES_10_64' | 'SLES_11' | 'SLES_11_64' | 'SLES_12' | 'SLES_12_64' | 'NLD_9' | 'OES' | 'SJDS' | 'MANDRAKE' | 'MANDRIVA' | 'MANDRIVA_64' | 'TURBO_LINUX' | 'TURBO_LINUX_64' | 'UBUNTU' | 'UBUNTU_64' | 'DEBIAN_4' | 'DEBIAN_4_64' | 'DEBIAN_5' | 'DEBIAN_5_64' | 'DEBIAN_6' | 'DEBIAN_6_64' | 'DEBIAN_7' | 'DEBIAN_7_64' | 'DEBIAN_8' | 'DEBIAN_8_64' | 'DEBIAN_9' | 'DEBIAN_9_64' | 'DEBIAN_10' | 'DEBIAN_10_64' | 'ASIANUX_3' | 'ASIANUX_3_64' | 'ASIANUX_4' | 'ASIANUX_4_64' | 'ASIANUX_5_64' | 'ASIANUX_7_64' | 'OPENSUSE' | 'OPENSUSE_64' | 'FEDORA' | 'FEDORA_64' | 'COREOS_64' | 'VMWARE_PHOTON_64' | 'OTHER_24X_LINUX' | 'OTHER_24X_LINUX_64' | 'OTHER_26X_LINUX' | 'OTHER_26X_LINUX_64' | 'OTHER_3X_LINUX' | 'OTHER_3X_LINUX_64' | 'OTHER_LINUX' | 'GENERIC_LINUX' | 'OTHER_LINUX_64' | 'SOLARIS_6' | 'SOLARIS_7' | 'SOLARIS_8' | 'SOLARIS_9' | 'SOLARIS_10' | 'SOLARIS_10_64' | 'SOLARIS_11_64' | 'OS2' | 'ECOMSTATION' | 'ECOMSTATION_2' | 'NETWARE_4' | 'NETWARE_5' | 'NETWARE_6' | 'OPENSERVER_5' | 'OPENSERVER_6' | 'UNIXWARE_7' | 'DARWIN' | 'DARWIN_64' | 'DARWIN_10' | 'DARWIN_10_64' | 'DARWIN_11' | 'DARWIN_11_64' | 'DARWIN_12_64' | 'DARWIN_13_64' | 'DARWIN_14_64' | 'DARWIN_15_64' | 'DARWIN_16_64' | 'VMKERNEL' | 'VMKERNEL_5' | 'VMKERNEL_6' | 'VMKERNEL_65' | 'OTHER' | 'OTHER_64';
5744
6506
  export type GuestPowerStateEnum = 'RUNNING' | 'SHUTTING_DOWN' | 'RESETTING' | 'STANDBY' | 'NOT_RUNNING' | 'UNAVAILABLE';
5745
6507
  export type IpMapping = {
@@ -5902,6 +6664,32 @@ export type ImageUploadResponse = {
5902
6664
  };
5903
6665
  export type ImpactLevelDisplayEnum = 'No impact' | 'Degraded performance' | 'Partial outage' | 'Full outage';
5904
6666
  export type ImpactLevelEnum = 1 | 2 | 3 | 4;
6667
+ export type ImportLicenseRequestRequest = {
6668
+ /**
6669
+ * Arrow license reference (e.g., XSP12345). Will be set as backend_id.
6670
+ */
6671
+ license_reference: string;
6672
+ /**
6673
+ * Name for the new resource. Defaults to license_reference if not provided.
6674
+ */
6675
+ license_name?: string;
6676
+ /**
6677
+ * UUID of the Waldur offering to create the resource under.
6678
+ */
6679
+ offering_uuid: string;
6680
+ /**
6681
+ * UUID of the project to create the resource in.
6682
+ */
6683
+ project_uuid: string;
6684
+ };
6685
+ export type ImportLicenseResponse = {
6686
+ resource_uuid: string;
6687
+ resource_name: string;
6688
+ license_reference: string;
6689
+ offering_name: string;
6690
+ project_name: string;
6691
+ success: boolean;
6692
+ };
5905
6693
  export type ImportPublicationsRequest = {
5906
6694
  /**
5907
6695
  * Source to import publications from
@@ -6293,6 +7081,7 @@ export type InvoiceItemDetail = {
6293
7081
  */
6294
7082
  details?: unknown;
6295
7083
  readonly offering_uuid: string;
7084
+ readonly offering_name: string | null;
6296
7085
  readonly offering_component_type: string | null;
6297
7086
  readonly project_uuid: string | null;
6298
7087
  readonly project_name: string;
@@ -6391,6 +7180,7 @@ export type InvoiceItemUpdateRequest = {
6391
7180
  */
6392
7181
  end?: string;
6393
7182
  };
7183
+ export type InvoicePriceSourceEnum = 'sell' | 'buy';
6394
7184
  export type InvoiceStateEnum = 'pending' | 'created' | 'paid' | 'canceled';
6395
7185
  export type InvoiceStatsOffering = {
6396
7186
  readonly offering_name: string;
@@ -6728,11 +7518,38 @@ export type LexisLinkCreateRequest = {
6728
7518
  export type LexisLinkRequest = {
6729
7519
  heappe_project_id?: number | null;
6730
7520
  };
7521
+ export type LicenseSuggestion = {
7522
+ resource_uuid: string;
7523
+ resource_name: string;
7524
+ license_reference: string;
7525
+ license_name: string;
7526
+ /**
7527
+ * Confidence score (0-1) based on name similarity.
7528
+ */
7529
+ confidence: number;
7530
+ };
6731
7531
  export type LimitPeriodEnum = 'month' | 'quarterly' | 'annual' | 'total';
6732
7532
  export type LimitTypeEnum = 'GrpTRESMins' | 'MaxTRESMins' | 'GrpTRES';
6733
7533
  export type LinkOpenstackRequest = {
6734
7534
  instance: string;
6735
7535
  };
7536
+ export type LinkResourceRequestRequest = {
7537
+ /**
7538
+ * UUID of the Waldur resource to link.
7539
+ */
7540
+ resource_uuid: string;
7541
+ /**
7542
+ * Arrow license reference to set as backend_id (e.g., XSP12345).
7543
+ */
7544
+ license_reference: string;
7545
+ };
7546
+ export type LinkResourceResponse = {
7547
+ resource_uuid: string;
7548
+ resource_name: string;
7549
+ license_reference: string;
7550
+ previous_backend_id: string;
7551
+ success: boolean;
7552
+ };
6736
7553
  export type LinkToInvoice = {
6737
7554
  invoice: string;
6738
7555
  };
@@ -8329,13 +9146,13 @@ export type NestedColumnRequest = {
8329
9146
  export type NestedCustomerUsagePolicyComponent = {
8330
9147
  readonly type: string;
8331
9148
  limit: number;
8332
- period?: PeriodEnum;
9149
+ period?: PolicyPeriodEnum;
8333
9150
  readonly period_name: string;
8334
9151
  component: string;
8335
9152
  };
8336
9153
  export type NestedCustomerUsagePolicyComponentRequest = {
8337
9154
  limit: number;
8338
- period?: PeriodEnum;
9155
+ period?: PolicyPeriodEnum;
8339
9156
  component: string;
8340
9157
  };
8341
9158
  export type NestedEndpoint = {
@@ -9280,7 +10097,7 @@ export type OfferingEstimatedCostPolicy = {
9280
10097
  */
9281
10098
  options?: unknown;
9282
10099
  limit_cost: number;
9283
- period?: PeriodEnum;
10100
+ period?: PolicyPeriodEnum;
9284
10101
  readonly period_name: string;
9285
10102
  organization_groups?: Array<string>;
9286
10103
  /**
@@ -9296,7 +10113,7 @@ export type OfferingEstimatedCostPolicyRequest = {
9296
10113
  */
9297
10114
  options?: unknown;
9298
10115
  limit_cost: number;
9299
- period?: PeriodEnum;
10116
+ period?: PolicyPeriodEnum;
9300
10117
  organization_groups?: Array<string>;
9301
10118
  /**
9302
10119
  * If True, policy applies to all customers. Mutually exclusive with organization_groups.
@@ -9930,7 +10747,7 @@ export type OfferingUsagePolicy = {
9930
10747
  */
9931
10748
  apply_to_all?: boolean;
9932
10749
  component_limits_set: Array<NestedOfferingComponentLimit>;
9933
- period?: PeriodEnum;
10750
+ period?: PolicyPeriodEnum;
9934
10751
  readonly period_name: string;
9935
10752
  };
9936
10753
  export type OfferingUsagePolicyRequest = {
@@ -9946,7 +10763,7 @@ export type OfferingUsagePolicyRequest = {
9946
10763
  */
9947
10764
  apply_to_all?: boolean;
9948
10765
  component_limits_set: Array<NestedOfferingComponentLimitRequest>;
9949
- period?: PeriodEnum;
10766
+ period?: PolicyPeriodEnum;
9950
10767
  };
9951
10768
  export type OfferingUser = {
9952
10769
  readonly url?: string;
@@ -12350,6 +13167,67 @@ export type PatchedAllocationRequest = {
12350
13167
  node_limit?: number;
12351
13168
  groupname?: string | null;
12352
13169
  };
13170
+ export type PatchedArrowCustomerMappingRequest = {
13171
+ settings?: string;
13172
+ /**
13173
+ * Arrow customer ID (e.g., 'XSP661245')
13174
+ */
13175
+ arrow_reference?: string;
13176
+ /**
13177
+ * Arrow company name
13178
+ */
13179
+ arrow_company_name?: string;
13180
+ waldur_customer?: string;
13181
+ /**
13182
+ * Whether this mapping is active
13183
+ */
13184
+ is_active?: boolean;
13185
+ };
13186
+ export type PatchedArrowSettingsRequest = {
13187
+ /**
13188
+ * Arrow API base URL
13189
+ */
13190
+ api_url?: string;
13191
+ /**
13192
+ * Arrow API Key (leave empty on update to keep current)
13193
+ */
13194
+ api_key?: string;
13195
+ /**
13196
+ * Billing export template reference
13197
+ */
13198
+ export_type_reference?: string;
13199
+ /**
13200
+ * Filter for IaaS/SaaS classification
13201
+ */
13202
+ classification_filter?: string;
13203
+ /**
13204
+ * Whether this settings record is active
13205
+ */
13206
+ is_active?: boolean;
13207
+ /**
13208
+ * Whether automatic billing sync is enabled
13209
+ */
13210
+ sync_enabled?: boolean;
13211
+ /**
13212
+ * Which price to use for invoice items: sell or buy
13213
+ */
13214
+ invoice_price_source?: InvoicePriceSourceEnum;
13215
+ };
13216
+ export type PatchedArrowVendorOfferingMappingRequest = {
13217
+ settings?: string;
13218
+ /**
13219
+ * Arrow vendor name (e.g., 'Microsoft', 'Amazon Web Services')
13220
+ */
13221
+ arrow_vendor_name?: string;
13222
+ /**
13223
+ * Waldur marketplace offering for this vendor
13224
+ */
13225
+ offering?: string;
13226
+ /**
13227
+ * Whether this mapping is active
13228
+ */
13229
+ is_active?: boolean;
13230
+ };
12353
13231
  export type PatchedAssignmentBatchRequest = {
12354
13232
  /**
12355
13233
  * Optional notes from call manager to reviewer.
@@ -12600,7 +13478,7 @@ export type PatchedCustomerEstimatedCostPolicyRequest = {
12600
13478
  */
12601
13479
  options?: unknown;
12602
13480
  limit_cost?: number;
12603
- period?: PeriodEnum;
13481
+ period?: PolicyPeriodEnum;
12604
13482
  };
12605
13483
  export type PatchedCustomerRequest = {
12606
13484
  /**
@@ -12949,7 +13827,7 @@ export type PatchedOfferingEstimatedCostPolicyRequest = {
12949
13827
  */
12950
13828
  options?: unknown;
12951
13829
  limit_cost?: number;
12952
- period?: PeriodEnum;
13830
+ period?: PolicyPeriodEnum;
12953
13831
  organization_groups?: Array<string>;
12954
13832
  /**
12955
13833
  * If True, policy applies to all customers. Mutually exclusive with organization_groups.
@@ -13074,7 +13952,7 @@ export type PatchedOfferingUsagePolicyRequest = {
13074
13952
  */
13075
13953
  apply_to_all?: boolean;
13076
13954
  component_limits_set?: Array<NestedOfferingComponentLimitRequest>;
13077
- period?: PeriodEnum;
13955
+ period?: PolicyPeriodEnum;
13078
13956
  };
13079
13957
  export type PatchedOfferingUserAttributeConfigRequest = {
13080
13958
  offering?: string;
@@ -13277,6 +14155,19 @@ export type PatchedProjectCreditRequest = {
13277
14155
  apply_as_minimal_consumption?: boolean;
13278
14156
  mark_unused_credit_as_spent_on_project_termination?: boolean;
13279
14157
  };
14158
+ export type PatchedProjectDigestConfigRequest = {
14159
+ is_enabled?: boolean;
14160
+ frequency?: FrequencyEnum;
14161
+ enabled_sections?: Array<string>;
14162
+ /**
14163
+ * For weekly/biweekly: 0=Sunday..6=Saturday
14164
+ */
14165
+ day_of_week?: number;
14166
+ /**
14167
+ * For monthly: day of month (1-28)
14168
+ */
14169
+ day_of_month?: number;
14170
+ };
13280
14171
  export type PatchedProjectEstimatedCostPolicyRequest = {
13281
14172
  scope?: string;
13282
14173
  actions?: string;
@@ -13285,7 +14176,7 @@ export type PatchedProjectEstimatedCostPolicyRequest = {
13285
14176
  */
13286
14177
  options?: unknown;
13287
14178
  limit_cost?: number;
13288
- period?: PeriodEnum;
14179
+ period?: PolicyPeriodEnum;
13289
14180
  };
13290
14181
  export type PatchedProjectInfoRequest = {
13291
14182
  project?: string;
@@ -13926,7 +14817,7 @@ export type PatchedSlurmPeriodicUsagePolicyRequest = {
13926
14817
  */
13927
14818
  apply_to_all?: boolean;
13928
14819
  component_limits_set?: Array<NestedOfferingComponentLimitRequest>;
13929
- period?: PeriodEnum;
14820
+ period?: PolicyPeriodEnum;
13930
14821
  /**
13931
14822
  * SLURM limit type to apply
13932
14823
  */
@@ -13940,9 +14831,9 @@ export type PatchedSlurmPeriodicUsagePolicyRequest = {
13940
14831
  */
13941
14832
  tres_billing_weights?: unknown;
13942
14833
  /**
13943
- * Fairshare decay half-life in days (matches SLURM PriorityDecayHalfLife)
14834
+ * Maximum percentage of base allocation that can carry over from unused previous period (0-100)
13944
14835
  */
13945
- fairshare_decay_half_life?: number;
14836
+ carryover_factor?: number;
13946
14837
  /**
13947
14838
  * Grace period ratio (0.2 = 20% overconsumption allowed)
13948
14839
  */
@@ -14190,7 +15081,22 @@ export type PaymentUrlRequest = {
14190
15081
  */
14191
15082
  payment_url?: string;
14192
15083
  };
14193
- export type PeriodEnum = 1 | 2 | 3 | 4;
15084
+ export type PendingRecord = {
15085
+ uuid: string;
15086
+ resource_uuid: string;
15087
+ resource_name: string;
15088
+ license_reference: string;
15089
+ billing_period: string;
15090
+ consumed_sell: string;
15091
+ last_sync_at: string | null;
15092
+ };
15093
+ export type PeriodBreakdown = {
15094
+ period: string;
15095
+ count: number;
15096
+ consumed_sell: string;
15097
+ finalized_count: number;
15098
+ reconciled_count: number;
15099
+ };
14194
15100
  export type Permission = {
14195
15101
  readonly user_uuid?: string;
14196
15102
  readonly user_name?: string;
@@ -14356,7 +15262,29 @@ export type PluginOfferingType = {
14356
15262
  available_limits: Array<string>;
14357
15263
  };
14358
15264
  export type PolicyEnum = 'affinity';
15265
+ export type PolicyPeriodEnum = 1 | 2 | 3 | 4;
14359
15266
  export type PolicyTypeEnum = 'access_as_shared' | 'access_as_external';
15267
+ export type PreviewSettingsRequestRequest = {
15268
+ /**
15269
+ * Arrow API base URL
15270
+ */
15271
+ api_url: string;
15272
+ /**
15273
+ * Arrow API Key
15274
+ */
15275
+ api_key: string;
15276
+ export_type_reference?: string;
15277
+ classification_filter?: string;
15278
+ sync_enabled?: boolean;
15279
+ };
15280
+ export type PreviewSettingsResponse = {
15281
+ api_url: string;
15282
+ partner_name: string;
15283
+ partner_reference: string;
15284
+ export_type_reference: string;
15285
+ classification_filter: string;
15286
+ sync_enabled: boolean;
15287
+ };
14360
15288
  export type PricesUpdateRequest = {
14361
15289
  prices: {
14362
15290
  [key: string]: string;
@@ -14570,6 +15498,45 @@ export type ProjectDetailsResponse = {
14570
15498
  readonly projects_requiring_review: number;
14571
15499
  readonly project_details: Array<ProjectDetail>;
14572
15500
  };
15501
+ export type ProjectDigestConfig = {
15502
+ readonly uuid: string;
15503
+ is_enabled?: boolean;
15504
+ frequency?: FrequencyEnum;
15505
+ enabled_sections?: Array<string>;
15506
+ /**
15507
+ * For weekly/biweekly: 0=Sunday..6=Saturday
15508
+ */
15509
+ day_of_week?: number;
15510
+ /**
15511
+ * For monthly: day of month (1-28)
15512
+ */
15513
+ day_of_month?: number;
15514
+ readonly last_sent_at: string | null;
15515
+ readonly available_sections: Array<{
15516
+ [key: string]: string;
15517
+ }>;
15518
+ };
15519
+ export type ProjectDigestConfigRequest = {
15520
+ is_enabled?: boolean;
15521
+ frequency?: FrequencyEnum;
15522
+ enabled_sections?: Array<string>;
15523
+ /**
15524
+ * For weekly/biweekly: 0=Sunday..6=Saturday
15525
+ */
15526
+ day_of_week?: number;
15527
+ /**
15528
+ * For monthly: day of month (1-28)
15529
+ */
15530
+ day_of_month?: number;
15531
+ };
15532
+ export type ProjectDigestPreviewRequest = {
15533
+ project_uuid: string;
15534
+ };
15535
+ export type ProjectDigestPreviewResponse = {
15536
+ subject: string;
15537
+ html_body: string;
15538
+ text_body: string;
15539
+ };
14573
15540
  export type ProjectEstimatedCostPolicy = {
14574
15541
  readonly uuid: string;
14575
15542
  readonly url: string;
@@ -14587,7 +15554,7 @@ export type ProjectEstimatedCostPolicy = {
14587
15554
  */
14588
15555
  options?: unknown;
14589
15556
  limit_cost: number;
14590
- period?: PeriodEnum;
15557
+ period?: PolicyPeriodEnum;
14591
15558
  readonly period_name: string;
14592
15559
  readonly project_credit: number | null;
14593
15560
  readonly customer_credit: number | null;
@@ -14601,7 +15568,7 @@ export type ProjectEstimatedCostPolicyRequest = {
14601
15568
  */
14602
15569
  options?: unknown;
14603
15570
  limit_cost: number;
14604
- period?: PeriodEnum;
15571
+ period?: PolicyPeriodEnum;
14605
15572
  };
14606
15573
  export type ProjectHyperlinkRequest = {
14607
15574
  url: string;
@@ -15933,9 +16900,15 @@ export type PubsubOverview = {
15933
16900
  */
15934
16901
  readonly last_updated: string;
15935
16902
  };
16903
+ export type PullConflictResponse = {
16904
+ detail: string;
16905
+ };
15936
16906
  export type PullMarketplaceScriptResourceRequest = {
15937
16907
  resource_uuid: string;
15938
16908
  };
16909
+ export type PullResponse = {
16910
+ detail: string;
16911
+ };
15939
16912
  export type QosStrategyEnum = 'threshold' | 'progressive';
15940
16913
  export type QueryPerformance = {
15941
16914
  /**
@@ -17141,6 +18114,15 @@ export type ReassignItemResponse = {
17141
18114
  new_item_uuid: string;
17142
18115
  new_batch_uuid: string;
17143
18116
  };
18117
+ export type ReconcileRequestRequest = {
18118
+ year: number;
18119
+ month: number;
18120
+ settings_uuid?: string;
18121
+ /**
18122
+ * Force reconciliation even if not validated
18123
+ */
18124
+ force?: boolean;
18125
+ };
17144
18126
  export type ReferenceNumberRequest = {
17145
18127
  /**
17146
18128
  * Reference number associated with the invoice.
@@ -19102,6 +20084,12 @@ export type RoundReviewer = {
19102
20084
  in_review_proposals: number;
19103
20085
  };
19104
20086
  export type RoundStatus = 'scheduled' | 'open' | 'ended';
20087
+ export type RouterSetErredResponse = {
20088
+ detail: string;
20089
+ };
20090
+ export type RouterSetOkResponse = {
20091
+ detail: string;
20092
+ };
19105
20093
  export type Rule = {
19106
20094
  name: string;
19107
20095
  readonly uuid: string;
@@ -19178,6 +20166,28 @@ export type Saml2Provider = {
19178
20166
  name: string;
19179
20167
  url: string;
19180
20168
  };
20169
+ export type SaveSettingsRequestRequest = {
20170
+ /**
20171
+ * Arrow API base URL
20172
+ */
20173
+ api_url: string;
20174
+ /**
20175
+ * Arrow API Key
20176
+ */
20177
+ api_key: string;
20178
+ export_type_reference?: string;
20179
+ classification_filter?: string;
20180
+ sync_enabled?: boolean;
20181
+ customer_mappings?: Array<CustomerMappingInputRequest>;
20182
+ };
20183
+ export type SaveSettingsResponse = {
20184
+ settings_uuid: string;
20185
+ mappings_created: number;
20186
+ message: string;
20187
+ };
20188
+ export type ScimSyncAllResponse = {
20189
+ detail: string;
20190
+ };
19181
20191
  export type Screenshot = {
19182
20192
  readonly url: string;
19183
20193
  readonly uuid: string;
@@ -19407,6 +20417,13 @@ export type ServiceSettings = {
19407
20417
  };
19408
20418
  };
19409
20419
  export type ServiceSettingsStateEnum = 'CREATION_SCHEDULED' | 'CREATING' | 'UPDATE_SCHEDULED' | 'UPDATING' | 'DELETION_SCHEDULED' | 'DELETING' | 'OK' | 'ERRED';
20420
+ export type SetErredRequest = {
20421
+ error_message?: string;
20422
+ error_traceback?: string;
20423
+ };
20424
+ export type SetErredResponse = {
20425
+ detail: string;
20426
+ };
19410
20427
  export type SetMtu = {
19411
20428
  mtu: number;
19412
20429
  };
@@ -19423,6 +20440,9 @@ export type SetOfferingsUsernameRequest = {
19423
20440
  */
19424
20441
  username: string;
19425
20442
  };
20443
+ export type SetOkResponse = {
20444
+ detail: string;
20445
+ };
19426
20446
  export type SetTokenQuotaRequest = {
19427
20447
  /**
19428
20448
  * UUID of the user to set quota for.
@@ -19626,6 +20646,10 @@ export type SlurmCommandResultRequest = {
19626
20646
  * Execution mode of the command
19627
20647
  */
19628
20648
  mode?: ModeEnum;
20649
+ /**
20650
+ * List of shell commands actually executed by the site agent
20651
+ */
20652
+ commands_executed?: Array<string>;
19629
20653
  };
19630
20654
  export type SlurmPeriodicUsagePolicy = {
19631
20655
  readonly uuid: string;
@@ -19649,7 +20673,7 @@ export type SlurmPeriodicUsagePolicy = {
19649
20673
  */
19650
20674
  apply_to_all?: boolean;
19651
20675
  component_limits_set: Array<NestedOfferingComponentLimit>;
19652
- period?: PeriodEnum;
20676
+ period?: PolicyPeriodEnum;
19653
20677
  readonly period_name: string;
19654
20678
  /**
19655
20679
  * SLURM limit type to apply
@@ -19664,9 +20688,9 @@ export type SlurmPeriodicUsagePolicy = {
19664
20688
  */
19665
20689
  tres_billing_weights?: unknown;
19666
20690
  /**
19667
- * Fairshare decay half-life in days (matches SLURM PriorityDecayHalfLife)
20691
+ * Maximum percentage of base allocation that can carry over from unused previous period (0-100)
19668
20692
  */
19669
- fairshare_decay_half_life?: number;
20693
+ carryover_factor?: number;
19670
20694
  /**
19671
20695
  * Grace period ratio (0.2 = 20% overconsumption allowed)
19672
20696
  */
@@ -19697,7 +20721,7 @@ export type SlurmPeriodicUsagePolicyRequest = {
19697
20721
  */
19698
20722
  apply_to_all?: boolean;
19699
20723
  component_limits_set: Array<NestedOfferingComponentLimitRequest>;
19700
- period?: PeriodEnum;
20724
+ period?: PolicyPeriodEnum;
19701
20725
  /**
19702
20726
  * SLURM limit type to apply
19703
20727
  */
@@ -19711,9 +20735,9 @@ export type SlurmPeriodicUsagePolicyRequest = {
19711
20735
  */
19712
20736
  tres_billing_weights?: unknown;
19713
20737
  /**
19714
- * Fairshare decay half-life in days (matches SLURM PriorityDecayHalfLife)
20738
+ * Maximum percentage of base allocation that can carry over from unused previous period (0-100)
19715
20739
  */
19716
- fairshare_decay_half_life?: number;
20740
+ carryover_factor?: number;
19717
20741
  /**
19718
20742
  * Grace period ratio (0.2 = 20% overconsumption allowed)
19719
20743
  */
@@ -19733,12 +20757,11 @@ export type SlurmPeriodicUsagePolicyRequest = {
19733
20757
  };
19734
20758
  export type SlurmPolicyCarryover = {
19735
20759
  previous_usage: number;
19736
- days_elapsed: number;
19737
- half_life: number;
19738
- decay_factor: number;
19739
- effective_usage: number;
20760
+ carryover_factor: number;
19740
20761
  base_allocation: number;
19741
- unused_carryover: number;
20762
+ unused: number;
20763
+ carryover_cap: number;
20764
+ carryover: number;
19742
20765
  total_allocation: number;
19743
20766
  };
19744
20767
  export type SlurmPolicyDateProjection = {
@@ -19848,17 +20871,13 @@ export type SlurmPolicyPreviewRequestRequest = {
19848
20871
  */
19849
20872
  previous_usage?: number;
19850
20873
  /**
19851
- * Decay half-life in days for fairshare calculations
20874
+ * Maximum percentage of base allocation that can carry over (0-100)
19852
20875
  */
19853
- fairshare_decay_half_life?: number;
20876
+ carryover_factor?: number;
19854
20877
  /**
19855
20878
  * Whether unused allocation carries over to next period
19856
20879
  */
19857
20880
  carryover_enabled?: boolean;
19858
- /**
19859
- * Days elapsed since previous period (90 for quarterly)
19860
- */
19861
- days_elapsed?: number;
19862
20881
  /**
19863
20882
  * Optional resource UUID to use for current usage data
19864
20883
  */
@@ -19879,7 +20898,7 @@ export type SlurmPolicyPreviewResponse = {
19879
20898
  carryover: SlurmPolicyCarryover | null;
19880
20899
  thresholds: SlurmPolicyThresholds;
19881
20900
  grace_ratio: number;
19882
- half_life: number;
20901
+ carryover_factor: number;
19883
20902
  current_usage?: number;
19884
20903
  daily_usage_rate?: number;
19885
20904
  usage_percentage?: number;
@@ -20211,7 +21230,102 @@ export type SupportUser = {
20211
21230
  export type SupportedCountriesResponse = {
20212
21231
  supported_countries: Array<string>;
20213
21232
  };
21233
+ export type SyncFromArrowRequestRequest = {
21234
+ settings_uuid?: string;
21235
+ };
21236
+ export type SyncPauseRequestRequest = {
21237
+ settings_uuid?: string;
21238
+ pause_global?: boolean;
21239
+ };
21240
+ export type SyncPauseResponse = {
21241
+ /**
21242
+ * List of paused items
21243
+ */
21244
+ paused?: Array<string>;
21245
+ /**
21246
+ * List of resumed items
21247
+ */
21248
+ resumed?: Array<string>;
21249
+ };
21250
+ export type SyncResourceHistoricalConsumptionRequestRequest = {
21251
+ /**
21252
+ * UUID of the resource to sync
21253
+ */
21254
+ resource_uuid: string;
21255
+ /**
21256
+ * Start period in YYYY-MM format. Defaults to 12 months ago.
21257
+ */
21258
+ period_from?: string;
21259
+ /**
21260
+ * End period in YYYY-MM format. Defaults to current month.
21261
+ */
21262
+ period_to?: string;
21263
+ };
21264
+ export type SyncResourceHistoricalConsumptionResponse = {
21265
+ resource_uuid: string;
21266
+ resource_name: string;
21267
+ periods_synced: number;
21268
+ periods_skipped: number;
21269
+ errors: Array<{
21270
+ [key: string]: unknown;
21271
+ }>;
21272
+ };
21273
+ export type SyncResourcesRequestRequest = {
21274
+ /**
21275
+ * Start period in YYYY-MM format (default: 6 months ago, Arrow max)
21276
+ */
21277
+ period_from?: string;
21278
+ /**
21279
+ * End period in YYYY-MM format (default: current month)
21280
+ */
21281
+ period_to?: string;
21282
+ settings_uuid?: string;
21283
+ /**
21284
+ * Offering UUID for creating new resources
21285
+ */
21286
+ offering_uuid?: string;
21287
+ /**
21288
+ * Project UUID for creating new resources (ignored if force_import=True)
21289
+ */
21290
+ project_uuid?: string;
21291
+ /**
21292
+ * If True, auto-create Waldur Customers and Projects from Arrow data. Each Arrow customer gets a Waldur Customer with an 'Arrow Azure Subscriptions' project.
21293
+ */
21294
+ force_import?: boolean;
21295
+ };
21296
+ export type SyncResourcesResponse = {
21297
+ synced: number;
21298
+ created: number;
21299
+ updated: number;
21300
+ orders_created?: number;
21301
+ customers_created?: number;
21302
+ projects_created?: number;
21303
+ mappings_created?: number;
21304
+ invoices_created?: number;
21305
+ invoice_items_created?: number;
21306
+ errors?: Array<{
21307
+ [key: string]: unknown;
21308
+ }>;
21309
+ };
20214
21310
  export type SyncStatusEnum = 'in_sync' | 'out_of_sync' | 'sync_failed';
21311
+ export type TableGrowthAlert = {
21312
+ /**
21313
+ * Name of the table triggering the alert
21314
+ */
21315
+ table_name: string;
21316
+ /**
21317
+ * Growth period that exceeded the threshold
21318
+ */
21319
+ period: GrowthPeriodEnum;
21320
+ /**
21321
+ * Actual growth percentage observed
21322
+ */
21323
+ growth_percent: number;
21324
+ /**
21325
+ * Configured threshold that was exceeded
21326
+ */
21327
+ threshold: number;
21328
+ };
20215
21329
  export type TableGrowthStats = {
20216
21330
  /**
20217
21331
  * Name of the database table
@@ -20279,6 +21393,10 @@ export type TableGrowthStatsResponse = {
20279
21393
  * Table growth statistics sorted by growth rate
20280
21394
  */
20281
21395
  tables: Array<TableGrowthStats>;
21396
+ /**
21397
+ * List of tables that exceeded configured growth thresholds
21398
+ */
21399
+ alerts: Array<TableGrowthAlert>;
20282
21400
  };
20283
21401
  export type TableSize = {
20284
21402
  /**
@@ -20522,6 +21640,20 @@ export type TriggerCoiDetectionJobTypeEnum = 'full_call' | 'incremental';
20522
21640
  export type TriggerCoiDetectionRequest = {
20523
21641
  job_type?: TriggerCoiDetectionJobTypeEnum;
20524
21642
  };
21643
+ export type TriggerConsumptionSyncRequestRequest = {
21644
+ year: number;
21645
+ month: number;
21646
+ settings_uuid?: string;
21647
+ /**
21648
+ * Sync specific resource only
21649
+ */
21650
+ resource_uuid?: string;
21651
+ };
21652
+ export type TriggerSyncRequestRequest = {
21653
+ year: number;
21654
+ month: number;
21655
+ settings_uuid?: string;
21656
+ };
20525
21657
  export type UnsilenceActionResponse = {
20526
21658
  status: string;
20527
21659
  };
@@ -21080,6 +22212,10 @@ export type UserRoleUpdateRequest = {
21080
22212
  export type UsernameGenerationPolicyEnum = 'service_provider' | 'anonymized' | 'full_name' | 'waldur_username' | 'freeipa' | 'identity_claim';
21081
22213
  export type ValidationDecisionEnum = 'approved' | 'rejected' | 'pending';
21082
22214
  export type ValidationMethodEnum = 'ariregister' | 'wirtschaftscompass' | 'bolagsverket' | 'breg';
22215
+ export type VendorNameChoice = {
22216
+ value: string;
22217
+ label: string;
22218
+ };
21083
22219
  export type VenueTypeEnum = 'journal' | 'conference' | 'preprint' | 'book' | 'thesis' | 'report' | 'other';
21084
22220
  export type Version = {
21085
22221
  /**
@@ -21507,6 +22643,11 @@ export type VolumeTypeMappingRequest = {
21507
22643
  src_type_uuid: string;
21508
22644
  dst_type_uuid: string;
21509
22645
  };
22646
+ export type WaldurCustomerBrief = {
22647
+ uuid: string;
22648
+ name: string;
22649
+ abbreviation?: string;
22650
+ };
21510
22651
  export type WaldurFieldSuggestion = {
21511
22652
  /**
21512
22653
  * Waldur User model field name
@@ -21525,6 +22666,17 @@ export type WaldurFieldSuggestion = {
21525
22666
  */
21526
22667
  available_claims: Array<string>;
21527
22668
  };
22669
+ export type WaldurResourceForLinking = {
22670
+ uuid: string;
22671
+ name: string;
22672
+ /**
22673
+ * Current backend_id (Arrow license reference if linked).
22674
+ */
22675
+ backend_id: string;
22676
+ project_name: string;
22677
+ offering_name: string;
22678
+ state: string;
22679
+ };
21528
22680
  export type WebHook = {
21529
22681
  readonly url: string;
21530
22682
  readonly uuid: string;
@@ -22727,6 +23879,10 @@ export type ConstanceSettingsRequestForm = {
22727
23879
  FREEIPA_GROUPNAME_PREFIX?: string;
22728
23880
  FREEIPA_BLACKLISTED_USERNAMES?: Array<string>;
22729
23881
  FREEIPA_GROUP_SYNCHRONIZATION_ENABLED?: boolean;
23882
+ SCIM_MEMBERSHIP_SYNC_ENABLED?: boolean;
23883
+ SCIM_API_URL?: string;
23884
+ SCIM_API_KEY?: string;
23885
+ SCIM_URN_NAMESPACE?: string;
22730
23886
  KEYCLOAK_ICON?: (Blob | File) | null;
22731
23887
  COUNTRIES?: Array<string>;
22732
23888
  OIDC_AUTH_URL?: string;
@@ -22793,6 +23949,11 @@ export type ConstanceSettingsRequestForm = {
22793
23949
  USER_DATA_ACCESS_LOGGING_ENABLED?: boolean;
22794
23950
  USER_DATA_ACCESS_LOG_RETENTION_DAYS?: number;
22795
23951
  USER_DATA_ACCESS_LOG_SELF_ACCESS?: boolean;
23952
+ ARROW_AUTO_RECONCILIATION?: boolean;
23953
+ ARROW_SYNC_INTERVAL_HOURS?: number;
23954
+ ARROW_CONSUMPTION_SYNC_ENABLED?: boolean;
23955
+ ARROW_CONSUMPTION_SYNC_INTERVAL_HOURS?: number;
23956
+ ARROW_BILLING_CHECK_INTERVAL_HOURS?: number;
22796
23957
  SLURM_POLICY_EVALUATION_LOG_RETENTION_DAYS?: number;
22797
23958
  };
22798
23959
  export type ConstanceSettingsRequestMultipart = {
@@ -22944,6 +24105,10 @@ export type ConstanceSettingsRequestMultipart = {
22944
24105
  FREEIPA_GROUPNAME_PREFIX?: string;
22945
24106
  FREEIPA_BLACKLISTED_USERNAMES?: Array<string>;
22946
24107
  FREEIPA_GROUP_SYNCHRONIZATION_ENABLED?: boolean;
24108
+ SCIM_MEMBERSHIP_SYNC_ENABLED?: boolean;
24109
+ SCIM_API_URL?: string;
24110
+ SCIM_API_KEY?: string;
24111
+ SCIM_URN_NAMESPACE?: string;
22947
24112
  KEYCLOAK_ICON?: (Blob | File) | null;
22948
24113
  COUNTRIES?: Array<string>;
22949
24114
  OIDC_AUTH_URL?: string;
@@ -23010,6 +24175,11 @@ export type ConstanceSettingsRequestMultipart = {
23010
24175
  USER_DATA_ACCESS_LOGGING_ENABLED?: boolean;
23011
24176
  USER_DATA_ACCESS_LOG_RETENTION_DAYS?: number;
23012
24177
  USER_DATA_ACCESS_LOG_SELF_ACCESS?: boolean;
24178
+ ARROW_AUTO_RECONCILIATION?: boolean;
24179
+ ARROW_SYNC_INTERVAL_HOURS?: number;
24180
+ ARROW_CONSUMPTION_SYNC_ENABLED?: boolean;
24181
+ ARROW_CONSUMPTION_SYNC_INTERVAL_HOURS?: number;
24182
+ ARROW_BILLING_CHECK_INTERVAL_HOURS?: number;
23013
24183
  SLURM_POLICY_EVALUATION_LOG_RETENTION_DAYS?: number;
23014
24184
  };
23015
24185
  export type PaymentRequestForm = {
@@ -23822,6 +24992,965 @@ export type AdminAnnouncementsUpdateResponses = {
23822
24992
  200: AdminAnnouncement;
23823
24993
  };
23824
24994
  export type AdminAnnouncementsUpdateResponse = AdminAnnouncementsUpdateResponses[keyof AdminAnnouncementsUpdateResponses];
24995
+ export type AdminArrowBillingSyncItemsListData = {
24996
+ body?: never;
24997
+ path?: never;
24998
+ query?: {
24999
+ arrow_line_reference?: string;
25000
+ billing_sync?: string;
25001
+ billing_sync_uuid?: string;
25002
+ classification?: string;
25003
+ has_compensation?: boolean;
25004
+ /**
25005
+ * A page number within the paginated result set.
25006
+ */
25007
+ page?: number;
25008
+ /**
25009
+ * Number of results to return per page.
25010
+ */
25011
+ page_size?: number;
25012
+ report_period?: string;
25013
+ subscription_reference?: string;
25014
+ vendor_name?: string;
25015
+ };
25016
+ url: '/api/admin/arrow/billing-sync-items/';
25017
+ };
25018
+ export type AdminArrowBillingSyncItemsListResponses = {
25019
+ 200: Array<ArrowBillingSyncItemDetail>;
25020
+ };
25021
+ export type AdminArrowBillingSyncItemsListResponse = AdminArrowBillingSyncItemsListResponses[keyof AdminArrowBillingSyncItemsListResponses];
25022
+ export type AdminArrowBillingSyncItemsCountData = {
25023
+ body?: never;
25024
+ path?: never;
25025
+ query?: {
25026
+ arrow_line_reference?: string;
25027
+ billing_sync?: string;
25028
+ billing_sync_uuid?: string;
25029
+ classification?: string;
25030
+ has_compensation?: boolean;
25031
+ /**
25032
+ * A page number within the paginated result set.
25033
+ */
25034
+ page?: number;
25035
+ /**
25036
+ * Number of results to return per page.
25037
+ */
25038
+ page_size?: number;
25039
+ report_period?: string;
25040
+ subscription_reference?: string;
25041
+ vendor_name?: string;
25042
+ };
25043
+ url: '/api/admin/arrow/billing-sync-items/';
25044
+ };
25045
+ export type AdminArrowBillingSyncItemsCountResponses = {
25046
+ /**
25047
+ * No response body
25048
+ */
25049
+ 200: unknown;
25050
+ };
25051
+ export type AdminArrowBillingSyncItemsRetrieveData = {
25052
+ body?: never;
25053
+ path: {
25054
+ uuid: string;
25055
+ };
25056
+ query?: never;
25057
+ url: '/api/admin/arrow/billing-sync-items/{uuid}/';
25058
+ };
25059
+ export type AdminArrowBillingSyncItemsRetrieveResponses = {
25060
+ 200: ArrowBillingSyncItemDetail;
25061
+ };
25062
+ export type AdminArrowBillingSyncItemsRetrieveResponse = AdminArrowBillingSyncItemsRetrieveResponses[keyof AdminArrowBillingSyncItemsRetrieveResponses];
25063
+ export type AdminArrowBillingSyncsListData = {
25064
+ body?: never;
25065
+ path?: never;
25066
+ query?: {
25067
+ arrow_state?: string;
25068
+ customer_mapping?: string;
25069
+ customer_mapping_uuid?: string;
25070
+ /**
25071
+ * A page number within the paginated result set.
25072
+ */
25073
+ page?: number;
25074
+ /**
25075
+ * Number of results to return per page.
25076
+ */
25077
+ page_size?: number;
25078
+ report_period?: string;
25079
+ report_period_from?: string;
25080
+ report_period_to?: string;
25081
+ settings_uuid?: string;
25082
+ state?: number;
25083
+ statement_reference?: string;
25084
+ };
25085
+ url: '/api/admin/arrow/billing-syncs/';
25086
+ };
25087
+ export type AdminArrowBillingSyncsListResponses = {
25088
+ 200: Array<ArrowBillingSync>;
25089
+ };
25090
+ export type AdminArrowBillingSyncsListResponse = AdminArrowBillingSyncsListResponses[keyof AdminArrowBillingSyncsListResponses];
25091
+ export type AdminArrowBillingSyncsCountData = {
25092
+ body?: never;
25093
+ path?: never;
25094
+ query?: {
25095
+ arrow_state?: string;
25096
+ customer_mapping?: string;
25097
+ customer_mapping_uuid?: string;
25098
+ /**
25099
+ * A page number within the paginated result set.
25100
+ */
25101
+ page?: number;
25102
+ /**
25103
+ * Number of results to return per page.
25104
+ */
25105
+ page_size?: number;
25106
+ report_period?: string;
25107
+ report_period_from?: string;
25108
+ report_period_to?: string;
25109
+ settings_uuid?: string;
25110
+ state?: number;
25111
+ statement_reference?: string;
25112
+ };
25113
+ url: '/api/admin/arrow/billing-syncs/';
25114
+ };
25115
+ export type AdminArrowBillingSyncsCountResponses = {
25116
+ /**
25117
+ * No response body
25118
+ */
25119
+ 200: unknown;
25120
+ };
25121
+ export type AdminArrowBillingSyncsRetrieveData = {
25122
+ body?: never;
25123
+ path: {
25124
+ uuid: string;
25125
+ };
25126
+ query?: never;
25127
+ url: '/api/admin/arrow/billing-syncs/{uuid}/';
25128
+ };
25129
+ export type AdminArrowBillingSyncsRetrieveResponses = {
25130
+ 200: ArrowBillingSync;
25131
+ };
25132
+ export type AdminArrowBillingSyncsRetrieveResponse = AdminArrowBillingSyncsRetrieveResponses[keyof AdminArrowBillingSyncsRetrieveResponses];
25133
+ export type AdminArrowBillingSyncsCleanupConsumptionData = {
25134
+ body?: CleanupConsumptionRequestRequest;
25135
+ path?: never;
25136
+ query?: never;
25137
+ url: '/api/admin/arrow/billing-syncs/cleanup_consumption/';
25138
+ };
25139
+ export type AdminArrowBillingSyncsCleanupConsumptionResponses = {
25140
+ 200: CleanupConsumptionResponse;
25141
+ };
25142
+ export type AdminArrowBillingSyncsCleanupConsumptionResponse = AdminArrowBillingSyncsCleanupConsumptionResponses[keyof AdminArrowBillingSyncsCleanupConsumptionResponses];
25143
+ export type AdminArrowBillingSyncsConsumptionStatisticsRetrieveData = {
25144
+ body?: never;
25145
+ path?: never;
25146
+ query?: never;
25147
+ url: '/api/admin/arrow/billing-syncs/consumption_statistics/';
25148
+ };
25149
+ export type AdminArrowBillingSyncsConsumptionStatisticsRetrieveResponses = {
25150
+ 200: ConsumptionStatisticsResponse;
25151
+ };
25152
+ export type AdminArrowBillingSyncsConsumptionStatisticsRetrieveResponse = AdminArrowBillingSyncsConsumptionStatisticsRetrieveResponses[keyof AdminArrowBillingSyncsConsumptionStatisticsRetrieveResponses];
25153
+ export type AdminArrowBillingSyncsConsumptionStatisticsCountData = {
25154
+ body?: never;
25155
+ path?: never;
25156
+ query?: never;
25157
+ url: '/api/admin/arrow/billing-syncs/consumption_statistics/';
25158
+ };
25159
+ export type AdminArrowBillingSyncsConsumptionStatisticsCountResponses = {
25160
+ /**
25161
+ * No response body
25162
+ */
25163
+ 200: unknown;
25164
+ };
25165
+ export type AdminArrowBillingSyncsConsumptionStatusRetrieveData = {
25166
+ body?: never;
25167
+ path?: never;
25168
+ query?: never;
25169
+ url: '/api/admin/arrow/billing-syncs/consumption_status/';
25170
+ };
25171
+ export type AdminArrowBillingSyncsConsumptionStatusRetrieveResponses = {
25172
+ 200: ConsumptionStatusResponse;
25173
+ };
25174
+ export type AdminArrowBillingSyncsConsumptionStatusRetrieveResponse = AdminArrowBillingSyncsConsumptionStatusRetrieveResponses[keyof AdminArrowBillingSyncsConsumptionStatusRetrieveResponses];
25175
+ export type AdminArrowBillingSyncsConsumptionStatusCountData = {
25176
+ body?: never;
25177
+ path?: never;
25178
+ query?: never;
25179
+ url: '/api/admin/arrow/billing-syncs/consumption_status/';
25180
+ };
25181
+ export type AdminArrowBillingSyncsConsumptionStatusCountResponses = {
25182
+ /**
25183
+ * No response body
25184
+ */
25185
+ 200: unknown;
25186
+ };
25187
+ export type AdminArrowBillingSyncsFetchBillingExportData = {
25188
+ body: FetchBillingExportRequestRequest;
25189
+ path?: never;
25190
+ query?: never;
25191
+ url: '/api/admin/arrow/billing-syncs/fetch_billing_export/';
25192
+ };
25193
+ export type AdminArrowBillingSyncsFetchBillingExportResponses = {
25194
+ 200: FetchBillingExportResponse;
25195
+ };
25196
+ export type AdminArrowBillingSyncsFetchBillingExportResponse = AdminArrowBillingSyncsFetchBillingExportResponses[keyof AdminArrowBillingSyncsFetchBillingExportResponses];
25197
+ export type AdminArrowBillingSyncsFetchConsumptionData = {
25198
+ body: FetchConsumptionRequestRequest;
25199
+ path?: never;
25200
+ query?: never;
25201
+ url: '/api/admin/arrow/billing-syncs/fetch_consumption/';
25202
+ };
25203
+ export type AdminArrowBillingSyncsFetchConsumptionResponses = {
25204
+ 200: FetchConsumptionResponse;
25205
+ };
25206
+ export type AdminArrowBillingSyncsFetchConsumptionResponse = AdminArrowBillingSyncsFetchConsumptionResponses[keyof AdminArrowBillingSyncsFetchConsumptionResponses];
25207
+ export type AdminArrowBillingSyncsFetchLicenseInfoData = {
25208
+ body: FetchLicenseInfoRequestRequest;
25209
+ path?: never;
25210
+ query?: never;
25211
+ url: '/api/admin/arrow/billing-syncs/fetch_license_info/';
25212
+ };
25213
+ export type AdminArrowBillingSyncsFetchLicenseInfoResponses = {
25214
+ 200: FetchLicenseInfoResponse;
25215
+ };
25216
+ export type AdminArrowBillingSyncsFetchLicenseInfoResponse = AdminArrowBillingSyncsFetchLicenseInfoResponses[keyof AdminArrowBillingSyncsFetchLicenseInfoResponses];
25217
+ export type AdminArrowBillingSyncsPauseSyncData = {
25218
+ body?: SyncPauseRequestRequest;
25219
+ path?: never;
25220
+ query?: never;
25221
+ url: '/api/admin/arrow/billing-syncs/pause_sync/';
25222
+ };
25223
+ export type AdminArrowBillingSyncsPauseSyncResponses = {
25224
+ 200: SyncPauseResponse;
25225
+ };
25226
+ export type AdminArrowBillingSyncsPauseSyncResponse = AdminArrowBillingSyncsPauseSyncResponses[keyof AdminArrowBillingSyncsPauseSyncResponses];
25227
+ export type AdminArrowBillingSyncsPendingRecordsListData = {
25228
+ body?: never;
25229
+ path?: never;
25230
+ query?: {
25231
+ arrow_state?: string;
25232
+ customer_mapping?: string;
25233
+ customer_mapping_uuid?: string;
25234
+ /**
25235
+ * A page number within the paginated result set.
25236
+ */
25237
+ page?: number;
25238
+ /**
25239
+ * Number of results to return per page.
25240
+ */
25241
+ page_size?: number;
25242
+ report_period?: string;
25243
+ report_period_from?: string;
25244
+ report_period_to?: string;
25245
+ settings_uuid?: string;
25246
+ state?: number;
25247
+ statement_reference?: string;
25248
+ };
25249
+ url: '/api/admin/arrow/billing-syncs/pending_records/';
25250
+ };
25251
+ export type AdminArrowBillingSyncsPendingRecordsListResponses = {
25252
+ 200: Array<PendingRecord>;
25253
+ };
25254
+ export type AdminArrowBillingSyncsPendingRecordsListResponse = AdminArrowBillingSyncsPendingRecordsListResponses[keyof AdminArrowBillingSyncsPendingRecordsListResponses];
25255
+ export type AdminArrowBillingSyncsPendingRecordsCountData = {
25256
+ body?: never;
25257
+ path?: never;
25258
+ query?: {
25259
+ arrow_state?: string;
25260
+ customer_mapping?: string;
25261
+ customer_mapping_uuid?: string;
25262
+ /**
25263
+ * A page number within the paginated result set.
25264
+ */
25265
+ page?: number;
25266
+ /**
25267
+ * Number of results to return per page.
25268
+ */
25269
+ page_size?: number;
25270
+ report_period?: string;
25271
+ report_period_from?: string;
25272
+ report_period_to?: string;
25273
+ settings_uuid?: string;
25274
+ state?: number;
25275
+ statement_reference?: string;
25276
+ };
25277
+ url: '/api/admin/arrow/billing-syncs/pending_records/';
25278
+ };
25279
+ export type AdminArrowBillingSyncsPendingRecordsCountResponses = {
25280
+ /**
25281
+ * No response body
25282
+ */
25283
+ 200: unknown;
25284
+ };
25285
+ export type AdminArrowBillingSyncsReconcileData = {
25286
+ body: ReconcileRequestRequest;
25287
+ path?: never;
25288
+ query?: never;
25289
+ url: '/api/admin/arrow/billing-syncs/reconcile/';
25290
+ };
25291
+ export type AdminArrowBillingSyncsReconcileResponses = {
25292
+ /**
25293
+ * No response body
25294
+ */
25295
+ 202: unknown;
25296
+ };
25297
+ export type AdminArrowBillingSyncsResumeSyncData = {
25298
+ body?: SyncPauseRequestRequest;
25299
+ path?: never;
25300
+ query?: never;
25301
+ url: '/api/admin/arrow/billing-syncs/resume_sync/';
25302
+ };
25303
+ export type AdminArrowBillingSyncsResumeSyncResponses = {
25304
+ 200: SyncPauseResponse;
25305
+ };
25306
+ export type AdminArrowBillingSyncsResumeSyncResponse = AdminArrowBillingSyncsResumeSyncResponses[keyof AdminArrowBillingSyncsResumeSyncResponses];
25307
+ export type AdminArrowBillingSyncsSyncResourceHistoricalConsumptionData = {
25308
+ body: SyncResourceHistoricalConsumptionRequestRequest;
25309
+ path?: never;
25310
+ query?: never;
25311
+ url: '/api/admin/arrow/billing-syncs/sync_resource_historical_consumption/';
25312
+ };
25313
+ export type AdminArrowBillingSyncsSyncResourceHistoricalConsumptionResponses = {
25314
+ 200: SyncResourceHistoricalConsumptionResponse;
25315
+ };
25316
+ export type AdminArrowBillingSyncsSyncResourceHistoricalConsumptionResponse = AdminArrowBillingSyncsSyncResourceHistoricalConsumptionResponses[keyof AdminArrowBillingSyncsSyncResourceHistoricalConsumptionResponses];
25317
+ export type AdminArrowBillingSyncsSyncResourcesData = {
25318
+ body?: SyncResourcesRequestRequest;
25319
+ path?: never;
25320
+ query?: never;
25321
+ url: '/api/admin/arrow/billing-syncs/sync_resources/';
25322
+ };
25323
+ export type AdminArrowBillingSyncsSyncResourcesResponses = {
25324
+ 200: SyncResourcesResponse;
25325
+ };
25326
+ export type AdminArrowBillingSyncsSyncResourcesResponse = AdminArrowBillingSyncsSyncResourcesResponses[keyof AdminArrowBillingSyncsSyncResourcesResponses];
25327
+ export type AdminArrowBillingSyncsTriggerConsumptionSyncData = {
25328
+ body: TriggerConsumptionSyncRequestRequest;
25329
+ path?: never;
25330
+ query?: never;
25331
+ url: '/api/admin/arrow/billing-syncs/trigger_consumption_sync/';
25332
+ };
25333
+ export type AdminArrowBillingSyncsTriggerConsumptionSyncResponses = {
25334
+ /**
25335
+ * No response body
25336
+ */
25337
+ 202: unknown;
25338
+ };
25339
+ export type AdminArrowBillingSyncsTriggerReconciliationData = {
25340
+ body: ReconcileRequestRequest;
25341
+ path?: never;
25342
+ query?: never;
25343
+ url: '/api/admin/arrow/billing-syncs/trigger_reconciliation/';
25344
+ };
25345
+ export type AdminArrowBillingSyncsTriggerReconciliationResponses = {
25346
+ /**
25347
+ * No response body
25348
+ */
25349
+ 202: unknown;
25350
+ };
25351
+ export type AdminArrowBillingSyncsTriggerSyncData = {
25352
+ body: TriggerSyncRequestRequest;
25353
+ path?: never;
25354
+ query?: never;
25355
+ url: '/api/admin/arrow/billing-syncs/trigger_sync/';
25356
+ };
25357
+ export type AdminArrowBillingSyncsTriggerSyncResponses = {
25358
+ /**
25359
+ * No response body
25360
+ */
25361
+ 202: unknown;
25362
+ };
25363
+ export type AdminArrowConsumptionRecordsListData = {
25364
+ body?: never;
25365
+ path?: never;
25366
+ query?: {
25367
+ billing_period?: string;
25368
+ billing_period_from?: string;
25369
+ billing_period_to?: string;
25370
+ customer_uuid?: string;
25371
+ is_finalized?: boolean;
25372
+ is_reconciled?: boolean;
25373
+ license_reference?: string;
25374
+ /**
25375
+ * A page number within the paginated result set.
25376
+ */
25377
+ page?: number;
25378
+ /**
25379
+ * Number of results to return per page.
25380
+ */
25381
+ page_size?: number;
25382
+ project_uuid?: string;
25383
+ resource?: string;
25384
+ resource_uuid?: string;
25385
+ };
25386
+ url: '/api/admin/arrow/consumption-records/';
25387
+ };
25388
+ export type AdminArrowConsumptionRecordsListResponses = {
25389
+ 200: Array<ArrowConsumptionRecord>;
25390
+ };
25391
+ export type AdminArrowConsumptionRecordsListResponse = AdminArrowConsumptionRecordsListResponses[keyof AdminArrowConsumptionRecordsListResponses];
25392
+ export type AdminArrowConsumptionRecordsCountData = {
25393
+ body?: never;
25394
+ path?: never;
25395
+ query?: {
25396
+ billing_period?: string;
25397
+ billing_period_from?: string;
25398
+ billing_period_to?: string;
25399
+ customer_uuid?: string;
25400
+ is_finalized?: boolean;
25401
+ is_reconciled?: boolean;
25402
+ license_reference?: string;
25403
+ /**
25404
+ * A page number within the paginated result set.
25405
+ */
25406
+ page?: number;
25407
+ /**
25408
+ * Number of results to return per page.
25409
+ */
25410
+ page_size?: number;
25411
+ project_uuid?: string;
25412
+ resource?: string;
25413
+ resource_uuid?: string;
25414
+ };
25415
+ url: '/api/admin/arrow/consumption-records/';
25416
+ };
25417
+ export type AdminArrowConsumptionRecordsCountResponses = {
25418
+ /**
25419
+ * No response body
25420
+ */
25421
+ 200: unknown;
25422
+ };
25423
+ export type AdminArrowConsumptionRecordsRetrieveData = {
25424
+ body?: never;
25425
+ path: {
25426
+ uuid: string;
25427
+ };
25428
+ query?: never;
25429
+ url: '/api/admin/arrow/consumption-records/{uuid}/';
25430
+ };
25431
+ export type AdminArrowConsumptionRecordsRetrieveResponses = {
25432
+ 200: ArrowConsumptionRecord;
25433
+ };
25434
+ export type AdminArrowConsumptionRecordsRetrieveResponse = AdminArrowConsumptionRecordsRetrieveResponses[keyof AdminArrowConsumptionRecordsRetrieveResponses];
25435
+ export type AdminArrowCustomerMappingsListData = {
25436
+ body?: never;
25437
+ path?: never;
25438
+ query?: {
25439
+ arrow_company_name?: string;
25440
+ arrow_reference?: string;
25441
+ is_active?: boolean;
25442
+ /**
25443
+ * A page number within the paginated result set.
25444
+ */
25445
+ page?: number;
25446
+ /**
25447
+ * Number of results to return per page.
25448
+ */
25449
+ page_size?: number;
25450
+ settings?: string;
25451
+ settings_uuid?: string;
25452
+ waldur_customer?: string;
25453
+ waldur_customer_uuid?: string;
25454
+ };
25455
+ url: '/api/admin/arrow/customer-mappings/';
25456
+ };
25457
+ export type AdminArrowCustomerMappingsListResponses = {
25458
+ 200: Array<ArrowCustomerMapping>;
25459
+ };
25460
+ export type AdminArrowCustomerMappingsListResponse = AdminArrowCustomerMappingsListResponses[keyof AdminArrowCustomerMappingsListResponses];
25461
+ export type AdminArrowCustomerMappingsCountData = {
25462
+ body?: never;
25463
+ path?: never;
25464
+ query?: {
25465
+ arrow_company_name?: string;
25466
+ arrow_reference?: string;
25467
+ is_active?: boolean;
25468
+ /**
25469
+ * A page number within the paginated result set.
25470
+ */
25471
+ page?: number;
25472
+ /**
25473
+ * Number of results to return per page.
25474
+ */
25475
+ page_size?: number;
25476
+ settings?: string;
25477
+ settings_uuid?: string;
25478
+ waldur_customer?: string;
25479
+ waldur_customer_uuid?: string;
25480
+ };
25481
+ url: '/api/admin/arrow/customer-mappings/';
25482
+ };
25483
+ export type AdminArrowCustomerMappingsCountResponses = {
25484
+ /**
25485
+ * No response body
25486
+ */
25487
+ 200: unknown;
25488
+ };
25489
+ export type AdminArrowCustomerMappingsCreateData = {
25490
+ body: ArrowCustomerMappingCreateRequest;
25491
+ path?: never;
25492
+ query?: never;
25493
+ url: '/api/admin/arrow/customer-mappings/';
25494
+ };
25495
+ export type AdminArrowCustomerMappingsCreateResponses = {
25496
+ 201: ArrowCustomerMappingCreate;
25497
+ };
25498
+ export type AdminArrowCustomerMappingsCreateResponse = AdminArrowCustomerMappingsCreateResponses[keyof AdminArrowCustomerMappingsCreateResponses];
25499
+ export type AdminArrowCustomerMappingsDestroyData = {
25500
+ body?: never;
25501
+ path: {
25502
+ uuid: string;
25503
+ };
25504
+ query?: never;
25505
+ url: '/api/admin/arrow/customer-mappings/{uuid}/';
25506
+ };
25507
+ export type AdminArrowCustomerMappingsDestroyResponses = {
25508
+ /**
25509
+ * No response body
25510
+ */
25511
+ 204: void;
25512
+ };
25513
+ export type AdminArrowCustomerMappingsDestroyResponse = AdminArrowCustomerMappingsDestroyResponses[keyof AdminArrowCustomerMappingsDestroyResponses];
25514
+ export type AdminArrowCustomerMappingsRetrieveData = {
25515
+ body?: never;
25516
+ path: {
25517
+ uuid: string;
25518
+ };
25519
+ query?: never;
25520
+ url: '/api/admin/arrow/customer-mappings/{uuid}/';
25521
+ };
25522
+ export type AdminArrowCustomerMappingsRetrieveResponses = {
25523
+ 200: ArrowCustomerMapping;
25524
+ };
25525
+ export type AdminArrowCustomerMappingsRetrieveResponse = AdminArrowCustomerMappingsRetrieveResponses[keyof AdminArrowCustomerMappingsRetrieveResponses];
25526
+ export type AdminArrowCustomerMappingsPartialUpdateData = {
25527
+ body?: PatchedArrowCustomerMappingRequest;
25528
+ path: {
25529
+ uuid: string;
25530
+ };
25531
+ query?: never;
25532
+ url: '/api/admin/arrow/customer-mappings/{uuid}/';
25533
+ };
25534
+ export type AdminArrowCustomerMappingsPartialUpdateResponses = {
25535
+ 200: ArrowCustomerMapping;
25536
+ };
25537
+ export type AdminArrowCustomerMappingsPartialUpdateResponse = AdminArrowCustomerMappingsPartialUpdateResponses[keyof AdminArrowCustomerMappingsPartialUpdateResponses];
25538
+ export type AdminArrowCustomerMappingsUpdateData = {
25539
+ body: ArrowCustomerMappingRequest;
25540
+ path: {
25541
+ uuid: string;
25542
+ };
25543
+ query?: never;
25544
+ url: '/api/admin/arrow/customer-mappings/{uuid}/';
25545
+ };
25546
+ export type AdminArrowCustomerMappingsUpdateResponses = {
25547
+ 200: ArrowCustomerMapping;
25548
+ };
25549
+ export type AdminArrowCustomerMappingsUpdateResponse = AdminArrowCustomerMappingsUpdateResponses[keyof AdminArrowCustomerMappingsUpdateResponses];
25550
+ export type AdminArrowCustomerMappingsBillingSummaryRetrieveData = {
25551
+ body?: never;
25552
+ path: {
25553
+ uuid: string;
25554
+ };
25555
+ query?: never;
25556
+ url: '/api/admin/arrow/customer-mappings/{uuid}/billing_summary/';
25557
+ };
25558
+ export type AdminArrowCustomerMappingsBillingSummaryRetrieveResponses = {
25559
+ 200: CustomerBillingSummaryResponse;
25560
+ };
25561
+ export type AdminArrowCustomerMappingsBillingSummaryRetrieveResponse = AdminArrowCustomerMappingsBillingSummaryRetrieveResponses[keyof AdminArrowCustomerMappingsBillingSummaryRetrieveResponses];
25562
+ export type AdminArrowCustomerMappingsDiscoverLicensesRetrieveData = {
25563
+ body?: never;
25564
+ path: {
25565
+ uuid: string;
25566
+ };
25567
+ query?: never;
25568
+ url: '/api/admin/arrow/customer-mappings/{uuid}/discover_licenses/';
25569
+ };
25570
+ export type AdminArrowCustomerMappingsDiscoverLicensesRetrieveResponses = {
25571
+ 200: DiscoverLicensesResponse;
25572
+ };
25573
+ export type AdminArrowCustomerMappingsDiscoverLicensesRetrieveResponse = AdminArrowCustomerMappingsDiscoverLicensesRetrieveResponses[keyof AdminArrowCustomerMappingsDiscoverLicensesRetrieveResponses];
25574
+ export type AdminArrowCustomerMappingsFetchArrowDataRetrieveData = {
25575
+ body?: never;
25576
+ path: {
25577
+ uuid: string;
25578
+ };
25579
+ query?: never;
25580
+ url: '/api/admin/arrow/customer-mappings/{uuid}/fetch_arrow_data/';
25581
+ };
25582
+ export type AdminArrowCustomerMappingsFetchArrowDataRetrieveResponses = {
25583
+ 200: FetchCustomerArrowDataResponse;
25584
+ };
25585
+ export type AdminArrowCustomerMappingsFetchArrowDataRetrieveResponse = AdminArrowCustomerMappingsFetchArrowDataRetrieveResponses[keyof AdminArrowCustomerMappingsFetchArrowDataRetrieveResponses];
25586
+ export type AdminArrowCustomerMappingsImportLicenseData = {
25587
+ body: ImportLicenseRequestRequest;
25588
+ path: {
25589
+ uuid: string;
25590
+ };
25591
+ query?: never;
25592
+ url: '/api/admin/arrow/customer-mappings/{uuid}/import_license/';
25593
+ };
25594
+ export type AdminArrowCustomerMappingsImportLicenseResponses = {
25595
+ 200: ImportLicenseResponse;
25596
+ };
25597
+ export type AdminArrowCustomerMappingsImportLicenseResponse = AdminArrowCustomerMappingsImportLicenseResponses[keyof AdminArrowCustomerMappingsImportLicenseResponses];
25598
+ export type AdminArrowCustomerMappingsLinkResourceData = {
25599
+ body: LinkResourceRequestRequest;
25600
+ path: {
25601
+ uuid: string;
25602
+ };
25603
+ query?: never;
25604
+ url: '/api/admin/arrow/customer-mappings/{uuid}/link_resource/';
25605
+ };
25606
+ export type AdminArrowCustomerMappingsLinkResourceResponses = {
25607
+ 200: LinkResourceResponse;
25608
+ };
25609
+ export type AdminArrowCustomerMappingsLinkResourceResponse = AdminArrowCustomerMappingsLinkResourceResponses[keyof AdminArrowCustomerMappingsLinkResourceResponses];
25610
+ export type AdminArrowCustomerMappingsAvailableCustomersRetrieveData = {
25611
+ body?: never;
25612
+ path?: never;
25613
+ query?: never;
25614
+ url: '/api/admin/arrow/customer-mappings/available_customers/';
25615
+ };
25616
+ export type AdminArrowCustomerMappingsAvailableCustomersRetrieveResponses = {
25617
+ 200: AvailableArrowCustomersResponse;
25618
+ };
25619
+ export type AdminArrowCustomerMappingsAvailableCustomersRetrieveResponse = AdminArrowCustomerMappingsAvailableCustomersRetrieveResponses[keyof AdminArrowCustomerMappingsAvailableCustomersRetrieveResponses];
25620
+ export type AdminArrowCustomerMappingsAvailableCustomersCountData = {
25621
+ body?: never;
25622
+ path?: never;
25623
+ query?: never;
25624
+ url: '/api/admin/arrow/customer-mappings/available_customers/';
25625
+ };
25626
+ export type AdminArrowCustomerMappingsAvailableCustomersCountResponses = {
25627
+ /**
25628
+ * No response body
25629
+ */
25630
+ 200: unknown;
25631
+ };
25632
+ export type AdminArrowCustomerMappingsSyncFromArrowData = {
25633
+ body?: SyncFromArrowRequestRequest;
25634
+ path?: never;
25635
+ query?: never;
25636
+ url: '/api/admin/arrow/customer-mappings/sync_from_arrow/';
25637
+ };
25638
+ export type AdminArrowCustomerMappingsSyncFromArrowResponses = {
25639
+ /**
25640
+ * No response body
25641
+ */
25642
+ 200: unknown;
25643
+ };
25644
+ export type AdminArrowSettingsListData = {
25645
+ body?: never;
25646
+ path?: never;
25647
+ query?: {
25648
+ is_active?: boolean;
25649
+ /**
25650
+ * A page number within the paginated result set.
25651
+ */
25652
+ page?: number;
25653
+ /**
25654
+ * Number of results to return per page.
25655
+ */
25656
+ page_size?: number;
25657
+ sync_enabled?: boolean;
25658
+ };
25659
+ url: '/api/admin/arrow/settings/';
25660
+ };
25661
+ export type AdminArrowSettingsListResponses = {
25662
+ 200: Array<ArrowSettings>;
25663
+ };
25664
+ export type AdminArrowSettingsListResponse = AdminArrowSettingsListResponses[keyof AdminArrowSettingsListResponses];
25665
+ export type AdminArrowSettingsCountData = {
25666
+ body?: never;
25667
+ path?: never;
25668
+ query?: {
25669
+ is_active?: boolean;
25670
+ /**
25671
+ * A page number within the paginated result set.
25672
+ */
25673
+ page?: number;
25674
+ /**
25675
+ * Number of results to return per page.
25676
+ */
25677
+ page_size?: number;
25678
+ sync_enabled?: boolean;
25679
+ };
25680
+ url: '/api/admin/arrow/settings/';
25681
+ };
25682
+ export type AdminArrowSettingsCountResponses = {
25683
+ /**
25684
+ * No response body
25685
+ */
25686
+ 200: unknown;
25687
+ };
25688
+ export type AdminArrowSettingsCreateData = {
25689
+ body: ArrowSettingsCreateRequest;
25690
+ path?: never;
25691
+ query?: never;
25692
+ url: '/api/admin/arrow/settings/';
25693
+ };
25694
+ export type AdminArrowSettingsCreateResponses = {
25695
+ 201: ArrowSettingsCreate;
25696
+ };
25697
+ export type AdminArrowSettingsCreateResponse = AdminArrowSettingsCreateResponses[keyof AdminArrowSettingsCreateResponses];
25698
+ export type AdminArrowSettingsDestroyData = {
25699
+ body?: never;
25700
+ path: {
25701
+ uuid: string;
25702
+ };
25703
+ query?: never;
25704
+ url: '/api/admin/arrow/settings/{uuid}/';
25705
+ };
25706
+ export type AdminArrowSettingsDestroyResponses = {
25707
+ /**
25708
+ * No response body
25709
+ */
25710
+ 204: void;
25711
+ };
25712
+ export type AdminArrowSettingsDestroyResponse = AdminArrowSettingsDestroyResponses[keyof AdminArrowSettingsDestroyResponses];
25713
+ export type AdminArrowSettingsRetrieveData = {
25714
+ body?: never;
25715
+ path: {
25716
+ uuid: string;
25717
+ };
25718
+ query?: never;
25719
+ url: '/api/admin/arrow/settings/{uuid}/';
25720
+ };
25721
+ export type AdminArrowSettingsRetrieveResponses = {
25722
+ 200: ArrowSettings;
25723
+ };
25724
+ export type AdminArrowSettingsRetrieveResponse = AdminArrowSettingsRetrieveResponses[keyof AdminArrowSettingsRetrieveResponses];
25725
+ export type AdminArrowSettingsPartialUpdateData = {
25726
+ body?: PatchedArrowSettingsRequest;
25727
+ path: {
25728
+ uuid: string;
25729
+ };
25730
+ query?: never;
25731
+ url: '/api/admin/arrow/settings/{uuid}/';
25732
+ };
25733
+ export type AdminArrowSettingsPartialUpdateResponses = {
25734
+ 200: ArrowSettings;
25735
+ };
25736
+ export type AdminArrowSettingsPartialUpdateResponse = AdminArrowSettingsPartialUpdateResponses[keyof AdminArrowSettingsPartialUpdateResponses];
25737
+ export type AdminArrowSettingsUpdateData = {
25738
+ body: ArrowSettingsRequest;
25739
+ path: {
25740
+ uuid: string;
25741
+ };
25742
+ query?: never;
25743
+ url: '/api/admin/arrow/settings/{uuid}/';
25744
+ };
25745
+ export type AdminArrowSettingsUpdateResponses = {
25746
+ 200: ArrowSettings;
25747
+ };
25748
+ export type AdminArrowSettingsUpdateResponse = AdminArrowSettingsUpdateResponses[keyof AdminArrowSettingsUpdateResponses];
25749
+ export type AdminArrowSettingsDiscoverCustomersData = {
25750
+ body: DiscoverCustomersRequestRequest;
25751
+ path?: never;
25752
+ query?: never;
25753
+ url: '/api/admin/arrow/settings/discover_customers/';
25754
+ };
25755
+ export type AdminArrowSettingsDiscoverCustomersResponses = {
25756
+ 200: DiscoverCustomersResponse;
25757
+ };
25758
+ export type AdminArrowSettingsDiscoverCustomersResponse = AdminArrowSettingsDiscoverCustomersResponses[keyof AdminArrowSettingsDiscoverCustomersResponses];
25759
+ export type AdminArrowSettingsPreviewSettingsData = {
25760
+ body: PreviewSettingsRequestRequest;
25761
+ path?: never;
25762
+ query?: never;
25763
+ url: '/api/admin/arrow/settings/preview_settings/';
25764
+ };
25765
+ export type AdminArrowSettingsPreviewSettingsResponses = {
25766
+ 200: PreviewSettingsResponse;
25767
+ };
25768
+ export type AdminArrowSettingsPreviewSettingsResponse = AdminArrowSettingsPreviewSettingsResponses[keyof AdminArrowSettingsPreviewSettingsResponses];
25769
+ export type AdminArrowSettingsSaveSettingsData = {
25770
+ body: SaveSettingsRequestRequest;
25771
+ path?: never;
25772
+ query?: never;
25773
+ url: '/api/admin/arrow/settings/save_settings/';
25774
+ };
25775
+ export type AdminArrowSettingsSaveSettingsResponses = {
25776
+ 201: SaveSettingsResponse;
25777
+ };
25778
+ export type AdminArrowSettingsSaveSettingsResponse = AdminArrowSettingsSaveSettingsResponses[keyof AdminArrowSettingsSaveSettingsResponses];
25779
+ export type AdminArrowSettingsValidateCredentialsData = {
25780
+ body: ArrowCredentialsRequest;
25781
+ path?: never;
25782
+ query?: never;
25783
+ url: '/api/admin/arrow/settings/validate_credentials/';
25784
+ };
25785
+ export type AdminArrowSettingsValidateCredentialsResponses = {
25786
+ 200: ArrowCredentialsValidationResponse;
25787
+ };
25788
+ export type AdminArrowSettingsValidateCredentialsResponse = AdminArrowSettingsValidateCredentialsResponses[keyof AdminArrowSettingsValidateCredentialsResponses];
25789
+ export type AdminArrowVendorOfferingMappingsListData = {
25790
+ body?: never;
25791
+ path?: never;
25792
+ query?: {
25793
+ arrow_vendor_name?: string;
25794
+ is_active?: boolean;
25795
+ offering?: string;
25796
+ offering_uuid?: string;
25797
+ /**
25798
+ * A page number within the paginated result set.
25799
+ */
25800
+ page?: number;
25801
+ /**
25802
+ * Number of results to return per page.
25803
+ */
25804
+ page_size?: number;
25805
+ settings?: string;
25806
+ settings_uuid?: string;
25807
+ };
25808
+ url: '/api/admin/arrow/vendor-offering-mappings/';
25809
+ };
25810
+ export type AdminArrowVendorOfferingMappingsListResponses = {
25811
+ 200: Array<ArrowVendorOfferingMapping>;
25812
+ };
25813
+ export type AdminArrowVendorOfferingMappingsListResponse = AdminArrowVendorOfferingMappingsListResponses[keyof AdminArrowVendorOfferingMappingsListResponses];
25814
+ export type AdminArrowVendorOfferingMappingsCountData = {
25815
+ body?: never;
25816
+ path?: never;
25817
+ query?: {
25818
+ arrow_vendor_name?: string;
25819
+ is_active?: boolean;
25820
+ offering?: string;
25821
+ offering_uuid?: string;
25822
+ /**
25823
+ * A page number within the paginated result set.
25824
+ */
25825
+ page?: number;
25826
+ /**
25827
+ * Number of results to return per page.
25828
+ */
25829
+ page_size?: number;
25830
+ settings?: string;
25831
+ settings_uuid?: string;
25832
+ };
25833
+ url: '/api/admin/arrow/vendor-offering-mappings/';
25834
+ };
25835
+ export type AdminArrowVendorOfferingMappingsCountResponses = {
25836
+ /**
25837
+ * No response body
25838
+ */
25839
+ 200: unknown;
25840
+ };
25841
+ export type AdminArrowVendorOfferingMappingsCreateData = {
25842
+ body: ArrowVendorOfferingMappingCreateRequest;
25843
+ path?: never;
25844
+ query?: never;
25845
+ url: '/api/admin/arrow/vendor-offering-mappings/';
25846
+ };
25847
+ export type AdminArrowVendorOfferingMappingsCreateResponses = {
25848
+ 201: ArrowVendorOfferingMappingCreate;
25849
+ };
25850
+ export type AdminArrowVendorOfferingMappingsCreateResponse = AdminArrowVendorOfferingMappingsCreateResponses[keyof AdminArrowVendorOfferingMappingsCreateResponses];
25851
+ export type AdminArrowVendorOfferingMappingsDestroyData = {
25852
+ body?: never;
25853
+ path: {
25854
+ uuid: string;
25855
+ };
25856
+ query?: never;
25857
+ url: '/api/admin/arrow/vendor-offering-mappings/{uuid}/';
25858
+ };
25859
+ export type AdminArrowVendorOfferingMappingsDestroyResponses = {
25860
+ /**
25861
+ * No response body
25862
+ */
25863
+ 204: void;
25864
+ };
25865
+ export type AdminArrowVendorOfferingMappingsDestroyResponse = AdminArrowVendorOfferingMappingsDestroyResponses[keyof AdminArrowVendorOfferingMappingsDestroyResponses];
25866
+ export type AdminArrowVendorOfferingMappingsRetrieveData = {
25867
+ body?: never;
25868
+ path: {
25869
+ uuid: string;
25870
+ };
25871
+ query?: never;
25872
+ url: '/api/admin/arrow/vendor-offering-mappings/{uuid}/';
25873
+ };
25874
+ export type AdminArrowVendorOfferingMappingsRetrieveResponses = {
25875
+ 200: ArrowVendorOfferingMapping;
25876
+ };
25877
+ export type AdminArrowVendorOfferingMappingsRetrieveResponse = AdminArrowVendorOfferingMappingsRetrieveResponses[keyof AdminArrowVendorOfferingMappingsRetrieveResponses];
25878
+ export type AdminArrowVendorOfferingMappingsPartialUpdateData = {
25879
+ body?: PatchedArrowVendorOfferingMappingRequest;
25880
+ path: {
25881
+ uuid: string;
25882
+ };
25883
+ query?: never;
25884
+ url: '/api/admin/arrow/vendor-offering-mappings/{uuid}/';
25885
+ };
25886
+ export type AdminArrowVendorOfferingMappingsPartialUpdateResponses = {
25887
+ 200: ArrowVendorOfferingMapping;
25888
+ };
25889
+ export type AdminArrowVendorOfferingMappingsPartialUpdateResponse = AdminArrowVendorOfferingMappingsPartialUpdateResponses[keyof AdminArrowVendorOfferingMappingsPartialUpdateResponses];
25890
+ export type AdminArrowVendorOfferingMappingsUpdateData = {
25891
+ body: ArrowVendorOfferingMappingRequest;
25892
+ path: {
25893
+ uuid: string;
25894
+ };
25895
+ query?: never;
25896
+ url: '/api/admin/arrow/vendor-offering-mappings/{uuid}/';
25897
+ };
25898
+ export type AdminArrowVendorOfferingMappingsUpdateResponses = {
25899
+ 200: ArrowVendorOfferingMapping;
25900
+ };
25901
+ export type AdminArrowVendorOfferingMappingsUpdateResponse = AdminArrowVendorOfferingMappingsUpdateResponses[keyof AdminArrowVendorOfferingMappingsUpdateResponses];
25902
+ export type AdminArrowVendorOfferingMappingsVendorChoicesListData = {
25903
+ body?: never;
25904
+ path?: never;
25905
+ query?: {
25906
+ arrow_vendor_name?: string;
25907
+ is_active?: boolean;
25908
+ offering?: string;
25909
+ offering_uuid?: string;
25910
+ /**
25911
+ * A page number within the paginated result set.
25912
+ */
25913
+ page?: number;
25914
+ /**
25915
+ * Number of results to return per page.
25916
+ */
25917
+ page_size?: number;
25918
+ settings?: string;
25919
+ settings_uuid?: string;
25920
+ };
25921
+ url: '/api/admin/arrow/vendor-offering-mappings/vendor_choices/';
25922
+ };
25923
+ export type AdminArrowVendorOfferingMappingsVendorChoicesListResponses = {
25924
+ 200: Array<VendorNameChoice>;
25925
+ };
25926
+ export type AdminArrowVendorOfferingMappingsVendorChoicesListResponse = AdminArrowVendorOfferingMappingsVendorChoicesListResponses[keyof AdminArrowVendorOfferingMappingsVendorChoicesListResponses];
25927
+ export type AdminArrowVendorOfferingMappingsVendorChoicesCountData = {
25928
+ body?: never;
25929
+ path?: never;
25930
+ query?: {
25931
+ arrow_vendor_name?: string;
25932
+ is_active?: boolean;
25933
+ offering?: string;
25934
+ offering_uuid?: string;
25935
+ /**
25936
+ * A page number within the paginated result set.
25937
+ */
25938
+ page?: number;
25939
+ /**
25940
+ * Number of results to return per page.
25941
+ */
25942
+ page_size?: number;
25943
+ settings?: string;
25944
+ settings_uuid?: string;
25945
+ };
25946
+ url: '/api/admin/arrow/vendor-offering-mappings/vendor_choices/';
25947
+ };
25948
+ export type AdminArrowVendorOfferingMappingsVendorChoicesCountResponses = {
25949
+ /**
25950
+ * No response body
25951
+ */
25952
+ 200: unknown;
25953
+ };
23825
25954
  export type AssignmentBatchesListData = {
23826
25955
  body?: never;
23827
25956
  path?: never;
@@ -24673,17 +26802,13 @@ export type AwsInstancesPullData = {
24673
26802
  url: '/api/aws-instances/{uuid}/pull/';
24674
26803
  };
24675
26804
  export type AwsInstancesPullErrors = {
24676
- /**
24677
- * No response body
24678
- */
24679
- 409: unknown;
26805
+ 409: PullConflictResponse;
24680
26806
  };
26807
+ export type AwsInstancesPullError = AwsInstancesPullErrors[keyof AwsInstancesPullErrors];
24681
26808
  export type AwsInstancesPullResponses = {
24682
- /**
24683
- * No response body
24684
- */
24685
- 202: unknown;
26809
+ 202: PullResponse;
24686
26810
  };
26811
+ export type AwsInstancesPullResponse = AwsInstancesPullResponses[keyof AwsInstancesPullResponses];
24687
26812
  export type AwsInstancesResizeData = {
24688
26813
  body: AwsInstanceResizeRequest;
24689
26814
  path: {
@@ -24710,6 +26835,30 @@ export type AwsInstancesRestartResponses = {
24710
26835
  */
24711
26836
  200: unknown;
24712
26837
  };
26838
+ export type AwsInstancesSetErredData = {
26839
+ body?: SetErredRequest;
26840
+ path: {
26841
+ uuid: string;
26842
+ };
26843
+ query?: never;
26844
+ url: '/api/aws-instances/{uuid}/set_erred/';
26845
+ };
26846
+ export type AwsInstancesSetErredResponses = {
26847
+ 200: SetErredResponse;
26848
+ };
26849
+ export type AwsInstancesSetErredResponse = AwsInstancesSetErredResponses[keyof AwsInstancesSetErredResponses];
26850
+ export type AwsInstancesSetOkData = {
26851
+ body?: never;
26852
+ path: {
26853
+ uuid: string;
26854
+ };
26855
+ query?: never;
26856
+ url: '/api/aws-instances/{uuid}/set_ok/';
26857
+ };
26858
+ export type AwsInstancesSetOkResponses = {
26859
+ 200: SetOkResponse;
26860
+ };
26861
+ export type AwsInstancesSetOkResponse = AwsInstancesSetOkResponses[keyof AwsInstancesSetOkResponses];
24713
26862
  export type AwsInstancesStartData = {
24714
26863
  body?: never;
24715
26864
  path: {
@@ -25030,17 +27179,37 @@ export type AwsVolumesPullData = {
25030
27179
  url: '/api/aws-volumes/{uuid}/pull/';
25031
27180
  };
25032
27181
  export type AwsVolumesPullErrors = {
25033
- /**
25034
- * No response body
25035
- */
25036
- 409: unknown;
27182
+ 409: PullConflictResponse;
25037
27183
  };
27184
+ export type AwsVolumesPullError = AwsVolumesPullErrors[keyof AwsVolumesPullErrors];
25038
27185
  export type AwsVolumesPullResponses = {
25039
- /**
25040
- * No response body
25041
- */
25042
- 202: unknown;
27186
+ 202: PullResponse;
27187
+ };
27188
+ export type AwsVolumesPullResponse = AwsVolumesPullResponses[keyof AwsVolumesPullResponses];
27189
+ export type AwsVolumesSetErredData = {
27190
+ body?: SetErredRequest;
27191
+ path: {
27192
+ uuid: string;
27193
+ };
27194
+ query?: never;
27195
+ url: '/api/aws-volumes/{uuid}/set_erred/';
27196
+ };
27197
+ export type AwsVolumesSetErredResponses = {
27198
+ 200: SetErredResponse;
25043
27199
  };
27200
+ export type AwsVolumesSetErredResponse = AwsVolumesSetErredResponses[keyof AwsVolumesSetErredResponses];
27201
+ export type AwsVolumesSetOkData = {
27202
+ body?: never;
27203
+ path: {
27204
+ uuid: string;
27205
+ };
27206
+ query?: never;
27207
+ url: '/api/aws-volumes/{uuid}/set_ok/';
27208
+ };
27209
+ export type AwsVolumesSetOkResponses = {
27210
+ 200: SetOkResponse;
27211
+ };
27212
+ export type AwsVolumesSetOkResponse = AwsVolumesSetOkResponses[keyof AwsVolumesSetOkResponses];
25044
27213
  export type AwsVolumesUnlinkData = {
25045
27214
  body?: never;
25046
27215
  path: {
@@ -25495,17 +27664,37 @@ export type AzurePublicIpsPullData = {
25495
27664
  url: '/api/azure-public-ips/{uuid}/pull/';
25496
27665
  };
25497
27666
  export type AzurePublicIpsPullErrors = {
25498
- /**
25499
- * No response body
25500
- */
25501
- 409: unknown;
27667
+ 409: PullConflictResponse;
25502
27668
  };
27669
+ export type AzurePublicIpsPullError = AzurePublicIpsPullErrors[keyof AzurePublicIpsPullErrors];
25503
27670
  export type AzurePublicIpsPullResponses = {
25504
- /**
25505
- * No response body
25506
- */
25507
- 202: unknown;
27671
+ 202: PullResponse;
27672
+ };
27673
+ export type AzurePublicIpsPullResponse = AzurePublicIpsPullResponses[keyof AzurePublicIpsPullResponses];
27674
+ export type AzurePublicIpsSetErredData = {
27675
+ body?: SetErredRequest;
27676
+ path: {
27677
+ uuid: string;
27678
+ };
27679
+ query?: never;
27680
+ url: '/api/azure-public-ips/{uuid}/set_erred/';
25508
27681
  };
27682
+ export type AzurePublicIpsSetErredResponses = {
27683
+ 200: SetErredResponse;
27684
+ };
27685
+ export type AzurePublicIpsSetErredResponse = AzurePublicIpsSetErredResponses[keyof AzurePublicIpsSetErredResponses];
27686
+ export type AzurePublicIpsSetOkData = {
27687
+ body?: never;
27688
+ path: {
27689
+ uuid: string;
27690
+ };
27691
+ query?: never;
27692
+ url: '/api/azure-public-ips/{uuid}/set_ok/';
27693
+ };
27694
+ export type AzurePublicIpsSetOkResponses = {
27695
+ 200: SetOkResponse;
27696
+ };
27697
+ export type AzurePublicIpsSetOkResponse = AzurePublicIpsSetOkResponses[keyof AzurePublicIpsSetOkResponses];
25509
27698
  export type AzurePublicIpsUnlinkData = {
25510
27699
  body?: never;
25511
27700
  path: {
@@ -25935,17 +28124,37 @@ export type AzureSqlDatabasesPullData = {
25935
28124
  url: '/api/azure-sql-databases/{uuid}/pull/';
25936
28125
  };
25937
28126
  export type AzureSqlDatabasesPullErrors = {
25938
- /**
25939
- * No response body
25940
- */
25941
- 409: unknown;
28127
+ 409: PullConflictResponse;
25942
28128
  };
28129
+ export type AzureSqlDatabasesPullError = AzureSqlDatabasesPullErrors[keyof AzureSqlDatabasesPullErrors];
25943
28130
  export type AzureSqlDatabasesPullResponses = {
25944
- /**
25945
- * No response body
25946
- */
25947
- 202: unknown;
28131
+ 202: PullResponse;
28132
+ };
28133
+ export type AzureSqlDatabasesPullResponse = AzureSqlDatabasesPullResponses[keyof AzureSqlDatabasesPullResponses];
28134
+ export type AzureSqlDatabasesSetErredData = {
28135
+ body?: SetErredRequest;
28136
+ path: {
28137
+ uuid: string;
28138
+ };
28139
+ query?: never;
28140
+ url: '/api/azure-sql-databases/{uuid}/set_erred/';
28141
+ };
28142
+ export type AzureSqlDatabasesSetErredResponses = {
28143
+ 200: SetErredResponse;
28144
+ };
28145
+ export type AzureSqlDatabasesSetErredResponse = AzureSqlDatabasesSetErredResponses[keyof AzureSqlDatabasesSetErredResponses];
28146
+ export type AzureSqlDatabasesSetOkData = {
28147
+ body?: never;
28148
+ path: {
28149
+ uuid: string;
28150
+ };
28151
+ query?: never;
28152
+ url: '/api/azure-sql-databases/{uuid}/set_ok/';
28153
+ };
28154
+ export type AzureSqlDatabasesSetOkResponses = {
28155
+ 200: SetOkResponse;
25948
28156
  };
28157
+ export type AzureSqlDatabasesSetOkResponse = AzureSqlDatabasesSetOkResponses[keyof AzureSqlDatabasesSetOkResponses];
25949
28158
  export type AzureSqlDatabasesUnlinkData = {
25950
28159
  body?: never;
25951
28160
  path: {
@@ -26238,17 +28447,37 @@ export type AzureSqlServersPullData = {
26238
28447
  url: '/api/azure-sql-servers/{uuid}/pull/';
26239
28448
  };
26240
28449
  export type AzureSqlServersPullErrors = {
26241
- /**
26242
- * No response body
26243
- */
26244
- 409: unknown;
28450
+ 409: PullConflictResponse;
26245
28451
  };
28452
+ export type AzureSqlServersPullError = AzureSqlServersPullErrors[keyof AzureSqlServersPullErrors];
26246
28453
  export type AzureSqlServersPullResponses = {
26247
- /**
26248
- * No response body
26249
- */
26250
- 202: unknown;
28454
+ 202: PullResponse;
28455
+ };
28456
+ export type AzureSqlServersPullResponse = AzureSqlServersPullResponses[keyof AzureSqlServersPullResponses];
28457
+ export type AzureSqlServersSetErredData = {
28458
+ body?: SetErredRequest;
28459
+ path: {
28460
+ uuid: string;
28461
+ };
28462
+ query?: never;
28463
+ url: '/api/azure-sql-servers/{uuid}/set_erred/';
28464
+ };
28465
+ export type AzureSqlServersSetErredResponses = {
28466
+ 200: SetErredResponse;
26251
28467
  };
28468
+ export type AzureSqlServersSetErredResponse = AzureSqlServersSetErredResponses[keyof AzureSqlServersSetErredResponses];
28469
+ export type AzureSqlServersSetOkData = {
28470
+ body?: never;
28471
+ path: {
28472
+ uuid: string;
28473
+ };
28474
+ query?: never;
28475
+ url: '/api/azure-sql-servers/{uuid}/set_ok/';
28476
+ };
28477
+ export type AzureSqlServersSetOkResponses = {
28478
+ 200: SetOkResponse;
28479
+ };
28480
+ export type AzureSqlServersSetOkResponse = AzureSqlServersSetOkResponses[keyof AzureSqlServersSetOkResponses];
26252
28481
  export type AzureSqlServersUnlinkData = {
26253
28482
  body?: never;
26254
28483
  path: {
@@ -26529,17 +28758,13 @@ export type AzureVirtualmachinesPullData = {
26529
28758
  url: '/api/azure-virtualmachines/{uuid}/pull/';
26530
28759
  };
26531
28760
  export type AzureVirtualmachinesPullErrors = {
26532
- /**
26533
- * No response body
26534
- */
26535
- 409: unknown;
28761
+ 409: PullConflictResponse;
26536
28762
  };
28763
+ export type AzureVirtualmachinesPullError = AzureVirtualmachinesPullErrors[keyof AzureVirtualmachinesPullErrors];
26537
28764
  export type AzureVirtualmachinesPullResponses = {
26538
- /**
26539
- * No response body
26540
- */
26541
- 202: unknown;
28765
+ 202: PullResponse;
26542
28766
  };
28767
+ export type AzureVirtualmachinesPullResponse = AzureVirtualmachinesPullResponses[keyof AzureVirtualmachinesPullResponses];
26543
28768
  export type AzureVirtualmachinesRestartData = {
26544
28769
  body?: never;
26545
28770
  path: {
@@ -26554,6 +28779,30 @@ export type AzureVirtualmachinesRestartResponses = {
26554
28779
  */
26555
28780
  200: unknown;
26556
28781
  };
28782
+ export type AzureVirtualmachinesSetErredData = {
28783
+ body?: SetErredRequest;
28784
+ path: {
28785
+ uuid: string;
28786
+ };
28787
+ query?: never;
28788
+ url: '/api/azure-virtualmachines/{uuid}/set_erred/';
28789
+ };
28790
+ export type AzureVirtualmachinesSetErredResponses = {
28791
+ 200: SetErredResponse;
28792
+ };
28793
+ export type AzureVirtualmachinesSetErredResponse = AzureVirtualmachinesSetErredResponses[keyof AzureVirtualmachinesSetErredResponses];
28794
+ export type AzureVirtualmachinesSetOkData = {
28795
+ body?: never;
28796
+ path: {
28797
+ uuid: string;
28798
+ };
28799
+ query?: never;
28800
+ url: '/api/azure-virtualmachines/{uuid}/set_ok/';
28801
+ };
28802
+ export type AzureVirtualmachinesSetOkResponses = {
28803
+ 200: SetOkResponse;
28804
+ };
28805
+ export type AzureVirtualmachinesSetOkResponse = AzureVirtualmachinesSetOkResponses[keyof AzureVirtualmachinesSetOkResponses];
26557
28806
  export type AzureVirtualmachinesStartData = {
26558
28807
  body?: never;
26559
28808
  path: {
@@ -30212,6 +32461,44 @@ export type CustomersListUsersListResponses = {
30212
32461
  200: Array<UserRoleDetails>;
30213
32462
  };
30214
32463
  export type CustomersListUsersListResponse = CustomersListUsersListResponses[keyof CustomersListUsersListResponses];
32464
+ export type CustomersProjectDigestConfigRetrieveData = {
32465
+ body?: never;
32466
+ path: {
32467
+ uuid: string;
32468
+ };
32469
+ query?: never;
32470
+ url: '/api/customers/{uuid}/project-digest-config/';
32471
+ };
32472
+ export type CustomersProjectDigestConfigRetrieveResponses = {
32473
+ 200: ProjectDigestConfig;
32474
+ };
32475
+ export type CustomersProjectDigestConfigRetrieveResponse = CustomersProjectDigestConfigRetrieveResponses[keyof CustomersProjectDigestConfigRetrieveResponses];
32476
+ export type CustomersProjectDigestConfigPreviewData = {
32477
+ body: ProjectDigestPreviewRequest;
32478
+ path: {
32479
+ uuid: string;
32480
+ };
32481
+ query?: never;
32482
+ url: '/api/customers/{uuid}/project-digest-config/preview/';
32483
+ };
32484
+ export type CustomersProjectDigestConfigPreviewResponses = {
32485
+ 200: ProjectDigestPreviewResponse;
32486
+ };
32487
+ export type CustomersProjectDigestConfigPreviewResponse = CustomersProjectDigestConfigPreviewResponses[keyof CustomersProjectDigestConfigPreviewResponses];
32488
+ export type CustomersProjectDigestConfigSendTestData = {
32489
+ body?: never;
32490
+ path: {
32491
+ uuid: string;
32492
+ };
32493
+ query?: never;
32494
+ url: '/api/customers/{uuid}/project-digest-config/send-test/';
32495
+ };
32496
+ export type CustomersProjectDigestConfigSendTestResponses = {
32497
+ /**
32498
+ * No response body
32499
+ */
32500
+ 200: unknown;
32501
+ };
30215
32502
  export type CustomersStatsRetrieveData = {
30216
32503
  body?: never;
30217
32504
  path: {
@@ -30229,6 +32516,30 @@ export type CustomersStatsRetrieveResponses = {
30229
32516
  200: ComponentsUsageStats;
30230
32517
  };
30231
32518
  export type CustomersStatsRetrieveResponse = CustomersStatsRetrieveResponses[keyof CustomersStatsRetrieveResponses];
32519
+ export type CustomersUpdateProjectDigestConfigPartialUpdateData = {
32520
+ body?: PatchedProjectDigestConfigRequest;
32521
+ path: {
32522
+ uuid: string;
32523
+ };
32524
+ query?: never;
32525
+ url: '/api/customers/{uuid}/update-project-digest-config/';
32526
+ };
32527
+ export type CustomersUpdateProjectDigestConfigPartialUpdateResponses = {
32528
+ 200: ProjectDigestConfig;
32529
+ };
32530
+ export type CustomersUpdateProjectDigestConfigPartialUpdateResponse = CustomersUpdateProjectDigestConfigPartialUpdateResponses[keyof CustomersUpdateProjectDigestConfigPartialUpdateResponses];
32531
+ export type CustomersUpdateProjectDigestConfigUpdateData = {
32532
+ body?: ProjectDigestConfigRequest;
32533
+ path: {
32534
+ uuid: string;
32535
+ };
32536
+ query?: never;
32537
+ url: '/api/customers/{uuid}/update-project-digest-config/';
32538
+ };
32539
+ export type CustomersUpdateProjectDigestConfigUpdateResponses = {
32540
+ 200: ProjectDigestConfig;
32541
+ };
32542
+ export type CustomersUpdateProjectDigestConfigUpdateResponse = CustomersUpdateProjectDigestConfigUpdateResponses[keyof CustomersUpdateProjectDigestConfigUpdateResponses];
30232
32543
  export type CustomersUpdateOrganizationGroupsData = {
30233
32544
  body?: OrganizationGroupsRequest;
30234
32545
  path: {
@@ -30866,17 +33177,13 @@ export type DigitaloceanDropletsPullData = {
30866
33177
  url: '/api/digitalocean-droplets/{uuid}/pull/';
30867
33178
  };
30868
33179
  export type DigitaloceanDropletsPullErrors = {
30869
- /**
30870
- * No response body
30871
- */
30872
- 409: unknown;
33180
+ 409: PullConflictResponse;
30873
33181
  };
33182
+ export type DigitaloceanDropletsPullError = DigitaloceanDropletsPullErrors[keyof DigitaloceanDropletsPullErrors];
30874
33183
  export type DigitaloceanDropletsPullResponses = {
30875
- /**
30876
- * No response body
30877
- */
30878
- 202: unknown;
33184
+ 202: PullResponse;
30879
33185
  };
33186
+ export type DigitaloceanDropletsPullResponse = DigitaloceanDropletsPullResponses[keyof DigitaloceanDropletsPullResponses];
30880
33187
  export type DigitaloceanDropletsResizeData = {
30881
33188
  body: DigitalOceanDropletResizeRequest;
30882
33189
  path: {
@@ -30903,6 +33210,30 @@ export type DigitaloceanDropletsRestartResponses = {
30903
33210
  */
30904
33211
  200: unknown;
30905
33212
  };
33213
+ export type DigitaloceanDropletsSetErredData = {
33214
+ body?: SetErredRequest;
33215
+ path: {
33216
+ uuid: string;
33217
+ };
33218
+ query?: never;
33219
+ url: '/api/digitalocean-droplets/{uuid}/set_erred/';
33220
+ };
33221
+ export type DigitaloceanDropletsSetErredResponses = {
33222
+ 200: SetErredResponse;
33223
+ };
33224
+ export type DigitaloceanDropletsSetErredResponse = DigitaloceanDropletsSetErredResponses[keyof DigitaloceanDropletsSetErredResponses];
33225
+ export type DigitaloceanDropletsSetOkData = {
33226
+ body?: never;
33227
+ path: {
33228
+ uuid: string;
33229
+ };
33230
+ query?: never;
33231
+ url: '/api/digitalocean-droplets/{uuid}/set_ok/';
33232
+ };
33233
+ export type DigitaloceanDropletsSetOkResponses = {
33234
+ 200: SetOkResponse;
33235
+ };
33236
+ export type DigitaloceanDropletsSetOkResponse = DigitaloceanDropletsSetOkResponses[keyof DigitaloceanDropletsSetOkResponses];
30906
33237
  export type DigitaloceanDropletsStartData = {
30907
33238
  body?: never;
30908
33239
  path: {
@@ -50981,17 +53312,25 @@ export type OpenportalAllocationsPullData = {
50981
53312
  url: '/api/openportal-allocations/{uuid}/pull/';
50982
53313
  };
50983
53314
  export type OpenportalAllocationsPullErrors = {
50984
- /**
50985
- * No response body
50986
- */
50987
- 409: unknown;
53315
+ 409: PullConflictResponse;
50988
53316
  };
53317
+ export type OpenportalAllocationsPullError = OpenportalAllocationsPullErrors[keyof OpenportalAllocationsPullErrors];
50989
53318
  export type OpenportalAllocationsPullResponses = {
50990
- /**
50991
- * No response body
50992
- */
50993
- 202: unknown;
53319
+ 202: PullResponse;
50994
53320
  };
53321
+ export type OpenportalAllocationsPullResponse = OpenportalAllocationsPullResponses[keyof OpenportalAllocationsPullResponses];
53322
+ export type OpenportalAllocationsSetErredData = {
53323
+ body?: SetErredRequest;
53324
+ path: {
53325
+ uuid: string;
53326
+ };
53327
+ query?: never;
53328
+ url: '/api/openportal-allocations/{uuid}/set_erred/';
53329
+ };
53330
+ export type OpenportalAllocationsSetErredResponses = {
53331
+ 200: SetErredResponse;
53332
+ };
53333
+ export type OpenportalAllocationsSetErredResponse = OpenportalAllocationsSetErredResponses[keyof OpenportalAllocationsSetErredResponses];
50995
53334
  export type OpenportalAllocationsSetLimitsData = {
50996
53335
  body: AllocationSetLimitsRequest;
50997
53336
  path: {
@@ -51004,6 +53343,18 @@ export type OpenportalAllocationsSetLimitsResponses = {
51004
53343
  200: AllocationSetLimits;
51005
53344
  };
51006
53345
  export type OpenportalAllocationsSetLimitsResponse = OpenportalAllocationsSetLimitsResponses[keyof OpenportalAllocationsSetLimitsResponses];
53346
+ export type OpenportalAllocationsSetOkData = {
53347
+ body?: never;
53348
+ path: {
53349
+ uuid: string;
53350
+ };
53351
+ query?: never;
53352
+ url: '/api/openportal-allocations/{uuid}/set_ok/';
53353
+ };
53354
+ export type OpenportalAllocationsSetOkResponses = {
53355
+ 200: SetOkResponse;
53356
+ };
53357
+ export type OpenportalAllocationsSetOkResponse = OpenportalAllocationsSetOkResponses[keyof OpenportalAllocationsSetOkResponses];
51007
53358
  export type OpenportalAllocationsUnlinkData = {
51008
53359
  body?: never;
51009
53360
  path: {
@@ -51789,17 +54140,25 @@ export type OpenportalRemoteAllocationsPullData = {
51789
54140
  url: '/api/openportal-remote-allocations/{uuid}/pull/';
51790
54141
  };
51791
54142
  export type OpenportalRemoteAllocationsPullErrors = {
51792
- /**
51793
- * No response body
51794
- */
51795
- 409: unknown;
54143
+ 409: PullConflictResponse;
51796
54144
  };
54145
+ export type OpenportalRemoteAllocationsPullError = OpenportalRemoteAllocationsPullErrors[keyof OpenportalRemoteAllocationsPullErrors];
51797
54146
  export type OpenportalRemoteAllocationsPullResponses = {
51798
- /**
51799
- * No response body
51800
- */
51801
- 202: unknown;
54147
+ 202: PullResponse;
54148
+ };
54149
+ export type OpenportalRemoteAllocationsPullResponse = OpenportalRemoteAllocationsPullResponses[keyof OpenportalRemoteAllocationsPullResponses];
54150
+ export type OpenportalRemoteAllocationsSetErredData = {
54151
+ body?: SetErredRequest;
54152
+ path: {
54153
+ uuid: string;
54154
+ };
54155
+ query?: never;
54156
+ url: '/api/openportal-remote-allocations/{uuid}/set_erred/';
51802
54157
  };
54158
+ export type OpenportalRemoteAllocationsSetErredResponses = {
54159
+ 200: SetErredResponse;
54160
+ };
54161
+ export type OpenportalRemoteAllocationsSetErredResponse = OpenportalRemoteAllocationsSetErredResponses[keyof OpenportalRemoteAllocationsSetErredResponses];
51803
54162
  export type OpenportalRemoteAllocationsSetLimitsData = {
51804
54163
  body: RemoteAllocationSetLimitsRequest;
51805
54164
  path: {
@@ -51812,6 +54171,18 @@ export type OpenportalRemoteAllocationsSetLimitsResponses = {
51812
54171
  200: RemoteAllocationSetLimits;
51813
54172
  };
51814
54173
  export type OpenportalRemoteAllocationsSetLimitsResponse = OpenportalRemoteAllocationsSetLimitsResponses[keyof OpenportalRemoteAllocationsSetLimitsResponses];
54174
+ export type OpenportalRemoteAllocationsSetOkData = {
54175
+ body?: never;
54176
+ path: {
54177
+ uuid: string;
54178
+ };
54179
+ query?: never;
54180
+ url: '/api/openportal-remote-allocations/{uuid}/set_ok/';
54181
+ };
54182
+ export type OpenportalRemoteAllocationsSetOkResponses = {
54183
+ 200: SetOkResponse;
54184
+ };
54185
+ export type OpenportalRemoteAllocationsSetOkResponse = OpenportalRemoteAllocationsSetOkResponses[keyof OpenportalRemoteAllocationsSetOkResponses];
51815
54186
  export type OpenportalRemoteAllocationsUnlinkData = {
51816
54187
  body?: never;
51817
54188
  path: {
@@ -52810,17 +55181,13 @@ export type OpenstackBackupsPullData = {
52810
55181
  url: '/api/openstack-backups/{uuid}/pull/';
52811
55182
  };
52812
55183
  export type OpenstackBackupsPullErrors = {
52813
- /**
52814
- * No response body
52815
- */
52816
- 409: unknown;
55184
+ 409: PullConflictResponse;
52817
55185
  };
55186
+ export type OpenstackBackupsPullError = OpenstackBackupsPullErrors[keyof OpenstackBackupsPullErrors];
52818
55187
  export type OpenstackBackupsPullResponses = {
52819
- /**
52820
- * No response body
52821
- */
52822
- 202: unknown;
55188
+ 202: PullResponse;
52823
55189
  };
55190
+ export type OpenstackBackupsPullResponse = OpenstackBackupsPullResponses[keyof OpenstackBackupsPullResponses];
52824
55191
  export type OpenstackBackupsRestoreData = {
52825
55192
  body: OpenStackBackupRestorationCreateRequest;
52826
55193
  path: {
@@ -52833,6 +55200,30 @@ export type OpenstackBackupsRestoreResponses = {
52833
55200
  200: OpenStackInstance;
52834
55201
  };
52835
55202
  export type OpenstackBackupsRestoreResponse = OpenstackBackupsRestoreResponses[keyof OpenstackBackupsRestoreResponses];
55203
+ export type OpenstackBackupsSetErredData = {
55204
+ body?: SetErredRequest;
55205
+ path: {
55206
+ uuid: string;
55207
+ };
55208
+ query?: never;
55209
+ url: '/api/openstack-backups/{uuid}/set_erred/';
55210
+ };
55211
+ export type OpenstackBackupsSetErredResponses = {
55212
+ 200: SetErredResponse;
55213
+ };
55214
+ export type OpenstackBackupsSetErredResponse = OpenstackBackupsSetErredResponses[keyof OpenstackBackupsSetErredResponses];
55215
+ export type OpenstackBackupsSetOkData = {
55216
+ body?: never;
55217
+ path: {
55218
+ uuid: string;
55219
+ };
55220
+ query?: never;
55221
+ url: '/api/openstack-backups/{uuid}/set_ok/';
55222
+ };
55223
+ export type OpenstackBackupsSetOkResponses = {
55224
+ 200: SetOkResponse;
55225
+ };
55226
+ export type OpenstackBackupsSetOkResponse = OpenstackBackupsSetOkResponses[keyof OpenstackBackupsSetOkResponses];
52836
55227
  export type OpenstackBackupsUnlinkData = {
52837
55228
  body?: never;
52838
55229
  path: {
@@ -53304,17 +55695,37 @@ export type OpenstackFloatingIpsPullData = {
53304
55695
  url: '/api/openstack-floating-ips/{uuid}/pull/';
53305
55696
  };
53306
55697
  export type OpenstackFloatingIpsPullErrors = {
53307
- /**
53308
- * No response body
53309
- */
53310
- 409: unknown;
55698
+ 409: PullConflictResponse;
53311
55699
  };
55700
+ export type OpenstackFloatingIpsPullError = OpenstackFloatingIpsPullErrors[keyof OpenstackFloatingIpsPullErrors];
53312
55701
  export type OpenstackFloatingIpsPullResponses = {
53313
- /**
53314
- * No response body
53315
- */
53316
- 202: unknown;
55702
+ 202: PullResponse;
55703
+ };
55704
+ export type OpenstackFloatingIpsPullResponse = OpenstackFloatingIpsPullResponses[keyof OpenstackFloatingIpsPullResponses];
55705
+ export type OpenstackFloatingIpsSetErredData = {
55706
+ body?: SetErredRequest;
55707
+ path: {
55708
+ uuid: string;
55709
+ };
55710
+ query?: never;
55711
+ url: '/api/openstack-floating-ips/{uuid}/set_erred/';
55712
+ };
55713
+ export type OpenstackFloatingIpsSetErredResponses = {
55714
+ 200: SetErredResponse;
55715
+ };
55716
+ export type OpenstackFloatingIpsSetErredResponse = OpenstackFloatingIpsSetErredResponses[keyof OpenstackFloatingIpsSetErredResponses];
55717
+ export type OpenstackFloatingIpsSetOkData = {
55718
+ body?: never;
55719
+ path: {
55720
+ uuid: string;
55721
+ };
55722
+ query?: never;
55723
+ url: '/api/openstack-floating-ips/{uuid}/set_ok/';
55724
+ };
55725
+ export type OpenstackFloatingIpsSetOkResponses = {
55726
+ 200: SetOkResponse;
53317
55727
  };
55728
+ export type OpenstackFloatingIpsSetOkResponse = OpenstackFloatingIpsSetOkResponses[keyof OpenstackFloatingIpsSetOkResponses];
53318
55729
  export type OpenstackFloatingIpsUnlinkData = {
53319
55730
  body?: never;
53320
55731
  path: {
@@ -53954,17 +56365,13 @@ export type OpenstackInstancesPullData = {
53954
56365
  url: '/api/openstack-instances/{uuid}/pull/';
53955
56366
  };
53956
56367
  export type OpenstackInstancesPullErrors = {
53957
- /**
53958
- * No response body
53959
- */
53960
- 409: unknown;
56368
+ 409: PullConflictResponse;
53961
56369
  };
56370
+ export type OpenstackInstancesPullError = OpenstackInstancesPullErrors[keyof OpenstackInstancesPullErrors];
53962
56371
  export type OpenstackInstancesPullResponses = {
53963
- /**
53964
- * No response body
53965
- */
53966
- 202: unknown;
56372
+ 202: PullResponse;
53967
56373
  };
56374
+ export type OpenstackInstancesPullResponse = OpenstackInstancesPullResponses[keyof OpenstackInstancesPullResponses];
53968
56375
  export type OpenstackInstancesRestartData = {
53969
56376
  body?: never;
53970
56377
  path: {
@@ -53979,6 +56386,30 @@ export type OpenstackInstancesRestartResponses = {
53979
56386
  */
53980
56387
  200: unknown;
53981
56388
  };
56389
+ export type OpenstackInstancesSetErredData = {
56390
+ body?: SetErredRequest;
56391
+ path: {
56392
+ uuid: string;
56393
+ };
56394
+ query?: never;
56395
+ url: '/api/openstack-instances/{uuid}/set_erred/';
56396
+ };
56397
+ export type OpenstackInstancesSetErredResponses = {
56398
+ 200: SetErredResponse;
56399
+ };
56400
+ export type OpenstackInstancesSetErredResponse = OpenstackInstancesSetErredResponses[keyof OpenstackInstancesSetErredResponses];
56401
+ export type OpenstackInstancesSetOkData = {
56402
+ body?: never;
56403
+ path: {
56404
+ uuid: string;
56405
+ };
56406
+ query?: never;
56407
+ url: '/api/openstack-instances/{uuid}/set_ok/';
56408
+ };
56409
+ export type OpenstackInstancesSetOkResponses = {
56410
+ 200: SetOkResponse;
56411
+ };
56412
+ export type OpenstackInstancesSetOkResponse = OpenstackInstancesSetOkResponses[keyof OpenstackInstancesSetOkResponses];
53982
56413
  export type OpenstackInstancesStartData = {
53983
56414
  body?: never;
53984
56415
  path: {
@@ -54868,17 +57299,13 @@ export type OpenstackNetworksPullData = {
54868
57299
  url: '/api/openstack-networks/{uuid}/pull/';
54869
57300
  };
54870
57301
  export type OpenstackNetworksPullErrors = {
54871
- /**
54872
- * No response body
54873
- */
54874
- 409: unknown;
57302
+ 409: PullConflictResponse;
54875
57303
  };
57304
+ export type OpenstackNetworksPullError = OpenstackNetworksPullErrors[keyof OpenstackNetworksPullErrors];
54876
57305
  export type OpenstackNetworksPullResponses = {
54877
- /**
54878
- * No response body
54879
- */
54880
- 202: unknown;
57306
+ 202: PullResponse;
54881
57307
  };
57308
+ export type OpenstackNetworksPullResponse = OpenstackNetworksPullResponses[keyof OpenstackNetworksPullResponses];
54882
57309
  export type OpenstackNetworksRbacPolicyCreateData = {
54883
57310
  body: DeprecatedNetworkRbacPolicyRequest;
54884
57311
  path: {
@@ -54910,6 +57337,18 @@ export type OpenstackNetworksRbacPolicyDeleteDestroyResponses = {
54910
57337
  204: void;
54911
57338
  };
54912
57339
  export type OpenstackNetworksRbacPolicyDeleteDestroyResponse = OpenstackNetworksRbacPolicyDeleteDestroyResponses[keyof OpenstackNetworksRbacPolicyDeleteDestroyResponses];
57340
+ export type OpenstackNetworksSetErredData = {
57341
+ body?: SetErredRequest;
57342
+ path: {
57343
+ uuid: string;
57344
+ };
57345
+ query?: never;
57346
+ url: '/api/openstack-networks/{uuid}/set_erred/';
57347
+ };
57348
+ export type OpenstackNetworksSetErredResponses = {
57349
+ 200: SetErredResponse;
57350
+ };
57351
+ export type OpenstackNetworksSetErredResponse = OpenstackNetworksSetErredResponses[keyof OpenstackNetworksSetErredResponses];
54913
57352
  export type OpenstackNetworksSetMtuData = {
54914
57353
  body: SetMtuRequest;
54915
57354
  path: {
@@ -54922,6 +57361,18 @@ export type OpenstackNetworksSetMtuResponses = {
54922
57361
  200: SetMtu;
54923
57362
  };
54924
57363
  export type OpenstackNetworksSetMtuResponse = OpenstackNetworksSetMtuResponses[keyof OpenstackNetworksSetMtuResponses];
57364
+ export type OpenstackNetworksSetOkData = {
57365
+ body?: never;
57366
+ path: {
57367
+ uuid: string;
57368
+ };
57369
+ query?: never;
57370
+ url: '/api/openstack-networks/{uuid}/set_ok/';
57371
+ };
57372
+ export type OpenstackNetworksSetOkResponses = {
57373
+ 200: SetOkResponse;
57374
+ };
57375
+ export type OpenstackNetworksSetOkResponse = OpenstackNetworksSetOkResponses[keyof OpenstackNetworksSetOkResponses];
54925
57376
  export type OpenstackNetworksUnlinkData = {
54926
57377
  body?: never;
54927
57378
  path: {
@@ -55210,17 +57661,37 @@ export type OpenstackPortsPullData = {
55210
57661
  url: '/api/openstack-ports/{uuid}/pull/';
55211
57662
  };
55212
57663
  export type OpenstackPortsPullErrors = {
55213
- /**
55214
- * No response body
55215
- */
55216
- 409: unknown;
57664
+ 409: PullConflictResponse;
55217
57665
  };
57666
+ export type OpenstackPortsPullError = OpenstackPortsPullErrors[keyof OpenstackPortsPullErrors];
55218
57667
  export type OpenstackPortsPullResponses = {
55219
- /**
55220
- * No response body
55221
- */
55222
- 202: unknown;
57668
+ 202: PullResponse;
55223
57669
  };
57670
+ export type OpenstackPortsPullResponse = OpenstackPortsPullResponses[keyof OpenstackPortsPullResponses];
57671
+ export type OpenstackPortsSetErredData = {
57672
+ body?: SetErredRequest;
57673
+ path: {
57674
+ uuid: string;
57675
+ };
57676
+ query?: never;
57677
+ url: '/api/openstack-ports/{uuid}/set_erred/';
57678
+ };
57679
+ export type OpenstackPortsSetErredResponses = {
57680
+ 200: SetErredResponse;
57681
+ };
57682
+ export type OpenstackPortsSetErredResponse = OpenstackPortsSetErredResponses[keyof OpenstackPortsSetErredResponses];
57683
+ export type OpenstackPortsSetOkData = {
57684
+ body?: never;
57685
+ path: {
57686
+ uuid: string;
57687
+ };
57688
+ query?: never;
57689
+ url: '/api/openstack-ports/{uuid}/set_ok/';
57690
+ };
57691
+ export type OpenstackPortsSetOkResponses = {
57692
+ 200: SetOkResponse;
57693
+ };
57694
+ export type OpenstackPortsSetOkResponse = OpenstackPortsSetOkResponses[keyof OpenstackPortsSetOkResponses];
55224
57695
  export type OpenstackPortsUnlinkData = {
55225
57696
  body?: never;
55226
57697
  path: {
@@ -55416,6 +57887,30 @@ export type OpenstackRoutersRemoveRouterInterfaceResponses = {
55416
57887
  */
55417
57888
  200: unknown;
55418
57889
  };
57890
+ export type OpenstackRoutersSetErredData = {
57891
+ body?: SetErredRequest;
57892
+ path: {
57893
+ uuid: string;
57894
+ };
57895
+ query?: never;
57896
+ url: '/api/openstack-routers/{uuid}/set_erred/';
57897
+ };
57898
+ export type OpenstackRoutersSetErredResponses = {
57899
+ 200: RouterSetErredResponse;
57900
+ };
57901
+ export type OpenstackRoutersSetErredResponse = OpenstackRoutersSetErredResponses[keyof OpenstackRoutersSetErredResponses];
57902
+ export type OpenstackRoutersSetOkData = {
57903
+ body?: never;
57904
+ path: {
57905
+ uuid: string;
57906
+ };
57907
+ query?: never;
57908
+ url: '/api/openstack-routers/{uuid}/set_ok/';
57909
+ };
57910
+ export type OpenstackRoutersSetOkResponses = {
57911
+ 200: RouterSetOkResponse;
57912
+ };
57913
+ export type OpenstackRoutersSetOkResponse = OpenstackRoutersSetOkResponses[keyof OpenstackRoutersSetOkResponses];
55419
57914
  export type OpenstackRoutersSetRoutesData = {
55420
57915
  body: OpenStackRouterSetRoutesRequest;
55421
57916
  path: {
@@ -55703,17 +58198,37 @@ export type OpenstackSecurityGroupsPullData = {
55703
58198
  url: '/api/openstack-security-groups/{uuid}/pull/';
55704
58199
  };
55705
58200
  export type OpenstackSecurityGroupsPullErrors = {
55706
- /**
55707
- * No response body
55708
- */
55709
- 409: unknown;
58201
+ 409: PullConflictResponse;
55710
58202
  };
58203
+ export type OpenstackSecurityGroupsPullError = OpenstackSecurityGroupsPullErrors[keyof OpenstackSecurityGroupsPullErrors];
55711
58204
  export type OpenstackSecurityGroupsPullResponses = {
55712
- /**
55713
- * No response body
55714
- */
55715
- 202: unknown;
58205
+ 202: PullResponse;
55716
58206
  };
58207
+ export type OpenstackSecurityGroupsPullResponse = OpenstackSecurityGroupsPullResponses[keyof OpenstackSecurityGroupsPullResponses];
58208
+ export type OpenstackSecurityGroupsSetErredData = {
58209
+ body?: SetErredRequest;
58210
+ path: {
58211
+ uuid: string;
58212
+ };
58213
+ query?: never;
58214
+ url: '/api/openstack-security-groups/{uuid}/set_erred/';
58215
+ };
58216
+ export type OpenstackSecurityGroupsSetErredResponses = {
58217
+ 200: SetErredResponse;
58218
+ };
58219
+ export type OpenstackSecurityGroupsSetErredResponse = OpenstackSecurityGroupsSetErredResponses[keyof OpenstackSecurityGroupsSetErredResponses];
58220
+ export type OpenstackSecurityGroupsSetOkData = {
58221
+ body?: never;
58222
+ path: {
58223
+ uuid: string;
58224
+ };
58225
+ query?: never;
58226
+ url: '/api/openstack-security-groups/{uuid}/set_ok/';
58227
+ };
58228
+ export type OpenstackSecurityGroupsSetOkResponses = {
58229
+ 200: SetOkResponse;
58230
+ };
58231
+ export type OpenstackSecurityGroupsSetOkResponse = OpenstackSecurityGroupsSetOkResponses[keyof OpenstackSecurityGroupsSetOkResponses];
55717
58232
  export type OpenstackSecurityGroupsSetRulesData = {
55718
58233
  body: Array<OpenStackSecurityGroupRuleUpdateRequest>;
55719
58234
  path: {
@@ -56020,17 +58535,37 @@ export type OpenstackServerGroupsPullData = {
56020
58535
  url: '/api/openstack-server-groups/{uuid}/pull/';
56021
58536
  };
56022
58537
  export type OpenstackServerGroupsPullErrors = {
56023
- /**
56024
- * No response body
56025
- */
56026
- 409: unknown;
58538
+ 409: PullConflictResponse;
56027
58539
  };
58540
+ export type OpenstackServerGroupsPullError = OpenstackServerGroupsPullErrors[keyof OpenstackServerGroupsPullErrors];
56028
58541
  export type OpenstackServerGroupsPullResponses = {
56029
- /**
56030
- * No response body
56031
- */
56032
- 202: unknown;
58542
+ 202: PullResponse;
58543
+ };
58544
+ export type OpenstackServerGroupsPullResponse = OpenstackServerGroupsPullResponses[keyof OpenstackServerGroupsPullResponses];
58545
+ export type OpenstackServerGroupsSetErredData = {
58546
+ body?: SetErredRequest;
58547
+ path: {
58548
+ uuid: string;
58549
+ };
58550
+ query?: never;
58551
+ url: '/api/openstack-server-groups/{uuid}/set_erred/';
58552
+ };
58553
+ export type OpenstackServerGroupsSetErredResponses = {
58554
+ 200: SetErredResponse;
58555
+ };
58556
+ export type OpenstackServerGroupsSetErredResponse = OpenstackServerGroupsSetErredResponses[keyof OpenstackServerGroupsSetErredResponses];
58557
+ export type OpenstackServerGroupsSetOkData = {
58558
+ body?: never;
58559
+ path: {
58560
+ uuid: string;
58561
+ };
58562
+ query?: never;
58563
+ url: '/api/openstack-server-groups/{uuid}/set_ok/';
58564
+ };
58565
+ export type OpenstackServerGroupsSetOkResponses = {
58566
+ 200: SetOkResponse;
56033
58567
  };
58568
+ export type OpenstackServerGroupsSetOkResponse = OpenstackServerGroupsSetOkResponses[keyof OpenstackServerGroupsSetOkResponses];
56034
58569
  export type OpenstackServerGroupsUnlinkData = {
56035
58570
  body?: never;
56036
58571
  path: {
@@ -56347,17 +58882,13 @@ export type OpenstackSnapshotsPullData = {
56347
58882
  url: '/api/openstack-snapshots/{uuid}/pull/';
56348
58883
  };
56349
58884
  export type OpenstackSnapshotsPullErrors = {
56350
- /**
56351
- * No response body
56352
- */
56353
- 409: unknown;
58885
+ 409: PullConflictResponse;
56354
58886
  };
58887
+ export type OpenstackSnapshotsPullError = OpenstackSnapshotsPullErrors[keyof OpenstackSnapshotsPullErrors];
56355
58888
  export type OpenstackSnapshotsPullResponses = {
56356
- /**
56357
- * No response body
56358
- */
56359
- 202: unknown;
58889
+ 202: PullResponse;
56360
58890
  };
58891
+ export type OpenstackSnapshotsPullResponse = OpenstackSnapshotsPullResponses[keyof OpenstackSnapshotsPullResponses];
56361
58892
  export type OpenstackSnapshotsRestorationsListData = {
56362
58893
  body?: never;
56363
58894
  path: {
@@ -56391,6 +58922,30 @@ export type OpenstackSnapshotsRestoreResponses = {
56391
58922
  200: OpenStackVolume;
56392
58923
  };
56393
58924
  export type OpenstackSnapshotsRestoreResponse = OpenstackSnapshotsRestoreResponses[keyof OpenstackSnapshotsRestoreResponses];
58925
+ export type OpenstackSnapshotsSetErredData = {
58926
+ body?: SetErredRequest;
58927
+ path: {
58928
+ uuid: string;
58929
+ };
58930
+ query?: never;
58931
+ url: '/api/openstack-snapshots/{uuid}/set_erred/';
58932
+ };
58933
+ export type OpenstackSnapshotsSetErredResponses = {
58934
+ 200: SetErredResponse;
58935
+ };
58936
+ export type OpenstackSnapshotsSetErredResponse = OpenstackSnapshotsSetErredResponses[keyof OpenstackSnapshotsSetErredResponses];
58937
+ export type OpenstackSnapshotsSetOkData = {
58938
+ body?: never;
58939
+ path: {
58940
+ uuid: string;
58941
+ };
58942
+ query?: never;
58943
+ url: '/api/openstack-snapshots/{uuid}/set_ok/';
58944
+ };
58945
+ export type OpenstackSnapshotsSetOkResponses = {
58946
+ 200: SetOkResponse;
58947
+ };
58948
+ export type OpenstackSnapshotsSetOkResponse = OpenstackSnapshotsSetOkResponses[keyof OpenstackSnapshotsSetOkResponses];
56394
58949
  export type OpenstackSnapshotsUnlinkData = {
56395
58950
  body?: never;
56396
58951
  path: {
@@ -56737,17 +59292,37 @@ export type OpenstackSubnetsPullData = {
56737
59292
  url: '/api/openstack-subnets/{uuid}/pull/';
56738
59293
  };
56739
59294
  export type OpenstackSubnetsPullErrors = {
56740
- /**
56741
- * No response body
56742
- */
56743
- 409: unknown;
59295
+ 409: PullConflictResponse;
56744
59296
  };
59297
+ export type OpenstackSubnetsPullError = OpenstackSubnetsPullErrors[keyof OpenstackSubnetsPullErrors];
56745
59298
  export type OpenstackSubnetsPullResponses = {
56746
- /**
56747
- * No response body
56748
- */
56749
- 202: unknown;
59299
+ 202: PullResponse;
59300
+ };
59301
+ export type OpenstackSubnetsPullResponse = OpenstackSubnetsPullResponses[keyof OpenstackSubnetsPullResponses];
59302
+ export type OpenstackSubnetsSetErredData = {
59303
+ body?: SetErredRequest;
59304
+ path: {
59305
+ uuid: string;
59306
+ };
59307
+ query?: never;
59308
+ url: '/api/openstack-subnets/{uuid}/set_erred/';
59309
+ };
59310
+ export type OpenstackSubnetsSetErredResponses = {
59311
+ 200: SetErredResponse;
56750
59312
  };
59313
+ export type OpenstackSubnetsSetErredResponse = OpenstackSubnetsSetErredResponses[keyof OpenstackSubnetsSetErredResponses];
59314
+ export type OpenstackSubnetsSetOkData = {
59315
+ body?: never;
59316
+ path: {
59317
+ uuid: string;
59318
+ };
59319
+ query?: never;
59320
+ url: '/api/openstack-subnets/{uuid}/set_ok/';
59321
+ };
59322
+ export type OpenstackSubnetsSetOkResponses = {
59323
+ 200: SetOkResponse;
59324
+ };
59325
+ export type OpenstackSubnetsSetOkResponse = OpenstackSubnetsSetOkResponses[keyof OpenstackSubnetsSetOkResponses];
56751
59326
  export type OpenstackSubnetsUnlinkData = {
56752
59327
  body?: never;
56753
59328
  path: {
@@ -57251,17 +59826,13 @@ export type OpenstackTenantsPullData = {
57251
59826
  url: '/api/openstack-tenants/{uuid}/pull/';
57252
59827
  };
57253
59828
  export type OpenstackTenantsPullErrors = {
57254
- /**
57255
- * No response body
57256
- */
57257
- 409: unknown;
59829
+ 409: PullConflictResponse;
57258
59830
  };
59831
+ export type OpenstackTenantsPullError = OpenstackTenantsPullErrors[keyof OpenstackTenantsPullErrors];
57259
59832
  export type OpenstackTenantsPullResponses = {
57260
- /**
57261
- * No response body
57262
- */
57263
- 202: unknown;
59833
+ 202: PullResponse;
57264
59834
  };
59835
+ export type OpenstackTenantsPullResponse = OpenstackTenantsPullResponses[keyof OpenstackTenantsPullResponses];
57265
59836
  export type OpenstackTenantsPullFloatingIpsData = {
57266
59837
  body?: never;
57267
59838
  path: {
@@ -57328,6 +59899,30 @@ export type OpenstackTenantsPushSecurityGroupsResponses = {
57328
59899
  */
57329
59900
  200: unknown;
57330
59901
  };
59902
+ export type OpenstackTenantsSetErredData = {
59903
+ body?: SetErredRequest;
59904
+ path: {
59905
+ uuid: string;
59906
+ };
59907
+ query?: never;
59908
+ url: '/api/openstack-tenants/{uuid}/set_erred/';
59909
+ };
59910
+ export type OpenstackTenantsSetErredResponses = {
59911
+ 200: SetErredResponse;
59912
+ };
59913
+ export type OpenstackTenantsSetErredResponse = OpenstackTenantsSetErredResponses[keyof OpenstackTenantsSetErredResponses];
59914
+ export type OpenstackTenantsSetOkData = {
59915
+ body?: never;
59916
+ path: {
59917
+ uuid: string;
59918
+ };
59919
+ query?: never;
59920
+ url: '/api/openstack-tenants/{uuid}/set_ok/';
59921
+ };
59922
+ export type OpenstackTenantsSetOkResponses = {
59923
+ 200: SetOkResponse;
59924
+ };
59925
+ export type OpenstackTenantsSetOkResponse = OpenstackTenantsSetOkResponses[keyof OpenstackTenantsSetOkResponses];
57331
59926
  export type OpenstackTenantsSetQuotasData = {
57332
59927
  body?: OpenStackTenantQuotaRequest;
57333
59928
  path: {
@@ -57929,17 +60524,13 @@ export type OpenstackVolumesPullData = {
57929
60524
  url: '/api/openstack-volumes/{uuid}/pull/';
57930
60525
  };
57931
60526
  export type OpenstackVolumesPullErrors = {
57932
- /**
57933
- * No response body
57934
- */
57935
- 409: unknown;
60527
+ 409: PullConflictResponse;
57936
60528
  };
60529
+ export type OpenstackVolumesPullError = OpenstackVolumesPullErrors[keyof OpenstackVolumesPullErrors];
57937
60530
  export type OpenstackVolumesPullResponses = {
57938
- /**
57939
- * No response body
57940
- */
57941
- 202: unknown;
60531
+ 202: PullResponse;
57942
60532
  };
60533
+ export type OpenstackVolumesPullResponse = OpenstackVolumesPullResponses[keyof OpenstackVolumesPullResponses];
57943
60534
  export type OpenstackVolumesRetypeData = {
57944
60535
  body: OpenStackVolumeRetypeRequest;
57945
60536
  path: {
@@ -57954,6 +60545,30 @@ export type OpenstackVolumesRetypeResponses = {
57954
60545
  */
57955
60546
  200: unknown;
57956
60547
  };
60548
+ export type OpenstackVolumesSetErredData = {
60549
+ body?: SetErredRequest;
60550
+ path: {
60551
+ uuid: string;
60552
+ };
60553
+ query?: never;
60554
+ url: '/api/openstack-volumes/{uuid}/set_erred/';
60555
+ };
60556
+ export type OpenstackVolumesSetErredResponses = {
60557
+ 200: SetErredResponse;
60558
+ };
60559
+ export type OpenstackVolumesSetErredResponse = OpenstackVolumesSetErredResponses[keyof OpenstackVolumesSetErredResponses];
60560
+ export type OpenstackVolumesSetOkData = {
60561
+ body?: never;
60562
+ path: {
60563
+ uuid: string;
60564
+ };
60565
+ query?: never;
60566
+ url: '/api/openstack-volumes/{uuid}/set_ok/';
60567
+ };
60568
+ export type OpenstackVolumesSetOkResponses = {
60569
+ 200: SetOkResponse;
60570
+ };
60571
+ export type OpenstackVolumesSetOkResponse = OpenstackVolumesSetOkResponses[keyof OpenstackVolumesSetOkResponses];
57957
60572
  export type OpenstackVolumesSnapshotData = {
57958
60573
  body: OpenStackSnapshotRequest;
57959
60574
  path: {
@@ -62243,17 +64858,37 @@ export type RancherAppsPullData = {
62243
64858
  url: '/api/rancher-apps/{uuid}/pull/';
62244
64859
  };
62245
64860
  export type RancherAppsPullErrors = {
62246
- /**
62247
- * No response body
62248
- */
62249
- 409: unknown;
64861
+ 409: PullConflictResponse;
62250
64862
  };
64863
+ export type RancherAppsPullError = RancherAppsPullErrors[keyof RancherAppsPullErrors];
62251
64864
  export type RancherAppsPullResponses = {
62252
- /**
62253
- * No response body
62254
- */
62255
- 202: unknown;
64865
+ 202: PullResponse;
62256
64866
  };
64867
+ export type RancherAppsPullResponse = RancherAppsPullResponses[keyof RancherAppsPullResponses];
64868
+ export type RancherAppsSetErredData = {
64869
+ body?: SetErredRequest;
64870
+ path: {
64871
+ uuid: string;
64872
+ };
64873
+ query?: never;
64874
+ url: '/api/rancher-apps/{uuid}/set_erred/';
64875
+ };
64876
+ export type RancherAppsSetErredResponses = {
64877
+ 200: SetErredResponse;
64878
+ };
64879
+ export type RancherAppsSetErredResponse = RancherAppsSetErredResponses[keyof RancherAppsSetErredResponses];
64880
+ export type RancherAppsSetOkData = {
64881
+ body?: never;
64882
+ path: {
64883
+ uuid: string;
64884
+ };
64885
+ query?: never;
64886
+ url: '/api/rancher-apps/{uuid}/set_ok/';
64887
+ };
64888
+ export type RancherAppsSetOkResponses = {
64889
+ 200: SetOkResponse;
64890
+ };
64891
+ export type RancherAppsSetOkResponse = RancherAppsSetOkResponses[keyof RancherAppsSetOkResponses];
62257
64892
  export type RancherAppsUnlinkData = {
62258
64893
  body?: never;
62259
64894
  path: {
@@ -62788,17 +65423,37 @@ export type RancherClustersPullData = {
62788
65423
  url: '/api/rancher-clusters/{uuid}/pull/';
62789
65424
  };
62790
65425
  export type RancherClustersPullErrors = {
62791
- /**
62792
- * No response body
62793
- */
62794
- 409: unknown;
65426
+ 409: PullConflictResponse;
62795
65427
  };
65428
+ export type RancherClustersPullError = RancherClustersPullErrors[keyof RancherClustersPullErrors];
62796
65429
  export type RancherClustersPullResponses = {
62797
- /**
62798
- * No response body
62799
- */
62800
- 202: unknown;
65430
+ 202: PullResponse;
65431
+ };
65432
+ export type RancherClustersPullResponse = RancherClustersPullResponses[keyof RancherClustersPullResponses];
65433
+ export type RancherClustersSetErredData = {
65434
+ body?: SetErredRequest;
65435
+ path: {
65436
+ uuid: string;
65437
+ };
65438
+ query?: never;
65439
+ url: '/api/rancher-clusters/{uuid}/set_erred/';
65440
+ };
65441
+ export type RancherClustersSetErredResponses = {
65442
+ 200: SetErredResponse;
65443
+ };
65444
+ export type RancherClustersSetErredResponse = RancherClustersSetErredResponses[keyof RancherClustersSetErredResponses];
65445
+ export type RancherClustersSetOkData = {
65446
+ body?: never;
65447
+ path: {
65448
+ uuid: string;
65449
+ };
65450
+ query?: never;
65451
+ url: '/api/rancher-clusters/{uuid}/set_ok/';
65452
+ };
65453
+ export type RancherClustersSetOkResponses = {
65454
+ 200: SetOkResponse;
62801
65455
  };
65456
+ export type RancherClustersSetOkResponse = RancherClustersSetOkResponses[keyof RancherClustersSetOkResponses];
62802
65457
  export type RancherClustersUnlinkData = {
62803
65458
  body?: never;
62804
65459
  path: {
@@ -62964,17 +65619,37 @@ export type RancherHpasPullData = {
62964
65619
  url: '/api/rancher-hpas/{uuid}/pull/';
62965
65620
  };
62966
65621
  export type RancherHpasPullErrors = {
62967
- /**
62968
- * No response body
62969
- */
62970
- 409: unknown;
65622
+ 409: PullConflictResponse;
62971
65623
  };
65624
+ export type RancherHpasPullError = RancherHpasPullErrors[keyof RancherHpasPullErrors];
62972
65625
  export type RancherHpasPullResponses = {
62973
- /**
62974
- * No response body
62975
- */
62976
- 202: unknown;
65626
+ 202: PullResponse;
65627
+ };
65628
+ export type RancherHpasPullResponse = RancherHpasPullResponses[keyof RancherHpasPullResponses];
65629
+ export type RancherHpasSetErredData = {
65630
+ body?: SetErredRequest;
65631
+ path: {
65632
+ uuid: string;
65633
+ };
65634
+ query?: never;
65635
+ url: '/api/rancher-hpas/{uuid}/set_erred/';
65636
+ };
65637
+ export type RancherHpasSetErredResponses = {
65638
+ 200: SetErredResponse;
65639
+ };
65640
+ export type RancherHpasSetErredResponse = RancherHpasSetErredResponses[keyof RancherHpasSetErredResponses];
65641
+ export type RancherHpasSetOkData = {
65642
+ body?: never;
65643
+ path: {
65644
+ uuid: string;
65645
+ };
65646
+ query?: never;
65647
+ url: '/api/rancher-hpas/{uuid}/set_ok/';
62977
65648
  };
65649
+ export type RancherHpasSetOkResponses = {
65650
+ 200: SetOkResponse;
65651
+ };
65652
+ export type RancherHpasSetOkResponse = RancherHpasSetOkResponses[keyof RancherHpasSetOkResponses];
62978
65653
  export type RancherHpasUnlinkData = {
62979
65654
  body?: never;
62980
65655
  path: {
@@ -63281,17 +65956,37 @@ export type RancherIngressesPullData = {
63281
65956
  url: '/api/rancher-ingresses/{uuid}/pull/';
63282
65957
  };
63283
65958
  export type RancherIngressesPullErrors = {
63284
- /**
63285
- * No response body
63286
- */
63287
- 409: unknown;
65959
+ 409: PullConflictResponse;
63288
65960
  };
65961
+ export type RancherIngressesPullError = RancherIngressesPullErrors[keyof RancherIngressesPullErrors];
63289
65962
  export type RancherIngressesPullResponses = {
63290
- /**
63291
- * No response body
63292
- */
63293
- 202: unknown;
65963
+ 202: PullResponse;
65964
+ };
65965
+ export type RancherIngressesPullResponse = RancherIngressesPullResponses[keyof RancherIngressesPullResponses];
65966
+ export type RancherIngressesSetErredData = {
65967
+ body?: SetErredRequest;
65968
+ path: {
65969
+ uuid: string;
65970
+ };
65971
+ query?: never;
65972
+ url: '/api/rancher-ingresses/{uuid}/set_erred/';
63294
65973
  };
65974
+ export type RancherIngressesSetErredResponses = {
65975
+ 200: SetErredResponse;
65976
+ };
65977
+ export type RancherIngressesSetErredResponse = RancherIngressesSetErredResponses[keyof RancherIngressesSetErredResponses];
65978
+ export type RancherIngressesSetOkData = {
65979
+ body?: never;
65980
+ path: {
65981
+ uuid: string;
65982
+ };
65983
+ query?: never;
65984
+ url: '/api/rancher-ingresses/{uuid}/set_ok/';
65985
+ };
65986
+ export type RancherIngressesSetOkResponses = {
65987
+ 200: SetOkResponse;
65988
+ };
65989
+ export type RancherIngressesSetOkResponse = RancherIngressesSetOkResponses[keyof RancherIngressesSetOkResponses];
63295
65990
  export type RancherIngressesUnlinkData = {
63296
65991
  body?: never;
63297
65992
  path: {
@@ -63567,17 +66262,37 @@ export type RancherNodesPullData = {
63567
66262
  url: '/api/rancher-nodes/{uuid}/pull/';
63568
66263
  };
63569
66264
  export type RancherNodesPullErrors = {
63570
- /**
63571
- * No response body
63572
- */
63573
- 409: unknown;
66265
+ 409: PullConflictResponse;
63574
66266
  };
66267
+ export type RancherNodesPullError = RancherNodesPullErrors[keyof RancherNodesPullErrors];
63575
66268
  export type RancherNodesPullResponses = {
63576
- /**
63577
- * No response body
63578
- */
63579
- 202: unknown;
66269
+ 202: PullResponse;
63580
66270
  };
66271
+ export type RancherNodesPullResponse = RancherNodesPullResponses[keyof RancherNodesPullResponses];
66272
+ export type RancherNodesSetErredData = {
66273
+ body?: SetErredRequest;
66274
+ path: {
66275
+ uuid: string;
66276
+ };
66277
+ query?: never;
66278
+ url: '/api/rancher-nodes/{uuid}/set_erred/';
66279
+ };
66280
+ export type RancherNodesSetErredResponses = {
66281
+ 200: SetErredResponse;
66282
+ };
66283
+ export type RancherNodesSetErredResponse = RancherNodesSetErredResponses[keyof RancherNodesSetErredResponses];
66284
+ export type RancherNodesSetOkData = {
66285
+ body?: never;
66286
+ path: {
66287
+ uuid: string;
66288
+ };
66289
+ query?: never;
66290
+ url: '/api/rancher-nodes/{uuid}/set_ok/';
66291
+ };
66292
+ export type RancherNodesSetOkResponses = {
66293
+ 200: SetOkResponse;
66294
+ };
66295
+ export type RancherNodesSetOkResponse = RancherNodesSetOkResponses[keyof RancherNodesSetOkResponses];
63581
66296
  export type RancherNodesUnlinkData = {
63582
66297
  body?: never;
63583
66298
  path: {
@@ -64042,17 +66757,37 @@ export type RancherServicesPullData = {
64042
66757
  url: '/api/rancher-services/{uuid}/pull/';
64043
66758
  };
64044
66759
  export type RancherServicesPullErrors = {
64045
- /**
64046
- * No response body
64047
- */
64048
- 409: unknown;
66760
+ 409: PullConflictResponse;
64049
66761
  };
66762
+ export type RancherServicesPullError = RancherServicesPullErrors[keyof RancherServicesPullErrors];
64050
66763
  export type RancherServicesPullResponses = {
64051
- /**
64052
- * No response body
64053
- */
64054
- 202: unknown;
66764
+ 202: PullResponse;
66765
+ };
66766
+ export type RancherServicesPullResponse = RancherServicesPullResponses[keyof RancherServicesPullResponses];
66767
+ export type RancherServicesSetErredData = {
66768
+ body?: SetErredRequest;
66769
+ path: {
66770
+ uuid: string;
66771
+ };
66772
+ query?: never;
66773
+ url: '/api/rancher-services/{uuid}/set_erred/';
66774
+ };
66775
+ export type RancherServicesSetErredResponses = {
66776
+ 200: SetErredResponse;
66777
+ };
66778
+ export type RancherServicesSetErredResponse = RancherServicesSetErredResponses[keyof RancherServicesSetErredResponses];
66779
+ export type RancherServicesSetOkData = {
66780
+ body?: never;
66781
+ path: {
66782
+ uuid: string;
66783
+ };
66784
+ query?: never;
66785
+ url: '/api/rancher-services/{uuid}/set_ok/';
66786
+ };
66787
+ export type RancherServicesSetOkResponses = {
66788
+ 200: SetOkResponse;
64055
66789
  };
66790
+ export type RancherServicesSetOkResponse = RancherServicesSetOkResponses[keyof RancherServicesSetOkResponses];
64056
66791
  export type RancherServicesUnlinkData = {
64057
66792
  body?: never;
64058
66793
  path: {
@@ -66436,17 +69171,25 @@ export type SlurmAllocationsPullData = {
66436
69171
  url: '/api/slurm-allocations/{uuid}/pull/';
66437
69172
  };
66438
69173
  export type SlurmAllocationsPullErrors = {
66439
- /**
66440
- * No response body
66441
- */
66442
- 409: unknown;
69174
+ 409: PullConflictResponse;
66443
69175
  };
69176
+ export type SlurmAllocationsPullError = SlurmAllocationsPullErrors[keyof SlurmAllocationsPullErrors];
66444
69177
  export type SlurmAllocationsPullResponses = {
66445
- /**
66446
- * No response body
66447
- */
66448
- 202: unknown;
69178
+ 202: PullResponse;
69179
+ };
69180
+ export type SlurmAllocationsPullResponse = SlurmAllocationsPullResponses[keyof SlurmAllocationsPullResponses];
69181
+ export type SlurmAllocationsSetErredData = {
69182
+ body?: SetErredRequest;
69183
+ path: {
69184
+ uuid: string;
69185
+ };
69186
+ query?: never;
69187
+ url: '/api/slurm-allocations/{uuid}/set_erred/';
69188
+ };
69189
+ export type SlurmAllocationsSetErredResponses = {
69190
+ 200: SetErredResponse;
66449
69191
  };
69192
+ export type SlurmAllocationsSetErredResponse = SlurmAllocationsSetErredResponses[keyof SlurmAllocationsSetErredResponses];
66450
69193
  export type SlurmAllocationsSetLimitsData = {
66451
69194
  body: SlurmAllocationSetLimitsRequest;
66452
69195
  path: {
@@ -66459,6 +69202,18 @@ export type SlurmAllocationsSetLimitsResponses = {
66459
69202
  200: SlurmAllocationSetLimits;
66460
69203
  };
66461
69204
  export type SlurmAllocationsSetLimitsResponse = SlurmAllocationsSetLimitsResponses[keyof SlurmAllocationsSetLimitsResponses];
69205
+ export type SlurmAllocationsSetOkData = {
69206
+ body?: never;
69207
+ path: {
69208
+ uuid: string;
69209
+ };
69210
+ query?: never;
69211
+ url: '/api/slurm-allocations/{uuid}/set_ok/';
69212
+ };
69213
+ export type SlurmAllocationsSetOkResponses = {
69214
+ 200: SetOkResponse;
69215
+ };
69216
+ export type SlurmAllocationsSetOkResponse = SlurmAllocationsSetOkResponses[keyof SlurmAllocationsSetOkResponses];
66462
69217
  export type SlurmAllocationsUnlinkData = {
66463
69218
  body?: never;
66464
69219
  path: {
@@ -66643,17 +69398,37 @@ export type SlurmJobsPullData = {
66643
69398
  url: '/api/slurm-jobs/{uuid}/pull/';
66644
69399
  };
66645
69400
  export type SlurmJobsPullErrors = {
66646
- /**
66647
- * No response body
66648
- */
66649
- 409: unknown;
69401
+ 409: PullConflictResponse;
66650
69402
  };
69403
+ export type SlurmJobsPullError = SlurmJobsPullErrors[keyof SlurmJobsPullErrors];
66651
69404
  export type SlurmJobsPullResponses = {
66652
- /**
66653
- * No response body
66654
- */
66655
- 202: unknown;
69405
+ 202: PullResponse;
69406
+ };
69407
+ export type SlurmJobsPullResponse = SlurmJobsPullResponses[keyof SlurmJobsPullResponses];
69408
+ export type SlurmJobsSetErredData = {
69409
+ body?: SetErredRequest;
69410
+ path: {
69411
+ uuid: string;
69412
+ };
69413
+ query?: never;
69414
+ url: '/api/slurm-jobs/{uuid}/set_erred/';
69415
+ };
69416
+ export type SlurmJobsSetErredResponses = {
69417
+ 200: SetErredResponse;
69418
+ };
69419
+ export type SlurmJobsSetErredResponse = SlurmJobsSetErredResponses[keyof SlurmJobsSetErredResponses];
69420
+ export type SlurmJobsSetOkData = {
69421
+ body?: never;
69422
+ path: {
69423
+ uuid: string;
69424
+ };
69425
+ query?: never;
69426
+ url: '/api/slurm-jobs/{uuid}/set_ok/';
69427
+ };
69428
+ export type SlurmJobsSetOkResponses = {
69429
+ 200: SetOkResponse;
66656
69430
  };
69431
+ export type SlurmJobsSetOkResponse = SlurmJobsSetOkResponses[keyof SlurmJobsSetOkResponses];
66657
69432
  export type SlurmJobsUnlinkData = {
66658
69433
  body?: never;
66659
69434
  path: {
@@ -69813,6 +72588,16 @@ export type UsersProfileCompletenessCountResponses = {
69813
72588
  */
69814
72589
  200: unknown;
69815
72590
  };
72591
+ export type UsersScimSyncAllData = {
72592
+ body?: never;
72593
+ path?: never;
72594
+ query?: never;
72595
+ url: '/api/users/scim_sync_all/';
72596
+ };
72597
+ export type UsersScimSyncAllResponses = {
72598
+ 200: ScimSyncAllResponse;
72599
+ };
72600
+ export type UsersScimSyncAllResponse = UsersScimSyncAllResponses[keyof UsersScimSyncAllResponses];
69816
72601
  export type UsersUserActiveStatusCountListData = {
69817
72602
  body?: never;
69818
72603
  path?: never;
@@ -70886,17 +73671,37 @@ export type VmwareDisksPullData = {
70886
73671
  url: '/api/vmware-disks/{uuid}/pull/';
70887
73672
  };
70888
73673
  export type VmwareDisksPullErrors = {
70889
- /**
70890
- * No response body
70891
- */
70892
- 409: unknown;
73674
+ 409: PullConflictResponse;
70893
73675
  };
73676
+ export type VmwareDisksPullError = VmwareDisksPullErrors[keyof VmwareDisksPullErrors];
70894
73677
  export type VmwareDisksPullResponses = {
70895
- /**
70896
- * No response body
70897
- */
70898
- 202: unknown;
73678
+ 202: PullResponse;
73679
+ };
73680
+ export type VmwareDisksPullResponse = VmwareDisksPullResponses[keyof VmwareDisksPullResponses];
73681
+ export type VmwareDisksSetErredData = {
73682
+ body?: SetErredRequest;
73683
+ path: {
73684
+ uuid: string;
73685
+ };
73686
+ query?: never;
73687
+ url: '/api/vmware-disks/{uuid}/set_erred/';
73688
+ };
73689
+ export type VmwareDisksSetErredResponses = {
73690
+ 200: SetErredResponse;
73691
+ };
73692
+ export type VmwareDisksSetErredResponse = VmwareDisksSetErredResponses[keyof VmwareDisksSetErredResponses];
73693
+ export type VmwareDisksSetOkData = {
73694
+ body?: never;
73695
+ path: {
73696
+ uuid: string;
73697
+ };
73698
+ query?: never;
73699
+ url: '/api/vmware-disks/{uuid}/set_ok/';
73700
+ };
73701
+ export type VmwareDisksSetOkResponses = {
73702
+ 200: SetOkResponse;
70899
73703
  };
73704
+ export type VmwareDisksSetOkResponse = VmwareDisksSetOkResponses[keyof VmwareDisksSetOkResponses];
70900
73705
  export type VmwareDisksUnlinkData = {
70901
73706
  body?: never;
70902
73707
  path: {
@@ -71351,17 +74156,37 @@ export type VmwarePortsPullData = {
71351
74156
  url: '/api/vmware-ports/{uuid}/pull/';
71352
74157
  };
71353
74158
  export type VmwarePortsPullErrors = {
71354
- /**
71355
- * No response body
71356
- */
71357
- 409: unknown;
74159
+ 409: PullConflictResponse;
71358
74160
  };
74161
+ export type VmwarePortsPullError = VmwarePortsPullErrors[keyof VmwarePortsPullErrors];
71359
74162
  export type VmwarePortsPullResponses = {
71360
- /**
71361
- * No response body
71362
- */
71363
- 202: unknown;
74163
+ 202: PullResponse;
74164
+ };
74165
+ export type VmwarePortsPullResponse = VmwarePortsPullResponses[keyof VmwarePortsPullResponses];
74166
+ export type VmwarePortsSetErredData = {
74167
+ body?: SetErredRequest;
74168
+ path: {
74169
+ uuid: string;
74170
+ };
74171
+ query?: never;
74172
+ url: '/api/vmware-ports/{uuid}/set_erred/';
74173
+ };
74174
+ export type VmwarePortsSetErredResponses = {
74175
+ 200: SetErredResponse;
74176
+ };
74177
+ export type VmwarePortsSetErredResponse = VmwarePortsSetErredResponses[keyof VmwarePortsSetErredResponses];
74178
+ export type VmwarePortsSetOkData = {
74179
+ body?: never;
74180
+ path: {
74181
+ uuid: string;
74182
+ };
74183
+ query?: never;
74184
+ url: '/api/vmware-ports/{uuid}/set_ok/';
71364
74185
  };
74186
+ export type VmwarePortsSetOkResponses = {
74187
+ 200: SetOkResponse;
74188
+ };
74189
+ export type VmwarePortsSetOkResponse = VmwarePortsSetOkResponses[keyof VmwarePortsSetOkResponses];
71365
74190
  export type VmwarePortsUnlinkData = {
71366
74191
  body?: never;
71367
74192
  path: {
@@ -71760,17 +74585,13 @@ export type VmwareVirtualMachinePullData = {
71760
74585
  url: '/api/vmware-virtual-machine/{uuid}/pull/';
71761
74586
  };
71762
74587
  export type VmwareVirtualMachinePullErrors = {
71763
- /**
71764
- * No response body
71765
- */
71766
- 409: unknown;
74588
+ 409: PullConflictResponse;
71767
74589
  };
74590
+ export type VmwareVirtualMachinePullError = VmwareVirtualMachinePullErrors[keyof VmwareVirtualMachinePullErrors];
71768
74591
  export type VmwareVirtualMachinePullResponses = {
71769
- /**
71770
- * No response body
71771
- */
71772
- 202: unknown;
74592
+ 202: PullResponse;
71773
74593
  };
74594
+ export type VmwareVirtualMachinePullResponse = VmwareVirtualMachinePullResponses[keyof VmwareVirtualMachinePullResponses];
71774
74595
  export type VmwareVirtualMachineRebootGuestData = {
71775
74596
  body?: never;
71776
74597
  path: {
@@ -71799,6 +74620,30 @@ export type VmwareVirtualMachineResetResponses = {
71799
74620
  */
71800
74621
  200: unknown;
71801
74622
  };
74623
+ export type VmwareVirtualMachineSetErredData = {
74624
+ body?: SetErredRequest;
74625
+ path: {
74626
+ uuid: string;
74627
+ };
74628
+ query?: never;
74629
+ url: '/api/vmware-virtual-machine/{uuid}/set_erred/';
74630
+ };
74631
+ export type VmwareVirtualMachineSetErredResponses = {
74632
+ 200: SetErredResponse;
74633
+ };
74634
+ export type VmwareVirtualMachineSetErredResponse = VmwareVirtualMachineSetErredResponses[keyof VmwareVirtualMachineSetErredResponses];
74635
+ export type VmwareVirtualMachineSetOkData = {
74636
+ body?: never;
74637
+ path: {
74638
+ uuid: string;
74639
+ };
74640
+ query?: never;
74641
+ url: '/api/vmware-virtual-machine/{uuid}/set_ok/';
74642
+ };
74643
+ export type VmwareVirtualMachineSetOkResponses = {
74644
+ 200: SetOkResponse;
74645
+ };
74646
+ export type VmwareVirtualMachineSetOkResponse = VmwareVirtualMachineSetOkResponses[keyof VmwareVirtualMachineSetOkResponses];
71802
74647
  export type VmwareVirtualMachineShutdownGuestData = {
71803
74648
  body?: never;
71804
74649
  path: {