waldur-js-client 8.0.9-dev.57 → 8.0.9-dev.59
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 +4 -2
- package/dist/index.js +3 -1
- package/dist/sdk.gen.d.ts +7 -1
- package/dist/sdk.gen.js +13 -0
- package/dist/types.gen.d.ts +28 -1
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -12174,6 +12174,19 @@ export const marketplaceProviderOfferingsSync = (options) => (options.client ??
|
|
|
12174
12174
|
url: '/api/marketplace-provider-offerings/{uuid}/sync/',
|
|
12175
12175
|
...options
|
|
12176
12176
|
});
|
|
12177
|
+
/**
|
|
12178
|
+
* Synchronize offering resources
|
|
12179
|
+
*
|
|
12180
|
+
* Requests connected site agents to run a full reconciliation of all resources belonging to this offering: recreate missing backend accounts, restore user associations and re-apply resource limits. Useful when the provider backend has lost state, e.g. a wiped SLURM database.
|
|
12181
|
+
*/
|
|
12182
|
+
export const marketplaceProviderOfferingsSyncResources = (options) => (options.client ?? client).post({
|
|
12183
|
+
security: [
|
|
12184
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
12185
|
+
{ scheme: 'bearer', type: 'http' }
|
|
12186
|
+
],
|
|
12187
|
+
url: '/api/marketplace-provider-offerings/{uuid}/sync_resources/',
|
|
12188
|
+
...options
|
|
12189
|
+
});
|
|
12177
12190
|
/**
|
|
12178
12191
|
* Get Terms of Service consent statistics
|
|
12179
12192
|
*
|
package/dist/types.gen.d.ts
CHANGED
|
@@ -12434,7 +12434,7 @@ export type NotificationTemplateUpdateSerializersRequest = {
|
|
|
12434
12434
|
};
|
|
12435
12435
|
export type NotifySystemEnum = 'AdminAnnouncement' | 'BroadcastMessage';
|
|
12436
12436
|
export type NullEnum = never;
|
|
12437
|
-
export type ObservableObjectTypeEnum = 'order' | 'user_role' | 'resource' | 'offering_user' | 'importable_resources' | 'service_account' | 'course_account' | 'resource_periodic_limits';
|
|
12437
|
+
export type ObservableObjectTypeEnum = 'order' | 'user_role' | 'resource' | 'offering_user' | 'importable_resources' | 'service_account' | 'course_account' | 'resource_periodic_limits' | 'offering_resources_sync';
|
|
12438
12438
|
export type ObtainAuthTokenRequest = {
|
|
12439
12439
|
/**
|
|
12440
12440
|
* Username for authentication
|
|
@@ -21111,8 +21111,23 @@ export type PublicMaintenanceAnnouncement = {
|
|
|
21111
21111
|
readonly actual_end: string | null;
|
|
21112
21112
|
readonly affected_offerings: Array<MaintenanceAnnouncementOffering>;
|
|
21113
21113
|
readonly service_provider_name: string;
|
|
21114
|
+
readonly description: string;
|
|
21115
|
+
type: PublicMaintenanceAnnouncementTypeEnum;
|
|
21116
|
+
readonly maintenance_uuid: string;
|
|
21117
|
+
readonly maintenance_name: string;
|
|
21118
|
+
readonly maintenance_service_provider: string;
|
|
21119
|
+
readonly maintenance_scheduled_start: string;
|
|
21120
|
+
readonly maintenance_scheduled_end: string;
|
|
21121
|
+
readonly maintenance_affected_offerings: Array<{
|
|
21122
|
+
uuid?: string;
|
|
21123
|
+
name?: string;
|
|
21124
|
+
impact_level?: string;
|
|
21125
|
+
impact_level_display?: string;
|
|
21126
|
+
impact_description?: string;
|
|
21127
|
+
}>;
|
|
21114
21128
|
};
|
|
21115
21129
|
export type PublicMaintenanceAnnouncementStateEnum = 'Scheduled' | 'In progress' | 'Completed';
|
|
21130
|
+
export type PublicMaintenanceAnnouncementTypeEnum = 'danger' | 'warning';
|
|
21116
21131
|
export type PublicOfferingDetails = {
|
|
21117
21132
|
readonly url: string;
|
|
21118
21133
|
readonly uuid: string;
|
|
@@ -52891,6 +52906,18 @@ export type MarketplaceProviderOfferingsSyncResponses = {
|
|
|
52891
52906
|
*/
|
|
52892
52907
|
202: unknown;
|
|
52893
52908
|
};
|
|
52909
|
+
export type MarketplaceProviderOfferingsSyncResourcesData = {
|
|
52910
|
+
body?: never;
|
|
52911
|
+
path: {
|
|
52912
|
+
uuid: string;
|
|
52913
|
+
};
|
|
52914
|
+
query?: never;
|
|
52915
|
+
url: '/api/marketplace-provider-offerings/{uuid}/sync_resources/';
|
|
52916
|
+
};
|
|
52917
|
+
export type MarketplaceProviderOfferingsSyncResourcesResponses = {
|
|
52918
|
+
202: Status;
|
|
52919
|
+
};
|
|
52920
|
+
export type MarketplaceProviderOfferingsSyncResourcesResponse = MarketplaceProviderOfferingsSyncResourcesResponses[keyof MarketplaceProviderOfferingsSyncResourcesResponses];
|
|
52894
52921
|
export type MarketplaceProviderOfferingsTosStatsRetrieveData = {
|
|
52895
52922
|
body?: never;
|
|
52896
52923
|
path: {
|