[][src]Struct google_serviceregistryalpha::Endpoint

pub struct Endpoint {
    pub description: Option<String>,
    pub address: Option<String>,
    pub visibility: Option<EndpointEndpointVisibility>,
    pub id: Option<String>,
    pub state: Option<String>,
    pub fingerprint: Option<String>,
    pub creation_timestamp: Option<String>,
    pub port: Option<i32>,
    pub self_link: Option<String>,
    pub name: Option<String>,
}

There is no detailed description.

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

description: Option<String>

An optional user-provided description of the endpoint.

address: Option<String>

A user-provided address of the service represented by this endpoint. This can be an IPv4 or IPv6 address, or a hostname.

visibility: Option<EndpointEndpointVisibility>

The DNS Integration configuration for this endpoint. This must be a list of fully-qualified URLs to Compute Engine networks.

id: Option<String>

[Output Only] Unique identifier for the resource; defined by the server.

state: Option<String>

[Output Only] The current state of the endpoint, as determined by the system.

fingerprint: Option<String>

Supply the fingerprint value for update requests. The fingerprint value is generated by the server and ensures optimistic concurrency (so that only one update can be performed at a time). The fingerprint changes after each update.

creation_timestamp: Option<String>

[Output Only] Creation timestamp in RFC3339 text format.

port: Option<i32>

An optional user-provided port of the service represented by this endpoint.

self_link: Option<String>

[Output Only] Self link for the endpoint.

name: Option<String>

A user-provided name of the endpoint, which must be unique within the project. The name must comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z? 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.

Trait Implementations

impl Resource for Endpoint[src]

impl ResponseResult for Endpoint[src]

impl RequestValue for Endpoint[src]

impl Default for Endpoint[src]

impl Clone for Endpoint[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Endpoint[src]

impl Serialize for Endpoint[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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