Struct gapi_grpc::google::appengine::v1::firewall_client::FirewallClient[][src]

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

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]

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]

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]

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]

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]

Creates a firewall rule for the application.

pub async fn get_ingress_rule(
    &mut self,
    request: impl IntoRequest<GetIngressRuleRequest>
) -> Result<Response<FirewallRule>, Status>
[src]

Gets the specified firewall rule.

pub async fn update_ingress_rule(
    &mut self,
    request: impl IntoRequest<UpdateIngressRuleRequest>
) -> Result<Response<FirewallRule>, Status>
[src]

Updates the specified firewall rule.

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

Deletes the specified firewall rule.

Trait Implementations

impl<T: Clone> Clone for FirewallClient<T>[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

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

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

impl<T> !UnwindSafe for FirewallClient<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]