pub struct Instance {
Show 34 fields pub accelerators: Option<Vec<Accelerator>>, pub api_endpoint: Option<String>, pub available_version: Option<Vec<Version>>, pub create_time: Option<DateTime<Utc>>, pub crypto_key_config: Option<CryptoKeyConfig>, pub dataplex_data_lineage_integration_enabled: Option<bool>, pub dataproc_service_account: Option<String>, pub description: Option<String>, pub disabled_reason: Option<Vec<String>>, pub display_name: Option<String>, pub enable_rbac: Option<bool>, pub enable_stackdriver_logging: Option<bool>, pub enable_stackdriver_monitoring: Option<bool>, pub enable_zone_separation: Option<bool>, pub event_publish_config: Option<EventPublishConfig>, 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 patch_revision: Option<String>, pub private_instance: Option<bool>, pub satisfies_pzs: 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<DateTime<Utc>>, pub version: Option<String>, pub workforce_identity_service_endpoint: Option<String>, pub zone: Option<String>,
}
Expand description

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

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

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

§create_time: Option<DateTime<Utc>>

Output only. The time the instance was created.

§crypto_key_config: Option<CryptoKeyConfig>

The crypto key configuration. This field is used by the Customer-Managed Encryption Keys (CMEK) feature.

§dataplex_data_lineage_integration_enabled: Option<bool>

Optional. Option to enable the Dataplex Lineage Integration feature.

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

§disabled_reason: Option<Vec<String>>

Output only. If the instance state is DISABLED, the reason for disabling the 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.

§enable_zone_separation: Option<bool>

Option to enable granular zone separation.

§event_publish_config: Option<EventPublishConfig>

Option to enable and pass metadata for event publishing.

§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 Compute Engine 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.

§patch_revision: Option<String>

Optional. Current patch revision of the Data Fusion.

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

§satisfies_pzs: Option<bool>

Output only. Reserved for future use.

§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<DateTime<Utc>>

Output only. The time the instance was last updated.

§version: Option<String>

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

§workforce_identity_service_endpoint: Option<String>

Output only. Endpoint on which the Data Fusion UI is accessible to third-party users

§zone: Option<String>

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

Trait Implementations§

source§

impl Clone for Instance

source§

fn clone(&self) -> Instance

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Instance

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Instance

source§

fn default() -> Instance

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for Instance

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Serialize for Instance

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl RequestValue for Instance

source§

impl ResponseResult for Instance

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

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