pub struct Preview {Show 19 fields
pub name: String,
pub create_time: Option<Timestamp>,
pub labels: BTreeMap<String, String>,
pub state: i32,
pub deployment: String,
pub preview_mode: i32,
pub service_account: String,
pub artifacts_gcs_bucket: Option<String>,
pub worker_pool: Option<String>,
pub error_code: i32,
pub error_status: Option<Status>,
pub build: String,
pub tf_errors: Vec<TerraformError>,
pub error_logs: String,
pub preview_artifacts: Option<PreviewArtifacts>,
pub logs: String,
pub tf_version: String,
pub tf_version_constraint: Option<String>,
pub blueprint: Option<Blueprint>,
}
Expand description
A preview represents a set of actions Infra Manager would perform to move the resources towards the desired state as specified in the configuration.
Fields§
§name: String
Identifier. Resource name of the preview. Resource name can be user
provided or server generated ID if unspecified. Format:
projects/{project}/locations/{location}/previews/{preview}
create_time: Option<Timestamp>
Output only. Time the preview was created.
labels: BTreeMap<String, String>
Optional. User-defined labels for the preview.
state: i32
Output only. Current state of the preview.
deployment: String
Optional. Optional deployment reference. If specified, the preview will be performed using the provided deployment’s current state and use any relevant fields from the deployment unless explicitly specified in the preview create request.
preview_mode: i32
Optional. Current mode of preview.
service_account: String
Optional. User-specified Service Account (SA) credentials to be used when
previewing resources.
Format: projects/{projectID}/serviceAccounts/{serviceAccount}
artifacts_gcs_bucket: Option<String>
Optional. User-defined location of Cloud Build logs, artifacts, and
in Google Cloud Storage.
Format: gs://{bucket}/{folder}
A default bucket will be bootstrapped if the field is not set or empty
Default Bucket Format: gs://<project number>-<region>-blueprint-config
Constraints:
- The bucket needs to be in the same project as the deployment
- The path cannot be within the path of
gcs_source
If omitted and deployment resource ref provided has artifacts_gcs_bucket defined, that artifact bucket is used.
worker_pool: Option<String>
Optional. The user-specified 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. If omitted and deployment resource ref provided has worker_pool defined, that worker pool is used.
error_code: i32
Output only. Code describing any errors that may have occurred.
error_status: Option<Status>
Output only. Additional information regarding the current state.
build: String
Output only. Cloud Build instance UUID associated with this preview.
tf_errors: Vec<TerraformError>
Output only. Summary of errors encountered during Terraform preview. It has a size limit of 10, i.e. only top 10 errors will be summarized here.
error_logs: String
Output only. Link to tf-error.ndjson file, which contains the full list of
the errors encountered during a Terraform preview.
Format: gs://{bucket}/{object}
.
preview_artifacts: Option<PreviewArtifacts>
Output only. Artifacts from preview.
logs: String
Output only. Location of preview logs in gs://{bucket}/{object}
format.
tf_version: String
Output only. The current Terraform version set on the preview. It is in the format of “Major.Minor.Patch”, for example, “1.3.10”.
tf_version_constraint: Option<String>
Optional. The user-specified Terraform version constraint. Example: “=1.3.10”.
blueprint: Option<Blueprint>
Blueprint to preview.
Implementations§
source§impl Preview
impl Preview
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 artifacts_gcs_bucket(&self) -> &str
pub fn artifacts_gcs_bucket(&self) -> &str
Returns the value of artifacts_gcs_bucket
, or the default value if artifacts_gcs_bucket
is unset.
sourcepub fn worker_pool(&self) -> &str
pub fn worker_pool(&self) -> &str
Returns the value of worker_pool
, or the default value if worker_pool
is unset.
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 preview_mode(&self) -> PreviewMode
pub fn preview_mode(&self) -> PreviewMode
Returns the enum value of preview_mode
, or the default if the field is set to an invalid enum value.
sourcepub fn set_preview_mode(&mut self, value: PreviewMode)
pub fn set_preview_mode(&mut self, value: PreviewMode)
Sets preview_mode
to the provided enum value.
sourcepub fn tf_version_constraint(&self) -> &str
pub fn tf_version_constraint(&self) -> &str
Returns the value of tf_version_constraint
, or the default value if tf_version_constraint
is unset.
Trait Implementations§
source§impl Message for Preview
impl Message for Preview
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 Preview
impl PartialEq for Preview
impl StructuralPartialEq for Preview
Auto Trait Implementations§
impl Freeze for Preview
impl RefUnwindSafe for Preview
impl Send for Preview
impl Sync for Preview
impl Unpin for Preview
impl UnwindSafe for Preview
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