1package automation
2
3import "github.com/Azure/azure-sdk-for-go/version"
4
5// Copyright (c) Microsoft Corporation. All rights reserved.
6// Licensed under the MIT License. See License.txt in the project root for license information.
7//
8// Code generated by Microsoft (R) AutoRest Code Generator.
9// Changes may cause incorrect behavior and will be lost if the code is regenerated.
10
11// UserAgent returns the UserAgent string to use when sending http.Requests.
12func UserAgent() string {
13	return "Azure-SDK-For-Go/" + Version() + " automation/2018-01-15-preview"
14}
15
16// Version returns the semantic version (see http://semver.org) of the client.
17func Version() string {
18	return version.Number
19}
20