pub struct RedisClusterInfo {
pub discovery_endpoint_ip_address: Option<String>,
pub display_name: Option<String>,
pub location: Option<String>,
pub network_uri: Option<String>,
pub secondary_endpoint_ip_address: Option<String>,
pub uri: Option<String>,
}Expand description
For display only. Metadata associated with a Redis Cluster.
This type is not used in any activity, and only used as part of another schema.
Fields§
§discovery_endpoint_ip_address: Option<String>Discovery endpoint IP address of a Redis Cluster.
display_name: Option<String>Name of a Redis Cluster.
location: Option<String>Name of the region in which the Redis Cluster is defined. For example, “us-central1”.
network_uri: Option<String>URI of the network containing the Redis Cluster endpoints in format “projects/{project_id}/global/networks/{network_id}”.
secondary_endpoint_ip_address: Option<String>Secondary endpoint IP address of a Redis Cluster.
uri: Option<String>URI of a Redis Cluster in format “projects/{project_id}/locations/{location}/clusters/{cluster_id}”
Trait Implementations§
Source§impl Clone for RedisClusterInfo
impl Clone for RedisClusterInfo
Source§fn clone(&self) -> RedisClusterInfo
fn clone(&self) -> RedisClusterInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RedisClusterInfo
impl Debug for RedisClusterInfo
Source§impl Default for RedisClusterInfo
impl Default for RedisClusterInfo
Source§fn default() -> RedisClusterInfo
fn default() -> RedisClusterInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RedisClusterInfo
impl<'de> Deserialize<'de> for RedisClusterInfo
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 RedisClusterInfo
Auto Trait Implementations§
impl Freeze for RedisClusterInfo
impl RefUnwindSafe for RedisClusterInfo
impl Send for RedisClusterInfo
impl Sync for RedisClusterInfo
impl Unpin for RedisClusterInfo
impl UnsafeUnpin for RedisClusterInfo
impl UnwindSafe for RedisClusterInfo
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