waldur-js-client 8.0.10-dev.14 → 8.0.10-dev.15
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/index.d.ts +72 -2
- package/dist/index.js +71 -1
- package/dist/sdk.gen.d.ts +197 -1
- package/dist/sdk.gen.js +441 -0
- package/dist/types.gen.d.ts +2291 -12
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -3429,6 +3429,19 @@ export const callManagingOrganisationsListUsersList = (options) => (options.clie
|
|
|
3429
3429
|
url: '/api/call-managing-organisations/{uuid}/list_users/',
|
|
3430
3430
|
...options
|
|
3431
3431
|
});
|
|
3432
|
+
/**
|
|
3433
|
+
* List users and their roles in a scope
|
|
3434
|
+
*
|
|
3435
|
+
* Get number of items in the collection matching the request parameters.
|
|
3436
|
+
*/
|
|
3437
|
+
export const callManagingOrganisationsListUsersCount = (options) => (options.client ?? client).head({
|
|
3438
|
+
security: [
|
|
3439
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
3440
|
+
{ scheme: 'bearer', type: 'http' }
|
|
3441
|
+
],
|
|
3442
|
+
url: '/api/call-managing-organisations/{uuid}/list_users/',
|
|
3443
|
+
...options
|
|
3444
|
+
});
|
|
3432
3445
|
/**
|
|
3433
3446
|
* Return statistics for call managing organisation.
|
|
3434
3447
|
*/
|
|
@@ -4947,6 +4960,19 @@ export const customersProjectMetadataComplianceDetailsList = (options) => (optio
|
|
|
4947
4960
|
url: '/api/customers/{customer_uuid}/project-metadata-compliance-details/',
|
|
4948
4961
|
...options
|
|
4949
4962
|
});
|
|
4963
|
+
/**
|
|
4964
|
+
* Get detailed project metadata compliance
|
|
4965
|
+
*
|
|
4966
|
+
* Get number of items in the collection matching the request parameters.
|
|
4967
|
+
*/
|
|
4968
|
+
export const customersProjectMetadataComplianceDetailsCount = (options) => (options.client ?? client).head({
|
|
4969
|
+
security: [
|
|
4970
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
4971
|
+
{ scheme: 'bearer', type: 'http' }
|
|
4972
|
+
],
|
|
4973
|
+
url: '/api/customers/{customer_uuid}/project-metadata-compliance-details/',
|
|
4974
|
+
...options
|
|
4975
|
+
});
|
|
4950
4976
|
/**
|
|
4951
4977
|
* Get project metadata compliance overview
|
|
4952
4978
|
*
|
|
@@ -4960,6 +4986,19 @@ export const customersProjectMetadataComplianceOverviewList = (options) => (opti
|
|
|
4960
4986
|
url: '/api/customers/{customer_uuid}/project-metadata-compliance-overview/',
|
|
4961
4987
|
...options
|
|
4962
4988
|
});
|
|
4989
|
+
/**
|
|
4990
|
+
* Get project metadata compliance overview
|
|
4991
|
+
*
|
|
4992
|
+
* Get number of items in the collection matching the request parameters.
|
|
4993
|
+
*/
|
|
4994
|
+
export const customersProjectMetadataComplianceOverviewCount = (options) => (options.client ?? client).head({
|
|
4995
|
+
security: [
|
|
4996
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
4997
|
+
{ scheme: 'bearer', type: 'http' }
|
|
4998
|
+
],
|
|
4999
|
+
url: '/api/customers/{customer_uuid}/project-metadata-compliance-overview/',
|
|
5000
|
+
...options
|
|
5001
|
+
});
|
|
4963
5002
|
/**
|
|
4964
5003
|
* List projects with compliance data
|
|
4965
5004
|
*
|
|
@@ -4973,6 +5012,19 @@ export const customersProjectMetadataComplianceProjectsList = (options) => (opti
|
|
|
4973
5012
|
url: '/api/customers/{customer_uuid}/project-metadata-compliance-projects/',
|
|
4974
5013
|
...options
|
|
4975
5014
|
});
|
|
5015
|
+
/**
|
|
5016
|
+
* List projects with compliance data
|
|
5017
|
+
*
|
|
5018
|
+
* Get number of items in the collection matching the request parameters.
|
|
5019
|
+
*/
|
|
5020
|
+
export const customersProjectMetadataComplianceProjectsCount = (options) => (options.client ?? client).head({
|
|
5021
|
+
security: [
|
|
5022
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
5023
|
+
{ scheme: 'bearer', type: 'http' }
|
|
5024
|
+
],
|
|
5025
|
+
url: '/api/customers/{customer_uuid}/project-metadata-compliance-projects/',
|
|
5026
|
+
...options
|
|
5027
|
+
});
|
|
4976
5028
|
/**
|
|
4977
5029
|
* List questions with project answers
|
|
4978
5030
|
*
|
|
@@ -4986,6 +5038,19 @@ export const customersProjectMetadataQuestionAnswersList = (options) => (options
|
|
|
4986
5038
|
url: '/api/customers/{customer_uuid}/project-metadata-question-answers/',
|
|
4987
5039
|
...options
|
|
4988
5040
|
});
|
|
5041
|
+
/**
|
|
5042
|
+
* List questions with project answers
|
|
5043
|
+
*
|
|
5044
|
+
* Get number of items in the collection matching the request parameters.
|
|
5045
|
+
*/
|
|
5046
|
+
export const customersProjectMetadataQuestionAnswersCount = (options) => (options.client ?? client).head({
|
|
5047
|
+
security: [
|
|
5048
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
5049
|
+
{ scheme: 'bearer', type: 'http' }
|
|
5050
|
+
],
|
|
5051
|
+
url: '/api/customers/{customer_uuid}/project-metadata-question-answers/',
|
|
5052
|
+
...options
|
|
5053
|
+
});
|
|
4989
5054
|
/**
|
|
4990
5055
|
* List users of a customer
|
|
4991
5056
|
*
|
|
@@ -4999,6 +5064,19 @@ export const customersUsersList = (options) => (options.client ?? client).get({
|
|
|
4999
5064
|
url: '/api/customers/{customer_uuid}/users/',
|
|
5000
5065
|
...options
|
|
5001
5066
|
});
|
|
5067
|
+
/**
|
|
5068
|
+
* List users of a customer
|
|
5069
|
+
*
|
|
5070
|
+
* Get number of items in the collection matching the request parameters.
|
|
5071
|
+
*/
|
|
5072
|
+
export const customersUsersCount = (options) => (options.client ?? client).head({
|
|
5073
|
+
security: [
|
|
5074
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
5075
|
+
{ scheme: 'bearer', type: 'http' }
|
|
5076
|
+
],
|
|
5077
|
+
url: '/api/customers/{customer_uuid}/users/',
|
|
5078
|
+
...options
|
|
5079
|
+
});
|
|
5002
5080
|
/**
|
|
5003
5081
|
* Delete a customer
|
|
5004
5082
|
*
|
|
@@ -5149,6 +5227,19 @@ export const customersListUsersList = (options) => (options.client ?? client).ge
|
|
|
5149
5227
|
url: '/api/customers/{uuid}/list_users/',
|
|
5150
5228
|
...options
|
|
5151
5229
|
});
|
|
5230
|
+
/**
|
|
5231
|
+
* List users and their roles in a scope
|
|
5232
|
+
*
|
|
5233
|
+
* Get number of items in the collection matching the request parameters.
|
|
5234
|
+
*/
|
|
5235
|
+
export const customersListUsersCount = (options) => (options.client ?? client).head({
|
|
5236
|
+
security: [
|
|
5237
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
5238
|
+
{ scheme: 'bearer', type: 'http' }
|
|
5239
|
+
],
|
|
5240
|
+
url: '/api/customers/{uuid}/list_users/',
|
|
5241
|
+
...options
|
|
5242
|
+
});
|
|
5152
5243
|
/**
|
|
5153
5244
|
* Get project digest configuration
|
|
5154
5245
|
*
|
|
@@ -12314,6 +12405,19 @@ export const marketplaceProviderOfferingsListUsersList = (options) => (options.c
|
|
|
12314
12405
|
url: '/api/marketplace-provider-offerings/{uuid}/list_users/',
|
|
12315
12406
|
...options
|
|
12316
12407
|
});
|
|
12408
|
+
/**
|
|
12409
|
+
* List users and their roles in a scope
|
|
12410
|
+
*
|
|
12411
|
+
* Get number of items in the collection matching the request parameters.
|
|
12412
|
+
*/
|
|
12413
|
+
export const marketplaceProviderOfferingsListUsersCount = (options) => (options.client ?? client).head({
|
|
12414
|
+
security: [
|
|
12415
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
12416
|
+
{ scheme: 'bearer', type: 'http' }
|
|
12417
|
+
],
|
|
12418
|
+
url: '/api/marketplace-provider-offerings/{uuid}/list_users/',
|
|
12419
|
+
...options
|
|
12420
|
+
});
|
|
12317
12421
|
/**
|
|
12318
12422
|
* Mark an offering as available
|
|
12319
12423
|
*
|
|
@@ -13151,6 +13255,19 @@ export const marketplaceProviderResourceProjectsListUsersList = (options) => (op
|
|
|
13151
13255
|
url: '/api/marketplace-provider-resource-projects/{uuid}/list_users/',
|
|
13152
13256
|
...options
|
|
13153
13257
|
});
|
|
13258
|
+
/**
|
|
13259
|
+
* List users and their roles in a scope
|
|
13260
|
+
*
|
|
13261
|
+
* Get number of items in the collection matching the request parameters.
|
|
13262
|
+
*/
|
|
13263
|
+
export const marketplaceProviderResourceProjectsListUsersCount = (options) => (options.client ?? client).head({
|
|
13264
|
+
security: [
|
|
13265
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
13266
|
+
{ scheme: 'bearer', type: 'http' }
|
|
13267
|
+
],
|
|
13268
|
+
url: '/api/marketplace-provider-resource-projects/{uuid}/list_users/',
|
|
13269
|
+
...options
|
|
13270
|
+
});
|
|
13154
13271
|
export const marketplaceProviderResourceProjectsSetBackendId = (options) => (options.client ?? client).post({
|
|
13155
13272
|
security: [
|
|
13156
13273
|
{ name: 'Authorization', type: 'apiKey' },
|
|
@@ -13405,6 +13522,19 @@ export const marketplaceProviderResourcesListUsersList = (options) => (options.c
|
|
|
13405
13522
|
url: '/api/marketplace-provider-resources/{uuid}/list_users/',
|
|
13406
13523
|
...options
|
|
13407
13524
|
});
|
|
13525
|
+
/**
|
|
13526
|
+
* List users and their roles in a scope
|
|
13527
|
+
*
|
|
13528
|
+
* Get number of items in the collection matching the request parameters.
|
|
13529
|
+
*/
|
|
13530
|
+
export const marketplaceProviderResourcesListUsersCount = (options) => (options.client ?? client).head({
|
|
13531
|
+
security: [
|
|
13532
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
13533
|
+
{ scheme: 'bearer', type: 'http' }
|
|
13534
|
+
],
|
|
13535
|
+
url: '/api/marketplace-provider-resources/{uuid}/list_users/',
|
|
13536
|
+
...options
|
|
13537
|
+
});
|
|
13408
13538
|
/**
|
|
13409
13539
|
* Move a resource to another project
|
|
13410
13540
|
*
|
|
@@ -14269,6 +14399,19 @@ export const marketplaceResourceProjectsListUsersList = (options) => (options.cl
|
|
|
14269
14399
|
url: '/api/marketplace-resource-projects/{uuid}/list_users/',
|
|
14270
14400
|
...options
|
|
14271
14401
|
});
|
|
14402
|
+
/**
|
|
14403
|
+
* List users and their roles in a scope
|
|
14404
|
+
*
|
|
14405
|
+
* Get number of items in the collection matching the request parameters.
|
|
14406
|
+
*/
|
|
14407
|
+
export const marketplaceResourceProjectsListUsersCount = (options) => (options.client ?? client).head({
|
|
14408
|
+
security: [
|
|
14409
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
14410
|
+
{ scheme: 'bearer', type: 'http' }
|
|
14411
|
+
],
|
|
14412
|
+
url: '/api/marketplace-resource-projects/{uuid}/list_users/',
|
|
14413
|
+
...options
|
|
14414
|
+
});
|
|
14272
14415
|
/**
|
|
14273
14416
|
* Recover a soft-deleted resource project
|
|
14274
14417
|
*
|
|
@@ -14523,6 +14666,19 @@ export const marketplaceResourcesListUsersList = (options) => (options.client ??
|
|
|
14523
14666
|
url: '/api/marketplace-resources/{uuid}/list_users/',
|
|
14524
14667
|
...options
|
|
14525
14668
|
});
|
|
14669
|
+
/**
|
|
14670
|
+
* List users and their roles in a scope
|
|
14671
|
+
*
|
|
14672
|
+
* Get number of items in the collection matching the request parameters.
|
|
14673
|
+
*/
|
|
14674
|
+
export const marketplaceResourcesListUsersCount = (options) => (options.client ?? client).head({
|
|
14675
|
+
security: [
|
|
14676
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
14677
|
+
{ scheme: 'bearer', type: 'http' }
|
|
14678
|
+
],
|
|
14679
|
+
url: '/api/marketplace-resources/{uuid}/list_users/',
|
|
14680
|
+
...options
|
|
14681
|
+
});
|
|
14526
14682
|
/**
|
|
14527
14683
|
* Move a resource to another project
|
|
14528
14684
|
*
|
|
@@ -15373,6 +15529,17 @@ export const serviceProviderChecklistsSummary = (options) => (options.client ??
|
|
|
15373
15529
|
url: '/api/marketplace-service-providers/{service_provider_uuid}/compliance/checklists_summary/',
|
|
15374
15530
|
...options
|
|
15375
15531
|
});
|
|
15532
|
+
/**
|
|
15533
|
+
* Get number of items in the collection matching the request parameters.
|
|
15534
|
+
*/
|
|
15535
|
+
export const marketplaceServiceProvidersComplianceChecklistsSummaryCount = (options) => (options.client ?? client).head({
|
|
15536
|
+
security: [
|
|
15537
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
15538
|
+
{ scheme: 'bearer', type: 'http' }
|
|
15539
|
+
],
|
|
15540
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/compliance/checklists_summary/',
|
|
15541
|
+
...options
|
|
15542
|
+
});
|
|
15376
15543
|
/**
|
|
15377
15544
|
* Get compliance overview for a service provider
|
|
15378
15545
|
*
|
|
@@ -15386,6 +15553,17 @@ export const serviceProviderComplianceOverview = (options) => (options.client ??
|
|
|
15386
15553
|
url: '/api/marketplace-service-providers/{service_provider_uuid}/compliance/compliance_overview/',
|
|
15387
15554
|
...options
|
|
15388
15555
|
});
|
|
15556
|
+
/**
|
|
15557
|
+
* Get number of items in the collection matching the request parameters.
|
|
15558
|
+
*/
|
|
15559
|
+
export const marketplaceServiceProvidersComplianceComplianceOverviewCount = (options) => (options.client ?? client).head({
|
|
15560
|
+
security: [
|
|
15561
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
15562
|
+
{ scheme: 'bearer', type: 'http' }
|
|
15563
|
+
],
|
|
15564
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/compliance/compliance_overview/',
|
|
15565
|
+
...options
|
|
15566
|
+
});
|
|
15389
15567
|
/**
|
|
15390
15568
|
* List offering users' compliance status
|
|
15391
15569
|
*
|
|
@@ -15399,6 +15577,17 @@ export const serviceProviderOfferingUsersCompliance = (options) => (options.clie
|
|
|
15399
15577
|
url: '/api/marketplace-service-providers/{service_provider_uuid}/compliance/offering_users/',
|
|
15400
15578
|
...options
|
|
15401
15579
|
});
|
|
15580
|
+
/**
|
|
15581
|
+
* Get number of items in the collection matching the request parameters.
|
|
15582
|
+
*/
|
|
15583
|
+
export const marketplaceServiceProvidersComplianceOfferingUsersCount = (options) => (options.client ?? client).head({
|
|
15584
|
+
security: [
|
|
15585
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
15586
|
+
{ scheme: 'bearer', type: 'http' }
|
|
15587
|
+
],
|
|
15588
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/compliance/offering_users/',
|
|
15589
|
+
...options
|
|
15590
|
+
});
|
|
15402
15591
|
/**
|
|
15403
15592
|
* List course project accounts for a service provider
|
|
15404
15593
|
*
|
|
@@ -15417,6 +15606,19 @@ export const marketplaceServiceProvidersCourseAccountsList = (options) => (optio
|
|
|
15417
15606
|
url: '/api/marketplace-service-providers/{service_provider_uuid}/course_accounts/',
|
|
15418
15607
|
...options
|
|
15419
15608
|
});
|
|
15609
|
+
/**
|
|
15610
|
+
* List course project accounts for a service provider
|
|
15611
|
+
*
|
|
15612
|
+
* Get number of items in the collection matching the request parameters.
|
|
15613
|
+
*/
|
|
15614
|
+
export const marketplaceServiceProvidersCourseAccountsCount = (options) => (options.client ?? client).head({
|
|
15615
|
+
security: [
|
|
15616
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
15617
|
+
{ scheme: 'bearer', type: 'http' }
|
|
15618
|
+
],
|
|
15619
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/course_accounts/',
|
|
15620
|
+
...options
|
|
15621
|
+
});
|
|
15420
15622
|
/**
|
|
15421
15623
|
* List customer projects of a service provider
|
|
15422
15624
|
*
|
|
@@ -15430,6 +15632,19 @@ export const marketplaceServiceProvidersCustomerProjectsList = (options) => (opt
|
|
|
15430
15632
|
url: '/api/marketplace-service-providers/{service_provider_uuid}/customer_projects/',
|
|
15431
15633
|
...options
|
|
15432
15634
|
});
|
|
15635
|
+
/**
|
|
15636
|
+
* List customer projects of a service provider
|
|
15637
|
+
*
|
|
15638
|
+
* Get number of items in the collection matching the request parameters.
|
|
15639
|
+
*/
|
|
15640
|
+
export const marketplaceServiceProvidersCustomerProjectsCount = (options) => (options.client ?? client).head({
|
|
15641
|
+
security: [
|
|
15642
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
15643
|
+
{ scheme: 'bearer', type: 'http' }
|
|
15644
|
+
],
|
|
15645
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/customer_projects/',
|
|
15646
|
+
...options
|
|
15647
|
+
});
|
|
15433
15648
|
/**
|
|
15434
15649
|
* List customers of a service provider
|
|
15435
15650
|
*
|
|
@@ -15443,6 +15658,19 @@ export const marketplaceServiceProvidersCustomersList = (options) => (options.cl
|
|
|
15443
15658
|
url: '/api/marketplace-service-providers/{service_provider_uuid}/customers/',
|
|
15444
15659
|
...options
|
|
15445
15660
|
});
|
|
15661
|
+
/**
|
|
15662
|
+
* List customers of a service provider
|
|
15663
|
+
*
|
|
15664
|
+
* Get number of items in the collection matching the request parameters.
|
|
15665
|
+
*/
|
|
15666
|
+
export const marketplaceServiceProvidersCustomersCount = (options) => (options.client ?? client).head({
|
|
15667
|
+
security: [
|
|
15668
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
15669
|
+
{ scheme: 'bearer', type: 'http' }
|
|
15670
|
+
],
|
|
15671
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/customers/',
|
|
15672
|
+
...options
|
|
15673
|
+
});
|
|
15446
15674
|
/**
|
|
15447
15675
|
* List SSH keys of a service provider
|
|
15448
15676
|
*
|
|
@@ -15456,6 +15684,19 @@ export const marketplaceServiceProvidersKeysList = (options) => (options.client
|
|
|
15456
15684
|
url: '/api/marketplace-service-providers/{service_provider_uuid}/keys/',
|
|
15457
15685
|
...options
|
|
15458
15686
|
});
|
|
15687
|
+
/**
|
|
15688
|
+
* List SSH keys of a service provider
|
|
15689
|
+
*
|
|
15690
|
+
* Get number of items in the collection matching the request parameters.
|
|
15691
|
+
*/
|
|
15692
|
+
export const marketplaceServiceProvidersKeysCount = (options) => (options.client ?? client).head({
|
|
15693
|
+
security: [
|
|
15694
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
15695
|
+
{ scheme: 'bearer', type: 'http' }
|
|
15696
|
+
],
|
|
15697
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/keys/',
|
|
15698
|
+
...options
|
|
15699
|
+
});
|
|
15459
15700
|
/**
|
|
15460
15701
|
* List offerings of a service provider
|
|
15461
15702
|
*
|
|
@@ -15469,6 +15710,19 @@ export const marketplaceServiceProvidersOfferingsList = (options) => (options.cl
|
|
|
15469
15710
|
url: '/api/marketplace-service-providers/{service_provider_uuid}/offerings/',
|
|
15470
15711
|
...options
|
|
15471
15712
|
});
|
|
15713
|
+
/**
|
|
15714
|
+
* List offerings of a service provider
|
|
15715
|
+
*
|
|
15716
|
+
* Get number of items in the collection matching the request parameters.
|
|
15717
|
+
*/
|
|
15718
|
+
export const marketplaceServiceProvidersOfferingsCount = (options) => (options.client ?? client).head({
|
|
15719
|
+
security: [
|
|
15720
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
15721
|
+
{ scheme: 'bearer', type: 'http' }
|
|
15722
|
+
],
|
|
15723
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/offerings/',
|
|
15724
|
+
...options
|
|
15725
|
+
});
|
|
15472
15726
|
/**
|
|
15473
15727
|
* List distinct offering types for a service provider
|
|
15474
15728
|
*/
|
|
@@ -15480,6 +15734,19 @@ export const marketplaceServiceProvidersOfferingsTypesList = (options) => (optio
|
|
|
15480
15734
|
url: '/api/marketplace-service-providers/{service_provider_uuid}/offerings/types/',
|
|
15481
15735
|
...options
|
|
15482
15736
|
});
|
|
15737
|
+
/**
|
|
15738
|
+
* List distinct offering types for a service provider
|
|
15739
|
+
*
|
|
15740
|
+
* Get number of items in the collection matching the request parameters.
|
|
15741
|
+
*/
|
|
15742
|
+
export const marketplaceServiceProvidersOfferingsTypesCount = (options) => (options.client ?? client).head({
|
|
15743
|
+
security: [
|
|
15744
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
15745
|
+
{ scheme: 'bearer', type: 'http' }
|
|
15746
|
+
],
|
|
15747
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/offerings/types/',
|
|
15748
|
+
...options
|
|
15749
|
+
});
|
|
15483
15750
|
/**
|
|
15484
15751
|
* List project permissions of a service provider
|
|
15485
15752
|
*
|
|
@@ -15493,6 +15760,19 @@ export const marketplaceServiceProvidersProjectPermissionsList = (options) => (o
|
|
|
15493
15760
|
url: '/api/marketplace-service-providers/{service_provider_uuid}/project_permissions/',
|
|
15494
15761
|
...options
|
|
15495
15762
|
});
|
|
15763
|
+
/**
|
|
15764
|
+
* List project permissions of a service provider
|
|
15765
|
+
*
|
|
15766
|
+
* Get number of items in the collection matching the request parameters.
|
|
15767
|
+
*/
|
|
15768
|
+
export const marketplaceServiceProvidersProjectPermissionsCount = (options) => (options.client ?? client).head({
|
|
15769
|
+
security: [
|
|
15770
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
15771
|
+
{ scheme: 'bearer', type: 'http' }
|
|
15772
|
+
],
|
|
15773
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/project_permissions/',
|
|
15774
|
+
...options
|
|
15775
|
+
});
|
|
15496
15776
|
/**
|
|
15497
15777
|
* List project service accounts for a service provider
|
|
15498
15778
|
*
|
|
@@ -15511,6 +15791,19 @@ export const marketplaceServiceProvidersProjectServiceAccountsList = (options) =
|
|
|
15511
15791
|
url: '/api/marketplace-service-providers/{service_provider_uuid}/project_service_accounts/',
|
|
15512
15792
|
...options
|
|
15513
15793
|
});
|
|
15794
|
+
/**
|
|
15795
|
+
* List project service accounts for a service provider
|
|
15796
|
+
*
|
|
15797
|
+
* Get number of items in the collection matching the request parameters.
|
|
15798
|
+
*/
|
|
15799
|
+
export const marketplaceServiceProvidersProjectServiceAccountsCount = (options) => (options.client ?? client).head({
|
|
15800
|
+
security: [
|
|
15801
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
15802
|
+
{ scheme: 'bearer', type: 'http' }
|
|
15803
|
+
],
|
|
15804
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/project_service_accounts/',
|
|
15805
|
+
...options
|
|
15806
|
+
});
|
|
15514
15807
|
/**
|
|
15515
15808
|
* List projects of a service provider
|
|
15516
15809
|
*
|
|
@@ -15524,6 +15817,19 @@ export const marketplaceServiceProvidersProjectsList = (options) => (options.cli
|
|
|
15524
15817
|
url: '/api/marketplace-service-providers/{service_provider_uuid}/projects/',
|
|
15525
15818
|
...options
|
|
15526
15819
|
});
|
|
15820
|
+
/**
|
|
15821
|
+
* List projects of a service provider
|
|
15822
|
+
*
|
|
15823
|
+
* Get number of items in the collection matching the request parameters.
|
|
15824
|
+
*/
|
|
15825
|
+
export const marketplaceServiceProvidersProjectsCount = (options) => (options.client ?? client).head({
|
|
15826
|
+
security: [
|
|
15827
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
15828
|
+
{ scheme: 'bearer', type: 'http' }
|
|
15829
|
+
],
|
|
15830
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/projects/',
|
|
15831
|
+
...options
|
|
15832
|
+
});
|
|
15527
15833
|
/**
|
|
15528
15834
|
* List customers of a specific user within a service provider's scope
|
|
15529
15835
|
*
|
|
@@ -15543,6 +15849,19 @@ export const marketplaceServiceProvidersUserCustomersList = (options) => (option
|
|
|
15543
15849
|
url: '/api/marketplace-service-providers/{service_provider_uuid}/user_customers/',
|
|
15544
15850
|
...options
|
|
15545
15851
|
});
|
|
15852
|
+
/**
|
|
15853
|
+
* List customers of a specific user within a service provider's scope
|
|
15854
|
+
*
|
|
15855
|
+
* Get number of items in the collection matching the request parameters.
|
|
15856
|
+
*/
|
|
15857
|
+
export const marketplaceServiceProvidersUserCustomersCount = (options) => (options.client ?? client).head({
|
|
15858
|
+
security: [
|
|
15859
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
15860
|
+
{ scheme: 'bearer', type: 'http' }
|
|
15861
|
+
],
|
|
15862
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/user_customers/',
|
|
15863
|
+
...options
|
|
15864
|
+
});
|
|
15546
15865
|
/**
|
|
15547
15866
|
* List users of a service provider
|
|
15548
15867
|
*
|
|
@@ -15556,6 +15875,19 @@ export const marketplaceServiceProvidersUsersList = (options) => (options.client
|
|
|
15556
15875
|
url: '/api/marketplace-service-providers/{service_provider_uuid}/users/',
|
|
15557
15876
|
...options
|
|
15558
15877
|
});
|
|
15878
|
+
/**
|
|
15879
|
+
* List users of a service provider
|
|
15880
|
+
*
|
|
15881
|
+
* Get number of items in the collection matching the request parameters.
|
|
15882
|
+
*/
|
|
15883
|
+
export const marketplaceServiceProvidersUsersCount = (options) => (options.client ?? client).head({
|
|
15884
|
+
security: [
|
|
15885
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
15886
|
+
{ scheme: 'bearer', type: 'http' }
|
|
15887
|
+
],
|
|
15888
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/users/',
|
|
15889
|
+
...options
|
|
15890
|
+
});
|
|
15559
15891
|
/**
|
|
15560
15892
|
* Delete a service provider
|
|
15561
15893
|
*
|
|
@@ -15706,6 +16038,19 @@ export const marketplaceServiceProvidersListUsersList = (options) => (options.cl
|
|
|
15706
16038
|
url: '/api/marketplace-service-providers/{uuid}/list_users/',
|
|
15707
16039
|
...options
|
|
15708
16040
|
});
|
|
16041
|
+
/**
|
|
16042
|
+
* List users and their roles in a scope
|
|
16043
|
+
*
|
|
16044
|
+
* Get number of items in the collection matching the request parameters.
|
|
16045
|
+
*/
|
|
16046
|
+
export const marketplaceServiceProvidersListUsersCount = (options) => (options.client ?? client).head({
|
|
16047
|
+
security: [
|
|
16048
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
16049
|
+
{ scheme: 'bearer', type: 'http' }
|
|
16050
|
+
],
|
|
16051
|
+
url: '/api/marketplace-service-providers/{uuid}/list_users/',
|
|
16052
|
+
...options
|
|
16053
|
+
});
|
|
15709
16054
|
/**
|
|
15710
16055
|
* Get service provider revenue
|
|
15711
16056
|
*
|
|
@@ -19806,6 +20151,19 @@ export const openportalUnmanagedProjectsListUsersList = (options) => (options.cl
|
|
|
19806
20151
|
url: '/api/openportal-unmanaged-projects/{uuid}/list_users/',
|
|
19807
20152
|
...options
|
|
19808
20153
|
});
|
|
20154
|
+
/**
|
|
20155
|
+
* List users and their roles in a scope
|
|
20156
|
+
*
|
|
20157
|
+
* Get number of items in the collection matching the request parameters.
|
|
20158
|
+
*/
|
|
20159
|
+
export const openportalUnmanagedProjectsListUsersCount = (options) => (options.client ?? client).head({
|
|
20160
|
+
security: [
|
|
20161
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
20162
|
+
{ scheme: 'bearer', type: 'http' }
|
|
20163
|
+
],
|
|
20164
|
+
url: '/api/openportal-unmanaged-projects/{uuid}/list_users/',
|
|
20165
|
+
...options
|
|
20166
|
+
});
|
|
19809
20167
|
/**
|
|
19810
20168
|
* Move project to another customer
|
|
19811
20169
|
*
|
|
@@ -24803,6 +25161,17 @@ export const projectsOtherUsersList = (options) => (options.client ?? client).ge
|
|
|
24803
25161
|
url: '/api/projects/{project_uuid}/other_users/',
|
|
24804
25162
|
...options
|
|
24805
25163
|
});
|
|
25164
|
+
/**
|
|
25165
|
+
* Get number of items in the collection matching the request parameters.
|
|
25166
|
+
*/
|
|
25167
|
+
export const projectsOtherUsersCount = (options) => (options.client ?? client).head({
|
|
25168
|
+
security: [
|
|
25169
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
25170
|
+
{ scheme: 'bearer', type: 'http' }
|
|
25171
|
+
],
|
|
25172
|
+
url: '/api/projects/{project_uuid}/other_users/',
|
|
25173
|
+
...options
|
|
25174
|
+
});
|
|
24806
25175
|
/**
|
|
24807
25176
|
* Delete a project
|
|
24808
25177
|
*
|
|
@@ -24932,6 +25301,19 @@ export const projectsListUsersList = (options) => (options.client ?? client).get
|
|
|
24932
25301
|
url: '/api/projects/{uuid}/list_users/',
|
|
24933
25302
|
...options
|
|
24934
25303
|
});
|
|
25304
|
+
/**
|
|
25305
|
+
* List users and their roles in a scope
|
|
25306
|
+
*
|
|
25307
|
+
* Get number of items in the collection matching the request parameters.
|
|
25308
|
+
*/
|
|
25309
|
+
export const projectsListUsersCount = (options) => (options.client ?? client).head({
|
|
25310
|
+
security: [
|
|
25311
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
25312
|
+
{ scheme: 'bearer', type: 'http' }
|
|
25313
|
+
],
|
|
25314
|
+
url: '/api/projects/{uuid}/list_users/',
|
|
25315
|
+
...options
|
|
25316
|
+
});
|
|
24935
25317
|
/**
|
|
24936
25318
|
* Move project to another customer
|
|
24937
25319
|
*
|
|
@@ -25373,6 +25755,19 @@ export const proposalProposalsListUsersList = (options) => (options.client ?? cl
|
|
|
25373
25755
|
url: '/api/proposal-proposals/{uuid}/list_users/',
|
|
25374
25756
|
...options
|
|
25375
25757
|
});
|
|
25758
|
+
/**
|
|
25759
|
+
* List users and their roles in a scope
|
|
25760
|
+
*
|
|
25761
|
+
* Get number of items in the collection matching the request parameters.
|
|
25762
|
+
*/
|
|
25763
|
+
export const proposalProposalsListUsersCount = (options) => (options.client ?? client).head({
|
|
25764
|
+
security: [
|
|
25765
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
25766
|
+
{ scheme: 'bearer', type: 'http' }
|
|
25767
|
+
],
|
|
25768
|
+
url: '/api/proposal-proposals/{uuid}/list_users/',
|
|
25769
|
+
...options
|
|
25770
|
+
});
|
|
25376
25771
|
/**
|
|
25377
25772
|
* Reject a proposal.
|
|
25378
25773
|
*/
|
|
@@ -25901,6 +26296,19 @@ export const proposalProtectedCallsListUsersList = (options) => (options.client
|
|
|
25901
26296
|
url: '/api/proposal-protected-calls/{uuid}/list_users/',
|
|
25902
26297
|
...options
|
|
25903
26298
|
});
|
|
26299
|
+
/**
|
|
26300
|
+
* List users and their roles in a scope
|
|
26301
|
+
*
|
|
26302
|
+
* Get number of items in the collection matching the request parameters.
|
|
26303
|
+
*/
|
|
26304
|
+
export const proposalProtectedCallsListUsersCount = (options) => (options.client ?? client).head({
|
|
26305
|
+
security: [
|
|
26306
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
26307
|
+
{ scheme: 'bearer', type: 'http' }
|
|
26308
|
+
],
|
|
26309
|
+
url: '/api/proposal-protected-calls/{uuid}/list_users/',
|
|
26310
|
+
...options
|
|
26311
|
+
});
|
|
25904
26312
|
/**
|
|
25905
26313
|
* Get or update matching configuration for this call.
|
|
25906
26314
|
*/
|
|
@@ -28437,6 +28845,17 @@ export const nestedReviewerProfileAffiliationsList = (options) => (options.clien
|
|
|
28437
28845
|
url: '/api/reviewer-profiles/{reviewer_profile_uuid}/affiliations/',
|
|
28438
28846
|
...options
|
|
28439
28847
|
});
|
|
28848
|
+
/**
|
|
28849
|
+
* Get number of items in the collection matching the request parameters.
|
|
28850
|
+
*/
|
|
28851
|
+
export const nestedReviewerProfileAffiliationsCount = (options) => (options.client ?? client).head({
|
|
28852
|
+
security: [
|
|
28853
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
28854
|
+
{ scheme: 'bearer', type: 'http' }
|
|
28855
|
+
],
|
|
28856
|
+
url: '/api/reviewer-profiles/{reviewer_profile_uuid}/affiliations/',
|
|
28857
|
+
...options
|
|
28858
|
+
});
|
|
28440
28859
|
export const nestedReviewerProfileAffiliationsCreate = (options) => (options.client ?? client).post({
|
|
28441
28860
|
security: [
|
|
28442
28861
|
{ name: 'Authorization', type: 'apiKey' },
|
|
@@ -28497,6 +28916,17 @@ export const nestedReviewerProfileExpertiseList = (options) => (options.client ?
|
|
|
28497
28916
|
url: '/api/reviewer-profiles/{reviewer_profile_uuid}/expertise/',
|
|
28498
28917
|
...options
|
|
28499
28918
|
});
|
|
28919
|
+
/**
|
|
28920
|
+
* Get number of items in the collection matching the request parameters.
|
|
28921
|
+
*/
|
|
28922
|
+
export const nestedReviewerProfileExpertiseCount = (options) => (options.client ?? client).head({
|
|
28923
|
+
security: [
|
|
28924
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
28925
|
+
{ scheme: 'bearer', type: 'http' }
|
|
28926
|
+
],
|
|
28927
|
+
url: '/api/reviewer-profiles/{reviewer_profile_uuid}/expertise/',
|
|
28928
|
+
...options
|
|
28929
|
+
});
|
|
28500
28930
|
export const nestedReviewerProfileExpertiseCreate = (options) => (options.client ?? client).post({
|
|
28501
28931
|
security: [
|
|
28502
28932
|
{ name: 'Authorization', type: 'apiKey' },
|
|
@@ -28557,6 +28987,17 @@ export const nestedReviewerProfilePublicationsList = (options) => (options.clien
|
|
|
28557
28987
|
url: '/api/reviewer-profiles/{reviewer_profile_uuid}/publications/',
|
|
28558
28988
|
...options
|
|
28559
28989
|
});
|
|
28990
|
+
/**
|
|
28991
|
+
* Get number of items in the collection matching the request parameters.
|
|
28992
|
+
*/
|
|
28993
|
+
export const nestedReviewerProfilePublicationsCount = (options) => (options.client ?? client).head({
|
|
28994
|
+
security: [
|
|
28995
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
28996
|
+
{ scheme: 'bearer', type: 'http' }
|
|
28997
|
+
],
|
|
28998
|
+
url: '/api/reviewer-profiles/{reviewer_profile_uuid}/publications/',
|
|
28999
|
+
...options
|
|
29000
|
+
});
|
|
28560
29001
|
export const nestedReviewerProfilePublicationsCreate = (options) => (options.client ?? client).post({
|
|
28561
29002
|
security: [
|
|
28562
29003
|
{ name: 'Authorization', type: 'apiKey' },
|