[][src]Struct google_cloudresourcemanager1::Organization

pub struct Organization {
    pub owner: Option<OrganizationOwner>,
    pub creation_time: Option<String>,
    pub display_name: Option<String>,
    pub lifecycle_state: Option<String>,
    pub name: Option<String>,
}

The root node in the resource hierarchy to which a particular entity's (e.g., company) resources belong.

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

owner: Option<OrganizationOwner>

The owner of this Organization. The owner should be specified on creation. Once set, it cannot be changed. This field is required.

creation_time: Option<String>

Timestamp when the Organization was created. Assigned by the server. @OutputOnly

display_name: Option<String>

A human-readable string that refers to the Organization in the GCP Console UI. This string is set by the server and cannot be changed. The string will be set to the primary domain (for example, "google.com") of the G Suite customer that owns the organization. @OutputOnly

lifecycle_state: Option<String>

The organization's current lifecycle state. Assigned by the server. @OutputOnly

name: Option<String>

Output Only. The resource name of the organization. This is the organization's relative path in the API. Its format is "organizations/[organization_id]". For example, "organizations/1234".

Trait Implementations

impl Resource for Organization[src]

impl ResponseResult for Organization[src]

impl Default for Organization[src]

impl Clone for Organization[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Organization[src]

impl Serialize for Organization[src]

impl<'de> Deserialize<'de> for Organization[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]