Struct google_api_proto::google::cloud::dataform::v1beta1::ReleaseConfig
source · pub struct ReleaseConfig {
pub name: String,
pub git_commitish: String,
pub code_compilation_config: Option<CodeCompilationConfig>,
pub cron_schedule: String,
pub time_zone: String,
pub recent_scheduled_release_records: Vec<ScheduledReleaseRecord>,
pub release_compilation_result: String,
}
Expand description
Represents a Dataform release configuration.
Fields§
§name: String
Output only. The release config’s name.
git_commitish: String
Required. Git commit/tag/branch name at which the repository should be compiled. Must exist in the remote repository. Examples:
- a commit SHA:
12ade345
- a tag:
tag1
- a branch name:
branch1
code_compilation_config: Option<CodeCompilationConfig>
Optional. If set, fields of code_compilation_config
override the default
compilation settings that are specified in dataform.json.
cron_schedule: String
Optional. Optional schedule (in cron format) for automatic creation of compilation results.
time_zone: String
Optional. Specifies the time zone to be used when interpreting cron_schedule. Must be a time zone name from the time zone database (https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). If left unspecified, the default is UTC.
recent_scheduled_release_records: Vec<ScheduledReleaseRecord>
Output only. Records of the 10 most recent scheduled release attempts,
ordered in in descending order of release_time
. Updated whenever
automatic creation of a compilation result is triggered by cron_schedule.
release_compilation_result: String
Optional. The name of the currently released compilation result for this
release config. This value is updated when a compilation result is created
from this release config, or when this resource is updated by API call
(perhaps to roll back to an earlier release). The compilation result must
have been created using this release config. Must be in the format
projects/*/locations/*/repositories/*/compilationResults/*
.
Trait Implementations§
source§impl Clone for ReleaseConfig
impl Clone for ReleaseConfig
source§fn clone(&self) -> ReleaseConfig
fn clone(&self) -> ReleaseConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ReleaseConfig
impl Debug for ReleaseConfig
source§impl Default for ReleaseConfig
impl Default for ReleaseConfig
source§impl Message for ReleaseConfig
impl Message for ReleaseConfig
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 ReleaseConfig
impl PartialEq for ReleaseConfig
source§fn eq(&self, other: &ReleaseConfig) -> bool
fn eq(&self, other: &ReleaseConfig) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ReleaseConfig
Auto Trait Implementations§
impl Freeze for ReleaseConfig
impl RefUnwindSafe for ReleaseConfig
impl Send for ReleaseConfig
impl Sync for ReleaseConfig
impl Unpin for ReleaseConfig
impl UnwindSafe for ReleaseConfig
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