staticips

package
v2.5.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 8, 2024 License: MIT Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type LastModifiedBy

type LastModifiedBy struct {
	// Identifier that uniquely identifies an entity
	ID int `json:"id,omitempty"`

	// The configured name of the entity
	Name       string                 `json:"name,omitempty"`
	Extensions map[string]interface{} `json:"extensions,omitempty"`
}

type ManagedBy

type ManagedBy struct {
	// Identifier that uniquely identifies an entity
	ID int `json:"id,omitempty"`

	// The configured name of the entity
	Name       string                 `json:"name,omitempty"`
	Extensions map[string]interface{} `json:"extensions,omitempty"`
}

type Service

type Service struct {
	Client *zia.Client
}

func New

func New(c *zia.Client) *Service

func (*Service) Create

func (service *Service) Create(staticIpID *StaticIP) (*StaticIP, *http.Response, error)

func (*Service) Delete

func (service *Service) Delete(staticIpID int) (*http.Response, error)

func (*Service) Get

func (service *Service) Get(staticIpID int) (*StaticIP, error)

func (*Service) GetAll

func (service *Service) GetAll() ([]StaticIP, error)

func (*Service) GetByIPAddress

func (service *Service) GetByIPAddress(address string) (*StaticIP, error)

func (*Service) Update

func (service *Service) Update(staticIpID int, staticIP *StaticIP) (*StaticIP, *http.Response, error)

type StaticIP

type StaticIP struct {
	// The unique identifier for the static IP address
	ID int `json:"id,omitempty"`

	// The static IP address
	IpAddress string `json:"ipAddress"`

	// If not set, geographic coordinates and city are automatically determined from the IP address. Otherwise, the latitude and longitude coordinates must be provided.
	GeoOverride bool `json:"geoOverride"`

	// Required only if the geoOverride attribute is set. Latitude with 7 digit precision after decimal point, ranges between -90 and 90 degrees.
	Latitude float64 `json:"latitude,omitempty"`

	// Required only if the geoOverride attribute is set. Longitude with 7 digit precision after decimal point, ranges between -180 and 180 degrees.
	Longitude float64 `json:"longitude,omitempty"`

	// Indicates whether a non-RFC 1918 IP address is publicly routable. This attribute is ignored if there is no ZIA Private Service Edge associated to the organization.
	RoutableIP bool `json:"routableIP,omitempty"`

	// When the static IP address was last modified
	LastModificationTime int `json:"lastModificationTime"`

	// Additional information about this static IP address
	Comment string `json:"comment,omitempty"`

	// SD-WAN Partner that manages the location. If a partner does not manage the location, this is set to Self.
	ManagedBy *ManagedBy `json:"managedBy,omitempty"` // Should probably move this to a common package. Used by multiple resources

	// Who modified the static IP address last
	LastModifiedBy *LastModifiedBy `json:"lastModifiedBy,omitempty"` // Should probably move this to a common package. Used by multiple resources
}

Gets all provisioned static IP addresses.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL