1// Package batch implements the Azure ARM Batch service API version 2019-08-01.10.0.
2//
3// A client for issuing REST requests to the Azure Batch service.
4package batch
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
27// BaseClient is the base client for Batch.
28type BaseClient struct {
29	autorest.Client
30	BatchURL string
31}
32
33// New creates an instance of the BaseClient client.
34func New(batchURL string) BaseClient {
35	return NewWithoutDefaults(batchURL)
36}
37
38// NewWithoutDefaults creates an instance of the BaseClient client.
39func NewWithoutDefaults(batchURL string) BaseClient {
40	return BaseClient{
41		Client:   autorest.NewClientWithUserAgent(UserAgent()),
42		BatchURL: batchURL,
43	}
44}
45