pub struct PublicDelegatedPrefix {Show 16 fields
pub allocatable_prefix_length: Option<i32>,
pub byoip_api_version: Option<String>,
pub creation_timestamp: Option<String>,
pub description: Option<String>,
pub fingerprint: Option<Vec<u8>>,
pub id: Option<u64>,
pub ip_cidr_range: Option<String>,
pub is_live_migration: Option<bool>,
pub kind: Option<String>,
pub mode: Option<String>,
pub name: Option<String>,
pub parent_prefix: Option<String>,
pub public_delegated_sub_prefixs: Option<Vec<PublicDelegatedPrefixPublicDelegatedSubPrefix>>,
pub region: Option<String>,
pub self_link: Option<String>,
pub status: Option<String>,
}
Expand description
A PublicDelegatedPrefix resource represents an IP block within a PublicAdvertisedPrefix that is configured within a single cloud scope (global or region). IPs in the block can be allocated to resources within that scope. Public delegated prefixes may be further broken up into smaller IP blocks in the same scope as the parent block.
§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).
- get global public delegated prefixes (response)
- insert global public delegated prefixes (request)
- patch global public delegated prefixes (request)
- get public delegated prefixes (response)
- insert public delegated prefixes (request)
- patch public delegated prefixes (request)
Fields§
§allocatable_prefix_length: Option<i32>
The allocatable prefix length supported by this public delegated prefix. This field is optional and cannot be set for prefixes in DELEGATION mode. It cannot be set for IPv4 prefixes either, and it always defaults to 32.
byoip_api_version: Option<String>
[Output Only] The version of BYOIP API.
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.
fingerprint: Option<Vec<u8>>
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 PublicDelegatedPrefix. An up-to-date fingerprint must be provided in order to update the PublicDelegatedPrefix, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve a PublicDelegatedPrefix.
id: Option<u64>
[Output Only] The unique identifier for the resource type. The server generates this identifier.
ip_cidr_range: Option<String>
The IP address range, in CIDR format, represented by this public delegated prefix.
is_live_migration: Option<bool>
If true, the prefix will be live migrated.
kind: Option<String>
[Output Only] Type of the resource. Always compute#publicDelegatedPrefix for public delegated prefixes.
mode: Option<String>
The public delegated prefix mode for IPv6 only.
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.
parent_prefix: Option<String>
The URL of parent prefix. Either PublicAdvertisedPrefix or PublicDelegatedPrefix.
public_delegated_sub_prefixs: Option<Vec<PublicDelegatedPrefixPublicDelegatedSubPrefix>>
The list of sub public delegated prefixes that exist for this public delegated prefix.
region: Option<String>
[Output Only] URL of the region where the public delegated prefix resides. This field applies only to the region resource. You must specify this field as part of the HTTP request URL. It is not settable as a field in the request body.
self_link: Option<String>
[Output Only] Server-defined URL for the resource.
status: Option<String>
[Output Only] The status of the public delegated prefix, which can be one of following values: - INITIALIZING
The public delegated prefix is being initialized and addresses cannot be created yet. - READY_TO_ANNOUNCE
The public delegated prefix is a live migration prefix and is active. - ANNOUNCED
The public delegated prefix is active. - DELETING
The public delegated prefix is being deprovsioned.
Trait Implementations§
Source§impl Clone for PublicDelegatedPrefix
impl Clone for PublicDelegatedPrefix
Source§fn clone(&self) -> PublicDelegatedPrefix
fn clone(&self) -> PublicDelegatedPrefix
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for PublicDelegatedPrefix
impl Debug for PublicDelegatedPrefix
Source§impl Default for PublicDelegatedPrefix
impl Default for PublicDelegatedPrefix
Source§fn default() -> PublicDelegatedPrefix
fn default() -> PublicDelegatedPrefix
Source§impl<'de> Deserialize<'de> for PublicDelegatedPrefix
impl<'de> Deserialize<'de> for PublicDelegatedPrefix
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 PublicDelegatedPrefix
impl Serialize for PublicDelegatedPrefix
impl RequestValue for PublicDelegatedPrefix
impl ResponseResult for PublicDelegatedPrefix
Auto Trait Implementations§
impl Freeze for PublicDelegatedPrefix
impl RefUnwindSafe for PublicDelegatedPrefix
impl Send for PublicDelegatedPrefix
impl Sync for PublicDelegatedPrefix
impl Unpin for PublicDelegatedPrefix
impl UnwindSafe for PublicDelegatedPrefix
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