/*
* Hanzo Cloud API
*
* The Hanzo Cloud API as a customer calls it: every operation under /v1/ except the operator's admin product, relay routes, legacy spellings and capabilities still reached by flag. Tagged by product: the first path segment after /v1/.
*
* The version of the OpenAPI document: v1
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct IndexIn {
/// Files is the full set of files to index. Required and non-empty; max 20000 files, 1 MiB per file and 1 GiB in total. Unchanged files are skipped by content hash, so re-sending the whole tree is cheap.
#[serde(rename = "files", skip_serializing_if = "Option::is_none")]
pub files: Option<Vec<models::FileInput>>,
/// Prune deletes indexed files that are NOT in this request — which makes the call a full sync of the repo rather than an upsert. Only pass it when Files is the complete tree.
#[serde(rename = "prune", skip_serializing_if = "Option::is_none")]
pub prune: Option<bool>,
/// Repo is the repository label to index under. Required, max 200 bytes. It is a stored column value, not a filesystem path.
#[serde(rename = "repo", skip_serializing_if = "Option::is_none")]
pub repo: Option<String>,
}
impl IndexIn {
pub fn new() -> IndexIn {
IndexIn {
files: None,
prune: None,
repo: None,
}
}
}