restic/vendor/github.com/Azure/azure-sdk-for-go/tools/profileBuilder
Alexander Neumann 946c8399e2 Update dependenciess
Exclude minio-go for now (pin to 3.x.y).
2017-12-03 21:22:33 +01:00
..
testdata Update dependenciess 2017-12-03 21:22:33 +01:00
.gitignore Update dependenciess 2017-12-03 21:22:33 +01:00
latest_test.go Update dependenciess 2017-12-03 21:22:33 +01:00
latest.go Update dependenciess 2017-12-03 21:22:33 +01:00
list_test.go Update dependenciess 2017-12-03 21:22:33 +01:00
list.go Update dependenciess 2017-12-03 21:22:33 +01:00
program_test.go Update dependenciess 2017-12-03 21:22:33 +01:00
program.go Update dependenciess 2017-12-03 21:22:33 +01:00
README.md Update dependenciess 2017-12-03 21:22:33 +01:00
test.sh Update dependenciess 2017-12-03 21:22:33 +01:00

Profile Builder

Overview

Azure Profiles offer a means of virtualizing the API Versions of services that should be targeted by an application or SDK. This concept was introduced for Azure Stack, where the environment in which applications will be executed is less consistent than when targeting the public cloud. However, its usefulness as a means of easily snapping to versions of a service is broadly applicapable. Using profiles, it is easy to use a single version of models and operations throughout an application, or a means of locking to versions of services that have been tested and are guaranteed to work together.

Type aliases were introduced in Go 1.9, effectively allowing for multiple symbols to be mapped to a single type. The impact of this for our support of profiles is tremendous. It allows for seamless interoperability between packages using different profiles, but where those profiles still target the same API Version of a service. Without type aliases, we would have been forced to generate code in a way that required some ugly casts to be scattered throughout the consumer's code.

Installation

Note: These installation notes assume that you have Go 1.9 or higher, Glide, and Git installed.

The simplest version of installation is simple, just run the following command:

go get -u github.com/Azure/azure-sdk-for-go/tools/profileBuilder

If that causes you trouble, run the following commands:

# bash
go get -d github.com/Azure/azure-sdk-for-go/tools/profileBuilder
cd $GOPATH/src/github.com/Azure/azure-sdk-for-go/tools/profileBuilder
glide install
go install
# PowerShell
go get -d github.com/Azure/azure-sdk-for-go/tools/profileBuilder
cd $env:GOPATH\src\github.com\Azure\azure-sdk-for-go\tools\profileBuilder
glide install
go install

Taking things a step further, if you'd like the profileBuilder to stamp the version of itself in the code it generates, you can install as below:

# bash
go get -d github.com/Azure/azure-sdk-for-go/tools/profileBuilder
cd $GOPATH/src/github.com/Azure/azure-sdk-for-go/tools/profileBuilder
glide install
export currentCommit=$(git rev-parse HEAD)
go install -ldflags "-X main.version=$currentCommit"
# PowerShell
go get -d github.com/Azure/azure-sdk-for-go/tools/profileBuilder
cd $env:GOPATH\src\github.com\Azure\azure-sdk-for-go\tools\profileBuilder
glide install
$currentCommit = git rev-parse HEAD
go install -ldflags "-X main.version=$currentCommit"