pub struct ManagedZone {
pub create_time: Option<DateTime<Utc>>,
pub description: Option<String>,
pub dns: Option<String>,
pub labels: Option<HashMap<String, String>>,
pub name: Option<String>,
pub target_project: Option<String>,
pub target_vpc: Option<String>,
pub update_time: Option<DateTime<Utc>>,
}Expand description
represents the Connector’s Managed Zone resource
§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§
§create_time: Option<DateTime<Utc>>Output only. Created time.
description: Option<String>Optional. Description of the resource.
dns: Option<String>Required. DNS Name of the resource
labels: Option<HashMap<String, String>>Optional. Resource labels to represent user-provided metadata. Refer to cloud documentation on labels for more details. https://cloud.google.com/compute/docs/labeling-resources
name: Option<String>Output only. Resource name of the Managed Zone. Format: projects/{project}/locations/global/managedZones/{managed_zone}
target_project: Option<String>Required. The name of the Target Project
target_vpc: Option<String>Required. The name of the Target Project VPC Network
update_time: Option<DateTime<Utc>>Output only. Updated time.
Trait Implementations§
Source§impl Clone for ManagedZone
impl Clone for ManagedZone
Source§fn clone(&self) -> ManagedZone
fn clone(&self) -> ManagedZone
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for ManagedZone
impl Debug for ManagedZone
Source§impl Default for ManagedZone
impl Default for ManagedZone
Source§fn default() -> ManagedZone
fn default() -> ManagedZone
Source§impl<'de> Deserialize<'de> for ManagedZone
impl<'de> Deserialize<'de> for ManagedZone
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 ManagedZone
impl Serialize for ManagedZone
impl RequestValue for ManagedZone
impl ResponseResult for ManagedZone
Auto Trait Implementations§
impl Freeze for ManagedZone
impl RefUnwindSafe for ManagedZone
impl Send for ManagedZone
impl Sync for ManagedZone
impl Unpin for ManagedZone
impl UnwindSafe for ManagedZone
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