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.
§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 networkconnectivity.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 connection 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 more