Skip to content

Commit

Permalink
Merge pull request #83 from remerle/main
Browse files Browse the repository at this point in the history
Update RecordSet struct to include additional fields from GlobalRecordSet
  • Loading branch information
remerle authored Oct 29, 2021
2 parents 068f8ac + 0006ba7 commit 98968c0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=0.9.15
VERSION=0.9.16
SOURCE?=./...
VINYLDNS_REPO=github.com/vinyldns/vinyldns
VINYLDNS_VERSION=0.9.10
Expand Down
3 changes: 3 additions & 0 deletions vinyldns/recordsets_resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion vinyldns/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 98968c0

Please sign in to comment.