waldur-js-client 8.0.4-dev.4 → 8.0.4-dev.6
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 +73 -1
- package/dist/sdk.gen.js +422 -0
- package/dist/types.gen.d.ts +647 -9
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -219,7 +219,7 @@ export type AgentIdentity = {
|
|
|
219
219
|
readonly uuid: string;
|
|
220
220
|
readonly url: string;
|
|
221
221
|
/**
|
|
222
|
-
* UUID of an offering with
|
|
222
|
+
* UUID of an offering with a site-agent compatible type.
|
|
223
223
|
*/
|
|
224
224
|
offering: string;
|
|
225
225
|
name: string;
|
|
@@ -240,7 +240,7 @@ export type AgentIdentity = {
|
|
|
240
240
|
};
|
|
241
241
|
export type AgentIdentityRequest = {
|
|
242
242
|
/**
|
|
243
|
-
* UUID of an offering with
|
|
243
|
+
* UUID of an offering with a site-agent compatible type.
|
|
244
244
|
*/
|
|
245
245
|
offering: string;
|
|
246
246
|
name: string;
|
|
@@ -4072,7 +4072,6 @@ export type ConstanceSettings = {
|
|
|
4072
4072
|
SIDEBAR_LOGO_DARK?: string | null;
|
|
4073
4073
|
SIDEBAR_LOGO_MOBILE?: string | null;
|
|
4074
4074
|
SIDEBAR_STYLE?: string;
|
|
4075
|
-
SITE_LOGO?: string | null;
|
|
4076
4075
|
LOGIN_LOGO?: string | null;
|
|
4077
4076
|
LOGIN_LOGO_MULTILINGUAL?: {
|
|
4078
4077
|
[key: string]: string | null;
|
|
@@ -4312,7 +4311,6 @@ export type ConstanceSettingsRequest = {
|
|
|
4312
4311
|
SIDEBAR_LOGO_DARK?: (Blob | File) | null;
|
|
4313
4312
|
SIDEBAR_LOGO_MOBILE?: (Blob | File) | null;
|
|
4314
4313
|
SIDEBAR_STYLE?: string;
|
|
4315
|
-
SITE_LOGO?: (Blob | File) | null;
|
|
4316
4314
|
LOGIN_LOGO?: (Blob | File) | null;
|
|
4317
4315
|
LOGIN_LOGO_MULTILINGUAL?: {
|
|
4318
4316
|
[key: string]: (Blob | File) | null;
|
|
@@ -7206,6 +7204,13 @@ export type ImportPublicationsRequest = {
|
|
|
7206
7204
|
doi?: string;
|
|
7207
7205
|
};
|
|
7208
7206
|
export type ImportPublicationsSourceEnum = 'orcid' | 'doi';
|
|
7207
|
+
export type ImportRemoteGroupRequest = {
|
|
7208
|
+
offering_uuid: string;
|
|
7209
|
+
role_uuid: string;
|
|
7210
|
+
remote_group_id: string;
|
|
7211
|
+
resource_uuid?: string | null;
|
|
7212
|
+
scope_id?: string;
|
|
7213
|
+
};
|
|
7209
7214
|
export type ImportResourceRequest = {
|
|
7210
7215
|
/**
|
|
7211
7216
|
* Backend identifier of the resource
|
|
@@ -7973,6 +7978,20 @@ export type KeycloakGroup = {
|
|
|
7973
7978
|
readonly created: string;
|
|
7974
7979
|
readonly modified: string;
|
|
7975
7980
|
};
|
|
7981
|
+
export type KeycloakScopeOptionRequest = {
|
|
7982
|
+
/**
|
|
7983
|
+
* Scope type, e.g. 'project', 'cluster'.
|
|
7984
|
+
*/
|
|
7985
|
+
scope_type: string;
|
|
7986
|
+
/**
|
|
7987
|
+
* Identifier of the scope (UUID or external ID).
|
|
7988
|
+
*/
|
|
7989
|
+
scope_id: string;
|
|
7990
|
+
/**
|
|
7991
|
+
* Human-readable label shown to end users.
|
|
7992
|
+
*/
|
|
7993
|
+
label: string;
|
|
7994
|
+
};
|
|
7976
7995
|
export type KeycloakUserGroupMembership = {
|
|
7977
7996
|
readonly uuid: string;
|
|
7978
7997
|
readonly url: string;
|
|
@@ -8826,6 +8845,26 @@ export type MergedPluginOptions = {
|
|
|
8826
8845
|
* If set to False, all orders require manual provider approval, including for service provider owners and staff
|
|
8827
8846
|
*/
|
|
8828
8847
|
auto_approve_marketplace_script?: boolean;
|
|
8848
|
+
/**
|
|
8849
|
+
* If set to True, Keycloak group management is enabled for this offering.
|
|
8850
|
+
*/
|
|
8851
|
+
keycloak_enabled?: boolean;
|
|
8852
|
+
/**
|
|
8853
|
+
* Root parent group in Keycloak under which offering groups are created. Groups are organized as: {base_group}/{offering_slug}/{role_group}. If empty, offering groups are created at the realm root.
|
|
8854
|
+
*/
|
|
8855
|
+
keycloak_base_group?: string;
|
|
8856
|
+
/**
|
|
8857
|
+
* Frequency in minutes for syncing Keycloak group memberships.
|
|
8858
|
+
*/
|
|
8859
|
+
keycloak_sync_frequency?: number;
|
|
8860
|
+
/**
|
|
8861
|
+
* Template for generating Keycloak group names. Uses $variable syntax (e.g. $offering_uuid_$role_name). Allowed variables: offering_uuid, offering_name, offering_slug, resource_uuid, resource_name, resource_slug, project_uuid, project_name, project_slug, organization_uuid, organization_name, organization_slug, role_name, scope_id.
|
|
8862
|
+
*/
|
|
8863
|
+
keycloak_group_name_template?: string;
|
|
8864
|
+
/**
|
|
8865
|
+
* Custom label for the username field when inviting external users (e.g. 'Civil code', 'CUID'). If empty, defaults to 'Username'.
|
|
8866
|
+
*/
|
|
8867
|
+
keycloak_username_label?: string;
|
|
8829
8868
|
/**
|
|
8830
8869
|
* Defines if backend_id should be shown more prominently by the UI
|
|
8831
8870
|
*/
|
|
@@ -9096,6 +9135,26 @@ export type MergedPluginOptionsRequest = {
|
|
|
9096
9135
|
* If set to False, all orders require manual provider approval, including for service provider owners and staff
|
|
9097
9136
|
*/
|
|
9098
9137
|
auto_approve_marketplace_script?: boolean;
|
|
9138
|
+
/**
|
|
9139
|
+
* If set to True, Keycloak group management is enabled for this offering.
|
|
9140
|
+
*/
|
|
9141
|
+
keycloak_enabled?: boolean;
|
|
9142
|
+
/**
|
|
9143
|
+
* Root parent group in Keycloak under which offering groups are created. Groups are organized as: {base_group}/{offering_slug}/{role_group}. If empty, offering groups are created at the realm root.
|
|
9144
|
+
*/
|
|
9145
|
+
keycloak_base_group?: string;
|
|
9146
|
+
/**
|
|
9147
|
+
* Frequency in minutes for syncing Keycloak group memberships.
|
|
9148
|
+
*/
|
|
9149
|
+
keycloak_sync_frequency?: number;
|
|
9150
|
+
/**
|
|
9151
|
+
* Template for generating Keycloak group names. Uses $variable syntax (e.g. $offering_uuid_$role_name). Allowed variables: offering_uuid, offering_name, offering_slug, resource_uuid, resource_name, resource_slug, project_uuid, project_name, project_slug, organization_uuid, organization_name, organization_slug, role_name, scope_id.
|
|
9152
|
+
*/
|
|
9153
|
+
keycloak_group_name_template?: string;
|
|
9154
|
+
/**
|
|
9155
|
+
* Custom label for the username field when inviting external users (e.g. 'Civil code', 'CUID'). If empty, defaults to 'Username'.
|
|
9156
|
+
*/
|
|
9157
|
+
keycloak_username_label?: string;
|
|
9099
9158
|
/**
|
|
9100
9159
|
* Defines if backend_id should be shown more prominently by the UI
|
|
9101
9160
|
*/
|
|
@@ -10894,6 +10953,88 @@ export type OfferingIntegrationUpdateRequest = {
|
|
|
10894
10953
|
service_attributes?: unknown;
|
|
10895
10954
|
backend_id?: string;
|
|
10896
10955
|
};
|
|
10956
|
+
export type OfferingKeycloakGroup = {
|
|
10957
|
+
readonly uuid: string;
|
|
10958
|
+
readonly url: string;
|
|
10959
|
+
/**
|
|
10960
|
+
* Group name
|
|
10961
|
+
*/
|
|
10962
|
+
readonly name: string;
|
|
10963
|
+
readonly backend_id: string;
|
|
10964
|
+
offering: string;
|
|
10965
|
+
readonly offering_uuid: string;
|
|
10966
|
+
readonly offering_name: string;
|
|
10967
|
+
role: string;
|
|
10968
|
+
readonly role_name: string;
|
|
10969
|
+
/**
|
|
10970
|
+
* Level this role applies at, e.g. 'cluster', 'project'. Empty means offering-wide.
|
|
10971
|
+
*/
|
|
10972
|
+
readonly role_scope_type: string;
|
|
10973
|
+
resource: string | null;
|
|
10974
|
+
readonly resource_uuid: string;
|
|
10975
|
+
readonly resource_name: string | null;
|
|
10976
|
+
/**
|
|
10977
|
+
* Sub-entity identifier within a resource, e.g. Rancher project ID within a cluster.
|
|
10978
|
+
*/
|
|
10979
|
+
scope_id?: string;
|
|
10980
|
+
readonly created: string;
|
|
10981
|
+
readonly modified: string;
|
|
10982
|
+
};
|
|
10983
|
+
export type OfferingKeycloakMembership = {
|
|
10984
|
+
readonly uuid: string;
|
|
10985
|
+
readonly url: string;
|
|
10986
|
+
/**
|
|
10987
|
+
* Keycloak user username
|
|
10988
|
+
*/
|
|
10989
|
+
username: string;
|
|
10990
|
+
/**
|
|
10991
|
+
* User's email for notifications
|
|
10992
|
+
*/
|
|
10993
|
+
email: string;
|
|
10994
|
+
readonly first_name: string;
|
|
10995
|
+
readonly last_name: string;
|
|
10996
|
+
readonly group: string;
|
|
10997
|
+
readonly group_name: string;
|
|
10998
|
+
readonly group_role_name: string;
|
|
10999
|
+
readonly group_offering_uuid: string;
|
|
11000
|
+
readonly group_offering_name: string;
|
|
11001
|
+
readonly group_resource_name: string;
|
|
11002
|
+
readonly group_resource_uuid: string;
|
|
11003
|
+
/**
|
|
11004
|
+
* Sub-entity identifier within a resource, e.g. Rancher project ID within a cluster.
|
|
11005
|
+
*/
|
|
11006
|
+
readonly group_scope_id: string;
|
|
11007
|
+
/**
|
|
11008
|
+
* Level this role applies at, e.g. 'cluster', 'project'. Empty means offering-wide.
|
|
11009
|
+
*/
|
|
11010
|
+
readonly group_role_scope_type: string;
|
|
11011
|
+
/**
|
|
11012
|
+
* Human-readable label for scope_type shown to end users, e.g. 'Rancher Project', 'Cluster Namespace'. Falls back to capitalized scope_type if empty.
|
|
11013
|
+
*/
|
|
11014
|
+
readonly group_role_scope_type_label: string;
|
|
11015
|
+
user?: string | null;
|
|
11016
|
+
state: KeycloakUserGroupMembershipState;
|
|
11017
|
+
readonly created: string;
|
|
11018
|
+
readonly modified: string;
|
|
11019
|
+
readonly last_checked: string;
|
|
11020
|
+
readonly error_message: string;
|
|
11021
|
+
readonly error_traceback: string;
|
|
11022
|
+
};
|
|
11023
|
+
export type OfferingKeycloakMembershipRequest = {
|
|
11024
|
+
/**
|
|
11025
|
+
* Keycloak user username
|
|
11026
|
+
*/
|
|
11027
|
+
username: string;
|
|
11028
|
+
/**
|
|
11029
|
+
* User's email for notifications
|
|
11030
|
+
*/
|
|
11031
|
+
email: string;
|
|
11032
|
+
offering: string;
|
|
11033
|
+
role: string;
|
|
11034
|
+
resource?: string | null;
|
|
11035
|
+
scope_id?: string;
|
|
11036
|
+
user?: string | null;
|
|
11037
|
+
};
|
|
10897
11038
|
export type OfferingLocationUpdateRequest = {
|
|
10898
11039
|
latitude: number;
|
|
10899
11040
|
longitude: number;
|
|
@@ -11294,6 +11435,9 @@ export type OfferingTermsOfServiceRequest = {
|
|
|
11294
11435
|
export type OfferingThumbnailRequest = {
|
|
11295
11436
|
thumbnail: Blob | File;
|
|
11296
11437
|
};
|
|
11438
|
+
export type OfferingUuidRequest = {
|
|
11439
|
+
offering_uuid: string;
|
|
11440
|
+
};
|
|
11297
11441
|
export type OfferingUsagePolicy = {
|
|
11298
11442
|
readonly uuid: string;
|
|
11299
11443
|
readonly url: string;
|
|
@@ -11506,10 +11650,26 @@ export type OfferingUserRole = {
|
|
|
11506
11650
|
offering: string;
|
|
11507
11651
|
readonly offering_uuid: string;
|
|
11508
11652
|
readonly offering_name: string;
|
|
11653
|
+
/**
|
|
11654
|
+
* Level this role applies at, e.g. 'cluster', 'project'. Empty means offering-wide.
|
|
11655
|
+
*/
|
|
11656
|
+
scope_type?: string;
|
|
11657
|
+
/**
|
|
11658
|
+
* Human-readable label for scope_type shown to end users, e.g. 'Rancher Project', 'Cluster Namespace'. Falls back to capitalized scope_type if empty.
|
|
11659
|
+
*/
|
|
11660
|
+
scope_type_label?: string;
|
|
11509
11661
|
};
|
|
11510
11662
|
export type OfferingUserRoleRequest = {
|
|
11511
11663
|
name: string;
|
|
11512
11664
|
offering: string;
|
|
11665
|
+
/**
|
|
11666
|
+
* Level this role applies at, e.g. 'cluster', 'project'. Empty means offering-wide.
|
|
11667
|
+
*/
|
|
11668
|
+
scope_type?: string;
|
|
11669
|
+
/**
|
|
11670
|
+
* Human-readable label for scope_type shown to end users, e.g. 'Rancher Project', 'Cluster Namespace'. Falls back to capitalized scope_type if empty.
|
|
11671
|
+
*/
|
|
11672
|
+
scope_type_label?: string;
|
|
11513
11673
|
};
|
|
11514
11674
|
export type OfferingUserServiceProviderComment = {
|
|
11515
11675
|
service_provider_comment?: string;
|
|
@@ -12923,7 +13083,7 @@ export type OpenStackServerGroup = {
|
|
|
12923
13083
|
readonly tenant_name?: string;
|
|
12924
13084
|
readonly tenant_uuid?: string;
|
|
12925
13085
|
/**
|
|
12926
|
-
*
|
|
13086
|
+
* affinity — all instances are placed on the same hypervisor. anti-affinity — all instances are placed on different hypervisors. soft-affinity — instances are placed on the same hypervisor if possible, but not enforced. soft-anti-affinity — instances are placed on different hypervisors if possible, but not enforced.
|
|
12927
13087
|
*/
|
|
12928
13088
|
policy?: PolicyEnum | BlankEnum;
|
|
12929
13089
|
readonly display_name?: string;
|
|
@@ -12945,7 +13105,7 @@ export type OpenStackServerGroupRequest = {
|
|
|
12945
13105
|
name: string;
|
|
12946
13106
|
description?: string;
|
|
12947
13107
|
/**
|
|
12948
|
-
*
|
|
13108
|
+
* affinity — all instances are placed on the same hypervisor. anti-affinity — all instances are placed on different hypervisors. soft-affinity — instances are placed on the same hypervisor if possible, but not enforced. soft-anti-affinity — instances are placed on different hypervisors if possible, but not enforced.
|
|
12949
13109
|
*/
|
|
12950
13110
|
policy?: PolicyEnum | BlankEnum;
|
|
12951
13111
|
};
|
|
@@ -14696,6 +14856,14 @@ export type PatchedOfferingUserRequest = {
|
|
|
14696
14856
|
export type PatchedOfferingUserRoleRequest = {
|
|
14697
14857
|
name?: string;
|
|
14698
14858
|
offering?: string;
|
|
14859
|
+
/**
|
|
14860
|
+
* Level this role applies at, e.g. 'cluster', 'project'. Empty means offering-wide.
|
|
14861
|
+
*/
|
|
14862
|
+
scope_type?: string;
|
|
14863
|
+
/**
|
|
14864
|
+
* Human-readable label for scope_type shown to end users, e.g. 'Rancher Project', 'Cluster Namespace'. Falls back to capitalized scope_type if empty.
|
|
14865
|
+
*/
|
|
14866
|
+
scope_type_label?: string;
|
|
14699
14867
|
};
|
|
14700
14868
|
export type PatchedOfferingUserServiceProviderCommentRequest = {
|
|
14701
14869
|
service_provider_comment?: string;
|
|
@@ -15975,7 +16143,7 @@ export type PluginOfferingType = {
|
|
|
15975
16143
|
components: Array<PluginComponent>;
|
|
15976
16144
|
available_limits: Array<string>;
|
|
15977
16145
|
};
|
|
15978
|
-
export type PolicyEnum = 'affinity';
|
|
16146
|
+
export type PolicyEnum = 'affinity' | 'anti-affinity' | 'soft-affinity' | 'soft-anti-affinity';
|
|
15979
16147
|
export type PolicyPeriodEnum = 1 | 2 | 3 | 4;
|
|
15980
16148
|
export type PolicyTypeEnum = 'access_as_shared' | 'access_as_external';
|
|
15981
16149
|
export type PreviewServiceAttributesRequestRequest = {
|
|
@@ -17665,6 +17833,11 @@ export type PullConflictResponse = {
|
|
|
17665
17833
|
export type PullMarketplaceScriptResourceRequest = {
|
|
17666
17834
|
resource_uuid: string;
|
|
17667
17835
|
};
|
|
17836
|
+
export type PullMembersResponse = {
|
|
17837
|
+
created: number;
|
|
17838
|
+
updated: number;
|
|
17839
|
+
total_remote: number;
|
|
17840
|
+
};
|
|
17668
17841
|
export type PullResponse = {
|
|
17669
17842
|
detail: string;
|
|
17670
17843
|
};
|
|
@@ -18973,6 +19146,19 @@ export type RemoteEduteamsRequestRequest = {
|
|
|
18973
19146
|
export type RemoteEduteamsUuid = {
|
|
18974
19147
|
uuid: string;
|
|
18975
19148
|
};
|
|
19149
|
+
export type RemoteGroup = {
|
|
19150
|
+
id: string;
|
|
19151
|
+
name: string;
|
|
19152
|
+
path: string;
|
|
19153
|
+
sub_group_count: number;
|
|
19154
|
+
};
|
|
19155
|
+
export type RemoteGroupMember = {
|
|
19156
|
+
id: string;
|
|
19157
|
+
username: string;
|
|
19158
|
+
email: string;
|
|
19159
|
+
first_name: string;
|
|
19160
|
+
last_name: string;
|
|
19161
|
+
};
|
|
18976
19162
|
export type RemoteOffering = {
|
|
18977
19163
|
readonly uuid: string;
|
|
18978
19164
|
readonly name: string;
|
|
@@ -19405,6 +19591,12 @@ export type ResourceEndDateByProviderRequest = {
|
|
|
19405
19591
|
*/
|
|
19406
19592
|
end_date?: string | null;
|
|
19407
19593
|
};
|
|
19594
|
+
export type ResourceKeycloakScopesRequest = {
|
|
19595
|
+
/**
|
|
19596
|
+
* Pre-configured scope options for this resource.
|
|
19597
|
+
*/
|
|
19598
|
+
keycloak_available_scopes: Array<KeycloakScopeOptionRequest>;
|
|
19599
|
+
};
|
|
19408
19600
|
export type ResourceLimitPeriod = {
|
|
19409
19601
|
/**
|
|
19410
19602
|
* Start date of the resource limit period
|
|
@@ -21221,6 +21413,11 @@ export type ServiceSettings = {
|
|
|
21221
21413
|
};
|
|
21222
21414
|
};
|
|
21223
21415
|
export type ServiceSettingsStateEnum = 'CREATION_SCHEDULED' | 'CREATING' | 'UPDATE_SCHEDULED' | 'UPDATING' | 'DELETION_SCHEDULED' | 'DELETING' | 'OK' | 'ERRED';
|
|
21416
|
+
export type SetBackendIdRequest = {
|
|
21417
|
+
backend_id?: string | null;
|
|
21418
|
+
resource_uuid?: string | null;
|
|
21419
|
+
scope_id?: string;
|
|
21420
|
+
};
|
|
21224
21421
|
export type SetErredRequest = {
|
|
21225
21422
|
error_message?: string;
|
|
21226
21423
|
error_traceback?: string;
|
|
@@ -22143,6 +22340,16 @@ export type SyncResourcesResponse = {
|
|
|
22143
22340
|
}>;
|
|
22144
22341
|
};
|
|
22145
22342
|
export type SyncStatusEnum = 'in_sync' | 'out_of_sync' | 'sync_failed';
|
|
22343
|
+
export type SyncStatusResponse = {
|
|
22344
|
+
local_only: Array<string>;
|
|
22345
|
+
remote_only: Array<string>;
|
|
22346
|
+
synced: Array<SyncedGroup>;
|
|
22347
|
+
};
|
|
22348
|
+
export type SyncedGroup = {
|
|
22349
|
+
local_name: string;
|
|
22350
|
+
remote_name: string;
|
|
22351
|
+
backend_id: string;
|
|
22352
|
+
};
|
|
22146
22353
|
export type SystemLog = {
|
|
22147
22354
|
readonly id: number;
|
|
22148
22355
|
readonly created: string;
|
|
@@ -22353,6 +22560,11 @@ export type TenantSecurityGroupUpdateRequest = {
|
|
|
22353
22560
|
description?: string;
|
|
22354
22561
|
rules?: Array<OpenStackSecurityGroupRuleUpdateByNameRequest>;
|
|
22355
22562
|
};
|
|
22563
|
+
export type TestConnectionResponse = {
|
|
22564
|
+
status: string;
|
|
22565
|
+
groups_count: number;
|
|
22566
|
+
groups: Array<string>;
|
|
22567
|
+
};
|
|
22356
22568
|
export type ThreadSession = {
|
|
22357
22569
|
readonly uuid?: string;
|
|
22358
22570
|
name?: string;
|
|
@@ -24590,7 +24802,6 @@ export type ConstanceSettingsRequestForm = {
|
|
|
24590
24802
|
SIDEBAR_LOGO_DARK?: (Blob | File) | null;
|
|
24591
24803
|
SIDEBAR_LOGO_MOBILE?: (Blob | File) | null;
|
|
24592
24804
|
SIDEBAR_STYLE?: string;
|
|
24593
|
-
SITE_LOGO?: (Blob | File) | null;
|
|
24594
24805
|
LOGIN_LOGO?: (Blob | File) | null;
|
|
24595
24806
|
LOGIN_LOGO_MULTILINGUAL?: {
|
|
24596
24807
|
[key: string]: (Blob | File) | null;
|
|
@@ -24830,7 +25041,6 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
24830
25041
|
SIDEBAR_LOGO_DARK?: (Blob | File) | null;
|
|
24831
25042
|
SIDEBAR_LOGO_MOBILE?: (Blob | File) | null;
|
|
24832
25043
|
SIDEBAR_STYLE?: string;
|
|
24833
|
-
SITE_LOGO?: (Blob | File) | null;
|
|
24834
25044
|
LOGIN_LOGO?: (Blob | File) | null;
|
|
24835
25045
|
LOGIN_LOGO_MULTILINGUAL?: {
|
|
24836
25046
|
[key: string]: (Blob | File) | null;
|
|
@@ -46824,6 +47034,18 @@ export type MarketplaceProviderResourcesSetEndDateByStaffResponses = {
|
|
|
46824
47034
|
*/
|
|
46825
47035
|
200: unknown;
|
|
46826
47036
|
};
|
|
47037
|
+
export type MarketplaceProviderResourcesSetKeycloakScopesData = {
|
|
47038
|
+
body: ResourceKeycloakScopesRequest;
|
|
47039
|
+
path: {
|
|
47040
|
+
uuid: string;
|
|
47041
|
+
};
|
|
47042
|
+
query?: never;
|
|
47043
|
+
url: '/api/marketplace-provider-resources/{uuid}/set_keycloak_scopes/';
|
|
47044
|
+
};
|
|
47045
|
+
export type MarketplaceProviderResourcesSetKeycloakScopesResponses = {
|
|
47046
|
+
200: ResourceResponseStatus;
|
|
47047
|
+
};
|
|
47048
|
+
export type MarketplaceProviderResourcesSetKeycloakScopesResponse = MarketplaceProviderResourcesSetKeycloakScopesResponses[keyof MarketplaceProviderResourcesSetKeycloakScopesResponses];
|
|
46827
47049
|
export type MarketplaceProviderResourcesSetLimitsData = {
|
|
46828
47050
|
body: ResourceSetLimitsRequest;
|
|
46829
47051
|
path: {
|
|
@@ -54018,6 +54240,422 @@ export type NotificationMessagesEnableResponses = {
|
|
|
54018
54240
|
*/
|
|
54019
54241
|
200: unknown;
|
|
54020
54242
|
};
|
|
54243
|
+
export type OfferingKeycloakGroupsListData = {
|
|
54244
|
+
body?: never;
|
|
54245
|
+
path?: never;
|
|
54246
|
+
query?: {
|
|
54247
|
+
offering_uuid?: string;
|
|
54248
|
+
/**
|
|
54249
|
+
* A page number within the paginated result set.
|
|
54250
|
+
*/
|
|
54251
|
+
page?: number;
|
|
54252
|
+
/**
|
|
54253
|
+
* Number of results to return per page.
|
|
54254
|
+
*/
|
|
54255
|
+
page_size?: number;
|
|
54256
|
+
resource_uuid?: string;
|
|
54257
|
+
role_uuid?: string;
|
|
54258
|
+
};
|
|
54259
|
+
url: '/api/offering-keycloak-groups/';
|
|
54260
|
+
};
|
|
54261
|
+
export type OfferingKeycloakGroupsListResponses = {
|
|
54262
|
+
200: Array<OfferingKeycloakGroup>;
|
|
54263
|
+
};
|
|
54264
|
+
export type OfferingKeycloakGroupsListResponse = OfferingKeycloakGroupsListResponses[keyof OfferingKeycloakGroupsListResponses];
|
|
54265
|
+
export type OfferingKeycloakGroupsCountData = {
|
|
54266
|
+
body?: never;
|
|
54267
|
+
path?: never;
|
|
54268
|
+
query?: {
|
|
54269
|
+
offering_uuid?: string;
|
|
54270
|
+
/**
|
|
54271
|
+
* A page number within the paginated result set.
|
|
54272
|
+
*/
|
|
54273
|
+
page?: number;
|
|
54274
|
+
/**
|
|
54275
|
+
* Number of results to return per page.
|
|
54276
|
+
*/
|
|
54277
|
+
page_size?: number;
|
|
54278
|
+
resource_uuid?: string;
|
|
54279
|
+
role_uuid?: string;
|
|
54280
|
+
};
|
|
54281
|
+
url: '/api/offering-keycloak-groups/';
|
|
54282
|
+
};
|
|
54283
|
+
export type OfferingKeycloakGroupsCountResponses = {
|
|
54284
|
+
/**
|
|
54285
|
+
* No response body
|
|
54286
|
+
*/
|
|
54287
|
+
200: unknown;
|
|
54288
|
+
};
|
|
54289
|
+
export type OfferingKeycloakGroupsDestroyData = {
|
|
54290
|
+
body?: never;
|
|
54291
|
+
path: {
|
|
54292
|
+
uuid: string;
|
|
54293
|
+
};
|
|
54294
|
+
query?: never;
|
|
54295
|
+
url: '/api/offering-keycloak-groups/{uuid}/';
|
|
54296
|
+
};
|
|
54297
|
+
export type OfferingKeycloakGroupsDestroyResponses = {
|
|
54298
|
+
/**
|
|
54299
|
+
* No response body
|
|
54300
|
+
*/
|
|
54301
|
+
204: void;
|
|
54302
|
+
};
|
|
54303
|
+
export type OfferingKeycloakGroupsDestroyResponse = OfferingKeycloakGroupsDestroyResponses[keyof OfferingKeycloakGroupsDestroyResponses];
|
|
54304
|
+
export type OfferingKeycloakGroupsRetrieveData = {
|
|
54305
|
+
body?: never;
|
|
54306
|
+
path: {
|
|
54307
|
+
uuid: string;
|
|
54308
|
+
};
|
|
54309
|
+
query?: never;
|
|
54310
|
+
url: '/api/offering-keycloak-groups/{uuid}/';
|
|
54311
|
+
};
|
|
54312
|
+
export type OfferingKeycloakGroupsRetrieveResponses = {
|
|
54313
|
+
200: OfferingKeycloakGroup;
|
|
54314
|
+
};
|
|
54315
|
+
export type OfferingKeycloakGroupsRetrieveResponse = OfferingKeycloakGroupsRetrieveResponses[keyof OfferingKeycloakGroupsRetrieveResponses];
|
|
54316
|
+
export type OfferingKeycloakGroupsPullMembersData = {
|
|
54317
|
+
body?: never;
|
|
54318
|
+
path: {
|
|
54319
|
+
uuid: string;
|
|
54320
|
+
};
|
|
54321
|
+
query?: never;
|
|
54322
|
+
url: '/api/offering-keycloak-groups/{uuid}/pull_members/';
|
|
54323
|
+
};
|
|
54324
|
+
export type OfferingKeycloakGroupsPullMembersResponses = {
|
|
54325
|
+
200: PullMembersResponse;
|
|
54326
|
+
};
|
|
54327
|
+
export type OfferingKeycloakGroupsPullMembersResponse = OfferingKeycloakGroupsPullMembersResponses[keyof OfferingKeycloakGroupsPullMembersResponses];
|
|
54328
|
+
export type OfferingKeycloakGroupsSetBackendIdData = {
|
|
54329
|
+
body?: SetBackendIdRequest;
|
|
54330
|
+
path: {
|
|
54331
|
+
uuid: string;
|
|
54332
|
+
};
|
|
54333
|
+
query?: never;
|
|
54334
|
+
url: '/api/offering-keycloak-groups/{uuid}/set_backend_id/';
|
|
54335
|
+
};
|
|
54336
|
+
export type OfferingKeycloakGroupsSetBackendIdResponses = {
|
|
54337
|
+
200: OfferingKeycloakGroup;
|
|
54338
|
+
};
|
|
54339
|
+
export type OfferingKeycloakGroupsSetBackendIdResponse = OfferingKeycloakGroupsSetBackendIdResponses[keyof OfferingKeycloakGroupsSetBackendIdResponses];
|
|
54340
|
+
export type OfferingKeycloakGroupsImportRemoteData = {
|
|
54341
|
+
body: ImportRemoteGroupRequest;
|
|
54342
|
+
path?: never;
|
|
54343
|
+
query?: never;
|
|
54344
|
+
url: '/api/offering-keycloak-groups/import_remote/';
|
|
54345
|
+
};
|
|
54346
|
+
export type OfferingKeycloakGroupsImportRemoteResponses = {
|
|
54347
|
+
201: OfferingKeycloakGroup;
|
|
54348
|
+
};
|
|
54349
|
+
export type OfferingKeycloakGroupsImportRemoteResponse = OfferingKeycloakGroupsImportRemoteResponses[keyof OfferingKeycloakGroupsImportRemoteResponses];
|
|
54350
|
+
export type OfferingKeycloakGroupsRemoteGroupMembersListData = {
|
|
54351
|
+
body?: never;
|
|
54352
|
+
path?: never;
|
|
54353
|
+
query: {
|
|
54354
|
+
/**
|
|
54355
|
+
* Keycloak group ID
|
|
54356
|
+
*/
|
|
54357
|
+
group_id: string;
|
|
54358
|
+
/**
|
|
54359
|
+
* UUID of the offering
|
|
54360
|
+
*/
|
|
54361
|
+
offering_uuid: string;
|
|
54362
|
+
/**
|
|
54363
|
+
* A page number within the paginated result set.
|
|
54364
|
+
*/
|
|
54365
|
+
page?: number;
|
|
54366
|
+
/**
|
|
54367
|
+
* Number of results to return per page.
|
|
54368
|
+
*/
|
|
54369
|
+
page_size?: number;
|
|
54370
|
+
resource_uuid?: string;
|
|
54371
|
+
role_uuid?: string;
|
|
54372
|
+
};
|
|
54373
|
+
url: '/api/offering-keycloak-groups/remote_group_members/';
|
|
54374
|
+
};
|
|
54375
|
+
export type OfferingKeycloakGroupsRemoteGroupMembersListResponses = {
|
|
54376
|
+
200: Array<RemoteGroupMember>;
|
|
54377
|
+
};
|
|
54378
|
+
export type OfferingKeycloakGroupsRemoteGroupMembersListResponse = OfferingKeycloakGroupsRemoteGroupMembersListResponses[keyof OfferingKeycloakGroupsRemoteGroupMembersListResponses];
|
|
54379
|
+
export type OfferingKeycloakGroupsRemoteGroupMembersCountData = {
|
|
54380
|
+
body?: never;
|
|
54381
|
+
path?: never;
|
|
54382
|
+
query: {
|
|
54383
|
+
/**
|
|
54384
|
+
* Keycloak group ID
|
|
54385
|
+
*/
|
|
54386
|
+
group_id: string;
|
|
54387
|
+
/**
|
|
54388
|
+
* UUID of the offering
|
|
54389
|
+
*/
|
|
54390
|
+
offering_uuid: string;
|
|
54391
|
+
/**
|
|
54392
|
+
* A page number within the paginated result set.
|
|
54393
|
+
*/
|
|
54394
|
+
page?: number;
|
|
54395
|
+
/**
|
|
54396
|
+
* Number of results to return per page.
|
|
54397
|
+
*/
|
|
54398
|
+
page_size?: number;
|
|
54399
|
+
resource_uuid?: string;
|
|
54400
|
+
role_uuid?: string;
|
|
54401
|
+
};
|
|
54402
|
+
url: '/api/offering-keycloak-groups/remote_group_members/';
|
|
54403
|
+
};
|
|
54404
|
+
export type OfferingKeycloakGroupsRemoteGroupMembersCountResponses = {
|
|
54405
|
+
/**
|
|
54406
|
+
* No response body
|
|
54407
|
+
*/
|
|
54408
|
+
200: unknown;
|
|
54409
|
+
};
|
|
54410
|
+
export type OfferingKeycloakGroupsRemoteGroupsListData = {
|
|
54411
|
+
body?: never;
|
|
54412
|
+
path?: never;
|
|
54413
|
+
query: {
|
|
54414
|
+
/**
|
|
54415
|
+
* UUID of the offering
|
|
54416
|
+
*/
|
|
54417
|
+
offering_uuid: string;
|
|
54418
|
+
/**
|
|
54419
|
+
* A page number within the paginated result set.
|
|
54420
|
+
*/
|
|
54421
|
+
page?: number;
|
|
54422
|
+
/**
|
|
54423
|
+
* Number of results to return per page.
|
|
54424
|
+
*/
|
|
54425
|
+
page_size?: number;
|
|
54426
|
+
resource_uuid?: string;
|
|
54427
|
+
role_uuid?: string;
|
|
54428
|
+
};
|
|
54429
|
+
url: '/api/offering-keycloak-groups/remote_groups/';
|
|
54430
|
+
};
|
|
54431
|
+
export type OfferingKeycloakGroupsRemoteGroupsListResponses = {
|
|
54432
|
+
200: Array<RemoteGroup>;
|
|
54433
|
+
};
|
|
54434
|
+
export type OfferingKeycloakGroupsRemoteGroupsListResponse = OfferingKeycloakGroupsRemoteGroupsListResponses[keyof OfferingKeycloakGroupsRemoteGroupsListResponses];
|
|
54435
|
+
export type OfferingKeycloakGroupsRemoteGroupsCountData = {
|
|
54436
|
+
body?: never;
|
|
54437
|
+
path?: never;
|
|
54438
|
+
query: {
|
|
54439
|
+
/**
|
|
54440
|
+
* UUID of the offering
|
|
54441
|
+
*/
|
|
54442
|
+
offering_uuid: string;
|
|
54443
|
+
/**
|
|
54444
|
+
* A page number within the paginated result set.
|
|
54445
|
+
*/
|
|
54446
|
+
page?: number;
|
|
54447
|
+
/**
|
|
54448
|
+
* Number of results to return per page.
|
|
54449
|
+
*/
|
|
54450
|
+
page_size?: number;
|
|
54451
|
+
resource_uuid?: string;
|
|
54452
|
+
role_uuid?: string;
|
|
54453
|
+
};
|
|
54454
|
+
url: '/api/offering-keycloak-groups/remote_groups/';
|
|
54455
|
+
};
|
|
54456
|
+
export type OfferingKeycloakGroupsRemoteGroupsCountResponses = {
|
|
54457
|
+
/**
|
|
54458
|
+
* No response body
|
|
54459
|
+
*/
|
|
54460
|
+
200: unknown;
|
|
54461
|
+
};
|
|
54462
|
+
export type OfferingKeycloakGroupsSearchRemoteUsersListData = {
|
|
54463
|
+
body?: never;
|
|
54464
|
+
path?: never;
|
|
54465
|
+
query: {
|
|
54466
|
+
/**
|
|
54467
|
+
* UUID of the offering
|
|
54468
|
+
*/
|
|
54469
|
+
offering_uuid: string;
|
|
54470
|
+
/**
|
|
54471
|
+
* A page number within the paginated result set.
|
|
54472
|
+
*/
|
|
54473
|
+
page?: number;
|
|
54474
|
+
/**
|
|
54475
|
+
* Number of results to return per page.
|
|
54476
|
+
*/
|
|
54477
|
+
page_size?: number;
|
|
54478
|
+
/**
|
|
54479
|
+
* Search query for username, email, or name
|
|
54480
|
+
*/
|
|
54481
|
+
q: string;
|
|
54482
|
+
resource_uuid?: string;
|
|
54483
|
+
role_uuid?: string;
|
|
54484
|
+
};
|
|
54485
|
+
url: '/api/offering-keycloak-groups/search_remote_users/';
|
|
54486
|
+
};
|
|
54487
|
+
export type OfferingKeycloakGroupsSearchRemoteUsersListResponses = {
|
|
54488
|
+
200: Array<RemoteGroupMember>;
|
|
54489
|
+
};
|
|
54490
|
+
export type OfferingKeycloakGroupsSearchRemoteUsersListResponse = OfferingKeycloakGroupsSearchRemoteUsersListResponses[keyof OfferingKeycloakGroupsSearchRemoteUsersListResponses];
|
|
54491
|
+
export type OfferingKeycloakGroupsSearchRemoteUsersCountData = {
|
|
54492
|
+
body?: never;
|
|
54493
|
+
path?: never;
|
|
54494
|
+
query: {
|
|
54495
|
+
/**
|
|
54496
|
+
* UUID of the offering
|
|
54497
|
+
*/
|
|
54498
|
+
offering_uuid: string;
|
|
54499
|
+
/**
|
|
54500
|
+
* A page number within the paginated result set.
|
|
54501
|
+
*/
|
|
54502
|
+
page?: number;
|
|
54503
|
+
/**
|
|
54504
|
+
* Number of results to return per page.
|
|
54505
|
+
*/
|
|
54506
|
+
page_size?: number;
|
|
54507
|
+
/**
|
|
54508
|
+
* Search query for username, email, or name
|
|
54509
|
+
*/
|
|
54510
|
+
q: string;
|
|
54511
|
+
resource_uuid?: string;
|
|
54512
|
+
role_uuid?: string;
|
|
54513
|
+
};
|
|
54514
|
+
url: '/api/offering-keycloak-groups/search_remote_users/';
|
|
54515
|
+
};
|
|
54516
|
+
export type OfferingKeycloakGroupsSearchRemoteUsersCountResponses = {
|
|
54517
|
+
/**
|
|
54518
|
+
* No response body
|
|
54519
|
+
*/
|
|
54520
|
+
200: unknown;
|
|
54521
|
+
};
|
|
54522
|
+
export type OfferingKeycloakGroupsSyncStatusRetrieveData = {
|
|
54523
|
+
body?: never;
|
|
54524
|
+
path?: never;
|
|
54525
|
+
query: {
|
|
54526
|
+
/**
|
|
54527
|
+
* UUID of the offering
|
|
54528
|
+
*/
|
|
54529
|
+
offering_uuid: string;
|
|
54530
|
+
};
|
|
54531
|
+
url: '/api/offering-keycloak-groups/sync_status/';
|
|
54532
|
+
};
|
|
54533
|
+
export type OfferingKeycloakGroupsSyncStatusRetrieveResponses = {
|
|
54534
|
+
200: SyncStatusResponse;
|
|
54535
|
+
};
|
|
54536
|
+
export type OfferingKeycloakGroupsSyncStatusRetrieveResponse = OfferingKeycloakGroupsSyncStatusRetrieveResponses[keyof OfferingKeycloakGroupsSyncStatusRetrieveResponses];
|
|
54537
|
+
export type OfferingKeycloakGroupsSyncStatusCountData = {
|
|
54538
|
+
body?: never;
|
|
54539
|
+
path?: never;
|
|
54540
|
+
query: {
|
|
54541
|
+
/**
|
|
54542
|
+
* UUID of the offering
|
|
54543
|
+
*/
|
|
54544
|
+
offering_uuid: string;
|
|
54545
|
+
};
|
|
54546
|
+
url: '/api/offering-keycloak-groups/sync_status/';
|
|
54547
|
+
};
|
|
54548
|
+
export type OfferingKeycloakGroupsSyncStatusCountResponses = {
|
|
54549
|
+
/**
|
|
54550
|
+
* No response body
|
|
54551
|
+
*/
|
|
54552
|
+
200: unknown;
|
|
54553
|
+
};
|
|
54554
|
+
export type OfferingKeycloakGroupsTestConnectionData = {
|
|
54555
|
+
body: OfferingUuidRequest;
|
|
54556
|
+
path?: never;
|
|
54557
|
+
query?: never;
|
|
54558
|
+
url: '/api/offering-keycloak-groups/test_connection/';
|
|
54559
|
+
};
|
|
54560
|
+
export type OfferingKeycloakGroupsTestConnectionResponses = {
|
|
54561
|
+
200: TestConnectionResponse;
|
|
54562
|
+
};
|
|
54563
|
+
export type OfferingKeycloakGroupsTestConnectionResponse = OfferingKeycloakGroupsTestConnectionResponses[keyof OfferingKeycloakGroupsTestConnectionResponses];
|
|
54564
|
+
export type OfferingKeycloakMembershipsListData = {
|
|
54565
|
+
body?: never;
|
|
54566
|
+
path?: never;
|
|
54567
|
+
query?: {
|
|
54568
|
+
email?: string;
|
|
54569
|
+
first_name?: string;
|
|
54570
|
+
group_uuid?: string;
|
|
54571
|
+
last_name?: string;
|
|
54572
|
+
offering_uuid?: string;
|
|
54573
|
+
/**
|
|
54574
|
+
* A page number within the paginated result set.
|
|
54575
|
+
*/
|
|
54576
|
+
page?: number;
|
|
54577
|
+
/**
|
|
54578
|
+
* Number of results to return per page.
|
|
54579
|
+
*/
|
|
54580
|
+
page_size?: number;
|
|
54581
|
+
resource_uuid?: string;
|
|
54582
|
+
role_uuid?: string;
|
|
54583
|
+
state?: Array<'active' | 'pending'>;
|
|
54584
|
+
username?: string;
|
|
54585
|
+
};
|
|
54586
|
+
url: '/api/offering-keycloak-memberships/';
|
|
54587
|
+
};
|
|
54588
|
+
export type OfferingKeycloakMembershipsListResponses = {
|
|
54589
|
+
200: Array<OfferingKeycloakMembership>;
|
|
54590
|
+
};
|
|
54591
|
+
export type OfferingKeycloakMembershipsListResponse = OfferingKeycloakMembershipsListResponses[keyof OfferingKeycloakMembershipsListResponses];
|
|
54592
|
+
export type OfferingKeycloakMembershipsCountData = {
|
|
54593
|
+
body?: never;
|
|
54594
|
+
path?: never;
|
|
54595
|
+
query?: {
|
|
54596
|
+
email?: string;
|
|
54597
|
+
first_name?: string;
|
|
54598
|
+
group_uuid?: string;
|
|
54599
|
+
last_name?: string;
|
|
54600
|
+
offering_uuid?: string;
|
|
54601
|
+
/**
|
|
54602
|
+
* A page number within the paginated result set.
|
|
54603
|
+
*/
|
|
54604
|
+
page?: number;
|
|
54605
|
+
/**
|
|
54606
|
+
* Number of results to return per page.
|
|
54607
|
+
*/
|
|
54608
|
+
page_size?: number;
|
|
54609
|
+
resource_uuid?: string;
|
|
54610
|
+
role_uuid?: string;
|
|
54611
|
+
state?: Array<'active' | 'pending'>;
|
|
54612
|
+
username?: string;
|
|
54613
|
+
};
|
|
54614
|
+
url: '/api/offering-keycloak-memberships/';
|
|
54615
|
+
};
|
|
54616
|
+
export type OfferingKeycloakMembershipsCountResponses = {
|
|
54617
|
+
/**
|
|
54618
|
+
* No response body
|
|
54619
|
+
*/
|
|
54620
|
+
200: unknown;
|
|
54621
|
+
};
|
|
54622
|
+
export type OfferingKeycloakMembershipsCreateData = {
|
|
54623
|
+
body: OfferingKeycloakMembershipRequest;
|
|
54624
|
+
path?: never;
|
|
54625
|
+
query?: never;
|
|
54626
|
+
url: '/api/offering-keycloak-memberships/';
|
|
54627
|
+
};
|
|
54628
|
+
export type OfferingKeycloakMembershipsCreateResponses = {
|
|
54629
|
+
201: OfferingKeycloakMembership;
|
|
54630
|
+
};
|
|
54631
|
+
export type OfferingKeycloakMembershipsCreateResponse = OfferingKeycloakMembershipsCreateResponses[keyof OfferingKeycloakMembershipsCreateResponses];
|
|
54632
|
+
export type OfferingKeycloakMembershipsDestroyData = {
|
|
54633
|
+
body?: never;
|
|
54634
|
+
path: {
|
|
54635
|
+
uuid: string;
|
|
54636
|
+
};
|
|
54637
|
+
query?: never;
|
|
54638
|
+
url: '/api/offering-keycloak-memberships/{uuid}/';
|
|
54639
|
+
};
|
|
54640
|
+
export type OfferingKeycloakMembershipsDestroyResponses = {
|
|
54641
|
+
/**
|
|
54642
|
+
* No response body
|
|
54643
|
+
*/
|
|
54644
|
+
204: void;
|
|
54645
|
+
};
|
|
54646
|
+
export type OfferingKeycloakMembershipsDestroyResponse = OfferingKeycloakMembershipsDestroyResponses[keyof OfferingKeycloakMembershipsDestroyResponses];
|
|
54647
|
+
export type OfferingKeycloakMembershipsRetrieveData = {
|
|
54648
|
+
body?: never;
|
|
54649
|
+
path: {
|
|
54650
|
+
uuid: string;
|
|
54651
|
+
};
|
|
54652
|
+
query?: never;
|
|
54653
|
+
url: '/api/offering-keycloak-memberships/{uuid}/';
|
|
54654
|
+
};
|
|
54655
|
+
export type OfferingKeycloakMembershipsRetrieveResponses = {
|
|
54656
|
+
200: OfferingKeycloakMembership;
|
|
54657
|
+
};
|
|
54658
|
+
export type OfferingKeycloakMembershipsRetrieveResponse = OfferingKeycloakMembershipsRetrieveResponses[keyof OfferingKeycloakMembershipsRetrieveResponses];
|
|
54021
54659
|
export type OnboardingJustificationsListData = {
|
|
54022
54660
|
body?: never;
|
|
54023
54661
|
path?: never;
|