pub struct ResourcePolicy {Show 13 fields
pub creation_timestamp: Option<String>,
pub description: Option<String>,
pub disk_consistency_group_policy: Option<ResourcePolicyDiskConsistencyGroupPolicy>,
pub group_placement_policy: Option<ResourcePolicyGroupPlacementPolicy>,
pub id: Option<u64>,
pub instance_schedule_policy: Option<ResourcePolicyInstanceSchedulePolicy>,
pub kind: Option<String>,
pub name: Option<String>,
pub region: Option<String>,
pub resource_status: Option<ResourcePolicyResourceStatus>,
pub self_link: Option<String>,
pub snapshot_schedule_policy: Option<ResourcePolicySnapshotSchedulePolicy>,
pub status: Option<String>,
}
Expand description
Represents a Resource Policy resource. You can use resource policies to schedule actions for some Compute Engine resources. For example, you can use them to schedule persistent disk snapshots.
§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 resource policies (response)
- insert resource policies (request)
- patch resource policies (request)
Fields§
§creation_timestamp: Option<String>
[Output Only] Creation timestamp in RFC3339 text format.
description: Option<String>
no description provided
disk_consistency_group_policy: Option<ResourcePolicyDiskConsistencyGroupPolicy>
Resource policy for disk consistency groups.
group_placement_policy: Option<ResourcePolicyGroupPlacementPolicy>
Resource policy for instances for placement configuration.
id: Option<u64>
[Output Only] The unique identifier for the resource. This identifier is defined by the server.
instance_schedule_policy: Option<ResourcePolicyInstanceSchedulePolicy>
Resource policy for scheduling instance operations.
kind: Option<String>
[Output Only] Type of the resource. Always compute#resource_policies for resource policies.
name: Option<String>
The name of the resource, provided by the client when initially creating the resource. The resource name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])?
which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
region: Option<String>
no description provided
resource_status: Option<ResourcePolicyResourceStatus>
[Output Only] The system status of the resource policy.
self_link: Option<String>
[Output Only] Server-defined fully-qualified URL for this resource.
snapshot_schedule_policy: Option<ResourcePolicySnapshotSchedulePolicy>
Resource policy for persistent disks for creating snapshots.
status: Option<String>
[Output Only] The status of resource policy creation.
Trait Implementations§
Source§impl Clone for ResourcePolicy
impl Clone for ResourcePolicy
Source§fn clone(&self) -> ResourcePolicy
fn clone(&self) -> ResourcePolicy
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ResourcePolicy
impl Debug for ResourcePolicy
Source§impl Default for ResourcePolicy
impl Default for ResourcePolicy
Source§fn default() -> ResourcePolicy
fn default() -> ResourcePolicy
Source§impl<'de> Deserialize<'de> for ResourcePolicy
impl<'de> Deserialize<'de> for ResourcePolicy
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 ResourcePolicy
impl Serialize for ResourcePolicy
impl RequestValue for ResourcePolicy
impl ResponseResult for ResourcePolicy
Auto Trait Implementations§
impl Freeze for ResourcePolicy
impl RefUnwindSafe for ResourcePolicy
impl Send for ResourcePolicy
impl Sync for ResourcePolicy
impl Unpin for ResourcePolicy
impl UnwindSafe for ResourcePolicy
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