Struct google_cloudresourcemanager3::api::Organization[][src]

pub struct Organization {
    pub create_time: Option<String>,
    pub delete_time: Option<String>,
    pub directory_customer_id: Option<String>,
    pub display_name: Option<String>,
    pub etag: Option<String>,
    pub name: Option<String>,
    pub state: Option<String>,
    pub update_time: Option<String>,
}

The root node in the resource hierarchy to which a particular entity’s (a company, for example) 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

create_time: Option<String>

Output only. Timestamp when the Organization was created.

delete_time: Option<String>

Output only. Timestamp when the Organization was requested for deletion.

directory_customer_id: Option<String>

Immutable. The G Suite / Workspace customer id used in the Directory API.

display_name: Option<String>

Output only. A human-readable string that refers to the organization in the Google Cloud Console. 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 Google Workspace customer that owns the organization.

etag: Option<String>

Output only. A checksum computed by the server based on the current value of the Organization resource. This may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.

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”.

state: Option<String>

Output only. The organization’s current lifecycle state.

update_time: Option<String>

Output only. Timestamp when the Organization was last modified.

Trait Implementations

impl Clone for Organization[src]

impl Debug for Organization[src]

impl Default for Organization[src]

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

impl Resource for Organization[src]

impl ResponseResult for Organization[src]

impl Serialize for Organization[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> Instrument for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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.