Struct google_compute1::api::FirewallPolicy[][src]

pub struct FirewallPolicy {
    pub associations: Option<Vec<FirewallPolicyAssociation>>,
    pub creation_timestamp: Option<String>,
    pub description: Option<String>,
    pub display_name: Option<String>,
    pub fingerprint: Option<String>,
    pub id: Option<String>,
    pub kind: Option<String>,
    pub name: Option<String>,
    pub parent: Option<String>,
    pub rule_tuple_count: Option<i32>,
    pub rules: Option<Vec<FirewallPolicyRule>>,
    pub self_link: Option<String>,
    pub self_link_with_id: Option<String>,
    pub short_name: Option<String>,
}

Represents a Firewall Policy resource. (== resource_for {$api_version}.firewallPolicies ==)

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

associations: Option<Vec<FirewallPolicyAssociation>>

A list of associations that belong to this firewall policy.

creation_timestamp: Option<String>

[Output Only] Creation timestamp in RFC3339 text format.

description: Option<String>

An optional description of this resource. Provide this property when you create the resource.

display_name: Option<String>

Depreacted, please use short name instead. User-provided name of the Organization firewall plicy. The name should be unique in the organization in which the firewall policy is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.

fingerprint: Option<String>

Specifies a fingerprint for this resource, which is essentially a hash of the metadata’s contents and used for optimistic locking. The fingerprint is initially generated by Compute Engine and changes after every request to modify or update metadata. You must always provide an up-to-date fingerprint hash in order to update or change metadata, otherwise the request will fail with error 412 conditionNotMet.

To see the latest fingerprint, make get() request to the firewall policy.

id: Option<String>

[Output Only] The unique identifier for the resource. This identifier is defined by the server.

kind: Option<String>

[Output only] Type of the resource. Always compute#firewallPolicyfor firewall policies

name: Option<String>

[Output Only] Name of the resource. It is a numeric ID allocated by GCP which uniquely identifies the Firewall Policy.

parent: Option<String>

[Output Only] The parent of the firewall policy.

rule_tuple_count: Option<i32>

[Output Only] Total count of all firewall policy rule tuples. A firewall policy can not exceed a set number of tuples.

rules: Option<Vec<FirewallPolicyRule>>

A list of rules that belong to this policy. There must always be a default rule (rule with priority 2147483647 and match “*”). If no rules are provided when creating a firewall policy, a default rule with action “allow” will be added.

self_link: Option<String>

[Output Only] Server-defined URL for the resource.

self_link_with_id: Option<String>

[Output Only] Server-defined URL for this resource with the resource id.

short_name: Option<String>

User-provided name of the Organization firewall plicy. The name should be unique in the organization in which the firewall policy is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.

Trait Implementations

impl Clone for FirewallPolicy[src]

impl Debug for FirewallPolicy[src]

impl Default for FirewallPolicy[src]

impl<'de> Deserialize<'de> for FirewallPolicy[src]

impl RequestValue for FirewallPolicy[src]

impl ResponseResult for FirewallPolicy[src]

impl Serialize for FirewallPolicy[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<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.