async_openai/types/audit_log.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
use serde::{Deserialize, Serialize};
/// The event type.
#[derive(Debug, Serialize, Deserialize)]
pub enum AuditLogEventType {
#[serde(rename = "api_key.created")]
ApiKeyCreated,
#[serde(rename = "api_key.updated")]
ApiKeyUpdated,
#[serde(rename = "api_key.deleted")]
ApiKeyDeleted,
#[serde(rename = "invite.sent")]
InviteSent,
#[serde(rename = "invite.accepted")]
InviteAccepted,
#[serde(rename = "invite.deleted")]
InviteDeleted,
#[serde(rename = "login.succeeded")]
LoginSucceeded,
#[serde(rename = "login.failed")]
LoginFailed,
#[serde(rename = "logout.succeeded")]
LogoutSucceeded,
#[serde(rename = "logout.failed")]
LogoutFailed,
#[serde(rename = "organization.updated")]
OrganizationUpdated,
#[serde(rename = "project.created")]
ProjectCreated,
#[serde(rename = "project.updated")]
ProjectUpdated,
#[serde(rename = "project.archived")]
ProjectArchived,
#[serde(rename = "service_account.created")]
ServiceAccountCreated,
#[serde(rename = "service_account.updated")]
ServiceAccountUpdated,
#[serde(rename = "service_account.deleted")]
ServiceAccountDeleted,
#[serde(rename = "user.added")]
UserAdded,
#[serde(rename = "user.updated")]
UserUpdated,
#[serde(rename = "user.deleted")]
UserDeleted,
}
/// Represents a list of audit logs.
#[derive(Debug, Serialize, Deserialize)]
pub struct ListAuditLogsResponse {
/// The object type, which is always `list`.
pub object: String,
/// A list of `AuditLog` objects.
pub data: Vec<AuditLog>,
/// The first `audit_log_id` in the retrieved `list`.
pub first_id: String,
/// The last `audit_log_id` in the retrieved `list`.
pub last_id: String,
/// The `has_more` property is used for pagination to indicate there are additional results.
pub has_more: bool,
}
/// The project that the action was scoped to. Absent for actions not scoped to projects.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogProject {
/// The project ID.
pub id: String,
/// The project title.
pub name: String,
}
/// The actor who performed the audit logged action.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogActor {
/// The type of actor. Is either `session` or `api_key`.
pub r#type: String,
/// The session in which the audit logged action was performed.
pub session: Option<AuditLogActorSession>,
/// The API Key used to perform the audit logged action.
pub api_key: Option<AuditLogActorApiKey>,
}
/// The session in which the audit logged action was performed.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogActorSession {
/// The user who performed the audit logged action.
pub user: AuditLogActorUser,
/// The IP address from which the action was performed.
pub ip_address: String,
}
/// The API Key used to perform the audit logged action.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogActorApiKey {
/// The tracking id of the API key.
pub id: String,
/// The type of API key. Can be either `user` or `service_account`.
pub r#type: AuditLogActorApiKeyType,
/// The user who performed the audit logged action, if applicable.
pub user: Option<AuditLogActorUser>,
/// The service account that performed the audit logged action, if applicable.
pub service_account: Option<AuditLogActorServiceAccount>,
}
#[derive(Debug, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum AuditLogActorApiKeyType {
User,
ServiceAccount,
}
/// The user who performed the audit logged action.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogActorUser {
/// The user id.
pub id: String,
/// The user email.
pub email: String,
}
/// The service account that performed the audit logged action.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogActorServiceAccount {
/// The service account id.
pub id: String,
}
/// A log of a user action or configuration change within this organization.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLog {
/// The ID of this log.
pub id: String,
/// The event type.
pub r#type: AuditLogEventType,
/// The Unix timestamp (in seconds) of the event.
pub effective_at: u32,
/// The project that the action was scoped to. Absent for actions not scoped to projects.
pub project: Option<AuditLogProject>,
/// The actor who performed the audit logged action.
pub actor: AuditLogActor,
/// The details for events with the type `api_key.created`.
#[serde(rename = "api_key.created")]
pub api_key_created: Option<AuditLogApiKeyCreated>,
/// The details for events with the type `api_key.updated`.
#[serde(rename = "api_key.updated")]
pub api_key_updated: Option<AuditLogApiKeyUpdated>,
/// The details for events with the type `api_key.deleted`.
#[serde(rename = "api_key.deleted")]
pub api_key_deleted: Option<AuditLogApiKeyDeleted>,
/// The details for events with the type `invite.sent`.
#[serde(rename = "invite.sent")]
pub invite_sent: Option<AuditLogInviteSent>,
/// The details for events with the type `invite.accepted`.
#[serde(rename = "invite.accepted")]
pub invite_accepted: Option<AuditLogInviteAccepted>,
/// The details for events with the type `invite.deleted`.
#[serde(rename = "invite.deleted")]
pub invite_deleted: Option<AuditLogInviteDeleted>,
/// The details for events with the type `login.failed`.
#[serde(rename = "login.failed")]
pub login_failed: Option<AuditLogLoginFailed>,
/// The details for events with the type `logout.failed`.
#[serde(rename = "logout.failed")]
pub logout_failed: Option<AuditLogLogoutFailed>,
/// The details for events with the type `organization.updated`.
#[serde(rename = "organization.updated")]
pub organization_updated: Option<AuditLogOrganizationUpdated>,
/// The details for events with the type `project.created`.
#[serde(rename = "project.created")]
pub project_created: Option<AuditLogProjectCreated>,
/// The details for events with the type `project.updated`.
#[serde(rename = "project.updated")]
pub project_updated: Option<AuditLogProjectUpdated>,
/// The details for events with the type `project.archived`.
#[serde(rename = "project.archived")]
pub project_archived: Option<AuditLogProjectArchived>,
/// The details for events with the type `service_account.created`.
#[serde(rename = "service_account.created")]
pub service_account_created: Option<AuditLogServiceAccountCreated>,
/// The details for events with the type `service_account.updated`.
#[serde(rename = "service_account.updated")]
pub service_account_updated: Option<AuditLogServiceAccountUpdated>,
/// The details for events with the type `service_account.deleted`.
#[serde(rename = "service_account.deleted")]
pub service_account_deleted: Option<AuditLogServiceAccountDeleted>,
/// The details for events with the type `user.added`.
#[serde(rename = "user.added")]
pub user_added: Option<AuditLogUserAdded>,
/// The details for events with the type `user.updated`.
#[serde(rename = "user.updated")]
pub user_updated: Option<AuditLogUserUpdated>,
/// The details for events with the type `user.deleted`.
#[serde(rename = "user.deleted")]
pub user_deleted: Option<AuditLogUserDeleted>,
}
/// The details for events with the type `api_key.created`.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogApiKeyCreated {
/// The tracking ID of the API key.
pub id: String,
/// The payload used to create the API key.
pub data: Option<AuditLogApiKeyCreatedData>,
}
/// The payload used to create the API key.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogApiKeyCreatedData {
/// A list of scopes allowed for the API key, e.g. `["api.model.request"]`.
pub scopes: Option<Vec<String>>,
}
/// The details for events with the type `api_key.updated`.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogApiKeyUpdated {
/// The tracking ID of the API key.
pub id: String,
/// The payload used to update the API key.
pub changes_requested: Option<AuditLogApiKeyUpdatedChangesRequested>,
}
/// The payload used to update the API key.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogApiKeyUpdatedChangesRequested {
/// A list of scopes allowed for the API key, e.g. `["api.model.request"]`.
pub scopes: Option<Vec<String>>,
}
/// The details for events with the type `api_key.deleted`.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogApiKeyDeleted {
/// The tracking ID of the API key.
pub id: String,
}
/// The details for events with the type `invite.sent`.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogInviteSent {
/// The ID of the invite.
pub id: String,
/// The payload used to create the invite.
pub data: Option<AuditLogInviteSentData>,
}
/// The payload used to create the invite.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogInviteSentData {
/// The email invited to the organization.
pub email: String,
/// The role the email was invited to be. Is either `owner` or `member`.
pub role: String,
}
/// The details for events with the type `invite.accepted`.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogInviteAccepted {
/// The ID of the invite.
pub id: String,
}
/// The details for events with the type `invite.deleted`.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogInviteDeleted {
/// The ID of the invite.
pub id: String,
}
/// The details for events with the type `login.failed`.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogLoginFailed {
/// The error code of the failure.
pub error_code: String,
/// The error message of the failure.
pub error_message: String,
}
/// The details for events with the type `logout.failed`.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogLogoutFailed {
/// The error code of the failure.
pub error_code: String,
/// The error message of the failure.
pub error_message: String,
}
/// The details for events with the type `organization.updated`.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogOrganizationUpdated {
/// The organization ID.
pub id: String,
/// The payload used to update the organization settings.
pub changes_requested: Option<AuditLogOrganizationUpdatedChangesRequested>,
}
/// The payload used to update the organization settings.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogOrganizationUpdatedChangesRequested {
/// The organization title.
pub title: Option<String>,
/// The organization description.
pub description: Option<String>,
/// The organization name.
pub name: Option<String>,
/// The organization settings.
pub settings: Option<AuditLogOrganizationUpdatedChangesRequestedSettings>,
}
/// The organization settings.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogOrganizationUpdatedChangesRequestedSettings {
/// Visibility of the threads page which shows messages created with the Assistants API and Playground. One of `ANY_ROLE`, `OWNERS`, or `NONE`.
pub threads_ui_visibility: Option<String>,
/// Visibility of the usage dashboard which shows activity and costs for your organization. One of `ANY_ROLE` or `OWNERS`.
pub usage_dashboard_visibility: Option<String>,
}
/// The details for events with the type `project.created`.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogProjectCreated {
/// The project ID.
pub id: String,
/// The payload used to create the project.
pub data: Option<AuditLogProjectCreatedData>,
}
/// The payload used to create the project.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogProjectCreatedData {
/// The project name.
pub name: String,
/// The title of the project as seen on the dashboard.
pub title: Option<String>,
}
/// The details for events with the type `project.updated`.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogProjectUpdated {
/// The project ID.
pub id: String,
/// The payload used to update the project.
pub changes_requested: Option<AuditLogProjectUpdatedChangesRequested>,
}
/// The payload used to update the project.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogProjectUpdatedChangesRequested {
/// The title of the project as seen on the dashboard.
pub title: Option<String>,
}
/// The details for events with the type `project.archived`.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogProjectArchived {
/// The project ID.
pub id: String,
}
/// The details for events with the type `service_account.created`.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogServiceAccountCreated {
/// The service account ID.
pub id: String,
/// The payload used to create the service account.
pub data: Option<AuditLogServiceAccountCreatedData>,
}
/// The payload used to create the service account.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogServiceAccountCreatedData {
/// The role of the service account. Is either `owner` or `member`.
pub role: String,
}
/// The details for events with the type `service_account.updated`.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogServiceAccountUpdated {
/// The service account ID.
pub id: String,
/// The payload used to updated the service account.
pub changes_requested: Option<AuditLogServiceAccountUpdatedChangesRequested>,
}
/// The payload used to updated the service account.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogServiceAccountUpdatedChangesRequested {
/// The role of the service account. Is either `owner` or `member`.
pub role: String,
}
/// The details for events with the type `service_account.deleted`.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogServiceAccountDeleted {
/// The service account ID.
pub id: String,
}
/// The details for events with the type `user.added`.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogUserAdded {
/// The user ID.
pub id: String,
/// The payload used to add the user to the project.
pub data: Option<AuditLogUserAddedData>,
}
/// The payload used to add the user to the project.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogUserAddedData {
/// The role of the user. Is either `owner` or `member`.
pub role: String,
}
/// The details for events with the type `user.updated`.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogUserUpdated {
/// The project ID.
pub id: String,
/// The payload used to update the user.
pub changes_requested: Option<AuditLogUserUpdatedChangesRequested>,
}
/// The payload used to update the user.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogUserUpdatedChangesRequested {
/// The role of the user. Is either `owner` or `member`.
pub role: String,
}
/// The details for events with the type `user.deleted`.
#[derive(Debug, Serialize, Deserialize)]
pub struct AuditLogUserDeleted {
/// The user ID.
pub id: String,
}