pub struct ServiceConnectionToken {
pub create_time: Option<DateTime<Utc>>,
pub description: Option<String>,
pub etag: Option<String>,
pub expire_time: Option<DateTime<Utc>>,
pub labels: Option<HashMap<String, String>>,
pub name: Option<String>,
pub network: Option<String>,
pub token: Option<String>,
pub update_time: Option<DateTime<Utc>>,
}Expand description
The ServiceConnectionToken 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§
§create_time: Option<DateTime<Utc>>Output only. Time when the ServiceConnectionToken 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.
expire_time: Option<DateTime<Utc>>Output only. The time to which this token is valid.
labels: Option<HashMap<String, String>>User-defined labels.
name: Option<String>Immutable. The name of a ServiceConnectionToken. Format: projects/{project}/locations/{location}/ServiceConnectionTokens/{service_connection_token} See: https://google.aip.dev/122#fields-representing-resource-names
network: Option<String>The resource path of the network associated with this token. Example: projects/{projectNumOrId}/global/networks/{resourceId}.
token: Option<String>Output only. The token generated by Automation.
update_time: Option<DateTime<Utc>>Output only. Time when the ServiceConnectionToken was updated.
Trait Implementations§
Source§impl Clone for ServiceConnectionToken
impl Clone for ServiceConnectionToken
Source§fn clone(&self) -> ServiceConnectionToken
fn clone(&self) -> ServiceConnectionToken
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more