azure-sdk-for-go

module
v12.3.0-beta+incompatible Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 30, 2018 License: Apache-2.0

README

Azure SDK for Go

godoc Build Status Go Report Card

azure-sdk-for-go provides Go packages for using Azure services. It has been tested with Go 1.8 and 1.9. To be notified about updates and changes, subscribe to the Azure update feed.

NOTE: This project is in preview and breaking changes are introduced frequently. Therefore, vendoring dependencies is even more important than usual. We use dep.

Install:
$ go get -u github.com/Azure/azure-sdk-for-go/...

or if you use dep (recommended), within your project run:

$ dep ensure -add github.com/Azure/azure-sdk-for-go

If you need to install Go, follow the official instructions.

Use:

For complete examples see Azure-Samples/azure-sdk-for-go-samples.

  1. Import a package from the services directory.
  2. Create and authenticate a client with a New*Client func, e.g. c := compute.NewVirtualMachinesClient(...).
  3. Invoke API methods using the client, e.g. c.CreateOrUpdate(...).
  4. Handle responses.

For example, to create a new virtual network (substitute your own values for strings in angle brackets):

import (
	"github.com/Azure/azure-sdk-for-go/services/network/mgmt/2017-09-01/network"
	"github.com/Azure/go-autorest/autorest"
	"github.com/Azure/go-autorest/autorest/to"
)

vnetClient := network.NewVirtualNetworksClient("<subscriptionID>")
vnetClient.Authorizer = autorest.NewBearerAuthorizer("<OAuthTokenProvider>")

vnetClient.CreateOrUpdate(
  "<resourceGroupName>",
  "<vnetName>",
  network.VirtualNetwork{
    Location: to.StringPtr("<azureRegion>"),
    VirtualNetworkPropertiesFormat: &network.VirtualNetworkPropertiesFormat{
      AddressSpace: &network.AddressSpace{
        AddressPrefixes: &[]string{"10.0.0.0/8"},
      },
      Subnets: &[]network.Subnet{
        {
          Name: to.StringPtr("<subnet1Name>"),
          SubnetPropertiesFormat: &network.SubnetPropertiesFormat{
            AddressPrefix: to.StringPtr("10.0.0.0/16"),
          },
        },
        {
          Name: to.StringPtr("<subnet2Name>"),
          SubnetPropertiesFormat: &network.SubnetPropertiesFormat{
            AddressPrefix: to.StringPtr("10.1.0.0/16"),
          },
        },
      },
    },
  },
  nil)

Authentication

Most operations require an OAuth token for authentication and authorization. You can get one from Azure AD using the adal package and a service principal as shown in the following example.

If you need to create a service principal (aka Client, App), run az ad sp create-for-rbac -n "<app_name>" in the azure-cli, see these docs for more info.

Copy the new principal's ID, secret, and tenant ID for use in your app, e.g. as follows:

import (
	"github.com/Azure/go-autorest/autorest/adal"
	"github.com/Azure/go-autorest/autorest/azure"
)

var (
	clientID =        "<service_principal_ID>"
	subscriptionID =  "<subscription_ID>"
	tenantID =        "<tenant_ID>"
	clientSecret =    "<service_principal_secret>"
)

func getServicePrincipalToken() (adal.OAuthTokenProvider, error) {
	config, err := adal.NewOAuthConfig(azure.PublicCloud.ActiveDirectoryEndpoint, tenantID)
	return adal.NewServicePrincipalToken(
		*oauthConfig,
		clientID,
		clientSecret,
		azure.PublicCloud.ResourceManagerEndpoint)
}

Background

Most packages in the SDK are generated from Azure API specs with Azure/autorest and Azure/autorest.go.

A list of available services and package import paths is in [SERVICES.md][].

Versioning

More info in the wiki

You'll need to consider both SDK and API versions when selecting your targets. The following will describe them one by one.

SDK versions are set with repository-wide tags. We try to adhere to semver, so although we've long moved past version zero, we continue to add -beta to versions because this package is still in preview.

Azure API versions are typically a date string of form yyyy-mm-dd[-preview|-beta]. Whatever SDK version you use, you must also specify an API version in your import path, for example:

import "github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2016-03-01/compute"
import "github.com/Azure/azure-sdk-for-go/services/network/mgmt/2017-09-01/network"

For a list of all available services and versions see godoc or start with find ./services -type d -mindepth 3 within this repo.

Azure API profiles specify a subset of APIs and versions offered in specific Azure regions and Azure Stack. The 2017-03-09 profile is intended for use with Azure Stack and includes compatible Compute, Network, Storage and Group management APIs. You can use it as follows:

import "github.com/Azure/azure-sdk-for-go/profiles/2017-03-09/compute/mgmt/compute"
import "github.com/Azure/azure-sdk-for-go/profiles/2017-03-09/network/mgmt/network"
import "github.com/Azure/azure-sdk-for-go/profiles/2017-03-09/resources/mgmt/..."
import "github.com/Azure/azure-sdk-for-go/profiles/2017-03-09/storage/mgmt/storage"

We also provide two special profiles: latest and preview. These will always refer to the most recent stable or preview API versions for each service. For example, to automatically use the most recent Compute APIs, use one of the following imports:

import "github.com/Azure/azure-sdk-for-go/profiles/latest/compute/mgmt/compute"
import "github.com/Azure/azure-sdk-for-go/profiles/preview/compute/mgmt/compute"

Resources

License

Apache 2.0, see LICENSE.

Contribute

See CONTRIBUTING.md.

Directories

Path Synopsis
arm
advisor
Package advisor implements the Azure ARM Advisor service API version 2017-04-19.
Package advisor implements the Azure ARM Advisor service API version 2017-04-19.
analysisservices
Package analysisservices implements the Azure ARM Analysisservices service API version 2017-08-01-beta.
Package analysisservices implements the Azure ARM Analysisservices service API version 2017-08-01-beta.
apimanagement
Package apimanagement implements the Azure ARM Apimanagement service API version .
Package apimanagement implements the Azure ARM Apimanagement service API version .
apimdeployment
Package apimdeployment implements the Azure ARM Apimdeployment service API version 2016-07-07.
Package apimdeployment implements the Azure ARM Apimdeployment service API version 2016-07-07.
appinsights
Package appinsights implements the Azure ARM Appinsights service API version 2015-05-01.
Package appinsights implements the Azure ARM Appinsights service API version 2015-05-01.
authorization
Package authorization implements the Azure ARM Authorization service API version 2015-07-01.
Package authorization implements the Azure ARM Authorization service API version 2015-07-01.
automation
Package automation implements the Azure ARM Automation service API version 2015-10-31.
Package automation implements the Azure ARM Automation service API version 2015-10-31.
batch
Package batch implements the Azure ARM Batch service API version 2017-05-01.
Package batch implements the Azure ARM Batch service API version 2017-05-01.
billing
Package billing implements the Azure ARM Billing service API version 2017-04-24-preview.
Package billing implements the Azure ARM Billing service API version 2017-04-24-preview.
cdn
Package cdn implements the Azure ARM Cdn service API version 2017-04-02.
Package cdn implements the Azure ARM Cdn service API version 2017-04-02.
cognitiveservices
Package cognitiveservices implements the Azure ARM Cognitiveservices service API version 2017-04-18.
Package cognitiveservices implements the Azure ARM Cognitiveservices service API version 2017-04-18.
commerce
Package commerce implements the Azure ARM Commerce service API version 2015-06-01-preview.
Package commerce implements the Azure ARM Commerce service API version 2015-06-01-preview.
compute
Package compute implements the Azure ARM Compute service API version .
Package compute implements the Azure ARM Compute service API version .
consumption
Package consumption implements the Azure ARM Consumption service API version 2017-04-24-preview.
Package consumption implements the Azure ARM Consumption service API version 2017-04-24-preview.
containerinstance
Package containerinstance implements the Azure ARM Containerinstance service API version 2017-08-01-preview.
Package containerinstance implements the Azure ARM Containerinstance service API version 2017-08-01-preview.
containerregistry
Package containerregistry implements the Azure ARM Containerregistry service API version 2017-10-01.
Package containerregistry implements the Azure ARM Containerregistry service API version 2017-10-01.
containerservice
Package containerservice implements the Azure ARM Containerservice service API version 2017-01-31.
Package containerservice implements the Azure ARM Containerservice service API version 2017-01-31.
cosmos-db
Package cosmosdb implements the Azure ARM Cosmosdb service API version 2015-04-08.
Package cosmosdb implements the Azure ARM Cosmosdb service API version 2015-04-08.
customer-insights
Package customerinsights implements the Azure ARM Customerinsights service API version 2017-04-26.
Package customerinsights implements the Azure ARM Customerinsights service API version 2017-04-26.
datalake-analytics/account
Package account implements the Azure ARM Account service API version 2016-11-01.
Package account implements the Azure ARM Account service API version 2016-11-01.
datalake-store/account
Package account implements the Azure ARM Account service API version 2016-11-01.
Package account implements the Azure ARM Account service API version 2016-11-01.
deployment
Package deployment aids in the creation of ARM Templates (i.e.
Package deployment aids in the creation of ARM Templates (i.e.
devtestlabs
Package devtestlabs implements the Azure ARM Devtestlabs service API version 2016-05-15.
Package devtestlabs implements the Azure ARM Devtestlabs service API version 2016-05-15.
disk
Package disk implements the Azure ARM Disk service API version 2016-04-30-preview.
Package disk implements the Azure ARM Disk service API version 2016-04-30-preview.
dns
Package dns implements the Azure ARM Dns service API version 2016-04-01.
Package dns implements the Azure ARM Dns service API version 2016-04-01.
documentdb
Package documentdb implements the Azure ARM Documentdb service API version 2015-04-08.
Package documentdb implements the Azure ARM Documentdb service API version 2015-04-08.
eventgrid
Package eventgrid implements the Azure ARM Eventgrid service API version 2017-09-15-preview.
Package eventgrid implements the Azure ARM Eventgrid service API version 2017-09-15-preview.
eventhub
Package eventhub implements the Azure ARM Eventhub service API version 2017-04-01.
Package eventhub implements the Azure ARM Eventhub service API version 2017-04-01.
graphrbac
Package graphrbac implements the Azure ARM Graphrbac service API version 1.6.
Package graphrbac implements the Azure ARM Graphrbac service API version 1.6.
hdinsight
Package hdinsight implements the Azure ARM Hdinsight service API version 2015-03-01-preview.
Package hdinsight implements the Azure ARM Hdinsight service API version 2015-03-01-preview.
insights
Package insights implements the Azure ARM Insights service API version .
Package insights implements the Azure ARM Insights service API version .
intune
Package intune implements the Azure ARM Intune service API version 2015-01-14-preview.
Package intune implements the Azure ARM Intune service API version 2015-01-14-preview.
iothub
Package iothub implements the Azure ARM Iothub service API version 2017-07-01.
Package iothub implements the Azure ARM Iothub service API version 2017-07-01.
keyvault
Package keyvault implements the Azure ARM Keyvault service API version 2016-10-01.
Package keyvault implements the Azure ARM Keyvault service API version 2016-10-01.
logic
Package logic implements the Azure ARM Logic service API version 2016-06-01.
Package logic implements the Azure ARM Logic service API version 2016-06-01.
machinelearning/commitmentplans
Package commitmentplans implements the Azure ARM Commitmentplans service API version 2016-05-01-preview.
Package commitmentplans implements the Azure ARM Commitmentplans service API version 2016-05-01-preview.
machinelearning/webservices
Package webservices implements the Azure ARM Webservices service API version 2017-01-01.
Package webservices implements the Azure ARM Webservices service API version 2017-01-01.
marketplaceordering
Package marketplaceordering implements the Azure ARM Marketplaceordering service API version 2015-06-01.
Package marketplaceordering implements the Azure ARM Marketplaceordering service API version 2015-06-01.
mediaservices
Package mediaservices implements the Azure ARM Mediaservices service API version 2015-10-01.
Package mediaservices implements the Azure ARM Mediaservices service API version 2015-10-01.
mobileengagement
Package mobileengagement implements the Azure ARM Mobileengagement service API version 2014-12-01.
Package mobileengagement implements the Azure ARM Mobileengagement service API version 2014-12-01.
monitor
Package monitor implements the Azure ARM Monitor service API version .
Package monitor implements the Azure ARM Monitor service API version .
mysql
Package mysql implements the Azure ARM Mysql service API version 2017-04-30-preview.
Package mysql implements the Azure ARM Mysql service API version 2017-04-30-preview.
network
Package network implements the Azure ARM Network service API version .
Package network implements the Azure ARM Network service API version .
networkwatcher
Package networkwatcher implements the Azure ARM Networkwatcher service API version 2016-12-01.
Package networkwatcher implements the Azure ARM Networkwatcher service API version 2016-12-01.
notificationhubs
Package notificationhubs implements the Azure ARM Notificationhubs service API version 2017-04-01.
Package notificationhubs implements the Azure ARM Notificationhubs service API version 2017-04-01.
operationalinsights
Package operationalinsights implements the Azure ARM Operationalinsights service API version .
Package operationalinsights implements the Azure ARM Operationalinsights service API version .
operationsmanagement
Package operationsmanagement implements the Azure ARM Operationsmanagement service API version 2015-11-01-preview.
Package operationsmanagement implements the Azure ARM Operationsmanagement service API version 2015-11-01-preview.
postgresql
Package postgresql implements the Azure ARM Postgresql service API version 2017-04-30-preview.
Package postgresql implements the Azure ARM Postgresql service API version 2017-04-30-preview.
powerbiembedded
Package powerbiembedded implements the Azure ARM Powerbiembedded service API version 2016-01-29.
Package powerbiembedded implements the Azure ARM Powerbiembedded service API version 2016-01-29.
recoveryservices
Package recoveryservices implements the Azure ARM Recoveryservices service API version .
Package recoveryservices implements the Azure ARM Recoveryservices service API version .
recoveryservicesbackup
Package recoveryservicesbackup implements the Azure ARM Recoveryservicesbackup service API version .
Package recoveryservicesbackup implements the Azure ARM Recoveryservicesbackup service API version .
recoveryservicessiterecovery
Package recoveryservicessiterecovery implements the Azure ARM Recoveryservicessiterecovery service API version 2016-08-10.
Package recoveryservicessiterecovery implements the Azure ARM Recoveryservicessiterecovery service API version 2016-08-10.
redis
Package redis implements the Azure ARM Redis service API version 2016-04-01.
Package redis implements the Azure ARM Redis service API version 2016-04-01.
relay
Package relay implements the Azure ARM Relay service API version 2017-04-01.
Package relay implements the Azure ARM Relay service API version 2017-04-01.
resourcehealth
Package resourcehealth implements the Azure ARM Resourcehealth service API version 2017-07-01.
Package resourcehealth implements the Azure ARM Resourcehealth service API version 2017-07-01.
resources/features
Package features implements the Azure ARM Features service API version 2015-12-01.
Package features implements the Azure ARM Features service API version 2015-12-01.
resources/links
Package links implements the Azure ARM Links service API version 2016-09-01.
Package links implements the Azure ARM Links service API version 2016-09-01.
resources/locks
Package locks implements the Azure ARM Locks service API version 2016-09-01.
Package locks implements the Azure ARM Locks service API version 2016-09-01.
resources/managedapplications
Package managedapplications implements the Azure ARM Managedapplications service API version 2016-09-01-preview.
Package managedapplications implements the Azure ARM Managedapplications service API version 2016-09-01-preview.
resources/policy
Package policy implements the Azure ARM Policy service API version 2016-12-01.
Package policy implements the Azure ARM Policy service API version 2016-12-01.
resources/resources
Package resources implements the Azure ARM Resources service API version 2017-05-10.
Package resources implements the Azure ARM Resources service API version 2017-05-10.
resources/subscriptions
Package subscriptions implements the Azure ARM Subscriptions service API version 2016-06-01.
Package subscriptions implements the Azure ARM Subscriptions service API version 2016-06-01.
scheduler
Package scheduler implements the Azure ARM Scheduler service API version 2016-03-01.
Package scheduler implements the Azure ARM Scheduler service API version 2016-03-01.
search
Package search implements the Azure ARM Search service API version 2015-08-19.
Package search implements the Azure ARM Search service API version 2015-08-19.
servermanagement
Package servermanagement implements the Azure ARM Servermanagement service API version 2016-07-01-preview.
Package servermanagement implements the Azure ARM Servermanagement service API version 2016-07-01-preview.
service-map
Package servicemap implements the Azure ARM Servicemap service API version 2015-11-01-preview.
Package servicemap implements the Azure ARM Servicemap service API version 2015-11-01-preview.
servicebus
Package servicebus implements the Azure ARM Servicebus service API version 2017-04-01.
Package servicebus implements the Azure ARM Servicebus service API version 2017-04-01.
servicefabric
Package servicefabric implements the Azure ARM Servicefabric service API version 2016-09-01.
Package servicefabric implements the Azure ARM Servicefabric service API version 2016-09-01.
sql
Package sql implements the Azure ARM Sql service API version .
Package sql implements the Azure ARM Sql service API version .
storage
Package storage implements the Azure ARM Storage service API version 2017-06-01.
Package storage implements the Azure ARM Storage service API version 2017-06-01.
storageimportexport
Package storageimportexport implements the Azure ARM Storageimportexport service API version 2016-11-01.
Package storageimportexport implements the Azure ARM Storageimportexport service API version 2016-11-01.
storsimple8000series
Package storsimple8000series implements the Azure ARM Storsimple8000series service API version 2017-06-01.
Package storsimple8000series implements the Azure ARM Storsimple8000series service API version 2017-06-01.
streamanalytics
Package streamanalytics implements the Azure ARM Streamanalytics service API version 2016-03-01.
Package streamanalytics implements the Azure ARM Streamanalytics service API version 2016-03-01.
trafficmanager
Package trafficmanager implements the Azure ARM Trafficmanager service API version .
Package trafficmanager implements the Azure ARM Trafficmanager service API version .
visualstudio
Package visualstudio implements the Azure ARM Visualstudio service API version 2014-04-01-preview.
Package visualstudio implements the Azure ARM Visualstudio service API version 2014-04-01-preview.
web
Package web implements the Azure ARM Web service API version .
Package web implements the Azure ARM Web service API version .
datalake-store
filesystem
Package filesystem implements the Azure ARM Filesystem service API version 2016-11-01.
Package filesystem implements the Azure ARM Filesystem service API version 2016-11-01.
dataplane
cognitiveservices/face
Package face implements the Azure ARM Face service API version 1.0.
Package face implements the Azure ARM Face service API version 1.0.
cognitiveservices/textanalytics
Package textanalytics implements the Azure ARM Textanalytics service API version v2.0.
Package textanalytics implements the Azure ARM Textanalytics service API version v2.0.
keyvault
Package keyvault implements the Azure ARM Keyvault service API version 2016-10-01.
Package keyvault implements the Azure ARM Keyvault service API version 2016-10-01.
eng
tools/apidiff Module
tools/indexer Module
tools/pkgchk Module
Package management provides the main API client to construct other clients and make requests to the Microsoft Azure Service Management REST API.
Package management provides the main API client to construct other clients and make requests to the Microsoft Azure Service Management REST API.
hostedservice
Package hostedservice provides a client for Hosted Services.
Package hostedservice provides a client for Hosted Services.
location
Package location provides a client for Locations.
Package location provides a client for Locations.
networksecuritygroup
Package networksecuritygroup provides a client for Network Security Groups.
Package networksecuritygroup provides a client for Network Security Groups.
osimage
Package osimage provides a client for Operating System Images.
Package osimage provides a client for Operating System Images.
sql
storageservice
Package storageservice provides a client for Storage Services.
Package storageservice provides a client for Storage Services.
testutils
Package testutils contains some test utilities for the Azure SDK
Package testutils contains some test utilities for the Azure SDK
virtualmachine
Package virtualmachine provides a client for Virtual Machines.
Package virtualmachine provides a client for Virtual Machines.
virtualmachinedisk
Package virtualmachinedisk provides a client for Virtual Machine Disks.
Package virtualmachinedisk provides a client for Virtual Machine Disks.
virtualmachineimage
Package virtualmachineimage provides a client for Virtual Machine Images.
Package virtualmachineimage provides a client for Virtual Machine Images.
virtualnetwork
Package virtualnetwork provides a client for Virtual Networks.
Package virtualnetwork provides a client for Virtual Networks.
vmutils
Package vmutils provides convenience methods for creating Virtual Machine Role configurations.
Package vmutils provides convenience methods for creating Virtual Machine Role configurations.
profile module
p20200901 Module
profiles
sdk
ai/azopenai Module
armcore Module
azcore Module
azidentity Module
data/azcosmos Module
data/aztables Module
internal Module
to Module
services
advisor/mgmt/2016-07-12-preview/advisor
Package advisor implements the Azure ARM Advisor service API version 2016-07-12-preview.
Package advisor implements the Azure ARM Advisor service API version 2016-07-12-preview.
advisor/mgmt/2017-03-31/advisor
Package advisor implements the Azure ARM Advisor service API version 2017-03-31.
Package advisor implements the Azure ARM Advisor service API version 2017-03-31.
advisor/mgmt/2017-04-19/advisor
Package advisor implements the Azure ARM Advisor service API version 2017-04-19.
Package advisor implements the Azure ARM Advisor service API version 2017-04-19.
analysisservices/mgmt/2016-05-16/analysisservices
Package analysisservices implements the Azure ARM Analysisservices service API version 2016-05-16.
Package analysisservices implements the Azure ARM Analysisservices service API version 2016-05-16.
analysisservices/mgmt/2017-07-14/analysisservices
Package analysisservices implements the Azure ARM Analysisservices service API version 2017-07-14.
Package analysisservices implements the Azure ARM Analysisservices service API version 2017-07-14.
analysisservices/mgmt/2017-08-01-beta/analysisservices
Package analysisservices implements the Azure ARM Analysisservices service API version 2017-08-01-beta.
Package analysisservices implements the Azure ARM Analysisservices service API version 2017-08-01-beta.
apimanagement/mgmt/2016-10-10/apimanagement
Package apimanagement implements the Azure ARM Apimanagement service API version 2016-10-10.
Package apimanagement implements the Azure ARM Apimanagement service API version 2016-10-10.
appinsights/mgmt/2015-05-01/insights
Package insights implements the Azure ARM Insights service API version 2015-05-01.
Package insights implements the Azure ARM Insights service API version 2015-05-01.
authorization/mgmt/2015-07-01/authorization
Package authorization implements the Azure ARM Authorization service API version 2015-07-01.
Package authorization implements the Azure ARM Authorization service API version 2015-07-01.
authorization/mgmt/2017-10-01-preview/authorization
Package authorization implements the Azure ARM Authorization service API version .
Package authorization implements the Azure ARM Authorization service API version .
automation/mgmt/2015-10-31/automation
Package automation implements the Azure ARM Automation service API version 2015-10-31.
Package automation implements the Azure ARM Automation service API version 2015-10-31.
batch/2017-05-01.5.0/batch
Package xpackagex implements the Azure ARM Xpackagex service API version 2017-05-01.5.0.
Package xpackagex implements the Azure ARM Xpackagex service API version 2017-05-01.5.0.
batch/mgmt/2015-12-01/batch
Package batch implements the Azure ARM Batch service API version 2015-12-01.
Package batch implements the Azure ARM Batch service API version 2015-12-01.
batch/mgmt/2017-01-01/batch
Package batch implements the Azure ARM Batch service API version 2017-01-01.
Package batch implements the Azure ARM Batch service API version 2017-01-01.
batch/mgmt/2017-05-01/batch
Package batch implements the Azure ARM Batch service API version 2017-05-01.
Package batch implements the Azure ARM Batch service API version 2017-05-01.
batch/mgmt/2017-09-01/batch
Package batch implements the Azure ARM Batch service API version 2017-09-01.
Package batch implements the Azure ARM Batch service API version 2017-09-01.
billing/mgmt/2017-02-27-preview/billing
Package billing implements the Azure ARM Billing service API version 2017-02-27-preview.
Package billing implements the Azure ARM Billing service API version 2017-02-27-preview.
billing/mgmt/2017-04-24-preview/billing
Package billing implements the Azure ARM Billing service API version 2017-04-24-preview.
Package billing implements the Azure ARM Billing service API version 2017-04-24-preview.
cdn/mgmt/2015-06-01/cdn
Package cdn implements the Azure ARM Cdn service API version 2015-06-01.
Package cdn implements the Azure ARM Cdn service API version 2015-06-01.
cdn/mgmt/2016-04-02/cdn
Package cdn implements the Azure ARM Cdn service API version 2016-04-02.
Package cdn implements the Azure ARM Cdn service API version 2016-04-02.
cdn/mgmt/2016-10-02/cdn
Package cdn implements the Azure ARM Cdn service API version 2016-10-02.
Package cdn implements the Azure ARM Cdn service API version 2016-10-02.
cdn/mgmt/2017-04-02/cdn
Package cdn implements the Azure ARM Cdn service API version 2017-04-02.
Package cdn implements the Azure ARM Cdn service API version 2017-04-02.
cognitiveservices/luis/v2.0/runtime
Package runtime implements the Azure ARM Runtime service API version v2.0.
Package runtime implements the Azure ARM Runtime service API version v2.0.
cognitiveservices/mgmt/2016-02-01-preview/cognitiveservices
Package cognitiveservices implements the Azure ARM Cognitiveservices service API version 2016-02-01-preview.
Package cognitiveservices implements the Azure ARM Cognitiveservices service API version 2016-02-01-preview.
cognitiveservices/mgmt/2017-04-18/cognitiveservices
Package cognitiveservices implements the Azure ARM Cognitiveservices service API version 2017-04-18.
Package cognitiveservices implements the Azure ARM Cognitiveservices service API version 2017-04-18.
cognitiveservices/v1.0/computervision
Package computervision implements the Azure ARM Computervision service API version 1.0.
Package computervision implements the Azure ARM Computervision service API version 1.0.
cognitiveservices/v1.0/contentmoderator
Package contentmoderator implements the Azure ARM Contentmoderator service API version 1.0.
Package contentmoderator implements the Azure ARM Contentmoderator service API version 1.0.
cognitiveservices/v1.0/customsearch
Package customsearch implements the Azure ARM Customsearch service API version 1.0.
Package customsearch implements the Azure ARM Customsearch service API version 1.0.
cognitiveservices/v1.0/entitysearch
Package entitysearch implements the Azure ARM Entitysearch service API version 1.0.
Package entitysearch implements the Azure ARM Entitysearch service API version 1.0.
cognitiveservices/v1.0/face
Package face implements the Azure ARM Face service API version 1.0.
Package face implements the Azure ARM Face service API version 1.0.
cognitiveservices/v1.0/imagesearch
Package imagesearch implements the Azure ARM Imagesearch service API version 1.0.
Package imagesearch implements the Azure ARM Imagesearch service API version 1.0.
cognitiveservices/v1.0/newssearch
Package newssearch implements the Azure ARM Newssearch service API version 1.0.
Package newssearch implements the Azure ARM Newssearch service API version 1.0.
cognitiveservices/v1.0/spellcheck
Package spellcheck implements the Azure ARM Spellcheck service API version 1.0.
Package spellcheck implements the Azure ARM Spellcheck service API version 1.0.
cognitiveservices/v1.0/videosearch
Package videosearch implements the Azure ARM Videosearch service API version 1.0.
Package videosearch implements the Azure ARM Videosearch service API version 1.0.
cognitiveservices/v1.0/websearch
Package websearch implements the Azure ARM Websearch service API version 1.0.
Package websearch implements the Azure ARM Websearch service API version 1.0.
cognitiveservices/v2.0/textanalytics
Package textanalytics implements the Azure ARM Textanalytics service API version v2.0.
Package textanalytics implements the Azure ARM Textanalytics service API version v2.0.
commerce/mgmt/2015-06-01-preview/commerce
Package commerce implements the Azure ARM Commerce service API version 2015-06-01-preview.
Package commerce implements the Azure ARM Commerce service API version 2015-06-01-preview.
compute/mgmt/2015-06-15/compute
Package compute implements the Azure ARM Compute service API version 2015-06-15.
Package compute implements the Azure ARM Compute service API version 2015-06-15.
compute/mgmt/2016-03-30/compute
Package compute implements the Azure ARM Compute service API version 2016-03-30.
Package compute implements the Azure ARM Compute service API version 2016-03-30.
compute/mgmt/2016-04-30-preview/compute
Package compute implements the Azure ARM Compute service API version 2016-04-30-preview.
Package compute implements the Azure ARM Compute service API version 2016-04-30-preview.
compute/mgmt/2017-03-30/compute
Package compute implements the Azure ARM Compute service API version 2017-03-30.
Package compute implements the Azure ARM Compute service API version 2017-03-30.
consumption/mgmt/2017-04-24-preview/consumption
Package consumption implements the Azure ARM Consumption service API version 2017-04-24-preview.
Package consumption implements the Azure ARM Consumption service API version 2017-04-24-preview.
containerinstance/mgmt/2017-08-01-preview/containerinstance
Package containerinstance implements the Azure ARM Containerinstance service API version 2017-08-01-preview.
Package containerinstance implements the Azure ARM Containerinstance service API version 2017-08-01-preview.
containerregistry/mgmt/2017-03-01/containerregistry
Package containerregistry implements the Azure ARM Containerregistry service API version 2017-03-01.
Package containerregistry implements the Azure ARM Containerregistry service API version 2017-03-01.
containerregistry/mgmt/2017-06-01-preview/containerregistry
Package containerregistry implements the Azure ARM Containerregistry service API version 2017-06-01-preview.
Package containerregistry implements the Azure ARM Containerregistry service API version 2017-06-01-preview.
containerregistry/mgmt/2017-10-01/containerregistry
Package containerregistry implements the Azure ARM Containerregistry service API version 2017-10-01.
Package containerregistry implements the Azure ARM Containerregistry service API version 2017-10-01.
containerservice/mgmt/2015-11-01-preview/containerservice
Package containerservice implements the Azure ARM Containerservice service API version 2015-11-01-preview.
Package containerservice implements the Azure ARM Containerservice service API version 2015-11-01-preview.
containerservice/mgmt/2016-03-30/containerservice
Package containerservice implements the Azure ARM Containerservice service API version 2016-03-30.
Package containerservice implements the Azure ARM Containerservice service API version 2016-03-30.
containerservice/mgmt/2016-09-30/containerservice
Package containerservice implements the Azure ARM Containerservice service API version 2016-09-30.
Package containerservice implements the Azure ARM Containerservice service API version 2016-09-30.
containerservice/mgmt/2017-01-31/containerservice
Package containerservice implements the Azure ARM Containerservice service API version 2017-01-31.
Package containerservice implements the Azure ARM Containerservice service API version 2017-01-31.
containerservice/mgmt/2017-07-01/containerservice
Package containerservice implements the Azure ARM Containerservice service API version 2017-07-01.
Package containerservice implements the Azure ARM Containerservice service API version 2017-07-01.
containerservice/mgmt/2017-08-31/containerservice
Package containerservice implements the Azure ARM Containerservice service API version .
Package containerservice implements the Azure ARM Containerservice service API version .
containerservice/mgmt/2017-09-30/containerservice
Package containerservice implements the Azure ARM Containerservice service API version .
Package containerservice implements the Azure ARM Containerservice service API version .
cosmos-db/mgmt/2015-04-08/documentdb
Package documentdb implements the Azure ARM Documentdb service API version 2015-04-08.
Package documentdb implements the Azure ARM Documentdb service API version 2015-04-08.
cosmos-db/mongodb
Package mongodb provides Mongo DB dataplane clients for Microsoft Azure CosmosDb Services.
Package mongodb provides Mongo DB dataplane clients for Microsoft Azure CosmosDb Services.
customerinsights/mgmt/2017-01-01/customerinsights
Package customerinsights implements the Azure ARM Customerinsights service API version 2017-01-01.
Package customerinsights implements the Azure ARM Customerinsights service API version 2017-01-01.
customerinsights/mgmt/2017-04-26/customerinsights
Package customerinsights implements the Azure ARM Customerinsights service API version 2017-04-26.
Package customerinsights implements the Azure ARM Customerinsights service API version 2017-04-26.
datafactory/mgmt/2017-09-01-preview/datafactory
Package datafactory implements the Azure ARM Datafactory service API version 2017-09-01-preview.
Package datafactory implements the Azure ARM Datafactory service API version 2017-09-01-preview.
datalake/analytics/2015-10-01-preview/catalog
Package catalog implements the Azure ARM Catalog service API version 2015-10-01-preview.
Package catalog implements the Azure ARM Catalog service API version 2015-10-01-preview.
datalake/analytics/2015-11-01-preview/job
Package job implements the Azure ARM Job service API version 2015-11-01-preview.
Package job implements the Azure ARM Job service API version 2015-11-01-preview.
datalake/analytics/2016-03-20-preview/job
Package job implements the Azure ARM Job service API version 2016-03-20-preview.
Package job implements the Azure ARM Job service API version 2016-03-20-preview.
datalake/analytics/2016-11-01-preview/catalog
Package catalog implements the Azure ARM Catalog service API version 2016-11-01.
Package catalog implements the Azure ARM Catalog service API version 2016-11-01.
datalake/analytics/2016-11-01/job
Package job implements the Azure ARM Job service API version 2016-11-01.
Package job implements the Azure ARM Job service API version 2016-11-01.
datalake/analytics/2017-09-01-preview/job
Package job implements the Azure ARM Job service API version 2017-09-01-preview.
Package job implements the Azure ARM Job service API version 2017-09-01-preview.
datalake/analytics/mgmt/2015-10-01-preview/account
Package account implements the Azure ARM Account service API version 2015-10-01-preview.
Package account implements the Azure ARM Account service API version 2015-10-01-preview.
datalake/analytics/mgmt/2016-11-01/account
Package account implements the Azure ARM Account service API version 2016-11-01.
Package account implements the Azure ARM Account service API version 2016-11-01.
datalake/store/2015-10-01-preview/filesystem
Package filesystem implements the Azure ARM Filesystem service API version 2015-10-01-preview.
Package filesystem implements the Azure ARM Filesystem service API version 2015-10-01-preview.
datalake/store/2016-11-01/filesystem
Package filesystem implements the Azure ARM Filesystem service API version 2016-11-01.
Package filesystem implements the Azure ARM Filesystem service API version 2016-11-01.
datalake/store/mgmt/2015-10-01-preview/account
Package account implements the Azure ARM Account service API version 2015-10-01-preview.
Package account implements the Azure ARM Account service API version 2015-10-01-preview.
datalake/store/mgmt/2016-11-01/account
Package account implements the Azure ARM Account service API version 2016-11-01.
Package account implements the Azure ARM Account service API version 2016-11-01.
devtestlabs/mgmt/2015-05-21-preview/dtl
Package dtl implements the Azure ARM Dtl service API version 2015-05-21-preview.
Package dtl implements the Azure ARM Dtl service API version 2015-05-21-preview.
devtestlabs/mgmt/2016-05-15/dtl
Package dtl implements the Azure ARM Dtl service API version 2016-05-15.
Package dtl implements the Azure ARM Dtl service API version 2016-05-15.
dns/mgmt/2015-05-04-preview/dns
Package dns implements the Azure ARM Dns service API version 2015-05-04-preview.
Package dns implements the Azure ARM Dns service API version 2015-05-04-preview.
dns/mgmt/2016-04-01/dns
Package dns implements the Azure ARM Dns service API version 2016-04-01.
Package dns implements the Azure ARM Dns service API version 2016-04-01.
dns/mgmt/2017-09-01/dns
Package dns implements the Azure ARM Dns service API version 2017-09-01.
Package dns implements the Azure ARM Dns service API version 2017-09-01.
domainservices/mgmt/2017-01-01/aad
Package aad implements the Azure ARM Aad service API version 2017-01-01.
Package aad implements the Azure ARM Aad service API version 2017-01-01.
eventgrid/2018-01-01/eventgrid
Package eventgrid implements the Azure ARM Eventgrid service API version 2018-01-01.
Package eventgrid implements the Azure ARM Eventgrid service API version 2018-01-01.
eventgrid/mgmt/2017-06-15-preview/eventgrid
Package eventgrid implements the Azure ARM Eventgrid service API version 2017-06-15-preview.
Package eventgrid implements the Azure ARM Eventgrid service API version 2017-06-15-preview.
eventgrid/mgmt/2017-09-15-preview/eventgrid
Package eventgrid implements the Azure ARM Eventgrid service API version 2017-09-15-preview.
Package eventgrid implements the Azure ARM Eventgrid service API version 2017-09-15-preview.
eventgrid/mgmt/2018-01-01/eventgrid
Package eventgrid implements the Azure ARM Eventgrid service API version 2018-01-01.
Package eventgrid implements the Azure ARM Eventgrid service API version 2018-01-01.
eventhub/mgmt/2015-08-01/eventhub
Package eventhub implements the Azure ARM Eventhub service API version 2015-08-01.
Package eventhub implements the Azure ARM Eventhub service API version 2015-08-01.
eventhub/mgmt/2017-04-01/eventhub
Package eventhub implements the Azure ARM Eventhub service API version 2017-04-01.
Package eventhub implements the Azure ARM Eventhub service API version 2017-04-01.
graphrbac/1.6/graphrbac
Package graphrbac implements the Azure ARM Graphrbac service API version 1.6.
Package graphrbac implements the Azure ARM Graphrbac service API version 1.6.
hdinsight/mgmt/2015-03-01-preview/hdinsight
Package hdinsight implements the Azure ARM Hdinsight service API version 2015-03-01-preview.
Package hdinsight implements the Azure ARM Hdinsight service API version 2015-03-01-preview.
iothub/mgmt/2016-02-03/devices
Package devices implements the Azure ARM Devices service API version 2016-02-03.
Package devices implements the Azure ARM Devices service API version 2016-02-03.
iothub/mgmt/2017-01-19/devices
Package devices implements the Azure ARM Devices service API version 2017-01-19.
Package devices implements the Azure ARM Devices service API version 2017-01-19.
iothub/mgmt/2017-07-01/devices
Package devices implements the Azure ARM Devices service API version 2017-07-01.
Package devices implements the Azure ARM Devices service API version 2017-07-01.
keyvault/2015-06-01/keyvault
Package keyvault implements the Azure ARM Keyvault service API version 2015-06-01.
Package keyvault implements the Azure ARM Keyvault service API version 2015-06-01.
keyvault/2016-10-01/keyvault
Package keyvault implements the Azure ARM Keyvault service API version 2016-10-01.
Package keyvault implements the Azure ARM Keyvault service API version 2016-10-01.
keyvault/mgmt/2015-06-01/keyvault
Package keyvault implements the Azure ARM Keyvault service API version 2015-06-01.
Package keyvault implements the Azure ARM Keyvault service API version 2015-06-01.
keyvault/mgmt/2016-10-01/keyvault
Package keyvault implements the Azure ARM Keyvault service API version 2016-10-01.
Package keyvault implements the Azure ARM Keyvault service API version 2016-10-01.
logic/mgmt/2015-02-01-preview/logic
Package logic implements the Azure ARM Logic service API version 2015-02-01-preview.
Package logic implements the Azure ARM Logic service API version 2015-02-01-preview.
logic/mgmt/2015-08-01-preview/logic
Package logic implements the Azure ARM Logic service API version 2015-08-01-preview.
Package logic implements the Azure ARM Logic service API version 2015-08-01-preview.
logic/mgmt/2016-06-01/logic
Package logic implements the Azure ARM Logic service API version 2016-06-01.
Package logic implements the Azure ARM Logic service API version 2016-06-01.
machinelearning/mgmt/2016-05-01-preview/commitmentplans
Package commitmentplans implements the Azure ARM Commitmentplans service API version 2016-05-01-preview.
Package commitmentplans implements the Azure ARM Commitmentplans service API version 2016-05-01-preview.
machinelearning/mgmt/2016-05-01-preview/webservices
Package webservices implements the Azure ARM Webservices service API version 2016-05-01-preview.
Package webservices implements the Azure ARM Webservices service API version 2016-05-01-preview.
machinelearning/mgmt/2017-01-01/webservices
Package webservices implements the Azure ARM Webservices service API version 2017-01-01.
Package webservices implements the Azure ARM Webservices service API version 2017-01-01.
machinelearning/mgmt/2017-05-01-preview/experimentation
Package experimentation implements the Azure ARM Experimentation service API version 2017-05-01-preview.
Package experimentation implements the Azure ARM Experimentation service API version 2017-05-01-preview.
machinelearning/mgmt/2017-08-01-preview/compute
Package compute implements the Azure ARM Compute service API version 2017-08-01-preview.
Package compute implements the Azure ARM Compute service API version 2017-08-01-preview.
marketplaceordering/mgmt/2015-06-01/marketplaceordering
Package marketplaceordering implements the Azure ARM Marketplaceordering service API version 2015-06-01.
Package marketplaceordering implements the Azure ARM Marketplaceordering service API version 2015-06-01.
mediaservices/mgmt/2015-10-01/media
Package media implements the Azure ARM Media service API version 2015-10-01.
Package media implements the Azure ARM Media service API version 2015-10-01.
mobileengagement/mgmt/2014-12-01/mobileengagement
Package mobileengagement implements the Azure ARM Mobileengagement service API version 2014-12-01.
Package mobileengagement implements the Azure ARM Mobileengagement service API version 2014-12-01.
monitor/mgmt/2017-05-01-preview/insights
Package insights implements the Azure ARM Insights service API version .
Package insights implements the Azure ARM Insights service API version .
msi/mgmt/2015-08-31-preview/msi
Package msi implements the Azure ARM Msi service API version 2015-08-31-preview.
Package msi implements the Azure ARM Msi service API version 2015-08-31-preview.
mysql/mgmt/2017-04-30-preview/mysql
Package mysql implements the Azure ARM Mysql service API version 2017-04-30-preview.
Package mysql implements the Azure ARM Mysql service API version 2017-04-30-preview.
network/mgmt/2015-05-01-preview/network
Package network implements the Azure ARM Network service API version 2015-05-01-preview.
Package network implements the Azure ARM Network service API version 2015-05-01-preview.
network/mgmt/2015-06-15/network
Package network implements the Azure ARM Network service API version 2015-06-15.
Package network implements the Azure ARM Network service API version 2015-06-15.
network/mgmt/2016-03-30/network
Package network implements the Azure ARM Network service API version 2016-03-30.
Package network implements the Azure ARM Network service API version 2016-03-30.
network/mgmt/2016-06-01/network
Package network implements the Azure ARM Network service API version 2016-06-01.
Package network implements the Azure ARM Network service API version 2016-06-01.
network/mgmt/2016-09-01/network
Package network implements the Azure ARM Network service API version 2016-09-01.
Package network implements the Azure ARM Network service API version 2016-09-01.
network/mgmt/2016-12-01/network
Package network implements the Azure ARM Network service API version 2016-12-01.
Package network implements the Azure ARM Network service API version 2016-12-01.
network/mgmt/2017-03-01/network
Package network implements the Azure ARM Network service API version .
Package network implements the Azure ARM Network service API version .
network/mgmt/2017-06-01/network
Package network implements the Azure ARM Network service API version .
Package network implements the Azure ARM Network service API version .
network/mgmt/2017-08-01/network
Package network implements the Azure ARM Network service API version .
Package network implements the Azure ARM Network service API version .
network/mgmt/2017-09-01/network
Package network implements the Azure ARM Network service API version .
Package network implements the Azure ARM Network service API version .
notificationhubs/mgmt/2014-09-01/notificationhubs
Package notificationhubs implements the Azure ARM Notificationhubs service API version 2014-09-01.
Package notificationhubs implements the Azure ARM Notificationhubs service API version 2014-09-01.
notificationhubs/mgmt/2016-03-01/notificationhubs
Package notificationhubs implements the Azure ARM Notificationhubs service API version 2016-03-01.
Package notificationhubs implements the Azure ARM Notificationhubs service API version 2016-03-01.
notificationhubs/mgmt/2017-04-01/notificationhubs
Package notificationhubs implements the Azure ARM Notificationhubs service API version 2017-04-01.
Package notificationhubs implements the Azure ARM Notificationhubs service API version 2017-04-01.
operationalinsights/mgmt/2015-03-20/operationalinsights
Package operationalinsights implements the Azure ARM Operationalinsights service API version 2015-03-20.
Package operationalinsights implements the Azure ARM Operationalinsights service API version 2015-03-20.
operationalinsights/mgmt/2015-11-01-preview/operationalinsights
Package operationalinsights implements the Azure ARM Operationalinsights service API version .
Package operationalinsights implements the Azure ARM Operationalinsights service API version .
operationalinsights/mgmt/2015-11-01-preview/servicemap
Package servicemap implements the Azure ARM Servicemap service API version 2015-11-01-preview.
Package servicemap implements the Azure ARM Servicemap service API version 2015-11-01-preview.
operationalinsights/v1/operationalinsights
Package operationalinsights implements the Azure ARM Operationalinsights service API version v1.
Package operationalinsights implements the Azure ARM Operationalinsights service API version v1.
operationsmanagement/mgmt/2015-11-01-preview/operationsmanagement
Package operationsmanagement implements the Azure ARM Operationsmanagement service API version 2015-11-01-preview.
Package operationsmanagement implements the Azure ARM Operationsmanagement service API version 2015-11-01-preview.
postgresql/mgmt/2017-04-30-preview/postgresql
Package postgresql implements the Azure ARM Postgresql service API version 2017-04-30-preview.
Package postgresql implements the Azure ARM Postgresql service API version 2017-04-30-preview.
powerbiembedded/mgmt/2016-01-29/powerbiembedded
Package powerbiembedded implements the Azure ARM Powerbiembedded service API version 2016-01-29.
Package powerbiembedded implements the Azure ARM Powerbiembedded service API version 2016-01-29.
redis/mgmt/2015-08-01/redis
Package redis implements the Azure ARM Redis service API version 2015-08-01.
Package redis implements the Azure ARM Redis service API version 2015-08-01.
redis/mgmt/2016-04-01/redis
Package redis implements the Azure ARM Redis service API version 2016-04-01.
Package redis implements the Azure ARM Redis service API version 2016-04-01.
redis/mgmt/2017-02-01/redis
Package redis implements the Azure ARM Redis service API version 2017-02-01.
Package redis implements the Azure ARM Redis service API version 2017-02-01.
redis/mgmt/2017-10-01/cache
Package redis implements the Azure ARM Redis service API version 2017-10-01.
Package redis implements the Azure ARM Redis service API version 2017-10-01.
relay/mgmt/2016-07-01/relay
Package relay implements the Azure ARM Relay service API version 2016-07-01.
Package relay implements the Azure ARM Relay service API version 2016-07-01.
relay/mgmt/2017-04-01/relay
Package relay implements the Azure ARM Relay service API version 2017-04-01.
Package relay implements the Azure ARM Relay service API version 2017-04-01.
resourcehealth/mgmt/2015-01-01/resourcehealth
Package resourcehealth implements the Azure ARM Resourcehealth service API version 2015-01-01.
Package resourcehealth implements the Azure ARM Resourcehealth service API version 2015-01-01.
resourcehealth/mgmt/2017-07-01/resourcehealth
Package resourcehealth implements the Azure ARM Resourcehealth service API version 2017-07-01.
Package resourcehealth implements the Azure ARM Resourcehealth service API version 2017-07-01.
resources/mgmt/2015-01-01/locks
Package locks implements the Azure ARM Locks service API version 2015-01-01.
Package locks implements the Azure ARM Locks service API version 2015-01-01.
resources/mgmt/2015-10-01-preview/policy
Package policy implements the Azure ARM Policy service API version 2015-10-01-preview.
Package policy implements the Azure ARM Policy service API version 2015-10-01-preview.
resources/mgmt/2015-11-01/resources
Package resources implements the Azure ARM Resources service API version 2015-11-01.
Package resources implements the Azure ARM Resources service API version 2015-11-01.
resources/mgmt/2015-11-01/subscriptions
Package subscriptions implements the Azure ARM Subscriptions service API version 2015-11-01.
Package subscriptions implements the Azure ARM Subscriptions service API version 2015-11-01.
resources/mgmt/2015-12-01/features
Package features implements the Azure ARM Features service API version 2015-12-01.
Package features implements the Azure ARM Features service API version 2015-12-01.
resources/mgmt/2016-02-01/resources
Package resources implements the Azure ARM Resources service API version 2016-02-01.
Package resources implements the Azure ARM Resources service API version 2016-02-01.
resources/mgmt/2016-04-01/policy
Package policy implements the Azure ARM Policy service API version 2016-04-01.
Package policy implements the Azure ARM Policy service API version 2016-04-01.
resources/mgmt/2016-06-01/subscriptions
Package subscriptions implements the Azure ARM Subscriptions service API version 2016-06-01.
Package subscriptions implements the Azure ARM Subscriptions service API version 2016-06-01.
resources/mgmt/2016-07-01/resources
Package resources implements the Azure ARM Resources service API version 2016-07-01.
Package resources implements the Azure ARM Resources service API version 2016-07-01.
resources/mgmt/2016-09-01-preview/managedapplications
Package managedapplications implements the Azure ARM Managedapplications service API version 2016-09-01-preview.
Package managedapplications implements the Azure ARM Managedapplications service API version 2016-09-01-preview.
resources/mgmt/2016-09-01/links
Package links implements the Azure ARM Links service API version 2016-09-01.
Package links implements the Azure ARM Links service API version 2016-09-01.
resources/mgmt/2016-09-01/locks
Package locks implements the Azure ARM Locks service API version 2016-09-01.
Package locks implements the Azure ARM Locks service API version 2016-09-01.
resources/mgmt/2016-09-01/resources
Package resources implements the Azure ARM Resources service API version 2016-09-01.
Package resources implements the Azure ARM Resources service API version 2016-09-01.
resources/mgmt/2016-12-01/policy
Package policy implements the Azure ARM Policy service API version 2016-12-01.
Package policy implements the Azure ARM Policy service API version 2016-12-01.
resources/mgmt/2017-05-10/resources
Package resources implements the Azure ARM Resources service API version 2017-05-10.
Package resources implements the Azure ARM Resources service API version 2017-05-10.
resources/mgmt/2017-06-01-preview/policy
Package policy implements the Azure ARM Policy service API version .
Package policy implements the Azure ARM Policy service API version .
resources/mgmt/2017-08-31-preview/management
Package management implements the Azure ARM Management service API version 2017-08-31-preview.
Package management implements the Azure ARM Management service API version 2017-08-31-preview.
scheduler/mgmt/2014-08-01-preview/scheduler
Package scheduler implements the Azure ARM Scheduler service API version 2014-08-01-preview.
Package scheduler implements the Azure ARM Scheduler service API version 2014-08-01-preview.
scheduler/mgmt/2016-01-01/scheduler
Package scheduler implements the Azure ARM Scheduler service API version 2016-01-01.
Package scheduler implements the Azure ARM Scheduler service API version 2016-01-01.
scheduler/mgmt/2016-03-01/scheduler
Package scheduler implements the Azure ARM Scheduler service API version 2016-03-01.
Package scheduler implements the Azure ARM Scheduler service API version 2016-03-01.
search/2016-09-01/search
Package search implements the Azure ARM Search service API version 2016-09-01.
Package search implements the Azure ARM Search service API version 2016-09-01.
search/mgmt/2015-02-28/search
Package search implements the Azure ARM Search service API version 2015-02-28.
Package search implements the Azure ARM Search service API version 2015-02-28.
search/mgmt/2015-08-19/search
Package search implements the Azure ARM Search service API version 2015-08-19.
Package search implements the Azure ARM Search service API version 2015-08-19.
servermanagement/mgmt/2015-07-01-preview/servermanagement
Package servermanagement implements the Azure ARM Servermanagement service API version 2015-07-01-preview.
Package servermanagement implements the Azure ARM Servermanagement service API version 2015-07-01-preview.
servermanagement/mgmt/2016-07-01-preview/servermanagement
Package servermanagement implements the Azure ARM Servermanagement service API version 2016-07-01-preview.
Package servermanagement implements the Azure ARM Servermanagement service API version 2016-07-01-preview.
servicebus/mgmt/2015-08-01/servicebus
Package servicebus implements the Azure ARM Servicebus service API version 2015-08-01.
Package servicebus implements the Azure ARM Servicebus service API version 2015-08-01.
servicebus/mgmt/2017-04-01/servicebus
Package servicebus implements the Azure ARM Servicebus service API version 2017-04-01.
Package servicebus implements the Azure ARM Servicebus service API version 2017-04-01.
servicefabric/1.0.0/servicefabric
Package servicefabric implements the Azure ARM Servicefabric service API version 1.0.0.
Package servicefabric implements the Azure ARM Servicefabric service API version 1.0.0.
servicefabric/5.6/servicefabric
Package servicefabric implements the Azure ARM Servicefabric service API version 5.6.*.
Package servicefabric implements the Azure ARM Servicefabric service API version 5.6.*.
servicefabric/6.0/servicefabric
Package servicefabric implements the Azure ARM Servicefabric service API version 6.0.0.1.
Package servicefabric implements the Azure ARM Servicefabric service API version 6.0.0.1.
servicefabric/mgmt/2016-09-01/servicefabric
Package servicefabric implements the Azure ARM Servicefabric service API version 2016-09-01.
Package servicefabric implements the Azure ARM Servicefabric service API version 2016-09-01.
servicefabric/mgmt/2017-07-01-preview/servicefabric
Package servicefabric implements the Azure ARM Servicefabric service API version 2017-07-01-preview.
Package servicefabric implements the Azure ARM Servicefabric service API version 2017-07-01-preview.
sql/mgmt/2014-04-01/sql
Package sql implements the Azure ARM Sql service API version 2014-04-01.
Package sql implements the Azure ARM Sql service API version 2014-04-01.
sql/mgmt/2015-05-01-preview/sql
Package sql implements the Azure ARM Sql service API version .
Package sql implements the Azure ARM Sql service API version .
sql/mgmt/2017-03-01-preview/sql
Package sql implements the Azure ARM Sql service API version .
Package sql implements the Azure ARM Sql service API version .
storage/mgmt/2015-05-01-preview/storage
Package storage implements the Azure ARM Storage service API version 2015-05-01-preview.
Package storage implements the Azure ARM Storage service API version 2015-05-01-preview.
storage/mgmt/2015-06-15/storage
Package storage implements the Azure ARM Storage service API version 2015-06-15.
Package storage implements the Azure ARM Storage service API version 2015-06-15.
storage/mgmt/2016-01-01/storage
Package storage implements the Azure ARM Storage service API version 2016-01-01.
Package storage implements the Azure ARM Storage service API version 2016-01-01.
storage/mgmt/2016-05-01/storage
Package storage implements the Azure ARM Storage service API version 2016-05-01.
Package storage implements the Azure ARM Storage service API version 2016-05-01.
storage/mgmt/2016-12-01/storage
Package storage implements the Azure ARM Storage service API version 2016-12-01.
Package storage implements the Azure ARM Storage service API version 2016-12-01.
storage/mgmt/2017-06-01/storage
Package storage implements the Azure ARM Storage service API version 2017-06-01.
Package storage implements the Azure ARM Storage service API version 2017-06-01.
storage/mgmt/2017-10-01/storage
Package storage implements the Azure ARM Storage service API version 2017-10-01.
Package storage implements the Azure ARM Storage service API version 2017-10-01.
storageimportexport/mgmt/2016-11-01/storageimportexport
Package storageimportexport implements the Azure ARM Storageimportexport service API version 2016-11-01.
Package storageimportexport implements the Azure ARM Storageimportexport service API version 2016-11-01.
storsimple8000series/mgmt/2017-06-01/storsimple
Package storsimple implements the Azure ARM Storsimple service API version 2017-06-01.
Package storsimple implements the Azure ARM Storsimple service API version 2017-06-01.
streamanalytics/mgmt/2016-03-01/streamanalytics
Package streamanalytics implements the Azure ARM Streamanalytics service API version 2016-03-01.
Package streamanalytics implements the Azure ARM Streamanalytics service API version 2016-03-01.
trafficmanager/mgmt/2015-11-01/trafficmanager
Package trafficmanager implements the Azure ARM Trafficmanager service API version 2015-11-01.
Package trafficmanager implements the Azure ARM Trafficmanager service API version 2015-11-01.
trafficmanager/mgmt/2017-03-01/trafficmanager
Package trafficmanager implements the Azure ARM Trafficmanager service API version 2017-03-01.
Package trafficmanager implements the Azure ARM Trafficmanager service API version 2017-03-01.
trafficmanager/mgmt/2017-05-01/trafficmanager
Package trafficmanager implements the Azure ARM Trafficmanager service API version 2017-05-01.
Package trafficmanager implements the Azure ARM Trafficmanager service API version 2017-05-01.
trafficmanager/mgmt/2017-09-01-preview/trafficmanager
Package trafficmanager implements the Azure ARM Trafficmanager service API version .
Package trafficmanager implements the Azure ARM Trafficmanager service API version .
visualstudio/mgmt/2014-04-01-preview/visualstudio
Package visualstudio implements the Azure ARM Visualstudio service API version 2014-04-01-preview.
Package visualstudio implements the Azure ARM Visualstudio service API version 2014-04-01-preview.
web/mgmt/2015-08-preview/web
Package web implements the Azure ARM Web service API version .
Package web implements the Azure ARM Web service API version .
web/mgmt/2016-09-01/web
Package web implements the Azure ARM Web service API version .
Package web implements the Azure ARM Web service API version .
Package storage provides clients for Microsoft Azure Storage Services.
Package storage provides clients for Microsoft Azure Storage Services.
tools
generator
generator scours the github.com/Azure/azure-rest-api-specs repository in search for REST functionality that has Go configuration, then generates packages accordingly.
generator scours the github.com/Azure/azure-rest-api-specs repository in search for REST functionality that has Go configuration, then generates packages accordingly.
profileBuilder
profileBuilder creates a series of packages filled entirely with alias types and functions supporting those alias types by directing traffic to the functions supporting the original types.
profileBuilder creates a series of packages filled entirely with alias types and functions supporting those alias types by directing traffic to the functions supporting the original types.
apidiff Module
deprecate Module
indexer Module
internal Module
pkgchk Module

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL