Skip to main content

hanzo_client/models/
create_req.rs

1/*
2 * Hanzo Cloud API
3 *
4 * 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/.
5 *
6 * The version of the OpenAPI document: v1
7 * 
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct CreateReq {
16    /// Description is a free-form blurb, max 4KiB.
17    #[serde(rename = "description", skip_serializing_if = "Option::is_none")]
18    pub description: Option<String>,
19    /// Name is the repo's handle, unique within the scope, and the last segment of both clone URLs. Must match ^[A-Za-z0-9][A-Za-z0-9._-]{0,63}$; a trailing \".git\" is stripped first. Required.
20    #[serde(rename = "name", skip_serializing_if = "Option::is_none")]
21    pub name: Option<String>,
22    /// Project narrows the repo to a sub-scope of the org. Omit it to use the caller's own X-Project-Id scope; it can never widen past the caller's org.
23    #[serde(rename = "project", skip_serializing_if = "Option::is_none")]
24    pub project: Option<String>,
25    /// Public grants ANONYMOUS read (fetch) only; push and the whole control plane stay org-authed. Defaults to false.
26    #[serde(rename = "public", skip_serializing_if = "Option::is_none")]
27    pub public: Option<bool>,
28}
29
30impl CreateReq {
31    pub fn new() -> CreateReq {
32        CreateReq {
33            description: None,
34            name: None,
35            project: None,
36            public: None,
37        }
38    }
39}
40