#[non_exhaustive]pub struct UsageRule {
pub selector: String,
pub allow_unregistered_calls: bool,
pub skip_service_control: bool,
/* private fields */
}
Expand description
Usage configuration rules for the service.
NOTE: Under development.
Use this rule to configure unregistered calls for the service. Unregistered calls are calls that do not contain consumer project identity. (Example: calls that do not contain an API key). By default, API methods do not allow unregistered calls, and each method call must be identified by a consumer project identity. Use this rule to allow/disallow unregistered calls.
Example of an API that wants to allow unregistered calls for entire service.
usage:
rules:
- selector: "*"
allow_unregistered_calls: true
Example of a method that wants to allow unregistered calls.
usage:
rules:
- selector: "google.example.library.v1.LibraryService.CreateBook"
allow_unregistered_calls: true
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.selector: String
Selects the methods to which this rule applies. Use ‘*’ to indicate all methods in all APIs.
Refer to selector for syntax details.
allow_unregistered_calls: bool
If true, the selected method allows unregistered calls, e.g. calls that don’t identify any user or application.
skip_service_control: bool
If true, the selected method should skip service control and the control plane features, such as quota and billing, will not be available. This flag is used by Google Cloud Endpoints to bypass checks for internal methods, such as service health check methods.
Implementations§
Source§impl UsageRule
impl UsageRule
pub fn new() -> Self
Sourcepub fn set_selector<T: Into<String>>(self, v: T) -> Self
pub fn set_selector<T: Into<String>>(self, v: T) -> Self
Sets the value of selector.
Sourcepub fn set_allow_unregistered_calls<T: Into<bool>>(self, v: T) -> Self
pub fn set_allow_unregistered_calls<T: Into<bool>>(self, v: T) -> Self
Sets the value of allow_unregistered_calls.
Sourcepub fn set_skip_service_control<T: Into<bool>>(self, v: T) -> Self
pub fn set_skip_service_control<T: Into<bool>>(self, v: T) -> Self
Sets the value of skip_service_control.