pub struct GetStageExecutionDetailsRequest {
pub project_id: String,
pub job_id: String,
pub location: String,
pub stage_id: String,
pub page_size: i32,
pub page_token: String,
pub start_time: Option<Timestamp>,
pub end_time: Option<Timestamp>,
}
Expand description
Request to get information about a particular execution stage of a job. Currently only tracked for Batch jobs.
Fields§
§project_id: String
A project id.
job_id: String
The job to get execution details for.
location: String
The [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) that contains the job specified by job_id.
stage_id: String
The stage for which to fetch information.
page_size: i32
If specified, determines the maximum number of work items to return. If unspecified, the service may choose an appropriate default, or may return an arbitrarily large number of results.
page_token: String
If supplied, this should be the value of next_page_token returned by an earlier call. This will cause the next page of results to be returned.
start_time: Option<Timestamp>
Lower time bound of work items to include, by start time.
end_time: Option<Timestamp>
Upper time bound of work items to include, by start time.
Trait Implementations§
source§impl Clone for GetStageExecutionDetailsRequest
impl Clone for GetStageExecutionDetailsRequest
source§fn clone(&self) -> GetStageExecutionDetailsRequest
fn clone(&self) -> GetStageExecutionDetailsRequest
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Message for GetStageExecutionDetailsRequest
impl Message for GetStageExecutionDetailsRequest
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 GetStageExecutionDetailsRequest
impl PartialEq for GetStageExecutionDetailsRequest
source§fn eq(&self, other: &GetStageExecutionDetailsRequest) -> bool
fn eq(&self, other: &GetStageExecutionDetailsRequest) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetStageExecutionDetailsRequest
Auto Trait Implementations§
impl Freeze for GetStageExecutionDetailsRequest
impl RefUnwindSafe for GetStageExecutionDetailsRequest
impl Send for GetStageExecutionDetailsRequest
impl Sync for GetStageExecutionDetailsRequest
impl Unpin for GetStageExecutionDetailsRequest
impl UnwindSafe for GetStageExecutionDetailsRequest
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