Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Google APIs updated at 2023-03-03 #64

Merged
merged 1 commit into from
Mar 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 26 additions & 6 deletions gcloud-sdk/genproto/google.bigtable.v2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1415,22 +1415,42 @@ pub mod read_change_stream_response {
pub estimated_low_watermark: ::core::option::Option<::prost_types::Timestamp>,
}
/// A message indicating that the client should stop reading from the stream.
/// If status is OK and `continuation_tokens` is empty, the stream has finished
/// (for example if there was an `end_time` specified).
/// If `continuation_tokens` is present, then a change in partitioning requires
/// the client to open a new stream for each token to resume reading.
/// If status is OK and `continuation_tokens` & `new_partitions` are empty, the
/// stream has finished (for example if there was an `end_time` specified).
/// If `continuation_tokens` & `new_partitions` are present, then a change in
/// partitioning requires the client to open a new stream for each token to
/// resume reading. Example:
/// [B, D) ends
/// |
/// v
/// new_partitions: [A, C) [C, E)
/// continuation_tokens.partitions: [B,C) [C,D)
/// ^---^ ^---^
/// ^ ^
/// | |
/// | StreamContinuationToken 2
/// |
/// StreamContinuationToken 1
/// To read the new partition [A,C), supply the continuation tokens whose
/// ranges cover the new partition, for example ContinuationToken[A,B) &
/// ContinuationToken[B,C).
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CloseStream {
/// The status of the stream.
#[prost(message, optional, tag = "1")]
pub status: ::core::option::Option<super::super::super::rpc::Status>,
/// If non-empty, contains the information needed to start reading the new
/// partition(s) that contain segments of this partition's row range.
/// If non-empty, contains the information needed to resume reading their
/// associated partitions.
#[prost(message, repeated, tag = "2")]
pub continuation_tokens: ::prost::alloc::vec::Vec<
super::StreamContinuationToken,
>,
/// If non-empty, contains the new partitions to start reading from, which
/// are related to but not necessarily identical to the partitions for the
/// above `continuation_tokens`.
#[prost(message, repeated, tag = "3")]
pub new_partitions: ::prost::alloc::vec::Vec<super::StreamPartition>,
}
/// The data or control message on the stream.
#[allow(clippy::derive_partial_eq_without_eq)]
Expand Down
757 changes: 722 additions & 35 deletions gcloud-sdk/genproto/google.cloud.aiplatform.v1.rs

Large diffs are not rendered by default.

628 changes: 598 additions & 30 deletions gcloud-sdk/genproto/google.cloud.aiplatform.v1beta1.rs

Large diffs are not rendered by default.

Loading