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<String>,
pub network: Option<String>,
pub security_policy: Option<String>,
pub self_link: Option<String>,
pub zone: Option<String>,
}
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, read Target instances.
§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).
- aggregated list target instances (none)
- delete target instances (none)
- get target instances (response)
- insert target instances (request)
- list target instances (none)
- set security policy target instances (none)
Fields§
§creation_timestamp: Option<String>
[Output Only] Creation timestamp in RFC3339 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] The type of the resource. Always compute#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 with RFC1035. 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<String>
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] 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.
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 moreSource§impl Debug for TargetInstance
impl Debug for TargetInstance
Source§impl Default for TargetInstance
impl Default for TargetInstance
Source§fn default() -> TargetInstance
fn default() -> TargetInstance
Source§impl<'de> Deserialize<'de> for TargetInstance
impl<'de> Deserialize<'de> for TargetInstance
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for TargetInstance
impl Serialize for TargetInstance
impl RequestValue for TargetInstance
impl Resource for TargetInstance
impl ResponseResult for TargetInstance
Auto Trait Implementations§
impl Freeze for TargetInstance
impl RefUnwindSafe for TargetInstance
impl Send for TargetInstance
impl Sync for TargetInstance
impl Unpin for TargetInstance
impl UnwindSafe for TargetInstance
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more