waldur-js-client 7.9.6-dev.1 → 7.9.6-dev.11
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 +72 -2
- package/dist/sdk.gen.js +320 -2
- package/dist/types.gen.d.ts +609 -15
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -2610,6 +2610,12 @@ export type Customer = {
|
|
|
2610
2610
|
* Number of extra days after project end date before resources are terminated
|
|
2611
2611
|
*/
|
|
2612
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;
|
|
2613
2619
|
name?: string;
|
|
2614
2620
|
/**
|
|
2615
2621
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -2876,6 +2882,12 @@ export type CustomerRequest = {
|
|
|
2876
2882
|
* Number of extra days after project end date before resources are terminated
|
|
2877
2883
|
*/
|
|
2878
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;
|
|
2879
2891
|
name: string;
|
|
2880
2892
|
/**
|
|
2881
2893
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -2976,6 +2988,47 @@ export type DecidingEntityEnum = 'by_call_manager' | 'automatic';
|
|
|
2976
2988
|
export type DeleteAttachmentsRequest = {
|
|
2977
2989
|
attachment_ids: Array<string>;
|
|
2978
2990
|
};
|
|
2991
|
+
export type DemoPreset = {
|
|
2992
|
+
readonly name: string;
|
|
2993
|
+
readonly title: string;
|
|
2994
|
+
readonly description: string;
|
|
2995
|
+
readonly version: string;
|
|
2996
|
+
readonly entity_counts: {
|
|
2997
|
+
[key: string]: number;
|
|
2998
|
+
};
|
|
2999
|
+
readonly scenarios: Array<string>;
|
|
3000
|
+
};
|
|
3001
|
+
export type DemoPresetLoadRequestRequest = {
|
|
3002
|
+
/**
|
|
3003
|
+
* Preview changes without applying them
|
|
3004
|
+
*/
|
|
3005
|
+
dry_run?: boolean;
|
|
3006
|
+
/**
|
|
3007
|
+
* Clean up existing data before loading the preset
|
|
3008
|
+
*/
|
|
3009
|
+
cleanup_first?: boolean;
|
|
3010
|
+
/**
|
|
3011
|
+
* Skip user import/cleanup
|
|
3012
|
+
*/
|
|
3013
|
+
skip_users?: boolean;
|
|
3014
|
+
/**
|
|
3015
|
+
* Skip role import/cleanup
|
|
3016
|
+
*/
|
|
3017
|
+
skip_roles?: boolean;
|
|
3018
|
+
};
|
|
3019
|
+
export type DemoPresetLoadResponse = {
|
|
3020
|
+
success: boolean;
|
|
3021
|
+
message: string;
|
|
3022
|
+
output?: string;
|
|
3023
|
+
users?: Array<DemoPresetUser>;
|
|
3024
|
+
};
|
|
3025
|
+
export type DemoPresetUser = {
|
|
3026
|
+
username: string;
|
|
3027
|
+
password: string;
|
|
3028
|
+
email?: string;
|
|
3029
|
+
is_staff?: boolean;
|
|
3030
|
+
is_support?: boolean;
|
|
3031
|
+
};
|
|
2979
3032
|
export type DependencyLogicOperatorEnum = 'and' | 'or';
|
|
2980
3033
|
export type DeploymentModeEnum = 'self_managed' | 'managed';
|
|
2981
3034
|
export type DeprecatedNetworkRbacPolicy = {
|
|
@@ -3685,10 +3738,6 @@ export type GroupInvitation = {
|
|
|
3685
3738
|
*/
|
|
3686
3739
|
role: string;
|
|
3687
3740
|
readonly created: string;
|
|
3688
|
-
/**
|
|
3689
|
-
* Expiration date and time of the invitation
|
|
3690
|
-
*/
|
|
3691
|
-
readonly expires: string;
|
|
3692
3741
|
readonly is_active: boolean;
|
|
3693
3742
|
/**
|
|
3694
3743
|
* Allow non-authenticated users to see and accept this invitation. Only staff can create public invitations.
|
|
@@ -3698,6 +3747,10 @@ export type GroupInvitation = {
|
|
|
3698
3747
|
* Create project and grant project permissions instead of customer permissions
|
|
3699
3748
|
*/
|
|
3700
3749
|
auto_create_project?: boolean;
|
|
3750
|
+
/**
|
|
3751
|
+
* Automatically approve permission requests from users matching email patterns or affiliations
|
|
3752
|
+
*/
|
|
3753
|
+
auto_approve?: boolean;
|
|
3701
3754
|
/**
|
|
3702
3755
|
* Template for project name. Supports {username}, {email}, {full_name} variables
|
|
3703
3756
|
*/
|
|
@@ -3708,6 +3761,10 @@ export type GroupInvitation = {
|
|
|
3708
3761
|
project_role?: string | null;
|
|
3709
3762
|
user_affiliations?: unknown;
|
|
3710
3763
|
user_email_patterns?: unknown;
|
|
3764
|
+
/**
|
|
3765
|
+
* List of allowed identity sources (identity providers).
|
|
3766
|
+
*/
|
|
3767
|
+
user_identity_sources?: unknown;
|
|
3711
3768
|
/**
|
|
3712
3769
|
* Image URL of the invitation scope (Customer or Project)
|
|
3713
3770
|
*/
|
|
@@ -3730,6 +3787,10 @@ export type GroupInvitationRequest = {
|
|
|
3730
3787
|
* Create project and grant project permissions instead of customer permissions
|
|
3731
3788
|
*/
|
|
3732
3789
|
auto_create_project?: boolean;
|
|
3790
|
+
/**
|
|
3791
|
+
* Automatically approve permission requests from users matching email patterns or affiliations
|
|
3792
|
+
*/
|
|
3793
|
+
auto_approve?: boolean;
|
|
3733
3794
|
/**
|
|
3734
3795
|
* Template for project name. Supports {username}, {email}, {full_name} variables
|
|
3735
3796
|
*/
|
|
@@ -3740,6 +3801,10 @@ export type GroupInvitationRequest = {
|
|
|
3740
3801
|
project_role?: string | null;
|
|
3741
3802
|
user_affiliations?: unknown;
|
|
3742
3803
|
user_email_patterns?: unknown;
|
|
3804
|
+
/**
|
|
3805
|
+
* List of allowed identity sources (identity providers).
|
|
3806
|
+
*/
|
|
3807
|
+
user_identity_sources?: unknown;
|
|
3743
3808
|
};
|
|
3744
3809
|
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';
|
|
3745
3810
|
export type GuestPowerStateEnum = 'RUNNING' | 'SHUTTING_DOWN' | 'RESETTING' | 'STANDBY' | 'NOT_RUNNING' | 'UNAVAILABLE';
|
|
@@ -4348,6 +4413,10 @@ export type Issue = {
|
|
|
4348
4413
|
readonly destroy_is_available: boolean;
|
|
4349
4414
|
readonly add_comment_is_available: boolean;
|
|
4350
4415
|
readonly add_attachment_is_available: boolean;
|
|
4416
|
+
/**
|
|
4417
|
+
* Internal processing log for debugging order lifecycle events. Visible only to staff.
|
|
4418
|
+
*/
|
|
4419
|
+
readonly processing_log: unknown;
|
|
4351
4420
|
};
|
|
4352
4421
|
export type IssueReference = {
|
|
4353
4422
|
readonly key?: string;
|
|
@@ -6786,6 +6855,10 @@ export type OfferingCost = {
|
|
|
6786
6855
|
* UUID of the offering
|
|
6787
6856
|
*/
|
|
6788
6857
|
offering_uuid: string;
|
|
6858
|
+
/**
|
|
6859
|
+
* Name of the offering
|
|
6860
|
+
*/
|
|
6861
|
+
offering_name: string;
|
|
6789
6862
|
/**
|
|
6790
6863
|
* Total cost for the offering
|
|
6791
6864
|
*/
|
|
@@ -7824,6 +7897,7 @@ export type OnboardingVerification = {
|
|
|
7824
7897
|
*/
|
|
7825
7898
|
legal_name?: string;
|
|
7826
7899
|
status: OnboardingVerificationStatusEnum;
|
|
7900
|
+
readonly justifications: Array<OnboardingJustification>;
|
|
7827
7901
|
/**
|
|
7828
7902
|
* Method used for validation
|
|
7829
7903
|
*/
|
|
@@ -9677,7 +9751,7 @@ export type OrderDetails = {
|
|
|
9677
9751
|
readonly order_subtype?: string | null;
|
|
9678
9752
|
issue?: IssueReference | null;
|
|
9679
9753
|
};
|
|
9680
|
-
export type
|
|
9754
|
+
export type OrderErrorDetailsRequest = {
|
|
9681
9755
|
error_message?: string;
|
|
9682
9756
|
error_traceback?: string;
|
|
9683
9757
|
};
|
|
@@ -9915,6 +9989,12 @@ export type PatchedCustomerRequest = {
|
|
|
9915
9989
|
* Number of extra days after project end date before resources are terminated
|
|
9916
9990
|
*/
|
|
9917
9991
|
grace_period_days?: number | null;
|
|
9992
|
+
user_email_patterns?: unknown;
|
|
9993
|
+
user_affiliations?: unknown;
|
|
9994
|
+
/**
|
|
9995
|
+
* List of allowed identity sources (identity providers).
|
|
9996
|
+
*/
|
|
9997
|
+
user_identity_sources?: unknown;
|
|
9918
9998
|
name?: string;
|
|
9919
9999
|
/**
|
|
9920
10000
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -10577,6 +10657,12 @@ export type PatchedProjectRequest = {
|
|
|
10577
10657
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
10578
10658
|
*/
|
|
10579
10659
|
grace_period_days?: number | null;
|
|
10660
|
+
user_email_patterns?: unknown;
|
|
10661
|
+
user_affiliations?: unknown;
|
|
10662
|
+
/**
|
|
10663
|
+
* List of allowed identity sources (identity providers).
|
|
10664
|
+
*/
|
|
10665
|
+
user_identity_sources?: unknown;
|
|
10580
10666
|
};
|
|
10581
10667
|
export type PatchedProjectServiceAccountRequest = {
|
|
10582
10668
|
username?: string;
|
|
@@ -11476,6 +11562,12 @@ export type Project = {
|
|
|
11476
11562
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
11477
11563
|
*/
|
|
11478
11564
|
grace_period_days?: number | null;
|
|
11565
|
+
user_email_patterns?: unknown;
|
|
11566
|
+
user_affiliations?: unknown;
|
|
11567
|
+
/**
|
|
11568
|
+
* List of allowed identity sources (identity providers).
|
|
11569
|
+
*/
|
|
11570
|
+
user_identity_sources?: unknown;
|
|
11479
11571
|
readonly project_credit?: number | null;
|
|
11480
11572
|
readonly marketplace_resource_count?: {
|
|
11481
11573
|
[key: string]: number;
|
|
@@ -11729,6 +11821,12 @@ export type ProjectRequest = {
|
|
|
11729
11821
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
11730
11822
|
*/
|
|
11731
11823
|
grace_period_days?: number | null;
|
|
11824
|
+
user_email_patterns?: unknown;
|
|
11825
|
+
user_affiliations?: unknown;
|
|
11826
|
+
/**
|
|
11827
|
+
* List of allowed identity sources (identity providers).
|
|
11828
|
+
*/
|
|
11829
|
+
user_identity_sources?: unknown;
|
|
11732
11830
|
};
|
|
11733
11831
|
export type ProjectServiceAccount = {
|
|
11734
11832
|
readonly url: string;
|
|
@@ -14281,6 +14379,52 @@ export type ResourcePlanPeriod = {
|
|
|
14281
14379
|
end?: string | null;
|
|
14282
14380
|
components: Array<BaseComponentUsage>;
|
|
14283
14381
|
};
|
|
14382
|
+
export type ResourceProvisioningStats = {
|
|
14383
|
+
/**
|
|
14384
|
+
* UUID of the offering
|
|
14385
|
+
*/
|
|
14386
|
+
readonly offering_uuid: string;
|
|
14387
|
+
/**
|
|
14388
|
+
* Name of the offering
|
|
14389
|
+
*/
|
|
14390
|
+
readonly offering_name: string;
|
|
14391
|
+
/**
|
|
14392
|
+
* UUID of the service provider
|
|
14393
|
+
*/
|
|
14394
|
+
readonly service_provider_uuid: string;
|
|
14395
|
+
/**
|
|
14396
|
+
* Name of the service provider
|
|
14397
|
+
*/
|
|
14398
|
+
readonly service_provider_name: string;
|
|
14399
|
+
/**
|
|
14400
|
+
* Total finished provisioning attempts (DONE + ERRED)
|
|
14401
|
+
*/
|
|
14402
|
+
readonly provisioning_count: number;
|
|
14403
|
+
/**
|
|
14404
|
+
* Total successful provisioning attempts (DONE)
|
|
14405
|
+
*/
|
|
14406
|
+
readonly provisioning_success_count: number;
|
|
14407
|
+
/**
|
|
14408
|
+
* Total failed provisioning attempts (ERRED)
|
|
14409
|
+
*/
|
|
14410
|
+
readonly provisioning_error_count: number;
|
|
14411
|
+
/**
|
|
14412
|
+
* Total currently in-progress provisioning attempts
|
|
14413
|
+
*/
|
|
14414
|
+
readonly provisioning_in_progress_count: number;
|
|
14415
|
+
/**
|
|
14416
|
+
* Rate of successful provisioning (0.0 to 1.0)
|
|
14417
|
+
*/
|
|
14418
|
+
readonly provisioning_success_rate: number;
|
|
14419
|
+
/**
|
|
14420
|
+
* Average duration in seconds from Executing to Terminal state
|
|
14421
|
+
*/
|
|
14422
|
+
readonly avg_provisioning_duration: number;
|
|
14423
|
+
/**
|
|
14424
|
+
* Average duration in seconds from Creation to Executing state
|
|
14425
|
+
*/
|
|
14426
|
+
readonly avg_pending_duration: number;
|
|
14427
|
+
};
|
|
14284
14428
|
export type ResourceReallocateLimitsRequest = {
|
|
14285
14429
|
limits: {
|
|
14286
14430
|
[key: string]: number;
|
|
@@ -15549,6 +15693,10 @@ export type SubmitRequestResponse = {
|
|
|
15549
15693
|
* UUID of the invitation scope
|
|
15550
15694
|
*/
|
|
15551
15695
|
scope_uuid: string;
|
|
15696
|
+
/**
|
|
15697
|
+
* Whether the request was automatically approved
|
|
15698
|
+
*/
|
|
15699
|
+
auto_approved: boolean;
|
|
15552
15700
|
};
|
|
15553
15701
|
export type SubresourceOffering = {
|
|
15554
15702
|
/**
|
|
@@ -15872,6 +16020,16 @@ export type UserActionSummary = {
|
|
|
15872
16020
|
};
|
|
15873
16021
|
overdue: number;
|
|
15874
16022
|
};
|
|
16023
|
+
export type UserAffiliationCount = {
|
|
16024
|
+
/**
|
|
16025
|
+
* Affiliation name
|
|
16026
|
+
*/
|
|
16027
|
+
affiliation: string;
|
|
16028
|
+
/**
|
|
16029
|
+
* Number of users
|
|
16030
|
+
*/
|
|
16031
|
+
count: number;
|
|
16032
|
+
};
|
|
15875
16033
|
export type UserAgreement = {
|
|
15876
16034
|
readonly url: string;
|
|
15877
16035
|
readonly uuid: string;
|
|
@@ -15884,6 +16042,16 @@ export type UserAgreementRequest = {
|
|
|
15884
16042
|
content: string;
|
|
15885
16043
|
agreement_type: AgreementTypeEnum;
|
|
15886
16044
|
};
|
|
16045
|
+
export type UserAuthMethodCount = {
|
|
16046
|
+
/**
|
|
16047
|
+
* Authentication method
|
|
16048
|
+
*/
|
|
16049
|
+
method: string;
|
|
16050
|
+
/**
|
|
16051
|
+
* Number of users
|
|
16052
|
+
*/
|
|
16053
|
+
count: number;
|
|
16054
|
+
};
|
|
15887
16055
|
export type UserAuthToken = {
|
|
15888
16056
|
readonly created: string;
|
|
15889
16057
|
readonly user_first_name: string;
|
|
@@ -15945,6 +16113,16 @@ export type UserConsentInfo = {
|
|
|
15945
16113
|
export type UserEmailChangeRequest = {
|
|
15946
16114
|
email: string;
|
|
15947
16115
|
};
|
|
16116
|
+
export type UserIdentitySourceCount = {
|
|
16117
|
+
/**
|
|
16118
|
+
* Identity source
|
|
16119
|
+
*/
|
|
16120
|
+
identity_source: string;
|
|
16121
|
+
/**
|
|
16122
|
+
* Number of users
|
|
16123
|
+
*/
|
|
16124
|
+
count: number;
|
|
16125
|
+
};
|
|
15948
16126
|
export type UserInfo = {
|
|
15949
16127
|
/**
|
|
15950
16128
|
* 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.
|
|
@@ -15992,6 +16170,16 @@ export type UserOfferingConsentCreateRequest = {
|
|
|
15992
16170
|
export type UserOfferingConsentRequest = {
|
|
15993
16171
|
version?: string;
|
|
15994
16172
|
};
|
|
16173
|
+
export type UserOrganizationCount = {
|
|
16174
|
+
/**
|
|
16175
|
+
* Organization name
|
|
16176
|
+
*/
|
|
16177
|
+
organization: string;
|
|
16178
|
+
/**
|
|
16179
|
+
* Number of users
|
|
16180
|
+
*/
|
|
16181
|
+
count: number;
|
|
16182
|
+
};
|
|
15995
16183
|
export type UserRequest = {
|
|
15996
16184
|
/**
|
|
15997
16185
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
@@ -16744,6 +16932,12 @@ export type CustomerRequestForm = {
|
|
|
16744
16932
|
* Number of extra days after project end date before resources are terminated
|
|
16745
16933
|
*/
|
|
16746
16934
|
grace_period_days?: number | null;
|
|
16935
|
+
user_email_patterns?: unknown;
|
|
16936
|
+
user_affiliations?: unknown;
|
|
16937
|
+
/**
|
|
16938
|
+
* List of allowed identity sources (identity providers).
|
|
16939
|
+
*/
|
|
16940
|
+
user_identity_sources?: unknown;
|
|
16747
16941
|
name: string;
|
|
16748
16942
|
/**
|
|
16749
16943
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -16815,6 +17009,12 @@ export type CustomerRequestMultipart = {
|
|
|
16815
17009
|
* Number of extra days after project end date before resources are terminated
|
|
16816
17010
|
*/
|
|
16817
17011
|
grace_period_days?: number | null;
|
|
17012
|
+
user_email_patterns?: unknown;
|
|
17013
|
+
user_affiliations?: unknown;
|
|
17014
|
+
/**
|
|
17015
|
+
* List of allowed identity sources (identity providers).
|
|
17016
|
+
*/
|
|
17017
|
+
user_identity_sources?: unknown;
|
|
16818
17018
|
name: string;
|
|
16819
17019
|
/**
|
|
16820
17020
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -16886,6 +17086,12 @@ export type PatchedCustomerRequestForm = {
|
|
|
16886
17086
|
* Number of extra days after project end date before resources are terminated
|
|
16887
17087
|
*/
|
|
16888
17088
|
grace_period_days?: number | null;
|
|
17089
|
+
user_email_patterns?: unknown;
|
|
17090
|
+
user_affiliations?: unknown;
|
|
17091
|
+
/**
|
|
17092
|
+
* List of allowed identity sources (identity providers).
|
|
17093
|
+
*/
|
|
17094
|
+
user_identity_sources?: unknown;
|
|
16889
17095
|
name?: string;
|
|
16890
17096
|
/**
|
|
16891
17097
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -16957,6 +17163,12 @@ export type PatchedCustomerRequestMultipart = {
|
|
|
16957
17163
|
* Number of extra days after project end date before resources are terminated
|
|
16958
17164
|
*/
|
|
16959
17165
|
grace_period_days?: number | null;
|
|
17166
|
+
user_email_patterns?: unknown;
|
|
17167
|
+
user_affiliations?: unknown;
|
|
17168
|
+
/**
|
|
17169
|
+
* List of allowed identity sources (identity providers).
|
|
17170
|
+
*/
|
|
17171
|
+
user_identity_sources?: unknown;
|
|
16960
17172
|
name?: string;
|
|
16961
17173
|
/**
|
|
16962
17174
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -17374,6 +17586,12 @@ export type ProjectRequestForm = {
|
|
|
17374
17586
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
17375
17587
|
*/
|
|
17376
17588
|
grace_period_days?: number | null;
|
|
17589
|
+
user_email_patterns?: unknown;
|
|
17590
|
+
user_affiliations?: unknown;
|
|
17591
|
+
/**
|
|
17592
|
+
* List of allowed identity sources (identity providers).
|
|
17593
|
+
*/
|
|
17594
|
+
user_identity_sources?: unknown;
|
|
17377
17595
|
};
|
|
17378
17596
|
export type ProjectRequestMultipart = {
|
|
17379
17597
|
name: string;
|
|
@@ -17417,6 +17635,12 @@ export type ProjectRequestMultipart = {
|
|
|
17417
17635
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
17418
17636
|
*/
|
|
17419
17637
|
grace_period_days?: number | null;
|
|
17638
|
+
user_email_patterns?: unknown;
|
|
17639
|
+
user_affiliations?: unknown;
|
|
17640
|
+
/**
|
|
17641
|
+
* List of allowed identity sources (identity providers).
|
|
17642
|
+
*/
|
|
17643
|
+
user_identity_sources?: unknown;
|
|
17420
17644
|
};
|
|
17421
17645
|
export type PatchedProjectRequestForm = {
|
|
17422
17646
|
name?: string;
|
|
@@ -17460,6 +17684,12 @@ export type PatchedProjectRequestForm = {
|
|
|
17460
17684
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
17461
17685
|
*/
|
|
17462
17686
|
grace_period_days?: number | null;
|
|
17687
|
+
user_email_patterns?: unknown;
|
|
17688
|
+
user_affiliations?: unknown;
|
|
17689
|
+
/**
|
|
17690
|
+
* List of allowed identity sources (identity providers).
|
|
17691
|
+
*/
|
|
17692
|
+
user_identity_sources?: unknown;
|
|
17463
17693
|
};
|
|
17464
17694
|
export type PatchedProjectRequestMultipart = {
|
|
17465
17695
|
name?: string;
|
|
@@ -17503,6 +17733,12 @@ export type PatchedProjectRequestMultipart = {
|
|
|
17503
17733
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
17504
17734
|
*/
|
|
17505
17735
|
grace_period_days?: number | null;
|
|
17736
|
+
user_email_patterns?: unknown;
|
|
17737
|
+
user_affiliations?: unknown;
|
|
17738
|
+
/**
|
|
17739
|
+
* List of allowed identity sources (identity providers).
|
|
17740
|
+
*/
|
|
17741
|
+
user_identity_sources?: unknown;
|
|
17506
17742
|
};
|
|
17507
17743
|
export type ConstanceSettingsRequestForm = {
|
|
17508
17744
|
SITE_NAME?: string;
|
|
@@ -21463,6 +21699,10 @@ export type BookingResourcesListData = {
|
|
|
21463
21699
|
* Has termination date
|
|
21464
21700
|
*/
|
|
21465
21701
|
has_terminate_date?: boolean;
|
|
21702
|
+
/**
|
|
21703
|
+
* Filter by attached state
|
|
21704
|
+
*/
|
|
21705
|
+
is_attached?: boolean;
|
|
21466
21706
|
/**
|
|
21467
21707
|
* LEXIS links supported
|
|
21468
21708
|
*/
|
|
@@ -21635,6 +21875,10 @@ export type BookingResourcesCountData = {
|
|
|
21635
21875
|
* Has termination date
|
|
21636
21876
|
*/
|
|
21637
21877
|
has_terminate_date?: boolean;
|
|
21878
|
+
/**
|
|
21879
|
+
* Filter by attached state
|
|
21880
|
+
*/
|
|
21881
|
+
is_attached?: boolean;
|
|
21638
21882
|
/**
|
|
21639
21883
|
* LEXIS links supported
|
|
21640
21884
|
*/
|
|
@@ -22929,6 +23173,10 @@ export type ChecklistsAdminQuestionsListData = {
|
|
|
22929
23173
|
*/
|
|
22930
23174
|
checklist_type?: 'customer_onboarding' | 'offering_compliance' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
|
|
22931
23175
|
checklist_uuid?: string;
|
|
23176
|
+
/**
|
|
23177
|
+
* Filter questions that have onboarding metadata mapping
|
|
23178
|
+
*/
|
|
23179
|
+
has_onboarding_mapping?: boolean;
|
|
22932
23180
|
/**
|
|
22933
23181
|
* A page number within the paginated result set.
|
|
22934
23182
|
*/
|
|
@@ -22955,6 +23203,10 @@ export type ChecklistsAdminQuestionsCountData = {
|
|
|
22955
23203
|
*/
|
|
22956
23204
|
checklist_type?: 'customer_onboarding' | 'offering_compliance' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
|
|
22957
23205
|
checklist_uuid?: string;
|
|
23206
|
+
/**
|
|
23207
|
+
* Filter questions that have onboarding metadata mapping
|
|
23208
|
+
*/
|
|
23209
|
+
has_onboarding_mapping?: boolean;
|
|
22958
23210
|
/**
|
|
22959
23211
|
* A page number within the paginated result set.
|
|
22960
23212
|
*/
|
|
@@ -23605,7 +23857,7 @@ export type CustomersListData = {
|
|
|
23605
23857
|
* Contact details
|
|
23606
23858
|
*/
|
|
23607
23859
|
contact_details?: string;
|
|
23608
|
-
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'>;
|
|
23860
|
+
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'>;
|
|
23609
23861
|
/**
|
|
23610
23862
|
* Name
|
|
23611
23863
|
*/
|
|
@@ -23931,7 +24183,7 @@ export type CustomersRetrieveData = {
|
|
|
23931
24183
|
uuid: string;
|
|
23932
24184
|
};
|
|
23933
24185
|
query?: {
|
|
23934
|
-
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'>;
|
|
24186
|
+
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'>;
|
|
23935
24187
|
};
|
|
23936
24188
|
url: '/api/customers/{uuid}/';
|
|
23937
24189
|
};
|
|
@@ -29491,6 +29743,109 @@ export type MarketplaceCustomerServiceAccountsRotateApiKeyResponses = {
|
|
|
29491
29743
|
200: CustomerServiceAccount;
|
|
29492
29744
|
};
|
|
29493
29745
|
export type MarketplaceCustomerServiceAccountsRotateApiKeyResponse = MarketplaceCustomerServiceAccountsRotateApiKeyResponses[keyof MarketplaceCustomerServiceAccountsRotateApiKeyResponses];
|
|
29746
|
+
export type MarketplaceDemoPresetsInfoRetrieveData = {
|
|
29747
|
+
body?: never;
|
|
29748
|
+
path: {
|
|
29749
|
+
/**
|
|
29750
|
+
* Name of the preset
|
|
29751
|
+
*/
|
|
29752
|
+
name: string;
|
|
29753
|
+
};
|
|
29754
|
+
query?: never;
|
|
29755
|
+
url: '/api/marketplace-demo-presets/info/{name}/';
|
|
29756
|
+
};
|
|
29757
|
+
export type MarketplaceDemoPresetsInfoRetrieveErrors = {
|
|
29758
|
+
/**
|
|
29759
|
+
* No response body
|
|
29760
|
+
*/
|
|
29761
|
+
404: unknown;
|
|
29762
|
+
};
|
|
29763
|
+
export type MarketplaceDemoPresetsInfoRetrieveResponses = {
|
|
29764
|
+
200: DemoPreset;
|
|
29765
|
+
};
|
|
29766
|
+
export type MarketplaceDemoPresetsInfoRetrieveResponse = MarketplaceDemoPresetsInfoRetrieveResponses[keyof MarketplaceDemoPresetsInfoRetrieveResponses];
|
|
29767
|
+
export type MarketplaceDemoPresetsInfoCountData = {
|
|
29768
|
+
body?: never;
|
|
29769
|
+
path: {
|
|
29770
|
+
/**
|
|
29771
|
+
* Name of the preset
|
|
29772
|
+
*/
|
|
29773
|
+
name: string;
|
|
29774
|
+
};
|
|
29775
|
+
query?: never;
|
|
29776
|
+
url: '/api/marketplace-demo-presets/info/{name}/';
|
|
29777
|
+
};
|
|
29778
|
+
export type MarketplaceDemoPresetsInfoCountResponses = {
|
|
29779
|
+
/**
|
|
29780
|
+
* No response body
|
|
29781
|
+
*/
|
|
29782
|
+
200: unknown;
|
|
29783
|
+
};
|
|
29784
|
+
export type MarketplaceDemoPresetsListListData = {
|
|
29785
|
+
body?: never;
|
|
29786
|
+
path?: never;
|
|
29787
|
+
query?: {
|
|
29788
|
+
/**
|
|
29789
|
+
* A page number within the paginated result set.
|
|
29790
|
+
*/
|
|
29791
|
+
page?: number;
|
|
29792
|
+
/**
|
|
29793
|
+
* Number of results to return per page.
|
|
29794
|
+
*/
|
|
29795
|
+
page_size?: number;
|
|
29796
|
+
};
|
|
29797
|
+
url: '/api/marketplace-demo-presets/list/';
|
|
29798
|
+
};
|
|
29799
|
+
export type MarketplaceDemoPresetsListListResponses = {
|
|
29800
|
+
200: Array<DemoPreset>;
|
|
29801
|
+
};
|
|
29802
|
+
export type MarketplaceDemoPresetsListListResponse = MarketplaceDemoPresetsListListResponses[keyof MarketplaceDemoPresetsListListResponses];
|
|
29803
|
+
export type MarketplaceDemoPresetsListCountData = {
|
|
29804
|
+
body?: never;
|
|
29805
|
+
path?: never;
|
|
29806
|
+
query?: {
|
|
29807
|
+
/**
|
|
29808
|
+
* A page number within the paginated result set.
|
|
29809
|
+
*/
|
|
29810
|
+
page?: number;
|
|
29811
|
+
/**
|
|
29812
|
+
* Number of results to return per page.
|
|
29813
|
+
*/
|
|
29814
|
+
page_size?: number;
|
|
29815
|
+
};
|
|
29816
|
+
url: '/api/marketplace-demo-presets/list/';
|
|
29817
|
+
};
|
|
29818
|
+
export type MarketplaceDemoPresetsListCountResponses = {
|
|
29819
|
+
/**
|
|
29820
|
+
* No response body
|
|
29821
|
+
*/
|
|
29822
|
+
200: unknown;
|
|
29823
|
+
};
|
|
29824
|
+
export type MarketplaceDemoPresetsLoadData = {
|
|
29825
|
+
body?: DemoPresetLoadRequestRequest;
|
|
29826
|
+
path: {
|
|
29827
|
+
/**
|
|
29828
|
+
* Name of the preset to load
|
|
29829
|
+
*/
|
|
29830
|
+
name: string;
|
|
29831
|
+
};
|
|
29832
|
+
query?: never;
|
|
29833
|
+
url: '/api/marketplace-demo-presets/load/{name}/';
|
|
29834
|
+
};
|
|
29835
|
+
export type MarketplaceDemoPresetsLoadErrors = {
|
|
29836
|
+
/**
|
|
29837
|
+
* No response body
|
|
29838
|
+
*/
|
|
29839
|
+
400: unknown;
|
|
29840
|
+
/**
|
|
29841
|
+
* No response body
|
|
29842
|
+
*/
|
|
29843
|
+
404: unknown;
|
|
29844
|
+
};
|
|
29845
|
+
export type MarketplaceDemoPresetsLoadResponses = {
|
|
29846
|
+
200: DemoPresetLoadResponse;
|
|
29847
|
+
};
|
|
29848
|
+
export type MarketplaceDemoPresetsLoadResponse = MarketplaceDemoPresetsLoadResponses[keyof MarketplaceDemoPresetsLoadResponses];
|
|
29494
29849
|
export type MarketplaceGlobalCategoriesRetrieveData = {
|
|
29495
29850
|
body?: never;
|
|
29496
29851
|
path?: never;
|
|
@@ -31575,7 +31930,7 @@ export type MarketplaceOrdersOfferingRetrieveResponses = {
|
|
|
31575
31930
|
};
|
|
31576
31931
|
export type MarketplaceOrdersOfferingRetrieveResponse = MarketplaceOrdersOfferingRetrieveResponses[keyof MarketplaceOrdersOfferingRetrieveResponses];
|
|
31577
31932
|
export type MarketplaceOrdersRejectByConsumerData = {
|
|
31578
|
-
body?:
|
|
31933
|
+
body?: OrderErrorDetailsRequest;
|
|
31579
31934
|
path: {
|
|
31580
31935
|
uuid: string;
|
|
31581
31936
|
};
|
|
@@ -31631,7 +31986,7 @@ export type MarketplaceOrdersSetStateDoneResponses = {
|
|
|
31631
31986
|
200: unknown;
|
|
31632
31987
|
};
|
|
31633
31988
|
export type MarketplaceOrdersSetStateErredData = {
|
|
31634
|
-
body?:
|
|
31989
|
+
body?: OrderErrorDetailsRequest;
|
|
31635
31990
|
path: {
|
|
31636
31991
|
uuid: string;
|
|
31637
31992
|
};
|
|
@@ -33661,7 +34016,7 @@ export type MarketplaceProviderOfferingsListCustomerProjectsListData = {
|
|
|
33661
34016
|
uuid: string;
|
|
33662
34017
|
};
|
|
33663
34018
|
query?: {
|
|
33664
|
-
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'>;
|
|
34019
|
+
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'>;
|
|
33665
34020
|
/**
|
|
33666
34021
|
* A page number within the paginated result set.
|
|
33667
34022
|
*/
|
|
@@ -34835,6 +35190,10 @@ export type MarketplaceProviderResourcesListData = {
|
|
|
34835
35190
|
* Has termination date
|
|
34836
35191
|
*/
|
|
34837
35192
|
has_terminate_date?: boolean;
|
|
35193
|
+
/**
|
|
35194
|
+
* Filter by attached state
|
|
35195
|
+
*/
|
|
35196
|
+
is_attached?: boolean;
|
|
34838
35197
|
/**
|
|
34839
35198
|
* LEXIS links supported
|
|
34840
35199
|
*/
|
|
@@ -35006,6 +35365,10 @@ export type MarketplaceProviderResourcesCountData = {
|
|
|
35006
35365
|
* Has termination date
|
|
35007
35366
|
*/
|
|
35008
35367
|
has_terminate_date?: boolean;
|
|
35368
|
+
/**
|
|
35369
|
+
* Filter by attached state
|
|
35370
|
+
*/
|
|
35371
|
+
is_attached?: boolean;
|
|
35009
35372
|
/**
|
|
35010
35373
|
* LEXIS links supported
|
|
35011
35374
|
*/
|
|
@@ -36216,6 +36579,10 @@ export type MarketplaceResourcesListData = {
|
|
|
36216
36579
|
* Has termination date
|
|
36217
36580
|
*/
|
|
36218
36581
|
has_terminate_date?: boolean;
|
|
36582
|
+
/**
|
|
36583
|
+
* Filter by attached state
|
|
36584
|
+
*/
|
|
36585
|
+
is_attached?: boolean;
|
|
36219
36586
|
/**
|
|
36220
36587
|
* LEXIS links supported
|
|
36221
36588
|
*/
|
|
@@ -36387,6 +36754,10 @@ export type MarketplaceResourcesCountData = {
|
|
|
36387
36754
|
* Has termination date
|
|
36388
36755
|
*/
|
|
36389
36756
|
has_terminate_date?: boolean;
|
|
36757
|
+
/**
|
|
36758
|
+
* Filter by attached state
|
|
36759
|
+
*/
|
|
36760
|
+
is_attached?: boolean;
|
|
36390
36761
|
/**
|
|
36391
36762
|
* LEXIS links supported
|
|
36392
36763
|
*/
|
|
@@ -38203,7 +38574,7 @@ export type MarketplaceServiceProvidersProjectsListData = {
|
|
|
38203
38574
|
* Description
|
|
38204
38575
|
*/
|
|
38205
38576
|
description?: string;
|
|
38206
|
-
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'>;
|
|
38577
|
+
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'>;
|
|
38207
38578
|
/**
|
|
38208
38579
|
* Is removed
|
|
38209
38580
|
*/
|
|
@@ -40399,6 +40770,54 @@ export type MarketplaceStatsProjectsUsagesGroupedByOecdCountResponses = {
|
|
|
40399
40770
|
*/
|
|
40400
40771
|
200: unknown;
|
|
40401
40772
|
};
|
|
40773
|
+
export type MarketplaceStatsResourceProvisioningStatsListData = {
|
|
40774
|
+
body?: never;
|
|
40775
|
+
path?: never;
|
|
40776
|
+
query?: {
|
|
40777
|
+
/**
|
|
40778
|
+
* Filter by last N minutes. Default is 60.
|
|
40779
|
+
*/
|
|
40780
|
+
last_minutes?: number;
|
|
40781
|
+
/**
|
|
40782
|
+
* A page number within the paginated result set.
|
|
40783
|
+
*/
|
|
40784
|
+
page?: number;
|
|
40785
|
+
/**
|
|
40786
|
+
* Number of results to return per page.
|
|
40787
|
+
*/
|
|
40788
|
+
page_size?: number;
|
|
40789
|
+
};
|
|
40790
|
+
url: '/api/marketplace-stats/resource_provisioning_stats/';
|
|
40791
|
+
};
|
|
40792
|
+
export type MarketplaceStatsResourceProvisioningStatsListResponses = {
|
|
40793
|
+
200: Array<ResourceProvisioningStats>;
|
|
40794
|
+
};
|
|
40795
|
+
export type MarketplaceStatsResourceProvisioningStatsListResponse = MarketplaceStatsResourceProvisioningStatsListResponses[keyof MarketplaceStatsResourceProvisioningStatsListResponses];
|
|
40796
|
+
export type MarketplaceStatsResourceProvisioningStatsCountData = {
|
|
40797
|
+
body?: never;
|
|
40798
|
+
path?: never;
|
|
40799
|
+
query?: {
|
|
40800
|
+
/**
|
|
40801
|
+
* Filter by last N minutes. Default is 60.
|
|
40802
|
+
*/
|
|
40803
|
+
last_minutes?: number;
|
|
40804
|
+
/**
|
|
40805
|
+
* A page number within the paginated result set.
|
|
40806
|
+
*/
|
|
40807
|
+
page?: number;
|
|
40808
|
+
/**
|
|
40809
|
+
* Number of results to return per page.
|
|
40810
|
+
*/
|
|
40811
|
+
page_size?: number;
|
|
40812
|
+
};
|
|
40813
|
+
url: '/api/marketplace-stats/resource_provisioning_stats/';
|
|
40814
|
+
};
|
|
40815
|
+
export type MarketplaceStatsResourceProvisioningStatsCountResponses = {
|
|
40816
|
+
/**
|
|
40817
|
+
* No response body
|
|
40818
|
+
*/
|
|
40819
|
+
200: unknown;
|
|
40820
|
+
};
|
|
40402
40821
|
export type MarketplaceStatsResourcesLimitsListData = {
|
|
40403
40822
|
body?: never;
|
|
40404
40823
|
path?: never;
|
|
@@ -40479,6 +40898,166 @@ export type MarketplaceStatsTotalCostOfActiveResourcesPerOfferingCountResponses
|
|
|
40479
40898
|
*/
|
|
40480
40899
|
200: unknown;
|
|
40481
40900
|
};
|
|
40901
|
+
export type MarketplaceStatsUserAffiliationCountListData = {
|
|
40902
|
+
body?: never;
|
|
40903
|
+
path?: never;
|
|
40904
|
+
query?: {
|
|
40905
|
+
/**
|
|
40906
|
+
* A page number within the paginated result set.
|
|
40907
|
+
*/
|
|
40908
|
+
page?: number;
|
|
40909
|
+
/**
|
|
40910
|
+
* Number of results to return per page.
|
|
40911
|
+
*/
|
|
40912
|
+
page_size?: number;
|
|
40913
|
+
};
|
|
40914
|
+
url: '/api/marketplace-stats/user_affiliation_count/';
|
|
40915
|
+
};
|
|
40916
|
+
export type MarketplaceStatsUserAffiliationCountListResponses = {
|
|
40917
|
+
200: Array<UserAffiliationCount>;
|
|
40918
|
+
};
|
|
40919
|
+
export type MarketplaceStatsUserAffiliationCountListResponse = MarketplaceStatsUserAffiliationCountListResponses[keyof MarketplaceStatsUserAffiliationCountListResponses];
|
|
40920
|
+
export type MarketplaceStatsUserAffiliationCountCountData = {
|
|
40921
|
+
body?: never;
|
|
40922
|
+
path?: never;
|
|
40923
|
+
query?: {
|
|
40924
|
+
/**
|
|
40925
|
+
* A page number within the paginated result set.
|
|
40926
|
+
*/
|
|
40927
|
+
page?: number;
|
|
40928
|
+
/**
|
|
40929
|
+
* Number of results to return per page.
|
|
40930
|
+
*/
|
|
40931
|
+
page_size?: number;
|
|
40932
|
+
};
|
|
40933
|
+
url: '/api/marketplace-stats/user_affiliation_count/';
|
|
40934
|
+
};
|
|
40935
|
+
export type MarketplaceStatsUserAffiliationCountCountResponses = {
|
|
40936
|
+
/**
|
|
40937
|
+
* No response body
|
|
40938
|
+
*/
|
|
40939
|
+
200: unknown;
|
|
40940
|
+
};
|
|
40941
|
+
export type MarketplaceStatsUserAuthMethodCountListData = {
|
|
40942
|
+
body?: never;
|
|
40943
|
+
path?: never;
|
|
40944
|
+
query?: {
|
|
40945
|
+
/**
|
|
40946
|
+
* A page number within the paginated result set.
|
|
40947
|
+
*/
|
|
40948
|
+
page?: number;
|
|
40949
|
+
/**
|
|
40950
|
+
* Number of results to return per page.
|
|
40951
|
+
*/
|
|
40952
|
+
page_size?: number;
|
|
40953
|
+
};
|
|
40954
|
+
url: '/api/marketplace-stats/user_auth_method_count/';
|
|
40955
|
+
};
|
|
40956
|
+
export type MarketplaceStatsUserAuthMethodCountListResponses = {
|
|
40957
|
+
200: Array<UserAuthMethodCount>;
|
|
40958
|
+
};
|
|
40959
|
+
export type MarketplaceStatsUserAuthMethodCountListResponse = MarketplaceStatsUserAuthMethodCountListResponses[keyof MarketplaceStatsUserAuthMethodCountListResponses];
|
|
40960
|
+
export type MarketplaceStatsUserAuthMethodCountCountData = {
|
|
40961
|
+
body?: never;
|
|
40962
|
+
path?: never;
|
|
40963
|
+
query?: {
|
|
40964
|
+
/**
|
|
40965
|
+
* A page number within the paginated result set.
|
|
40966
|
+
*/
|
|
40967
|
+
page?: number;
|
|
40968
|
+
/**
|
|
40969
|
+
* Number of results to return per page.
|
|
40970
|
+
*/
|
|
40971
|
+
page_size?: number;
|
|
40972
|
+
};
|
|
40973
|
+
url: '/api/marketplace-stats/user_auth_method_count/';
|
|
40974
|
+
};
|
|
40975
|
+
export type MarketplaceStatsUserAuthMethodCountCountResponses = {
|
|
40976
|
+
/**
|
|
40977
|
+
* No response body
|
|
40978
|
+
*/
|
|
40979
|
+
200: unknown;
|
|
40980
|
+
};
|
|
40981
|
+
export type MarketplaceStatsUserIdentitySourceCountListData = {
|
|
40982
|
+
body?: never;
|
|
40983
|
+
path?: never;
|
|
40984
|
+
query?: {
|
|
40985
|
+
/**
|
|
40986
|
+
* A page number within the paginated result set.
|
|
40987
|
+
*/
|
|
40988
|
+
page?: number;
|
|
40989
|
+
/**
|
|
40990
|
+
* Number of results to return per page.
|
|
40991
|
+
*/
|
|
40992
|
+
page_size?: number;
|
|
40993
|
+
};
|
|
40994
|
+
url: '/api/marketplace-stats/user_identity_source_count/';
|
|
40995
|
+
};
|
|
40996
|
+
export type MarketplaceStatsUserIdentitySourceCountListResponses = {
|
|
40997
|
+
200: Array<UserIdentitySourceCount>;
|
|
40998
|
+
};
|
|
40999
|
+
export type MarketplaceStatsUserIdentitySourceCountListResponse = MarketplaceStatsUserIdentitySourceCountListResponses[keyof MarketplaceStatsUserIdentitySourceCountListResponses];
|
|
41000
|
+
export type MarketplaceStatsUserIdentitySourceCountCountData = {
|
|
41001
|
+
body?: never;
|
|
41002
|
+
path?: never;
|
|
41003
|
+
query?: {
|
|
41004
|
+
/**
|
|
41005
|
+
* A page number within the paginated result set.
|
|
41006
|
+
*/
|
|
41007
|
+
page?: number;
|
|
41008
|
+
/**
|
|
41009
|
+
* Number of results to return per page.
|
|
41010
|
+
*/
|
|
41011
|
+
page_size?: number;
|
|
41012
|
+
};
|
|
41013
|
+
url: '/api/marketplace-stats/user_identity_source_count/';
|
|
41014
|
+
};
|
|
41015
|
+
export type MarketplaceStatsUserIdentitySourceCountCountResponses = {
|
|
41016
|
+
/**
|
|
41017
|
+
* No response body
|
|
41018
|
+
*/
|
|
41019
|
+
200: unknown;
|
|
41020
|
+
};
|
|
41021
|
+
export type MarketplaceStatsUserOrganizationCountListData = {
|
|
41022
|
+
body?: never;
|
|
41023
|
+
path?: never;
|
|
41024
|
+
query?: {
|
|
41025
|
+
/**
|
|
41026
|
+
* A page number within the paginated result set.
|
|
41027
|
+
*/
|
|
41028
|
+
page?: number;
|
|
41029
|
+
/**
|
|
41030
|
+
* Number of results to return per page.
|
|
41031
|
+
*/
|
|
41032
|
+
page_size?: number;
|
|
41033
|
+
};
|
|
41034
|
+
url: '/api/marketplace-stats/user_organization_count/';
|
|
41035
|
+
};
|
|
41036
|
+
export type MarketplaceStatsUserOrganizationCountListResponses = {
|
|
41037
|
+
200: Array<UserOrganizationCount>;
|
|
41038
|
+
};
|
|
41039
|
+
export type MarketplaceStatsUserOrganizationCountListResponse = MarketplaceStatsUserOrganizationCountListResponses[keyof MarketplaceStatsUserOrganizationCountListResponses];
|
|
41040
|
+
export type MarketplaceStatsUserOrganizationCountCountData = {
|
|
41041
|
+
body?: never;
|
|
41042
|
+
path?: never;
|
|
41043
|
+
query?: {
|
|
41044
|
+
/**
|
|
41045
|
+
* A page number within the paginated result set.
|
|
41046
|
+
*/
|
|
41047
|
+
page?: number;
|
|
41048
|
+
/**
|
|
41049
|
+
* Number of results to return per page.
|
|
41050
|
+
*/
|
|
41051
|
+
page_size?: number;
|
|
41052
|
+
};
|
|
41053
|
+
url: '/api/marketplace-stats/user_organization_count/';
|
|
41054
|
+
};
|
|
41055
|
+
export type MarketplaceStatsUserOrganizationCountCountResponses = {
|
|
41056
|
+
/**
|
|
41057
|
+
* No response body
|
|
41058
|
+
*/
|
|
41059
|
+
200: unknown;
|
|
41060
|
+
};
|
|
40482
41061
|
export type MarketplaceUserOfferingConsentsListData = {
|
|
40483
41062
|
body?: never;
|
|
40484
41063
|
path?: never;
|
|
@@ -42959,7 +43538,7 @@ export type OpenportalUnmanagedProjectsListData = {
|
|
|
42959
43538
|
* Description
|
|
42960
43539
|
*/
|
|
42961
43540
|
description?: string;
|
|
42962
|
-
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'>;
|
|
43541
|
+
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'>;
|
|
42963
43542
|
/**
|
|
42964
43543
|
* Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
|
|
42965
43544
|
*/
|
|
@@ -43132,7 +43711,7 @@ export type OpenportalUnmanagedProjectsRetrieveData = {
|
|
|
43132
43711
|
uuid: string;
|
|
43133
43712
|
};
|
|
43134
43713
|
query?: {
|
|
43135
|
-
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'>;
|
|
43714
|
+
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'>;
|
|
43136
43715
|
};
|
|
43137
43716
|
url: '/api/openportal-unmanaged-projects/{uuid}/';
|
|
43138
43717
|
};
|
|
@@ -49801,7 +50380,7 @@ export type ProjectsListData = {
|
|
|
49801
50380
|
* Description
|
|
49802
50381
|
*/
|
|
49803
50382
|
description?: string;
|
|
49804
|
-
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'>;
|
|
50383
|
+
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'>;
|
|
49805
50384
|
/**
|
|
49806
50385
|
* Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
|
|
49807
50386
|
*/
|
|
@@ -50050,7 +50629,7 @@ export type ProjectsRetrieveData = {
|
|
|
50050
50629
|
uuid: string;
|
|
50051
50630
|
};
|
|
50052
50631
|
query?: {
|
|
50053
|
-
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'>;
|
|
50632
|
+
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'>;
|
|
50054
50633
|
};
|
|
50055
50634
|
url: '/api/projects/{uuid}/';
|
|
50056
50635
|
};
|
|
@@ -57604,6 +58183,21 @@ export type UserGroupInvitationsCreateResponses = {
|
|
|
57604
58183
|
201: GroupInvitation;
|
|
57605
58184
|
};
|
|
57606
58185
|
export type UserGroupInvitationsCreateResponse = UserGroupInvitationsCreateResponses[keyof UserGroupInvitationsCreateResponses];
|
|
58186
|
+
export type UserGroupInvitationsDestroyData = {
|
|
58187
|
+
body?: never;
|
|
58188
|
+
path: {
|
|
58189
|
+
uuid: string;
|
|
58190
|
+
};
|
|
58191
|
+
query?: never;
|
|
58192
|
+
url: '/api/user-group-invitations/{uuid}/';
|
|
58193
|
+
};
|
|
58194
|
+
export type UserGroupInvitationsDestroyResponses = {
|
|
58195
|
+
/**
|
|
58196
|
+
* No response body
|
|
58197
|
+
*/
|
|
58198
|
+
204: void;
|
|
58199
|
+
};
|
|
58200
|
+
export type UserGroupInvitationsDestroyResponse = UserGroupInvitationsDestroyResponses[keyof UserGroupInvitationsDestroyResponses];
|
|
57607
58201
|
export type UserGroupInvitationsRetrieveData = {
|
|
57608
58202
|
body?: never;
|
|
57609
58203
|
path: {
|