google_api_compute v0.3.0 GoogleApi.Compute.V1.Model.Firewall View Source
Represents a Firewall resource.
Attributes
- allowed ([FirewallAllowed]): The list of ALLOW rules specified by this firewall. Each rule specifies a protocol and port-range tuple that describes a permitted connection. Defaults to:
null
. - creationTimestamp (String.t): [Output Only] Creation timestamp in RFC3339 text format. Defaults to:
null
. - denied ([FirewallAllowed]): The list of DENY rules specified by this firewall. Each rule specifies a protocol and port-range tuple that describes a denied connection. Defaults to:
null
. - description (String.t): An optional description of this resource. Provide this property when you create the resource. Defaults to:
null
. - destinationRanges ([String.t]): If destination ranges are specified, the firewall will apply only to traffic that has destination IP address in these ranges. These ranges must be expressed in CIDR format. Only IPv4 is supported. Defaults to:
null
. direction (String.t): Direction of traffic to which this firewall applies; default is INGRESS. Note: For INGRESS traffic, it is NOT supported to specify destinationRanges; For EGRESS traffic, it is NOT supported to specify sourceRanges OR sourceTags. Defaults to:
null
.- Enum - one of [EGRESS, INGRESS]
- disabled (boolean()): Denotes whether the firewall rule is disabled, i.e not applied to the network it is associated with. When set to true, the firewall rule is not enforced and the network behaves as if it did not exist. If this is unspecified, the firewall rule will be enabled. Defaults to:
null
. - id (String.t): [Output Only] The unique identifier for the resource. This identifier is defined by the server. Defaults to:
null
. - kind (String.t): [Output Only] Type of the resource. Always compute#firewall for firewall rules. Defaults to:
null
. - logConfig (FirewallLogConfig): This field denotes the logging options for a particular firewall rule. If logging is enabled, logs will be exported to Stackdriver. Defaults to:
null
. - name (String.t): Name of the resource; provided by the client when the resource 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?` 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. Defaults to:
null
. - network (String.t): URL of the network resource for this firewall rule. If not specified when creating a firewall rule, the default network is used: global/networks/default If you choose to specify this property, you can specify the network as a full or partial URL. For example, the following are all valid URLs: - https://www.googleapis.com/compute/v1/projects/myproject/global/networks/my-network - projects/myproject/global/networks/my-network - global/networks/default Defaults to:
null
. - priority (integer()): Priority for this rule. This is an integer between 0 and 65535, both inclusive. When not specified, the value assumed is 1000. Relative priorities determine precedence of conflicting rules. Lower value of priority implies higher precedence (eg, a rule with priority 0 has higher precedence than a rule with priority 1). DENY rules take precedence over ALLOW rules having equal priority. Defaults to:
null
. - selfLink (String.t): [Output Only] Server-defined URL for the resource. Defaults to:
null
. - sourceRanges ([String.t]): If source ranges are specified, the firewall will apply only to traffic that has source IP address in these ranges. These ranges must be expressed in CIDR format. One or both of sourceRanges and sourceTags may be set. If both properties are set, the firewall will apply to traffic that has source IP address within sourceRanges OR the source IP that belongs to a tag listed in the sourceTags property. The connection does not need to match both properties for the firewall to apply. Only IPv4 is supported. Defaults to:
null
. - sourceServiceAccounts ([String.t]): If source service accounts are specified, the firewall will apply only to traffic originating from an instance with a service account in this list. Source service accounts cannot be used to control traffic to an instance's external IP address because service accounts are associated with an instance, not an IP address. sourceRanges can be set at the same time as sourceServiceAccounts. If both are set, the firewall will apply to traffic that has source IP address within sourceRanges OR the source IP belongs to an instance with service account listed in sourceServiceAccount. The connection does not need to match both properties for the firewall to apply. sourceServiceAccounts cannot be used at the same time as sourceTags or targetTags. Defaults to:
null
. - sourceTags ([String.t]): If source tags are specified, the firewall rule applies only to traffic with source IPs that match the primary network interfaces of VM instances that have the tag and are in the same VPC network. Source tags cannot be used to control traffic to an instance's external IP address, it only applies to traffic between instances in the same virtual network. Because tags are associated with instances, not IP addresses. One or both of sourceRanges and sourceTags may be set. If both properties are set, the firewall will apply to traffic that has source IP address within sourceRanges OR the source IP that belongs to a tag listed in the sourceTags property. The connection does not need to match both properties for the firewall to apply. Defaults to:
null
. - targetServiceAccounts ([String.t]): A list of service accounts indicating sets of instances located in the network that may make network connections as specified in allowed[]. targetServiceAccounts cannot be used at the same time as targetTags or sourceTags. If neither targetServiceAccounts nor targetTags are specified, the firewall rule applies to all instances on the specified network. Defaults to:
null
. - targetTags ([String.t]): A list of tags that controls which instances the firewall rule applies to. If targetTags are specified, then the firewall rule applies only to instances in the VPC network that have one of those tags. If no targetTags are specified, the firewall rule applies to all instances on the specified network. Defaults to:
null
.
Link to this section Summary
Functions
Unwrap a decoded JSON object into its complex fields
Link to this section Types
Link to this type
t()
View Source
t()
View Source
t() :: %GoogleApi.Compute.V1.Model.Firewall{
allowed: [GoogleApi.Compute.V1.Model.FirewallAllowed.t()],
creationTimestamp: any(),
denied: [GoogleApi.Compute.V1.Model.FirewallAllowed.t()],
description: any(),
destinationRanges: [any()],
direction: any(),
disabled: any(),
id: any(),
kind: any(),
logConfig: GoogleApi.Compute.V1.Model.FirewallLogConfig.t(),
name: any(),
network: any(),
priority: any(),
selfLink: any(),
sourceRanges: [any()],
sourceServiceAccounts: [any()],
sourceTags: [any()],
targetServiceAccounts: [any()],
targetTags: [any()]
}
t() :: %GoogleApi.Compute.V1.Model.Firewall{ allowed: [GoogleApi.Compute.V1.Model.FirewallAllowed.t()], creationTimestamp: any(), denied: [GoogleApi.Compute.V1.Model.FirewallAllowed.t()], description: any(), destinationRanges: [any()], direction: any(), disabled: any(), id: any(), kind: any(), logConfig: GoogleApi.Compute.V1.Model.FirewallLogConfig.t(), name: any(), network: any(), priority: any(), selfLink: any(), sourceRanges: [any()], sourceServiceAccounts: [any()], sourceTags: [any()], targetServiceAccounts: [any()], targetTags: [any()] }
Link to this section Functions
Link to this function
decode(value, options) View Source
Unwrap a decoded JSON object into its complex fields.