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] Eventhub: Added Namespace properties for BYOK #6007

Merged
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
21 changes: 21 additions & 0 deletions profiles/preview/preview/eventhub/mgmt/eventhub/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,18 @@ const (
Reject IPAction = original.Reject
)

type IdentityType = original.IdentityType

const (
SystemAssigned IdentityType = original.SystemAssigned
)

type KeySource = original.KeySource

const (
MicrosoftKeyVault KeySource = original.MicrosoftKeyVault
)

type NetworkRuleIPAction = original.NetworkRuleIPAction

const (
Expand Down Expand Up @@ -85,12 +97,15 @@ type EHNamespaceListResult = original.EHNamespaceListResult
type EHNamespaceListResultIterator = original.EHNamespaceListResultIterator
type EHNamespaceListResultPage = original.EHNamespaceListResultPage
type EHNamespaceProperties = original.EHNamespaceProperties
type Encryption = original.Encryption
type ErrorResponse = original.ErrorResponse
type IPFilterRule = original.IPFilterRule
type IPFilterRuleListResult = original.IPFilterRuleListResult
type IPFilterRuleListResultIterator = original.IPFilterRuleListResultIterator
type IPFilterRuleListResultPage = original.IPFilterRuleListResultPage
type IPFilterRuleProperties = original.IPFilterRuleProperties
type Identity = original.Identity
type KeyVaultProperties = original.KeyVaultProperties
type NWRuleSetIPRules = original.NWRuleSetIPRules
type NWRuleSetVirtualNetworkRules = original.NWRuleSetVirtualNetworkRules
type NamespacesClient = original.NamespacesClient
Expand Down Expand Up @@ -180,6 +195,12 @@ func PossibleDefaultActionValues() []DefaultAction {
func PossibleIPActionValues() []IPAction {
return original.PossibleIPActionValues()
}
func PossibleIdentityTypeValues() []IdentityType {
return original.PossibleIdentityTypeValues()
}
func PossibleKeySourceValues() []KeySource {
return original.PossibleKeySourceValues()
}
func PossibleNetworkRuleIPActionValues() []NetworkRuleIPAction {
return original.PossibleNetworkRuleIPActionValues()
}
Expand Down

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