[][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 api_endpoint: Option<String>,
    pub accelerators: Option<Vec<Accelerator>>,
    pub gcs_bucket: Option<String>,
    pub create_time: Option<String>,
    pub state_message: 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 available_version: Option<Vec<Version>>,
    pub type_: Option<String>,
    pub options: Option<HashMap<String, String>>,
}

Represents a Data Fusion instance. Next available ID: 23

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>

Optional. 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 Compute Engine VMs. The character '=' is not allowed to be used within the labels.

enable_stackdriver_logging: Option<bool>

Option to enable Stackdriver Logging.

api_endpoint: Option<String>

Output only. Endpoint on which the REST APIs is accessible.

accelerators: Option<Vec<Accelerator>>

List of accelerators enabled for this CDF instance.

gcs_bucket: Option<String>

Output only. Cloud Storage bucket generated by Data Fusion in the customer project.

create_time: Option<String>

Output only. The time the instance was created.

state_message: Option<String>

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

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 is accessible.

state: Option<String>

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

version: Option<String>

Current version of Data Fusion.

available_version: Option<Vec<Version>>

Available versions that the instance can be upgraded to using UpdateInstanceRequest.

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 Clone for Instance[src]

impl Debug for Instance[src]

impl Default for Instance[src]

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

impl RequestValue for Instance[src]

impl ResponseResult for Instance[src]

impl Serialize for Instance[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, 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.

impl<T> Typeable for T where
    T: Any