#[non_exhaustive]pub struct TargetInstance {
pub creation_timestamp: Option<String>,
pub description: Option<String>,
pub id: Option<u64>,
pub instance: Option<String>,
pub kind: Option<String>,
pub name: Option<String>,
pub nat_policy: Option<NatPolicy>,
pub network: Option<String>,
pub security_policy: Option<String>,
pub self_link: Option<String>,
pub zone: Option<String>,
/* private fields */
}target-instances only.Expand description
Represents a Target Instance resource.
You can use a target instance to handle traffic for one or more forwarding rules, which is ideal for forwarding protocol traffic that is managed by a single source. For example, ESP, AH, TCP, or UDP. For more information, readTarget instances.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.creation_timestamp: Option<String>Output only. [Output Only] Creation timestamp inRFC3339 text format.
description: Option<String>An optional description of this resource. Provide this property when you create the resource.
id: Option<u64>[Output Only] The unique identifier for the resource. This identifier is defined by the server.
instance: Option<String>A URL to the virtual machine instance that handles traffic for this target instance. When creating a target instance, you can provide the fully-qualified URL or a valid partial URL to the desired virtual machine. For example, the following are all valid URLs:
- https://www.googleapis.com/compute/v1/projects/project/zones/zone/instances/instance
- projects/project/zones/zone/instances/instance
- zones/zone/instances/instance
kind: Option<String>Output only. [Output Only] The type of the resource. Alwayscompute#targetInstance for target instances.
name: Option<String>Name of the resource. Provided by the client when the resource is created.
The name must be 1-63 characters long, and comply withRFC1035.
Specifically, the name must be 1-63 characters long and match the regular
expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first
character must be a lowercase letter, and all following characters must
be a dash, lowercase letter, or digit, except the last character, which
cannot be a dash.
nat_policy: Option<NatPolicy>Must have a value of NO_NAT. Protocol forwarding delivers packets while preserving the destination IP address of the forwarding rule referencing the target instance.
network: Option<String>The URL of the network this target instance uses to forward traffic. If not specified, the traffic will be forwarded to the network that the default network interface belongs to.
security_policy: Option<String>[Output Only] The resource URL for the security policy associated with this target instance.
self_link: Option<String>[Output Only] Server-defined URL for the resource.
zone: Option<String>Output only. [Output Only] URL of the zone where the target instance resides. You must specify this field as part of the HTTP request URL. It is not settable as a field in the request body.
Implementations§
Source§impl TargetInstance
impl TargetInstance
pub fn new() -> Self
Sourcepub fn set_creation_timestamp<T>(self, v: T) -> Self
pub fn set_creation_timestamp<T>(self, v: T) -> Self
Sets the value of creation_timestamp.
§Example
let x = TargetInstance::new().set_creation_timestamp("example");Sourcepub fn set_or_clear_creation_timestamp<T>(self, v: Option<T>) -> Self
pub fn set_or_clear_creation_timestamp<T>(self, v: Option<T>) -> Self
Sets or clears the value of creation_timestamp.
§Example
let x = TargetInstance::new().set_or_clear_creation_timestamp(Some("example"));
let x = TargetInstance::new().set_or_clear_creation_timestamp(None::<String>);Sourcepub fn set_description<T>(self, v: T) -> Self
pub fn set_description<T>(self, v: T) -> Self
Sourcepub fn set_or_clear_description<T>(self, v: Option<T>) -> Self
pub fn set_or_clear_description<T>(self, v: Option<T>) -> Self
Sets or clears the value of description.
§Example
let x = TargetInstance::new().set_or_clear_description(Some("example"));
let x = TargetInstance::new().set_or_clear_description(None::<String>);Sourcepub fn set_or_clear_id<T>(self, v: Option<T>) -> Self
pub fn set_or_clear_id<T>(self, v: Option<T>) -> Self
Sourcepub fn set_instance<T>(self, v: T) -> Self
pub fn set_instance<T>(self, v: T) -> Self
Sourcepub fn set_or_clear_instance<T>(self, v: Option<T>) -> Self
pub fn set_or_clear_instance<T>(self, v: Option<T>) -> Self
Sourcepub fn set_or_clear_kind<T>(self, v: Option<T>) -> Self
pub fn set_or_clear_kind<T>(self, v: Option<T>) -> Self
Sourcepub fn set_or_clear_name<T>(self, v: Option<T>) -> Self
pub fn set_or_clear_name<T>(self, v: Option<T>) -> Self
Sourcepub fn set_nat_policy<T>(self, v: T) -> Self
pub fn set_nat_policy<T>(self, v: T) -> Self
Sets the value of nat_policy.
§Example
use google_cloud_compute_v1::model::target_instance::NatPolicy;
let x0 = TargetInstance::new().set_nat_policy(NatPolicy::NoNat);Sourcepub fn set_or_clear_nat_policy<T>(self, v: Option<T>) -> Self
pub fn set_or_clear_nat_policy<T>(self, v: Option<T>) -> Self
Sets or clears the value of nat_policy.
§Example
use google_cloud_compute_v1::model::target_instance::NatPolicy;
let x0 = TargetInstance::new().set_or_clear_nat_policy(Some(NatPolicy::NoNat));
let x_none = TargetInstance::new().set_or_clear_nat_policy(None::<NatPolicy>);Sourcepub fn set_network<T>(self, v: T) -> Self
pub fn set_network<T>(self, v: T) -> Self
Sourcepub fn set_or_clear_network<T>(self, v: Option<T>) -> Self
pub fn set_or_clear_network<T>(self, v: Option<T>) -> Self
Sourcepub fn set_security_policy<T>(self, v: T) -> Self
pub fn set_security_policy<T>(self, v: T) -> Self
Sets the value of security_policy.
§Example
let x = TargetInstance::new().set_security_policy("example");Sourcepub fn set_or_clear_security_policy<T>(self, v: Option<T>) -> Self
pub fn set_or_clear_security_policy<T>(self, v: Option<T>) -> Self
Sets or clears the value of security_policy.
§Example
let x = TargetInstance::new().set_or_clear_security_policy(Some("example"));
let x = TargetInstance::new().set_or_clear_security_policy(None::<String>);Sourcepub fn set_self_link<T>(self, v: T) -> Self
pub fn set_self_link<T>(self, v: T) -> Self
Sourcepub fn set_or_clear_self_link<T>(self, v: Option<T>) -> Self
pub fn set_or_clear_self_link<T>(self, v: Option<T>) -> Self
Trait Implementations§
Source§impl Clone for TargetInstance
impl Clone for TargetInstance
Source§fn clone(&self) -> TargetInstance
fn clone(&self) -> TargetInstance
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more