...

Source file src/github.com/Azure/azure-sdk-for-go/profiles/2017-03-09/resources/mgmt/features/models.go

Documentation: github.com/Azure/azure-sdk-for-go/profiles/2017-03-09/resources/mgmt/features

     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 features
    11  
    12  import (
    13  	"context"
    14  
    15  	original "github.com/Azure/azure-sdk-for-go/services/resources/mgmt/2015-12-01/features"
    16  )
    17  
    18  const (
    19  	DefaultBaseURI = original.DefaultBaseURI
    20  )
    21  
    22  type BaseClient = original.BaseClient
    23  type Client = original.Client
    24  type Operation = original.Operation
    25  type OperationDisplay = original.OperationDisplay
    26  type OperationListResult = original.OperationListResult
    27  type OperationListResultIterator = original.OperationListResultIterator
    28  type OperationListResultPage = original.OperationListResultPage
    29  type OperationsListResult = original.OperationsListResult
    30  type OperationsListResultIterator = original.OperationsListResultIterator
    31  type OperationsListResultPage = original.OperationsListResultPage
    32  type Properties = original.Properties
    33  type Result = original.Result
    34  
    35  func New(subscriptionID string) BaseClient {
    36  	return original.New(subscriptionID)
    37  }
    38  func NewClient(subscriptionID string) Client {
    39  	return original.NewClient(subscriptionID)
    40  }
    41  func NewClientWithBaseURI(baseURI string, subscriptionID string) Client {
    42  	return original.NewClientWithBaseURI(baseURI, subscriptionID)
    43  }
    44  func NewOperationListResultIterator(page OperationListResultPage) OperationListResultIterator {
    45  	return original.NewOperationListResultIterator(page)
    46  }
    47  func NewOperationListResultPage(cur OperationListResult, getNextPage func(context.Context, OperationListResult) (OperationListResult, error)) OperationListResultPage {
    48  	return original.NewOperationListResultPage(cur, getNextPage)
    49  }
    50  func NewOperationsListResultIterator(page OperationsListResultPage) OperationsListResultIterator {
    51  	return original.NewOperationsListResultIterator(page)
    52  }
    53  func NewOperationsListResultPage(cur OperationsListResult, getNextPage func(context.Context, OperationsListResult) (OperationsListResult, error)) OperationsListResultPage {
    54  	return original.NewOperationsListResultPage(cur, getNextPage)
    55  }
    56  func NewWithBaseURI(baseURI string, subscriptionID string) BaseClient {
    57  	return original.NewWithBaseURI(baseURI, subscriptionID)
    58  }
    59  func UserAgent() string {
    60  	return original.UserAgent() + " profiles/2017-03-09"
    61  }
    62  func Version() string {
    63  	return original.Version()
    64  }
    65  

View as plain text