Struct google_api_proto::google::spanner::admin::database::v1::ListBackupOperationsRequest
source · pub struct ListBackupOperationsRequest {
pub parent: String,
pub filter: String,
pub page_size: i32,
pub page_token: String,
}
Expand description
The request for [ListBackupOperations][google.spanner.admin.database.v1.DatabaseAdmin.ListBackupOperations].
Fields§
§parent: String
Required. The instance of the backup operations. Values are of
the form projects/<project>/instances/<instance>
.
filter: String
An expression that filters the list of returned backup operations.
A filter expression consists of a field name, a
comparison operator, and a value for filtering.
The value must be a string, a number, or a boolean. The comparison operator
must be one of: <
, >
, <=
, >=
, !=
, =
, or :
.
Colon :
is the contains operator. Filter rules are not case sensitive.
The following fields in the [operation][google.longrunning.Operation] are eligible for filtering:
name
- The name of the long-running operationdone
- False if the operation is in progress, else true.metadata.@type
- the type of metadata. For example, the type string for [CreateBackupMetadata][google.spanner.admin.database.v1.CreateBackupMetadata] istype.googleapis.com/google.spanner.admin.database.v1.CreateBackupMetadata
.metadata.<field_name>
- any field in metadata.value.metadata.@type
must be specified first if filtering on metadata fields.error
- Error associated with the long-running operation.response.@type
- the type of response.response.<field_name>
- any field in response.value.
You can combine multiple expressions by enclosing each expression in parentheses. By default, expressions are combined with AND logic, but you can specify AND, OR, and NOT logic explicitly.
Here are a few examples:
done:true
- The operation is complete.(metadata.@type=type.googleapis.com/google.spanner.admin.database.v1.CreateBackupMetadata) AND
metadata.database:prod
- Returns operations where:- The operation’s metadata type is [CreateBackupMetadata][google.spanner.admin.database.v1.CreateBackupMetadata].
- The source database name of backup contains the string “prod”.
(metadata.@type=type.googleapis.com/google.spanner.admin.database.v1.CreateBackupMetadata) AND
(metadata.name:howl) AND
(metadata.progress.start_time < \"2018-03-28T14:50:00Z\") AND
(error:*)
- Returns operations where:- The operation’s metadata type is [CreateBackupMetadata][google.spanner.admin.database.v1.CreateBackupMetadata].
- The backup name contains the string “howl”.
- The operation started before 2018-03-28T14:50:00Z.
- The operation resulted in an error.
(metadata.@type=type.googleapis.com/google.spanner.admin.database.v1.CopyBackupMetadata) AND
(metadata.source_backup:test) AND
(metadata.progress.start_time < \"2022-01-18T14:50:00Z\") AND
(error:*)
- Returns operations where:- The operation’s metadata type is [CopyBackupMetadata][google.spanner.admin.database.v1.CopyBackupMetadata].
- The source backup name contains the string “test”.
- The operation started before 2022-01-18T14:50:00Z.
- The operation resulted in an error.
((metadata.@type=type.googleapis.com/google.spanner.admin.database.v1.CreateBackupMetadata) AND
(metadata.database:test_db)) OR
((metadata.@type=type.googleapis.com/google.spanner.admin.database.v1.CopyBackupMetadata) AND
(metadata.source_backup:test_bkp)) AND
(error:*)
- Returns operations where:- The operation’s metadata matches either of criteria:
- The operation’s metadata type is [CreateBackupMetadata][google.spanner.admin.database.v1.CreateBackupMetadata] AND the source database name of the backup contains the string “test_db”
- The operation’s metadata type is [CopyBackupMetadata][google.spanner.admin.database.v1.CopyBackupMetadata] AND the source backup name contains the string “test_bkp”
- The operation resulted in an error.
- The operation’s metadata matches either of criteria:
page_size: i32
Number of operations to be returned in the response. If 0 or less, defaults to the server’s maximum allowed page size.
page_token: String
If non-empty, page_token
should contain a
[next_page_token][google.spanner.admin.database.v1.ListBackupOperationsResponse.next_page_token]
from a previous
[ListBackupOperationsResponse][google.spanner.admin.database.v1.ListBackupOperationsResponse]
to the same parent
and with the same filter
.
Trait Implementations§
source§impl Clone for ListBackupOperationsRequest
impl Clone for ListBackupOperationsRequest
source§fn clone(&self) -> ListBackupOperationsRequest
fn clone(&self) -> ListBackupOperationsRequest
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListBackupOperationsRequest
impl Debug for ListBackupOperationsRequest
source§impl Message for ListBackupOperationsRequest
impl Message for ListBackupOperationsRequest
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 ListBackupOperationsRequest
impl PartialEq for ListBackupOperationsRequest
source§fn eq(&self, other: &ListBackupOperationsRequest) -> bool
fn eq(&self, other: &ListBackupOperationsRequest) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListBackupOperationsRequest
Auto Trait Implementations§
impl Freeze for ListBackupOperationsRequest
impl RefUnwindSafe for ListBackupOperationsRequest
impl Send for ListBackupOperationsRequest
impl Sync for ListBackupOperationsRequest
impl Unpin for ListBackupOperationsRequest
impl UnwindSafe for ListBackupOperationsRequest
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