1// Package operationalinsights implements the Azure ARM Operationalinsights service API version 2015-03-20.
2//
3// Operational Insights Client
4package operationalinsights
5
6// Copyright (c) Microsoft and contributors.  All rights reserved.
7//
8// Licensed under the Apache License, Version 2.0 (the "License");
9// you may not use this file except in compliance with the License.
10// You may obtain a copy of the License at
11// http://www.apache.org/licenses/LICENSE-2.0
12//
13// Unless required by applicable law or agreed to in writing, software
14// distributed under the License is distributed on an "AS IS" BASIS,
15// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16//
17// See the License for the specific language governing permissions and
18// limitations under the License.
19//
20// Code generated by Microsoft (R) AutoRest Code Generator.
21// Changes may cause incorrect behavior and will be lost if the code is regenerated.
22
23import (
24	"github.com/Azure/go-autorest/autorest"
25)
26
27const (
28	// DefaultBaseURI is the default URI used for the service Operationalinsights
29	DefaultBaseURI = "https://management.azure.com"
30)
31
32// BaseClient is the base client for Operationalinsights.
33type BaseClient struct {
34	autorest.Client
35	BaseURI        string
36	SubscriptionID string
37	PurgeID        string
38}
39
40// New creates an instance of the BaseClient client.
41func New(subscriptionID string, purgeID string) BaseClient {
42	return NewWithBaseURI(DefaultBaseURI, subscriptionID, purgeID)
43}
44
45// NewWithBaseURI creates an instance of the BaseClient client using a custom endpoint.  Use this when interacting with
46// an Azure cloud that uses a non-standard base URI (sovereign clouds, Azure stack).
47func NewWithBaseURI(baseURI string, subscriptionID string, purgeID string) BaseClient {
48	return BaseClient{
49		Client:         autorest.NewClientWithUserAgent(UserAgent()),
50		BaseURI:        baseURI,
51		SubscriptionID: subscriptionID,
52		PurgeID:        purgeID,
53	}
54}
55