1// Package policyinsights implements the Azure ARM Policyinsights service API version 2017-08-09-preview.
2//
3//
4package policyinsights
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 Policyinsights
29	DefaultBaseURI = "https://management.azure.com"
30)
31
32// BaseClient is the base client for Policyinsights.
33type BaseClient struct {
34	autorest.Client
35	BaseURI string
36}
37
38// New creates an instance of the BaseClient client.
39func New() BaseClient {
40	return NewWithBaseURI(DefaultBaseURI)
41}
42
43// NewWithBaseURI creates an instance of the BaseClient client.
44func NewWithBaseURI(baseURI string) BaseClient {
45	return BaseClient{
46		Client:  autorest.NewClientWithUserAgent(UserAgent()),
47		BaseURI: baseURI,
48	}
49}
50