Struct google_cloudresourcemanager2::Folder[][src]

pub struct Folder {
    pub name: Option<String>,
    pub display_name: Option<String>,
    pub create_time: Option<String>,
    pub parent: Option<String>,
    pub lifecycle_state: Option<String>,
}

A Folder in an Organization's resource hierarchy, used to organize that Organization's resources.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

Output only. The resource name of the Folder. Its format is folders/{folder_id}, for example: "folders/1234".

The folder’s display name. A folder’s display name must be unique amongst its siblings, e.g. no two folders with the same parent can share the same display name. The display name must start and end with a letter or digit, may contain letters, digits, spaces, hyphens and underscores and can be no longer than 30 characters. This is captured by the regular expression: [\p{L}\p{N}]([\p{L}\p{N}_- ]{0,28}[\p{L}\p{N}])?.

Output only. Timestamp when the Folder was created. Assigned by the server.

The Folder’s parent's resource name. Updates to the folder's parent must be performed via MoveFolder.

Output only. The lifecycle state of the folder. Updates to the lifecycle_state must be performed via DeleteFolder and UndeleteFolder.

Trait Implementations

impl Default for Folder
[src]

Returns the "default value" for a type. Read more

impl Clone for Folder
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Folder
[src]

Formats the value using the given formatter. Read more

impl RequestValue for Folder
[src]

impl Resource for Folder
[src]

impl ResponseResult for Folder
[src]

Auto Trait Implementations

impl Send for Folder

impl Sync for Folder