Service

Struct Service 

Source
#[non_exhaustive]
pub struct Service {
Show 26 fields pub name: String, pub title: String, pub producer_project_id: String, pub id: String, pub apis: Vec<Api>, pub types: Vec<Type>, pub enums: Vec<Enum>, pub documentation: Option<Documentation>, pub backend: Option<Backend>, pub http: Option<Http>, pub quota: Option<Quota>, pub authentication: Option<Authentication>, pub context: Option<Context>, pub usage: Option<Usage>, pub endpoints: Vec<Endpoint>, pub control: Option<Control>, pub logs: Vec<LogDescriptor>, pub metrics: Vec<MetricDescriptor>, pub monitored_resources: Vec<MonitoredResourceDescriptor>, pub billing: Option<Billing>, pub logging: Option<Logging>, pub monitoring: Option<Monitoring>, pub system_parameters: Option<SystemParameters>, pub source_info: Option<SourceInfo>, pub publishing: Option<Publishing>, pub config_version: Option<UInt32Value>, /* private fields */
}
Expand description

Service is the root object of Google API service configuration (service config). It describes the basic information about a logical service, such as the service name and the user-facing title, and delegates other aspects to sub-sections. Each sub-section is either a proto message or a repeated proto message that configures a specific aspect, such as auth. For more information, see each proto message definition.

Example:

type: google.api.Service
name: calendar.googleapis.com
title: Google Calendar API
apis:
- name: google.calendar.v3.Calendar

visibility:
  rules:
  - selector: "google.calendar.v3.*"
    restriction: PREVIEW
backend:
  rules:
  - selector: "google.calendar.v3.*"
    address: calendar.example.com

authentication:
  providers:
  - id: google_calendar_auth
    jwks_uri: https://www.googleapis.com/oauth2/v1/certs
    issuer: https://securetoken.google.com
  rules:
  - selector: "*"
    requirements:
      provider_id: google_calendar_auth

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§name: String

The service name, which is a DNS-like logical identifier for the service, such as calendar.googleapis.com. The service name typically goes through DNS verification to make sure the owner of the service also owns the DNS name.

§title: String

The product title for this service, it is the name displayed in Google Cloud Console.

§producer_project_id: String

The Google project that owns this service.

§id: String

A unique ID for a specific instance of this message, typically assigned by the client for tracking purpose. Must be no longer than 63 characters and only lower case letters, digits, ‘.’, ‘_’ and ‘-’ are allowed. If empty, the server may choose to generate one instead.

§apis: Vec<Api>

A list of API interfaces exported by this service. Only the name field of the google.protobuf.Api needs to be provided by the configuration author, as the remaining fields will be derived from the IDL during the normalization process. It is an error to specify an API interface here which cannot be resolved against the associated IDL files.

§types: Vec<Type>

A list of all proto message types included in this API service. Types referenced directly or indirectly by the apis are automatically included. Messages which are not referenced but shall be included, such as types used by the google.protobuf.Any type, should be listed here by name by the configuration author. Example:

types:
- name: google.protobuf.Int32
§enums: Vec<Enum>

A list of all enum types included in this API service. Enums referenced directly or indirectly by the apis are automatically included. Enums which are not referenced but shall be included should be listed here by name by the configuration author. Example:

enums:
- name: google.someapi.v1.SomeEnum
§documentation: Option<Documentation>

Additional API documentation.

§backend: Option<Backend>

API backend configuration.

§http: Option<Http>

HTTP configuration.

§quota: Option<Quota>

Quota configuration.

§authentication: Option<Authentication>

Auth configuration.

§context: Option<Context>

Context configuration.

§usage: Option<Usage>

Configuration controlling usage of this service.

§endpoints: Vec<Endpoint>

Configuration for network endpoints. If this is empty, then an endpoint with the same name as the service is automatically generated to service all defined APIs.

§control: Option<Control>

Configuration for the service control plane.

§logs: Vec<LogDescriptor>

Defines the logs used by this service.

§metrics: Vec<MetricDescriptor>

Defines the metrics used by this service.

§monitored_resources: Vec<MonitoredResourceDescriptor>

Defines the monitored resources used by this service. This is required by the Service.monitoring and Service.logging configurations.

§billing: Option<Billing>

Billing configuration.

§logging: Option<Logging>

Logging configuration.

§monitoring: Option<Monitoring>

Monitoring configuration.

§system_parameters: Option<SystemParameters>

System parameter configuration.

§source_info: Option<SourceInfo>

Output only. The source information for this configuration if available.

§publishing: Option<Publishing>

Settings for Google Cloud Client libraries generated from APIs defined as protocol buffers.

§config_version: Option<UInt32Value>

Obsolete. Do not use.

This field has no semantic meaning. The service config compiler always sets this field to 3.

Implementations§

Source§

impl Service

Source

pub fn new() -> Self

Source

pub fn set_name<T: Into<String>>(self, v: T) -> Self

Sets the value of name.

Source

pub fn set_title<T: Into<String>>(self, v: T) -> Self

Sets the value of title.

Source

pub fn set_producer_project_id<T: Into<String>>(self, v: T) -> Self

Sets the value of producer_project_id.

Source

pub fn set_id<T: Into<String>>(self, v: T) -> Self

Sets the value of id.

Source

pub fn set_apis<T, V>(self, v: T) -> Self
where T: IntoIterator<Item = V>, V: Into<Api>,

Sets the value of apis.

Source

pub fn set_types<T, V>(self, v: T) -> Self
where T: IntoIterator<Item = V>, V: Into<Type>,

Sets the value of types.

Source

pub fn set_enums<T, V>(self, v: T) -> Self
where T: IntoIterator<Item = V>, V: Into<Enum>,

Sets the value of enums.

Source

pub fn set_documentation<T>(self, v: T) -> Self
where T: Into<Documentation>,

Sets the value of documentation.

Source

pub fn set_or_clear_documentation<T>(self, v: Option<T>) -> Self
where T: Into<Documentation>,

Sets or clears the value of documentation.

Source

pub fn set_backend<T>(self, v: T) -> Self
where T: Into<Backend>,

Sets the value of backend.

Source

pub fn set_or_clear_backend<T>(self, v: Option<T>) -> Self
where T: Into<Backend>,

Sets or clears the value of backend.

Source

pub fn set_http<T>(self, v: T) -> Self
where T: Into<Http>,

Sets the value of http.

Source

pub fn set_or_clear_http<T>(self, v: Option<T>) -> Self
where T: Into<Http>,

Sets or clears the value of http.

Source

pub fn set_quota<T>(self, v: T) -> Self
where T: Into<Quota>,

Sets the value of quota.

Source

pub fn set_or_clear_quota<T>(self, v: Option<T>) -> Self
where T: Into<Quota>,

Sets or clears the value of quota.

Source

pub fn set_authentication<T>(self, v: T) -> Self
where T: Into<Authentication>,

Sets the value of authentication.

Source

pub fn set_or_clear_authentication<T>(self, v: Option<T>) -> Self
where T: Into<Authentication>,

Sets or clears the value of authentication.

Source

pub fn set_context<T>(self, v: T) -> Self
where T: Into<Context>,

Sets the value of context.

Source

pub fn set_or_clear_context<T>(self, v: Option<T>) -> Self
where T: Into<Context>,

Sets or clears the value of context.

Source

pub fn set_usage<T>(self, v: T) -> Self
where T: Into<Usage>,

Sets the value of usage.

Source

pub fn set_or_clear_usage<T>(self, v: Option<T>) -> Self
where T: Into<Usage>,

Sets or clears the value of usage.

Source

pub fn set_endpoints<T, V>(self, v: T) -> Self
where T: IntoIterator<Item = V>, V: Into<Endpoint>,

Sets the value of endpoints.

Source

pub fn set_control<T>(self, v: T) -> Self
where T: Into<Control>,

Sets the value of control.

Source

pub fn set_or_clear_control<T>(self, v: Option<T>) -> Self
where T: Into<Control>,

Sets or clears the value of control.

Source

pub fn set_logs<T, V>(self, v: T) -> Self
where T: IntoIterator<Item = V>, V: Into<LogDescriptor>,

Sets the value of logs.

Source

pub fn set_metrics<T, V>(self, v: T) -> Self
where T: IntoIterator<Item = V>, V: Into<MetricDescriptor>,

Sets the value of metrics.

Source

pub fn set_monitored_resources<T, V>(self, v: T) -> Self

Sets the value of monitored_resources.

Source

pub fn set_billing<T>(self, v: T) -> Self
where T: Into<Billing>,

Sets the value of billing.

Source

pub fn set_or_clear_billing<T>(self, v: Option<T>) -> Self
where T: Into<Billing>,

Sets or clears the value of billing.

Source

pub fn set_logging<T>(self, v: T) -> Self
where T: Into<Logging>,

Sets the value of logging.

Source

pub fn set_or_clear_logging<T>(self, v: Option<T>) -> Self
where T: Into<Logging>,

Sets or clears the value of logging.

Source

pub fn set_monitoring<T>(self, v: T) -> Self
where T: Into<Monitoring>,

Sets the value of monitoring.

Source

pub fn set_or_clear_monitoring<T>(self, v: Option<T>) -> Self
where T: Into<Monitoring>,

Sets or clears the value of monitoring.

Source

pub fn set_system_parameters<T>(self, v: T) -> Self

Sets the value of system_parameters.

Source

pub fn set_or_clear_system_parameters<T>(self, v: Option<T>) -> Self

Sets or clears the value of system_parameters.

Source

pub fn set_source_info<T>(self, v: T) -> Self
where T: Into<SourceInfo>,

Sets the value of source_info.

Source

pub fn set_or_clear_source_info<T>(self, v: Option<T>) -> Self
where T: Into<SourceInfo>,

Sets or clears the value of source_info.

Source

pub fn set_publishing<T>(self, v: T) -> Self
where T: Into<Publishing>,

Sets the value of publishing.

Source

pub fn set_or_clear_publishing<T>(self, v: Option<T>) -> Self
where T: Into<Publishing>,

Sets or clears the value of publishing.

Source

pub fn set_config_version<T>(self, v: T) -> Self
where T: Into<UInt32Value>,

Sets the value of config_version.

Source

pub fn set_or_clear_config_version<T>(self, v: Option<T>) -> Self
where T: Into<UInt32Value>,

Sets or clears the value of config_version.

Trait Implementations§

Source§

impl Clone for Service

Source§

fn clone(&self) -> Service

Returns a duplicate 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 Debug for Service

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Default for Service

Source§

fn default() -> Service

Returns the “default value” for a type. Read more
Source§

impl Message for Service

Source§

fn typename() -> &'static str

The typename of this message.
Source§

impl PartialEq for Service

Source§

fn eq(&self, other: &Service) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for Service

Auto Trait Implementations§

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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> ToOwned for T
where T: Clone,

Source§

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>,

Source§

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>,

Source§

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.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> ErasedDestructor for T
where T: 'static,