waldur-js-client 8.0.10-dev.7 → 8.0.10-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.
package/dist/sdk.gen.js CHANGED
@@ -10288,6 +10288,32 @@ export const marketplaceOfferingUsersCompletionStatusRetrieve = (options) => (op
10288
10288
  url: '/api/marketplace-offering-users/{uuid}/completion_status/',
10289
10289
  ...options
10290
10290
  });
10291
+ /**
10292
+ * List POSIX UID/GID allocations of an offering user
10293
+ *
10294
+ * Returns the user's POSIX identifiers (UID, primary GID) and, for each, the POSIX ID pool that tracks it. The pool fields are null when the value is not tracked by a pool.
10295
+ */
10296
+ export const marketplaceOfferingUsersPosixAllocationsList = (options) => (options.client ?? client).get({
10297
+ security: [
10298
+ { name: 'Authorization', type: 'apiKey' },
10299
+ { scheme: 'bearer', type: 'http' }
10300
+ ],
10301
+ url: '/api/marketplace-offering-users/{uuid}/posix_allocations/',
10302
+ ...options
10303
+ });
10304
+ /**
10305
+ * List project group GIDs an offering user belongs to
10306
+ *
10307
+ * Returns the project group GIDs (shared GIDs that appear in the user's GLAuth otherGroups) for this offering user.
10308
+ */
10309
+ export const marketplaceOfferingUsersPosixGroupsList = (options) => (options.client ?? client).get({
10310
+ security: [
10311
+ { name: 'Authorization', type: 'apiKey' },
10312
+ { scheme: 'bearer', type: 'http' }
10313
+ ],
10314
+ url: '/api/marketplace-offering-users/{uuid}/posix_groups/',
10315
+ ...options
10316
+ });
10291
10317
  /**
10292
10318
  * Request deletion of an offering user
10293
10319
  *
@@ -10400,6 +10426,23 @@ export const marketplaceOfferingUsersSetPendingAdditionalValidation = (options)
10400
10426
  ...options.headers
10401
10427
  }
10402
10428
  });
10429
+ /**
10430
+ * Set POSIX attributes for an offering user
10431
+ *
10432
+ * Override the login shell, home directory, UID and/or primary GID for a single offering user, taking precedence over the offering-level defaults / the range allocator. UID and primary GID re-point the allocation ledger; values outside every active range are accepted but reported in the response 'warnings'.
10433
+ */
10434
+ export const marketplaceOfferingUsersSetPosixAttributes = (options) => (options.client ?? client).post({
10435
+ security: [
10436
+ { name: 'Authorization', type: 'apiKey' },
10437
+ { scheme: 'bearer', type: 'http' }
10438
+ ],
10439
+ url: '/api/marketplace-offering-users/{uuid}/set_posix_attributes/',
10440
+ ...options,
10441
+ headers: {
10442
+ 'Content-Type': 'application/json',
10443
+ ...options.headers
10444
+ }
10445
+ });
10403
10446
  /**
10404
10447
  * Set state to Validation Complete
10405
10448
  *
@@ -10501,6 +10544,32 @@ export const marketplaceOfferingUsersChecklistTemplateCount = (options) => (opti
10501
10544
  url: '/api/marketplace-offering-users/checklist-template/',
10502
10545
  ...options
10503
10546
  });
10547
+ /**
10548
+ * List a user's POSIX identities across all their offerings
10549
+ *
10550
+ * Consolidated view of one user's POSIX identifiers (UID, primary GID and project group GIDs) across every offering they have an account on, each with the range it was allocated from. Scoped to the offering users the requester is allowed to see.
10551
+ */
10552
+ export const marketplaceOfferingUsersPosixIdentitiesList = (options) => (options.client ?? client).get({
10553
+ security: [
10554
+ { name: 'Authorization', type: 'apiKey' },
10555
+ { scheme: 'bearer', type: 'http' }
10556
+ ],
10557
+ url: '/api/marketplace-offering-users/posix_identities/',
10558
+ ...options
10559
+ });
10560
+ /**
10561
+ * List a user's POSIX identities across all their offerings
10562
+ *
10563
+ * Get number of items in the collection matching the request parameters.
10564
+ */
10565
+ export const marketplaceOfferingUsersPosixIdentitiesCount = (options) => (options.client ?? client).head({
10566
+ security: [
10567
+ { name: 'Authorization', type: 'apiKey' },
10568
+ { scheme: 'bearer', type: 'http' }
10569
+ ],
10570
+ url: '/api/marketplace-offering-users/posix_identities/',
10571
+ ...options
10572
+ });
10504
10573
  /**
10505
10574
  * Get profile field warnings
10506
10575
  *
@@ -11185,6 +11254,115 @@ export const marketplacePlansUsageStatsCount = (options) => (options?.client ??
11185
11254
  *
11186
11255
  */
11187
11256
  export const marketplacePluginsList = (options) => (options?.client ?? client).get({ url: '/api/marketplace-plugins/', ...options });
11257
+ export const marketplacePosixIdPoolsList = (options) => (options?.client ?? client).get({
11258
+ security: [
11259
+ { name: 'Authorization', type: 'apiKey' },
11260
+ { scheme: 'bearer', type: 'http' }
11261
+ ],
11262
+ url: '/api/marketplace-posix-id-pools/',
11263
+ ...options
11264
+ });
11265
+ /**
11266
+ * Get number of items in the collection matching the request parameters.
11267
+ */
11268
+ export const marketplacePosixIdPoolsCount = (options) => (options?.client ?? client).head({
11269
+ security: [
11270
+ { name: 'Authorization', type: 'apiKey' },
11271
+ { scheme: 'bearer', type: 'http' }
11272
+ ],
11273
+ url: '/api/marketplace-posix-id-pools/',
11274
+ ...options
11275
+ });
11276
+ export const marketplacePosixIdPoolsCreate = (options) => (options?.client ?? client).post({
11277
+ security: [
11278
+ { name: 'Authorization', type: 'apiKey' },
11279
+ { scheme: 'bearer', type: 'http' }
11280
+ ],
11281
+ url: '/api/marketplace-posix-id-pools/',
11282
+ ...options,
11283
+ headers: {
11284
+ 'Content-Type': 'application/json',
11285
+ ...options?.headers
11286
+ }
11287
+ });
11288
+ export const marketplacePosixIdPoolsDestroy = (options) => (options.client ?? client).delete({
11289
+ security: [
11290
+ { name: 'Authorization', type: 'apiKey' },
11291
+ { scheme: 'bearer', type: 'http' }
11292
+ ],
11293
+ url: '/api/marketplace-posix-id-pools/{uuid}/',
11294
+ ...options
11295
+ });
11296
+ export const marketplacePosixIdPoolsRetrieve = (options) => (options.client ?? client).get({
11297
+ security: [
11298
+ { name: 'Authorization', type: 'apiKey' },
11299
+ { scheme: 'bearer', type: 'http' }
11300
+ ],
11301
+ url: '/api/marketplace-posix-id-pools/{uuid}/',
11302
+ ...options
11303
+ });
11304
+ export const marketplacePosixIdPoolsPartialUpdate = (options) => (options.client ?? client).patch({
11305
+ security: [
11306
+ { name: 'Authorization', type: 'apiKey' },
11307
+ { scheme: 'bearer', type: 'http' }
11308
+ ],
11309
+ url: '/api/marketplace-posix-id-pools/{uuid}/',
11310
+ ...options,
11311
+ headers: {
11312
+ 'Content-Type': 'application/json',
11313
+ ...options.headers
11314
+ }
11315
+ });
11316
+ export const marketplacePosixIdPoolsUpdate = (options) => (options.client ?? client).put({
11317
+ security: [
11318
+ { name: 'Authorization', type: 'apiKey' },
11319
+ { scheme: 'bearer', type: 'http' }
11320
+ ],
11321
+ url: '/api/marketplace-posix-id-pools/{uuid}/',
11322
+ ...options,
11323
+ headers: {
11324
+ 'Content-Type': 'application/json',
11325
+ ...options.headers
11326
+ }
11327
+ });
11328
+ /**
11329
+ * Pool utilization statistics
11330
+ */
11331
+ export const marketplacePosixIdPoolsStatsRetrieve = (options) => (options.client ?? client).get({
11332
+ security: [
11333
+ { name: 'Authorization', type: 'apiKey' },
11334
+ { scheme: 'bearer', type: 'http' }
11335
+ ],
11336
+ url: '/api/marketplace-posix-id-pools/{uuid}/stats/',
11337
+ ...options
11338
+ });
11339
+ export const marketplacePosixIdentitiesList = (options) => (options?.client ?? client).get({
11340
+ security: [
11341
+ { name: 'Authorization', type: 'apiKey' },
11342
+ { scheme: 'bearer', type: 'http' }
11343
+ ],
11344
+ url: '/api/marketplace-posix-identities/',
11345
+ ...options
11346
+ });
11347
+ /**
11348
+ * Get number of items in the collection matching the request parameters.
11349
+ */
11350
+ export const marketplacePosixIdentitiesCount = (options) => (options?.client ?? client).head({
11351
+ security: [
11352
+ { name: 'Authorization', type: 'apiKey' },
11353
+ { scheme: 'bearer', type: 'http' }
11354
+ ],
11355
+ url: '/api/marketplace-posix-identities/',
11356
+ ...options
11357
+ });
11358
+ export const marketplacePosixIdentitiesRetrieve = (options) => (options.client ?? client).get({
11359
+ security: [
11360
+ { name: 'Authorization', type: 'apiKey' },
11361
+ { scheme: 'bearer', type: 'http' }
11362
+ ],
11363
+ url: '/api/marketplace-posix-identities/{uuid}/',
11364
+ ...options
11365
+ });
11188
11366
  export const marketplaceProjectEstimatedCostPoliciesList = (options) => (options?.client ?? client).get({
11189
11367
  security: [
11190
11368
  { name: 'Authorization', type: 'apiKey' },
@@ -11346,6 +11524,32 @@ export const marketplaceProjectOrderAutoApprovalsUpdate = (options) => (options.
11346
11524
  ...options.headers
11347
11525
  }
11348
11526
  });
11527
+ /**
11528
+ * List POSIX group GIDs assigned to a project
11529
+ *
11530
+ * Returns every POSIX group GID a project has been assigned, across all offerings: project-mapped groups (project_group_gid) and resource / resource-project role groups (role_group_gid). The project_uuid query parameter is required.
11531
+ */
11532
+ export const marketplaceProjectPosixGroupsList = (options) => (options.client ?? client).get({
11533
+ security: [
11534
+ { name: 'Authorization', type: 'apiKey' },
11535
+ { scheme: 'bearer', type: 'http' }
11536
+ ],
11537
+ url: '/api/marketplace-project-posix-groups/',
11538
+ ...options
11539
+ });
11540
+ /**
11541
+ * List POSIX group GIDs assigned to a project
11542
+ *
11543
+ * Get number of items in the collection matching the request parameters.
11544
+ */
11545
+ export const marketplaceProjectPosixGroupsCount = (options) => (options.client ?? client).head({
11546
+ security: [
11547
+ { name: 'Authorization', type: 'apiKey' },
11548
+ { scheme: 'bearer', type: 'http' }
11549
+ ],
11550
+ url: '/api/marketplace-project-posix-groups/',
11551
+ ...options
11552
+ });
11349
11553
  /**
11350
11554
  * List service accounts
11351
11555
  */
@@ -11885,6 +12089,19 @@ export const marketplaceProviderOfferingsDraft = (options) => (options.client ??
11885
12089
  url: '/api/marketplace-provider-offerings/{uuid}/draft/',
11886
12090
  ...options
11887
12091
  });
12092
+ /**
12093
+ * Effective POSIX ID pool
12094
+ *
12095
+ * The POSIX ID pool that governs this offering: its own override pool if present, otherwise the service provider's default pool. Returns null when no pool is configured.
12096
+ */
12097
+ export const marketplaceProviderOfferingsEffectivePosixIdPoolRetrieve = (options) => (options.client ?? client).get({
12098
+ security: [
12099
+ { name: 'Authorization', type: 'apiKey' },
12100
+ { scheme: 'bearer', type: 'http' }
12101
+ ],
12102
+ url: '/api/marketplace-provider-offerings/{uuid}/effective_posix_id_pool/',
12103
+ ...options
12104
+ });
11888
12105
  /**
11889
12106
  * Export offering data
11890
12107
  *