Type Alias entity_Project

entity_Project: {
    creationTimestamp?: string;
    description?: string;
    displayName?: string;
    id?: number;
    labels?: string[];
    name?: string;
    organization?: entity_Organization;
    owners?: string[];
    path?: string;
    source?: entity_Source;
    updateTimestamp?: string;
}

Type declaration

  • OptionalcreationTimestamp?: string

    CreationTimestamp is the timestamp of the created for the project.

  • Optionaldescription?: string

    Description is a human-readable description of the project.

  • OptionaldisplayName?: string

    DisplayName is the human-readable display name.

  • Optionalid?: number

    ID is the id of the project.

  • Optionallabels?: string[]

    Labels are custom labels associated with the project.

  • Optionalname?: string

    Name is the name of the project.

  • Optionalorganization?: entity_Organization

    Organization is the configuration source associated with the project.

  • Optionalowners?: string[]

    Owners is a list of owners for the project.

  • Optionalpath?: string

    Path is the relative path of the project within the sources.

  • Optionalsource?: entity_Source

    Source is the configuration source associated with the project.

  • OptionalupdateTimestamp?: string

    UpdateTimestamp is the timestamp of the updated for the project.