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

[AutoPR] eventhub/resource-manager #3729

Merged
merged 1 commit into from
Dec 14, 2018
Merged
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
24 changes: 24 additions & 0 deletions profiles/preview/preview/eventhub/mgmt/eventhub/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,26 @@ const (
DefaultBaseURI = original.DefaultBaseURI
)

type DefaultAction = original.DefaultAction

const (
Allow DefaultAction = original.Allow
Deny DefaultAction = original.Deny
)

type IPAction = original.IPAction

const (
Accept IPAction = original.Accept
Reject IPAction = original.Reject
)

type NetworkRuleIPAction = original.NetworkRuleIPAction

const (
NetworkRuleIPActionAllow NetworkRuleIPAction = original.NetworkRuleIPActionAllow
)

type SkuName = original.SkuName

const (
Expand Down Expand Up @@ -72,9 +85,13 @@ type IPFilterRuleListResult = original.IPFilterRuleListResult
type IPFilterRuleListResultIterator = original.IPFilterRuleListResultIterator
type IPFilterRuleListResultPage = original.IPFilterRuleListResultPage
type IPFilterRuleProperties = original.IPFilterRuleProperties
type NWRuleSetIPRules = original.NWRuleSetIPRules
type NWRuleSetVirtualNetworkRules = original.NWRuleSetVirtualNetworkRules
type NamespacesClient = original.NamespacesClient
type NamespacesCreateOrUpdateFuture = original.NamespacesCreateOrUpdateFuture
type NamespacesDeleteFuture = original.NamespacesDeleteFuture
type NetworkRuleSet = original.NetworkRuleSet
type NetworkRuleSetProperties = original.NetworkRuleSetProperties
type Operation = original.Operation
type OperationDisplay = original.OperationDisplay
type OperationListResult = original.OperationListResult
Expand All @@ -83,6 +100,7 @@ type OperationListResultPage = original.OperationListResultPage
type OperationsClient = original.OperationsClient
type Resource = original.Resource
type Sku = original.Sku
type Subnet = original.Subnet
type TrackedResource = original.TrackedResource
type VirtualNetworkRule = original.VirtualNetworkRule
type VirtualNetworkRuleListResult = original.VirtualNetworkRuleListResult
Expand Down Expand Up @@ -150,9 +168,15 @@ func NewVirtualNetworkRuleListResultPage(getNextPage func(context.Context, Virtu
func NewWithBaseURI(baseURI string, subscriptionID string) BaseClient {
return original.NewWithBaseURI(baseURI, subscriptionID)
}
func PossibleDefaultActionValues() []DefaultAction {
return original.PossibleDefaultActionValues()
}
func PossibleIPActionValues() []IPAction {
return original.PossibleIPActionValues()
}
func PossibleNetworkRuleIPActionValues() []NetworkRuleIPAction {
return original.PossibleNetworkRuleIPActionValues()
}
func PossibleSkuNameValues() []SkuName {
return original.PossibleSkuNameValues()
}
Expand Down

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

142 changes: 142 additions & 0 deletions services/preview/eventhub/mgmt/2018-01-01-preview/eventhub/models.go

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

Loading