pub struct ServiceConnectionMap {Show 13 fields
pub consumer_psc_configs: Option<Vec<ConsumerPscConfig>>,
pub consumer_psc_connections: Option<Vec<ConsumerPscConnection>>,
pub create_time: Option<DateTime<Utc>>,
pub description: Option<String>,
pub etag: Option<String>,
pub infrastructure: Option<String>,
pub labels: Option<HashMap<String, String>>,
pub name: Option<String>,
pub producer_psc_configs: Option<Vec<ProducerPscConfig>>,
pub service_class: Option<String>,
pub service_class_uri: Option<String>,
pub token: Option<String>,
pub update_time: Option<DateTime<Utc>>,
}Expand description
The ServiceConnectionMap resource. Next id: 15
§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§
§consumer_psc_configs: Option<Vec<ConsumerPscConfig>>The PSC configurations on consumer side.
consumer_psc_connections: Option<Vec<ConsumerPscConnection>>Output only. PSC connection details on consumer side.
create_time: Option<DateTime<Utc>>Output only. Time when the ServiceConnectionMap was created.
description: Option<String>A description of this resource.
etag: Option<String>Optional. The etag is computed by the server, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
infrastructure: Option<String>Output only. The infrastructure used for connections between consumers/producers.
labels: Option<HashMap<String, String>>User-defined labels.
name: Option<String>Immutable. The name of a ServiceConnectionMap. Format: projects/{project}/locations/{location}/serviceConnectionMaps/{service_connection_map} See: https://google.aip.dev/122#fields-representing-resource-names
producer_psc_configs: Option<Vec<ProducerPscConfig>>The PSC configurations on producer side.
service_class: Option<String>The service class identifier this ServiceConnectionMap is for. The user of ServiceConnectionMap create API needs to have networkconnecitivty.serviceclasses.use iam permission for the service class.
service_class_uri: Option<String>Output only. The service class uri this ServiceConnectionMap is for.
token: Option<String>The token provided by the consumer. This token authenticates that the consumer can create a connecton within the specified project and network.
update_time: Option<DateTime<Utc>>Output only. Time when the ServiceConnectionMap was updated.
Trait Implementations§
Source§impl Clone for ServiceConnectionMap
impl Clone for ServiceConnectionMap
Source§fn clone(&self) -> ServiceConnectionMap
fn clone(&self) -> ServiceConnectionMap
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for ServiceConnectionMap
impl Debug for ServiceConnectionMap
Source§impl Default for ServiceConnectionMap
impl Default for ServiceConnectionMap
Source§fn default() -> ServiceConnectionMap
fn default() -> ServiceConnectionMap
Source§impl<'de> Deserialize<'de> for ServiceConnectionMap
impl<'de> Deserialize<'de> for ServiceConnectionMap
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 ServiceConnectionMap
impl Serialize for ServiceConnectionMap
impl RequestValue for ServiceConnectionMap
impl ResponseResult for ServiceConnectionMap
Auto Trait Implementations§
impl Freeze for ServiceConnectionMap
impl RefUnwindSafe for ServiceConnectionMap
impl Send for ServiceConnectionMap
impl Sync for ServiceConnectionMap
impl Unpin for ServiceConnectionMap
impl UnwindSafe for ServiceConnectionMap
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