[][src]Struct google_datafusion1_beta1::Instance

pub struct Instance {
    pub update_time: Option<String>,
    pub description: Option<String>,
    pub private_instance: Option<bool>,
    pub labels: Option<HashMap<String, String>>,
    pub enable_stackdriver_logging: Option<bool>,
    pub state_message: Option<String>,
    pub create_time: Option<String>,
    pub display_name: Option<String>,
    pub name: Option<String>,
    pub zone: Option<String>,
    pub enable_stackdriver_monitoring: Option<bool>,
    pub service_account: Option<String>,
    pub network_config: Option<NetworkConfig>,
    pub service_endpoint: Option<String>,
    pub state: Option<String>,
    pub version: Option<String>,
    pub type_: Option<String>,
    pub options: Option<HashMap<String, String>>,
}

Represents a Data Fusion instance.

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

update_time: Option<String>

Output only. The time the instance was last updated.

description: Option<String>

An optional description of this instance.

private_instance: Option<bool>

Specifies whether the Data Fusion instance should be private. If set to true, all Data Fusion nodes will have private IP addresses and will not be able to access the public internet.

labels: Option<HashMap<String, String>>

The resource labels for instance to use to annotate any related underlying resources such as GCE VMs. The character '=' is not allowed to be used within the labels.

enable_stackdriver_logging: Option<bool>

Option to enable Stackdriver Logging.

state_message: Option<String>

Output only. Additional information about the current state of this Data Fusion instance if available.

create_time: Option<String>

Output only. The time the instance was created.

display_name: Option<String>

Display name for an instance.

name: Option<String>

Output only. The name of this instance is in the form of projects/{project}/locations/{location}/instances/{instance}.

zone: Option<String>

Name of the zone in which the Data Fusion instance will be created.

enable_stackdriver_monitoring: Option<bool>

Option to enable Stackdriver Monitoring.

service_account: Option<String>

Output only. Service account which will be used to access resources in the customer project."

network_config: Option<NetworkConfig>

Network configuration options. These are required when a private Data Fusion instance is to be created.

service_endpoint: Option<String>

Output only. Endpoint on which the Data Fusion UI and REST APIs are accessible.

state: Option<String>

Output only. The current state of this Data Fusion instance.

version: Option<String>

Output only. Current version of the Data Fusion.

type_: Option<String>

Required. Instance type.

options: Option<HashMap<String, String>>

Map of additional options used to configure the behavior of Data Fusion instance.

Trait Implementations

impl ResponseResult for Instance[src]

impl RequestValue for Instance[src]

impl Default for Instance[src]

impl Clone for Instance[src]

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

Performs copy-assignment from source. Read more

impl Debug for Instance[src]

impl Serialize for Instance[src]

impl<'de> Deserialize<'de> for Instance[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]