Struct google_serviceregistryalpha::api::Endpoint[][src]

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

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

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.

creation_timestamp: Option<String>

[Output Only] Creation timestamp in RFC3339 text format.

description: Option<String>

An optional user-provided description of the endpoint.

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.

id: Option<String>

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

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.

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.

state: Option<String>

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

visibility: Option<EndpointEndpointVisibility>

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

Trait Implementations

impl Clone for Endpoint[src]

impl Debug for Endpoint[src]

impl Default for Endpoint[src]

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

impl RequestValue for Endpoint[src]

impl Resource for Endpoint[src]

impl ResponseResult for Endpoint[src]

impl Serialize for Endpoint[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.