waldur-js-client 7.9.10-dev.0 → 7.9.10-dev.10
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 +201 -9
- package/dist/sdk.gen.js +907 -8
- package/dist/types.gen.d.ts +1872 -263
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -5823,6 +5823,46 @@ export const customersDeleteUser = (options) => {
|
|
|
5823
5823
|
}
|
|
5824
5824
|
});
|
|
5825
5825
|
};
|
|
5826
|
+
/**
|
|
5827
|
+
* Get version history
|
|
5828
|
+
* Returns the version history for this object. Only accessible by staff and support users.
|
|
5829
|
+
*/
|
|
5830
|
+
export const customersHistoryList = (options) => {
|
|
5831
|
+
return (options.client ?? _heyApiClient).get({
|
|
5832
|
+
security: [
|
|
5833
|
+
{
|
|
5834
|
+
name: 'Authorization',
|
|
5835
|
+
type: 'apiKey'
|
|
5836
|
+
},
|
|
5837
|
+
{
|
|
5838
|
+
scheme: 'bearer',
|
|
5839
|
+
type: 'http'
|
|
5840
|
+
}
|
|
5841
|
+
],
|
|
5842
|
+
url: '/api/customers/{uuid}/history/',
|
|
5843
|
+
...options
|
|
5844
|
+
});
|
|
5845
|
+
};
|
|
5846
|
+
/**
|
|
5847
|
+
* Get object state at a specific timestamp
|
|
5848
|
+
* Returns the state of the object as it was at the specified timestamp. Only accessible by staff and support users.
|
|
5849
|
+
*/
|
|
5850
|
+
export const customersHistoryAtRetrieve = (options) => {
|
|
5851
|
+
return (options.client ?? _heyApiClient).get({
|
|
5852
|
+
security: [
|
|
5853
|
+
{
|
|
5854
|
+
name: 'Authorization',
|
|
5855
|
+
type: 'apiKey'
|
|
5856
|
+
},
|
|
5857
|
+
{
|
|
5858
|
+
scheme: 'bearer',
|
|
5859
|
+
type: 'http'
|
|
5860
|
+
}
|
|
5861
|
+
],
|
|
5862
|
+
url: '/api/customers/{uuid}/history/at/',
|
|
5863
|
+
...options
|
|
5864
|
+
});
|
|
5865
|
+
};
|
|
5826
5866
|
/**
|
|
5827
5867
|
* List users and their roles in a scope
|
|
5828
5868
|
* Retrieves a list of users who have a role within a specific scope (e.g., a project or an organization). The list can be filtered by user details or role.
|
|
@@ -5843,6 +5883,70 @@ export const customersListUsersList = (options) => {
|
|
|
5843
5883
|
...options
|
|
5844
5884
|
});
|
|
5845
5885
|
};
|
|
5886
|
+
/**
|
|
5887
|
+
* Get project digest configuration
|
|
5888
|
+
* Retrieve the project digest email configuration for this organization.
|
|
5889
|
+
*/
|
|
5890
|
+
export const customersProjectDigestConfigRetrieve = (options) => {
|
|
5891
|
+
return (options.client ?? _heyApiClient).get({
|
|
5892
|
+
security: [
|
|
5893
|
+
{
|
|
5894
|
+
name: 'Authorization',
|
|
5895
|
+
type: 'apiKey'
|
|
5896
|
+
},
|
|
5897
|
+
{
|
|
5898
|
+
scheme: 'bearer',
|
|
5899
|
+
type: 'http'
|
|
5900
|
+
}
|
|
5901
|
+
],
|
|
5902
|
+
url: '/api/customers/{uuid}/project-digest-config/',
|
|
5903
|
+
...options
|
|
5904
|
+
});
|
|
5905
|
+
};
|
|
5906
|
+
/**
|
|
5907
|
+
* Preview digest for a project
|
|
5908
|
+
* Returns rendered HTML preview of the digest for a specific project.
|
|
5909
|
+
*/
|
|
5910
|
+
export const customersProjectDigestConfigPreview = (options) => {
|
|
5911
|
+
return (options.client ?? _heyApiClient).post({
|
|
5912
|
+
security: [
|
|
5913
|
+
{
|
|
5914
|
+
name: 'Authorization',
|
|
5915
|
+
type: 'apiKey'
|
|
5916
|
+
},
|
|
5917
|
+
{
|
|
5918
|
+
scheme: 'bearer',
|
|
5919
|
+
type: 'http'
|
|
5920
|
+
}
|
|
5921
|
+
],
|
|
5922
|
+
url: '/api/customers/{uuid}/project-digest-config/preview/',
|
|
5923
|
+
...options,
|
|
5924
|
+
headers: {
|
|
5925
|
+
'Content-Type': 'application/json',
|
|
5926
|
+
...options.headers
|
|
5927
|
+
}
|
|
5928
|
+
});
|
|
5929
|
+
};
|
|
5930
|
+
/**
|
|
5931
|
+
* Send a test digest email
|
|
5932
|
+
* Send a test digest email to the requesting user.
|
|
5933
|
+
*/
|
|
5934
|
+
export const customersProjectDigestConfigSendTest = (options) => {
|
|
5935
|
+
return (options.client ?? _heyApiClient).post({
|
|
5936
|
+
security: [
|
|
5937
|
+
{
|
|
5938
|
+
name: 'Authorization',
|
|
5939
|
+
type: 'apiKey'
|
|
5940
|
+
},
|
|
5941
|
+
{
|
|
5942
|
+
scheme: 'bearer',
|
|
5943
|
+
type: 'http'
|
|
5944
|
+
}
|
|
5945
|
+
],
|
|
5946
|
+
url: '/api/customers/{uuid}/project-digest-config/send-test/',
|
|
5947
|
+
...options
|
|
5948
|
+
});
|
|
5949
|
+
};
|
|
5846
5950
|
/**
|
|
5847
5951
|
* Get customer resource usage statistics
|
|
5848
5952
|
* Provides statistics about the resource usage (e.g., CPU, RAM, storage) for all projects within a customer. Can be filtered to show usage for the current month only.
|
|
@@ -5863,6 +5967,54 @@ export const customersStatsRetrieve = (options) => {
|
|
|
5863
5967
|
...options
|
|
5864
5968
|
});
|
|
5865
5969
|
};
|
|
5970
|
+
/**
|
|
5971
|
+
* Update project digest configuration
|
|
5972
|
+
* Update the project digest email configuration for this organization.
|
|
5973
|
+
*/
|
|
5974
|
+
export const customersUpdateProjectDigestConfigPartialUpdate = (options) => {
|
|
5975
|
+
return (options.client ?? _heyApiClient).patch({
|
|
5976
|
+
security: [
|
|
5977
|
+
{
|
|
5978
|
+
name: 'Authorization',
|
|
5979
|
+
type: 'apiKey'
|
|
5980
|
+
},
|
|
5981
|
+
{
|
|
5982
|
+
scheme: 'bearer',
|
|
5983
|
+
type: 'http'
|
|
5984
|
+
}
|
|
5985
|
+
],
|
|
5986
|
+
url: '/api/customers/{uuid}/update-project-digest-config/',
|
|
5987
|
+
...options,
|
|
5988
|
+
headers: {
|
|
5989
|
+
'Content-Type': 'application/json',
|
|
5990
|
+
...options.headers
|
|
5991
|
+
}
|
|
5992
|
+
});
|
|
5993
|
+
};
|
|
5994
|
+
/**
|
|
5995
|
+
* Update project digest configuration
|
|
5996
|
+
* Update the project digest email configuration for this organization.
|
|
5997
|
+
*/
|
|
5998
|
+
export const customersUpdateProjectDigestConfigUpdate = (options) => {
|
|
5999
|
+
return (options.client ?? _heyApiClient).put({
|
|
6000
|
+
security: [
|
|
6001
|
+
{
|
|
6002
|
+
name: 'Authorization',
|
|
6003
|
+
type: 'apiKey'
|
|
6004
|
+
},
|
|
6005
|
+
{
|
|
6006
|
+
scheme: 'bearer',
|
|
6007
|
+
type: 'http'
|
|
6008
|
+
}
|
|
6009
|
+
],
|
|
6010
|
+
url: '/api/customers/{uuid}/update-project-digest-config/',
|
|
6011
|
+
...options,
|
|
6012
|
+
headers: {
|
|
6013
|
+
'Content-Type': 'application/json',
|
|
6014
|
+
...options.headers
|
|
6015
|
+
}
|
|
6016
|
+
});
|
|
6017
|
+
};
|
|
5866
6018
|
/**
|
|
5867
6019
|
* Update organization groups for a customer
|
|
5868
6020
|
* Assigns a customer to one or more organization groups. This action is restricted to staff users.
|
|
@@ -8500,6 +8652,46 @@ export const invoicesRetrieve = (options) => {
|
|
|
8500
8652
|
...options
|
|
8501
8653
|
});
|
|
8502
8654
|
};
|
|
8655
|
+
/**
|
|
8656
|
+
* Get version history
|
|
8657
|
+
* Returns the version history for this object. Only accessible by staff and support users.
|
|
8658
|
+
*/
|
|
8659
|
+
export const invoicesHistoryList = (options) => {
|
|
8660
|
+
return (options.client ?? _heyApiClient).get({
|
|
8661
|
+
security: [
|
|
8662
|
+
{
|
|
8663
|
+
name: 'Authorization',
|
|
8664
|
+
type: 'apiKey'
|
|
8665
|
+
},
|
|
8666
|
+
{
|
|
8667
|
+
scheme: 'bearer',
|
|
8668
|
+
type: 'http'
|
|
8669
|
+
}
|
|
8670
|
+
],
|
|
8671
|
+
url: '/api/invoices/{uuid}/history/',
|
|
8672
|
+
...options
|
|
8673
|
+
});
|
|
8674
|
+
};
|
|
8675
|
+
/**
|
|
8676
|
+
* Get object state at a specific timestamp
|
|
8677
|
+
* Returns the state of the object as it was at the specified timestamp. Only accessible by staff and support users.
|
|
8678
|
+
*/
|
|
8679
|
+
export const invoicesHistoryAtRetrieve = (options) => {
|
|
8680
|
+
return (options.client ?? _heyApiClient).get({
|
|
8681
|
+
security: [
|
|
8682
|
+
{
|
|
8683
|
+
name: 'Authorization',
|
|
8684
|
+
type: 'apiKey'
|
|
8685
|
+
},
|
|
8686
|
+
{
|
|
8687
|
+
scheme: 'bearer',
|
|
8688
|
+
type: 'http'
|
|
8689
|
+
}
|
|
8690
|
+
],
|
|
8691
|
+
url: '/api/invoices/{uuid}/history/at/',
|
|
8692
|
+
...options
|
|
8693
|
+
});
|
|
8694
|
+
};
|
|
8503
8695
|
/**
|
|
8504
8696
|
* Get invoice items
|
|
8505
8697
|
* Retrieve a list of invoice items for the specified invoice.
|
|
@@ -8978,6 +9170,46 @@ export const keysRetrieve = (options) => {
|
|
|
8978
9170
|
...options
|
|
8979
9171
|
});
|
|
8980
9172
|
};
|
|
9173
|
+
/**
|
|
9174
|
+
* Get version history
|
|
9175
|
+
* Returns the version history for this object. Only accessible by staff and support users.
|
|
9176
|
+
*/
|
|
9177
|
+
export const keysHistoryList = (options) => {
|
|
9178
|
+
return (options.client ?? _heyApiClient).get({
|
|
9179
|
+
security: [
|
|
9180
|
+
{
|
|
9181
|
+
name: 'Authorization',
|
|
9182
|
+
type: 'apiKey'
|
|
9183
|
+
},
|
|
9184
|
+
{
|
|
9185
|
+
scheme: 'bearer',
|
|
9186
|
+
type: 'http'
|
|
9187
|
+
}
|
|
9188
|
+
],
|
|
9189
|
+
url: '/api/keys/{uuid}/history/',
|
|
9190
|
+
...options
|
|
9191
|
+
});
|
|
9192
|
+
};
|
|
9193
|
+
/**
|
|
9194
|
+
* Get object state at a specific timestamp
|
|
9195
|
+
* Returns the state of the object as it was at the specified timestamp. Only accessible by staff and support users.
|
|
9196
|
+
*/
|
|
9197
|
+
export const keysHistoryAtRetrieve = (options) => {
|
|
9198
|
+
return (options.client ?? _heyApiClient).get({
|
|
9199
|
+
security: [
|
|
9200
|
+
{
|
|
9201
|
+
name: 'Authorization',
|
|
9202
|
+
type: 'apiKey'
|
|
9203
|
+
},
|
|
9204
|
+
{
|
|
9205
|
+
scheme: 'bearer',
|
|
9206
|
+
type: 'http'
|
|
9207
|
+
}
|
|
9208
|
+
],
|
|
9209
|
+
url: '/api/keys/{uuid}/history/at/',
|
|
9210
|
+
...options
|
|
9211
|
+
});
|
|
9212
|
+
};
|
|
8981
9213
|
export const lexisLinksList = (options) => {
|
|
8982
9214
|
return (options?.client ?? _heyApiClient).get({
|
|
8983
9215
|
security: [
|
|
@@ -13322,6 +13554,46 @@ export const marketplaceOrdersRetrieve = (options) => {
|
|
|
13322
13554
|
...options
|
|
13323
13555
|
});
|
|
13324
13556
|
};
|
|
13557
|
+
export const marketplaceOrdersPartialUpdate = (options) => {
|
|
13558
|
+
return (options.client ?? _heyApiClient).patch({
|
|
13559
|
+
security: [
|
|
13560
|
+
{
|
|
13561
|
+
name: 'Authorization',
|
|
13562
|
+
type: 'apiKey'
|
|
13563
|
+
},
|
|
13564
|
+
{
|
|
13565
|
+
scheme: 'bearer',
|
|
13566
|
+
type: 'http'
|
|
13567
|
+
}
|
|
13568
|
+
],
|
|
13569
|
+
url: '/api/marketplace-orders/{uuid}/',
|
|
13570
|
+
...options,
|
|
13571
|
+
headers: {
|
|
13572
|
+
'Content-Type': 'application/json',
|
|
13573
|
+
...options.headers
|
|
13574
|
+
}
|
|
13575
|
+
});
|
|
13576
|
+
};
|
|
13577
|
+
export const marketplaceOrdersUpdate = (options) => {
|
|
13578
|
+
return (options.client ?? _heyApiClient).put({
|
|
13579
|
+
security: [
|
|
13580
|
+
{
|
|
13581
|
+
name: 'Authorization',
|
|
13582
|
+
type: 'apiKey'
|
|
13583
|
+
},
|
|
13584
|
+
{
|
|
13585
|
+
scheme: 'bearer',
|
|
13586
|
+
type: 'http'
|
|
13587
|
+
}
|
|
13588
|
+
],
|
|
13589
|
+
url: '/api/marketplace-orders/{uuid}/',
|
|
13590
|
+
...options,
|
|
13591
|
+
headers: {
|
|
13592
|
+
'Content-Type': 'application/json',
|
|
13593
|
+
...options.headers
|
|
13594
|
+
}
|
|
13595
|
+
});
|
|
13596
|
+
};
|
|
13325
13597
|
/**
|
|
13326
13598
|
* Approve an order (consumer)
|
|
13327
13599
|
* Approves a pending order from the consumer's side (e.g., project manager, customer owner). This transitions the order to the next state, which could be pending provider approval or executing.
|
|
@@ -13850,6 +14122,46 @@ export const marketplacePlansDeleteOrganizationGroups = (options) => {
|
|
|
13850
14122
|
...options
|
|
13851
14123
|
});
|
|
13852
14124
|
};
|
|
14125
|
+
/**
|
|
14126
|
+
* Get version history
|
|
14127
|
+
* Returns the version history for this object. Only accessible by staff and support users.
|
|
14128
|
+
*/
|
|
14129
|
+
export const marketplacePlansHistoryList = (options) => {
|
|
14130
|
+
return (options.client ?? _heyApiClient).get({
|
|
14131
|
+
security: [
|
|
14132
|
+
{
|
|
14133
|
+
name: 'Authorization',
|
|
14134
|
+
type: 'apiKey'
|
|
14135
|
+
},
|
|
14136
|
+
{
|
|
14137
|
+
scheme: 'bearer',
|
|
14138
|
+
type: 'http'
|
|
14139
|
+
}
|
|
14140
|
+
],
|
|
14141
|
+
url: '/api/marketplace-plans/{uuid}/history/',
|
|
14142
|
+
...options
|
|
14143
|
+
});
|
|
14144
|
+
};
|
|
14145
|
+
/**
|
|
14146
|
+
* Get object state at a specific timestamp
|
|
14147
|
+
* Returns the state of the object as it was at the specified timestamp. Only accessible by staff and support users.
|
|
14148
|
+
*/
|
|
14149
|
+
export const marketplacePlansHistoryAtRetrieve = (options) => {
|
|
14150
|
+
return (options.client ?? _heyApiClient).get({
|
|
14151
|
+
security: [
|
|
14152
|
+
{
|
|
14153
|
+
name: 'Authorization',
|
|
14154
|
+
type: 'apiKey'
|
|
14155
|
+
},
|
|
14156
|
+
{
|
|
14157
|
+
scheme: 'bearer',
|
|
14158
|
+
type: 'http'
|
|
14159
|
+
}
|
|
14160
|
+
],
|
|
14161
|
+
url: '/api/marketplace-plans/{uuid}/history/at/',
|
|
14162
|
+
...options
|
|
14163
|
+
});
|
|
14164
|
+
};
|
|
13853
14165
|
/**
|
|
13854
14166
|
* Update plan component discounts
|
|
13855
14167
|
*
|
|
@@ -15017,6 +15329,46 @@ export const marketplaceProviderOfferingsGlauthUsersConfigRetrieve = (options) =
|
|
|
15017
15329
|
...options
|
|
15018
15330
|
});
|
|
15019
15331
|
};
|
|
15332
|
+
/**
|
|
15333
|
+
* Get version history
|
|
15334
|
+
* Returns the version history for this object. Only accessible by staff and support users.
|
|
15335
|
+
*/
|
|
15336
|
+
export const marketplaceProviderOfferingsHistoryList = (options) => {
|
|
15337
|
+
return (options.client ?? _heyApiClient).get({
|
|
15338
|
+
security: [
|
|
15339
|
+
{
|
|
15340
|
+
name: 'Authorization',
|
|
15341
|
+
type: 'apiKey'
|
|
15342
|
+
},
|
|
15343
|
+
{
|
|
15344
|
+
scheme: 'bearer',
|
|
15345
|
+
type: 'http'
|
|
15346
|
+
}
|
|
15347
|
+
],
|
|
15348
|
+
url: '/api/marketplace-provider-offerings/{uuid}/history/',
|
|
15349
|
+
...options
|
|
15350
|
+
});
|
|
15351
|
+
};
|
|
15352
|
+
/**
|
|
15353
|
+
* Get object state at a specific timestamp
|
|
15354
|
+
* Returns the state of the object as it was at the specified timestamp. Only accessible by staff and support users.
|
|
15355
|
+
*/
|
|
15356
|
+
export const marketplaceProviderOfferingsHistoryAtRetrieve = (options) => {
|
|
15357
|
+
return (options.client ?? _heyApiClient).get({
|
|
15358
|
+
security: [
|
|
15359
|
+
{
|
|
15360
|
+
name: 'Authorization',
|
|
15361
|
+
type: 'apiKey'
|
|
15362
|
+
},
|
|
15363
|
+
{
|
|
15364
|
+
scheme: 'bearer',
|
|
15365
|
+
type: 'http'
|
|
15366
|
+
}
|
|
15367
|
+
],
|
|
15368
|
+
url: '/api/marketplace-provider-offerings/{uuid}/history/at/',
|
|
15369
|
+
...options
|
|
15370
|
+
});
|
|
15371
|
+
};
|
|
15020
15372
|
/**
|
|
15021
15373
|
* Import a resource
|
|
15022
15374
|
* Imports a backend resource into the marketplace.
|
|
@@ -16217,8 +16569,8 @@ export const marketplaceProviderResourcesGlauthUsersConfigRetrieve = (options) =
|
|
|
16217
16569
|
});
|
|
16218
16570
|
};
|
|
16219
16571
|
/**
|
|
16220
|
-
* Get
|
|
16221
|
-
* Returns the version history
|
|
16572
|
+
* Get version history
|
|
16573
|
+
* Returns the version history for this object. Only accessible by staff and support users.
|
|
16222
16574
|
*/
|
|
16223
16575
|
export const marketplaceProviderResourcesHistoryList = (options) => {
|
|
16224
16576
|
return (options.client ?? _heyApiClient).get({
|
|
@@ -16237,8 +16589,8 @@ export const marketplaceProviderResourcesHistoryList = (options) => {
|
|
|
16237
16589
|
});
|
|
16238
16590
|
};
|
|
16239
16591
|
/**
|
|
16240
|
-
* Get
|
|
16241
|
-
* Returns the state of the
|
|
16592
|
+
* Get object state at a specific timestamp
|
|
16593
|
+
* Returns the state of the object as it was at the specified timestamp. Only accessible by staff and support users.
|
|
16242
16594
|
*/
|
|
16243
16595
|
export const marketplaceProviderResourcesHistoryAtRetrieve = (options) => {
|
|
16244
16596
|
return (options.client ?? _heyApiClient).get({
|
|
@@ -17387,8 +17739,8 @@ export const marketplaceResourcesGlauthUsersConfigRetrieve = (options) => {
|
|
|
17387
17739
|
});
|
|
17388
17740
|
};
|
|
17389
17741
|
/**
|
|
17390
|
-
* Get
|
|
17391
|
-
* Returns the version history
|
|
17742
|
+
* Get version history
|
|
17743
|
+
* Returns the version history for this object. Only accessible by staff and support users.
|
|
17392
17744
|
*/
|
|
17393
17745
|
export const marketplaceResourcesHistoryList = (options) => {
|
|
17394
17746
|
return (options.client ?? _heyApiClient).get({
|
|
@@ -17407,8 +17759,8 @@ export const marketplaceResourcesHistoryList = (options) => {
|
|
|
17407
17759
|
});
|
|
17408
17760
|
};
|
|
17409
17761
|
/**
|
|
17410
|
-
* Get
|
|
17411
|
-
* Returns the state of the
|
|
17762
|
+
* Get object state at a specific timestamp
|
|
17763
|
+
* Returns the state of the object as it was at the specified timestamp. Only accessible by staff and support users.
|
|
17412
17764
|
*/
|
|
17413
17765
|
export const marketplaceResourcesHistoryAtRetrieve = (options) => {
|
|
17414
17766
|
return (options.client ?? _heyApiClient).get({
|
|
@@ -19820,6 +20172,113 @@ export const marketplaceSlurmPeriodicUsagePoliciesUpdate = (options) => {
|
|
|
19820
20172
|
}
|
|
19821
20173
|
});
|
|
19822
20174
|
};
|
|
20175
|
+
/**
|
|
20176
|
+
* List command history for this policy.
|
|
20177
|
+
*/
|
|
20178
|
+
export const marketplaceSlurmPeriodicUsagePoliciesCommandHistoryList = (options) => {
|
|
20179
|
+
return (options.client ?? _heyApiClient).get({
|
|
20180
|
+
security: [
|
|
20181
|
+
{
|
|
20182
|
+
name: 'Authorization',
|
|
20183
|
+
type: 'apiKey'
|
|
20184
|
+
},
|
|
20185
|
+
{
|
|
20186
|
+
scheme: 'bearer',
|
|
20187
|
+
type: 'http'
|
|
20188
|
+
}
|
|
20189
|
+
],
|
|
20190
|
+
url: '/api/marketplace-slurm-periodic-usage-policies/{uuid}/command-history/',
|
|
20191
|
+
...options
|
|
20192
|
+
});
|
|
20193
|
+
};
|
|
20194
|
+
/**
|
|
20195
|
+
* Staff-only. Dry-run evaluation: calculates usage percentages and shows what actions would be triggered, without applying any changes.
|
|
20196
|
+
*/
|
|
20197
|
+
export const marketplaceSlurmPeriodicUsagePoliciesDryRun = (options) => {
|
|
20198
|
+
return (options.client ?? _heyApiClient).post({
|
|
20199
|
+
security: [
|
|
20200
|
+
{
|
|
20201
|
+
name: 'Authorization',
|
|
20202
|
+
type: 'apiKey'
|
|
20203
|
+
},
|
|
20204
|
+
{
|
|
20205
|
+
scheme: 'bearer',
|
|
20206
|
+
type: 'http'
|
|
20207
|
+
}
|
|
20208
|
+
],
|
|
20209
|
+
url: '/api/marketplace-slurm-periodic-usage-policies/{uuid}/dry-run/',
|
|
20210
|
+
...options,
|
|
20211
|
+
headers: {
|
|
20212
|
+
'Content-Type': 'application/json',
|
|
20213
|
+
...options.headers
|
|
20214
|
+
}
|
|
20215
|
+
});
|
|
20216
|
+
};
|
|
20217
|
+
/**
|
|
20218
|
+
* Staff-only. Run synchronous policy evaluation: calculates usage, applies actions (pause/downscale/notify), and creates evaluation logs.
|
|
20219
|
+
*/
|
|
20220
|
+
export const marketplaceSlurmPeriodicUsagePoliciesEvaluate = (options) => {
|
|
20221
|
+
return (options.client ?? _heyApiClient).post({
|
|
20222
|
+
security: [
|
|
20223
|
+
{
|
|
20224
|
+
name: 'Authorization',
|
|
20225
|
+
type: 'apiKey'
|
|
20226
|
+
},
|
|
20227
|
+
{
|
|
20228
|
+
scheme: 'bearer',
|
|
20229
|
+
type: 'http'
|
|
20230
|
+
}
|
|
20231
|
+
],
|
|
20232
|
+
url: '/api/marketplace-slurm-periodic-usage-policies/{uuid}/evaluate/',
|
|
20233
|
+
...options,
|
|
20234
|
+
headers: {
|
|
20235
|
+
'Content-Type': 'application/json',
|
|
20236
|
+
...options.headers
|
|
20237
|
+
}
|
|
20238
|
+
});
|
|
20239
|
+
};
|
|
20240
|
+
/**
|
|
20241
|
+
* List evaluation logs for this policy.
|
|
20242
|
+
*/
|
|
20243
|
+
export const marketplaceSlurmPeriodicUsagePoliciesEvaluationLogsList = (options) => {
|
|
20244
|
+
return (options.client ?? _heyApiClient).get({
|
|
20245
|
+
security: [
|
|
20246
|
+
{
|
|
20247
|
+
name: 'Authorization',
|
|
20248
|
+
type: 'apiKey'
|
|
20249
|
+
},
|
|
20250
|
+
{
|
|
20251
|
+
scheme: 'bearer',
|
|
20252
|
+
type: 'http'
|
|
20253
|
+
}
|
|
20254
|
+
],
|
|
20255
|
+
url: '/api/marketplace-slurm-periodic-usage-policies/{uuid}/evaluation-logs/',
|
|
20256
|
+
...options
|
|
20257
|
+
});
|
|
20258
|
+
};
|
|
20259
|
+
/**
|
|
20260
|
+
* Report command execution result from site agent.
|
|
20261
|
+
*/
|
|
20262
|
+
export const marketplaceSlurmPeriodicUsagePoliciesReportCommandResult = (options) => {
|
|
20263
|
+
return (options.client ?? _heyApiClient).post({
|
|
20264
|
+
security: [
|
|
20265
|
+
{
|
|
20266
|
+
name: 'Authorization',
|
|
20267
|
+
type: 'apiKey'
|
|
20268
|
+
},
|
|
20269
|
+
{
|
|
20270
|
+
scheme: 'bearer',
|
|
20271
|
+
type: 'http'
|
|
20272
|
+
}
|
|
20273
|
+
],
|
|
20274
|
+
url: '/api/marketplace-slurm-periodic-usage-policies/{uuid}/report-command-result/',
|
|
20275
|
+
...options,
|
|
20276
|
+
headers: {
|
|
20277
|
+
'Content-Type': 'application/json',
|
|
20278
|
+
...options.headers
|
|
20279
|
+
}
|
|
20280
|
+
});
|
|
20281
|
+
};
|
|
19823
20282
|
export const marketplaceSlurmPeriodicUsagePoliciesActionsRetrieve = (options) => {
|
|
19824
20283
|
return (options?.client ?? _heyApiClient).get({
|
|
19825
20284
|
security: [
|
|
@@ -20462,6 +20921,44 @@ export const marketplaceSoftwareVersionsUpdate = (options) => {
|
|
|
20462
20921
|
...options
|
|
20463
20922
|
});
|
|
20464
20923
|
};
|
|
20924
|
+
/**
|
|
20925
|
+
* Return aggregated usage trends per month.
|
|
20926
|
+
*/
|
|
20927
|
+
export const marketplaceStatsAggregatedUsageTrendsList = (options) => {
|
|
20928
|
+
return (options?.client ?? _heyApiClient).get({
|
|
20929
|
+
security: [
|
|
20930
|
+
{
|
|
20931
|
+
name: 'Authorization',
|
|
20932
|
+
type: 'apiKey'
|
|
20933
|
+
},
|
|
20934
|
+
{
|
|
20935
|
+
scheme: 'bearer',
|
|
20936
|
+
type: 'http'
|
|
20937
|
+
}
|
|
20938
|
+
],
|
|
20939
|
+
url: '/api/marketplace-stats/aggregated_usage_trends/',
|
|
20940
|
+
...options
|
|
20941
|
+
});
|
|
20942
|
+
};
|
|
20943
|
+
/**
|
|
20944
|
+
* Get number of items in the collection matching the request parameters.
|
|
20945
|
+
*/
|
|
20946
|
+
export const marketplaceStatsAggregatedUsageTrendsCount = (options) => {
|
|
20947
|
+
return (options?.client ?? _heyApiClient).head({
|
|
20948
|
+
security: [
|
|
20949
|
+
{
|
|
20950
|
+
name: 'Authorization',
|
|
20951
|
+
type: 'apiKey'
|
|
20952
|
+
},
|
|
20953
|
+
{
|
|
20954
|
+
scheme: 'bearer',
|
|
20955
|
+
type: 'http'
|
|
20956
|
+
}
|
|
20957
|
+
],
|
|
20958
|
+
url: '/api/marketplace-stats/aggregated_usage_trends/',
|
|
20959
|
+
...options
|
|
20960
|
+
});
|
|
20961
|
+
};
|
|
20465
20962
|
/**
|
|
20466
20963
|
* Return component usages for current month.
|
|
20467
20964
|
*/
|
|
@@ -20956,6 +21453,82 @@ export const marketplaceStatsCustomerMemberCountCount = (options) => {
|
|
|
20956
21453
|
...options
|
|
20957
21454
|
});
|
|
20958
21455
|
};
|
|
21456
|
+
/**
|
|
21457
|
+
* Return summary statistics for customer members.
|
|
21458
|
+
*/
|
|
21459
|
+
export const marketplaceStatsCustomerMemberSummaryRetrieve = (options) => {
|
|
21460
|
+
return (options?.client ?? _heyApiClient).get({
|
|
21461
|
+
security: [
|
|
21462
|
+
{
|
|
21463
|
+
name: 'Authorization',
|
|
21464
|
+
type: 'apiKey'
|
|
21465
|
+
},
|
|
21466
|
+
{
|
|
21467
|
+
scheme: 'bearer',
|
|
21468
|
+
type: 'http'
|
|
21469
|
+
}
|
|
21470
|
+
],
|
|
21471
|
+
url: '/api/marketplace-stats/customer_member_summary/',
|
|
21472
|
+
...options
|
|
21473
|
+
});
|
|
21474
|
+
};
|
|
21475
|
+
/**
|
|
21476
|
+
* Get number of items in the collection matching the request parameters.
|
|
21477
|
+
*/
|
|
21478
|
+
export const marketplaceStatsCustomerMemberSummaryCount = (options) => {
|
|
21479
|
+
return (options?.client ?? _heyApiClient).head({
|
|
21480
|
+
security: [
|
|
21481
|
+
{
|
|
21482
|
+
name: 'Authorization',
|
|
21483
|
+
type: 'apiKey'
|
|
21484
|
+
},
|
|
21485
|
+
{
|
|
21486
|
+
scheme: 'bearer',
|
|
21487
|
+
type: 'http'
|
|
21488
|
+
}
|
|
21489
|
+
],
|
|
21490
|
+
url: '/api/marketplace-stats/customer_member_summary/',
|
|
21491
|
+
...options
|
|
21492
|
+
});
|
|
21493
|
+
};
|
|
21494
|
+
/**
|
|
21495
|
+
* Return summary statistics for offering costs.
|
|
21496
|
+
*/
|
|
21497
|
+
export const marketplaceStatsOfferingCostsSummaryRetrieve = (options) => {
|
|
21498
|
+
return (options?.client ?? _heyApiClient).get({
|
|
21499
|
+
security: [
|
|
21500
|
+
{
|
|
21501
|
+
name: 'Authorization',
|
|
21502
|
+
type: 'apiKey'
|
|
21503
|
+
},
|
|
21504
|
+
{
|
|
21505
|
+
scheme: 'bearer',
|
|
21506
|
+
type: 'http'
|
|
21507
|
+
}
|
|
21508
|
+
],
|
|
21509
|
+
url: '/api/marketplace-stats/offering_costs_summary/',
|
|
21510
|
+
...options
|
|
21511
|
+
});
|
|
21512
|
+
};
|
|
21513
|
+
/**
|
|
21514
|
+
* Get number of items in the collection matching the request parameters.
|
|
21515
|
+
*/
|
|
21516
|
+
export const marketplaceStatsOfferingCostsSummaryCount = (options) => {
|
|
21517
|
+
return (options?.client ?? _heyApiClient).head({
|
|
21518
|
+
security: [
|
|
21519
|
+
{
|
|
21520
|
+
name: 'Authorization',
|
|
21521
|
+
type: 'apiKey'
|
|
21522
|
+
},
|
|
21523
|
+
{
|
|
21524
|
+
scheme: 'bearer',
|
|
21525
|
+
type: 'http'
|
|
21526
|
+
}
|
|
21527
|
+
],
|
|
21528
|
+
url: '/api/marketplace-stats/offering_costs_summary/',
|
|
21529
|
+
...options
|
|
21530
|
+
});
|
|
21531
|
+
};
|
|
20959
21532
|
/**
|
|
20960
21533
|
* Retrieve statistics about the number of offerings, grouped by category and service provider.
|
|
20961
21534
|
*/
|
|
@@ -21108,6 +21681,44 @@ export const marketplaceStatsOrganizationResourceCountCount = (options) => {
|
|
|
21108
21681
|
...options
|
|
21109
21682
|
});
|
|
21110
21683
|
};
|
|
21684
|
+
/**
|
|
21685
|
+
* Return summary statistics for project classification.
|
|
21686
|
+
*/
|
|
21687
|
+
export const marketplaceStatsProjectClassificationSummaryRetrieve = (options) => {
|
|
21688
|
+
return (options?.client ?? _heyApiClient).get({
|
|
21689
|
+
security: [
|
|
21690
|
+
{
|
|
21691
|
+
name: 'Authorization',
|
|
21692
|
+
type: 'apiKey'
|
|
21693
|
+
},
|
|
21694
|
+
{
|
|
21695
|
+
scheme: 'bearer',
|
|
21696
|
+
type: 'http'
|
|
21697
|
+
}
|
|
21698
|
+
],
|
|
21699
|
+
url: '/api/marketplace-stats/project_classification_summary/',
|
|
21700
|
+
...options
|
|
21701
|
+
});
|
|
21702
|
+
};
|
|
21703
|
+
/**
|
|
21704
|
+
* Get number of items in the collection matching the request parameters.
|
|
21705
|
+
*/
|
|
21706
|
+
export const marketplaceStatsProjectClassificationSummaryCount = (options) => {
|
|
21707
|
+
return (options?.client ?? _heyApiClient).head({
|
|
21708
|
+
security: [
|
|
21709
|
+
{
|
|
21710
|
+
name: 'Authorization',
|
|
21711
|
+
type: 'apiKey'
|
|
21712
|
+
},
|
|
21713
|
+
{
|
|
21714
|
+
scheme: 'bearer',
|
|
21715
|
+
type: 'http'
|
|
21716
|
+
}
|
|
21717
|
+
],
|
|
21718
|
+
url: '/api/marketplace-stats/project_classification_summary/',
|
|
21719
|
+
...options
|
|
21720
|
+
});
|
|
21721
|
+
};
|
|
21111
21722
|
/**
|
|
21112
21723
|
* Group project limits by industry flag.
|
|
21113
21724
|
*/
|
|
@@ -21412,6 +22023,158 @@ export const marketplaceStatsResourceProvisioningStatsCount = (options) => {
|
|
|
21412
22023
|
...options
|
|
21413
22024
|
});
|
|
21414
22025
|
};
|
|
22026
|
+
/**
|
|
22027
|
+
* Return resource usage grouped by creator's affiliation.
|
|
22028
|
+
*/
|
|
22029
|
+
export const marketplaceStatsResourceUsageByCreatorAffiliationList = (options) => {
|
|
22030
|
+
return (options?.client ?? _heyApiClient).get({
|
|
22031
|
+
security: [
|
|
22032
|
+
{
|
|
22033
|
+
name: 'Authorization',
|
|
22034
|
+
type: 'apiKey'
|
|
22035
|
+
},
|
|
22036
|
+
{
|
|
22037
|
+
scheme: 'bearer',
|
|
22038
|
+
type: 'http'
|
|
22039
|
+
}
|
|
22040
|
+
],
|
|
22041
|
+
url: '/api/marketplace-stats/resource_usage_by_creator_affiliation/',
|
|
22042
|
+
...options
|
|
22043
|
+
});
|
|
22044
|
+
};
|
|
22045
|
+
/**
|
|
22046
|
+
* Get number of items in the collection matching the request parameters.
|
|
22047
|
+
*/
|
|
22048
|
+
export const marketplaceStatsResourceUsageByCreatorAffiliationCount = (options) => {
|
|
22049
|
+
return (options?.client ?? _heyApiClient).head({
|
|
22050
|
+
security: [
|
|
22051
|
+
{
|
|
22052
|
+
name: 'Authorization',
|
|
22053
|
+
type: 'apiKey'
|
|
22054
|
+
},
|
|
22055
|
+
{
|
|
22056
|
+
scheme: 'bearer',
|
|
22057
|
+
type: 'http'
|
|
22058
|
+
}
|
|
22059
|
+
],
|
|
22060
|
+
url: '/api/marketplace-stats/resource_usage_by_creator_affiliation/',
|
|
22061
|
+
...options
|
|
22062
|
+
});
|
|
22063
|
+
};
|
|
22064
|
+
/**
|
|
22065
|
+
* Return resource usage statistics grouped by customer.
|
|
22066
|
+
*/
|
|
22067
|
+
export const marketplaceStatsResourceUsageByCustomerList = (options) => {
|
|
22068
|
+
return (options?.client ?? _heyApiClient).get({
|
|
22069
|
+
security: [
|
|
22070
|
+
{
|
|
22071
|
+
name: 'Authorization',
|
|
22072
|
+
type: 'apiKey'
|
|
22073
|
+
},
|
|
22074
|
+
{
|
|
22075
|
+
scheme: 'bearer',
|
|
22076
|
+
type: 'http'
|
|
22077
|
+
}
|
|
22078
|
+
],
|
|
22079
|
+
url: '/api/marketplace-stats/resource_usage_by_customer/',
|
|
22080
|
+
...options
|
|
22081
|
+
});
|
|
22082
|
+
};
|
|
22083
|
+
/**
|
|
22084
|
+
* Get number of items in the collection matching the request parameters.
|
|
22085
|
+
*/
|
|
22086
|
+
export const marketplaceStatsResourceUsageByCustomerCount = (options) => {
|
|
22087
|
+
return (options?.client ?? _heyApiClient).head({
|
|
22088
|
+
security: [
|
|
22089
|
+
{
|
|
22090
|
+
name: 'Authorization',
|
|
22091
|
+
type: 'apiKey'
|
|
22092
|
+
},
|
|
22093
|
+
{
|
|
22094
|
+
scheme: 'bearer',
|
|
22095
|
+
type: 'http'
|
|
22096
|
+
}
|
|
22097
|
+
],
|
|
22098
|
+
url: '/api/marketplace-stats/resource_usage_by_customer/',
|
|
22099
|
+
...options
|
|
22100
|
+
});
|
|
22101
|
+
};
|
|
22102
|
+
/**
|
|
22103
|
+
* Return component usages grouped by project members' organization type.
|
|
22104
|
+
*/
|
|
22105
|
+
export const marketplaceStatsResourceUsageByOrganizationTypeList = (options) => {
|
|
22106
|
+
return (options?.client ?? _heyApiClient).get({
|
|
22107
|
+
security: [
|
|
22108
|
+
{
|
|
22109
|
+
name: 'Authorization',
|
|
22110
|
+
type: 'apiKey'
|
|
22111
|
+
},
|
|
22112
|
+
{
|
|
22113
|
+
scheme: 'bearer',
|
|
22114
|
+
type: 'http'
|
|
22115
|
+
}
|
|
22116
|
+
],
|
|
22117
|
+
url: '/api/marketplace-stats/resource_usage_by_organization_type/',
|
|
22118
|
+
...options
|
|
22119
|
+
});
|
|
22120
|
+
};
|
|
22121
|
+
/**
|
|
22122
|
+
* Get number of items in the collection matching the request parameters.
|
|
22123
|
+
*/
|
|
22124
|
+
export const marketplaceStatsResourceUsageByOrganizationTypeCount = (options) => {
|
|
22125
|
+
return (options?.client ?? _heyApiClient).head({
|
|
22126
|
+
security: [
|
|
22127
|
+
{
|
|
22128
|
+
name: 'Authorization',
|
|
22129
|
+
type: 'apiKey'
|
|
22130
|
+
},
|
|
22131
|
+
{
|
|
22132
|
+
scheme: 'bearer',
|
|
22133
|
+
type: 'http'
|
|
22134
|
+
}
|
|
22135
|
+
],
|
|
22136
|
+
url: '/api/marketplace-stats/resource_usage_by_organization_type/',
|
|
22137
|
+
...options
|
|
22138
|
+
});
|
|
22139
|
+
};
|
|
22140
|
+
/**
|
|
22141
|
+
* Return summary statistics for resource geographic distribution.
|
|
22142
|
+
*/
|
|
22143
|
+
export const marketplaceStatsResourcesGeographySummaryRetrieve = (options) => {
|
|
22144
|
+
return (options?.client ?? _heyApiClient).get({
|
|
22145
|
+
security: [
|
|
22146
|
+
{
|
|
22147
|
+
name: 'Authorization',
|
|
22148
|
+
type: 'apiKey'
|
|
22149
|
+
},
|
|
22150
|
+
{
|
|
22151
|
+
scheme: 'bearer',
|
|
22152
|
+
type: 'http'
|
|
22153
|
+
}
|
|
22154
|
+
],
|
|
22155
|
+
url: '/api/marketplace-stats/resources_geography_summary/',
|
|
22156
|
+
...options
|
|
22157
|
+
});
|
|
22158
|
+
};
|
|
22159
|
+
/**
|
|
22160
|
+
* Get number of items in the collection matching the request parameters.
|
|
22161
|
+
*/
|
|
22162
|
+
export const marketplaceStatsResourcesGeographySummaryCount = (options) => {
|
|
22163
|
+
return (options?.client ?? _heyApiClient).head({
|
|
22164
|
+
security: [
|
|
22165
|
+
{
|
|
22166
|
+
name: 'Authorization',
|
|
22167
|
+
type: 'apiKey'
|
|
22168
|
+
},
|
|
22169
|
+
{
|
|
22170
|
+
scheme: 'bearer',
|
|
22171
|
+
type: 'http'
|
|
22172
|
+
}
|
|
22173
|
+
],
|
|
22174
|
+
url: '/api/marketplace-stats/resources_geography_summary/',
|
|
22175
|
+
...options
|
|
22176
|
+
});
|
|
22177
|
+
};
|
|
21415
22178
|
/**
|
|
21416
22179
|
* Return resources limits per offering.
|
|
21417
22180
|
*/
|
|
@@ -21640,6 +22403,44 @@ export const marketplaceStatsUserIdentitySourceCountCount = (options) => {
|
|
|
21640
22403
|
...options
|
|
21641
22404
|
});
|
|
21642
22405
|
};
|
|
22406
|
+
/**
|
|
22407
|
+
* Return user count grouped by job title.
|
|
22408
|
+
*/
|
|
22409
|
+
export const marketplaceStatsUserJobTitleCountList = (options) => {
|
|
22410
|
+
return (options?.client ?? _heyApiClient).get({
|
|
22411
|
+
security: [
|
|
22412
|
+
{
|
|
22413
|
+
name: 'Authorization',
|
|
22414
|
+
type: 'apiKey'
|
|
22415
|
+
},
|
|
22416
|
+
{
|
|
22417
|
+
scheme: 'bearer',
|
|
22418
|
+
type: 'http'
|
|
22419
|
+
}
|
|
22420
|
+
],
|
|
22421
|
+
url: '/api/marketplace-stats/user_job_title_count/',
|
|
22422
|
+
...options
|
|
22423
|
+
});
|
|
22424
|
+
};
|
|
22425
|
+
/**
|
|
22426
|
+
* Get number of items in the collection matching the request parameters.
|
|
22427
|
+
*/
|
|
22428
|
+
export const marketplaceStatsUserJobTitleCountCount = (options) => {
|
|
22429
|
+
return (options?.client ?? _heyApiClient).head({
|
|
22430
|
+
security: [
|
|
22431
|
+
{
|
|
22432
|
+
name: 'Authorization',
|
|
22433
|
+
type: 'apiKey'
|
|
22434
|
+
},
|
|
22435
|
+
{
|
|
22436
|
+
scheme: 'bearer',
|
|
22437
|
+
type: 'http'
|
|
22438
|
+
}
|
|
22439
|
+
],
|
|
22440
|
+
url: '/api/marketplace-stats/user_job_title_count/',
|
|
22441
|
+
...options
|
|
22442
|
+
});
|
|
22443
|
+
};
|
|
21643
22444
|
/**
|
|
21644
22445
|
* Return user count grouped by organization.
|
|
21645
22446
|
*/
|
|
@@ -21678,6 +22479,44 @@ export const marketplaceStatsUserOrganizationCountCount = (options) => {
|
|
|
21678
22479
|
...options
|
|
21679
22480
|
});
|
|
21680
22481
|
};
|
|
22482
|
+
/**
|
|
22483
|
+
* Return user count grouped by organization type (SCHAC URN).
|
|
22484
|
+
*/
|
|
22485
|
+
export const marketplaceStatsUserOrganizationTypeCountList = (options) => {
|
|
22486
|
+
return (options?.client ?? _heyApiClient).get({
|
|
22487
|
+
security: [
|
|
22488
|
+
{
|
|
22489
|
+
name: 'Authorization',
|
|
22490
|
+
type: 'apiKey'
|
|
22491
|
+
},
|
|
22492
|
+
{
|
|
22493
|
+
scheme: 'bearer',
|
|
22494
|
+
type: 'http'
|
|
22495
|
+
}
|
|
22496
|
+
],
|
|
22497
|
+
url: '/api/marketplace-stats/user_organization_type_count/',
|
|
22498
|
+
...options
|
|
22499
|
+
});
|
|
22500
|
+
};
|
|
22501
|
+
/**
|
|
22502
|
+
* Get number of items in the collection matching the request parameters.
|
|
22503
|
+
*/
|
|
22504
|
+
export const marketplaceStatsUserOrganizationTypeCountCount = (options) => {
|
|
22505
|
+
return (options?.client ?? _heyApiClient).head({
|
|
22506
|
+
security: [
|
|
22507
|
+
{
|
|
22508
|
+
name: 'Authorization',
|
|
22509
|
+
type: 'apiKey'
|
|
22510
|
+
},
|
|
22511
|
+
{
|
|
22512
|
+
scheme: 'bearer',
|
|
22513
|
+
type: 'http'
|
|
22514
|
+
}
|
|
22515
|
+
],
|
|
22516
|
+
url: '/api/marketplace-stats/user_organization_type_count/',
|
|
22517
|
+
...options
|
|
22518
|
+
});
|
|
22519
|
+
};
|
|
21681
22520
|
export const marketplaceTagsList = (options) => {
|
|
21682
22521
|
return (options?.client ?? _heyApiClient).get({
|
|
21683
22522
|
security: [
|
|
@@ -39698,6 +40537,46 @@ export const usersDataAccessHistoryList = (options) => {
|
|
|
39698
40537
|
...options
|
|
39699
40538
|
});
|
|
39700
40539
|
};
|
|
40540
|
+
/**
|
|
40541
|
+
* Get version history
|
|
40542
|
+
* Returns the version history for this object. Only accessible by staff and support users.
|
|
40543
|
+
*/
|
|
40544
|
+
export const usersHistoryList = (options) => {
|
|
40545
|
+
return (options.client ?? _heyApiClient).get({
|
|
40546
|
+
security: [
|
|
40547
|
+
{
|
|
40548
|
+
name: 'Authorization',
|
|
40549
|
+
type: 'apiKey'
|
|
40550
|
+
},
|
|
40551
|
+
{
|
|
40552
|
+
scheme: 'bearer',
|
|
40553
|
+
type: 'http'
|
|
40554
|
+
}
|
|
40555
|
+
],
|
|
40556
|
+
url: '/api/users/{uuid}/history/',
|
|
40557
|
+
...options
|
|
40558
|
+
});
|
|
40559
|
+
};
|
|
40560
|
+
/**
|
|
40561
|
+
* Get object state at a specific timestamp
|
|
40562
|
+
* Returns the state of the object as it was at the specified timestamp. Only accessible by staff and support users.
|
|
40563
|
+
*/
|
|
40564
|
+
export const usersHistoryAtRetrieve = (options) => {
|
|
40565
|
+
return (options.client ?? _heyApiClient).get({
|
|
40566
|
+
security: [
|
|
40567
|
+
{
|
|
40568
|
+
name: 'Authorization',
|
|
40569
|
+
type: 'apiKey'
|
|
40570
|
+
},
|
|
40571
|
+
{
|
|
40572
|
+
scheme: 'bearer',
|
|
40573
|
+
type: 'http'
|
|
40574
|
+
}
|
|
40575
|
+
],
|
|
40576
|
+
url: '/api/users/{uuid}/history/at/',
|
|
40577
|
+
...options
|
|
40578
|
+
});
|
|
40579
|
+
};
|
|
39701
40580
|
/**
|
|
39702
40581
|
* Synchronize user details from eduTEAMS
|
|
39703
40582
|
*/
|
|
@@ -39859,6 +40738,26 @@ export const usersProfileCompletenessCount = (options) => {
|
|
|
39859
40738
|
...options
|
|
39860
40739
|
});
|
|
39861
40740
|
};
|
|
40741
|
+
/**
|
|
40742
|
+
* Trigger SCIM synchronization for all users
|
|
40743
|
+
* Staff-only action to queue SCIM synchronization for all users.
|
|
40744
|
+
*/
|
|
40745
|
+
export const usersScimSyncAll = (options) => {
|
|
40746
|
+
return (options?.client ?? _heyApiClient).post({
|
|
40747
|
+
security: [
|
|
40748
|
+
{
|
|
40749
|
+
name: 'Authorization',
|
|
40750
|
+
type: 'apiKey'
|
|
40751
|
+
},
|
|
40752
|
+
{
|
|
40753
|
+
scheme: 'bearer',
|
|
40754
|
+
type: 'http'
|
|
40755
|
+
}
|
|
40756
|
+
],
|
|
40757
|
+
url: '/api/users/scim_sync_all/',
|
|
40758
|
+
...options
|
|
40759
|
+
});
|
|
40760
|
+
};
|
|
39862
40761
|
/**
|
|
39863
40762
|
* Get user counts by active status
|
|
39864
40763
|
* Returns aggregated counts of users by active/inactive status. Staff or support only.
|