...
1
2
3
4
5
6
7
8
9
10 package insights
11
12 import (
13 "context"
14
15 original "github.com/Azure/azure-sdk-for-go/services/monitor/mgmt/2020-10-01/insights"
16 )
17
18 const (
19 DefaultBaseURI = original.DefaultBaseURI
20 )
21
22 type ActionGroup = original.ActionGroup
23 type ActionList = original.ActionList
24 type ActivityLogAlertResource = original.ActivityLogAlertResource
25 type ActivityLogAlertsClient = original.ActivityLogAlertsClient
26 type AlertRuleAllOfCondition = original.AlertRuleAllOfCondition
27 type AlertRuleAnyOfOrLeafCondition = original.AlertRuleAnyOfOrLeafCondition
28 type AlertRuleLeafCondition = original.AlertRuleLeafCondition
29 type AlertRuleList = original.AlertRuleList
30 type AlertRuleListIterator = original.AlertRuleListIterator
31 type AlertRuleListPage = original.AlertRuleListPage
32 type AlertRulePatchObject = original.AlertRulePatchObject
33 type AlertRulePatchProperties = original.AlertRulePatchProperties
34 type AlertRuleProperties = original.AlertRuleProperties
35 type AzureResource = original.AzureResource
36 type BaseClient = original.BaseClient
37 type ErrorResponse = original.ErrorResponse
38
39 func New(subscriptionID string) BaseClient {
40 return original.New(subscriptionID)
41 }
42 func NewActivityLogAlertsClient(subscriptionID string) ActivityLogAlertsClient {
43 return original.NewActivityLogAlertsClient(subscriptionID)
44 }
45 func NewActivityLogAlertsClientWithBaseURI(baseURI string, subscriptionID string) ActivityLogAlertsClient {
46 return original.NewActivityLogAlertsClientWithBaseURI(baseURI, subscriptionID)
47 }
48 func NewAlertRuleListIterator(page AlertRuleListPage) AlertRuleListIterator {
49 return original.NewAlertRuleListIterator(page)
50 }
51 func NewAlertRuleListPage(cur AlertRuleList, getNextPage func(context.Context, AlertRuleList) (AlertRuleList, error)) AlertRuleListPage {
52 return original.NewAlertRuleListPage(cur, getNextPage)
53 }
54 func NewWithBaseURI(baseURI string, subscriptionID string) BaseClient {
55 return original.NewWithBaseURI(baseURI, subscriptionID)
56 }
57 func UserAgent() string {
58 return original.UserAgent() + " profiles/preview"
59 }
60 func Version() string {
61 return original.Version()
62 }
63
View as plain text