...

Source file src/github.com/Azure/azure-sdk-for-go/profiles/preview/monitor/mgmt/insights/models.go

Documentation: github.com/Azure/azure-sdk-for-go/profiles/preview/monitor/mgmt/insights

     1  //go:build go1.9
     2  // +build go1.9
     3  
     4  // Copyright (c) Microsoft Corporation. All rights reserved.
     5  // Licensed under the MIT License. See License.txt in the project root for license information.
     6  
     7  // This code was auto-generated by:
     8  // github.com/Azure/azure-sdk-for-go/eng/tools/profileBuilder
     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