...
1
2
3
4
5
6
7
8
9
10 package activitylogs
11
12 import (
13 "context"
14
15 original "github.com/Azure/azure-sdk-for-go/services/monitor/mgmt/2020-10-01/activitylogs"
16 )
17
18 const (
19 DefaultBaseURI = original.DefaultBaseURI
20 )
21
22 type EventLevel = original.EventLevel
23
24 const (
25 EventLevelCritical EventLevel = original.EventLevelCritical
26 EventLevelError EventLevel = original.EventLevelError
27 EventLevelInformational EventLevel = original.EventLevelInformational
28 EventLevelVerbose EventLevel = original.EventLevelVerbose
29 EventLevelWarning EventLevel = original.EventLevelWarning
30 )
31
32 type ActionGroupForActivityLogAlerts = original.ActionGroupForActivityLogAlerts
33 type ActionList = original.ActionList
34 type AlertResource = original.AlertResource
35 type AlertRuleAllOfCondition = original.AlertRuleAllOfCondition
36 type AlertRuleAnyOfOrLeafCondition = original.AlertRuleAnyOfOrLeafCondition
37 type AlertRuleLeafCondition = original.AlertRuleLeafCondition
38 type AlertRuleList = original.AlertRuleList
39 type AlertRuleListIterator = original.AlertRuleListIterator
40 type AlertRuleListPage = original.AlertRuleListPage
41 type AlertRulePatchObject = original.AlertRulePatchObject
42 type AlertRulePatchProperties = original.AlertRulePatchProperties
43 type AlertRuleProperties = original.AlertRuleProperties
44 type AlertsClient = original.AlertsClient
45 type AzureResource = original.AzureResource
46 type BaseClient = original.BaseClient
47 type Client = original.Client
48 type ErrorResponse = original.ErrorResponse
49 type EventData = original.EventData
50 type EventDataCollection = original.EventDataCollection
51 type EventDataCollectionIterator = original.EventDataCollectionIterator
52 type EventDataCollectionPage = original.EventDataCollectionPage
53 type HTTPRequestInfo = original.HTTPRequestInfo
54 type LocalizableString = original.LocalizableString
55 type SenderAuthorization = original.SenderAuthorization
56 type TenantActivityLogsClient = original.TenantActivityLogsClient
57
58 func New(subscriptionID string) BaseClient {
59 return original.New(subscriptionID)
60 }
61 func NewAlertRuleListIterator(page AlertRuleListPage) AlertRuleListIterator {
62 return original.NewAlertRuleListIterator(page)
63 }
64 func NewAlertRuleListPage(cur AlertRuleList, getNextPage func(context.Context, AlertRuleList) (AlertRuleList, error)) AlertRuleListPage {
65 return original.NewAlertRuleListPage(cur, getNextPage)
66 }
67 func NewAlertsClient(subscriptionID string) AlertsClient {
68 return original.NewAlertsClient(subscriptionID)
69 }
70 func NewAlertsClientWithBaseURI(baseURI string, subscriptionID string) AlertsClient {
71 return original.NewAlertsClientWithBaseURI(baseURI, subscriptionID)
72 }
73 func NewClient(subscriptionID string) Client {
74 return original.NewClient(subscriptionID)
75 }
76 func NewClientWithBaseURI(baseURI string, subscriptionID string) Client {
77 return original.NewClientWithBaseURI(baseURI, subscriptionID)
78 }
79 func NewEventDataCollectionIterator(page EventDataCollectionPage) EventDataCollectionIterator {
80 return original.NewEventDataCollectionIterator(page)
81 }
82 func NewEventDataCollectionPage(cur EventDataCollection, getNextPage func(context.Context, EventDataCollection) (EventDataCollection, error)) EventDataCollectionPage {
83 return original.NewEventDataCollectionPage(cur, getNextPage)
84 }
85 func NewTenantActivityLogsClient(subscriptionID string) TenantActivityLogsClient {
86 return original.NewTenantActivityLogsClient(subscriptionID)
87 }
88 func NewTenantActivityLogsClientWithBaseURI(baseURI string, subscriptionID string) TenantActivityLogsClient {
89 return original.NewTenantActivityLogsClientWithBaseURI(baseURI, subscriptionID)
90 }
91 func NewWithBaseURI(baseURI string, subscriptionID string) BaseClient {
92 return original.NewWithBaseURI(baseURI, subscriptionID)
93 }
94 func PossibleEventLevelValues() []EventLevel {
95 return original.PossibleEventLevelValues()
96 }
97 func UserAgent() string {
98 return original.UserAgent() + " profiles/latest"
99 }
100 func Version() string {
101 return original.Version()
102 }
103
View as plain text