Struct gapi_grpc::google::appengine::v1beta::firewall_client::FirewallClient [−][src]
Firewall resources are used to define a collection of access control rules for an Application. Each rule is defined with a position which specifies the rule’s order in the sequence of rules, an IP range to be matched against requests, and an action to take upon matching requests.
Every request is evaluated against the Firewall rules in priority order. Processesing stops at the first rule which matches the request’s IP address. A final rule always specifies an action that applies to all remaining IP addresses. The default final rule for a newly-created application will be set to “allow” if not otherwise specified by the user.
Implementations
impl FirewallClient<Channel>
[src]
pub async fn connect<D>(dst: D) -> Result<Self, Error> where
D: TryInto<Endpoint>,
D::Error: Into<StdError>,
[src]
D: TryInto<Endpoint>,
D::Error: Into<StdError>,
Attempt to create a new client by connecting to a given endpoint.
impl<T> FirewallClient<T> where
T: GrpcService<BoxBody>,
T::ResponseBody: Body + HttpBody + Send + 'static,
T::Error: Into<StdError>,
<T::ResponseBody as HttpBody>::Error: Into<StdError> + Send,
[src]
T: GrpcService<BoxBody>,
T::ResponseBody: Body + HttpBody + Send + 'static,
T::Error: Into<StdError>,
<T::ResponseBody as HttpBody>::Error: Into<StdError> + Send,
pub fn new(inner: T) -> Self
[src]
pub fn with_interceptor(inner: T, interceptor: impl Into<Interceptor>) -> Self
[src]
pub async fn list_ingress_rules(
&mut self,
request: impl IntoRequest<ListIngressRulesRequest>
) -> Result<Response<ListIngressRulesResponse>, Status>
[src]
&mut self,
request: impl IntoRequest<ListIngressRulesRequest>
) -> Result<Response<ListIngressRulesResponse>, Status>
Lists the firewall rules of an application.
pub async fn batch_update_ingress_rules(
&mut self,
request: impl IntoRequest<BatchUpdateIngressRulesRequest>
) -> Result<Response<BatchUpdateIngressRulesResponse>, Status>
[src]
&mut self,
request: impl IntoRequest<BatchUpdateIngressRulesRequest>
) -> Result<Response<BatchUpdateIngressRulesResponse>, Status>
Replaces the entire firewall ruleset in one bulk operation. This overrides and replaces the rules of an existing firewall with the new rules.
If the final rule does not match traffic with the ‘*’ wildcard IP range, then an “allow all” rule is explicitly added to the end of the list.
pub async fn create_ingress_rule(
&mut self,
request: impl IntoRequest<CreateIngressRuleRequest>
) -> Result<Response<FirewallRule>, Status>
[src]
&mut self,
request: impl IntoRequest<CreateIngressRuleRequest>
) -> Result<Response<FirewallRule>, Status>
Creates a firewall rule for the application.
pub async fn get_ingress_rule(
&mut self,
request: impl IntoRequest<GetIngressRuleRequest>
) -> Result<Response<FirewallRule>, Status>
[src]
&mut self,
request: impl IntoRequest<GetIngressRuleRequest>
) -> Result<Response<FirewallRule>, Status>
Gets the specified firewall rule.
pub async fn update_ingress_rule(
&mut self,
request: impl IntoRequest<UpdateIngressRuleRequest>
) -> Result<Response<FirewallRule>, Status>
[src]
&mut self,
request: impl IntoRequest<UpdateIngressRuleRequest>
) -> Result<Response<FirewallRule>, Status>
Updates the specified firewall rule.
pub async fn delete_ingress_rule(
&mut self,
request: impl IntoRequest<DeleteIngressRuleRequest>
) -> Result<Response<()>, Status>
[src]
&mut self,
request: impl IntoRequest<DeleteIngressRuleRequest>
) -> Result<Response<()>, Status>
Deletes the specified firewall rule.
Trait Implementations
impl<T: Clone> Clone for FirewallClient<T>
[src]
fn clone(&self) -> Self
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<T> Debug for FirewallClient<T>
[src]
Auto Trait Implementations
impl<T> !RefUnwindSafe for FirewallClient<T>
impl<T> Send for FirewallClient<T> where
T: Send,
T: Send,
impl<T> Sync for FirewallClient<T> where
T: Sync,
T: Sync,
impl<T> Unpin for FirewallClient<T> where
T: Unpin,
T: Unpin,
impl<T> !UnwindSafe for FirewallClient<T>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> IntoRequest<T> for T
[src]
pub fn into_request(self) -> Request<T>
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src]
V: MultiLane<T>,
impl<T> WithSubscriber for T
[src]
pub fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
[src]
S: Into<Dispatch>,