commit | 1c817312b6ad47670ed542ea4d24d8d69bd0d0aa | [log] [tgz] |
---|---|---|
author | Jamie Hannaford <jamie.hannaford@rackspace.com> | Tue Nov 04 10:56:58 2014 +0100 |
committer | Jamie Hannaford <jamie.hannaford@rackspace.com> | Fri Nov 07 14:01:58 2014 +0100 |
tree | ebfbb952ee4456314bba001f1a9e5f702612d1fb | |
parent | f0cd1657b547a48d800bdee561b3f253cb5ee9e9 [diff] [blame] |
Shifting VIP struct to new package
diff --git a/rackspace/lb/v1/vips/results.go b/rackspace/lb/v1/vips/results.go index 5320e81..51dea3a 100644 --- a/rackspace/lb/v1/vips/results.go +++ b/rackspace/lb/v1/vips/results.go
@@ -1 +1,9 @@ package vips + +// VIP represents a Virtual IP API resource. +type VIP struct { + Address string `json:"address,omitempty"` + ID int `json:"id,omitempty"` + Type string `json:"type,omitempty"` + Version string `json:"ipVersion,omitempty" mapstructure:"ipVersion"` +}