diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 9dc7b82e01ab..5ce8e1746eea 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -10,6 +10,14 @@ jobs: vm.image: 'ubuntu-18.04' go.version: '1.13' GOROOT: '/usr/local/go$(go.version)' + Win_Go112: + vm.image: 'windows-2019' + go.version: '1.12' + GOROOT: 'c:\go$(go.version)' + Win_Go113: + vm.image: 'windows-2019' + go.version: '1.13' + GOROOT: 'c:\go$(go.version)' pool: vmImage: $(vm.image) @@ -28,10 +36,10 @@ jobs: mv !(work) '$(sdkPath)' echo '##vso[task.prependpath]$(GOROOT)/bin' echo '##vso[task.prependpath]$(GOPATH)/bin' + go version displayName: 'Create Go Workspace' - script: | set -e - go version curl -sSL https://raw.githubusercontent.com/golang/dep/master/install.sh | sh dep ensure -v go get -u golang.org/x/lint/golint diff --git a/services/maps/mgmt/2017-01-01-preview/maps/models.go b/services/maps/mgmt/2017-01-01-preview/maps/models.go index b498e124ed7d..626217a93580 100644 --- a/services/maps/mgmt/2017-01-01-preview/maps/models.go +++ b/services/maps/mgmt/2017-01-01-preview/maps/models.go @@ -49,6 +49,8 @@ type Account struct { Tags map[string]*string `json:"tags"` // Sku - READ-ONLY; The SKU of this account. Sku *Sku `json:"sku,omitempty"` + // Properties - READ-ONLY; The map account properties. + Properties *AccountProperties `json:"properties,omitempty"` // ID - READ-ONLY; The fully qualified Maps Account resource identifier. ID *string `json:"id,omitempty"` // Name - READ-ONLY; The name of the Maps Account, which is unique within a Resource Group. @@ -100,6 +102,12 @@ type AccountKeys struct { SecondaryKey *string `json:"secondaryKey,omitempty"` } +// AccountProperties additional Map account properties +type AccountProperties struct { + // XMsClientID - A unique identifier for the maps account + XMsClientID *string `json:"x-ms-client-id,omitempty"` +} + // Accounts a list of Maps Accounts. type Accounts struct { autorest.Response `json:"-"`