pub struct ServiceUsageClient<T> { /* private fields */ }
Expand description

Implementations§

source§

impl<T> ServiceUsageClient<T>
where T: GrpcService<BoxBody>, T::Error: Into<StdError>, T::ResponseBody: Body<Data = Bytes> + Send + 'static, <T::ResponseBody as Body>::Error: Into<StdError> + Send,

source

pub fn new(inner: T) -> Self

source

pub fn with_origin(inner: T, origin: Uri) -> Self

source

pub fn with_interceptor<F>( inner: T, interceptor: F ) -> ServiceUsageClient<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,

source

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.

source

pub fn accept_compressed(self, encoding: CompressionEncoding) -> Self

Enable decompressing responses.

source

pub fn max_decoding_message_size(self, limit: usize) -> Self

Limits the maximum size of a decoded message.

Default: 4MB

source

pub fn max_encoding_message_size(self, limit: usize) -> Self

Limits the maximum size of an encoded message.

Default: usize::MAX

source

pub async fn enable_service( &mut self, request: impl IntoRequest<EnableServiceRequest> ) -> Result<Response<Operation>, Status>

Enables a service so that it can be used with a project.

Operation response type: google.protobuf.Empty

source

pub async fn disable_service( &mut self, request: impl IntoRequest<DisableServiceRequest> ) -> Result<Response<Operation>, Status>

Disables a service so that it can no longer be used with a project. This prevents unintended usage that may cause unexpected billing charges or security leaks.

It is not valid to call the disable method on a service that is not currently enabled. Callers will receive a FAILED_PRECONDITION status if the target service is not currently enabled.

Operation response type: google.protobuf.Empty

source

pub async fn get_service( &mut self, request: impl IntoRequest<GetServiceRequest> ) -> Result<Response<Service>, Status>

Returns the service configuration and enabled state for a given service.

source

pub async fn list_services( &mut self, request: impl IntoRequest<ListServicesRequest> ) -> Result<Response<ListServicesResponse>, Status>

Lists all services available to the specified project, and the current state of those services with respect to the project. The list includes all public services, all services for which the calling user has the servicemanagement.services.bind permission, and all services that have already been enabled on the project. The list can be filtered to only include services in a specific state, for example to only include services enabled on the project.

source

pub async fn batch_enable_services( &mut self, request: impl IntoRequest<BatchEnableServicesRequest> ) -> Result<Response<Operation>, Status>

Enables multiple services on a project. The operation is atomic: if enabling any service fails, then the entire batch fails, and no state changes occur.

Operation response type: google.protobuf.Empty

source

pub async fn list_consumer_quota_metrics( &mut self, request: impl IntoRequest<ListConsumerQuotaMetricsRequest> ) -> Result<Response<ListConsumerQuotaMetricsResponse>, Status>

Retrieves a summary of all quota information visible to the service consumer, organized by service metric. Each metric includes information about all of its defined limits. Each limit includes the limit configuration (quota unit, preciseness, default value), the current effective limit value, and all of the overrides applied to the limit.

source

pub async fn get_consumer_quota_metric( &mut self, request: impl IntoRequest<GetConsumerQuotaMetricRequest> ) -> Result<Response<ConsumerQuotaMetric>, Status>

Retrieves a summary of quota information for a specific quota metric

source

pub async fn get_consumer_quota_limit( &mut self, request: impl IntoRequest<GetConsumerQuotaLimitRequest> ) -> Result<Response<ConsumerQuotaLimit>, Status>

Retrieves a summary of quota information for a specific quota limit.

source

pub async fn create_admin_override( &mut self, request: impl IntoRequest<CreateAdminOverrideRequest> ) -> Result<Response<Operation>, Status>

Creates an admin override. An admin override is applied by an administrator of a parent folder or parent organization of the consumer receiving the override. An admin override is intended to limit the amount of quota the consumer can use out of the total quota pool allocated to all children of the folder or organization.

source

pub async fn update_admin_override( &mut self, request: impl IntoRequest<UpdateAdminOverrideRequest> ) -> Result<Response<Operation>, Status>

Updates an admin override.

source

pub async fn delete_admin_override( &mut self, request: impl IntoRequest<DeleteAdminOverrideRequest> ) -> Result<Response<Operation>, Status>

Deletes an admin override.

source

pub async fn list_admin_overrides( &mut self, request: impl IntoRequest<ListAdminOverridesRequest> ) -> Result<Response<ListAdminOverridesResponse>, Status>

Lists all admin overrides on this limit.

source

pub async fn import_admin_overrides( &mut self, request: impl IntoRequest<ImportAdminOverridesRequest> ) -> Result<Response<Operation>, Status>

Creates or updates multiple admin overrides atomically, all on the same consumer, but on many different metrics or limits. The name field in the quota override message should not be set.

source

pub async fn create_consumer_override( &mut self, request: impl IntoRequest<CreateConsumerOverrideRequest> ) -> Result<Response<Operation>, Status>

Creates a consumer override. A consumer override is applied to the consumer on its own authority to limit its own quota usage. Consumer overrides cannot be used to grant more quota than would be allowed by admin overrides, producer overrides, or the default limit of the service.

source

pub async fn update_consumer_override( &mut self, request: impl IntoRequest<UpdateConsumerOverrideRequest> ) -> Result<Response<Operation>, Status>

Updates a consumer override.

source

pub async fn delete_consumer_override( &mut self, request: impl IntoRequest<DeleteConsumerOverrideRequest> ) -> Result<Response<Operation>, Status>

Deletes a consumer override.

source

pub async fn list_consumer_overrides( &mut self, request: impl IntoRequest<ListConsumerOverridesRequest> ) -> Result<Response<ListConsumerOverridesResponse>, Status>

Lists all consumer overrides on this limit.

source

pub async fn import_consumer_overrides( &mut self, request: impl IntoRequest<ImportConsumerOverridesRequest> ) -> Result<Response<Operation>, Status>

Creates or updates multiple consumer overrides atomically, all on the same consumer, but on many different metrics or limits. The name field in the quota override message should not be set.

source

pub async fn generate_service_identity( &mut self, request: impl IntoRequest<GenerateServiceIdentityRequest> ) -> Result<Response<Operation>, Status>

Generates service identity for service.

Trait Implementations§

source§

impl<T: Clone> Clone for ServiceUsageClient<T>

source§

fn clone(&self) -> ServiceUsageClient<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug> Debug for ServiceUsageClient<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<T> !Freeze for ServiceUsageClient<T>

§

impl<T> RefUnwindSafe for ServiceUsageClient<T>
where T: RefUnwindSafe,

§

impl<T> Send for ServiceUsageClient<T>
where T: Send,

§

impl<T> Sync for ServiceUsageClient<T>
where T: Sync,

§

impl<T> Unpin for ServiceUsageClient<T>
where T: Unpin,

§

impl<T> UnwindSafe for ServiceUsageClient<T>
where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FromRef<T> for T
where T: Clone,

§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more