waldur-js-client 1.0.4-dev.40 → 1.0.4-dev.41
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/types.gen.d.ts +57 -5
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -7092,7 +7092,7 @@ export type RancherApplication = {
|
|
|
7092
7092
|
readonly rancher_project_name?: string;
|
|
7093
7093
|
readonly catalog_name?: string;
|
|
7094
7094
|
readonly template_name?: string;
|
|
7095
|
-
readonly external_url?: string;
|
|
7095
|
+
readonly external_url?: string | null;
|
|
7096
7096
|
readonly marketplace_offering_uuid?: string;
|
|
7097
7097
|
readonly marketplace_offering_name?: string;
|
|
7098
7098
|
readonly marketplace_offering_plugin_options?: {};
|
|
@@ -8081,8 +8081,8 @@ export type RobotAccount = {
|
|
|
8081
8081
|
responsible_user?: string | null;
|
|
8082
8082
|
readonly fingerprints: Array<Fingerprint>;
|
|
8083
8083
|
readonly state?: string;
|
|
8084
|
-
readonly error_message
|
|
8085
|
-
readonly error_traceback
|
|
8084
|
+
readonly error_message?: string;
|
|
8085
|
+
readonly error_traceback?: string;
|
|
8086
8086
|
};
|
|
8087
8087
|
export type RobotAccountDetails = {
|
|
8088
8088
|
readonly url: string;
|
|
@@ -8098,8 +8098,8 @@ export type RobotAccountDetails = {
|
|
|
8098
8098
|
responsible_user: BasicUser | null;
|
|
8099
8099
|
readonly fingerprints: Array<Fingerprint>;
|
|
8100
8100
|
readonly state?: string;
|
|
8101
|
-
readonly error_message
|
|
8102
|
-
readonly error_traceback
|
|
8101
|
+
readonly error_message?: string;
|
|
8102
|
+
readonly error_traceback?: string;
|
|
8103
8103
|
readonly user_keys: Array<SshKey>;
|
|
8104
8104
|
readonly resource_name: string;
|
|
8105
8105
|
readonly resource_uuid: string;
|
|
@@ -13523,6 +13523,7 @@ export type KeycloakUserGroupMembershipsListData = {
|
|
|
13523
13523
|
role_uuid?: string;
|
|
13524
13524
|
scope_type?: string;
|
|
13525
13525
|
scope_uuid?: string;
|
|
13526
|
+
state?: Array<'active' | 'pending'>;
|
|
13526
13527
|
username?: string;
|
|
13527
13528
|
};
|
|
13528
13529
|
url: '/api/keycloak-user-group-memberships/';
|
|
@@ -16035,6 +16036,14 @@ export type MarketplaceProviderOfferingsListData = {
|
|
|
16035
16036
|
* Project UUID
|
|
16036
16037
|
*/
|
|
16037
16038
|
project_uuid?: string;
|
|
16039
|
+
/**
|
|
16040
|
+
* Resource customer UUID
|
|
16041
|
+
*/
|
|
16042
|
+
resource_customer_uuid?: string;
|
|
16043
|
+
/**
|
|
16044
|
+
* Resource project UUID
|
|
16045
|
+
*/
|
|
16046
|
+
resource_project_uuid?: string;
|
|
16038
16047
|
/**
|
|
16039
16048
|
* Scope UUID
|
|
16040
16049
|
*/
|
|
@@ -16199,6 +16208,14 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
|
|
|
16199
16208
|
* Project UUID
|
|
16200
16209
|
*/
|
|
16201
16210
|
project_uuid?: string;
|
|
16211
|
+
/**
|
|
16212
|
+
* Resource customer UUID
|
|
16213
|
+
*/
|
|
16214
|
+
resource_customer_uuid?: string;
|
|
16215
|
+
/**
|
|
16216
|
+
* Resource project UUID
|
|
16217
|
+
*/
|
|
16218
|
+
resource_project_uuid?: string;
|
|
16202
16219
|
/**
|
|
16203
16220
|
* Scope UUID
|
|
16204
16221
|
*/
|
|
@@ -16281,6 +16298,14 @@ export type MarketplaceProviderOfferingsCostsListData = {
|
|
|
16281
16298
|
* Project UUID
|
|
16282
16299
|
*/
|
|
16283
16300
|
project_uuid?: string;
|
|
16301
|
+
/**
|
|
16302
|
+
* Resource customer UUID
|
|
16303
|
+
*/
|
|
16304
|
+
resource_customer_uuid?: string;
|
|
16305
|
+
/**
|
|
16306
|
+
* Resource project UUID
|
|
16307
|
+
*/
|
|
16308
|
+
resource_project_uuid?: string;
|
|
16284
16309
|
/**
|
|
16285
16310
|
* Scope UUID
|
|
16286
16311
|
*/
|
|
@@ -16372,6 +16397,14 @@ export type MarketplaceProviderOfferingsCustomersListData = {
|
|
|
16372
16397
|
* Project UUID
|
|
16373
16398
|
*/
|
|
16374
16399
|
project_uuid?: string;
|
|
16400
|
+
/**
|
|
16401
|
+
* Resource customer UUID
|
|
16402
|
+
*/
|
|
16403
|
+
resource_customer_uuid?: string;
|
|
16404
|
+
/**
|
|
16405
|
+
* Resource project UUID
|
|
16406
|
+
*/
|
|
16407
|
+
resource_project_uuid?: string;
|
|
16375
16408
|
/**
|
|
16376
16409
|
* Scope UUID
|
|
16377
16410
|
*/
|
|
@@ -17369,6 +17402,14 @@ export type MarketplacePublicOfferingsListData = {
|
|
|
17369
17402
|
* Project UUID
|
|
17370
17403
|
*/
|
|
17371
17404
|
project_uuid?: string;
|
|
17405
|
+
/**
|
|
17406
|
+
* Resource customer UUID
|
|
17407
|
+
*/
|
|
17408
|
+
resource_customer_uuid?: string;
|
|
17409
|
+
/**
|
|
17410
|
+
* Resource project UUID
|
|
17411
|
+
*/
|
|
17412
|
+
resource_project_uuid?: string;
|
|
17372
17413
|
/**
|
|
17373
17414
|
* Scope UUID
|
|
17374
17415
|
*/
|
|
@@ -18600,6 +18641,14 @@ export type MarketplaceServiceProvidersOfferingsListData = {
|
|
|
18600
18641
|
* Project UUID
|
|
18601
18642
|
*/
|
|
18602
18643
|
project_uuid?: string;
|
|
18644
|
+
/**
|
|
18645
|
+
* Resource customer UUID
|
|
18646
|
+
*/
|
|
18647
|
+
resource_customer_uuid?: string;
|
|
18648
|
+
/**
|
|
18649
|
+
* Resource project UUID
|
|
18650
|
+
*/
|
|
18651
|
+
resource_project_uuid?: string;
|
|
18603
18652
|
/**
|
|
18604
18653
|
* Scope UUID
|
|
18605
18654
|
*/
|
|
@@ -25114,6 +25163,7 @@ export type RancherRoleTemplatesListData = {
|
|
|
25114
25163
|
body?: never;
|
|
25115
25164
|
path?: never;
|
|
25116
25165
|
query?: {
|
|
25166
|
+
name?: string;
|
|
25117
25167
|
/**
|
|
25118
25168
|
* A page number within the paginated result set.
|
|
25119
25169
|
*/
|
|
@@ -25122,6 +25172,8 @@ export type RancherRoleTemplatesListData = {
|
|
|
25122
25172
|
* Number of results to return per page.
|
|
25123
25173
|
*/
|
|
25124
25174
|
page_size?: number;
|
|
25175
|
+
scope_type?: string;
|
|
25176
|
+
settings_uuid?: string;
|
|
25125
25177
|
};
|
|
25126
25178
|
url: '/api/rancher-role-templates/';
|
|
25127
25179
|
};
|