pub struct Revision {Show 20 fields
pub name: String,
pub create_time: Option<Timestamp>,
pub update_time: Option<Timestamp>,
pub action: i32,
pub state: i32,
pub apply_results: Option<ApplyResults>,
pub state_detail: String,
pub error_code: i32,
pub build: String,
pub logs: String,
pub tf_errors: Vec<TerraformError>,
pub error_logs: String,
pub service_account: String,
pub import_existing_resources: bool,
pub worker_pool: String,
pub tf_version_constraint: String,
pub tf_version: String,
pub quota_validation_results: String,
pub quota_validation: i32,
pub blueprint: Option<Blueprint>,
}
Expand description
A child resource of a Deployment generated by a ‘CreateDeployment’ or ‘UpdateDeployment’ call. Each Revision contains metadata pertaining to a snapshot of a particular Deployment.
Fields§
§name: String
Revision name. Format:
projects/{project}/locations/{location}/deployments/{deployment}/ revisions/{revision}
create_time: Option<Timestamp>
Output only. Time when the revision was created.
update_time: Option<Timestamp>
Output only. Time when the revision was last modified.
action: i32
Output only. The action which created this revision
state: i32
Output only. Current state of the revision.
apply_results: Option<ApplyResults>
Output only. Outputs and artifacts from applying a deployment.
state_detail: String
Output only. Additional info regarding the current state.
error_code: i32
Output only. Code describing any errors that may have occurred.
build: String
Output only. Cloud Build instance UUID associated with this revision.
logs: String
Output only. Location of Revision operation logs in
gs://{bucket}/{object}
format.
tf_errors: Vec<TerraformError>
Output only. Errors encountered when creating or updating this deployment.
Errors are truncated to 10 entries, see delete_results
and error_logs
for full details.
error_logs: String
Output only. Location of Terraform error logs in Google Cloud Storage.
Format: gs://{bucket}/{object}
.
service_account: String
Output only. User-specified Service Account (SA) to be used as credential
to manage resources. Format:
projects/{projectID}/serviceAccounts/{serviceAccount}
import_existing_resources: bool
Output only. By default, Infra Manager will return a failure when Terraform encounters a 409 code (resource conflict error) during actuation. If this flag is set to true, Infra Manager will instead attempt to automatically import the resource into the Terraform state (for supported resource types) and continue actuation.
Not all resource types are supported, refer to documentation.
worker_pool: String
Output only. The user-specified Cloud Build worker pool resource in which
the Cloud Build job will execute. Format:
projects/{project}/locations/{location}/workerPools/{workerPoolId}
.
If this field is unspecified, the default Cloud Build worker pool will be
used.
tf_version_constraint: String
Output only. The user-specified Terraform version constraint. Example: “=1.3.10”.
tf_version: String
Output only. The version of Terraform used to create the Revision. It is in the format of “Major.Minor.Patch”, for example, “1.3.10”.
quota_validation_results: String
Output only. Cloud Storage path containing quota validation results. This
field is set when a user sets Deployment.quota_validation field to ENABLED
or ENFORCED. Format: gs://{bucket}/{object}
.
quota_validation: i32
Optional. Input to control quota checks for resources in terraform configuration files. There are limited resources on which quota validation applies.
blueprint: Option<Blueprint>
Blueprint that was deployed.
Implementations§
source§impl Revision
impl Revision
sourcepub fn action(&self) -> Action
pub fn action(&self) -> Action
Returns the enum value of action
, or the default if the field is set to an invalid enum value.
sourcepub fn set_action(&mut self, value: Action)
pub fn set_action(&mut self, value: Action)
Sets action
to the provided enum value.
sourcepub fn state(&self) -> State
pub fn state(&self) -> State
Returns the enum value of state
, or the default if the field is set to an invalid enum value.
sourcepub fn error_code(&self) -> ErrorCode
pub fn error_code(&self) -> ErrorCode
Returns the enum value of error_code
, or the default if the field is set to an invalid enum value.
sourcepub fn set_error_code(&mut self, value: ErrorCode)
pub fn set_error_code(&mut self, value: ErrorCode)
Sets error_code
to the provided enum value.
sourcepub fn quota_validation(&self) -> QuotaValidation
pub fn quota_validation(&self) -> QuotaValidation
Returns the enum value of quota_validation
, or the default if the field is set to an invalid enum value.
sourcepub fn set_quota_validation(&mut self, value: QuotaValidation)
pub fn set_quota_validation(&mut self, value: QuotaValidation)
Sets quota_validation
to the provided enum value.
Trait Implementations§
source§impl Message for Revision
impl Message for Revision
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for Revision
impl PartialEq for Revision
impl StructuralPartialEq for Revision
Auto Trait Implementations§
impl Freeze for Revision
impl RefUnwindSafe for Revision
impl Send for Revision
impl Sync for Revision
impl Unpin for Revision
impl UnwindSafe for Revision
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request