Struct google_api_proto::google::cloud::aiplatform::v1beta1::ListSchedulesRequest
source · pub struct ListSchedulesRequest {
pub parent: String,
pub filter: String,
pub page_size: i32,
pub page_token: String,
pub order_by: String,
}
Expand description
Request message for [ScheduleService.ListSchedules][google.cloud.aiplatform.v1beta1.ScheduleService.ListSchedules].
Fields§
§parent: String
Required. The resource name of the Location to list the Schedules from.
Format: projects/{project}/locations/{location}
filter: String
Lists the Schedules that match the filter expression. The following fields are supported:
display_name
: Supports=
,!=
comparisons, and:
wildcard.state
: Supports=
and!=
comparisons.request
: Supports existence of the <request_type> check. (e.g.create_pipeline_job_request:*
–> Schedule has create_pipeline_job_request).create_time
: Supports=
,!=
,<
,>
,<=
, and>=
comparisons. Values must be in RFC 3339 format.start_time
: Supports=
,!=
,<
,>
,<=
, and>=
comparisons. Values must be in RFC 3339 format.end_time
: Supports=
,!=
,<
,>
,<=
,>=
comparisons and:*
existence check. Values must be in RFC 3339 format.next_run_time
: Supports=
,!=
,<
,>
,<=
, and>=
comparisons. Values must be in RFC 3339 format.
Filter expressions can be combined together using logical operators
(NOT
, AND
& OR
).
The syntax to define filter expression is based on
https://google.aip.dev/160.
Examples:
state="ACTIVE" AND display_name:"my_schedule_*"
NOT display_name="my_schedule"
create_time>"2021-05-18T00:00:00Z"
end_time>"2021-05-18T00:00:00Z" OR NOT end_time:*
create_pipeline_job_request:*
page_size: i32
The standard list page size. Default to 100 if not specified.
page_token: String
The standard list page token. Typically obtained via [ListSchedulesResponse.next_page_token][google.cloud.aiplatform.v1beta1.ListSchedulesResponse.next_page_token] of the previous [ScheduleService.ListSchedules][google.cloud.aiplatform.v1beta1.ScheduleService.ListSchedules] call.
order_by: String
A comma-separated list of fields to order by. The default sort order is in ascending order. Use “desc” after a field name for descending. You can have multiple order_by fields provided.
For example, using “create_time desc, end_time” will order results by create time in descending order, and if there are multiple schedules having the same create time, order them by the end time in ascending order.
If order_by is not specified, it will order by default with create_time in descending order.
Supported fields:
create_time
start_time
end_time
next_run_time
Trait Implementations§
source§impl Clone for ListSchedulesRequest
impl Clone for ListSchedulesRequest
source§fn clone(&self) -> ListSchedulesRequest
fn clone(&self) -> ListSchedulesRequest
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListSchedulesRequest
impl Debug for ListSchedulesRequest
source§impl Default for ListSchedulesRequest
impl Default for ListSchedulesRequest
source§impl Message for ListSchedulesRequest
impl Message for ListSchedulesRequest
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 ListSchedulesRequest
impl PartialEq for ListSchedulesRequest
source§fn eq(&self, other: &ListSchedulesRequest) -> bool
fn eq(&self, other: &ListSchedulesRequest) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListSchedulesRequest
Auto Trait Implementations§
impl Freeze for ListSchedulesRequest
impl RefUnwindSafe for ListSchedulesRequest
impl Send for ListSchedulesRequest
impl Sync for ListSchedulesRequest
impl Unpin for ListSchedulesRequest
impl UnwindSafe for ListSchedulesRequest
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