Struct google_api_proto::google::cloud::compute::v1::PublicAdvertisedPrefix
source · pub struct PublicAdvertisedPrefix {Show 14 fields
pub byoip_api_version: Option<String>,
pub creation_timestamp: Option<String>,
pub description: Option<String>,
pub dns_verification_ip: Option<String>,
pub fingerprint: Option<String>,
pub id: Option<u64>,
pub ip_cidr_range: Option<String>,
pub kind: Option<String>,
pub name: Option<String>,
pub pdp_scope: Option<String>,
pub public_delegated_prefixs: Vec<PublicAdvertisedPrefixPublicDelegatedPrefix>,
pub self_link: Option<String>,
pub shared_secret: Option<String>,
pub status: Option<String>,
}
Expand description
A public advertised prefix represents an aggregated IP prefix or netblock which customers bring to cloud. The IP prefix is a single unit of route advertisement and is announced globally to the internet.
Fields§
§byoip_api_version: Option<String>
[Output Only] The version of BYOIP API. Check the ByoipApiVersion enum for the list of possible values.
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.
dns_verification_ip: Option<String>
The address to be used for reverse DNS verification.
fingerprint: Option<String>
Fingerprint of this resource. A hash of the contents stored in this object. This field is used in optimistic locking. This field will be ignored when inserting a new PublicAdvertisedPrefix. An up-to-date fingerprint must be provided in order to update the PublicAdvertisedPrefix, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve a PublicAdvertisedPrefix.
id: Option<u64>
[Output Only] The unique identifier for the resource type. The server generates this identifier.
ip_cidr_range: Option<String>
The address range, in CIDR format, represented by this public advertised prefix.
kind: Option<String>
[Output Only] Type of the resource. Always compute#publicAdvertisedPrefix for public advertised prefixes.
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.
pdp_scope: Option<String>
Specifies how child public delegated prefix will be scoped. It could be one of following values: - REGIONAL
: The public delegated prefix is regional only. The provisioning will take a few minutes. - GLOBAL
: The public delegated prefix is global only. The provisioning will take ~4 weeks. - GLOBAL_AND_REGIONAL
[output only]: The public delegated prefixes is BYOIP V1 legacy prefix. This is output only value and no longer supported in BYOIP V2.
Check the PdpScope enum for the list of possible values.
public_delegated_prefixs: Vec<PublicAdvertisedPrefixPublicDelegatedPrefix>
[Output Only] The list of public delegated prefixes that exist for this public advertised prefix.
self_link: Option<String>
[Output Only] Server-defined URL for the resource.
[Output Only] The shared secret to be used for reverse DNS verification.
status: Option<String>
The status of the public advertised prefix. Possible values include: - INITIAL
: RPKI validation is complete. - PTR_CONFIGURED
: User has configured the PTR. - VALIDATED
: Reverse DNS lookup is successful. - REVERSE_DNS_LOOKUP_FAILED
: Reverse DNS lookup failed. - PREFIX_CONFIGURATION_IN_PROGRESS
: The prefix is being configured. - PREFIX_CONFIGURATION_COMPLETE
: The prefix is fully configured. - PREFIX_REMOVAL_IN_PROGRESS
: The prefix is being removed.
Check the Status enum for the list of possible values.
Implementations§
source§impl PublicAdvertisedPrefix
impl PublicAdvertisedPrefix
sourcepub fn creation_timestamp(&self) -> &str
pub fn creation_timestamp(&self) -> &str
Returns the value of creation_timestamp
, or the default value if creation_timestamp
is unset.
sourcepub fn ip_cidr_range(&self) -> &str
pub fn ip_cidr_range(&self) -> &str
Returns the value of ip_cidr_range
, or the default value if ip_cidr_range
is unset.
sourcepub fn byoip_api_version(&self) -> &str
pub fn byoip_api_version(&self) -> &str
Returns the value of byoip_api_version
, or the default value if byoip_api_version
is unset.
sourcepub fn status(&self) -> &str
pub fn status(&self) -> &str
Returns the value of status
, or the default value if status
is unset.
sourcepub fn fingerprint(&self) -> &str
pub fn fingerprint(&self) -> &str
Returns the value of fingerprint
, or the default value if fingerprint
is unset.
sourcepub fn dns_verification_ip(&self) -> &str
pub fn dns_verification_ip(&self) -> &str
Returns the value of dns_verification_ip
, or the default value if dns_verification_ip
is unset.
Returns the value of shared_secret
, or the default value if shared_secret
is unset.
sourcepub fn description(&self) -> &str
pub fn description(&self) -> &str
Returns the value of description
, or the default value if description
is unset.
Trait Implementations§
source§impl Clone for PublicAdvertisedPrefix
impl Clone for PublicAdvertisedPrefix
source§fn clone(&self) -> PublicAdvertisedPrefix
fn clone(&self) -> PublicAdvertisedPrefix
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PublicAdvertisedPrefix
impl Debug for PublicAdvertisedPrefix
source§impl Default for PublicAdvertisedPrefix
impl Default for PublicAdvertisedPrefix
source§impl Message for PublicAdvertisedPrefix
impl Message for PublicAdvertisedPrefix
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for PublicAdvertisedPrefix
impl PartialEq for PublicAdvertisedPrefix
source§fn eq(&self, other: &PublicAdvertisedPrefix) -> bool
fn eq(&self, other: &PublicAdvertisedPrefix) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PublicAdvertisedPrefix
Auto Trait Implementations§
impl Freeze for PublicAdvertisedPrefix
impl RefUnwindSafe for PublicAdvertisedPrefix
impl Send for PublicAdvertisedPrefix
impl Sync for PublicAdvertisedPrefix
impl Unpin for PublicAdvertisedPrefix
impl UnwindSafe for PublicAdvertisedPrefix
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request