waldur-js-client 7.9.7-dev.6 → 7.9.7-dev.8
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 +97 -12
- package/dist/sdk.gen.js +245 -13
- package/dist/types.gen.d.ts +906 -28
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -10,6 +10,46 @@ export type AccessSubnetRequest = {
|
|
|
10
10
|
customer: string;
|
|
11
11
|
};
|
|
12
12
|
export type AccountNameGenerationPolicyEnum = 'project_slug';
|
|
13
|
+
export type ActiveQueriesStats = {
|
|
14
|
+
/**
|
|
15
|
+
* Number of currently active queries
|
|
16
|
+
*/
|
|
17
|
+
readonly count: number;
|
|
18
|
+
/**
|
|
19
|
+
* Duration of the longest running query in seconds
|
|
20
|
+
*/
|
|
21
|
+
readonly longest_duration_seconds: number;
|
|
22
|
+
/**
|
|
23
|
+
* Number of queries waiting on locks
|
|
24
|
+
*/
|
|
25
|
+
readonly waiting_on_locks: number;
|
|
26
|
+
/**
|
|
27
|
+
* List of active queries
|
|
28
|
+
*/
|
|
29
|
+
readonly queries: Array<ActiveQuery>;
|
|
30
|
+
};
|
|
31
|
+
export type ActiveQuery = {
|
|
32
|
+
/**
|
|
33
|
+
* Process ID
|
|
34
|
+
*/
|
|
35
|
+
readonly pid: number;
|
|
36
|
+
/**
|
|
37
|
+
* Query duration in seconds
|
|
38
|
+
*/
|
|
39
|
+
readonly duration_seconds: number;
|
|
40
|
+
/**
|
|
41
|
+
* Query state
|
|
42
|
+
*/
|
|
43
|
+
readonly state: string;
|
|
44
|
+
/**
|
|
45
|
+
* Type of event the query is waiting for
|
|
46
|
+
*/
|
|
47
|
+
readonly wait_event_type: string | null;
|
|
48
|
+
/**
|
|
49
|
+
* First 100 characters of the query
|
|
50
|
+
*/
|
|
51
|
+
readonly query_preview: string;
|
|
52
|
+
};
|
|
13
53
|
export type AdminAnnouncement = {
|
|
14
54
|
readonly uuid?: string;
|
|
15
55
|
description?: string;
|
|
@@ -62,6 +102,72 @@ export type AffinityMatrixResponse = {
|
|
|
62
102
|
results: Array<AffinityMatrixEntry>;
|
|
63
103
|
};
|
|
64
104
|
export type AffinityMethodEnum = 'keyword' | 'tfidf' | 'combined';
|
|
105
|
+
export type AgentConnectionInfo = {
|
|
106
|
+
/**
|
|
107
|
+
* Agent identity UUID
|
|
108
|
+
*/
|
|
109
|
+
readonly uuid: string;
|
|
110
|
+
/**
|
|
111
|
+
* Agent name
|
|
112
|
+
*/
|
|
113
|
+
readonly name: string;
|
|
114
|
+
/**
|
|
115
|
+
* Associated offering UUID
|
|
116
|
+
*/
|
|
117
|
+
readonly offering_uuid: string;
|
|
118
|
+
/**
|
|
119
|
+
* Associated offering name
|
|
120
|
+
*/
|
|
121
|
+
readonly offering_name: string;
|
|
122
|
+
/**
|
|
123
|
+
* Agent version
|
|
124
|
+
*/
|
|
125
|
+
readonly version: string | null;
|
|
126
|
+
/**
|
|
127
|
+
* When the agent was last restarted
|
|
128
|
+
*/
|
|
129
|
+
readonly last_restarted: string;
|
|
130
|
+
/**
|
|
131
|
+
* Services running within this agent
|
|
132
|
+
*/
|
|
133
|
+
readonly services: Array<AgentServiceStatus>;
|
|
134
|
+
/**
|
|
135
|
+
* Event subscriptions with connection status
|
|
136
|
+
*/
|
|
137
|
+
readonly event_subscriptions: Array<AgentEventSubscriptionWithConnection>;
|
|
138
|
+
/**
|
|
139
|
+
* RabbitMQ queues for this agent's offering
|
|
140
|
+
*/
|
|
141
|
+
readonly queues: Array<AgentQueueInfo>;
|
|
142
|
+
};
|
|
143
|
+
export type AgentConnectionStatsResponse = {
|
|
144
|
+
/**
|
|
145
|
+
* List of agents with connection status
|
|
146
|
+
*/
|
|
147
|
+
readonly agents: Array<AgentConnectionInfo>;
|
|
148
|
+
/**
|
|
149
|
+
* Summary statistics
|
|
150
|
+
*/
|
|
151
|
+
summary: AgentConnectionSummary;
|
|
152
|
+
};
|
|
153
|
+
export type AgentConnectionSummary = {
|
|
154
|
+
/**
|
|
155
|
+
* Total number of registered agents
|
|
156
|
+
*/
|
|
157
|
+
readonly total_agents: number;
|
|
158
|
+
/**
|
|
159
|
+
* Number of agents with active RMQ connections
|
|
160
|
+
*/
|
|
161
|
+
readonly connected_agents: number;
|
|
162
|
+
/**
|
|
163
|
+
* Number of agents without active connections
|
|
164
|
+
*/
|
|
165
|
+
readonly disconnected_agents: number;
|
|
166
|
+
/**
|
|
167
|
+
* Total messages across all agent queues
|
|
168
|
+
*/
|
|
169
|
+
readonly total_queued_messages: number;
|
|
170
|
+
};
|
|
65
171
|
export type AgentEventSubscriptionCreateRequest = {
|
|
66
172
|
/**
|
|
67
173
|
* The type of object to observe for events
|
|
@@ -72,9 +178,30 @@ export type AgentEventSubscriptionCreateRequest = {
|
|
|
72
178
|
*/
|
|
73
179
|
description?: string;
|
|
74
180
|
};
|
|
181
|
+
export type AgentEventSubscriptionWithConnection = {
|
|
182
|
+
/**
|
|
183
|
+
* Event subscription UUID
|
|
184
|
+
*/
|
|
185
|
+
readonly uuid: string;
|
|
186
|
+
/**
|
|
187
|
+
* When the subscription was created
|
|
188
|
+
*/
|
|
189
|
+
readonly created: string;
|
|
190
|
+
/**
|
|
191
|
+
* List of observable object configurations
|
|
192
|
+
*/
|
|
193
|
+
readonly observable_objects: unknown;
|
|
194
|
+
/**
|
|
195
|
+
* RabbitMQ connection status for this subscription
|
|
196
|
+
*/
|
|
197
|
+
rmq_connection: AgentRmqConnection | null;
|
|
198
|
+
};
|
|
75
199
|
export type AgentIdentity = {
|
|
76
200
|
readonly uuid: string;
|
|
77
201
|
readonly url: string;
|
|
202
|
+
/**
|
|
203
|
+
* UUID of an offering with type 'Marketplace.Slurm'. Only site-agent offerings are accepted.
|
|
204
|
+
*/
|
|
78
205
|
offering: string;
|
|
79
206
|
name: string;
|
|
80
207
|
version?: string | null;
|
|
@@ -93,6 +220,9 @@ export type AgentIdentity = {
|
|
|
93
220
|
readonly services: Array<NestedAgentService>;
|
|
94
221
|
};
|
|
95
222
|
export type AgentIdentityRequest = {
|
|
223
|
+
/**
|
|
224
|
+
* UUID of an offering with type 'Marketplace.Slurm'. Only site-agent offerings are accepted.
|
|
225
|
+
*/
|
|
96
226
|
offering: string;
|
|
97
227
|
name: string;
|
|
98
228
|
version?: string | null;
|
|
@@ -130,6 +260,50 @@ export type AgentProcessorCreateRequest = {
|
|
|
130
260
|
backend_type: string;
|
|
131
261
|
backend_version?: string | null;
|
|
132
262
|
};
|
|
263
|
+
export type AgentQueueInfo = {
|
|
264
|
+
/**
|
|
265
|
+
* Queue name
|
|
266
|
+
*/
|
|
267
|
+
readonly name: string;
|
|
268
|
+
/**
|
|
269
|
+
* Number of messages in queue
|
|
270
|
+
*/
|
|
271
|
+
readonly messages: number;
|
|
272
|
+
/**
|
|
273
|
+
* Number of active consumers
|
|
274
|
+
*/
|
|
275
|
+
readonly consumers: number;
|
|
276
|
+
/**
|
|
277
|
+
* Parsed object type from queue name
|
|
278
|
+
*/
|
|
279
|
+
readonly object_type: string | null;
|
|
280
|
+
};
|
|
281
|
+
export type AgentRmqConnection = {
|
|
282
|
+
/**
|
|
283
|
+
* Whether the agent has an active connection
|
|
284
|
+
*/
|
|
285
|
+
readonly connected: boolean;
|
|
286
|
+
/**
|
|
287
|
+
* Client IP address of active connection
|
|
288
|
+
*/
|
|
289
|
+
readonly source_ip: string | null;
|
|
290
|
+
/**
|
|
291
|
+
* Connection establishment timestamp
|
|
292
|
+
*/
|
|
293
|
+
readonly connected_at: string | null;
|
|
294
|
+
/**
|
|
295
|
+
* Connection state: 'running', 'blocked', 'blocking'
|
|
296
|
+
*/
|
|
297
|
+
readonly state: string | null;
|
|
298
|
+
/**
|
|
299
|
+
* Bytes received on this connection
|
|
300
|
+
*/
|
|
301
|
+
readonly recv_oct: number | null;
|
|
302
|
+
/**
|
|
303
|
+
* Bytes sent on this connection
|
|
304
|
+
*/
|
|
305
|
+
readonly send_oct: number | null;
|
|
306
|
+
};
|
|
133
307
|
export type AgentService = {
|
|
134
308
|
readonly uuid: string;
|
|
135
309
|
readonly url: string;
|
|
@@ -154,6 +328,68 @@ export type AgentServiceStatisticsRequest = {
|
|
|
154
328
|
*/
|
|
155
329
|
statistics: unknown;
|
|
156
330
|
};
|
|
331
|
+
export type AgentServiceStatus = {
|
|
332
|
+
/**
|
|
333
|
+
* Service UUID
|
|
334
|
+
*/
|
|
335
|
+
readonly uuid: string;
|
|
336
|
+
/**
|
|
337
|
+
* Service name
|
|
338
|
+
*/
|
|
339
|
+
readonly name: string;
|
|
340
|
+
/**
|
|
341
|
+
* Service state: ACTIVE, IDLE, or ERROR
|
|
342
|
+
*/
|
|
343
|
+
readonly state: string;
|
|
344
|
+
/**
|
|
345
|
+
* Last modification timestamp
|
|
346
|
+
*/
|
|
347
|
+
readonly modified: string;
|
|
348
|
+
};
|
|
349
|
+
export type AgentStatsResponse = {
|
|
350
|
+
/**
|
|
351
|
+
* Statistics about agent identities
|
|
352
|
+
*/
|
|
353
|
+
identities: {
|
|
354
|
+
[key: string]: unknown;
|
|
355
|
+
};
|
|
356
|
+
/**
|
|
357
|
+
* Statistics about agent services
|
|
358
|
+
*/
|
|
359
|
+
services: {
|
|
360
|
+
[key: string]: unknown;
|
|
361
|
+
};
|
|
362
|
+
/**
|
|
363
|
+
* Statistics about agent processors
|
|
364
|
+
*/
|
|
365
|
+
processors: {
|
|
366
|
+
[key: string]: unknown;
|
|
367
|
+
};
|
|
368
|
+
};
|
|
369
|
+
export type AgentTaskStatsResponse = {
|
|
370
|
+
/**
|
|
371
|
+
* Currently running agent-related tasks
|
|
372
|
+
*/
|
|
373
|
+
active_tasks: Array<{
|
|
374
|
+
[key: string]: unknown;
|
|
375
|
+
}>;
|
|
376
|
+
/**
|
|
377
|
+
* Scheduled agent-related tasks
|
|
378
|
+
*/
|
|
379
|
+
scheduled_tasks: Array<{
|
|
380
|
+
[key: string]: unknown;
|
|
381
|
+
}>;
|
|
382
|
+
/**
|
|
383
|
+
* Reserved agent-related tasks
|
|
384
|
+
*/
|
|
385
|
+
reserved_tasks: Array<{
|
|
386
|
+
[key: string]: unknown;
|
|
387
|
+
}>;
|
|
388
|
+
/**
|
|
389
|
+
* Error message if task inspection failed
|
|
390
|
+
*/
|
|
391
|
+
error?: string;
|
|
392
|
+
};
|
|
157
393
|
export type AgentTypeEnum = 'Order processing' | 'Usage reporting' | 'Glauth sync' | 'Resource sync' | 'Event processing' | 'unknown';
|
|
158
394
|
export type AgreementTypeEnum = 'TOS' | 'PP';
|
|
159
395
|
export type Allocation = {
|
|
@@ -1649,6 +1885,24 @@ export type CoiStatusUpdateRequest = {
|
|
|
1649
1885
|
management_plan?: string;
|
|
1650
1886
|
};
|
|
1651
1887
|
export type CoiStatusUpdateStatusEnum = 'dismissed' | 'waived' | 'recused';
|
|
1888
|
+
export type CachePerformance = {
|
|
1889
|
+
/**
|
|
1890
|
+
* Buffer cache hit ratio percentage (should be >99%)
|
|
1891
|
+
*/
|
|
1892
|
+
readonly buffer_cache_hit_ratio: number | null;
|
|
1893
|
+
/**
|
|
1894
|
+
* Index cache hit ratio percentage
|
|
1895
|
+
*/
|
|
1896
|
+
readonly index_hit_ratio: number | null;
|
|
1897
|
+
/**
|
|
1898
|
+
* Configured shared_buffers setting
|
|
1899
|
+
*/
|
|
1900
|
+
readonly shared_buffers: string;
|
|
1901
|
+
/**
|
|
1902
|
+
* Configured effective_cache_size setting
|
|
1903
|
+
*/
|
|
1904
|
+
readonly effective_cache_size: string;
|
|
1905
|
+
};
|
|
1652
1906
|
export type CallAssignmentConfiguration = {
|
|
1653
1907
|
readonly uuid: string;
|
|
1654
1908
|
readonly call: string;
|
|
@@ -2555,6 +2809,32 @@ export type ChecklistTemplate = {
|
|
|
2555
2809
|
initial_visible_questions: Array<Question>;
|
|
2556
2810
|
};
|
|
2557
2811
|
export type ChecklistTypeEnum = 'project_compliance' | 'proposal_compliance' | 'offering_compliance' | 'project_metadata' | 'onboarding_customer' | 'onboarding_intent';
|
|
2812
|
+
export type CleanupRequestRequest = {
|
|
2813
|
+
/**
|
|
2814
|
+
* If true, only return what would be deleted without actually deleting
|
|
2815
|
+
*/
|
|
2816
|
+
dry_run?: boolean;
|
|
2817
|
+
/**
|
|
2818
|
+
* Delete entries older than this many hours
|
|
2819
|
+
*/
|
|
2820
|
+
older_than_hours?: number;
|
|
2821
|
+
};
|
|
2822
|
+
export type CleanupResponse = {
|
|
2823
|
+
/**
|
|
2824
|
+
* Number of items deleted (or would be deleted in dry run)
|
|
2825
|
+
*/
|
|
2826
|
+
deleted_count: number;
|
|
2827
|
+
/**
|
|
2828
|
+
* Whether this was a dry run
|
|
2829
|
+
*/
|
|
2830
|
+
dry_run: boolean;
|
|
2831
|
+
/**
|
|
2832
|
+
* List of deleted (or to-be-deleted) items
|
|
2833
|
+
*/
|
|
2834
|
+
items: Array<{
|
|
2835
|
+
[key: string]: unknown;
|
|
2836
|
+
}>;
|
|
2837
|
+
};
|
|
2558
2838
|
export type ClusterSecurityGroup = {
|
|
2559
2839
|
readonly uuid: string;
|
|
2560
2840
|
readonly name: string;
|
|
@@ -2894,6 +3174,32 @@ export type ConflictSummaryResponse = {
|
|
|
2894
3174
|
[key: string]: number;
|
|
2895
3175
|
};
|
|
2896
3176
|
};
|
|
3177
|
+
export type ConnectionStats = {
|
|
3178
|
+
/**
|
|
3179
|
+
* Number of active connections
|
|
3180
|
+
*/
|
|
3181
|
+
readonly active: number;
|
|
3182
|
+
/**
|
|
3183
|
+
* Number of idle connections
|
|
3184
|
+
*/
|
|
3185
|
+
readonly idle: number;
|
|
3186
|
+
/**
|
|
3187
|
+
* Number of connections idle in transaction
|
|
3188
|
+
*/
|
|
3189
|
+
readonly idle_in_transaction: number;
|
|
3190
|
+
/**
|
|
3191
|
+
* Number of connections waiting for a lock
|
|
3192
|
+
*/
|
|
3193
|
+
readonly waiting: number;
|
|
3194
|
+
/**
|
|
3195
|
+
* Maximum allowed connections
|
|
3196
|
+
*/
|
|
3197
|
+
readonly max_connections: number;
|
|
3198
|
+
/**
|
|
3199
|
+
* Percentage of max connections in use
|
|
3200
|
+
*/
|
|
3201
|
+
readonly utilization_percent: number;
|
|
3202
|
+
};
|
|
2897
3203
|
export type ConsoleUrl = {
|
|
2898
3204
|
readonly url: string;
|
|
2899
3205
|
};
|
|
@@ -3061,7 +3367,6 @@ export type ConstanceSettings = {
|
|
|
3061
3367
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
3062
3368
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
3063
3369
|
DISABLED_OFFERING_TYPES?: Array<string>;
|
|
3064
|
-
ONBOARDING_SUPPORTED_COUNTRIES?: Array<string>;
|
|
3065
3370
|
ONBOARDING_VALIDATION_METHODS?: Array<string>;
|
|
3066
3371
|
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
3067
3372
|
ONBOARDING_ARIREGISTER_BASE_URL?: string;
|
|
@@ -3255,7 +3560,6 @@ export type ConstanceSettingsRequest = {
|
|
|
3255
3560
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
3256
3561
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
3257
3562
|
DISABLED_OFFERING_TYPES?: Array<string>;
|
|
3258
|
-
ONBOARDING_SUPPORTED_COUNTRIES?: Array<string>;
|
|
3259
3563
|
ONBOARDING_VALIDATION_METHODS?: Array<string>;
|
|
3260
3564
|
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
3261
3565
|
ONBOARDING_ARIREGISTER_BASE_URL?: string;
|
|
@@ -3975,6 +4279,66 @@ export type DataVolumeRequest = {
|
|
|
3975
4279
|
filesystem?: string;
|
|
3976
4280
|
mount_point: string;
|
|
3977
4281
|
};
|
|
4282
|
+
export type DatabaseSizeStats = {
|
|
4283
|
+
/**
|
|
4284
|
+
* Name of the database
|
|
4285
|
+
*/
|
|
4286
|
+
readonly database_name: string;
|
|
4287
|
+
/**
|
|
4288
|
+
* Total database size in bytes
|
|
4289
|
+
*/
|
|
4290
|
+
readonly total_size_bytes: number;
|
|
4291
|
+
/**
|
|
4292
|
+
* Size of data excluding indexes in bytes
|
|
4293
|
+
*/
|
|
4294
|
+
readonly data_size_bytes: number;
|
|
4295
|
+
/**
|
|
4296
|
+
* Total size of all indexes in bytes
|
|
4297
|
+
*/
|
|
4298
|
+
readonly index_size_bytes: number;
|
|
4299
|
+
};
|
|
4300
|
+
export type DatabaseStatsResponse = {
|
|
4301
|
+
/**
|
|
4302
|
+
* Top largest tables by size
|
|
4303
|
+
*/
|
|
4304
|
+
readonly table_stats: Array<TableSize>;
|
|
4305
|
+
/**
|
|
4306
|
+
* Connection statistics
|
|
4307
|
+
*/
|
|
4308
|
+
connections: ConnectionStats;
|
|
4309
|
+
/**
|
|
4310
|
+
* Database size information
|
|
4311
|
+
*/
|
|
4312
|
+
database_size: DatabaseSizeStats;
|
|
4313
|
+
/**
|
|
4314
|
+
* Cache hit ratios and memory settings
|
|
4315
|
+
*/
|
|
4316
|
+
cache_performance: CachePerformance;
|
|
4317
|
+
/**
|
|
4318
|
+
* Transaction commit/rollback statistics
|
|
4319
|
+
*/
|
|
4320
|
+
transactions: TransactionStats;
|
|
4321
|
+
/**
|
|
4322
|
+
* Current lock statistics
|
|
4323
|
+
*/
|
|
4324
|
+
locks: LockStats;
|
|
4325
|
+
/**
|
|
4326
|
+
* Vacuum and maintenance statistics
|
|
4327
|
+
*/
|
|
4328
|
+
maintenance: MaintenanceStats;
|
|
4329
|
+
/**
|
|
4330
|
+
* Currently running queries
|
|
4331
|
+
*/
|
|
4332
|
+
active_queries: ActiveQueriesStats;
|
|
4333
|
+
/**
|
|
4334
|
+
* Query performance indicators
|
|
4335
|
+
*/
|
|
4336
|
+
query_performance: QueryPerformance;
|
|
4337
|
+
/**
|
|
4338
|
+
* Replication status (if applicable)
|
|
4339
|
+
*/
|
|
4340
|
+
replication: ReplicationStats;
|
|
4341
|
+
};
|
|
3978
4342
|
export type DecidingEntityEnum = 'by_call_manager' | 'automatic';
|
|
3979
4343
|
export type DeleteAttachmentsRequest = {
|
|
3980
4344
|
attachment_ids: Array<string>;
|
|
@@ -4385,6 +4749,9 @@ export type EventSubscription = {
|
|
|
4385
4749
|
*/
|
|
4386
4750
|
readonly user_username: string;
|
|
4387
4751
|
readonly user_full_name: string;
|
|
4752
|
+
/**
|
|
4753
|
+
* List of objects to observe. Each item must have 'object_type' (one of: order, user_role, resource, offering_user, importable_resources, service_account, course_account, resource_periodic_limits) and optionally 'object_id' (integer). Example: [{"object_type": "resource"}, {"object_type": "order", "object_id": 123}]
|
|
4754
|
+
*/
|
|
4388
4755
|
observable_objects?: unknown;
|
|
4389
4756
|
readonly created: string;
|
|
4390
4757
|
readonly modified: string;
|
|
@@ -4395,6 +4762,9 @@ export type EventSubscription = {
|
|
|
4395
4762
|
};
|
|
4396
4763
|
export type EventSubscriptionRequest = {
|
|
4397
4764
|
description?: string;
|
|
4765
|
+
/**
|
|
4766
|
+
* List of objects to observe. Each item must have 'object_type' (one of: order, user_role, resource, offering_user, importable_resources, service_account, course_account, resource_periodic_limits) and optionally 'object_id' (integer). Example: [{"object_type": "resource"}, {"object_type": "order", "object_id": 123}]
|
|
4767
|
+
*/
|
|
4398
4768
|
observable_objects?: unknown;
|
|
4399
4769
|
};
|
|
4400
4770
|
export type EventTypesEnum = 'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_user_created' | 'marketplace_resource_user_deleted' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_update_succeeded' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked';
|
|
@@ -5933,6 +6303,20 @@ export type LinkToInvoice = {
|
|
|
5933
6303
|
export type LinkToInvoiceRequest = {
|
|
5934
6304
|
invoice: string;
|
|
5935
6305
|
};
|
|
6306
|
+
export type LockStats = {
|
|
6307
|
+
/**
|
|
6308
|
+
* Total number of locks currently held
|
|
6309
|
+
*/
|
|
6310
|
+
readonly total_locks: number;
|
|
6311
|
+
/**
|
|
6312
|
+
* Number of locks being waited for
|
|
6313
|
+
*/
|
|
6314
|
+
readonly waiting_locks: number;
|
|
6315
|
+
/**
|
|
6316
|
+
* Number of AccessExclusive locks (blocks all access)
|
|
6317
|
+
*/
|
|
6318
|
+
readonly access_exclusive_locks: number;
|
|
6319
|
+
};
|
|
5936
6320
|
export type Logout = {
|
|
5937
6321
|
/**
|
|
5938
6322
|
* URL to redirect to after logout
|
|
@@ -6094,6 +6478,28 @@ export type MaintenanceAnnouncementTemplateRequest = {
|
|
|
6094
6478
|
*/
|
|
6095
6479
|
service_provider: string;
|
|
6096
6480
|
};
|
|
6481
|
+
export type MaintenanceStats = {
|
|
6482
|
+
/**
|
|
6483
|
+
* Age of the oldest transaction in transactions
|
|
6484
|
+
*/
|
|
6485
|
+
readonly oldest_transaction_age: number | null;
|
|
6486
|
+
/**
|
|
6487
|
+
* Number of tables with high dead tuple ratio
|
|
6488
|
+
*/
|
|
6489
|
+
readonly tables_needing_vacuum: number;
|
|
6490
|
+
/**
|
|
6491
|
+
* Total estimated dead tuples across all tables
|
|
6492
|
+
*/
|
|
6493
|
+
readonly total_dead_tuples: number;
|
|
6494
|
+
/**
|
|
6495
|
+
* Total estimated live tuples across all tables
|
|
6496
|
+
*/
|
|
6497
|
+
readonly total_live_tuples: number;
|
|
6498
|
+
/**
|
|
6499
|
+
* Ratio of dead tuples to total tuples
|
|
6500
|
+
*/
|
|
6501
|
+
readonly dead_tuple_ratio_percent: number | null;
|
|
6502
|
+
};
|
|
6097
6503
|
export type MaintenanceTypeEnum = 1 | 2 | 3 | 4 | 5;
|
|
6098
6504
|
export type ManagedProject = {
|
|
6099
6505
|
readonly state: string;
|
|
@@ -8989,6 +9395,12 @@ export type OfferingUser = {
|
|
|
8989
9395
|
* Check if the offering user has a connected compliance checklist completion.
|
|
8990
9396
|
*/
|
|
8991
9397
|
readonly has_compliance_checklist?: boolean;
|
|
9398
|
+
/**
|
|
9399
|
+
* User consent data including uuid, version, and agreement_date
|
|
9400
|
+
*/
|
|
9401
|
+
readonly consent_data?: {
|
|
9402
|
+
[key: string]: string;
|
|
9403
|
+
} | null;
|
|
8992
9404
|
};
|
|
8993
9405
|
export type OfferingUserRequest = {
|
|
8994
9406
|
user?: string;
|
|
@@ -9160,7 +9572,7 @@ export type OnboardingRunValidationRequestRequest = {
|
|
|
9160
9572
|
/**
|
|
9161
9573
|
* Personal identifier (temporary workaround for Estonian civil_number)
|
|
9162
9574
|
*/
|
|
9163
|
-
|
|
9575
|
+
civil_number?: string;
|
|
9164
9576
|
/**
|
|
9165
9577
|
* User's first name (temporary workaround for Austrian validation)
|
|
9166
9578
|
*/
|
|
@@ -12950,6 +13362,18 @@ export type PermissionRequest = {
|
|
|
12950
13362
|
readonly role_description: string;
|
|
12951
13363
|
readonly project_name_template: string;
|
|
12952
13364
|
};
|
|
13365
|
+
export type PersonIdentifierFieldsResponse = {
|
|
13366
|
+
/**
|
|
13367
|
+
* The validation method identifier
|
|
13368
|
+
*/
|
|
13369
|
+
validation_method: string;
|
|
13370
|
+
/**
|
|
13371
|
+
* Field specification for person identification. For simple identifiers: {type: 'string', field: 'civil_number', ...}. For composite identifiers: {type: 'object', fields: {...}}
|
|
13372
|
+
*/
|
|
13373
|
+
person_identifier_fields: {
|
|
13374
|
+
[key: string]: unknown;
|
|
13375
|
+
};
|
|
13376
|
+
};
|
|
12953
13377
|
export type PlanComponent = {
|
|
12954
13378
|
readonly offering_name: string;
|
|
12955
13379
|
readonly plan_name: string;
|
|
@@ -14367,6 +14791,32 @@ export type PullMarketplaceScriptResourceRequest = {
|
|
|
14367
14791
|
resource_uuid: string;
|
|
14368
14792
|
};
|
|
14369
14793
|
export type QosStrategyEnum = 'threshold' | 'progressive';
|
|
14794
|
+
export type QueryPerformance = {
|
|
14795
|
+
/**
|
|
14796
|
+
* Total sequential scans (potentially expensive)
|
|
14797
|
+
*/
|
|
14798
|
+
readonly seq_scan_count: number;
|
|
14799
|
+
/**
|
|
14800
|
+
* Total rows fetched by sequential scans
|
|
14801
|
+
*/
|
|
14802
|
+
readonly seq_scan_rows: number;
|
|
14803
|
+
/**
|
|
14804
|
+
* Total index scans
|
|
14805
|
+
*/
|
|
14806
|
+
readonly index_scan_count: number;
|
|
14807
|
+
/**
|
|
14808
|
+
* Total rows fetched by index scans
|
|
14809
|
+
*/
|
|
14810
|
+
readonly index_scan_rows: number;
|
|
14811
|
+
/**
|
|
14812
|
+
* Number of temporary files created
|
|
14813
|
+
*/
|
|
14814
|
+
readonly temp_files_count: number;
|
|
14815
|
+
/**
|
|
14816
|
+
* Total size of temporary files in bytes
|
|
14817
|
+
*/
|
|
14818
|
+
readonly temp_files_bytes: number;
|
|
14819
|
+
};
|
|
14370
14820
|
export type QueryRequest = {
|
|
14371
14821
|
/**
|
|
14372
14822
|
* Search query string
|
|
@@ -15784,6 +16234,20 @@ export type RemoveSoftwareCatalogRequest = {
|
|
|
15784
16234
|
*/
|
|
15785
16235
|
offering_catalog_uuid: string;
|
|
15786
16236
|
};
|
|
16237
|
+
export type ReplicationStats = {
|
|
16238
|
+
/**
|
|
16239
|
+
* Whether this database is a replica
|
|
16240
|
+
*/
|
|
16241
|
+
readonly is_replica: boolean;
|
|
16242
|
+
/**
|
|
16243
|
+
* Write-ahead log size in bytes
|
|
16244
|
+
*/
|
|
16245
|
+
readonly wal_bytes: number | null;
|
|
16246
|
+
/**
|
|
16247
|
+
* Replication lag in bytes (only for replicas)
|
|
16248
|
+
*/
|
|
16249
|
+
readonly replication_lag_bytes: number | null;
|
|
16250
|
+
};
|
|
15787
16251
|
export type ReportSection = {
|
|
15788
16252
|
/**
|
|
15789
16253
|
* Section header text
|
|
@@ -16626,12 +17090,193 @@ export type ReviewerSuggestionRequest = {
|
|
|
16626
17090
|
rejection_reason?: string;
|
|
16627
17091
|
};
|
|
16628
17092
|
export type ReviewerSuggestionStatusEnum = 'pending' | 'confirmed' | 'rejected' | 'invited';
|
|
16629
|
-
export type
|
|
17093
|
+
export type RmqClientProperties = {
|
|
16630
17094
|
/**
|
|
16631
|
-
*
|
|
17095
|
+
* Client product name (e.g., 'pika', 'amqp-client')
|
|
17096
|
+
*/
|
|
17097
|
+
readonly product: string | null;
|
|
17098
|
+
/**
|
|
17099
|
+
* Client library version
|
|
17100
|
+
*/
|
|
17101
|
+
readonly version: string | null;
|
|
17102
|
+
/**
|
|
17103
|
+
* Client platform (e.g., 'Python 3.11')
|
|
17104
|
+
*/
|
|
17105
|
+
readonly platform: string | null;
|
|
17106
|
+
};
|
|
17107
|
+
export type RmqEnrichedConnection = {
|
|
17108
|
+
/**
|
|
17109
|
+
* Client IP address
|
|
17110
|
+
*/
|
|
17111
|
+
readonly source_ip: string;
|
|
17112
|
+
/**
|
|
17113
|
+
* Virtual host name
|
|
16632
17114
|
*/
|
|
16633
|
-
source_ip: string;
|
|
16634
17115
|
readonly vhost: string;
|
|
17116
|
+
/**
|
|
17117
|
+
* Connection establishment timestamp
|
|
17118
|
+
*/
|
|
17119
|
+
readonly connected_at: string | null;
|
|
17120
|
+
/**
|
|
17121
|
+
* Connection state: 'running', 'blocked', 'blocking'
|
|
17122
|
+
*/
|
|
17123
|
+
readonly state: string;
|
|
17124
|
+
/**
|
|
17125
|
+
* Bytes received on this connection
|
|
17126
|
+
*/
|
|
17127
|
+
readonly recv_oct: number;
|
|
17128
|
+
/**
|
|
17129
|
+
* Bytes sent on this connection
|
|
17130
|
+
*/
|
|
17131
|
+
readonly send_oct: number;
|
|
17132
|
+
/**
|
|
17133
|
+
* Number of channels on this connection
|
|
17134
|
+
*/
|
|
17135
|
+
readonly channels: number;
|
|
17136
|
+
/**
|
|
17137
|
+
* Heartbeat timeout in seconds
|
|
17138
|
+
*/
|
|
17139
|
+
readonly timeout: number | null;
|
|
17140
|
+
/**
|
|
17141
|
+
* Client identification properties
|
|
17142
|
+
*/
|
|
17143
|
+
client_properties: RmqClientProperties | null;
|
|
17144
|
+
};
|
|
17145
|
+
export type RmqEnrichedUserStatsItem = {
|
|
17146
|
+
/**
|
|
17147
|
+
* RabbitMQ username (corresponds to EventSubscription UUID)
|
|
17148
|
+
*/
|
|
17149
|
+
readonly username: string;
|
|
17150
|
+
/**
|
|
17151
|
+
* List of active connections with detailed statistics
|
|
17152
|
+
*/
|
|
17153
|
+
readonly connections: Array<RmqEnrichedConnection>;
|
|
17154
|
+
};
|
|
17155
|
+
export type RmqListener = {
|
|
17156
|
+
/**
|
|
17157
|
+
* Protocol name (e.g., 'amqp', 'http', 'clustering')
|
|
17158
|
+
*/
|
|
17159
|
+
readonly protocol: string;
|
|
17160
|
+
/**
|
|
17161
|
+
* Listening port number
|
|
17162
|
+
*/
|
|
17163
|
+
readonly port: number;
|
|
17164
|
+
};
|
|
17165
|
+
export type RmqMessageStats = {
|
|
17166
|
+
/**
|
|
17167
|
+
* Total messages published
|
|
17168
|
+
*/
|
|
17169
|
+
readonly publish: number;
|
|
17170
|
+
/**
|
|
17171
|
+
* Messages published per second
|
|
17172
|
+
*/
|
|
17173
|
+
readonly publish_rate: number;
|
|
17174
|
+
/**
|
|
17175
|
+
* Total messages delivered to consumers
|
|
17176
|
+
*/
|
|
17177
|
+
readonly deliver: number;
|
|
17178
|
+
/**
|
|
17179
|
+
* Messages delivered per second
|
|
17180
|
+
*/
|
|
17181
|
+
readonly deliver_rate: number;
|
|
17182
|
+
/**
|
|
17183
|
+
* Total messages confirmed by broker
|
|
17184
|
+
*/
|
|
17185
|
+
readonly confirm: number;
|
|
17186
|
+
/**
|
|
17187
|
+
* Messages confirmed per second
|
|
17188
|
+
*/
|
|
17189
|
+
readonly confirm_rate: number;
|
|
17190
|
+
/**
|
|
17191
|
+
* Total messages acknowledged by consumers
|
|
17192
|
+
*/
|
|
17193
|
+
readonly ack: number;
|
|
17194
|
+
/**
|
|
17195
|
+
* Messages acknowledged per second
|
|
17196
|
+
*/
|
|
17197
|
+
readonly ack_rate: number;
|
|
17198
|
+
};
|
|
17199
|
+
export type RmqObjectTotals = {
|
|
17200
|
+
/**
|
|
17201
|
+
* Total active connections
|
|
17202
|
+
*/
|
|
17203
|
+
readonly connections: number;
|
|
17204
|
+
/**
|
|
17205
|
+
* Total active channels
|
|
17206
|
+
*/
|
|
17207
|
+
readonly channels: number;
|
|
17208
|
+
/**
|
|
17209
|
+
* Total exchanges
|
|
17210
|
+
*/
|
|
17211
|
+
readonly exchanges: number;
|
|
17212
|
+
/**
|
|
17213
|
+
* Total queues
|
|
17214
|
+
*/
|
|
17215
|
+
readonly queues: number;
|
|
17216
|
+
/**
|
|
17217
|
+
* Total active consumers
|
|
17218
|
+
*/
|
|
17219
|
+
readonly consumers: number;
|
|
17220
|
+
};
|
|
17221
|
+
export type RmqOverview = {
|
|
17222
|
+
/**
|
|
17223
|
+
* Name of the RabbitMQ cluster
|
|
17224
|
+
*/
|
|
17225
|
+
readonly cluster_name: string;
|
|
17226
|
+
/**
|
|
17227
|
+
* RabbitMQ server version
|
|
17228
|
+
*/
|
|
17229
|
+
readonly rabbitmq_version: string;
|
|
17230
|
+
/**
|
|
17231
|
+
* Erlang/OTP runtime version
|
|
17232
|
+
*/
|
|
17233
|
+
readonly erlang_version: string;
|
|
17234
|
+
/**
|
|
17235
|
+
* Message throughput statistics with rates
|
|
17236
|
+
*/
|
|
17237
|
+
message_stats: RmqMessageStats;
|
|
17238
|
+
/**
|
|
17239
|
+
* Global queue message counts
|
|
17240
|
+
*/
|
|
17241
|
+
queue_totals: RmqQueueTotals;
|
|
17242
|
+
/**
|
|
17243
|
+
* Counts of connections, channels, queues, etc.
|
|
17244
|
+
*/
|
|
17245
|
+
object_totals: RmqObjectTotals;
|
|
17246
|
+
/**
|
|
17247
|
+
* Current RabbitMQ node name
|
|
17248
|
+
*/
|
|
17249
|
+
readonly node: string;
|
|
17250
|
+
/**
|
|
17251
|
+
* Active protocol listeners
|
|
17252
|
+
*/
|
|
17253
|
+
readonly listeners: Array<RmqListener>;
|
|
17254
|
+
};
|
|
17255
|
+
export type RmqPurgeRequestRequest = {
|
|
17256
|
+
/**
|
|
17257
|
+
* Virtual host name containing the queue(s)
|
|
17258
|
+
*/
|
|
17259
|
+
vhost?: string;
|
|
17260
|
+
/**
|
|
17261
|
+
* Specific queue name (requires vhost)
|
|
17262
|
+
*/
|
|
17263
|
+
queue_name?: string;
|
|
17264
|
+
/**
|
|
17265
|
+
* Glob pattern to match queue names (e.g., '*_resource'). Requires vhost.
|
|
17266
|
+
*/
|
|
17267
|
+
queue_pattern?: string;
|
|
17268
|
+
/**
|
|
17269
|
+
* If true, purge all subscription queues across all vhosts
|
|
17270
|
+
*/
|
|
17271
|
+
purge_all_subscription_queues?: boolean;
|
|
17272
|
+
/**
|
|
17273
|
+
* If true, delete the queue(s) entirely instead of just purging messages
|
|
17274
|
+
*/
|
|
17275
|
+
delete_queue?: boolean;
|
|
17276
|
+
/**
|
|
17277
|
+
* If true, delete all subscription queues across all vhosts
|
|
17278
|
+
*/
|
|
17279
|
+
delete_all_subscription_queues?: boolean;
|
|
16635
17280
|
};
|
|
16636
17281
|
export type RmqPurgeResponse = {
|
|
16637
17282
|
/**
|
|
@@ -16642,6 +17287,10 @@ export type RmqPurgeResponse = {
|
|
|
16642
17287
|
* Total number of messages that were purged
|
|
16643
17288
|
*/
|
|
16644
17289
|
readonly purged_messages: number;
|
|
17290
|
+
/**
|
|
17291
|
+
* Number of queues that were deleted
|
|
17292
|
+
*/
|
|
17293
|
+
readonly deleted_queues: number;
|
|
16645
17294
|
};
|
|
16646
17295
|
export type RmqQueueStats = {
|
|
16647
17296
|
/**
|
|
@@ -16676,6 +17325,60 @@ export type RmqQueueStats = {
|
|
|
16676
17325
|
* Parsed object type from queue name (e.g., 'resource', 'order')
|
|
16677
17326
|
*/
|
|
16678
17327
|
readonly object_type: string | null;
|
|
17328
|
+
/**
|
|
17329
|
+
* Message TTL in milliseconds
|
|
17330
|
+
*/
|
|
17331
|
+
readonly message_ttl: number | null;
|
|
17332
|
+
/**
|
|
17333
|
+
* Maximum number of messages in queue
|
|
17334
|
+
*/
|
|
17335
|
+
readonly max_length: number | null;
|
|
17336
|
+
/**
|
|
17337
|
+
* Maximum total size of messages in bytes
|
|
17338
|
+
*/
|
|
17339
|
+
readonly max_length_bytes: number | null;
|
|
17340
|
+
/**
|
|
17341
|
+
* Queue TTL - auto-delete after idle in milliseconds
|
|
17342
|
+
*/
|
|
17343
|
+
readonly expires: number | null;
|
|
17344
|
+
/**
|
|
17345
|
+
* Behavior when full: 'drop-head', 'reject-publish', or 'reject-publish-dlx'
|
|
17346
|
+
*/
|
|
17347
|
+
readonly overflow: string | null;
|
|
17348
|
+
/**
|
|
17349
|
+
* Dead letter exchange name
|
|
17350
|
+
*/
|
|
17351
|
+
readonly dead_letter_exchange: string | null;
|
|
17352
|
+
/**
|
|
17353
|
+
* Dead letter routing key
|
|
17354
|
+
*/
|
|
17355
|
+
readonly dead_letter_routing_key: string | null;
|
|
17356
|
+
/**
|
|
17357
|
+
* Maximum priority level (1-255)
|
|
17358
|
+
*/
|
|
17359
|
+
readonly max_priority: number | null;
|
|
17360
|
+
/**
|
|
17361
|
+
* Queue mode: 'default' or 'lazy'
|
|
17362
|
+
*/
|
|
17363
|
+
readonly queue_mode: string | null;
|
|
17364
|
+
/**
|
|
17365
|
+
* Queue type: 'classic', 'quorum', or 'stream'
|
|
17366
|
+
*/
|
|
17367
|
+
readonly queue_type: string | null;
|
|
17368
|
+
};
|
|
17369
|
+
export type RmqQueueTotals = {
|
|
17370
|
+
/**
|
|
17371
|
+
* Total messages across all queues
|
|
17372
|
+
*/
|
|
17373
|
+
readonly messages: number;
|
|
17374
|
+
/**
|
|
17375
|
+
* Messages ready for delivery
|
|
17376
|
+
*/
|
|
17377
|
+
readonly messages_ready: number;
|
|
17378
|
+
/**
|
|
17379
|
+
* Messages awaiting acknowledgement
|
|
17380
|
+
*/
|
|
17381
|
+
readonly messages_unacknowledged: number;
|
|
16679
17382
|
};
|
|
16680
17383
|
export type RmqStatsError = {
|
|
16681
17384
|
/**
|
|
@@ -16719,10 +17422,6 @@ export type RmqSubscription = {
|
|
|
16719
17422
|
*/
|
|
16720
17423
|
source_ip: string;
|
|
16721
17424
|
};
|
|
16722
|
-
export type RmqUserStatsItem = {
|
|
16723
|
-
readonly username: string;
|
|
16724
|
-
readonly connections: Array<RmqConnection>;
|
|
16725
|
-
};
|
|
16726
17425
|
export type RmqVHostStatsItem = {
|
|
16727
17426
|
readonly name: string;
|
|
16728
17427
|
waldur_user: RmqWaldurUser;
|
|
@@ -17996,6 +18695,24 @@ export type TotalCustomerCost = {
|
|
|
17996
18695
|
readonly total: number;
|
|
17997
18696
|
readonly price: number;
|
|
17998
18697
|
};
|
|
18698
|
+
export type TransactionStats = {
|
|
18699
|
+
/**
|
|
18700
|
+
* Total committed transactions
|
|
18701
|
+
*/
|
|
18702
|
+
readonly committed: number;
|
|
18703
|
+
/**
|
|
18704
|
+
* Total rolled back transactions
|
|
18705
|
+
*/
|
|
18706
|
+
readonly rolled_back: number;
|
|
18707
|
+
/**
|
|
18708
|
+
* Percentage of transactions that were rolled back
|
|
18709
|
+
*/
|
|
18710
|
+
readonly rollback_ratio_percent: number;
|
|
18711
|
+
/**
|
|
18712
|
+
* Total number of deadlocks detected
|
|
18713
|
+
*/
|
|
18714
|
+
readonly deadlocks: number;
|
|
18715
|
+
};
|
|
17999
18716
|
export type TriggerCoiDetectionJobTypeEnum = 'full_call' | 'incremental';
|
|
18000
18717
|
export type TriggerCoiDetectionRequest = {
|
|
18001
18718
|
job_type?: TriggerCoiDetectionJobTypeEnum;
|
|
@@ -20083,7 +20800,6 @@ export type ConstanceSettingsRequestForm = {
|
|
|
20083
20800
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
20084
20801
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
20085
20802
|
DISABLED_OFFERING_TYPES?: Array<string>;
|
|
20086
|
-
ONBOARDING_SUPPORTED_COUNTRIES?: Array<string>;
|
|
20087
20803
|
ONBOARDING_VALIDATION_METHODS?: Array<string>;
|
|
20088
20804
|
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
20089
20805
|
ONBOARDING_ARIREGISTER_BASE_URL?: string;
|
|
@@ -20277,7 +20993,6 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
20277
20993
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
20278
20994
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
20279
20995
|
DISABLED_OFFERING_TYPES?: Array<string>;
|
|
20280
|
-
ONBOARDING_SUPPORTED_COUNTRIES?: Array<string>;
|
|
20281
20996
|
ONBOARDING_VALIDATION_METHODS?: Array<string>;
|
|
20282
20997
|
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
20283
20998
|
ONBOARDING_ARIREGISTER_BASE_URL?: string;
|
|
@@ -27562,16 +28277,16 @@ export type DailyQuotasRetrieveResponses = {
|
|
|
27562
28277
|
};
|
|
27563
28278
|
};
|
|
27564
28279
|
export type DailyQuotasRetrieveResponse = DailyQuotasRetrieveResponses[keyof DailyQuotasRetrieveResponses];
|
|
27565
|
-
export type
|
|
28280
|
+
export type DatabaseStatsRetrieveData = {
|
|
27566
28281
|
body?: never;
|
|
27567
28282
|
path?: never;
|
|
27568
28283
|
query?: never;
|
|
27569
28284
|
url: '/api/database-stats/';
|
|
27570
28285
|
};
|
|
27571
|
-
export type
|
|
27572
|
-
200:
|
|
28286
|
+
export type DatabaseStatsRetrieveResponses = {
|
|
28287
|
+
200: DatabaseStatsResponse;
|
|
27573
28288
|
};
|
|
27574
|
-
export type
|
|
28289
|
+
export type DatabaseStatsRetrieveResponse = DatabaseStatsRetrieveResponses[keyof DatabaseStatsRetrieveResponses];
|
|
27575
28290
|
export type DigitaloceanDropletsListData = {
|
|
27576
28291
|
body?: never;
|
|
27577
28292
|
path?: never;
|
|
@@ -34220,7 +34935,7 @@ export type MarketplaceOfferingUsersListData = {
|
|
|
34220
34935
|
* Created after
|
|
34221
34936
|
*/
|
|
34222
34937
|
created?: string;
|
|
34223
|
-
field?: Array<'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_restricted' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_email' | 'user_full_name' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
|
|
34938
|
+
field?: Array<'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_restricted' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_email' | 'user_full_name' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
|
|
34224
34939
|
/**
|
|
34225
34940
|
* User Has Consent
|
|
34226
34941
|
*/
|
|
@@ -34392,7 +35107,7 @@ export type MarketplaceOfferingUsersRetrieveData = {
|
|
|
34392
35107
|
uuid: string;
|
|
34393
35108
|
};
|
|
34394
35109
|
query?: {
|
|
34395
|
-
field?: Array<'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_restricted' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_email' | 'user_full_name' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
|
|
35110
|
+
field?: Array<'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_restricted' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_email' | 'user_full_name' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
|
|
34396
35111
|
};
|
|
34397
35112
|
url: '/api/marketplace-offering-users/{uuid}/';
|
|
34398
35113
|
};
|
|
@@ -42204,6 +42919,22 @@ export type MarketplaceServiceProvidersUpdateUserResponses = {
|
|
|
42204
42919
|
200: UserRoleExpirationTime;
|
|
42205
42920
|
};
|
|
42206
42921
|
export type MarketplaceServiceProvidersUpdateUserResponse = MarketplaceServiceProvidersUpdateUserResponses[keyof MarketplaceServiceProvidersUpdateUserResponses];
|
|
42922
|
+
export type MarketplaceSiteAgentConnectionStatsRetrieveData = {
|
|
42923
|
+
body?: never;
|
|
42924
|
+
path?: never;
|
|
42925
|
+
query?: never;
|
|
42926
|
+
url: '/api/marketplace-site-agent-connection-stats/';
|
|
42927
|
+
};
|
|
42928
|
+
export type MarketplaceSiteAgentConnectionStatsRetrieveErrors = {
|
|
42929
|
+
/**
|
|
42930
|
+
* RabbitMQ unavailable
|
|
42931
|
+
*/
|
|
42932
|
+
503: unknown;
|
|
42933
|
+
};
|
|
42934
|
+
export type MarketplaceSiteAgentConnectionStatsRetrieveResponses = {
|
|
42935
|
+
200: AgentConnectionStatsResponse;
|
|
42936
|
+
};
|
|
42937
|
+
export type MarketplaceSiteAgentConnectionStatsRetrieveResponse = MarketplaceSiteAgentConnectionStatsRetrieveResponses[keyof MarketplaceSiteAgentConnectionStatsRetrieveResponses];
|
|
42207
42938
|
export type MarketplaceSiteAgentIdentitiesListData = {
|
|
42208
42939
|
body?: never;
|
|
42209
42940
|
path?: never;
|
|
@@ -42214,6 +42945,10 @@ export type MarketplaceSiteAgentIdentitiesListData = {
|
|
|
42214
42945
|
last_restarted?: string;
|
|
42215
42946
|
name?: string;
|
|
42216
42947
|
offering_uuid?: string;
|
|
42948
|
+
/**
|
|
42949
|
+
* Has no services
|
|
42950
|
+
*/
|
|
42951
|
+
orphaned?: boolean;
|
|
42217
42952
|
/**
|
|
42218
42953
|
* A page number within the paginated result set.
|
|
42219
42954
|
*/
|
|
@@ -42240,6 +42975,10 @@ export type MarketplaceSiteAgentIdentitiesCountData = {
|
|
|
42240
42975
|
last_restarted?: string;
|
|
42241
42976
|
name?: string;
|
|
42242
42977
|
offering_uuid?: string;
|
|
42978
|
+
/**
|
|
42979
|
+
* Has no services
|
|
42980
|
+
*/
|
|
42981
|
+
orphaned?: boolean;
|
|
42243
42982
|
/**
|
|
42244
42983
|
* A page number within the paginated result set.
|
|
42245
42984
|
*/
|
|
@@ -42333,6 +43072,16 @@ export type MarketplaceSiteAgentIdentitiesRegisterServiceResponses = {
|
|
|
42333
43072
|
201: AgentService;
|
|
42334
43073
|
};
|
|
42335
43074
|
export type MarketplaceSiteAgentIdentitiesRegisterServiceResponse = MarketplaceSiteAgentIdentitiesRegisterServiceResponses[keyof MarketplaceSiteAgentIdentitiesRegisterServiceResponses];
|
|
43075
|
+
export type MarketplaceSiteAgentIdentitiesCleanupOrphanedData = {
|
|
43076
|
+
body?: CleanupRequestRequest;
|
|
43077
|
+
path?: never;
|
|
43078
|
+
query?: never;
|
|
43079
|
+
url: '/api/marketplace-site-agent-identities/cleanup_orphaned/';
|
|
43080
|
+
};
|
|
43081
|
+
export type MarketplaceSiteAgentIdentitiesCleanupOrphanedResponses = {
|
|
43082
|
+
200: CleanupResponse;
|
|
43083
|
+
};
|
|
43084
|
+
export type MarketplaceSiteAgentIdentitiesCleanupOrphanedResponse = MarketplaceSiteAgentIdentitiesCleanupOrphanedResponses[keyof MarketplaceSiteAgentIdentitiesCleanupOrphanedResponses];
|
|
42336
43085
|
export type MarketplaceSiteAgentProcessorsListData = {
|
|
42337
43086
|
body?: never;
|
|
42338
43087
|
path?: never;
|
|
@@ -42343,6 +43092,10 @@ export type MarketplaceSiteAgentProcessorsListData = {
|
|
|
42343
43092
|
* Last run after
|
|
42344
43093
|
*/
|
|
42345
43094
|
last_run?: string;
|
|
43095
|
+
/**
|
|
43096
|
+
* Last run before
|
|
43097
|
+
*/
|
|
43098
|
+
last_run_before?: string;
|
|
42346
43099
|
/**
|
|
42347
43100
|
* A page number within the paginated result set.
|
|
42348
43101
|
*/
|
|
@@ -42352,6 +43105,10 @@ export type MarketplaceSiteAgentProcessorsListData = {
|
|
|
42352
43105
|
*/
|
|
42353
43106
|
page_size?: number;
|
|
42354
43107
|
service_uuid?: string;
|
|
43108
|
+
/**
|
|
43109
|
+
* Last run more than 1 hour ago
|
|
43110
|
+
*/
|
|
43111
|
+
stale?: boolean;
|
|
42355
43112
|
};
|
|
42356
43113
|
url: '/api/marketplace-site-agent-processors/';
|
|
42357
43114
|
};
|
|
@@ -42369,6 +43126,10 @@ export type MarketplaceSiteAgentProcessorsCountData = {
|
|
|
42369
43126
|
* Last run after
|
|
42370
43127
|
*/
|
|
42371
43128
|
last_run?: string;
|
|
43129
|
+
/**
|
|
43130
|
+
* Last run before
|
|
43131
|
+
*/
|
|
43132
|
+
last_run_before?: string;
|
|
42372
43133
|
/**
|
|
42373
43134
|
* A page number within the paginated result set.
|
|
42374
43135
|
*/
|
|
@@ -42378,6 +43139,10 @@ export type MarketplaceSiteAgentProcessorsCountData = {
|
|
|
42378
43139
|
*/
|
|
42379
43140
|
page_size?: number;
|
|
42380
43141
|
service_uuid?: string;
|
|
43142
|
+
/**
|
|
43143
|
+
* Last run more than 1 hour ago
|
|
43144
|
+
*/
|
|
43145
|
+
stale?: boolean;
|
|
42381
43146
|
};
|
|
42382
43147
|
url: '/api/marketplace-site-agent-processors/';
|
|
42383
43148
|
};
|
|
@@ -42387,6 +43152,21 @@ export type MarketplaceSiteAgentProcessorsCountResponses = {
|
|
|
42387
43152
|
*/
|
|
42388
43153
|
200: unknown;
|
|
42389
43154
|
};
|
|
43155
|
+
export type MarketplaceSiteAgentProcessorsDestroyData = {
|
|
43156
|
+
body?: never;
|
|
43157
|
+
path: {
|
|
43158
|
+
uuid: string;
|
|
43159
|
+
};
|
|
43160
|
+
query?: never;
|
|
43161
|
+
url: '/api/marketplace-site-agent-processors/{uuid}/';
|
|
43162
|
+
};
|
|
43163
|
+
export type MarketplaceSiteAgentProcessorsDestroyResponses = {
|
|
43164
|
+
/**
|
|
43165
|
+
* No response body
|
|
43166
|
+
*/
|
|
43167
|
+
204: void;
|
|
43168
|
+
};
|
|
43169
|
+
export type MarketplaceSiteAgentProcessorsDestroyResponse = MarketplaceSiteAgentProcessorsDestroyResponses[keyof MarketplaceSiteAgentProcessorsDestroyResponses];
|
|
42390
43170
|
export type MarketplaceSiteAgentProcessorsRetrieveData = {
|
|
42391
43171
|
body?: never;
|
|
42392
43172
|
path: {
|
|
@@ -42405,6 +43185,14 @@ export type MarketplaceSiteAgentServicesListData = {
|
|
|
42405
43185
|
query?: {
|
|
42406
43186
|
identity_uuid?: string;
|
|
42407
43187
|
mode?: string;
|
|
43188
|
+
/**
|
|
43189
|
+
* Modified after
|
|
43190
|
+
*/
|
|
43191
|
+
modified_after?: string;
|
|
43192
|
+
/**
|
|
43193
|
+
* Modified before
|
|
43194
|
+
*/
|
|
43195
|
+
modified_before?: string;
|
|
42408
43196
|
/**
|
|
42409
43197
|
* A page number within the paginated result set.
|
|
42410
43198
|
*/
|
|
@@ -42413,6 +43201,10 @@ export type MarketplaceSiteAgentServicesListData = {
|
|
|
42413
43201
|
* Number of results to return per page.
|
|
42414
43202
|
*/
|
|
42415
43203
|
page_size?: number;
|
|
43204
|
+
/**
|
|
43205
|
+
* Inactive for more than 24 hours
|
|
43206
|
+
*/
|
|
43207
|
+
stale?: boolean;
|
|
42416
43208
|
state?: Array<1 | 2 | 3>;
|
|
42417
43209
|
};
|
|
42418
43210
|
url: '/api/marketplace-site-agent-services/';
|
|
@@ -42427,6 +43219,14 @@ export type MarketplaceSiteAgentServicesCountData = {
|
|
|
42427
43219
|
query?: {
|
|
42428
43220
|
identity_uuid?: string;
|
|
42429
43221
|
mode?: string;
|
|
43222
|
+
/**
|
|
43223
|
+
* Modified after
|
|
43224
|
+
*/
|
|
43225
|
+
modified_after?: string;
|
|
43226
|
+
/**
|
|
43227
|
+
* Modified before
|
|
43228
|
+
*/
|
|
43229
|
+
modified_before?: string;
|
|
42430
43230
|
/**
|
|
42431
43231
|
* A page number within the paginated result set.
|
|
42432
43232
|
*/
|
|
@@ -42435,6 +43235,10 @@ export type MarketplaceSiteAgentServicesCountData = {
|
|
|
42435
43235
|
* Number of results to return per page.
|
|
42436
43236
|
*/
|
|
42437
43237
|
page_size?: number;
|
|
43238
|
+
/**
|
|
43239
|
+
* Inactive for more than 24 hours
|
|
43240
|
+
*/
|
|
43241
|
+
stale?: boolean;
|
|
42438
43242
|
state?: Array<1 | 2 | 3>;
|
|
42439
43243
|
};
|
|
42440
43244
|
url: '/api/marketplace-site-agent-services/';
|
|
@@ -42445,6 +43249,21 @@ export type MarketplaceSiteAgentServicesCountResponses = {
|
|
|
42445
43249
|
*/
|
|
42446
43250
|
200: unknown;
|
|
42447
43251
|
};
|
|
43252
|
+
export type MarketplaceSiteAgentServicesDestroyData = {
|
|
43253
|
+
body?: never;
|
|
43254
|
+
path: {
|
|
43255
|
+
uuid: string;
|
|
43256
|
+
};
|
|
43257
|
+
query?: never;
|
|
43258
|
+
url: '/api/marketplace-site-agent-services/{uuid}/';
|
|
43259
|
+
};
|
|
43260
|
+
export type MarketplaceSiteAgentServicesDestroyResponses = {
|
|
43261
|
+
/**
|
|
43262
|
+
* No response body
|
|
43263
|
+
*/
|
|
43264
|
+
204: void;
|
|
43265
|
+
};
|
|
43266
|
+
export type MarketplaceSiteAgentServicesDestroyResponse = MarketplaceSiteAgentServicesDestroyResponses[keyof MarketplaceSiteAgentServicesDestroyResponses];
|
|
42448
43267
|
export type MarketplaceSiteAgentServicesRetrieveData = {
|
|
42449
43268
|
body?: never;
|
|
42450
43269
|
path: {
|
|
@@ -42482,6 +43301,36 @@ export type MarketplaceSiteAgentServicesSetStatisticsResponses = {
|
|
|
42482
43301
|
200: AgentService;
|
|
42483
43302
|
};
|
|
42484
43303
|
export type MarketplaceSiteAgentServicesSetStatisticsResponse = MarketplaceSiteAgentServicesSetStatisticsResponses[keyof MarketplaceSiteAgentServicesSetStatisticsResponses];
|
|
43304
|
+
export type MarketplaceSiteAgentServicesCleanupStaleData = {
|
|
43305
|
+
body?: CleanupRequestRequest;
|
|
43306
|
+
path?: never;
|
|
43307
|
+
query?: never;
|
|
43308
|
+
url: '/api/marketplace-site-agent-services/cleanup_stale/';
|
|
43309
|
+
};
|
|
43310
|
+
export type MarketplaceSiteAgentServicesCleanupStaleResponses = {
|
|
43311
|
+
200: CleanupResponse;
|
|
43312
|
+
};
|
|
43313
|
+
export type MarketplaceSiteAgentServicesCleanupStaleResponse = MarketplaceSiteAgentServicesCleanupStaleResponses[keyof MarketplaceSiteAgentServicesCleanupStaleResponses];
|
|
43314
|
+
export type MarketplaceSiteAgentStatsRetrieveData = {
|
|
43315
|
+
body?: never;
|
|
43316
|
+
path?: never;
|
|
43317
|
+
query?: never;
|
|
43318
|
+
url: '/api/marketplace-site-agent-stats/';
|
|
43319
|
+
};
|
|
43320
|
+
export type MarketplaceSiteAgentStatsRetrieveResponses = {
|
|
43321
|
+
200: AgentStatsResponse;
|
|
43322
|
+
};
|
|
43323
|
+
export type MarketplaceSiteAgentStatsRetrieveResponse = MarketplaceSiteAgentStatsRetrieveResponses[keyof MarketplaceSiteAgentStatsRetrieveResponses];
|
|
43324
|
+
export type MarketplaceSiteAgentTaskStatsRetrieveData = {
|
|
43325
|
+
body?: never;
|
|
43326
|
+
path?: never;
|
|
43327
|
+
query?: never;
|
|
43328
|
+
url: '/api/marketplace-site-agent-task-stats/';
|
|
43329
|
+
};
|
|
43330
|
+
export type MarketplaceSiteAgentTaskStatsRetrieveResponses = {
|
|
43331
|
+
200: AgentTaskStatsResponse;
|
|
43332
|
+
};
|
|
43333
|
+
export type MarketplaceSiteAgentTaskStatsRetrieveResponse = MarketplaceSiteAgentTaskStatsRetrieveResponses[keyof MarketplaceSiteAgentTaskStatsRetrieveResponses];
|
|
42485
43334
|
export type MarketplaceSlurmPeriodicUsagePoliciesListData = {
|
|
42486
43335
|
body?: never;
|
|
42487
43336
|
path?: never;
|
|
@@ -45334,6 +46183,21 @@ export type OnboardingVerificationsStartVerificationResponses = {
|
|
|
45334
46183
|
200: OnboardingVerification;
|
|
45335
46184
|
};
|
|
45336
46185
|
export type OnboardingVerificationsStartVerificationResponse = OnboardingVerificationsStartVerificationResponses[keyof OnboardingVerificationsStartVerificationResponses];
|
|
46186
|
+
export type OnboardingPersonIdentifierFieldsRetrieveData = {
|
|
46187
|
+
body?: never;
|
|
46188
|
+
path?: never;
|
|
46189
|
+
query: {
|
|
46190
|
+
/**
|
|
46191
|
+
* Validation method identifier
|
|
46192
|
+
*/
|
|
46193
|
+
validation_method: 'ariregister' | 'bolagsverket' | 'breg' | 'wirtschaftscompass';
|
|
46194
|
+
};
|
|
46195
|
+
url: '/api/onboarding/person-identifier-fields/';
|
|
46196
|
+
};
|
|
46197
|
+
export type OnboardingPersonIdentifierFieldsRetrieveResponses = {
|
|
46198
|
+
200: PersonIdentifierFieldsResponse;
|
|
46199
|
+
};
|
|
46200
|
+
export type OnboardingPersonIdentifierFieldsRetrieveResponse = OnboardingPersonIdentifierFieldsRetrieveResponses[keyof OnboardingPersonIdentifierFieldsRetrieveResponses];
|
|
45337
46201
|
export type OnboardingSupportedCountriesRetrieveData = {
|
|
45338
46202
|
body?: never;
|
|
45339
46203
|
path?: never;
|
|
@@ -56531,22 +57395,20 @@ export type QueryResponses = {
|
|
|
56531
57395
|
200: Array<unknown>;
|
|
56532
57396
|
};
|
|
56533
57397
|
export type QueryResponse = QueryResponses[keyof QueryResponses];
|
|
56534
|
-
export type
|
|
57398
|
+
export type RabbitmqOverviewRetrieveData = {
|
|
56535
57399
|
body?: never;
|
|
56536
57400
|
path?: never;
|
|
56537
57401
|
query?: never;
|
|
56538
|
-
url: '/api/rabbitmq-
|
|
57402
|
+
url: '/api/rabbitmq-overview/';
|
|
56539
57403
|
};
|
|
56540
|
-
export type
|
|
56541
|
-
400: RmqStatsError;
|
|
56542
|
-
404: RmqStatsError;
|
|
57404
|
+
export type RabbitmqOverviewRetrieveErrors = {
|
|
56543
57405
|
503: RmqStatsError;
|
|
56544
57406
|
};
|
|
56545
|
-
export type
|
|
56546
|
-
export type
|
|
56547
|
-
200:
|
|
57407
|
+
export type RabbitmqOverviewRetrieveError = RabbitmqOverviewRetrieveErrors[keyof RabbitmqOverviewRetrieveErrors];
|
|
57408
|
+
export type RabbitmqOverviewRetrieveResponses = {
|
|
57409
|
+
200: RmqOverview;
|
|
56548
57410
|
};
|
|
56549
|
-
export type
|
|
57411
|
+
export type RabbitmqOverviewRetrieveResponse = RabbitmqOverviewRetrieveResponses[keyof RabbitmqOverviewRetrieveResponses];
|
|
56550
57412
|
export type RabbitmqStatsRetrieveData = {
|
|
56551
57413
|
body?: never;
|
|
56552
57414
|
path?: never;
|
|
@@ -56561,6 +57423,22 @@ export type RabbitmqStatsRetrieveResponses = {
|
|
|
56561
57423
|
200: RmqStatsResponse;
|
|
56562
57424
|
};
|
|
56563
57425
|
export type RabbitmqStatsRetrieveResponse = RabbitmqStatsRetrieveResponses[keyof RabbitmqStatsRetrieveResponses];
|
|
57426
|
+
export type RabbitmqStatsData = {
|
|
57427
|
+
body?: RmqPurgeRequestRequest;
|
|
57428
|
+
path?: never;
|
|
57429
|
+
query?: never;
|
|
57430
|
+
url: '/api/rabbitmq-stats/';
|
|
57431
|
+
};
|
|
57432
|
+
export type RabbitmqStatsErrors = {
|
|
57433
|
+
400: RmqStatsError;
|
|
57434
|
+
404: RmqStatsError;
|
|
57435
|
+
503: RmqStatsError;
|
|
57436
|
+
};
|
|
57437
|
+
export type RabbitmqStatsError = RabbitmqStatsErrors[keyof RabbitmqStatsErrors];
|
|
57438
|
+
export type RabbitmqStatsResponses = {
|
|
57439
|
+
200: RmqPurgeResponse;
|
|
57440
|
+
};
|
|
57441
|
+
export type RabbitmqStatsResponse = RabbitmqStatsResponses[keyof RabbitmqStatsResponses];
|
|
56564
57442
|
export type RabbitmqUserStatsListData = {
|
|
56565
57443
|
body?: never;
|
|
56566
57444
|
path?: never;
|
|
@@ -56577,7 +57455,7 @@ export type RabbitmqUserStatsListData = {
|
|
|
56577
57455
|
url: '/api/rabbitmq-user-stats/';
|
|
56578
57456
|
};
|
|
56579
57457
|
export type RabbitmqUserStatsListResponses = {
|
|
56580
|
-
200: Array<
|
|
57458
|
+
200: Array<RmqEnrichedUserStatsItem>;
|
|
56581
57459
|
};
|
|
56582
57460
|
export type RabbitmqUserStatsListResponse = RabbitmqUserStatsListResponses[keyof RabbitmqUserStatsListResponses];
|
|
56583
57461
|
export type RabbitmqVhostStatsListData = {
|