pub struct Schemas {
pub client: Client,
}
Fields§
§client: Client
Implementations§
Source§impl Schemas
impl Schemas
Sourcepub async fn list(
&self,
customer_id: &str,
) -> Result<Response<Schemas>, ClientError>
pub async fn list( &self, customer_id: &str, ) -> Result<Response<Schemas>, ClientError>
This function performs a GET
to the /admin/directory/v1/customer/{customerId}/schemas
endpoint.
Retrieves all schemas for a customer.
Parameters:
customer_id: &str
– Immutable ID of the Google Workspace account.
Sourcepub async fn insert(
&self,
customer_id: &str,
body: &Schema,
) -> Result<Response<Schema>, ClientError>
pub async fn insert( &self, customer_id: &str, body: &Schema, ) -> Result<Response<Schema>, ClientError>
This function performs a POST
to the /admin/directory/v1/customer/{customerId}/schemas
endpoint.
Creates a schema.
Parameters:
customer_id: &str
– Immutable ID of the Google Workspace account.
Sourcepub async fn get(
&self,
customer_id: &str,
schema_key: &str,
) -> Result<Response<Schema>, ClientError>
pub async fn get( &self, customer_id: &str, schema_key: &str, ) -> Result<Response<Schema>, ClientError>
This function performs a GET
to the /admin/directory/v1/customer/{customerId}/schemas/{schemaKey}
endpoint.
Retrieves a schema.
Parameters:
customer_id: &str
– Immutable ID of the Google Workspace account.schema_key: &str
– Name or immutable ID of the schema.
Sourcepub async fn update(
&self,
customer_id: &str,
schema_key: &str,
body: &Schema,
) -> Result<Response<Schema>, ClientError>
pub async fn update( &self, customer_id: &str, schema_key: &str, body: &Schema, ) -> Result<Response<Schema>, ClientError>
This function performs a PUT
to the /admin/directory/v1/customer/{customerId}/schemas/{schemaKey}
endpoint.
Updates a schema.
Parameters:
customer_id: &str
– Immutable ID of the Google Workspace account.schema_key: &str
– Name or immutable ID of the schema.
Sourcepub async fn delete(
&self,
customer_id: &str,
schema_key: &str,
) -> Result<Response<()>, ClientError>
pub async fn delete( &self, customer_id: &str, schema_key: &str, ) -> Result<Response<()>, ClientError>
This function performs a DELETE
to the /admin/directory/v1/customer/{customerId}/schemas/{schemaKey}
endpoint.
Deletes a schema.
Parameters:
customer_id: &str
– Immutable ID of the Google Workspace account.schema_key: &str
– Name or immutable ID of the schema.
Sourcepub async fn patch(
&self,
customer_id: &str,
schema_key: &str,
body: &Schema,
) -> Result<Response<Schema>, ClientError>
pub async fn patch( &self, customer_id: &str, schema_key: &str, body: &Schema, ) -> Result<Response<Schema>, ClientError>
This function performs a PATCH
to the /admin/directory/v1/customer/{customerId}/schemas/{schemaKey}
endpoint.
Patches a schema.
Parameters:
customer_id: &str
– Immutable ID of the Google Workspace account.schema_key: &str
– Name or immutable ID of the schema.
Auto Trait Implementations§
impl Freeze for Schemas
impl !RefUnwindSafe for Schemas
impl Send for Schemas
impl Sync for Schemas
impl Unpin for Schemas
impl !UnwindSafe for Schemas
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more