pub struct ResourceView {
pub creation_timestamp: Option<String>,
pub description: Option<String>,
pub endpoints: Option<Vec<ServiceEndpoint>>,
pub fingerprint: Option<String>,
pub id: Option<String>,
pub kind: Option<String>,
pub labels: Option<Vec<Label>>,
pub name: Option<String>,
pub network: Option<String>,
pub resources: Option<Vec<String>>,
pub self_link: Option<String>,
pub size: Option<u32>,
}Expand description
The resource view object.
§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).
- get zone views (response)
- insert zone views (request)
Fields§
§creation_timestamp: Option<String>The creation time of the resource view.
description: Option<String>The detailed description of the resource view.
endpoints: Option<Vec<ServiceEndpoint>>Services endpoint information.
fingerprint: Option<String>The fingerprint of the service endpoint information.
id: Option<String>[Output Only] The ID of the resource view.
kind: Option<String>Type of the resource.
labels: Option<Vec<Label>>The labels for events.
name: Option<String>The name of the resource view.
network: Option<String>The URL of a Compute Engine network to which the resources in the view belong.
resources: Option<Vec<String>>A list of all resources in the resource view.
self_link: Option<String>[Output Only] A self-link to the resource view.
size: Option<u32>The total number of resources in the resource view.
Trait Implementations§
Source§impl Clone for ResourceView
impl Clone for ResourceView
Source§fn clone(&self) -> ResourceView
fn clone(&self) -> ResourceView
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more