pub struct CustomConnector {
pub active_connector_versions: Option<Vec<String>>,
pub all_connector_versions: Option<Vec<String>>,
pub create_time: Option<DateTime<Utc>>,
pub custom_connector_type: Option<String>,
pub description: Option<String>,
pub display_name: Option<String>,
pub labels: Option<HashMap<String, String>>,
pub logo: Option<String>,
pub name: Option<String>,
pub update_time: Option<DateTime<Utc>>,
}Expand description
CustomConnector represents the custom connector defined by the customer as part of byoc.
§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§
§active_connector_versions: Option<Vec<String>>Output only. Active connector versions.
all_connector_versions: Option<Vec<String>>Output only. All connector versions.
create_time: Option<DateTime<Utc>>Output only. Created time.
custom_connector_type: Option<String>Required. Type of the custom connector.
description: Option<String>Optional. Description of the resource.
display_name: Option<String>Optional. Display name.
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
logo: Option<String>Optional. Logo of the resource.
name: Option<String>Identifier. Resource name of the CustomConnector. Format: projects/{project}/locations/{location}/customConnectors/{connector}
update_time: Option<DateTime<Utc>>Output only. Updated time.
Trait Implementations§
Source§impl Clone for CustomConnector
impl Clone for CustomConnector
Source§fn clone(&self) -> CustomConnector
fn clone(&self) -> CustomConnector
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for CustomConnector
impl Debug for CustomConnector
Source§impl Default for CustomConnector
impl Default for CustomConnector
Source§fn default() -> CustomConnector
fn default() -> CustomConnector
Source§impl<'de> Deserialize<'de> for CustomConnector
impl<'de> Deserialize<'de> for CustomConnector
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 CustomConnector
impl Serialize for CustomConnector
impl RequestValue for CustomConnector
impl ResponseResult for CustomConnector
Auto Trait Implementations§
impl Freeze for CustomConnector
impl RefUnwindSafe for CustomConnector
impl Send for CustomConnector
impl Sync for CustomConnector
impl Unpin for CustomConnector
impl UnwindSafe for CustomConnector
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