Update dependencies

Among others, this updates minio-go, so that the new "eu-west-3" zone
for AWS is supported.
This commit is contained in:
Alexander Neumann 2018-01-23 19:40:42 +01:00
parent b63de7c798
commit 2b39f9f4b2
3435 changed files with 1318042 additions and 315692 deletions

View file

@ -2,17 +2,14 @@ sudo: false
language: go
go:
- 1.7.x
- 1.8.x
- 1.9.x
install:
- go get -u github.com/golang/lint/golint
- go get -u github.com/Masterminds/glide
- go get -u golang.org/x/net/context
- go get -u gopkg.in/godo.v2/cmd/godo
- go get -u github.com/golang/dep/cmd/dep
- export GO15VENDOREXPERIMENT=1
- glide install
- dep ensure
script:
- bash rungas.sh
@ -27,6 +24,14 @@ script:
- test -z "$(go vet $(find ./arm/* -type d -print) | tee /dev/stderr)"
- test -z "$(golint ./arm/... | tee /dev/stderr)"
- go build ./arm/examples/...
- go build ./profiles/...
- test -z "$(go fmt ./profiles/... | tee /dev/stderr)"
- test -z "$(go vet ./profiles/... | tee /dev/stderr)"
# - test -z "$(golint ./profiles/... | tee /dev/stderr)" # This line should be uncommented once Aliases include comments.
- go build ./services/...
- test -z "$(go fmt ./services/... | tee /dev/stderr)"
- test -z "$(go vet ./services/... | tee /dev/stderr)"
# - test -z "$(golint ./services/... | tee /dev/stderr)"
- go test -v ./management/...
- go test -v ./arm/...
- go test -v ./storage/...

View file

@ -1,5 +1,68 @@
# CHANGELOG
## `v12.2.0-beta`
### Changes
#### Storage
- Add support for creating a SAS client from an endpoint and SAS token.
- Fixed bug that wasn't appending SAS token to URI query parameters in all cases.
## `v12.1.1-beta`
### Changes
- Removing (at least temporarily) calls to `uuid.NewV1()` due to breaking changes (see https://github.com/Azure/azure-sdk-for-go/issues/947 for more info).
- Deleted glide files as we are now using dep.
## `v12.1.0-beta`
### New Services
#### Data plane
- Cognitive Services Computer Vision
- Cognitive Services Content Moderator
- Cognitive Services LUIS
## `v12.0.0-beta`
### Changes
- Long Running Operations now return a `Future` type. Go routines and return via channel features have been removed.
- Added support for services that make use of polymorphic types.
- Operations now make use of the [Context Pattern](https://blog.golang.org/context).
- Container Services has been moved out of Compute folder in its own folder.
- Azure Go SDK is now using [dep](https://github.com/golang/dep) for vendoring.
- The *arm* and *dataplane* folders have been deprecated. Use the *profiles* and the *services* folders instead.
- Group clients have been renamed to a a service specific name.
### New Services
#### Management Plane
- Azure Container Service for Kubernetes (AKS)
- Azure MSI Service
#### Data plane
- Cognitive Services Custom Search
- Cognitive Services Entity Search
- Cognitive Services Image Search
- Cognitive Services News Search
- Cognitive Services Video Search
- Cognitive Services Web Search
- Cognitive Services Spell Check
- MongoDb for CosmosDb
### Generated code notes
- [Azure REST API specs](https://github.com/Azure/azure-rest-api-specs) commit: 515f358fe1e521441aec5d63d62b5f0affcc8ea9
- [AutoRest Go Generator](https://github.com/Azure/autorest.go) commit: c759908a0d8726eb755afd93353c58e072c345af
## `v11.3.0-beta`
### ARM
- Added storage API version 2017-10-01.
## `v11.2.2-beta`
### Bug Fixes
@ -26,21 +89,21 @@
- [AutoRest Go Generator](https://github.com/Azure/autorest.go) version: 2.0.41
## `v11.1.1-beta`
### ARM
- Registers resource providers if necessary.
- Requires go-autorest v9.1.0
### Generated code notes
- [Azure REST API specs](https://github.com/Azure/azure-rest-api-specs) commits:
- All services except trafficmanager and containerregistry: 0c2a12b50d8598f68d6715b507f7dd53e163407e
- trafficmanager and containerregistry: c97a18ed775029207715b09c80761334724740b9
- [AutoRest Go Generator](https://github.com/Azure/autorest.go) version: 2.0.36
### Storage
- Fixed bug in which blob types were unmarshaed incorrectly.
## `v11.1.0-beta`
@ -288,7 +351,7 @@ Storage has been moved to its own repository which can be found here:
https://github.com/Azure/azure-storage-go
For backwards compatibility, a submodule has been added to this repo. However, consuming storage
via this repository is deprecated and may be deleted in future versions.
via this repository is deprecated and may be deleted in future versions.
## `v8.1.0-beta`
### ARM
@ -527,7 +590,7 @@ Below are some design changes.
- Uses go-autorest v6.0.0 (Polling and Asynchronous requests related changes).
## `v0.5.0-beta`
Updated following packages to new API versions:
@ -536,7 +599,7 @@ Updated following packages to new API versions:
- arm/resources/subscriptions 2015-11-01
### Changes
### Changes
- SDK now uses go-autorest v3.0.0.

View file

@ -1,527 +0,0 @@
package main
// Copyright 2017 Microsoft Corporation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// To run this package...
// go run gen.go -- --sdk 3.14.16
import (
"bytes"
"fmt"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
"strings"
"sync"
"time"
do "gopkg.in/godo.v2"
)
type service struct {
Name string
Fullname string
Namespace string
TaskName string
Tag string
Input string
Output string
}
const (
testsSubDir = "tests"
)
type mapping struct {
PlaneInput string
PlaneOutput string
Services []service
}
type failList []string
type failLocker struct {
sync.Mutex
failList
}
var (
start time.Time
gopath = os.Getenv("GOPATH")
sdkVersion string
autorestDir string
swaggersDir string
testGen bool
deps do.P
services = []*service{}
servicesMapping = []mapping{
{
PlaneOutput: "arm",
PlaneInput: "resource-manager",
Services: []service{
{Name: "advisor"},
{Name: "analysisservices"},
// {
// Autorest Bug, duplicate files
// Name: "apimanagement",
// },
{Name: "appinsights"},
{Name: "authorization"},
{Name: "automation"},
// {
// Name: "commerce",
// Input: "azsadmin/resource-manager/commerce",
// Output: "azsadmin/commerce",
// },
// {
// Name: "fabric",
// Input: "azsadmin/resource-manager/fabric",
// Output: "azsadmin/fabric",
// },
// {
// Name: "infrastructureinsights",
// Input: "azsadmin/resource-manager/InfrastructureInsights",
// Output: "azsadmin/infrastructureinsights",
// },
{Name: "batch"},
{Name: "billing"},
{Name: "cdn"},
{Name: "cognitiveservices"},
{Name: "commerce"},
{Name: "compute"},
{
Name: "containerservice",
Input: "compute/resource-manager",
Tag: "package-container-service-2017-01",
},
{Name: "consumption"},
{Name: "containerinstance"},
{Name: "containerregistry"},
{Name: "cosmos-db"},
{Name: "customer-insights"},
{
Name: "account",
Input: "datalake-analytics/resource-manager",
Output: "datalake-analytics/account",
},
{
Name: "account",
Input: "datalake-store/resource-manager",
Output: "datalake-store/account",
},
{Name: "devtestlabs"},
{Name: "dns"},
{Name: "eventgrid"},
{Name: "eventhub"},
{Name: "hdinsight"},
{Name: "intune"},
{Name: "iothub"},
{Name: "keyvault"},
{Name: "logic"},
{
Name: "commitmentplans",
Input: "machinelearning/resource-manager",
Output: "machinelearning/commitmentplans",
Tag: "package-commitmentPlans-2016-05-preview",
},
{
Name: "webservices",
Input: "machinelearning/resource-manager",
Output: "machinelearning/webservices",
Tag: "package-webservices-2017-01",
},
{Name: "marketplaceordering"},
{Name: "mediaservices"},
{Name: "mobileengagement"},
{Name: "monitor"},
{Name: "mysql"},
{Name: "network"},
{Name: "notificationhubs"},
{Name: "operationalinsights"},
{Name: "operationsmanagement"},
{Name: "postgresql"},
{Name: "powerbiembedded"},
{Name: "recoveryservices"},
{Name: "recoveryservicesbackup"},
{Name: "recoveryservicessiterecovery"},
{
Name: "redis",
Tag: "package-2016-04",
},
{Name: "relay"},
{Name: "resourcehealth"},
{
Name: "features",
Input: "resources/resource-manager",
Output: "resources/features",
Tag: "package-features-2015-12",
},
{
Name: "links",
Input: "resources/resource-manager",
Output: "resources/links",
Tag: "package-links-2016-09",
},
{
Name: "locks",
Input: "resources/resource-manager",
Output: "resources/locks",
Tag: "package-locks-2016-09",
},
{
Name: "managedapplications",
Input: "resources/resource-manager",
Output: "resources/managedapplications",
Tag: "package-managedapplications-2016-09",
},
{
Name: "policy",
Input: "resources/resource-manager",
Output: "resources/policy",
Tag: "package-policy-2016-12",
},
{
Name: "resources",
Input: "resources/resource-manager",
Output: "resources/resources",
Tag: "package-resources-2017-05",
},
{
Name: "subscriptions",
Input: "resources/resource-manager",
Output: "resources/subscriptions",
Tag: "package-subscriptions-2016-06",
},
{Name: "scheduler"},
{Name: "search"},
{Name: "servermanagement"},
{Name: "service-map"},
{Name: "servicebus"},
{Name: "servicefabric"},
{Name: "sql"},
{Name: "storage"},
{Name: "storageimportexport"},
{Name: "storsimple8000series"},
{Name: "streamanalytics"},
// {
// error in the modeler
// https://github.com/Azure/autorest/issues/2579
// Name: "timeseriesinsights",
// },
{Name: "trafficmanager"},
{Name: "visualstudio"},
{Name: "web"},
},
},
{
PlaneOutput: "dataplane",
PlaneInput: "data-plane",
Services: []service{
{Name: "keyvault"},
{
Name: "face",
Input: "cognitiveservices/data-plane/Face",
Output: "cognitiveservices/face",
},
{
Name: "textanalytics",
Input: "cognitiveservices/data-plane/TextAnalytics",
Output: "cognitiveservices/textanalytics",
},
},
},
{
PlaneInput: "data-plane",
Services: []service{
{
Name: "filesystem",
Input: "datalake-store/data-plane",
Output: "datalake-store/filesystem",
},
},
},
{
PlaneOutput: "arm",
PlaneInput: "data-plane",
Services: []service{
{Name: "graphrbac"},
},
},
}
fails = failLocker{}
)
func init() {
start = time.Now()
for _, swaggerGroup := range servicesMapping {
swg := swaggerGroup
for _, service := range swg.Services {
s := service
initAndAddService(&s, swg.PlaneInput, swg.PlaneOutput)
}
}
}
func main() {
do.Godo(tasks)
}
func initAndAddService(service *service, planeInput, planeOutput string) {
if service.Input == "" {
service.Input = service.Name
}
path := []string{service.Input}
if service.Input == service.Name {
path = append(path, planeInput)
}
path = append(path, "readme.md")
service.Input = filepath.Join(path...)
if service.Output == "" {
service.Output = service.Name
}
service.TaskName = fmt.Sprintf("%s>%s", planeOutput, strings.Join(strings.Split(service.Output, "/"), ">"))
service.Fullname = filepath.Join(planeOutput, service.Output)
service.Namespace = filepath.Join("github.com", "Azure", "azure-sdk-for-go", service.Fullname)
service.Output = filepath.Join(gopath, "src", service.Namespace)
services = append(services, service)
deps = append(deps, service.TaskName)
}
func tasks(p *do.Project) {
p.Task("default", do.S{"setvars", "generate:all", "management", "report"}, nil)
p.Task("setvars", nil, setVars)
p.Use("generate", generateTasks)
p.Use("gofmt", formatTasks)
p.Use("gobuild", buildTasks)
p.Use("golint", lintTasks)
p.Use("govet", vetTasks)
p.Task("management", do.S{"setvars"}, managementVersion)
p.Task("addVersion", nil, addVersion)
p.Task("report", nil, report)
}
func setVars(c *do.Context) {
if gopath == "" {
panic("Gopath not set\n")
}
sdkVersion = c.Args.MustString("s", "sdk", "version")
autorestDir = c.Args.MayString("", "a", "ar", "autorest")
swaggersDir = c.Args.MayString("", "w", "sw", "swagger")
testGen = c.Args.MayBool(false, "t", "testgen")
}
func generateTasks(p *do.Project) {
addTasks(generate, p)
}
func generate(service *service) {
codegen := "--go"
if testGen {
codegen = "--go.testgen"
service.Fullname = strings.Join([]string{service.Fullname, testsSubDir}, string(os.PathSeparator))
service.Output = filepath.Join(service.Output, testsSubDir)
}
fmt.Printf("Generating %s...\n\n", service.Fullname)
fullInput := ""
if swaggersDir == "" {
fullInput = fmt.Sprintf("https://raw.githubusercontent.com/Azure/azure-rest-api-specs/current/specification/%s", service.Input)
} else {
fullInput = filepath.Join(swaggersDir, "azure-rest-api-specs", "specification", service.Input)
}
execCommand := "autorest"
commandArgs := []string{
fullInput,
codegen,
"--license-header=MICROSOFT_APACHE_NO_VERSION",
fmt.Sprintf("--namespace=%s", service.Name),
fmt.Sprintf("--output-folder=%s", service.Output),
fmt.Sprintf("--package-version=%s", sdkVersion),
"--clear-output-folder",
"--can-clear-output-folder",
}
if service.Tag != "" {
commandArgs = append(commandArgs, fmt.Sprintf("--tag=%s", service.Tag))
}
if testGen {
commandArgs = append([]string{"-LEGACY"}, commandArgs...)
}
if autorestDir != "" {
// if an AutoRest directory was specified then assume
// the caller wants to use a locally-built version.
commandArgs = append(commandArgs, fmt.Sprintf("--use=%s", autorestDir))
}
autorest := exec.Command(execCommand, commandArgs...)
fmt.Println(commandArgs)
if _, stderr, err := runner(autorest); err != nil {
fails.Add(fmt.Sprintf("%s: autorest error: %s: %s", service.Fullname, err, stderr))
}
format(service)
build(service)
lint(service)
vet(service)
}
func formatTasks(p *do.Project) {
addTasks(format, p)
}
func format(service *service) {
fmt.Printf("Formatting %s...\n\n", service.Fullname)
gofmt := exec.Command("gofmt", "-w", service.Output)
_, stderr, err := runner(gofmt)
if err != nil {
fails.Add(fmt.Sprintf("%s: gofmt error:%s: %s", service.Fullname, err, stderr))
}
}
func buildTasks(p *do.Project) {
addTasks(build, p)
}
func build(service *service) {
fmt.Printf("Building %s...\n\n", service.Fullname)
gobuild := exec.Command("go", "build", service.Namespace)
_, stderr, err := runner(gobuild)
if err != nil {
fails.Add(fmt.Sprintf("%s: build error: %s: %s", service.Fullname, err, stderr))
}
}
func lintTasks(p *do.Project) {
addTasks(lint, p)
}
func lint(service *service) {
fmt.Printf("Linting %s...\n\n", service.Fullname)
golint := exec.Command(filepath.Join(gopath, "bin", "golint"), service.Namespace)
_, stderr, err := runner(golint)
if err != nil {
fails.Add(fmt.Sprintf("%s: golint error: %s: %s", service.Fullname, err, stderr))
}
}
func vetTasks(p *do.Project) {
addTasks(vet, p)
}
func vet(service *service) {
fmt.Printf("Vetting %s...\n\n", service.Fullname)
govet := exec.Command("go", "vet", service.Namespace)
_, stderr, err := runner(govet)
if err != nil {
fails.Add(fmt.Sprintf("%s: go vet error: %s: %s", service.Fullname, err, stderr))
}
}
func addVersion(c *do.Context) {
gitStatus := exec.Command("git", "status", "-s")
out, _, err := runner(gitStatus)
if err != nil {
panic(fmt.Errorf("Git error: %s", err))
}
files := strings.Split(out, "\n")
for _, f := range files {
if strings.HasPrefix(f, " M ") && strings.HasSuffix(f, "version.go") {
gitAdd := exec.Command("git", "add", f[3:])
_, _, err := runner(gitAdd)
if err != nil {
panic(fmt.Errorf("Git error: %s", err))
}
}
}
}
func managementVersion(c *do.Context) {
version("management")
}
func version(packageName string) {
versionFile := filepath.Join(packageName, "version.go")
os.Remove(versionFile)
template := `// +build go1.7
package %s
// Copyright 2017 Microsoft Corporation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
var (
sdkVersion = "%s"
)
`
data := []byte(fmt.Sprintf(template, packageName, sdkVersion))
ioutil.WriteFile(versionFile, data, 0644)
}
func addTasks(fn func(*service), p *do.Project) {
for _, service := range services {
s := service
p.Task(s.TaskName, nil, func(c *do.Context) {
fn(s)
})
}
p.Task("all", deps, nil)
}
func runner(cmd *exec.Cmd) (string, string, error) {
var stdout, stderr bytes.Buffer
cmd.Stdout, cmd.Stderr = &stdout, &stderr
err := cmd.Run()
if stdout.Len() > 0 {
fmt.Println(stdout.String())
}
if stderr.Len() > 0 {
fmt.Println(stderr.String())
}
return stdout.String(), stderr.String(), err
}
func (fl *failLocker) Add(fail string) {
fl.Lock()
defer fl.Unlock()
fl.failList = append(fl.failList, fail)
}
func report(c *do.Context) {
fmt.Printf("Script ran for %s\n", time.Since(start))
for _, f := range fails.failList {
fmt.Println(f)
fmt.Println("==========")
}
}

86
vendor/github.com/Azure/azure-sdk-for-go/Gopkg.lock generated vendored Normal file
View file

@ -0,0 +1,86 @@
# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
[[projects]]
name = "github.com/Azure/go-autorest"
packages = ["autorest","autorest/adal","autorest/azure","autorest/date","autorest/to","autorest/validation"]
revision = "809ed2ef5c4c9a60c3c2f3aa9cc11f3a7c2ce59d"
version = "v9.6.0"
[[projects]]
name = "github.com/dgrijalva/jwt-go"
packages = ["."]
revision = "dbeaa9332f19a944acb5736b4456cfcc02140e29"
version = "v3.1.0"
[[projects]]
branch = "master"
name = "github.com/dnaeon/go-vcr"
packages = ["cassette","recorder"]
revision = "87d4990451a858cc210399285be976e63bc3c364"
[[projects]]
name = "github.com/marstr/collection"
packages = ["."]
revision = "871b1cfa2ab97d3d8f54a034280907896190c346"
version = "v0.3.3"
[[projects]]
branch = "master"
name = "github.com/marstr/goalias"
packages = ["model"]
revision = "3026ca7e18e829805b990b41e4ce28c92cb80caa"
[[projects]]
name = "github.com/marstr/guid"
packages = ["."]
revision = "8bdf7d1a087ccc975cf37dd6507da50698fd19ca"
[[projects]]
branch = "master"
name = "github.com/marstr/randname"
packages = ["."]
revision = "3ef1f47af99e66171417047e6f6fa334345e95e7"
[[projects]]
name = "github.com/satori/go.uuid"
packages = ["."]
revision = "879c5887cd475cd7864858769793b2ceb0d44feb"
version = "v1.1.0"
[[projects]]
branch = "master"
name = "github.com/shopspring/decimal"
packages = ["."]
revision = "9ca7f51822d222ae4e246f070f9aad863599bd1a"
[[projects]]
branch = "master"
name = "golang.org/x/crypto"
packages = ["pkcs12","pkcs12/internal/rc2"]
revision = "94eea52f7b742c7cbe0b03b22f0c4c8631ece122"
[[projects]]
branch = "v1"
name = "gopkg.in/check.v1"
packages = ["."]
revision = "20d25e2804050c1cd24a7eea1e7a6447dd0e74ec"
[[projects]]
branch = "v2"
name = "gopkg.in/mgo.v2"
packages = [".","bson","internal/json","internal/sasl","internal/scram"]
revision = "3f83fa5005286a7fe593b055f0d7771a7dce4655"
[[projects]]
branch = "v2"
name = "gopkg.in/yaml.v2"
packages = ["."]
revision = "287cf08546ab5e7e37d55a84f7ed3fd1db036de5"
[solve-meta]
analyzer-name = "dep"
analyzer-version = 1
inputs-digest = "db9074210af478934e87ee6c2b68492578d7c186d94b8f81d82e810b2956cc07"
solver-name = "gps-cdcl"
solver-version = 1

66
vendor/github.com/Azure/azure-sdk-for-go/Gopkg.toml generated vendored Normal file
View file

@ -0,0 +1,66 @@
# Gopkg.toml example
#
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
# for detailed Gopkg.toml documentation.
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"
[[constraint]]
name = "github.com/Azure/go-autorest"
version = "9.6.0"
[[constraint]]
branch = "master"
name = "github.com/dnaeon/go-vcr"
[[constraint]]
name = "github.com/marstr/collection"
version = "0.3.3"
[[constraint]]
branch = "master"
name = "github.com/marstr/goalias"
[[constraint]]
revision = "8bdf7d1a087ccc975cf37dd6507da50698fd19ca"
name = "github.com/marstr/guid"
[[constraint]]
branch = "master"
name = "github.com/marstr/randname"
[[constraint]]
name = "github.com/satori/go.uuid"
version = "1.1.0"
[[constraint]]
branch = "master"
name = "github.com/shopspring/decimal"
[[constraint]]
branch = "master"
name = "golang.org/x/crypto"
[[constraint]]
branch = "v1"
name = "gopkg.in/check.v1"
[[constraint]]
branch = "v2"
name = "gopkg.in/mgo.v2"

View file

@ -19,7 +19,7 @@ $ go get -u github.com/Azure/azure-sdk-for-go/...
```
> **IMPORTANT:** We highly suggest vendoring Azure SDK for Go as a dependency. For vendoring dependencies, Azure SDK
for Go uses [glide](https://github.com/Masterminds/glide).
for Go uses [dep](https://github.com/golang/dep).
# Versioning
## SDK Versions

View file

@ -1,6 +1,8 @@
// Package advisor implements the Azure ARM Advisor service API version 2017-04-19.
//
// REST APIs for Azure Advisor
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/advisor/mgmt/2017-04-19/advisor
package advisor
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package advisor
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-advisor/2017-04-19"
return "Azure-SDK-For-Go/v12.2.0-beta arm-advisor/2017-04-19"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -2,6 +2,8 @@
//
// The Azure Analysis Services Web API provides a RESTful set of web services that enables users to create, retrieve,
// update, and delete Analysis Services servers
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/analysisservices/mgmt/2017-08-01-beta/analysisservices
package analysisservices
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package analysisservices
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-analysisservices/2017-08-01-beta"
return "Azure-SDK-For-Go/v12.2.0-beta arm-analysisservices/2017-08-01-beta"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -2,6 +2,8 @@
// version .
//
// Composite Swagger for ApiManagement Client
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/apimanagement/mgmt/2016-10-10/apimanagement
package apimanagement
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package apimanagement
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v10.2.0-beta arm-apimanagement/"
return "Azure-SDK-For-Go/v12.2.0-beta arm-apimanagement/"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v10.2.0-beta"
return "v12.2.0-beta"
}

View file

@ -2,6 +2,8 @@
// version 2016-07-07.
//
// Use these REST APIs to manage Azure API Management deployment.
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services
package apimdeployment
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -1,6 +1,8 @@
// Package appinsights implements the Azure ARM Appinsights service API version 2015-05-01.
//
// Composite Swagger for Application Insights Management Client
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/appinsights/mgmt/2015-05-01/insights
package appinsights
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package appinsights
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-appinsights/2015-05-01"
return "Azure-SDK-For-Go/v12.2.0-beta arm-appinsights/2015-05-01"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -4,6 +4,8 @@
// resources or resource groups. These operations enable you to manage role definitions and role assignments. A role
// definition describes the set of actions that can be performed on resources. A role assignment grants access to Azure
// Active Directory users.
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/authorization/mgmt/2015-07-01/authorization
package authorization
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package authorization
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-authorization/2015-07-01"
return "Azure-SDK-For-Go/v12.2.0-beta arm-authorization/2015-07-01"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -1,6 +1,8 @@
// Package automation implements the Azure ARM Automation service API version 2015-10-31.
//
// Automation Client
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/automation/mgmt/2015-10-31/automation
package automation
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package automation
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-automation/2015-10-31"
return "Azure-SDK-For-Go/v12.2.0-beta arm-automation/2015-10-31"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -1,6 +1,6 @@
// Package batch implements the Azure ARM Batch service API version 2017-05-01.
//
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/batch/mgmt/2017-05-01/batch
package batch
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package batch
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-batch/2017-05-01"
return "Azure-SDK-For-Go/v12.2.0-beta arm-batch/2017-05-01"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -2,6 +2,8 @@
//
// Billing client provides access to billing resources for Azure Web-Direct subscriptions. Other subscription types
// which were not purchased directly through the Azure web portal are not supported through this preview API.
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/billing/mgmt/2017-04-24-preview/billing
package billing
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package billing
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-billing/2017-04-24-preview"
return "Azure-SDK-For-Go/v12.2.0-beta arm-billing/2017-04-24-preview"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -2,6 +2,8 @@
//
// Use these APIs to manage Azure CDN resources through the Azure Resource Manager. You must make sure that requests
// made to these resources are secure.
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/cdn/mgmt/2017-04-02/cdn
package cdn
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package cdn
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-cdn/2017-04-02"
return "Azure-SDK-For-Go/v12.2.0-beta arm-cdn/2017-04-02"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -1,6 +1,8 @@
// Package cognitiveservices implements the Azure ARM Cognitiveservices service API version 2017-04-18.
//
// Cognitive Services Management Client
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/cognitiveservices/2017-04-18/cognitiveservices
package cognitiveservices
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package cognitiveservices
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-cognitiveservices/2017-04-18"
return "Azure-SDK-For-Go/v12.2.0-beta arm-cognitiveservices/2017-04-18"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -1,6 +1,6 @@
// Package commerce implements the Azure ARM Commerce service API version 2015-06-01-preview.
//
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/commerce/mgmt/2015-06-01-preview/commerce
package commerce
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package commerce
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-commerce/2015-06-01-preview"
return "Azure-SDK-For-Go/v12.2.0-beta arm-commerce/2015-06-01-preview"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -1,6 +1,8 @@
// Package compute implements the Azure ARM Compute service API version .
//
// Compute Client
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2017-03-30/compute
package compute
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package compute
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-compute/"
return "Azure-SDK-For-Go/v12.2.0-beta arm-compute/"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -3,6 +3,8 @@
// Consumption management client provides access to consumption resources for Azure Web-Direct subscriptions. Other
// subscription types which were not purchased directly through the Azure web portal are not supported through this
// preview API.
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/consumption/mgmt/2017-04-24-preview/consumption
package consumption
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package consumption
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-consumption/2017-04-24-preview"
return "Azure-SDK-For-Go/v12.2.0-beta arm-consumption/2017-04-24-preview"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -1,6 +1,6 @@
// Package containerinstance implements the Azure ARM Containerinstance service API version 2017-08-01-preview.
//
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/containerinstance/mgmt/2017-08-01-preview/containerinstance
package containerinstance
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package containerinstance
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-containerinstance/2017-08-01-preview"
return "Azure-SDK-For-Go/v12.2.0-beta arm-containerinstance/2017-08-01-preview"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -1,6 +1,6 @@
// Package containerregistry implements the Azure ARM Containerregistry service API version 2017-10-01.
//
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/containerregistry/mgmt/2017-10-01/containerregistry
package containerregistry
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package containerregistry
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-containerregistry/2017-10-01"
return "Azure-SDK-For-Go/v12.2.0-beta arm-containerregistry/2017-10-01"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -1,6 +1,6 @@
// Package containerservice implements the Azure ARM Containerservice service API version 2017-01-31.
//
// Compute Client
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2017-01-31/containerservice
package containerservice
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package containerservice
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-containerservice/2017-01-31"
return "Azure-SDK-For-Go/v12.2.0-beta arm-containerservice/2017-01-31"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -1,6 +1,8 @@
// Package cosmosdb implements the Azure ARM Cosmosdb service API version 2015-04-08.
//
// Azure Cosmos DB Database Service Resource Provider REST API
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/cosmos-db/mgmt/2015-04-08/documentdb
package cosmosdb
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package cosmosdb
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-cosmosdb/2015-04-08"
return "Azure-SDK-For-Go/v12.2.0-beta arm-cosmosdb/2015-04-08"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -3,6 +3,8 @@
// The Azure Customer Insights management API provides a RESTful set of web services that interact with Azure Customer
// Insights service to manage your resources. The API has entities that capture the relationship between an end user
// and the Azure Customer Insights service.
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/customerinsights/mgmt/2017-04-26/customerinsights
package customerinsights
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package customerinsights
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-customerinsights/2017-04-26"
return "Azure-SDK-For-Go/v12.2.0-beta arm-customerinsights/2017-04-26"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -1,6 +1,8 @@
// Package account implements the Azure ARM Account service API version 2016-11-01.
//
// Creates an Azure Data Lake Analytics account management client.
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/datalake/analytics/mgmt/2016-11-01/account
package account
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package account
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-account/2016-11-01"
return "Azure-SDK-For-Go/v12.2.0-beta arm-account/2016-11-01"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -1,6 +1,8 @@
// Package account implements the Azure ARM Account service API version 2016-11-01.
//
// Creates an Azure Data Lake Store account management client.
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/datalake/store/mgmt/2016-11-01/account
package account
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package account
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-account/2016-11-01"
return "Azure-SDK-For-Go/v12.2.0-beta arm-account/2016-11-01"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -1,5 +1,3 @@
package deployment
// Copyright 2017 Microsoft Corporation
//
// Licensed under the Apache License, Version 2.0 (the "License");
@ -14,6 +12,11 @@ package deployment
// See the License for the specific language governing permissions and
// limitations under the License.
// Package deployment aids in the creation of ARM Templates (i.e. `resources.Deployment`).
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/resources/
package deployment
import (
"encoding/json"
"io/ioutil"

View file

@ -1,6 +1,8 @@
// Package devtestlabs implements the Azure ARM Devtestlabs service API version 2016-05-15.
//
// The DevTest Labs Client.
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/devtestlabs/mgmt/2016-05-15/dtl
package devtestlabs
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package devtestlabs
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-devtestlabs/2016-05-15"
return "Azure-SDK-For-Go/v12.2.0-beta arm-devtestlabs/2016-05-15"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -2,6 +2,8 @@
// 2016-04-30-preview.
//
// The Disk Resource Provider Client.
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2016-04-30-preview/compute
package disk
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package disk
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v10.2.0-beta arm-disk/2016-04-30-preview"
return "Azure-SDK-For-Go/v12.2.0-beta arm-disk/2016-04-30-preview"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v10.2.0-beta"
return "v12.2.0-beta"
}

View file

@ -1,6 +1,8 @@
// Package dns implements the Azure ARM Dns service API version 2016-04-01.
//
// The DNS Management Client.
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/dns/mgmt/2016-04-01/dns
package dns
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package dns
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-dns/2016-04-01"
return "Azure-SDK-For-Go/v12.2.0-beta arm-dns/2016-04-01"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -2,6 +2,8 @@
// 2015-04-08.
//
// Azure DocumentDB Database Service Resource Provider REST API
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/cosmos-db/mgmt/2015-04-08/documentdb
package documentdb
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -20,10 +20,10 @@ package documentdb
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v10.2.0-beta arm-documentdb/2015-04-08"
return "Azure-SDK-For-Go/v12.2.0-beta arm-documentdb/2015-04-08"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v10.2.0-beta"
return "v12.2.0-beta"
}

View file

@ -1,6 +1,8 @@
// Package eventgrid implements the Azure ARM Eventgrid service API version 2017-09-15-preview.
//
// Azure EventGrid Management Client
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/eventgrid/mgmt/2017-09-15-preview/eventgrid
package eventgrid
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package eventgrid
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-eventgrid/2017-09-15-preview"
return "Azure-SDK-For-Go/v12.2.0-beta arm-eventgrid/2017-09-15-preview"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -1,6 +1,8 @@
// Package eventhub implements the Azure ARM Eventhub service API version 2017-04-01.
//
// Azure Event Hubs client
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/eventhub/mgmt/2017-04-01/event
package eventhub
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package eventhub
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-eventhub/2017-04-01"
return "Azure-SDK-For-Go/v12.2.0-beta arm-eventhub/2017-04-01"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -1,6 +1,8 @@
// Package graphrbac implements the Azure ARM Graphrbac service API version 1.6.
//
// The Graph RBAC Management Client
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/graphrbac/1.6/graphrbac
package graphrbac
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package graphrbac
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-graphrbac/1.6"
return "Azure-SDK-For-Go/v12.2.0-beta arm-graphrbac/1.6"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -1,6 +1,8 @@
// Package hdinsight implements the Azure ARM Hdinsight service API version 2015-03-01-preview.
//
// HDInsight Management Client
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/hdinsight/mgmt/2015-03-01-preview/hdinsight
package hdinsight
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package hdinsight
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-hdinsight/2015-03-01-preview"
return "Azure-SDK-For-Go/v12.2.0-beta arm-hdinsight/2015-03-01-preview"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -1,6 +1,8 @@
// Package insights implements the Azure ARM Insights service API version .
//
// Composite Swagger for Insights Management Client
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/monitor/mgmt/2017-05-01-preview/insights
package insights
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package insights
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v10.2.0-beta arm-insights/"
return "Azure-SDK-For-Go/v12.2.0-beta arm-insights/"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v10.2.0-beta"
return "v12.2.0-beta"
}

View file

@ -1,6 +1,8 @@
// Package intune implements the Azure ARM Intune service API version 2015-01-14-preview.
//
// Microsoft.Intune Resource provider Api features in the swagger-2.0 specification
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services
package intune
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package intune
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-intune/2015-01-14-preview"
return "Azure-SDK-For-Go/v12.2.0-beta arm-intune/2015-01-14-preview"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -1,6 +1,8 @@
// Package iothub implements the Azure ARM Iothub service API version 2017-07-01.
//
// Use this API to manage the IoT hubs in your Azure subscription.
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/iothub/mgmt/2017-07-01/devices
package iothub
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package iothub
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-iothub/2017-07-01"
return "Azure-SDK-For-Go/v12.2.0-beta arm-iothub/2017-07-01"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -1,6 +1,8 @@
// Package keyvault implements the Azure ARM Keyvault service API version 2016-10-01.
//
// The Azure management API provides a RESTful set of web services that interact with Azure Key Vault.
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/keyvault/mgmt/2016-10-01/keyvault
package keyvault
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package keyvault
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-keyvault/2016-10-01"
return "Azure-SDK-For-Go/v12.2.0-beta arm-keyvault/2016-10-01"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -1,6 +1,8 @@
// Package logic implements the Azure ARM Logic service API version 2016-06-01.
//
// REST API for Azure Logic Apps.
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/logic/mgmt/2016-06-01/logic
package logic
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package logic
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-logic/2016-06-01"
return "Azure-SDK-For-Go/v12.2.0-beta arm-logic/2016-06-01"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -4,6 +4,8 @@
// Commitment Association resources. They support CRUD operations for commitment plans, get and list operations for
// commitment associations, moving commitment associations between commitment plans, and retrieving commitment plan
// usage history.
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/machinelearning/mgmt/2016-05-01-preview/commitmentplans
package commitmentplans
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package commitmentplans
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-commitmentplans/2016-05-01-preview"
return "Azure-SDK-For-Go/v12.2.0-beta arm-commitmentplans/2016-05-01-preview"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -4,6 +4,8 @@
// operations:<ul><li>Create or update a web service</li><li>Get a web service</li><li>Patch a web
// service</li><li>Delete a web service</li><li>Get All Web Services in a Resource Group </li><li>Get All Web Services
// in a Subscription</li><li>Get Web Services Keys</li></ul>
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/machinelearning/mgmt/2017-01-01/webservices
package webservices
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package webservices
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-webservices/2017-01-01"
return "Azure-SDK-For-Go/v12.2.0-beta arm-webservices/2017-01-01"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -1,6 +1,8 @@
// Package marketplaceordering implements the Azure ARM Marketplaceordering service API version 2015-06-01.
//
// REST API for MarketplaceOrdering Agreements.
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/marketplaceordering/mgmt/2015-06-01/marketplaceordering
package marketplaceordering
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package marketplaceordering
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-marketplaceordering/2015-06-01"
return "Azure-SDK-For-Go/v12.2.0-beta arm-marketplaceordering/2015-06-01"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -1,6 +1,8 @@
// Package mediaservices implements the Azure ARM Mediaservices service API version 2015-10-01.
//
// Media Services resource management APIs.
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/mediaservices/mgmt/2015-10-01/media
package mediaservices
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package mediaservices
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-mediaservices/2015-10-01"
return "Azure-SDK-For-Go/v12.2.0-beta arm-mediaservices/2015-10-01"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -1,6 +1,8 @@
// Package mobileengagement implements the Azure ARM Mobileengagement service API version 2014-12-01.
//
// Microsoft Azure Mobile Engagement REST APIs.
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/mobileengagement/mgmt/2014-12-01/mobileengagement
package mobileengagement
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package mobileengagement
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-mobileengagement/2014-12-01"
return "Azure-SDK-For-Go/v12.2.0-beta arm-mobileengagement/2014-12-01"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -1,6 +1,8 @@
// Package monitor implements the Azure ARM Monitor service API version .
//
// Monitor Management Client
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/monitor/mgmt/2017-05-01-preview/insights
package monitor
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package monitor
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-monitor/"
return "Azure-SDK-For-Go/v12.2.0-beta arm-monitor/"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -2,6 +2,8 @@
//
// The Microsoft Azure management API provides create, read, update, and delete functionality for Azure MySQL resources
// including servers, databases, firewall rules, log files and configurations.
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/mysql/mgmt/2017-04-30-preview/mysql
package mysql
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package mysql
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-mysql/2017-04-30-preview"
return "Azure-SDK-For-Go/v12.2.0-beta arm-mysql/2017-04-30-preview"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -1,6 +1,8 @@
// Package network implements the Azure ARM Network service API version .
//
// Network Client
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/network/mgmt/2017-09-01/network
package network
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package network
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-network/"
return "Azure-SDK-For-Go/v12.2.0-beta arm-network/"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -5,6 +5,8 @@
// services that interact with Microsoft Azure Networks service to manage your
// network resources. The API has entities that capture the relationship
// between an end user and the Microsoft Azure Networks service.
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services
package networkwatcher
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -1,6 +1,8 @@
// Package notificationhubs implements the Azure ARM Notificationhubs service API version 2017-04-01.
//
// Azure NotificationHub client
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/notificationhubs/mgmt/2017-04-01/notificationhubs
package notificationhubs
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package notificationhubs
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-notificationhubs/2017-04-01"
return "Azure-SDK-For-Go/v12.2.0-beta arm-notificationhubs/2017-04-01"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -1,6 +1,8 @@
// Package operationalinsights implements the Azure ARM Operationalinsights service API version .
//
// Operational Insights Client
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/operationalinsights/mgmt/2015-11-01-preview/operationalinsights
package operationalinsights
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package operationalinsights
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-operationalinsights/"
return "Azure-SDK-For-Go/v12.2.0-beta arm-operationalinsights/"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -1,6 +1,8 @@
// Package operationsmanagement implements the Azure ARM Operationsmanagement service API version 2015-11-01-preview.
//
// Operations Management Client
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/operationsmanagement/mgmt/2015-11-01-preview/operationsmanagment
package operationsmanagement
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package operationsmanagement
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-operationsmanagement/2015-11-01-preview"
return "Azure-SDK-For-Go/v12.2.0-beta arm-operationsmanagement/2015-11-01-preview"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -2,6 +2,8 @@
//
// The Microsoft Azure management API provides create, read, update, and delete functionality for Azure PostgreSQL
// resources including servers, databases, firewall rules, log files and configurations.
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/postgresql/mgmt/2017-04-30-preview/postgresql
package postgresql
// Copyright (c) Microsoft and contributors. All rights reserved.

View file

@ -19,10 +19,10 @@ package postgresql
// UserAgent returns the UserAgent string to use when sending http.Requests.
func UserAgent() string {
return "Azure-SDK-For-Go/v11.1.1-beta arm-postgresql/2017-04-30-preview"
return "Azure-SDK-For-Go/v12.2.0-beta arm-postgresql/2017-04-30-preview"
}
// Version returns the semantic version (see http://semver.org) of the client.
func Version() string {
return "v11.1.1-beta"
return "v12.2.0-beta"
}

View file

@ -1,6 +1,8 @@
// Package powerbiembedded implements the Azure ARM Powerbiembedded service API version 2016-01-29.
//
// Client to manage your Power BI Embedded workspace collections and retrieve workspaces.
//
// Deprecated: Please instead use github.com/Azure/azure-sdk-for-go/services/powerbiembedded/mgmt/2016-01-29/powerbiembedded
package powerbiembedded
// Copyright (c) Microsoft and contributors. All rights reserved.

Some files were not shown because too many files have changed in this diff Show more