Struct google_datafusion1::api::Instance[][src]

pub struct Instance {
    pub accelerators: Option<Vec<Accelerator>>,
    pub api_endpoint: Option<String>,
    pub available_version: Option<Vec<Version>>,
    pub create_time: Option<String>,
    pub dataproc_service_account: Option<String>,
    pub description: Option<String>,
    pub display_name: Option<String>,
    pub enable_rbac: Option<bool>,
    pub enable_stackdriver_logging: Option<bool>,
    pub enable_stackdriver_monitoring: Option<bool>,
    pub gcs_bucket: Option<String>,
    pub labels: Option<HashMap<String, String>>,
    pub name: Option<String>,
    pub network_config: Option<NetworkConfig>,
    pub options: Option<HashMap<String, String>>,
    pub p4_service_account: Option<String>,
    pub private_instance: Option<bool>,
    pub service_account: Option<String>,
    pub service_endpoint: Option<String>,
    pub state: Option<String>,
    pub state_message: Option<String>,
    pub tenant_project_id: Option<String>,
    pub type_: Option<String>,
    pub update_time: Option<String>,
    pub version: Option<String>,
    pub zone: Option<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

accelerators: Option<Vec<Accelerator>>

List of accelerators enabled for this CDF instance.

api_endpoint: Option<String>

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

available_version: Option<Vec<Version>>

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

create_time: Option<String>

Output only. The time the instance was created.

dataproc_service_account: Option<String>

User-managed service account to set on Dataproc when Cloud Data Fusion creates Dataproc to run data processing pipelines. This allows users to have fine-grained access control on Dataproc’s accesses to cloud resources.

description: Option<String>

A description of this instance.

display_name: Option<String>

Display name for an instance.

enable_rbac: Option<bool>

Option to enable granular role-based access control.

enable_stackdriver_logging: Option<bool>

Option to enable Stackdriver Logging.

enable_stackdriver_monitoring: Option<bool>

Option to enable Stackdriver Monitoring.

gcs_bucket: Option<String>

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

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.

name: Option<String>

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

network_config: Option<NetworkConfig>

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

options: Option<HashMap<String, String>>

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

p4_service_account: Option<String>

Output only. P4 service account for the customer project.

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.

service_account: Option<String>

Output only. Deprecated. Use tenant_project_id instead to extract the tenant project ID.

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.

state_message: Option<String>

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

tenant_project_id: Option<String>

Output only. The name of the tenant project.

type_: Option<String>

Required. Instance type.

update_time: Option<String>

Output only. The time the instance was last updated.

version: Option<String>

Current version of the Data Fusion. Only specifiable in Update.

zone: Option<String>

Name of the zone in which the Data Fusion instance will be created. Only DEVELOPER instances use this field.

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