sdk

package module
v17.1.0+incompatible Latest Latest
Warning

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

Go to latest
Published: Jun 4, 2018 License: Apache-2.0 Imports: 0 Imported by: 1

README

Azure SDK for Go

godoc Build Status Go Report Card

azure-sdk-for-go provides Go packages for managing and using Azure services. It has been tested with Go 1.8, 1.9 and 1.10.

To be notified about updates and changes, subscribe to the Azure update feed.

Users of the SDK may prefer to jump right in to our samples repo at github.com/Azure-Samples/azure-sdk-for-go-samples.

Build Details

Most packages in the SDK are generated from Azure API specs using Azure/autorest.go and Azure/autorest. These generated packages depend on the HTTP client implemented at Azure/go-autorest.

The SDK codebase adheres to semantic versioning and thus avoids breaking changes other than at major (x.0.0) releases. However, occasionally Azure API fixes require breaking updates within an individual package; these exceptions are noted in release changelogs.

To more reliably manage dependencies like the Azure SDK in your applications we recommend golang/dep.

Install and Use:

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

or if you use dep, within your repo 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 of many scenarios 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):

Note: For more on authentication and the Authorizer interface see the next section.

package main

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

func main() {
	vnetClient := network.NewVirtualNetworksClient("<subscriptionID>")
	authorizer, err := auth.NewAuthorizerFromEnvironment()

	if err == nil {
		vnetClient.Authorizer = authorizer
	}

	vnetClient.CreateOrUpdate(context.Background(),
		"<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"),
						},
					},
				},
			},
		})
}
Authentication

Most SDK operations require an OAuth token for authentication and authorization. These are made available in the Go SDK For Azure through types implementing the Authorizer interface. You can get one from Azure Active Directory using the SDK's authentication package. The Authorizer returned should be set as the authorizer for the resource client, as shown in the previous section.

You can get an authorizer in the following ways:

  1. From the Environment:
  • Use auth.auth.NewAuthorizerFromEnvironment(). This call will try to get an authorizer based on the environment variables with different types of credentials in the following order:

    1. Client Credentials: Uses the AAD App Secret for auth.
    • AZURE_TENANT_ID: Specifies the Tenant to which to authenticate.
    • AZURE_CLIENT_ID: Specifies the app client ID to use.
    • AZURE_CLIENT_SECRET: Specifies the app secret to use.
    1. Client Certificate: Uses a certificate that was configured on the AAD Service Principal.
    • AZURE_TENANT_ID: Specifies the Tenant to which to authenticate.
    • AZURE_CLIENT_ID: Specifies the app client ID to use.
    • AZURE_CERTIFICATE_PATH: Specifies the certificate Path to use.
    • AZURE_CERTIFICATE_PASSWORD: Specifies the certificate password to use.
    1. Username Pasword: Uses a username and a password for auth. This is not recommended. Use Device Flow Auth instead for user interactive acccess.
    • AZURE_TENANT_ID: Specifies the Tenant to which to authenticate.
    • AZURE_CLIENT_ID: Specifies the app client ID to use.
    • AZURE_USERNAME: Specifies the username to use.
    • AZURE_PASSWORD: Specifies the password to use.
    1. MSI: Only available for apps running in Azure. No configuration needed as it leverages the fact that the app is running in Azure. See Azure Managed Service Identity.
  • Optionally, the following environment variables can be defined:

    • AZURE_ENVIRONMENT: Specifies the Azure Environment to use. If not set, it defaults to AzurePublicCloud. (Not applicable to MSI based auth)
    • AZURE_AD_RESOURCE: Specifies the AAD resource ID to use. If not set, it defaults to ResourceManagerEndpointwhich allows management operations against Azure Resource Manager.
  1. From an Auth File:
  • Create a service principal and output the file content using az ad sp create-for-rbac --sdk-auth from the Azure CLI.For more details see az ad sp.
  • Set environment variable AZURE_AUTH_LOCATION for finding the file.
  • Use auth.NewAuthorizerFromFile() for getting the Authorizer based on the auth file.
  1. From Device Flow by configuring auth.DeviceFlowConfig and calling the Authorizer() method.

Note: To authenticate you first need to create a service principal in Azure. To create a new service principal, 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.

Alternatively, if your apps are running in Azure, you can now leverage the Managed Service Identity.

Versioning

azure-sdk-for-go provides at least a basic Go binding for every Azure API. To provide maximum flexibility to users, the SDK even includes previous versions of Azure APIs which are still in use. This enables us to support users of the most updated Azure datacenters, regional datacenters with earlier APIs, and even on-premises installations of Azure Stack.

SDK versions apply globally and are tracked by git tags. These are in x.y.z form and generally adhere to semantic versioning specifications.

Service API versions are generally represented by a date string and are tracked by offering separate packages for each version. For example, to choose the latest API versions for Compute and Network, use the following imports:

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

Occasionally service-side changes require major changes to existing versions. These cases are noted in the changelog.

All avilable services and versions are listed under the services/ path in this repo and in GoDoc. Run find ./services -type d -mindepth 3 to list all available service packages.

Profiles

Azure API profiles specify subsets of Azure APIs and versions. Profiles can provide:

  • stability for your application by locking to specific API versions; and/or
  • compatibility for your application with Azure Stack and regional Azure datacenters.

In the Go SDK, profiles are available under the profiles/ path and their component API versions are aliases to the true service package under services/. You can use them 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/storage/mgmt/storage"

The 2017-03-09 profile is the only one currently available and is for use in hybrid Azure and Azure Stack environments. More profiles are under development.

In addition to versioned profiles, we also provide two special profiles latest and preview. These always include the most recent respective stable or preview API versions for each service, even when updating them to do so causes breaking changes. That is, these do not adhere to semantic versioning rules.

The latest and preview profiles can help you stay up to date with API updates as you build applications. Since they are by definition not stable, however, they should not be used in production apps. Instead, choose the latest specific API version (or an older one if necessary) from the services/ path.

As an 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"

Inspecting and Debugging

All clients implement some handy hooks to help inspect the underlying requests being made to Azure.

  • RequestInspector: View and manipulate the go http.Request before it's sent
  • ResponseInspector: View the http.Response received

Here is an example of how these can be used with net/http/httputil to see requests and responses.


vnetClient := network.NewVirtualNetworksClient("<subscriptionID>")
vnetClient.RequestInspector = LogRequest()
vnetClient.ResponseInspector = LogResponse()

...

func LogRequest() autorest.PrepareDecorator {
	return func(p autorest.Preparer) autorest.Preparer {
		return autorest.PreparerFunc(func(r *http.Request) (*http.Request, error) {
			r, err := p.Prepare(r)
			if err != nil {
				log.Println(err)
			}
			dump, _ := httputil.DumpRequestOut(r, true)
			log.Println(string(dump))
			return r, err
		})
	}
}

func LogResponse() autorest.RespondDecorator {
	return func(p autorest.Responder) autorest.Responder {
		return autorest.ResponderFunc(func(r *http.Response) error {
			err := p.Respond(r)
			if err != nil {
				log.Println(err)
			}
			dump, _ := httputil.DumpResponse(r, true)
			log.Println(string(dump))
			return err
		})
	}
}

Resources

Other Azure packages for Go

License

Apache 2.0, see LICENSE.

Contribute

See CONTRIBUTING.md.

Documentation

Overview

Package sdk provides Go packages for managing and using Azure services.

GitHub repo: https://github.com/Azure/azure-sdk-for-go

Official documentation: https://docs.microsoft.com/go/azure

API reference: https://godoc.org/github.com/Azure/azure-sdk-for-go

Samples: https://github.com/Azure-Samples/azure-sdk-for-go-samples

Directories

Path Synopsis
eng
tools/apidiff Module
tools/indexer Module
tools/pkgchk Module
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
addons/mgmt/2017-05-15/addons
Package addons implements the Azure ARM Addons service API version 2017-05-15.
Package addons implements the Azure ARM Addons service API version 2017-05-15.
addons/mgmt/2018-03-01/addons
Package addons implements the Azure ARM Addons service API version 2018-03-01.
Package addons implements the Azure ARM Addons service API version 2018-03-01.
adhybridhealthservice/mgmt/2014-01-01/adhybridhealthservice
Package adhybridhealthservice implements the Azure ARM Adhybridhealthservice service API version 2014-01-01.
Package adhybridhealthservice implements the Azure ARM Adhybridhealthservice service API version 2014-01-01.
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.
analysisservices/mgmt/2017-08-01/analysisservices
Package analysisservices implements the Azure ARM Analysisservices service API version 2017-08-01.
Package analysisservices implements the Azure ARM Analysisservices service API version 2017-08-01.
apimanagement/mgmt/2016-07-07/apimanagement
Package apimanagement implements the Azure ARM Apimanagement service API version 2016-07-07.
Package apimanagement implements the Azure ARM Apimanagement service API version 2016-07-07.
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.
apimanagement/mgmt/2017-03-01/apimanagement
Package apimanagement implements the Azure ARM Apimanagement service API version 2017-03-01.
Package apimanagement implements the Azure ARM Apimanagement service API version 2017-03-01.
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.
appinsights/v1/appinsights
Package implements the Azure ARM service API version v1.
Package implements the Azure ARM service API version v1.
appinsights/v1/insights
Package insights implements the Azure ARM Insights service API version v1.
Package insights implements the Azure ARM Insights service API version v1.
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 .
authorization/mgmt/2018-01-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.
automation/mgmt/2017-05-15-preview/automation
Package automation implements the Azure ARM Automation service API version .
Package automation implements the Azure ARM Automation service API version .
azsadmin/mgmt/2016-05-01/fabric
Package fabric implements the Azure ARM Fabric service API version 2016-05-01.
Package fabric implements the Azure ARM Fabric service API version 2016-05-01.
azsadmin/mgmt/2016-05-01/infrastructureinsights
Package infrastructureinsights implements the Azure ARM Infrastructureinsights service API version 2016-05-01.
Package infrastructureinsights implements the Azure ARM Infrastructureinsights service API version 2016-05-01.
azurestack/mgmt/2017-06-01/azurestack
Package azurestack implements the Azure ARM Azurestack service API version 2017-06-01.
Package azurestack implements the Azure ARM Azurestack service API version 2017-06-01.
batch/2015-12-01.2.2/batch
Package batch implements the Azure ARM Batch service API version 2015-12-01.2.2.
Package batch implements the Azure ARM Batch service API version 2015-12-01.2.2.
batch/2016-02-01.3.0/batch
Package batch implements the Azure ARM Batch service API version 2016-02-01.3.0.
Package batch implements the Azure ARM Batch service API version 2016-02-01.3.0.
batch/2016-07-01.3.1/batch
Package batch implements the Azure ARM Batch service API version 2016-07-01.3.1.
Package batch implements the Azure ARM Batch service API version 2016-07-01.3.1.
batch/2017-01-01.4.0/batch
Package batch implements the Azure ARM Batch service API version 2017-01-01.4.0.
Package batch implements the Azure ARM Batch service API version 2017-01-01.4.0.
batch/2017-05-01.5.0/batch
Package batch implements the Azure ARM Batch service API version 2017-05-01.5.0.
Package batch implements the Azure ARM Batch service API version 2017-05-01.5.0.
batch/2017-06-01.5.1/batch
Package batch implements the Azure ARM Batch service API version 2017-06-01.5.1.
Package batch implements the Azure ARM Batch service API version 2017-06-01.5.1.
batch/2017-09-01.6.0/batch
Package batch implements the Azure ARM Batch service API version 2017-09-01.6.0.
Package batch implements the Azure ARM Batch service API version 2017-09-01.6.0.
batch/2018-03-01.6.1/batch
Package batch implements the Azure ARM Batch service API version 2018-03-01.6.1.
Package batch implements the Azure ARM Batch service API version 2018-03-01.6.1.
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.
batchai/mgmt/2017-09-preview/batchai
Package batchai implements the Azure ARM Batchai service API version 2017-09-01-preview.
Package batchai implements the Azure ARM Batchai service API version 2017-09-01-preview.
batchai/mgmt/2018-03-01/batchai
Package batchai implements the Azure ARM Batchai service API version 2018-03-01.
Package batchai implements the Azure ARM Batchai service API version 2018-03-01.
batchai/mgmt/2018-05-01/batchai
Package batchai implements the Azure ARM Batchai service API version 2018-05-01.
Package batchai implements the Azure ARM Batchai service API version 2018-05-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.
billing/mgmt/2018-03-01-preview/billing
Package billing implements the Azure ARM Billing service API version 2018-03-01-preview.
Package billing implements the Azure ARM Billing service API version 2018-03-01-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.
cdn/mgmt/2017-10-12/cdn
Package cdn implements the Azure ARM Cdn service API version 2017-10-12.
Package cdn implements the Azure ARM Cdn service API version 2017-10-12.
classic/management
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.
classic/management/hostedservice
Package hostedservice provides a client for Hosted Services.
Package hostedservice provides a client for Hosted Services.
classic/management/location
Package location provides a client for Locations.
Package location provides a client for Locations.
classic/management/networksecuritygroup
Package networksecuritygroup provides a client for Network Security Groups.
Package networksecuritygroup provides a client for Network Security Groups.
classic/management/osimage
Package osimage provides a client for Operating System Images.
Package osimage provides a client for Operating System Images.
classic/management/storageservice
Package storageservice provides a client for Storage Services.
Package storageservice provides a client for Storage Services.
classic/management/testutils
Package testutils contains some test utilities for the Azure SDK
Package testutils contains some test utilities for the Azure SDK
classic/management/virtualmachine
Package virtualmachine provides a client for Virtual Machines.
Package virtualmachine provides a client for Virtual Machines.
classic/management/virtualmachinedisk
Package virtualmachinedisk provides a client for Virtual Machine Disks.
Package virtualmachinedisk provides a client for Virtual Machine Disks.
classic/management/virtualmachineimage
Package virtualmachineimage provides a client for Virtual Machine Images.
Package virtualmachineimage provides a client for Virtual Machine Images.
classic/management/virtualnetwork
Package virtualnetwork provides a client for Virtual Networks.
Package virtualnetwork provides a client for Virtual Networks.
classic/management/vmutils
Package vmutils provides convenience methods for creating Virtual Machine Role configurations.
Package vmutils provides convenience methods for creating Virtual Machine Role configurations.
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/customimagesearch
Package customimagesearch implements the Azure ARM Customimagesearch service API version 1.0.
Package customimagesearch implements the Azure ARM Customimagesearch 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/v1.1/customvision/prediction
Package prediction implements the Azure ARM Prediction service API version 2.0.
Package prediction implements the Azure ARM Prediction service API version 2.0.
cognitiveservices/v1.2/customvision/training
Package training implements the Azure ARM Training service API version 2.0.
Package training implements the Azure ARM Training service API version 2.0.
cognitiveservices/v2.0/luis/authoring
Package authoring implements the Azure ARM Authoring service API version v2.0 preview.
Package authoring implements the Azure ARM Authoring service API version v2.0 preview.
cognitiveservices/v2.0/luis/programmatic
Package programmatic implements the Azure ARM Programmatic service API version v2.0 preview.
Package programmatic implements the Azure ARM Programmatic service API version v2.0 preview.
cognitiveservices/v2.0/luis/runtime
Package runtime implements the Azure ARM Runtime service API version v2.0 preview.
Package runtime implements the Azure ARM Runtime service API version v2.0 preview.
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 .
Package compute implements the Azure ARM Compute service API version .
compute/mgmt/2017-12-01/compute
Package compute implements the Azure ARM Compute service API version .
Package compute implements the Azure ARM Compute service API version .
compute/mgmt/2018-04-01/compute
Package compute implements the Azure ARM Compute service API version .
Package compute implements the Azure ARM Compute service API version .
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.
consumption/mgmt/2017-11-30/consumption
Package consumption implements the Azure ARM Consumption service API version 2017-11-30.
Package consumption implements the Azure ARM Consumption service API version 2017-11-30.
consumption/mgmt/2017-12-30-preview/consumption
Package consumption implements the Azure ARM Consumption service API version 2017-12-30-preview.
Package consumption implements the Azure ARM Consumption service API version 2017-12-30-preview.
consumption/mgmt/2018-01-31/consumption
Package consumption implements the Azure ARM Consumption service API version 2018-01-31.
Package consumption implements the Azure ARM Consumption service API version 2018-01-31.
consumption/mgmt/2018-03-31/consumption
Package consumption implements the Azure ARM Consumption service API version 2018-03-31.
Package consumption implements the Azure ARM Consumption service API version 2018-03-31.
consumption/mgmt/2018-05-31/consumption
Package consumption implements the Azure ARM Consumption service API version 2018-05-31.
Package consumption implements the Azure ARM Consumption service API version 2018-05-31.
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.
containerinstance/mgmt/2017-10-01-preview/containerinstance
Package containerinstance implements the Azure ARM Containerinstance service API version 2017-10-01-preview.
Package containerinstance implements the Azure ARM Containerinstance service API version 2017-10-01-preview.
containerinstance/mgmt/2017-12-01-preview/containerinstance
Package containerinstance implements the Azure ARM Containerinstance service API version 2017-12-01-preview.
Package containerinstance implements the Azure ARM Containerinstance service API version 2017-12-01-preview.
containerinstance/mgmt/2018-02-01-preview/containerinstance
Package containerinstance implements the Azure ARM Containerinstance service API version 2018-02-01-preview.
Package containerinstance implements the Azure ARM Containerinstance service API version 2018-02-01-preview.
containerinstance/mgmt/2018-04-01/containerinstance
Package containerinstance implements the Azure ARM Containerinstance service API version 2018-04-01.
Package containerinstance implements the Azure ARM Containerinstance service API version 2018-04-01.
containerregistry/mgmt/2016-06-27-preview/containerregistry
Package containerregistry implements the Azure ARM Containerregistry service API version 2016-06-27-preview.
Package containerregistry implements the Azure ARM Containerregistry service API version 2016-06-27-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.
databox/mgmt/2018-01-01/databox
Package databox implements the Azure ARM Databox service API version 2018-01-01.
Package databox implements the Azure ARM Databox service API version 2018-01-01.
databricks/mgmt/2018-04-01/databricks
Package databricks implements the Azure ARM Databricks service API version 2018-04-01.
Package databricks implements the Azure ARM Databricks service API version 2018-04-01.
datacatalog/mgmt/2016-03-30/datacatalog
Package datacatalog implements the Azure ARM Datacatalog service API version 2016-03-30.
Package datacatalog implements the Azure ARM Datacatalog service API version 2016-03-30.
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.
datamigration/mgmt/2017-11-15-preview/datamigration
Package datamigration implements the Azure ARM Datamigration service API version 2017-11-15-preview.
Package datamigration implements the Azure ARM Datamigration service API version 2017-11-15-preview.
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.
dns/mgmt/2017-10-01/dns
Package dns implements the Azure ARM Dns service API version 2017-10-01.
Package dns implements the Azure ARM Dns service API version 2017-10-01.
dns/mgmt/2018-03-01-preview/dns
Package dns implements the Azure ARM Dns service API version 2018-03-01-preview.
Package dns implements the Azure ARM Dns service API version 2018-03-01-preview.
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.
domainservices/mgmt/2017-06-01/aad
Package aad implements the Azure ARM Aad service API version 2017-06-01.
Package aad implements the Azure ARM Aad service API version 2017-06-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.
hanaonazure/mgmt/2017-06-15-preview/hanaonazure
Package hanaonazure implements the Azure ARM Hanaonazure service API version 2017-06-15-preview.
Package hanaonazure implements the Azure ARM Hanaonazure service API version 2017-06-15-preview.
hanaonazure/mgmt/2017-11-03-preview/hanaonazure
Package hanaonazure implements the Azure ARM Hanaonazure service API version 2017-11-03-preview.
Package hanaonazure implements the Azure ARM Hanaonazure service API version 2017-11-03-preview.
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.
iothub/mgmt/2018-01-22/devices
Package devices implements the Azure ARM Devices service API version 2018-01-22.
Package devices implements the Azure ARM Devices service API version 2018-01-22.
iothub/mgmt/2018-04-01/devices
Package devices implements the Azure ARM Devices service API version 2018-04-01.
Package devices implements the Azure ARM Devices service API version 2018-04-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.
location/mgmt/2017-01-01-preview/location
Package location implements the Azure ARM Location service API version 2017-01-01-preview.
Package location implements the Azure ARM Location service API version 2017-01-01-preview.
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-04-01/workspaces
Package workspaces implements the Azure ARM Workspaces service API version 2016-04-01.
Package workspaces implements the Azure ARM Workspaces service API version 2016-04-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-06-01-preview/compute
Package compute implements the Azure ARM Compute service API version 2017-06-01-preview.
Package compute implements the Azure ARM Compute service API version 2017-06-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.
managementpartner/mgmt/2018-02-01/managementpartner
Package managementpartner implements the Azure ARM Managementpartner service API version 2018-02-01.
Package managementpartner implements the Azure ARM Managementpartner service API version 2018-02-01.
maps/mgmt/2017-01-01-preview/maps
Package maps implements the Azure ARM Maps service API version 2017-01-01-preview.
Package maps implements the Azure ARM Maps service API version 2017-01-01-preview.
maps/mgmt/2018-05-01/maps
Package maps implements the Azure ARM Maps service API version 2018-05-01.
Package maps implements the Azure ARM Maps service API version 2018-05-01.
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.
migrate/mgmt/2018-02-02/migrate
Package migrate implements the Azure ARM Migrate service API version 2018-02-02.
Package migrate implements the Azure ARM Migrate service API version 2018-02-02.
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 .
monitor/mgmt/2017-09-01/insights
Package insights implements the Azure ARM Insights service API version .
Package insights implements the Azure ARM Insights service API version .
monitor/mgmt/2018-03-01/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.
mysql/mgmt/2017-12-01-preview/mysql
Package mysql implements the Azure ARM Mysql service API version 2017-12-01-preview.
Package mysql implements the Azure ARM Mysql service API version 2017-12-01-preview.
mysql/mgmt/2017-12-01/mysql
Package mysql implements the Azure ARM Mysql service API version 2017-12-01.
Package mysql implements the Azure ARM Mysql service API version 2017-12-01.
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 .
network/mgmt/2017-10-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-11-01/network
Package network implements the Azure ARM Network service API version .
Package network implements the Azure ARM Network service API version .
network/mgmt/2018-01-01/network
Package network implements the Azure ARM Network service API version .
Package network implements the Azure ARM Network service API version .
network/mgmt/2018-02-01/network
Package network implements the Azure ARM Network service API version .
Package network implements the Azure ARM Network service API version .
network/mgmt/2018-04-01/network
Package network implements the Azure ARM Network service API version .
Package network implements the Azure ARM Network service API version .
network/mgmt/2018-05-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 2015-11-01-preview.
Package operationalinsights implements the Azure ARM Operationalinsights service API version 2015-11-01-preview.
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.
policyinsights/mgmt/2017-08-09-preview/policyinsights
Package policyinsights implements the Azure ARM Policyinsights service API version 2017-08-09-preview.
Package policyinsights implements the Azure ARM Policyinsights service API version 2017-08-09-preview.
policyinsights/mgmt/2017-10-17-preview/policyinsights
Package policyinsights implements the Azure ARM Policyinsights service API version 2017-10-17-preview.
Package policyinsights implements the Azure ARM Policyinsights service API version 2017-10-17-preview.
policyinsights/mgmt/2017-12-12-preview/policyinsights
Package policyinsights implements the Azure ARM Policyinsights service API version 2017-12-12-preview.
Package policyinsights implements the Azure ARM Policyinsights service API version 2017-12-12-preview.
policyinsights/mgmt/2018-04-04/policyinsights
Package policyinsights implements the Azure ARM Policyinsights service API version 2018-04-04.
Package policyinsights implements the Azure ARM Policyinsights service API version 2018-04-04.
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.
postgresql/mgmt/2017-12-01-preview/postgresql
Package postgresql implements the Azure ARM Postgresql service API version 2017-12-01-preview.
Package postgresql implements the Azure ARM Postgresql service API version 2017-12-01-preview.
postgresql/mgmt/2017-12-01/postgresql
Package postgresql implements the Azure ARM Postgresql service API version 2017-12-01.
Package postgresql implements the Azure ARM Postgresql service API version 2017-12-01.
powerbidedicated/mgmt/2017-10-01/powerbidedicated
Package powerbidedicated implements the Azure ARM Powerbidedicated service API version 2017-10-01.
Package powerbidedicated implements the Azure ARM Powerbidedicated service API version 2017-10-01.
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.
preview/addons/mgmt/2017-05-15/addons
Package addons implements the Azure ARM Addons service API version 2017-05-15.
Package addons implements the Azure ARM Addons service API version 2017-05-15.
preview/addons/mgmt/2018-03-01/addons
Package addons implements the Azure ARM Addons service API version 2018-03-01.
Package addons implements the Azure ARM Addons service API version 2018-03-01.
preview/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.
preview/analysisservices/preview/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.
preview/apimanagement/ctrl/2017-03-01/apimanagement
Package apimanagement implements the Azure ARM Apimanagement service API version 2017-03-01.
Package apimanagement implements the Azure ARM Apimanagement service API version 2017-03-01.
preview/apimanagement/mgmt/2018-01-01/apimanagement
Package apimanagement implements the Azure ARM Apimanagement service API version 2018-01-01.
Package apimanagement implements the Azure ARM Apimanagement service API version 2018-01-01.
preview/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 .
preview/authorization/mgmt/2018-01-01-preview/authorization
Package authorization implements the Azure ARM Authorization service API version .
Package authorization implements the Azure ARM Authorization service API version .
preview/batchai/mgmt/2017-09-preview/batchai
Package batchai implements the Azure ARM Batchai service API version 2017-09-01-preview.
Package batchai implements the Azure ARM Batchai service API version 2017-09-01-preview.
preview/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.
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.
preview/billing/mgmt/2018-03-01-preview/billing
Package billing implements the Azure ARM Billing service API version 2018-03-01-preview.
Package billing implements the Azure ARM Billing service API version 2018-03-01-preview.
preview/botservice/mgmt/2017-12-01/botservices
Package botservice implements the Azure ARM Botservice service API version 2017-12-01.
Package botservice implements the Azure ARM Botservice service API version 2017-12-01.
preview/cognitiveservices/preview/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.
preview/cognitiveservices/v1.0/visualsearch
Package visualsearch implements the Azure ARM Visualsearch service API version 1.0.
Package visualsearch implements the Azure ARM Visualsearch service API version 1.0.
preview/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.
preview/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.
preview/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.
preview/consumption/mgmt/2017-12-30-preview/consumption
Package consumption implements the Azure ARM Consumption service API version 2017-12-30-preview.
Package consumption implements the Azure ARM Consumption service API version 2017-12-30-preview.
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.
preview/containerinstance/mgmt/2017-10-01-preview/containerinstance
Package containerinstance implements the Azure ARM Containerinstance service API version 2017-10-01-preview.
Package containerinstance implements the Azure ARM Containerinstance service API version 2017-10-01-preview.
preview/containerinstance/mgmt/2017-12-01-preview/containerinstance
Package containerinstance implements the Azure ARM Containerinstance service API version 2017-12-01-preview.
Package containerinstance implements the Azure ARM Containerinstance service API version 2017-12-01-preview.
preview/containerinstance/mgmt/2018-02-01-preview/containerinstance
Package containerinstance implements the Azure ARM Containerinstance service API version 2018-02-01-preview.
Package containerinstance implements the Azure ARM Containerinstance service API version 2018-02-01-preview.
preview/containerregistry/mgmt/2016-06-27-preview/containerregistry
Package containerregistry implements the Azure ARM Containerregistry service API version 2016-06-27-preview.
Package containerregistry implements the Azure ARM Containerregistry service API version 2016-06-27-preview.
preview/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.
preview/containerregistry/mgmt/2018-02-01/containerregistry
Package containerregistry implements the Azure ARM Containerregistry service API version .
Package containerregistry implements the Azure ARM Containerregistry service API version .
preview/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.
preview/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.
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.
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.
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.
preview/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.
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.
preview/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.
preview/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.
preview/datamigration/mgmt/2017-11-15-preview/datamigration
Package datamigration implements the Azure ARM Datamigration service API version 2017-11-15-preview.
Package datamigration implements the Azure ARM Datamigration service API version 2017-11-15-preview.
preview/datamigration/mgmt/2018-03-31-preview/datamigration
Package datamigration implements the Azure ARM Datamigration service API version 2018-03-31-preview.
Package datamigration implements the Azure ARM Datamigration service API version 2018-03-31-preview.
preview/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.
preview/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.
preview/dns/mgmt/2018-03-01-preview/dns
Package dns implements the Azure ARM Dns service API version 2018-03-01-preview.
Package dns implements the Azure ARM Dns service API version 2018-03-01-preview.
preview/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.
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.
preview/eventgrid/mgmt/2018-05-01-preview/eventgrid
Package eventgrid implements the Azure ARM Eventgrid service API version 2018-05-01-preview.
Package eventgrid implements the Azure ARM Eventgrid service API version 2018-05-01-preview.
preview/eventhub/mgmt/2018-01-01-preview/eventhub
Package eventhub implements the Azure ARM Eventhub service API version 2018-01-01-preview.
Package eventhub implements the Azure ARM Eventhub service API version 2018-01-01-preview.
preview/hanaonazure/mgmt/2017-11-03-preview/hanaonazure
Package hanaonazure implements the Azure ARM Hanaonazure service API version 2017-11-03-preview.
Package hanaonazure implements the Azure ARM Hanaonazure service API version 2017-11-03-preview.
preview/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.
preview/iotcentral/mgmt/2017-07-01-privatepreview/iotcentral
Package iotcentral implements the Azure ARM Iotcentral service API version 2017-07-01-privatepreview.
Package iotcentral implements the Azure ARM Iotcentral service API version 2017-07-01-privatepreview.
preview/iotspaces/mgmt/2017-10-01-preview/iotspaces
Package iotspaces implements the Azure ARM Iotspaces service API version 2017-10-01-preview.
Package iotspaces implements the Azure ARM Iotspaces service API version 2017-10-01-preview.
preview/keyvault/v7.0/keyvault
Package keyvault implements the Azure ARM Keyvault service API version 7.0-preview.
Package keyvault implements the Azure ARM Keyvault service API version 7.0-preview.
preview/location/mgmt/2017-01-01-preview/location
Package location implements the Azure ARM Location service API version 2017-01-01-preview.
Package location implements the Azure ARM Location service API version 2017-01-01-preview.
preview/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.
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.
preview/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.
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.
preview/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.
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.
preview/machinelearning/mgmt/2018-03-01-preview/services
Package services implements the Azure ARM Services service API version 2018-03-01-preview.
Package services implements the Azure ARM Services service API version 2018-03-01-preview.
preview/managementpartner/mgmt/2018-02-01/managementpartner
Package managementpartner implements the Azure ARM Managementpartner service API version 2018-02-01.
Package managementpartner implements the Azure ARM Managementpartner service API version 2018-02-01.
preview/mediaservices/mgmt/2018-03-30-preview/media
Package media implements the Azure ARM Media service API version 2018-03-30-preview.
Package media implements the Azure ARM Media service API version 2018-03-30-preview.
preview/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 .
preview/monitor/mgmt/2018-03-01/insights
Package insights implements the Azure ARM Insights service API version .
Package insights implements the Azure ARM Insights service API version .
preview/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.
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.
preview/operationalinsights/mgmt/2015-11-01-preview/operationalinsights
Package operationalinsights implements the Azure ARM Operationalinsights service API version 2015-11-01-preview.
Package operationalinsights implements the Azure ARM Operationalinsights service API version 2015-11-01-preview.
preview/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.
preview/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.
preview/policyinsights/mgmt/2017-08-09-preview/policyinsights
Package policyinsights implements the Azure ARM Policyinsights service API version 2017-08-09-preview.
Package policyinsights implements the Azure ARM Policyinsights service API version 2017-08-09-preview.
preview/policyinsights/mgmt/2017-10-17-preview/policyinsights
Package policyinsights implements the Azure ARM Policyinsights service API version 2017-10-17-preview.
Package policyinsights implements the Azure ARM Policyinsights service API version 2017-10-17-preview.
preview/policyinsights/mgmt/2017-12-12-preview/policyinsights
Package policyinsights implements the Azure ARM Policyinsights service API version 2017-12-12-preview.
Package policyinsights implements the Azure ARM Policyinsights service API version 2017-12-12-preview.
preview/provisioningservices/preview/mgmt/2017-08-21-preview/iothub
Package iothub implements the Azure ARM Iothub service API version 2017-08-21-preview.
Package iothub implements the Azure ARM Iothub service API version 2017-08-21-preview.
preview/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.
preview/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.
preview/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 .
preview/resources/mgmt/2017-08-31-preview/management
Package managementgroups implements the Azure ARM Managementgroups service API version 2017-08-31-preview.
Package managementgroups implements the Azure ARM Managementgroups service API version 2017-08-31-preview.
preview/resources/mgmt/2017-11-01-preview/management
Package managementgroups implements the Azure ARM Managementgroups service API version 2017-11-01-preview.
Package managementgroups implements the Azure ARM Managementgroups service API version 2017-11-01-preview.
preview/resources/mgmt/2018-01-01-preview/management
Package managementgroups implements the Azure ARM Managementgroups service API version 2018-01-01-preview.
Package managementgroups implements the Azure ARM Managementgroups service API version 2018-01-01-preview.
preview/resources/mgmt/2018-03-01-preview/management
Package managementgroups implements the Azure ARM Managementgroups service API version 2018-03-01-preview.
Package managementgroups implements the Azure ARM Managementgroups service API version 2018-03-01-preview.
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.
preview/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.
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.
preview/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.
preview/signalr/mgmt/2018-03-01-preview/signalr
Package signalr implements the Azure ARM Signalr service API version 2018-03-01-preview.
Package signalr implements the Azure ARM Signalr service API version 2018-03-01-preview.
preview/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 .
preview/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 .
preview/sql/mgmt/2017-10-01-preview/sql
Package sql implements the Azure ARM Sql service API version 2017-10-01-preview.
Package sql implements the Azure ARM Sql service API version 2017-10-01-preview.
preview/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.
preview/storage/mgmt/2018-03-01-preview/storage
Package storage implements the Azure ARM Storage service API version 2018-03-01-preview.
Package storage implements the Azure ARM Storage service API version 2018-03-01-preview.
preview/subscription/mgmt/2017-11-01-preview/subscription
Package subscription implements the Azure ARM Subscription service API version 2017-11-01-preview.
Package subscription implements the Azure ARM Subscription service API version 2017-11-01-preview.
preview/subscription/mgmt/2018-03-01-preview/subscription
Package subscription implements the Azure ARM Subscription service API version .
Package subscription implements the Azure ARM Subscription service API version .
preview/timeseriesinsights/mgmt/2017-02-28-preview/timeseriesinsights
Package timeseriesinsights implements the Azure ARM Timeseriesinsights service API version 2017-02-28-preview.
Package timeseriesinsights implements the Azure ARM Timeseriesinsights service API version 2017-02-28-preview.
preview/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 .
preview/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.
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 .
provisioningservices/mgmt/2017-08-21-preview/iothub
Package iothub implements the Azure ARM Iothub service API version 2017-08-21-preview.
Package iothub implements the Azure ARM Iothub service API version 2017-08-21-preview.
provisioningservices/mgmt/2017-11-15/iothub
Package iothub implements the Azure ARM Iothub service API version 2017-11-15.
Package iothub implements the Azure ARM Iothub service API version 2017-11-15.
provisioningservices/mgmt/2018-01-22/iothub
Package iothub implements the Azure ARM Iothub service API version 2018-01-22.
Package iothub implements the Azure ARM Iothub service API version 2018-01-22.
recoveryservices/mgmt/2016-06-01/backup
Package backup implements the Azure ARM Backup service API version 2016-06-01.
Package backup implements the Azure ARM Backup service API version 2016-06-01.
recoveryservices/mgmt/2016-06-01/recoveryservices
Package recoveryservices implements the Azure ARM Recoveryservices service API version 2016-06-01.
Package recoveryservices implements the Azure ARM Recoveryservices service API version 2016-06-01.
recoveryservices/mgmt/2016-08-10/siterecovery
Package siterecovery implements the Azure ARM Siterecovery service API version 2016-08-10.
Package siterecovery implements the Azure ARM Siterecovery service API version 2016-08-10.
recoveryservices/mgmt/2017-07-01/backup
Package backup implements the Azure ARM Backup service API version .
Package backup implements the Azure ARM Backup service API version .
recoveryservices/mgmt/2018-01-10/siterecovery
Package siterecovery implements the Azure ARM Siterecovery service API version 2018-01-10.
Package siterecovery implements the Azure ARM Siterecovery service API version 2018-01-10.
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/redis
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.
redis/mgmt/2018-03-01/redis
Package redis implements the Azure ARM Redis service API version 2018-03-01.
Package redis implements the Azure ARM Redis service API version 2018-03-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.
reservations/mgmt/2017-11-01/reservations
Package reservations implements the Azure ARM Reservations service API version 2017-11-01.
Package reservations implements the Azure ARM Reservations service API version 2017-11-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 managementgroups implements the Azure ARM Managementgroups service API version 2017-08-31-preview.
Package managementgroups implements the Azure ARM Managementgroups service API version 2017-08-31-preview.
resources/mgmt/2017-09-01/managedapplications
Package managedapplications implements the Azure ARM Managedapplications service API version 2017-09-01.
Package managedapplications implements the Azure ARM Managedapplications service API version 2017-09-01.
resources/mgmt/2017-11-01-preview/management
Package managementgroups implements the Azure ARM Managementgroups service API version 2017-11-01-preview.
Package managementgroups implements the Azure ARM Managementgroups service API version 2017-11-01-preview.
resources/mgmt/2018-01-01-preview/management
Package managementgroups implements the Azure ARM Managementgroups service API version 2018-01-01-preview.
Package managementgroups implements the Azure ARM Managementgroups service API version 2018-01-01-preview.
resources/mgmt/2018-02-01/resources
Package resources implements the Azure ARM Resources service API version 2018-02-01.
Package resources implements the Azure ARM Resources service API version 2018-02-01.
resources/mgmt/2018-03-01/policy
Package policy implements the Azure ARM Policy service API version 2018-03-01.
Package policy implements the Azure ARM Policy service API version 2018-03-01.
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/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/6.1/servicefabric
Package servicefabric implements the Azure ARM Servicefabric service API version 6.1.2.
Package servicefabric implements the Azure ARM Servicefabric service API version 6.1.2.
servicefabric/6.2/servicefabric
Package servicefabric implements the Azure ARM Servicefabric service API version 6.2.0.9.
Package servicefabric implements the Azure ARM Servicefabric service API version 6.2.0.9.
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.
servicefabric/mgmt/2018-02-01/servicefabric
Package servicefabric implements the Azure ARM Servicefabric service API version .
Package servicefabric implements the Azure ARM Servicefabric service API version .
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 .
sql/mgmt/2017-10-01-preview/sql
Package sql implements the Azure ARM Sql service API version 2017-10-01-preview.
Package sql implements the Azure ARM Sql service API version 2017-10-01-preview.
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.
storage/mgmt/2018-02-01/storage
Package storage implements the Azure ARM Storage service API version 2018-02-01.
Package storage implements the Azure ARM Storage service API version 2018-02-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.
timeseriesinsights/mgmt/2017-02-28-preview/timeseriesinsights
Package timeseriesinsights implements the Azure ARM Timeseriesinsights service API version 2017-02-28-preview.
Package timeseriesinsights implements the Azure ARM Timeseriesinsights service API version 2017-02-28-preview.
timeseriesinsights/mgmt/2017-11-15/timeseriesinsights
Package timeseriesinsights implements the Azure ARM Timeseriesinsights service API version 2017-11-15.
Package timeseriesinsights implements the Azure ARM Timeseriesinsights service API version 2017-11-15.
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 .
trafficmanager/mgmt/2018-02-01/trafficmanager
Package trafficmanager implements the Azure ARM Trafficmanager service API version .
Package trafficmanager implements the Azure ARM Trafficmanager service API version .
trafficmanager/mgmt/2018-03-01/trafficmanager
Package trafficmanager implements the Azure ARM Trafficmanager service API version 2018-03-01.
Package trafficmanager implements the Azure ARM Trafficmanager service API version 2018-03-01.
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 .
web/mgmt/2018-02-01/web
Package web implements the Azure ARM Web service API version 2018-02-01.
Package web implements the Azure ARM Web service API version 2018-02-01.
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/model
Package model holds the business logic for the operations made available by profileBuilder.
Package model holds the business logic for the operations made available by profileBuilder.
internal Module
pkgchk Module

Jump to

Keyboard shortcuts

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