diff --git a/Makefile b/Makefile index 10452d8..2fa23e6 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=0.9.15 +VERSION=0.9.16 SOURCE?=./... VINYLDNS_REPO=github.com/vinyldns/vinyldns VINYLDNS_VERSION=0.9.10 diff --git a/vinyldns/recordsets_resources.go b/vinyldns/recordsets_resources.go index 3470fb2..f8eac05 100644 --- a/vinyldns/recordsets_resources.go +++ b/vinyldns/recordsets_resources.go @@ -47,6 +47,9 @@ type RecordSet struct { TTL int `json:"ttl"` Account string `json:"account"` Records []Record `json:"records"` + FQDN string `json:"fqdn,omitempty"` + ZoneName string `json:"zoneName,omitempty"` + IsShared *bool `json:"zoneShared,omitempty"` } // RecordSetUpdateResponse represents diff --git a/vinyldns/version.go b/vinyldns/version.go index 0b3caf3..65fc655 100644 --- a/vinyldns/version.go +++ b/vinyldns/version.go @@ -13,4 +13,4 @@ limitations under the License. package vinyldns // Version stores the go-vinyldns semantic version -var Version = "0.9.15" +var Version = "0.9.16"