Struct google_api_proto::google::cloud::pubsublite::v1::admin_service_client::AdminServiceClient
source · pub struct AdminServiceClient<T> { /* private fields */ }
Expand description
The service that a client application uses to manage topics and subscriptions, such creating, listing, and deleting topics and subscriptions.
Implementations§
source§impl<T> AdminServiceClient<T>where
T: GrpcService<BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + Send,
impl<T> AdminServiceClient<T>where
T: GrpcService<BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + Send,
pub fn new(inner: T) -> Self
pub fn with_origin(inner: T, origin: Uri) -> Self
pub fn with_interceptor<F>(
inner: T,
interceptor: F,
) -> AdminServiceClient<InterceptedService<T, F>>where
F: Interceptor,
T::ResponseBody: Default,
T: Service<Request<BoxBody>, Response = Response<<T as GrpcService<BoxBody>>::ResponseBody>>,
<T as Service<Request<BoxBody>>>::Error: Into<StdError> + Send + Sync,
sourcepub fn send_compressed(self, encoding: CompressionEncoding) -> Self
pub fn send_compressed(self, encoding: CompressionEncoding) -> Self
Compress requests with the given encoding.
This requires the server to support it otherwise it might respond with an error.
sourcepub fn accept_compressed(self, encoding: CompressionEncoding) -> Self
pub fn accept_compressed(self, encoding: CompressionEncoding) -> Self
Enable decompressing responses.
sourcepub fn max_decoding_message_size(self, limit: usize) -> Self
pub fn max_decoding_message_size(self, limit: usize) -> Self
Limits the maximum size of a decoded message.
Default: 4MB
sourcepub fn max_encoding_message_size(self, limit: usize) -> Self
pub fn max_encoding_message_size(self, limit: usize) -> Self
Limits the maximum size of an encoded message.
Default: usize::MAX
sourcepub async fn create_topic(
&mut self,
request: impl IntoRequest<CreateTopicRequest>,
) -> Result<Response<Topic>, Status>
pub async fn create_topic( &mut self, request: impl IntoRequest<CreateTopicRequest>, ) -> Result<Response<Topic>, Status>
Creates a new topic.
sourcepub async fn get_topic(
&mut self,
request: impl IntoRequest<GetTopicRequest>,
) -> Result<Response<Topic>, Status>
pub async fn get_topic( &mut self, request: impl IntoRequest<GetTopicRequest>, ) -> Result<Response<Topic>, Status>
Returns the topic configuration.
sourcepub async fn get_topic_partitions(
&mut self,
request: impl IntoRequest<GetTopicPartitionsRequest>,
) -> Result<Response<TopicPartitions>, Status>
pub async fn get_topic_partitions( &mut self, request: impl IntoRequest<GetTopicPartitionsRequest>, ) -> Result<Response<TopicPartitions>, Status>
Returns the partition information for the requested topic.
sourcepub async fn list_topics(
&mut self,
request: impl IntoRequest<ListTopicsRequest>,
) -> Result<Response<ListTopicsResponse>, Status>
pub async fn list_topics( &mut self, request: impl IntoRequest<ListTopicsRequest>, ) -> Result<Response<ListTopicsResponse>, Status>
Returns the list of topics for the given project.
sourcepub async fn update_topic(
&mut self,
request: impl IntoRequest<UpdateTopicRequest>,
) -> Result<Response<Topic>, Status>
pub async fn update_topic( &mut self, request: impl IntoRequest<UpdateTopicRequest>, ) -> Result<Response<Topic>, Status>
Updates properties of the specified topic.
sourcepub async fn delete_topic(
&mut self,
request: impl IntoRequest<DeleteTopicRequest>,
) -> Result<Response<()>, Status>
pub async fn delete_topic( &mut self, request: impl IntoRequest<DeleteTopicRequest>, ) -> Result<Response<()>, Status>
Deletes the specified topic.
sourcepub async fn list_topic_subscriptions(
&mut self,
request: impl IntoRequest<ListTopicSubscriptionsRequest>,
) -> Result<Response<ListTopicSubscriptionsResponse>, Status>
pub async fn list_topic_subscriptions( &mut self, request: impl IntoRequest<ListTopicSubscriptionsRequest>, ) -> Result<Response<ListTopicSubscriptionsResponse>, Status>
Lists the subscriptions attached to the specified topic.
sourcepub async fn create_subscription(
&mut self,
request: impl IntoRequest<CreateSubscriptionRequest>,
) -> Result<Response<Subscription>, Status>
pub async fn create_subscription( &mut self, request: impl IntoRequest<CreateSubscriptionRequest>, ) -> Result<Response<Subscription>, Status>
Creates a new subscription.
sourcepub async fn get_subscription(
&mut self,
request: impl IntoRequest<GetSubscriptionRequest>,
) -> Result<Response<Subscription>, Status>
pub async fn get_subscription( &mut self, request: impl IntoRequest<GetSubscriptionRequest>, ) -> Result<Response<Subscription>, Status>
Returns the subscription configuration.
sourcepub async fn list_subscriptions(
&mut self,
request: impl IntoRequest<ListSubscriptionsRequest>,
) -> Result<Response<ListSubscriptionsResponse>, Status>
pub async fn list_subscriptions( &mut self, request: impl IntoRequest<ListSubscriptionsRequest>, ) -> Result<Response<ListSubscriptionsResponse>, Status>
Returns the list of subscriptions for the given project.
sourcepub async fn update_subscription(
&mut self,
request: impl IntoRequest<UpdateSubscriptionRequest>,
) -> Result<Response<Subscription>, Status>
pub async fn update_subscription( &mut self, request: impl IntoRequest<UpdateSubscriptionRequest>, ) -> Result<Response<Subscription>, Status>
Updates properties of the specified subscription.
sourcepub async fn delete_subscription(
&mut self,
request: impl IntoRequest<DeleteSubscriptionRequest>,
) -> Result<Response<()>, Status>
pub async fn delete_subscription( &mut self, request: impl IntoRequest<DeleteSubscriptionRequest>, ) -> Result<Response<()>, Status>
Deletes the specified subscription.
sourcepub async fn seek_subscription(
&mut self,
request: impl IntoRequest<SeekSubscriptionRequest>,
) -> Result<Response<Operation>, Status>
pub async fn seek_subscription( &mut self, request: impl IntoRequest<SeekSubscriptionRequest>, ) -> Result<Response<Operation>, Status>
Performs an out-of-band seek for a subscription to a specified target, which may be timestamps or named positions within the message backlog. Seek translates these targets to cursors for each partition and orchestrates subscribers to start consuming messages from these seek cursors.
If an operation is returned, the seek has been registered and subscribers will eventually receive messages from the seek cursors (i.e. eventual consistency), as long as they are using a minimum supported client library version and not a system that tracks cursors independently of Pub/Sub Lite (e.g. Apache Beam, Dataflow, Spark). The seek operation will fail for unsupported clients.
If clients would like to know when subscribers react to the seek (or not), they can poll the operation. The seek operation will succeed and complete once subscribers are ready to receive messages from the seek cursors for all partitions of the topic. This means that the seek operation will not complete until all subscribers come online.
If the previous seek operation has not yet completed, it will be aborted and the new invocation of seek will supersede it.
sourcepub async fn create_reservation(
&mut self,
request: impl IntoRequest<CreateReservationRequest>,
) -> Result<Response<Reservation>, Status>
pub async fn create_reservation( &mut self, request: impl IntoRequest<CreateReservationRequest>, ) -> Result<Response<Reservation>, Status>
Creates a new reservation.
sourcepub async fn get_reservation(
&mut self,
request: impl IntoRequest<GetReservationRequest>,
) -> Result<Response<Reservation>, Status>
pub async fn get_reservation( &mut self, request: impl IntoRequest<GetReservationRequest>, ) -> Result<Response<Reservation>, Status>
Returns the reservation configuration.
sourcepub async fn list_reservations(
&mut self,
request: impl IntoRequest<ListReservationsRequest>,
) -> Result<Response<ListReservationsResponse>, Status>
pub async fn list_reservations( &mut self, request: impl IntoRequest<ListReservationsRequest>, ) -> Result<Response<ListReservationsResponse>, Status>
Returns the list of reservations for the given project.
sourcepub async fn update_reservation(
&mut self,
request: impl IntoRequest<UpdateReservationRequest>,
) -> Result<Response<Reservation>, Status>
pub async fn update_reservation( &mut self, request: impl IntoRequest<UpdateReservationRequest>, ) -> Result<Response<Reservation>, Status>
Updates properties of the specified reservation.
sourcepub async fn delete_reservation(
&mut self,
request: impl IntoRequest<DeleteReservationRequest>,
) -> Result<Response<()>, Status>
pub async fn delete_reservation( &mut self, request: impl IntoRequest<DeleteReservationRequest>, ) -> Result<Response<()>, Status>
Deletes the specified reservation.
sourcepub async fn list_reservation_topics(
&mut self,
request: impl IntoRequest<ListReservationTopicsRequest>,
) -> Result<Response<ListReservationTopicsResponse>, Status>
pub async fn list_reservation_topics( &mut self, request: impl IntoRequest<ListReservationTopicsRequest>, ) -> Result<Response<ListReservationTopicsResponse>, Status>
Lists the topics attached to the specified reservation.
Trait Implementations§
source§impl<T: Clone> Clone for AdminServiceClient<T>
impl<T: Clone> Clone for AdminServiceClient<T>
source§fn clone(&self) -> AdminServiceClient<T>
fn clone(&self) -> AdminServiceClient<T>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl<T> !Freeze for AdminServiceClient<T>
impl<T> RefUnwindSafe for AdminServiceClient<T>where
T: RefUnwindSafe,
impl<T> Send for AdminServiceClient<T>where
T: Send,
impl<T> Sync for AdminServiceClient<T>where
T: Sync,
impl<T> Unpin for AdminServiceClient<T>where
T: Unpin,
impl<T> UnwindSafe for AdminServiceClient<T>where
T: UnwindSafe,
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