class PaloAlto::Models::Zone

Attributes

name[RW]

Public Class Methods

new(name:) click to toggle source

Create and returns a new PaloAlto::Models::Zone instance with the given parameters

Attributes

  • name - Name of the zone

Example

PaloAlto::Models::Zone.new name: 'ingress'
# File lib/palo_alto/models/zone.rb, line 15
def initialize(name:)
  self.name = name

  self
end