waldur-js-client 7.9.6-dev.0 → 7.9.6-dev.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/sdk.gen.d.ts +48 -3
- package/dist/sdk.gen.js +221 -7
- package/dist/types.gen.d.ts +487 -38
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -2329,7 +2329,6 @@ export type CoreAuthToken = {
|
|
|
2329
2329
|
export type CoreStates = 'CREATION_SCHEDULED' | 'CREATING' | 'UPDATE_SCHEDULED' | 'UPDATING' | 'DELETION_SCHEDULED' | 'DELETING' | 'OK' | 'ERRED';
|
|
2330
2330
|
export type CorrectiveAction = {
|
|
2331
2331
|
label: string;
|
|
2332
|
-
url: string;
|
|
2333
2332
|
category: CategoryEnum;
|
|
2334
2333
|
severity: SeverityEnum;
|
|
2335
2334
|
method?: string;
|
|
@@ -2339,6 +2338,10 @@ export type CorrectiveAction = {
|
|
|
2339
2338
|
metadata?: {
|
|
2340
2339
|
[key: string]: unknown;
|
|
2341
2340
|
};
|
|
2341
|
+
route_name?: string | null;
|
|
2342
|
+
route_params?: {
|
|
2343
|
+
[key: string]: unknown;
|
|
2344
|
+
};
|
|
2342
2345
|
};
|
|
2343
2346
|
export type CostsForPeriod = {
|
|
2344
2347
|
readonly total_price: string;
|
|
@@ -2607,6 +2610,12 @@ export type Customer = {
|
|
|
2607
2610
|
* Number of extra days after project end date before resources are terminated
|
|
2608
2611
|
*/
|
|
2609
2612
|
grace_period_days?: number | null;
|
|
2613
|
+
user_email_patterns?: unknown;
|
|
2614
|
+
user_affiliations?: unknown;
|
|
2615
|
+
/**
|
|
2616
|
+
* List of allowed identity sources (identity providers).
|
|
2617
|
+
*/
|
|
2618
|
+
user_identity_sources?: unknown;
|
|
2610
2619
|
name?: string;
|
|
2611
2620
|
/**
|
|
2612
2621
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -2873,6 +2882,12 @@ export type CustomerRequest = {
|
|
|
2873
2882
|
* Number of extra days after project end date before resources are terminated
|
|
2874
2883
|
*/
|
|
2875
2884
|
grace_period_days?: number | null;
|
|
2885
|
+
user_email_patterns?: unknown;
|
|
2886
|
+
user_affiliations?: unknown;
|
|
2887
|
+
/**
|
|
2888
|
+
* List of allowed identity sources (identity providers).
|
|
2889
|
+
*/
|
|
2890
|
+
user_identity_sources?: unknown;
|
|
2876
2891
|
name: string;
|
|
2877
2892
|
/**
|
|
2878
2893
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -3682,10 +3697,6 @@ export type GroupInvitation = {
|
|
|
3682
3697
|
*/
|
|
3683
3698
|
role: string;
|
|
3684
3699
|
readonly created: string;
|
|
3685
|
-
/**
|
|
3686
|
-
* Expiration date and time of the invitation
|
|
3687
|
-
*/
|
|
3688
|
-
readonly expires: string;
|
|
3689
3700
|
readonly is_active: boolean;
|
|
3690
3701
|
/**
|
|
3691
3702
|
* Allow non-authenticated users to see and accept this invitation. Only staff can create public invitations.
|
|
@@ -3695,6 +3706,10 @@ export type GroupInvitation = {
|
|
|
3695
3706
|
* Create project and grant project permissions instead of customer permissions
|
|
3696
3707
|
*/
|
|
3697
3708
|
auto_create_project?: boolean;
|
|
3709
|
+
/**
|
|
3710
|
+
* Automatically approve permission requests from users matching email patterns or affiliations
|
|
3711
|
+
*/
|
|
3712
|
+
auto_approve?: boolean;
|
|
3698
3713
|
/**
|
|
3699
3714
|
* Template for project name. Supports {username}, {email}, {full_name} variables
|
|
3700
3715
|
*/
|
|
@@ -3705,6 +3720,10 @@ export type GroupInvitation = {
|
|
|
3705
3720
|
project_role?: string | null;
|
|
3706
3721
|
user_affiliations?: unknown;
|
|
3707
3722
|
user_email_patterns?: unknown;
|
|
3723
|
+
/**
|
|
3724
|
+
* List of allowed identity sources (identity providers).
|
|
3725
|
+
*/
|
|
3726
|
+
user_identity_sources?: unknown;
|
|
3708
3727
|
/**
|
|
3709
3728
|
* Image URL of the invitation scope (Customer or Project)
|
|
3710
3729
|
*/
|
|
@@ -3727,6 +3746,10 @@ export type GroupInvitationRequest = {
|
|
|
3727
3746
|
* Create project and grant project permissions instead of customer permissions
|
|
3728
3747
|
*/
|
|
3729
3748
|
auto_create_project?: boolean;
|
|
3749
|
+
/**
|
|
3750
|
+
* Automatically approve permission requests from users matching email patterns or affiliations
|
|
3751
|
+
*/
|
|
3752
|
+
auto_approve?: boolean;
|
|
3730
3753
|
/**
|
|
3731
3754
|
* Template for project name. Supports {username}, {email}, {full_name} variables
|
|
3732
3755
|
*/
|
|
@@ -3737,6 +3760,10 @@ export type GroupInvitationRequest = {
|
|
|
3737
3760
|
project_role?: string | null;
|
|
3738
3761
|
user_affiliations?: unknown;
|
|
3739
3762
|
user_email_patterns?: unknown;
|
|
3763
|
+
/**
|
|
3764
|
+
* List of allowed identity sources (identity providers).
|
|
3765
|
+
*/
|
|
3766
|
+
user_identity_sources?: unknown;
|
|
3740
3767
|
};
|
|
3741
3768
|
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';
|
|
3742
3769
|
export type GuestPowerStateEnum = 'RUNNING' | 'SHUTTING_DOWN' | 'RESETTING' | 'STANDBY' | 'NOT_RUNNING' | 'UNAVAILABLE';
|
|
@@ -6783,6 +6810,10 @@ export type OfferingCost = {
|
|
|
6783
6810
|
* UUID of the offering
|
|
6784
6811
|
*/
|
|
6785
6812
|
offering_uuid: string;
|
|
6813
|
+
/**
|
|
6814
|
+
* Name of the offering
|
|
6815
|
+
*/
|
|
6816
|
+
offering_name: string;
|
|
6786
6817
|
/**
|
|
6787
6818
|
* Total cost for the offering
|
|
6788
6819
|
*/
|
|
@@ -7821,6 +7852,7 @@ export type OnboardingVerification = {
|
|
|
7821
7852
|
*/
|
|
7822
7853
|
legal_name?: string;
|
|
7823
7854
|
status: OnboardingVerificationStatusEnum;
|
|
7855
|
+
readonly justifications: Array<OnboardingJustification>;
|
|
7824
7856
|
/**
|
|
7825
7857
|
* Method used for validation
|
|
7826
7858
|
*/
|
|
@@ -9674,7 +9706,7 @@ export type OrderDetails = {
|
|
|
9674
9706
|
readonly order_subtype?: string | null;
|
|
9675
9707
|
issue?: IssueReference | null;
|
|
9676
9708
|
};
|
|
9677
|
-
export type
|
|
9709
|
+
export type OrderErrorDetailsRequest = {
|
|
9678
9710
|
error_message?: string;
|
|
9679
9711
|
error_traceback?: string;
|
|
9680
9712
|
};
|
|
@@ -9912,6 +9944,12 @@ export type PatchedCustomerRequest = {
|
|
|
9912
9944
|
* Number of extra days after project end date before resources are terminated
|
|
9913
9945
|
*/
|
|
9914
9946
|
grace_period_days?: number | null;
|
|
9947
|
+
user_email_patterns?: unknown;
|
|
9948
|
+
user_affiliations?: unknown;
|
|
9949
|
+
/**
|
|
9950
|
+
* List of allowed identity sources (identity providers).
|
|
9951
|
+
*/
|
|
9952
|
+
user_identity_sources?: unknown;
|
|
9915
9953
|
name?: string;
|
|
9916
9954
|
/**
|
|
9917
9955
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -10574,6 +10612,12 @@ export type PatchedProjectRequest = {
|
|
|
10574
10612
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
10575
10613
|
*/
|
|
10576
10614
|
grace_period_days?: number | null;
|
|
10615
|
+
user_email_patterns?: unknown;
|
|
10616
|
+
user_affiliations?: unknown;
|
|
10617
|
+
/**
|
|
10618
|
+
* List of allowed identity sources (identity providers).
|
|
10619
|
+
*/
|
|
10620
|
+
user_identity_sources?: unknown;
|
|
10577
10621
|
};
|
|
10578
10622
|
export type PatchedProjectServiceAccountRequest = {
|
|
10579
10623
|
username?: string;
|
|
@@ -11473,6 +11517,12 @@ export type Project = {
|
|
|
11473
11517
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
11474
11518
|
*/
|
|
11475
11519
|
grace_period_days?: number | null;
|
|
11520
|
+
user_email_patterns?: unknown;
|
|
11521
|
+
user_affiliations?: unknown;
|
|
11522
|
+
/**
|
|
11523
|
+
* List of allowed identity sources (identity providers).
|
|
11524
|
+
*/
|
|
11525
|
+
user_identity_sources?: unknown;
|
|
11476
11526
|
readonly project_credit?: number | null;
|
|
11477
11527
|
readonly marketplace_resource_count?: {
|
|
11478
11528
|
[key: string]: number;
|
|
@@ -11726,6 +11776,12 @@ export type ProjectRequest = {
|
|
|
11726
11776
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
11727
11777
|
*/
|
|
11728
11778
|
grace_period_days?: number | null;
|
|
11779
|
+
user_email_patterns?: unknown;
|
|
11780
|
+
user_affiliations?: unknown;
|
|
11781
|
+
/**
|
|
11782
|
+
* List of allowed identity sources (identity providers).
|
|
11783
|
+
*/
|
|
11784
|
+
user_identity_sources?: unknown;
|
|
11729
11785
|
};
|
|
11730
11786
|
export type ProjectServiceAccount = {
|
|
11731
11787
|
readonly url: string;
|
|
@@ -14278,6 +14334,52 @@ export type ResourcePlanPeriod = {
|
|
|
14278
14334
|
end?: string | null;
|
|
14279
14335
|
components: Array<BaseComponentUsage>;
|
|
14280
14336
|
};
|
|
14337
|
+
export type ResourceProvisioningStats = {
|
|
14338
|
+
/**
|
|
14339
|
+
* UUID of the offering
|
|
14340
|
+
*/
|
|
14341
|
+
readonly offering_uuid: string;
|
|
14342
|
+
/**
|
|
14343
|
+
* Name of the offering
|
|
14344
|
+
*/
|
|
14345
|
+
readonly offering_name: string;
|
|
14346
|
+
/**
|
|
14347
|
+
* UUID of the service provider
|
|
14348
|
+
*/
|
|
14349
|
+
readonly service_provider_uuid: string;
|
|
14350
|
+
/**
|
|
14351
|
+
* Name of the service provider
|
|
14352
|
+
*/
|
|
14353
|
+
readonly service_provider_name: string;
|
|
14354
|
+
/**
|
|
14355
|
+
* Total finished provisioning attempts (DONE + ERRED)
|
|
14356
|
+
*/
|
|
14357
|
+
readonly provisioning_count: number;
|
|
14358
|
+
/**
|
|
14359
|
+
* Total successful provisioning attempts (DONE)
|
|
14360
|
+
*/
|
|
14361
|
+
readonly provisioning_success_count: number;
|
|
14362
|
+
/**
|
|
14363
|
+
* Total failed provisioning attempts (ERRED)
|
|
14364
|
+
*/
|
|
14365
|
+
readonly provisioning_error_count: number;
|
|
14366
|
+
/**
|
|
14367
|
+
* Total currently in-progress provisioning attempts
|
|
14368
|
+
*/
|
|
14369
|
+
readonly provisioning_in_progress_count: number;
|
|
14370
|
+
/**
|
|
14371
|
+
* Rate of successful provisioning (0.0 to 1.0)
|
|
14372
|
+
*/
|
|
14373
|
+
readonly provisioning_success_rate: number;
|
|
14374
|
+
/**
|
|
14375
|
+
* Average duration in seconds from Executing to Terminal state
|
|
14376
|
+
*/
|
|
14377
|
+
readonly avg_provisioning_duration: number;
|
|
14378
|
+
/**
|
|
14379
|
+
* Average duration in seconds from Creation to Executing state
|
|
14380
|
+
*/
|
|
14381
|
+
readonly avg_pending_duration: number;
|
|
14382
|
+
};
|
|
14281
14383
|
export type ResourceReallocateLimitsRequest = {
|
|
14282
14384
|
limits: {
|
|
14283
14385
|
[key: string]: number;
|
|
@@ -15546,6 +15648,10 @@ export type SubmitRequestResponse = {
|
|
|
15546
15648
|
* UUID of the invitation scope
|
|
15547
15649
|
*/
|
|
15548
15650
|
scope_uuid: string;
|
|
15651
|
+
/**
|
|
15652
|
+
* Whether the request was automatically approved
|
|
15653
|
+
*/
|
|
15654
|
+
auto_approved: boolean;
|
|
15549
15655
|
};
|
|
15550
15656
|
export type SubresourceOffering = {
|
|
15551
15657
|
/**
|
|
@@ -15816,8 +15922,6 @@ export type UserAction = {
|
|
|
15816
15922
|
description: string;
|
|
15817
15923
|
urgency: UrgencyEnum;
|
|
15818
15924
|
due_date?: string | null;
|
|
15819
|
-
action_url?: string;
|
|
15820
|
-
metadata?: string;
|
|
15821
15925
|
is_silenced?: boolean;
|
|
15822
15926
|
silenced_until?: string | null;
|
|
15823
15927
|
readonly is_temporarily_silenced: boolean;
|
|
@@ -15828,6 +15932,20 @@ export type UserAction = {
|
|
|
15828
15932
|
readonly related_object_type: string;
|
|
15829
15933
|
readonly corrective_actions: Array<CorrectiveAction>;
|
|
15830
15934
|
readonly days_until_due: number | null;
|
|
15935
|
+
/**
|
|
15936
|
+
* UI-Router state name for navigation
|
|
15937
|
+
*/
|
|
15938
|
+
route_name?: string;
|
|
15939
|
+
/**
|
|
15940
|
+
* Parameters for route navigation
|
|
15941
|
+
*/
|
|
15942
|
+
route_params?: string;
|
|
15943
|
+
project_name?: string;
|
|
15944
|
+
project_uuid?: string | null;
|
|
15945
|
+
organization_name?: string;
|
|
15946
|
+
organization_uuid?: string | null;
|
|
15947
|
+
offering_name?: string;
|
|
15948
|
+
offering_type?: string;
|
|
15831
15949
|
};
|
|
15832
15950
|
export type UserActionExecution = {
|
|
15833
15951
|
readonly id: number;
|
|
@@ -15857,6 +15975,16 @@ export type UserActionSummary = {
|
|
|
15857
15975
|
};
|
|
15858
15976
|
overdue: number;
|
|
15859
15977
|
};
|
|
15978
|
+
export type UserAffiliationCount = {
|
|
15979
|
+
/**
|
|
15980
|
+
* Affiliation name
|
|
15981
|
+
*/
|
|
15982
|
+
affiliation: string;
|
|
15983
|
+
/**
|
|
15984
|
+
* Number of users
|
|
15985
|
+
*/
|
|
15986
|
+
count: number;
|
|
15987
|
+
};
|
|
15860
15988
|
export type UserAgreement = {
|
|
15861
15989
|
readonly url: string;
|
|
15862
15990
|
readonly uuid: string;
|
|
@@ -15869,6 +15997,16 @@ export type UserAgreementRequest = {
|
|
|
15869
15997
|
content: string;
|
|
15870
15998
|
agreement_type: AgreementTypeEnum;
|
|
15871
15999
|
};
|
|
16000
|
+
export type UserAuthMethodCount = {
|
|
16001
|
+
/**
|
|
16002
|
+
* Authentication method
|
|
16003
|
+
*/
|
|
16004
|
+
method: string;
|
|
16005
|
+
/**
|
|
16006
|
+
* Number of users
|
|
16007
|
+
*/
|
|
16008
|
+
count: number;
|
|
16009
|
+
};
|
|
15872
16010
|
export type UserAuthToken = {
|
|
15873
16011
|
readonly created: string;
|
|
15874
16012
|
readonly user_first_name: string;
|
|
@@ -15930,6 +16068,16 @@ export type UserConsentInfo = {
|
|
|
15930
16068
|
export type UserEmailChangeRequest = {
|
|
15931
16069
|
email: string;
|
|
15932
16070
|
};
|
|
16071
|
+
export type UserIdentitySourceCount = {
|
|
16072
|
+
/**
|
|
16073
|
+
* Identity source
|
|
16074
|
+
*/
|
|
16075
|
+
identity_source: string;
|
|
16076
|
+
/**
|
|
16077
|
+
* Number of users
|
|
16078
|
+
*/
|
|
16079
|
+
count: number;
|
|
16080
|
+
};
|
|
15933
16081
|
export type UserInfo = {
|
|
15934
16082
|
/**
|
|
15935
16083
|
* A short, unique name for you. It will be used to form your local username on any systems. Should only contain lower-case letters and digits and must start with a letter.
|
|
@@ -15977,6 +16125,16 @@ export type UserOfferingConsentCreateRequest = {
|
|
|
15977
16125
|
export type UserOfferingConsentRequest = {
|
|
15978
16126
|
version?: string;
|
|
15979
16127
|
};
|
|
16128
|
+
export type UserOrganizationCount = {
|
|
16129
|
+
/**
|
|
16130
|
+
* Organization name
|
|
16131
|
+
*/
|
|
16132
|
+
organization: string;
|
|
16133
|
+
/**
|
|
16134
|
+
* Number of users
|
|
16135
|
+
*/
|
|
16136
|
+
count: number;
|
|
16137
|
+
};
|
|
15980
16138
|
export type UserRequest = {
|
|
15981
16139
|
/**
|
|
15982
16140
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
@@ -16729,6 +16887,12 @@ export type CustomerRequestForm = {
|
|
|
16729
16887
|
* Number of extra days after project end date before resources are terminated
|
|
16730
16888
|
*/
|
|
16731
16889
|
grace_period_days?: number | null;
|
|
16890
|
+
user_email_patterns?: unknown;
|
|
16891
|
+
user_affiliations?: unknown;
|
|
16892
|
+
/**
|
|
16893
|
+
* List of allowed identity sources (identity providers).
|
|
16894
|
+
*/
|
|
16895
|
+
user_identity_sources?: unknown;
|
|
16732
16896
|
name: string;
|
|
16733
16897
|
/**
|
|
16734
16898
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -16800,6 +16964,12 @@ export type CustomerRequestMultipart = {
|
|
|
16800
16964
|
* Number of extra days after project end date before resources are terminated
|
|
16801
16965
|
*/
|
|
16802
16966
|
grace_period_days?: number | null;
|
|
16967
|
+
user_email_patterns?: unknown;
|
|
16968
|
+
user_affiliations?: unknown;
|
|
16969
|
+
/**
|
|
16970
|
+
* List of allowed identity sources (identity providers).
|
|
16971
|
+
*/
|
|
16972
|
+
user_identity_sources?: unknown;
|
|
16803
16973
|
name: string;
|
|
16804
16974
|
/**
|
|
16805
16975
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -16871,6 +17041,12 @@ export type PatchedCustomerRequestForm = {
|
|
|
16871
17041
|
* Number of extra days after project end date before resources are terminated
|
|
16872
17042
|
*/
|
|
16873
17043
|
grace_period_days?: number | null;
|
|
17044
|
+
user_email_patterns?: unknown;
|
|
17045
|
+
user_affiliations?: unknown;
|
|
17046
|
+
/**
|
|
17047
|
+
* List of allowed identity sources (identity providers).
|
|
17048
|
+
*/
|
|
17049
|
+
user_identity_sources?: unknown;
|
|
16874
17050
|
name?: string;
|
|
16875
17051
|
/**
|
|
16876
17052
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -16942,6 +17118,12 @@ export type PatchedCustomerRequestMultipart = {
|
|
|
16942
17118
|
* Number of extra days after project end date before resources are terminated
|
|
16943
17119
|
*/
|
|
16944
17120
|
grace_period_days?: number | null;
|
|
17121
|
+
user_email_patterns?: unknown;
|
|
17122
|
+
user_affiliations?: unknown;
|
|
17123
|
+
/**
|
|
17124
|
+
* List of allowed identity sources (identity providers).
|
|
17125
|
+
*/
|
|
17126
|
+
user_identity_sources?: unknown;
|
|
16945
17127
|
name?: string;
|
|
16946
17128
|
/**
|
|
16947
17129
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -17359,6 +17541,12 @@ export type ProjectRequestForm = {
|
|
|
17359
17541
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
17360
17542
|
*/
|
|
17361
17543
|
grace_period_days?: number | null;
|
|
17544
|
+
user_email_patterns?: unknown;
|
|
17545
|
+
user_affiliations?: unknown;
|
|
17546
|
+
/**
|
|
17547
|
+
* List of allowed identity sources (identity providers).
|
|
17548
|
+
*/
|
|
17549
|
+
user_identity_sources?: unknown;
|
|
17362
17550
|
};
|
|
17363
17551
|
export type ProjectRequestMultipart = {
|
|
17364
17552
|
name: string;
|
|
@@ -17402,6 +17590,12 @@ export type ProjectRequestMultipart = {
|
|
|
17402
17590
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
17403
17591
|
*/
|
|
17404
17592
|
grace_period_days?: number | null;
|
|
17593
|
+
user_email_patterns?: unknown;
|
|
17594
|
+
user_affiliations?: unknown;
|
|
17595
|
+
/**
|
|
17596
|
+
* List of allowed identity sources (identity providers).
|
|
17597
|
+
*/
|
|
17598
|
+
user_identity_sources?: unknown;
|
|
17405
17599
|
};
|
|
17406
17600
|
export type PatchedProjectRequestForm = {
|
|
17407
17601
|
name?: string;
|
|
@@ -17445,6 +17639,12 @@ export type PatchedProjectRequestForm = {
|
|
|
17445
17639
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
17446
17640
|
*/
|
|
17447
17641
|
grace_period_days?: number | null;
|
|
17642
|
+
user_email_patterns?: unknown;
|
|
17643
|
+
user_affiliations?: unknown;
|
|
17644
|
+
/**
|
|
17645
|
+
* List of allowed identity sources (identity providers).
|
|
17646
|
+
*/
|
|
17647
|
+
user_identity_sources?: unknown;
|
|
17448
17648
|
};
|
|
17449
17649
|
export type PatchedProjectRequestMultipart = {
|
|
17450
17650
|
name?: string;
|
|
@@ -17488,6 +17688,12 @@ export type PatchedProjectRequestMultipart = {
|
|
|
17488
17688
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
17489
17689
|
*/
|
|
17490
17690
|
grace_period_days?: number | null;
|
|
17691
|
+
user_email_patterns?: unknown;
|
|
17692
|
+
user_affiliations?: unknown;
|
|
17693
|
+
/**
|
|
17694
|
+
* List of allowed identity sources (identity providers).
|
|
17695
|
+
*/
|
|
17696
|
+
user_identity_sources?: unknown;
|
|
17491
17697
|
};
|
|
17492
17698
|
export type ConstanceSettingsRequestForm = {
|
|
17493
17699
|
SITE_NAME?: string;
|
|
@@ -21448,6 +21654,10 @@ export type BookingResourcesListData = {
|
|
|
21448
21654
|
* Has termination date
|
|
21449
21655
|
*/
|
|
21450
21656
|
has_terminate_date?: boolean;
|
|
21657
|
+
/**
|
|
21658
|
+
* Filter by attached state
|
|
21659
|
+
*/
|
|
21660
|
+
is_attached?: boolean;
|
|
21451
21661
|
/**
|
|
21452
21662
|
* LEXIS links supported
|
|
21453
21663
|
*/
|
|
@@ -21620,6 +21830,10 @@ export type BookingResourcesCountData = {
|
|
|
21620
21830
|
* Has termination date
|
|
21621
21831
|
*/
|
|
21622
21832
|
has_terminate_date?: boolean;
|
|
21833
|
+
/**
|
|
21834
|
+
* Filter by attached state
|
|
21835
|
+
*/
|
|
21836
|
+
is_attached?: boolean;
|
|
21623
21837
|
/**
|
|
21624
21838
|
* LEXIS links supported
|
|
21625
21839
|
*/
|
|
@@ -22914,6 +23128,10 @@ export type ChecklistsAdminQuestionsListData = {
|
|
|
22914
23128
|
*/
|
|
22915
23129
|
checklist_type?: 'customer_onboarding' | 'offering_compliance' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
|
|
22916
23130
|
checklist_uuid?: string;
|
|
23131
|
+
/**
|
|
23132
|
+
* Filter questions that have onboarding metadata mapping
|
|
23133
|
+
*/
|
|
23134
|
+
has_onboarding_mapping?: boolean;
|
|
22917
23135
|
/**
|
|
22918
23136
|
* A page number within the paginated result set.
|
|
22919
23137
|
*/
|
|
@@ -22940,6 +23158,10 @@ export type ChecklistsAdminQuestionsCountData = {
|
|
|
22940
23158
|
*/
|
|
22941
23159
|
checklist_type?: 'customer_onboarding' | 'offering_compliance' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
|
|
22942
23160
|
checklist_uuid?: string;
|
|
23161
|
+
/**
|
|
23162
|
+
* Filter questions that have onboarding metadata mapping
|
|
23163
|
+
*/
|
|
23164
|
+
has_onboarding_mapping?: boolean;
|
|
22943
23165
|
/**
|
|
22944
23166
|
* A page number within the paginated result set.
|
|
22945
23167
|
*/
|
|
@@ -23590,7 +23812,7 @@ export type CustomersListData = {
|
|
|
23590
23812
|
* Contact details
|
|
23591
23813
|
*/
|
|
23592
23814
|
contact_details?: string;
|
|
23593
|
-
field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'grace_period_days' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
|
|
23815
|
+
field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'grace_period_days' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'users_count' | 'uuid' | 'vat_code'>;
|
|
23594
23816
|
/**
|
|
23595
23817
|
* Name
|
|
23596
23818
|
*/
|
|
@@ -23916,7 +24138,7 @@ export type CustomersRetrieveData = {
|
|
|
23916
24138
|
uuid: string;
|
|
23917
24139
|
};
|
|
23918
24140
|
query?: {
|
|
23919
|
-
field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'grace_period_days' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
|
|
24141
|
+
field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'grace_period_days' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'users_count' | 'uuid' | 'vat_code'>;
|
|
23920
24142
|
};
|
|
23921
24143
|
url: '/api/customers/{uuid}/';
|
|
23922
24144
|
};
|
|
@@ -31560,7 +31782,7 @@ export type MarketplaceOrdersOfferingRetrieveResponses = {
|
|
|
31560
31782
|
};
|
|
31561
31783
|
export type MarketplaceOrdersOfferingRetrieveResponse = MarketplaceOrdersOfferingRetrieveResponses[keyof MarketplaceOrdersOfferingRetrieveResponses];
|
|
31562
31784
|
export type MarketplaceOrdersRejectByConsumerData = {
|
|
31563
|
-
body?:
|
|
31785
|
+
body?: OrderErrorDetailsRequest;
|
|
31564
31786
|
path: {
|
|
31565
31787
|
uuid: string;
|
|
31566
31788
|
};
|
|
@@ -31616,7 +31838,7 @@ export type MarketplaceOrdersSetStateDoneResponses = {
|
|
|
31616
31838
|
200: unknown;
|
|
31617
31839
|
};
|
|
31618
31840
|
export type MarketplaceOrdersSetStateErredData = {
|
|
31619
|
-
body?:
|
|
31841
|
+
body?: OrderErrorDetailsRequest;
|
|
31620
31842
|
path: {
|
|
31621
31843
|
uuid: string;
|
|
31622
31844
|
};
|
|
@@ -33646,7 +33868,7 @@ export type MarketplaceProviderOfferingsListCustomerProjectsListData = {
|
|
|
33646
33868
|
uuid: string;
|
|
33647
33869
|
};
|
|
33648
33870
|
query?: {
|
|
33649
|
-
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
33871
|
+
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid'>;
|
|
33650
33872
|
/**
|
|
33651
33873
|
* A page number within the paginated result set.
|
|
33652
33874
|
*/
|
|
@@ -34820,6 +35042,10 @@ export type MarketplaceProviderResourcesListData = {
|
|
|
34820
35042
|
* Has termination date
|
|
34821
35043
|
*/
|
|
34822
35044
|
has_terminate_date?: boolean;
|
|
35045
|
+
/**
|
|
35046
|
+
* Filter by attached state
|
|
35047
|
+
*/
|
|
35048
|
+
is_attached?: boolean;
|
|
34823
35049
|
/**
|
|
34824
35050
|
* LEXIS links supported
|
|
34825
35051
|
*/
|
|
@@ -34991,6 +35217,10 @@ export type MarketplaceProviderResourcesCountData = {
|
|
|
34991
35217
|
* Has termination date
|
|
34992
35218
|
*/
|
|
34993
35219
|
has_terminate_date?: boolean;
|
|
35220
|
+
/**
|
|
35221
|
+
* Filter by attached state
|
|
35222
|
+
*/
|
|
35223
|
+
is_attached?: boolean;
|
|
34994
35224
|
/**
|
|
34995
35225
|
* LEXIS links supported
|
|
34996
35226
|
*/
|
|
@@ -36201,6 +36431,10 @@ export type MarketplaceResourcesListData = {
|
|
|
36201
36431
|
* Has termination date
|
|
36202
36432
|
*/
|
|
36203
36433
|
has_terminate_date?: boolean;
|
|
36434
|
+
/**
|
|
36435
|
+
* Filter by attached state
|
|
36436
|
+
*/
|
|
36437
|
+
is_attached?: boolean;
|
|
36204
36438
|
/**
|
|
36205
36439
|
* LEXIS links supported
|
|
36206
36440
|
*/
|
|
@@ -36372,6 +36606,10 @@ export type MarketplaceResourcesCountData = {
|
|
|
36372
36606
|
* Has termination date
|
|
36373
36607
|
*/
|
|
36374
36608
|
has_terminate_date?: boolean;
|
|
36609
|
+
/**
|
|
36610
|
+
* Filter by attached state
|
|
36611
|
+
*/
|
|
36612
|
+
is_attached?: boolean;
|
|
36375
36613
|
/**
|
|
36376
36614
|
* LEXIS links supported
|
|
36377
36615
|
*/
|
|
@@ -38188,7 +38426,7 @@ export type MarketplaceServiceProvidersProjectsListData = {
|
|
|
38188
38426
|
* Description
|
|
38189
38427
|
*/
|
|
38190
38428
|
description?: string;
|
|
38191
|
-
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
38429
|
+
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid'>;
|
|
38192
38430
|
/**
|
|
38193
38431
|
* Is removed
|
|
38194
38432
|
*/
|
|
@@ -40384,6 +40622,54 @@ export type MarketplaceStatsProjectsUsagesGroupedByOecdCountResponses = {
|
|
|
40384
40622
|
*/
|
|
40385
40623
|
200: unknown;
|
|
40386
40624
|
};
|
|
40625
|
+
export type MarketplaceStatsResourceProvisioningStatsListData = {
|
|
40626
|
+
body?: never;
|
|
40627
|
+
path?: never;
|
|
40628
|
+
query?: {
|
|
40629
|
+
/**
|
|
40630
|
+
* Filter by last N minutes. Default is 60.
|
|
40631
|
+
*/
|
|
40632
|
+
last_minutes?: number;
|
|
40633
|
+
/**
|
|
40634
|
+
* A page number within the paginated result set.
|
|
40635
|
+
*/
|
|
40636
|
+
page?: number;
|
|
40637
|
+
/**
|
|
40638
|
+
* Number of results to return per page.
|
|
40639
|
+
*/
|
|
40640
|
+
page_size?: number;
|
|
40641
|
+
};
|
|
40642
|
+
url: '/api/marketplace-stats/resource_provisioning_stats/';
|
|
40643
|
+
};
|
|
40644
|
+
export type MarketplaceStatsResourceProvisioningStatsListResponses = {
|
|
40645
|
+
200: Array<ResourceProvisioningStats>;
|
|
40646
|
+
};
|
|
40647
|
+
export type MarketplaceStatsResourceProvisioningStatsListResponse = MarketplaceStatsResourceProvisioningStatsListResponses[keyof MarketplaceStatsResourceProvisioningStatsListResponses];
|
|
40648
|
+
export type MarketplaceStatsResourceProvisioningStatsCountData = {
|
|
40649
|
+
body?: never;
|
|
40650
|
+
path?: never;
|
|
40651
|
+
query?: {
|
|
40652
|
+
/**
|
|
40653
|
+
* Filter by last N minutes. Default is 60.
|
|
40654
|
+
*/
|
|
40655
|
+
last_minutes?: number;
|
|
40656
|
+
/**
|
|
40657
|
+
* A page number within the paginated result set.
|
|
40658
|
+
*/
|
|
40659
|
+
page?: number;
|
|
40660
|
+
/**
|
|
40661
|
+
* Number of results to return per page.
|
|
40662
|
+
*/
|
|
40663
|
+
page_size?: number;
|
|
40664
|
+
};
|
|
40665
|
+
url: '/api/marketplace-stats/resource_provisioning_stats/';
|
|
40666
|
+
};
|
|
40667
|
+
export type MarketplaceStatsResourceProvisioningStatsCountResponses = {
|
|
40668
|
+
/**
|
|
40669
|
+
* No response body
|
|
40670
|
+
*/
|
|
40671
|
+
200: unknown;
|
|
40672
|
+
};
|
|
40387
40673
|
export type MarketplaceStatsResourcesLimitsListData = {
|
|
40388
40674
|
body?: never;
|
|
40389
40675
|
path?: never;
|
|
@@ -40464,6 +40750,166 @@ export type MarketplaceStatsTotalCostOfActiveResourcesPerOfferingCountResponses
|
|
|
40464
40750
|
*/
|
|
40465
40751
|
200: unknown;
|
|
40466
40752
|
};
|
|
40753
|
+
export type MarketplaceStatsUserAffiliationCountListData = {
|
|
40754
|
+
body?: never;
|
|
40755
|
+
path?: never;
|
|
40756
|
+
query?: {
|
|
40757
|
+
/**
|
|
40758
|
+
* A page number within the paginated result set.
|
|
40759
|
+
*/
|
|
40760
|
+
page?: number;
|
|
40761
|
+
/**
|
|
40762
|
+
* Number of results to return per page.
|
|
40763
|
+
*/
|
|
40764
|
+
page_size?: number;
|
|
40765
|
+
};
|
|
40766
|
+
url: '/api/marketplace-stats/user_affiliation_count/';
|
|
40767
|
+
};
|
|
40768
|
+
export type MarketplaceStatsUserAffiliationCountListResponses = {
|
|
40769
|
+
200: Array<UserAffiliationCount>;
|
|
40770
|
+
};
|
|
40771
|
+
export type MarketplaceStatsUserAffiliationCountListResponse = MarketplaceStatsUserAffiliationCountListResponses[keyof MarketplaceStatsUserAffiliationCountListResponses];
|
|
40772
|
+
export type MarketplaceStatsUserAffiliationCountCountData = {
|
|
40773
|
+
body?: never;
|
|
40774
|
+
path?: never;
|
|
40775
|
+
query?: {
|
|
40776
|
+
/**
|
|
40777
|
+
* A page number within the paginated result set.
|
|
40778
|
+
*/
|
|
40779
|
+
page?: number;
|
|
40780
|
+
/**
|
|
40781
|
+
* Number of results to return per page.
|
|
40782
|
+
*/
|
|
40783
|
+
page_size?: number;
|
|
40784
|
+
};
|
|
40785
|
+
url: '/api/marketplace-stats/user_affiliation_count/';
|
|
40786
|
+
};
|
|
40787
|
+
export type MarketplaceStatsUserAffiliationCountCountResponses = {
|
|
40788
|
+
/**
|
|
40789
|
+
* No response body
|
|
40790
|
+
*/
|
|
40791
|
+
200: unknown;
|
|
40792
|
+
};
|
|
40793
|
+
export type MarketplaceStatsUserAuthMethodCountListData = {
|
|
40794
|
+
body?: never;
|
|
40795
|
+
path?: never;
|
|
40796
|
+
query?: {
|
|
40797
|
+
/**
|
|
40798
|
+
* A page number within the paginated result set.
|
|
40799
|
+
*/
|
|
40800
|
+
page?: number;
|
|
40801
|
+
/**
|
|
40802
|
+
* Number of results to return per page.
|
|
40803
|
+
*/
|
|
40804
|
+
page_size?: number;
|
|
40805
|
+
};
|
|
40806
|
+
url: '/api/marketplace-stats/user_auth_method_count/';
|
|
40807
|
+
};
|
|
40808
|
+
export type MarketplaceStatsUserAuthMethodCountListResponses = {
|
|
40809
|
+
200: Array<UserAuthMethodCount>;
|
|
40810
|
+
};
|
|
40811
|
+
export type MarketplaceStatsUserAuthMethodCountListResponse = MarketplaceStatsUserAuthMethodCountListResponses[keyof MarketplaceStatsUserAuthMethodCountListResponses];
|
|
40812
|
+
export type MarketplaceStatsUserAuthMethodCountCountData = {
|
|
40813
|
+
body?: never;
|
|
40814
|
+
path?: never;
|
|
40815
|
+
query?: {
|
|
40816
|
+
/**
|
|
40817
|
+
* A page number within the paginated result set.
|
|
40818
|
+
*/
|
|
40819
|
+
page?: number;
|
|
40820
|
+
/**
|
|
40821
|
+
* Number of results to return per page.
|
|
40822
|
+
*/
|
|
40823
|
+
page_size?: number;
|
|
40824
|
+
};
|
|
40825
|
+
url: '/api/marketplace-stats/user_auth_method_count/';
|
|
40826
|
+
};
|
|
40827
|
+
export type MarketplaceStatsUserAuthMethodCountCountResponses = {
|
|
40828
|
+
/**
|
|
40829
|
+
* No response body
|
|
40830
|
+
*/
|
|
40831
|
+
200: unknown;
|
|
40832
|
+
};
|
|
40833
|
+
export type MarketplaceStatsUserIdentitySourceCountListData = {
|
|
40834
|
+
body?: never;
|
|
40835
|
+
path?: never;
|
|
40836
|
+
query?: {
|
|
40837
|
+
/**
|
|
40838
|
+
* A page number within the paginated result set.
|
|
40839
|
+
*/
|
|
40840
|
+
page?: number;
|
|
40841
|
+
/**
|
|
40842
|
+
* Number of results to return per page.
|
|
40843
|
+
*/
|
|
40844
|
+
page_size?: number;
|
|
40845
|
+
};
|
|
40846
|
+
url: '/api/marketplace-stats/user_identity_source_count/';
|
|
40847
|
+
};
|
|
40848
|
+
export type MarketplaceStatsUserIdentitySourceCountListResponses = {
|
|
40849
|
+
200: Array<UserIdentitySourceCount>;
|
|
40850
|
+
};
|
|
40851
|
+
export type MarketplaceStatsUserIdentitySourceCountListResponse = MarketplaceStatsUserIdentitySourceCountListResponses[keyof MarketplaceStatsUserIdentitySourceCountListResponses];
|
|
40852
|
+
export type MarketplaceStatsUserIdentitySourceCountCountData = {
|
|
40853
|
+
body?: never;
|
|
40854
|
+
path?: never;
|
|
40855
|
+
query?: {
|
|
40856
|
+
/**
|
|
40857
|
+
* A page number within the paginated result set.
|
|
40858
|
+
*/
|
|
40859
|
+
page?: number;
|
|
40860
|
+
/**
|
|
40861
|
+
* Number of results to return per page.
|
|
40862
|
+
*/
|
|
40863
|
+
page_size?: number;
|
|
40864
|
+
};
|
|
40865
|
+
url: '/api/marketplace-stats/user_identity_source_count/';
|
|
40866
|
+
};
|
|
40867
|
+
export type MarketplaceStatsUserIdentitySourceCountCountResponses = {
|
|
40868
|
+
/**
|
|
40869
|
+
* No response body
|
|
40870
|
+
*/
|
|
40871
|
+
200: unknown;
|
|
40872
|
+
};
|
|
40873
|
+
export type MarketplaceStatsUserOrganizationCountListData = {
|
|
40874
|
+
body?: never;
|
|
40875
|
+
path?: never;
|
|
40876
|
+
query?: {
|
|
40877
|
+
/**
|
|
40878
|
+
* A page number within the paginated result set.
|
|
40879
|
+
*/
|
|
40880
|
+
page?: number;
|
|
40881
|
+
/**
|
|
40882
|
+
* Number of results to return per page.
|
|
40883
|
+
*/
|
|
40884
|
+
page_size?: number;
|
|
40885
|
+
};
|
|
40886
|
+
url: '/api/marketplace-stats/user_organization_count/';
|
|
40887
|
+
};
|
|
40888
|
+
export type MarketplaceStatsUserOrganizationCountListResponses = {
|
|
40889
|
+
200: Array<UserOrganizationCount>;
|
|
40890
|
+
};
|
|
40891
|
+
export type MarketplaceStatsUserOrganizationCountListResponse = MarketplaceStatsUserOrganizationCountListResponses[keyof MarketplaceStatsUserOrganizationCountListResponses];
|
|
40892
|
+
export type MarketplaceStatsUserOrganizationCountCountData = {
|
|
40893
|
+
body?: never;
|
|
40894
|
+
path?: never;
|
|
40895
|
+
query?: {
|
|
40896
|
+
/**
|
|
40897
|
+
* A page number within the paginated result set.
|
|
40898
|
+
*/
|
|
40899
|
+
page?: number;
|
|
40900
|
+
/**
|
|
40901
|
+
* Number of results to return per page.
|
|
40902
|
+
*/
|
|
40903
|
+
page_size?: number;
|
|
40904
|
+
};
|
|
40905
|
+
url: '/api/marketplace-stats/user_organization_count/';
|
|
40906
|
+
};
|
|
40907
|
+
export type MarketplaceStatsUserOrganizationCountCountResponses = {
|
|
40908
|
+
/**
|
|
40909
|
+
* No response body
|
|
40910
|
+
*/
|
|
40911
|
+
200: unknown;
|
|
40912
|
+
};
|
|
40467
40913
|
export type MarketplaceUserOfferingConsentsListData = {
|
|
40468
40914
|
body?: never;
|
|
40469
40915
|
path?: never;
|
|
@@ -42944,7 +43390,7 @@ export type OpenportalUnmanagedProjectsListData = {
|
|
|
42944
43390
|
* Description
|
|
42945
43391
|
*/
|
|
42946
43392
|
description?: string;
|
|
42947
|
-
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
43393
|
+
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid'>;
|
|
42948
43394
|
/**
|
|
42949
43395
|
* Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
|
|
42950
43396
|
*/
|
|
@@ -43117,7 +43563,7 @@ export type OpenportalUnmanagedProjectsRetrieveData = {
|
|
|
43117
43563
|
uuid: string;
|
|
43118
43564
|
};
|
|
43119
43565
|
query?: {
|
|
43120
|
-
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
43566
|
+
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid'>;
|
|
43121
43567
|
};
|
|
43122
43568
|
url: '/api/openportal-unmanaged-projects/{uuid}/';
|
|
43123
43569
|
};
|
|
@@ -49786,7 +50232,7 @@ export type ProjectsListData = {
|
|
|
49786
50232
|
* Description
|
|
49787
50233
|
*/
|
|
49788
50234
|
description?: string;
|
|
49789
|
-
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
50235
|
+
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid'>;
|
|
49790
50236
|
/**
|
|
49791
50237
|
* Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
|
|
49792
50238
|
*/
|
|
@@ -50035,7 +50481,7 @@ export type ProjectsRetrieveData = {
|
|
|
50035
50481
|
uuid: string;
|
|
50036
50482
|
};
|
|
50037
50483
|
query?: {
|
|
50038
|
-
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
50484
|
+
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid'>;
|
|
50039
50485
|
};
|
|
50040
50486
|
url: '/api/projects/{uuid}/';
|
|
50041
50487
|
};
|
|
@@ -57320,13 +57766,10 @@ export type UserActionsCountResponses = {
|
|
|
57320
57766
|
export type UserActionsRetrieveData = {
|
|
57321
57767
|
body?: never;
|
|
57322
57768
|
path: {
|
|
57323
|
-
|
|
57324
|
-
* A unique integer value identifying this user action.
|
|
57325
|
-
*/
|
|
57326
|
-
id: number;
|
|
57769
|
+
uuid: string;
|
|
57327
57770
|
};
|
|
57328
57771
|
query?: never;
|
|
57329
|
-
url: '/api/user-actions/{
|
|
57772
|
+
url: '/api/user-actions/{uuid}/';
|
|
57330
57773
|
};
|
|
57331
57774
|
export type UserActionsRetrieveResponses = {
|
|
57332
57775
|
200: UserAction;
|
|
@@ -57335,13 +57778,10 @@ export type UserActionsRetrieveResponse = UserActionsRetrieveResponses[keyof Use
|
|
|
57335
57778
|
export type UserActionsExecuteActionData = {
|
|
57336
57779
|
body: ExecuteActionRequest;
|
|
57337
57780
|
path: {
|
|
57338
|
-
|
|
57339
|
-
* A unique integer value identifying this user action.
|
|
57340
|
-
*/
|
|
57341
|
-
id: number;
|
|
57781
|
+
uuid: string;
|
|
57342
57782
|
};
|
|
57343
57783
|
query?: never;
|
|
57344
|
-
url: '/api/user-actions/{
|
|
57784
|
+
url: '/api/user-actions/{uuid}/execute_action/';
|
|
57345
57785
|
};
|
|
57346
57786
|
export type UserActionsExecuteActionErrors = {
|
|
57347
57787
|
404: ExecuteActionErrorResponse;
|
|
@@ -57355,13 +57795,10 @@ export type UserActionsExecuteActionResponse = UserActionsExecuteActionResponses
|
|
|
57355
57795
|
export type UserActionsSilenceData = {
|
|
57356
57796
|
body?: SilenceActionRequest;
|
|
57357
57797
|
path: {
|
|
57358
|
-
|
|
57359
|
-
* A unique integer value identifying this user action.
|
|
57360
|
-
*/
|
|
57361
|
-
id: number;
|
|
57798
|
+
uuid: string;
|
|
57362
57799
|
};
|
|
57363
57800
|
query?: never;
|
|
57364
|
-
url: '/api/user-actions/{
|
|
57801
|
+
url: '/api/user-actions/{uuid}/silence/';
|
|
57365
57802
|
};
|
|
57366
57803
|
export type UserActionsSilenceResponses = {
|
|
57367
57804
|
200: SilenceActionResponse;
|
|
@@ -57370,13 +57807,10 @@ export type UserActionsSilenceResponse = UserActionsSilenceResponses[keyof UserA
|
|
|
57370
57807
|
export type UserActionsUnsilenceData = {
|
|
57371
57808
|
body?: never;
|
|
57372
57809
|
path: {
|
|
57373
|
-
|
|
57374
|
-
* A unique integer value identifying this user action.
|
|
57375
|
-
*/
|
|
57376
|
-
id: number;
|
|
57810
|
+
uuid: string;
|
|
57377
57811
|
};
|
|
57378
57812
|
query?: never;
|
|
57379
|
-
url: '/api/user-actions/{
|
|
57813
|
+
url: '/api/user-actions/{uuid}/unsilence/';
|
|
57380
57814
|
};
|
|
57381
57815
|
export type UserActionsUnsilenceResponses = {
|
|
57382
57816
|
200: UnsilenceActionResponse;
|
|
@@ -57601,6 +58035,21 @@ export type UserGroupInvitationsCreateResponses = {
|
|
|
57601
58035
|
201: GroupInvitation;
|
|
57602
58036
|
};
|
|
57603
58037
|
export type UserGroupInvitationsCreateResponse = UserGroupInvitationsCreateResponses[keyof UserGroupInvitationsCreateResponses];
|
|
58038
|
+
export type UserGroupInvitationsDestroyData = {
|
|
58039
|
+
body?: never;
|
|
58040
|
+
path: {
|
|
58041
|
+
uuid: string;
|
|
58042
|
+
};
|
|
58043
|
+
query?: never;
|
|
58044
|
+
url: '/api/user-group-invitations/{uuid}/';
|
|
58045
|
+
};
|
|
58046
|
+
export type UserGroupInvitationsDestroyResponses = {
|
|
58047
|
+
/**
|
|
58048
|
+
* No response body
|
|
58049
|
+
*/
|
|
58050
|
+
204: void;
|
|
58051
|
+
};
|
|
58052
|
+
export type UserGroupInvitationsDestroyResponse = UserGroupInvitationsDestroyResponses[keyof UserGroupInvitationsDestroyResponses];
|
|
57604
58053
|
export type UserGroupInvitationsRetrieveData = {
|
|
57605
58054
|
body?: never;
|
|
57606
58055
|
path: {
|