Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v14.5.0 #1303

Merged
merged 3 commits into from
Mar 16, 2018
Merged

v14.5.0 #1303

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## `v14.5.0`

### Changes

- Added new preview packages for apimanagement and dns.

## `v14.4.0`

### Changes
Expand Down
953 changes: 724 additions & 229 deletions profiles/preview/apimanagement/mgmt/apimanagement/models.go

Large diffs are not rendered by default.

18 changes: 17 additions & 1 deletion profiles/preview/dns/mgmt/dns/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

package dns

import original "github.com/Azure/azure-sdk-for-go/services/dns/mgmt/2017-09-01/dns"
import original "github.com/Azure/azure-sdk-for-go/services/preview/dns/mgmt/2018-03-01-preview/dns"

const (
DefaultBaseURI = original.DefaultBaseURI
Expand Down Expand Up @@ -49,6 +49,21 @@ const (
TXT RecordType = original.TXT
)

func PossibleRecordTypeValues() []RecordType {
return original.PossibleRecordTypeValues()
}

type ZoneType = original.ZoneType

const (
Private ZoneType = original.Private
Public ZoneType = original.Public
)

func PossibleZoneTypeValues() []ZoneType {
return original.PossibleZoneTypeValues()
}

type AaaaRecord = original.AaaaRecord
type ARecord = original.ARecord
type CaaRecord = original.CaaRecord
Expand All @@ -75,6 +90,7 @@ type ZoneListResultIterator = original.ZoneListResultIterator
type ZoneListResultPage = original.ZoneListResultPage
type ZoneProperties = original.ZoneProperties
type ZonesDeleteFuture = original.ZonesDeleteFuture
type ZoneUpdate = original.ZoneUpdate
type RecordSetsClient = original.RecordSetsClient

func NewRecordSetsClient(subscriptionID string) RecordSetsClient {
Expand Down
719 changes: 719 additions & 0 deletions services/preview/apimanagement/mgmt/2018-01-01/apimanagement/api.go

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading