Struct gapi_grpc::google::cloud::resourcesettings::v1::resource_settings_service_client::ResourceSettingsServiceClient[][src]

pub struct ResourceSettingsServiceClient<T> { /* fields omitted */ }

An interface to interact with resource settings and setting values throughout the resource hierarchy.

Services may surface a number of settings for users to control how their resources behave. Values of settings applied on a given Cloud resource are evaluated hierarchically and inherited by all descendants of that resource.

For all requests, returns a google.rpc.Status with google.rpc.Code.PERMISSION_DENIED if the IAM check fails or the parent resource is not in a Cloud Organization. For all requests, returns a google.rpc.Status with google.rpc.Code.INVALID_ARGUMENT if the request is malformed.

Implementations

impl ResourceSettingsServiceClient<Channel>[src]

pub async fn connect<D>(dst: D) -> Result<Self, Error> where
    D: TryInto<Endpoint>,
    D::Error: Into<StdError>, 
[src]

Attempt to create a new client by connecting to a given endpoint.

impl<T> ResourceSettingsServiceClient<T> where
    T: GrpcService<BoxBody>,
    T::ResponseBody: Body + HttpBody + Send + 'static,
    T::Error: Into<StdError>,
    <T::ResponseBody as HttpBody>::Error: Into<StdError> + Send
[src]

pub fn new(inner: T) -> Self[src]

pub fn with_interceptor(inner: T, interceptor: impl Into<Interceptor>) -> Self[src]

pub async fn list_settings(
    &mut self,
    request: impl IntoRequest<ListSettingsRequest>
) -> Result<Response<ListSettingsResponse>, Status>
[src]

Lists all the settings that are available on the Cloud resource parent.

pub async fn get_setting(
    &mut self,
    request: impl IntoRequest<GetSettingRequest>
) -> Result<Response<Setting>, Status>
[src]

Gets a setting.

Returns a google.rpc.Status with google.rpc.Code.NOT_FOUND if the setting does not exist.

pub async fn update_setting(
    &mut self,
    request: impl IntoRequest<UpdateSettingRequest>
) -> Result<Response<Setting>, Status>
[src]

Updates a setting.

Returns a google.rpc.Status with google.rpc.Code.NOT_FOUND if the setting does not exist. Returns a google.rpc.Status with google.rpc.Code.FAILED_PRECONDITION if the setting is flagged as read only. Returns a google.rpc.Status with google.rpc.Code.ABORTED if the etag supplied in the request does not match the persisted etag of the setting value.

On success, the response will contain only name, local_value and etag. The metadata and effective_value cannot be updated through this API.

Note: the supplied setting will perform a full overwrite of the local_value field.

Trait Implementations

impl<T: Clone> Clone for ResourceSettingsServiceClient<T>[src]

impl<T> Debug for ResourceSettingsServiceClient<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for ResourceSettingsServiceClient<T>

impl<T> Send for ResourceSettingsServiceClient<T> where
    T: Send

impl<T> Sync for ResourceSettingsServiceClient<T> where
    T: Sync

impl<T> Unpin for ResourceSettingsServiceClient<T> where
    T: Unpin

impl<T> !UnwindSafe for ResourceSettingsServiceClient<T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]