waldur-js-client 8.0.6-dev.8 → 8.0.6-dev.9

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.
Files changed (2) hide show
  1. package/dist/types.gen.d.ts +48 -10
  2. package/package.json +1 -1
@@ -1487,6 +1487,7 @@ export type AuthToken = {
1487
1487
  */
1488
1488
  readonly user_token_lifetime: number | null;
1489
1489
  };
1490
+ export type AuthTypeEnum = 'password' | 'v3applicationcredential';
1490
1491
  export type AvailabilityZoneResponse = {
1491
1492
  name: string;
1492
1493
  state: string;
@@ -5761,6 +5762,10 @@ export type DiscoverExternalNetworksRequestRequest = {
5761
5762
  * Keystone project (tenant) name
5762
5763
  */
5763
5764
  project_name?: string;
5765
+ /**
5766
+ * Authentication method: password or v3applicationcredential
5767
+ */
5768
+ auth_type?: AuthTypeEnum;
5764
5769
  verify_ssl?: boolean;
5765
5770
  /**
5766
5771
  * PEM-encoded CA certificate for SSL verification
@@ -5786,6 +5791,10 @@ export type DiscoverFlavorsRequestRequest = {
5786
5791
  * Keystone project (tenant) name
5787
5792
  */
5788
5793
  project_name?: string;
5794
+ /**
5795
+ * Authentication method: password or v3applicationcredential
5796
+ */
5797
+ auth_type?: AuthTypeEnum;
5789
5798
  verify_ssl?: boolean;
5790
5799
  /**
5791
5800
  * PEM-encoded CA certificate for SSL verification
@@ -5811,6 +5820,10 @@ export type DiscoverInstanceAvailabilityZonesRequestRequest = {
5811
5820
  * Keystone project (tenant) name
5812
5821
  */
5813
5822
  project_name?: string;
5823
+ /**
5824
+ * Authentication method: password or v3applicationcredential
5825
+ */
5826
+ auth_type?: AuthTypeEnum;
5814
5827
  verify_ssl?: boolean;
5815
5828
  /**
5816
5829
  * PEM-encoded CA certificate for SSL verification
@@ -5940,6 +5953,10 @@ export type DiscoverVolumeAvailabilityZonesRequestRequest = {
5940
5953
  * Keystone project (tenant) name
5941
5954
  */
5942
5955
  project_name?: string;
5956
+ /**
5957
+ * Authentication method: password or v3applicationcredential
5958
+ */
5959
+ auth_type?: AuthTypeEnum;
5943
5960
  verify_ssl?: boolean;
5944
5961
  /**
5945
5962
  * PEM-encoded CA certificate for SSL verification
@@ -5965,6 +5982,10 @@ export type DiscoverVolumeTypesRequestRequest = {
5965
5982
  * Keystone project (tenant) name
5966
5983
  */
5967
5984
  project_name?: string;
5985
+ /**
5986
+ * Authentication method: password or v3applicationcredential
5987
+ */
5988
+ auth_type?: AuthTypeEnum;
5968
5989
  verify_ssl?: boolean;
5969
5990
  /**
5970
5991
  * PEM-encoded CA certificate for SSL verification
@@ -7309,6 +7330,7 @@ export type IntegrationStatus = {
7309
7330
  service_name?: string;
7310
7331
  };
7311
7332
  export type IntegrationStatusDetails = {
7333
+ agent_type: AgentTypeEnum;
7312
7334
  readonly status: string;
7313
7335
  /**
7314
7336
  * Time of latest backend request
@@ -11066,7 +11088,7 @@ export type OfferingKeycloakGroup = {
11066
11088
  * Level this role applies at, e.g. 'cluster', 'project'. Empty means offering-wide.
11067
11089
  */
11068
11090
  readonly role_scope_type: string;
11069
- resource: string | null;
11091
+ resource?: string | null;
11070
11092
  readonly resource_uuid: string;
11071
11093
  readonly resource_name: string | null;
11072
11094
  /**
@@ -12239,6 +12261,10 @@ export type OpenStackCredentialsRequest = {
12239
12261
  * Keystone project (tenant) name
12240
12262
  */
12241
12263
  project_name?: string;
12264
+ /**
12265
+ * Authentication method: password or v3applicationcredential
12266
+ */
12267
+ auth_type?: AuthTypeEnum;
12242
12268
  verify_ssl?: boolean;
12243
12269
  /**
12244
12270
  * PEM-encoded CA certificate for SSL verification
@@ -16273,6 +16299,10 @@ export type PreviewServiceAttributesRequestRequest = {
16273
16299
  * Keystone project (tenant) name
16274
16300
  */
16275
16301
  project_name?: string;
16302
+ /**
16303
+ * Authentication method: password or v3applicationcredential
16304
+ */
16305
+ auth_type?: AuthTypeEnum;
16276
16306
  verify_ssl?: boolean;
16277
16307
  /**
16278
16308
  * PEM-encoded CA certificate for SSL verification
@@ -16768,7 +16798,7 @@ export type ProjectTemplate = {
16768
16798
  /**
16769
16799
  * The offering for which this template applies.
16770
16800
  */
16771
- offering: string | null;
16801
+ offering?: string | null;
16772
16802
  provider: string;
16773
16803
  provider_data: Customer;
16774
16804
  portal: string;
@@ -16812,7 +16842,7 @@ export type ProjectTemplateRequest = {
16812
16842
  /**
16813
16843
  * The offering for which this template applies.
16814
16844
  */
16815
- offering: string | null;
16845
+ offering?: string | null;
16816
16846
  provider: string;
16817
16847
  portal: string;
16818
16848
  /**
@@ -20487,7 +20517,7 @@ export type RmqClientProperties = {
20487
20517
  */
20488
20518
  readonly version: string | null;
20489
20519
  /**
20490
- * Client platform (e.g., 'Python 3.11')
20520
+ * Client platform (e.g., 'Python 3.12')
20491
20521
  */
20492
20522
  readonly platform: string | null;
20493
20523
  };
@@ -22368,8 +22398,8 @@ export type SupportUser = {
22368
22398
  readonly url: string;
22369
22399
  readonly uuid: string;
22370
22400
  name: string;
22371
- backend_id: string | null;
22372
- user: string | null;
22401
+ backend_id?: string | null;
22402
+ user?: string | null;
22373
22403
  backend_name?: string | null;
22374
22404
  };
22375
22405
  export type SupportedCountriesResponse = {
@@ -50167,6 +50197,10 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
50167
50197
  * Slug
50168
50198
  */
50169
50199
  slug?: string;
50200
+ /**
50201
+ * Filter projects where the given user has a role.
50202
+ */
50203
+ user_uuid?: string;
50170
50204
  };
50171
50205
  url: '/api/marketplace-service-providers/{service_provider_uuid}/customer_projects/';
50172
50206
  };
@@ -50657,6 +50691,10 @@ export type MarketplaceServiceProvidersProjectsListData = {
50657
50691
  * Slug
50658
50692
  */
50659
50693
  slug?: string;
50694
+ /**
50695
+ * Filter projects where the given user has a role.
50696
+ */
50697
+ user_uuid?: string;
50660
50698
  };
50661
50699
  url: '/api/marketplace-service-providers/{service_provider_uuid}/projects/';
50662
50700
  };
@@ -57314,7 +57352,7 @@ export type OpenportalUnmanagedProjectsListData = {
57314
57352
  */
57315
57353
  slug?: string;
57316
57354
  /**
57317
- * Filter by user UUID.
57355
+ * Filter projects where the given user has a role.
57318
57356
  */
57319
57357
  user_uuid?: string;
57320
57358
  };
@@ -57412,7 +57450,7 @@ export type OpenportalUnmanagedProjectsCountData = {
57412
57450
  */
57413
57451
  slug?: string;
57414
57452
  /**
57415
- * Filter by user UUID.
57453
+ * Filter projects where the given user has a role.
57416
57454
  */
57417
57455
  user_uuid?: string;
57418
57456
  };
@@ -64728,7 +64766,7 @@ export type ProjectsListData = {
64728
64766
  */
64729
64767
  slug?: string;
64730
64768
  /**
64731
- * Filter by user UUID.
64769
+ * Filter projects where the given user has a role.
64732
64770
  */
64733
64771
  user_uuid?: string;
64734
64772
  };
@@ -64826,7 +64864,7 @@ export type ProjectsCountData = {
64826
64864
  */
64827
64865
  slug?: string;
64828
64866
  /**
64829
- * Filter by user UUID.
64867
+ * Filter projects where the given user has a role.
64830
64868
  */
64831
64869
  user_uuid?: string;
64832
64870
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.6-dev.8",
3
+ "version": "8.0.6-dev.9",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",