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] securityinsights/resource-manager #3971

Merged
merged 1 commit into from
Jan 31, 2019
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
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,46 @@ const (
DefaultBaseURI = original.DefaultBaseURI
)

type AlertRuleKind = original.AlertRuleKind

const (
Scheduled AlertRuleKind = original.Scheduled
)

type Kind = original.Kind

const (
KindAlertRule Kind = original.KindAlertRule
KindScheduled Kind = original.KindScheduled
)

type Severity = original.Severity

const (
High Severity = original.High
Informational Severity = original.Informational
Low Severity = original.Low
Medium Severity = original.Medium
)

type TriggerOperator = original.TriggerOperator

const (
Equal TriggerOperator = original.Equal
GreaterThan TriggerOperator = original.GreaterThan
LessThan TriggerOperator = original.LessThan
NotEqual TriggerOperator = original.NotEqual
)

type AlertRule = original.AlertRule
type AlertRuleProperties = original.AlertRuleProperties
type AlertRuleKind1 = original.AlertRuleKind1
type AlertRuleModel = original.AlertRuleModel
type AlertRulesClient = original.AlertRulesClient
type AlertRulesList = original.AlertRulesList
type AlertRulesListIterator = original.AlertRulesListIterator
type AlertRulesListPage = original.AlertRulesListPage
type BaseClient = original.BaseClient
type BasicAlertRule = original.BasicAlertRule
type CloudError = original.CloudError
type CloudErrorBody = original.CloudErrorBody
type Operation = original.Operation
Expand All @@ -42,6 +78,8 @@ type OperationsList = original.OperationsList
type OperationsListIterator = original.OperationsListIterator
type OperationsListPage = original.OperationsListPage
type Resource = original.Resource
type ScheduledAlertRule = original.ScheduledAlertRule
type ScheduledAlertRuleProperties = original.ScheduledAlertRuleProperties

func New(subscriptionID string) BaseClient {
return original.New(subscriptionID)
Expand All @@ -52,6 +90,12 @@ func NewAlertRulesClient(subscriptionID string) AlertRulesClient {
func NewAlertRulesClientWithBaseURI(baseURI string, subscriptionID string) AlertRulesClient {
return original.NewAlertRulesClientWithBaseURI(baseURI, subscriptionID)
}
func NewAlertRulesListIterator(page AlertRulesListPage) AlertRulesListIterator {
return original.NewAlertRulesListIterator(page)
}
func NewAlertRulesListPage(getNextPage func(context.Context, AlertRulesList) (AlertRulesList, error)) AlertRulesListPage {
return original.NewAlertRulesListPage(getNextPage)
}
func NewOperationsClient(subscriptionID string) OperationsClient {
return original.NewOperationsClient(subscriptionID)
}
Expand All @@ -67,6 +111,18 @@ func NewOperationsListPage(getNextPage func(context.Context, OperationsList) (Op
func NewWithBaseURI(baseURI string, subscriptionID string) BaseClient {
return original.NewWithBaseURI(baseURI, subscriptionID)
}
func PossibleAlertRuleKindValues() []AlertRuleKind {
return original.PossibleAlertRuleKindValues()
}
func PossibleKindValues() []Kind {
return original.PossibleKindValues()
}
func PossibleSeverityValues() []Severity {
return original.PossibleSeverityValues()
}
func PossibleTriggerOperatorValues() []TriggerOperator {
return original.PossibleTriggerOperatorValues()
}
func UserAgent() string {
return original.UserAgent() + " profiles/preview"
}
Expand Down

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

Loading