pub struct GoogleCloudApigeeV1TargetServerConfig {
pub enabled: Option<bool>,
pub host: Option<String>,
pub name: Option<String>,
pub port: Option<i32>,
pub protocol: Option<String>,
pub tls_info: Option<GoogleCloudApigeeV1TlsInfoConfig>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§enabled: Option<bool>Whether the target server is enabled. An empty/omitted value for this field should be interpreted as true.
host: Option<String>Host name of the target server.
name: Option<String>Target server revision name in the following format: organizations/{org}/environments/{env}/targetservers/{targetserver}/revisions/{rev}
port: Option<i32>Port number for the target server.
protocol: Option<String>The protocol used by this target server.
tls_info: Option<GoogleCloudApigeeV1TlsInfoConfig>TLS settings for the target server.
Trait Implementations§
Source§impl Clone for GoogleCloudApigeeV1TargetServerConfig
impl Clone for GoogleCloudApigeeV1TargetServerConfig
Source§fn clone(&self) -> GoogleCloudApigeeV1TargetServerConfig
fn clone(&self) -> GoogleCloudApigeeV1TargetServerConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for GoogleCloudApigeeV1TargetServerConfig
impl Default for GoogleCloudApigeeV1TargetServerConfig
Source§fn default() -> GoogleCloudApigeeV1TargetServerConfig
fn default() -> GoogleCloudApigeeV1TargetServerConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleCloudApigeeV1TargetServerConfig
impl<'de> Deserialize<'de> for GoogleCloudApigeeV1TargetServerConfig
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>,
Deserialize this value from the given Serde deserializer. Read more
impl Part for GoogleCloudApigeeV1TargetServerConfig
Auto Trait Implementations§
impl Freeze for GoogleCloudApigeeV1TargetServerConfig
impl RefUnwindSafe for GoogleCloudApigeeV1TargetServerConfig
impl Send for GoogleCloudApigeeV1TargetServerConfig
impl Sync for GoogleCloudApigeeV1TargetServerConfig
impl Unpin for GoogleCloudApigeeV1TargetServerConfig
impl UnwindSafe for GoogleCloudApigeeV1TargetServerConfig
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
Mutably borrows from an owned value. Read more