sdk

package module
v27.3.0 Latest Latest
Warning

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

Go to latest
Published: Apr 18, 2019 License: Apache-2.0 Imports: 0 Imported by: 0

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 officially supports the last two major releases of Go. Older versions of Go will be kept running in CI until they no longer work due to changes in any of the SDK's external dependencies. The CHANGELOG will be updated when a version of Go is removed from CI.

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

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

Questions and feedback? Chat with us in the #Azure SDK channel on the Gophers Slack. Sign up here first if necessary.

Package Updates

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. Because Azure's APIs are updated frequently, we release a new major version at the end of each month with a full changelog. For more details and background see SDK Update Practices.

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

Packages that are still in public preview can be found under the ./services/preview directory. Please be aware that since these packages are in preview they are subject to change, including breaking changes outside of a major semver bump.

Other Azure Go Packages

Azure provides several other packages for using services from Go, listed below. If a package you need isn't available please open an issue and let us know.

Service Import Path/Repo
Storage - Blobs github.com/Azure/azure-storage-blob-go
Storage - Files github.com/Azure/azure-storage-file-go
Storage - Queues github.com/Azure/azure-storage-queue-go
Service Bus github.com/Azure/azure-service-bus-go
Event Hubs github.com/Azure/azure-event-hubs-go
Application Insights github.com/Microsoft/ApplicationInsights-go

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 many more scenarios and examples see Azure-Samples/azure-sdk-for-go-samples.

Apply the following general steps to use packages in this repo. For more on authentication and the Authorizer interface see the next section.

  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. res, err := c.CreateOrUpdate(...).
  4. Handle responses and errors.

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

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() {
	// create a VirtualNetworks client
	vnetClient := network.NewVirtualNetworksClient("<subscriptionID>")

	// create an authorizer from env vars or Azure Managed Service Idenity
	authorizer, err := auth.NewAuthorizerFromEnvironment()
	if err == nil {
		vnetClient.Authorizer = authorizer
	}

	// call the VirtualNetworks CreateOrUpdate API
	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

Typical SDK operations must be authenticated and authorized. The Authorizer interface allows use of any auth style in requests, such as inserting an OAuth2 Authorization header and bearer token received from Azure AD.

The SDK itself provides a simple way to get an authorizer which first checks for OAuth client credentials in environment variables and then falls back to Azure's Managed Service Identity when available, e.g. when on an Azure VM. The following snippet from the previous section demonstrates this helper.

import github.com/Azure/go-autorest/autorest/azure/auth

// create a VirtualNetworks client
vnetClient := network.NewVirtualNetworksClient("<subscriptionID>")

// create an authorizer from env vars or Azure Managed Service Idenity
authorizer, err := auth.NewAuthorizerFromEnvironment()
if err == nil {
    vnetClient.Authorizer = authorizer
}

// call the VirtualNetworks CreateOrUpdate API
vnetClient.CreateOrUpdate(context.Background(),
// ...

The following environment variables help determine authentication configuration:

  • AZURE_ENVIRONMENT: Specifies the Azure Environment to use. If not set, it defaults to AzurePublicCloud. Not applicable to authentication with Managed Service Identity (MSI).
  • AZURE_AD_RESOURCE: Specifies the AAD resource ID to use. If not set, it defaults to ResourceManagerEndpoint for operations with Azure Resource Manager. You can also choose an alternate resource programatically with auth.NewAuthorizerFromEnvironmentWithResource(resource string).
More Authentication Details

The previous is the first and most recommended of several authentication options offered by the SDK because it allows seamless use of both service principals and Azure Managed Service Identity. Other options are listed below.

Note: If you need 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, or consider the --sdk-auth parameter for serialized output.

  • The auth.NewAuthorizerFromEnvironment() described above creates an authorizer from the first available of the following configuration:

    1. **Client Credentials**: Azure AD Application ID and Secret.
    
        - `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.
    
    2. **Client Certificate**: Azure AD Application ID and X.509 Certificate.
    
        - `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.
    
    3. **Resource Owner Password**: Azure AD User and Password. This grant type is *not
       recommended*, use device login instead if you need interactive login.
    
        - `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.
    
    4. **Azure Managed Service Identity**: Delegate credential management to the
       platform. Requires that code is running in Azure, e.g. on a VM. All
       configuration is handled by Azure. See [Azure Managed Service
       Identity](https://docs.microsoft.com/en-us/azure/active-directory/msi-overview)
       for more details.
    
  • The auth.NewAuthorizerFromFile() method creates an authorizer using credentials from an auth file created by the Azure CLI. Follow these steps to utilize:

    1. Create a service principal and output an auth file using az ad sp create-for-rbac --sdk-auth > client_credentials.json.
    2. Set environment variable AZURE_AUTH_LOCATION to the path of the saved output file.
    3. Use the authorizer returned by auth.NewAuthorizerFromFile() in your client as described above.
  • The auth.NewAuthorizerFromCLI() method creates an authorizer which uses Azure CLI to obtain its credentials. To use this method follow these steps:

    1. Install Azure CLI v2.0.12 or later. Upgrade earlier versions.
    2. Use az login to sign in to Azure.

    If you receive an error, use az account get-access-token to verify access.

    If Azure CLI is not installed to the default directory, you may receive an error reporting that az cannot be found.
    Use the AzureCLIPath environment variable to define the Azure CLI installation folder.

    If you are signed in to Azure CLI using multiple accounts or your account has access to multiple subscriptions, you need to specify the specific subscription to be used. To do so, use:

    az account set --subscription <subscription-id>
    

    To verify the current account settings, use:

    az account list
    
  • Finally, you can use OAuth's Device Flow by calling auth.NewDeviceFlowConfig() and extracting the Authorizer as follows:

    config := auth.NewDeviceFlowConfig(clientID, tenantID)
    a, err = config.Authorizer()
    

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, and for this reason Service API versions cannot be used alone to ensure backwards compatibility.

All available 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 following profiles are available for hybrid Azure and Azure Stack environments.

  • 2017-03-09
  • 2018-03-01

In addition to versioned profiles, we also provide two special profiles latest and preview. The latest profile contains the latest API version of each service, excluding any preview versions and/or content. The preview profile is similar to the latest profile but includes preview API versions.

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"
Avoiding Breaking Changes

To avoid breaking changes, when specifying imports you should specify a Service API Version or Profile, as well as lock (using dep and soon with Go Modules) to a specific SDK version.

For example, in your source code imports, use a Service API Version (2017-12-01):

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

or Profile version (2017-03-09):

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

As well as, for dep, a Gopkg.toml file with:

[[constraint]]
  name = "github.com/Azure/azure-sdk-for-go"
  version = "21.0.0"

Combined, these techniques will ensure that breaking changes should not occur. If you are extra sensitive to changes, adding an additional version pin in your SDK Version should satisfy your needs:

[[constraint]]
  name = "github.com/Azure/azure-sdk-for-go"
  version = "=21.3.0"

Inspecting and Debugging

Built-in Basic Request/Response Logging

Starting with go-autorest v10.15.0 you can enable basic logging of requests and responses through setting environment variables. Setting AZURE_GO_SDK_LOG_LEVEL to INFO will log request/response without their bodies. To include the bodies set the log level to DEBUG.

By default the logger writes to strerr, however it can also write to stdout or a file if specified in AZURE_GO_SDK_LOG_FILE. Note that if the specified file already exists it will be truncated.

IMPORTANT: by default the logger will redact the Authorization and Ocp-Apim-Subscription-Key headers. Any other secrets will not be redacted.

Writing Custom Request/Response Inspectors

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
		})
	}
}

Tracing and Metrics

All packages and the runtime are instrumented using OpenCensus.

Enable

As of now, tracing is disabled by default. There are 2 ways to enable tracing:

  • set the environment variable AZURE_SDK_TRACING_ENABLED (Recommended)
  • alternatively, import the github.com/Azure/go-autorest/tracing package and call the tracing.Enable() function or tracing.EnableWithAIForwarding() if using the App Insights Forwarder.

Note: In future major releases of the SDK, tracing may become enabled by default.

Usage

Once enabled, all SDK calls will emit traces and metrics and the traces will correlate the SDK calls with the raw http calls made to Azure API's. To consume those traces, if are not doing it yet, you need to register an exporter of your choice such as Azure App Insights or Zipkin.

To correlate the SDK calls between them and with the rest of your code, pass in a context that has a span initiated using the opencensus-go library using the trace.Startspan(ctx context.Context, name string, o ...StartOption) function. Here is an example:

func doAzureCalls() {
    // The resulting context will be initialized with a root span as the context passed to
    // trace.StartSpan() has no existing span.
    ctx, span := trace.StartSpan(context.Background(),"doAzureCalls", trace.WithSampler(trace.AlwaysSample()))
    defer span.End()

    // The traces from the SDK calls will be correlated under the span inside the context that is passed in.
    zone, _ := zonesClient.CreateOrUpdate(ctx, rg, zoneName, dns.Zone{Location: to.StringPtr("global")}, "", "")
    zone, _ = zonesClient.Get(ctx, rg, *zone.Name)
    for i := 0; i < rrCount; i++ {
        rr, _ := recordsClient.CreateOrUpdate(ctx, rg, zoneName, fmt.Sprintf("rr%d", i), dns.CNAME, rdSet{
            RecordSetProperties: &dns.RecordSetProperties{
                TTL: to.Int64Ptr(3600),
                CnameRecord: &dns.CnameRecord{
                    Cname: to.StringPtr("vladdbCname"),
                },
            },
        },
            "",
            "",
        )
    }
}

Resources

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
services
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/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.
alertsmanagement/mgmt/2018-05-05/alertsmanagement
Package alertsmanagement implements the Azure ARM Alertsmanagement service API version 2018-05-05.
Package alertsmanagement implements the Azure ARM Alertsmanagement service API version 2018-05-05.
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/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.
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.
apimanagement/mgmt/2019-01-01/apimanagement
Package apimanagement implements the Azure ARM Apimanagement service API version 2019-01-01.
Package apimanagement implements the Azure ARM Apimanagement service API version 2019-01-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/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.
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/2018-08-01.7.0/batch
Package batch implements the Azure ARM Batch service API version 2018-08-01.7.0.
Package batch implements the Azure ARM Batch service API version 2018-08-01.7.0.
batch/2018-12-01.8.0/batch
Package batch implements the Azure ARM Batch service API version 2018-12-01.8.0.
Package batch implements the Azure ARM Batch service API version 2018-12-01.8.0.
batch/mgmt/2015-12-01/batch
Package batch implements the Azure ARM Batch service API version 2015-12-01.
Package batch implements the Azure ARM Batch service API version 2015-12-01.
batch/mgmt/2017-01-01/batch
Package batch implements the Azure ARM Batch service API version 2017-01-01.
Package batch implements the Azure ARM Batch service API version 2017-01-01.
batch/mgmt/2017-05-01/batch
Package batch implements the Azure ARM Batch service API version 2017-05-01.
Package batch implements the Azure ARM Batch service API version 2017-05-01.
batch/mgmt/2017-09-01/batch
Package batch implements the Azure ARM Batch service API version 2017-09-01.
Package batch implements the Azure ARM Batch service API version 2017-09-01.
batch/mgmt/2018-12-01/batch
Package batch implements the Azure ARM Batch service API version 2018-12-01.
Package batch implements the Azure ARM Batch service API version 2018-12-01.
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.
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/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/autosuggest
Package autosuggest implements the Azure ARM Autosuggest service API version 1.0.
Package autosuggest implements the Azure ARM Autosuggest service API version 1.0.
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/localsearch
Package localsearch implements the Azure ARM Localsearch service API version 1.0.
Package localsearch implements the Azure ARM Localsearch 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/anomalyfinder
Package anomalyfinder implements the Azure ARM Anomalyfinder service API version 2.0.
Package anomalyfinder implements the Azure ARM Anomalyfinder service API version 2.0.
cognitiveservices/v2.0/computervision
Package computervision implements the Azure ARM Computervision service API version 2.0.
Package computervision implements the Azure ARM Computervision service API version 2.0.
cognitiveservices/v2.0/luis/authoring
Package authoring implements the Azure ARM Authoring service API version 2.0.
Package authoring implements the Azure ARM Authoring service API version 2.0.
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 2.0.
Package runtime implements the Azure ARM Runtime service API version 2.0.
cognitiveservices/v2.0/textanalytics
Package textanalytics implements the Azure ARM Textanalytics service API version v2.0.
Package textanalytics implements the Azure ARM Textanalytics service API version v2.0.
cognitiveservices/v2.1/customvision/training
Package training implements the Azure ARM Training service API version 2.1.
Package training implements the Azure ARM Training service API version 2.1.
cognitiveservices/v2.1/textanalytics
Package textanalytics implements the Azure ARM Textanalytics service API version v2.1.
Package textanalytics implements the Azure ARM Textanalytics service API version v2.1.
cognitiveservices/v2.2/customvision/training
Package training implements the Azure ARM Training service API version 2.2.
Package training implements the Azure ARM Training service API version 2.2.
cognitiveservices/v3.0/customvision/prediction
Package prediction implements the Azure ARM Prediction service API version 3.0.
Package prediction implements the Azure ARM Prediction service API version 3.0.
cognitiveservices/v3.0/customvision/training
Package training implements the Azure ARM Training service API version 3.0.
Package training implements the Azure ARM Training service API version 3.0.
cognitiveservices/v3.0/translatortext
Package translatortext implements the Azure ARM Translatortext service API version 3.0.
Package translatortext implements the Azure ARM Translatortext service API version 3.0.
cognitiveservices/v4.0/qnamaker
Package qnamaker implements the Azure ARM Qnamaker service API version 4.0.
Package qnamaker implements the Azure ARM Qnamaker service API version 4.0.
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/2017-03-30/compute
Package compute implements the Azure ARM Compute service API version 2017-03-30.
Package compute implements the Azure ARM Compute service API version 2017-03-30.
compute/mgmt/2017-09-01/skus
Package skus implements the Azure ARM Skus service API version 2017-09-01.
Package skus implements the Azure ARM Skus service API version 2017-09-01.
compute/mgmt/2017-12-01/compute
Package compute implements the Azure ARM Compute service API version 2017-12-01.
Package compute implements the Azure ARM Compute service API version 2017-12-01.
compute/mgmt/2018-04-01/compute
Package compute implements the Azure ARM Compute service API version 2018-04-01.
Package compute implements the Azure ARM Compute service API version 2018-04-01.
compute/mgmt/2018-06-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-10-01/compute
Package compute implements the Azure ARM Compute service API version .
Package compute implements the Azure ARM Compute service API version .
compute/mgmt/2019-03-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-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/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.
consumption/mgmt/2018-06-30/consumption
Package consumption implements the Azure ARM Consumption service API version 2018-06-30.
Package consumption implements the Azure ARM Consumption service API version 2018-06-30.
consumption/mgmt/2018-08-31/consumption
Package consumption implements the Azure ARM Consumption service API version 2018-08-31.
Package consumption implements the Azure ARM Consumption service API version 2018-08-31.
consumption/mgmt/2018-10-01/consumption
Package consumption implements the Azure ARM Consumption service API version 2018-10-01.
Package consumption implements the Azure ARM Consumption service API version 2018-10-01.
consumption/mgmt/2019-01-01/consumption
Package consumption implements the Azure ARM Consumption service API version 2019-01-01.
Package consumption implements the Azure ARM Consumption service API version 2019-01-01.
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.
containerinstance/mgmt/2018-06-01/containerinstance
Package containerinstance implements the Azure ARM Containerinstance service API version 2018-06-01.
Package containerinstance implements the Azure ARM Containerinstance service API version 2018-06-01.
containerinstance/mgmt/2018-09-01/containerinstance
Package containerinstance implements the Azure ARM Containerinstance service API version 2018-09-01.
Package containerinstance implements the Azure ARM Containerinstance service API version 2018-09-01.
containerinstance/mgmt/2018-10-01/containerinstance
Package containerinstance implements the Azure ARM Containerinstance service API version 2018-10-01.
Package containerinstance implements the Azure ARM Containerinstance service API version 2018-10-01.
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-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.
containerregistry/mgmt/2018-09-01/containerregistry
Package containerregistry implements the Azure ARM Containerregistry service API version .
Package containerregistry implements the Azure ARM Containerregistry service API version .
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 .
containerservice/mgmt/2018-03-31/containerservice
Package containerservice implements the Azure ARM Containerservice service API version .
Package containerservice implements the Azure ARM Containerservice service API version .
containerservice/mgmt/2019-02-01/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.
costmanagement/mgmt/2018-05-31/costmanagement
Package costmanagement implements the Azure ARM Costmanagement service API version 2018-05-31.
Package costmanagement implements the Azure ARM Costmanagement service API version 2018-05-31.
costmanagement/mgmt/2019-01-01/costmanagement
Package costmanagement implements the Azure ARM Costmanagement service API version 2019-01-01.
Package costmanagement implements the Azure ARM Costmanagement service API version 2019-01-01.
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/2018-06-01/datafactory
Package datafactory implements the Azure ARM Datafactory service API version 2018-06-01.
Package datafactory implements the Azure ARM Datafactory service API version 2018-06-01.
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/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/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/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/2018-04-19/datamigration
Package datamigration implements the Azure ARM Datamigration service API version .
Package datamigration implements the Azure ARM Datamigration service API version .
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.
devtestlabs/mgmt/2018-09-15/dtl
Package dtl implements the Azure ARM Dtl service API version 2018-09-15.
Package dtl implements the Azure ARM Dtl service API version 2018-09-15.
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.
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.
edgegateway/mgmt/2019-03-01/edgegateway
Package edgegateway implements the Azure ARM Edgegateway service API version 2019-03-01.
Package edgegateway implements the Azure ARM Edgegateway service API version 2019-03-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/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/2019-01-01/eventgrid
Package eventgrid implements the Azure ARM Eventgrid service API version 2019-01-01.
Package eventgrid implements the Azure ARM Eventgrid service API version 2019-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.
iotcentral/mgmt/2018-09-01/iotcentral
Package iotcentral implements the Azure ARM Iotcentral service API version 2018-09-01.
Package iotcentral implements the Azure ARM Iotcentral service API version 2018-09-01.
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.
iothub/mgmt/2018-12-01-preview/devices
Package devices implements the Azure ARM Devices service API version 2018-12-01-preview.
Package devices implements the Azure ARM Devices service API version 2018-12-01-preview.
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.
keyvault/mgmt/2018-02-14/keyvault
Package keyvault implements the Azure ARM Keyvault service API version 2018-02-14.
Package keyvault implements the Azure ARM Keyvault service API version 2018-02-14.
keyvault/v7.0/keyvault
Package keyvault implements the Azure ARM Keyvault service API version 7.0.
Package keyvault implements the Azure ARM Keyvault service API version 7.0.
kusto/mgmt/2019-01-21/kusto
Package kusto implements the Azure ARM Kusto service API version 2019-01-21.
Package kusto implements the Azure ARM Kusto service API version 2019-01-21.
labservices/mgmt/2018-10-15/labservices
Package labservices implements the Azure ARM Labservices service API version 2018-10-15.
Package labservices implements the Azure ARM Labservices service API version 2018-10-15.
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/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-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.
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.
mariadb/mgmt/2018-06-01/mariadb
Package mariadb implements the Azure ARM Mariadb service API version 2018-06-01.
Package mariadb implements the Azure ARM Mariadb service API version 2018-06-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.
mediaservices/mgmt/2018-07-01/media
Package media implements the Azure ARM Media service API version 2018-07-01.
Package media implements the Azure ARM Media service API version 2018-07-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.
msi/mgmt/2018-11-30/msi
Package msi implements the Azure ARM Msi service API version 2018-11-30.
Package msi implements the Azure ARM Msi service API version 2018-11-30.
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-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-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/2018-07-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-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/2018-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/2018-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-12-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/v1/operationalinsights
Package operationalinsights implements the Azure ARM Operationalinsights service API version v1.
Package operationalinsights implements the Azure ARM Operationalinsights service API version v1.
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/alertsmanagement/mgmt/2018-05-05-preview/alertsmanagement
Package alertsmanagement implements the Azure ARM Alertsmanagement service API version 2018-05-05-preview.
Package alertsmanagement implements the Azure ARM Alertsmanagement service API version 2018-05-05-preview.
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-06-01-preview/apimanagement
Package apimanagement implements the Azure ARM Apimanagement service API version 2018-06-01-preview.
Package apimanagement implements the Azure ARM Apimanagement service API version 2018-06-01-preview.
preview/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.
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/authorization/mgmt/2018-09-01-preview/authorization
Package authorization implements the Azure ARM Authorization service API version .
Package authorization implements the Azure ARM Authorization service API version .
preview/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 .
preview/automation/mgmt/2018-01-15-preview/automation
Package automation implements the Azure ARM Automation service API version .
Package automation implements the Azure ARM Automation service API version .
preview/automation/mgmt/2018-06-30-preview/automation
Package automation implements the Azure ARM Automation service API version .
Package automation implements the Azure ARM Automation service API version .
preview/batchai/mgmt/2017-09-01-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/billing/mgmt/2018-11-01-preview/billing
Package billing implements the Azure ARM Billing service API version 2018-11-01-preview.
Package billing implements the Azure ARM Billing service API version 2018-11-01-preview.
preview/blueprint/mgmt/2018-11-01-preview/blueprint
Package blueprint implements the Azure ARM Blueprint service API version 2018-11-01-preview.
Package blueprint implements the Azure ARM Blueprint service API version 2018-11-01-preview.
preview/botservice/mgmt/2017-12-01/botservice
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/botservice/mgmt/2018-07-12/botservice
Package botservice implements the Azure ARM Botservice service API version 2018-07-12.
Package botservice implements the Azure ARM Botservice service API version 2018-07-12.
preview/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.
preview/cognitiveservices/v1.0/anomalydetector
Package anomalydetector implements the Azure ARM Anomalydetector service API version 1.0.
Package anomalydetector implements the Azure ARM Anomalydetector service API version 1.0.
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/containerservice/mgmt/2018-08-01-preview/containerservice
Package containerservice implements the Azure ARM Containerservice service API version .
Package containerservice implements the Azure ARM Containerservice service API version .
preview/containerservice/mgmt/2018-09-30-preview/containerservice
Package containerservice implements the Azure ARM Containerservice service API version .
Package containerservice implements the Azure ARM Containerservice service API version .
preview/costmanagement/mgmt/2018-08-01-preview/costmanagement
Package costmanagement implements the Azure ARM Costmanagement service API version 2018-08-01-preview.
Package costmanagement implements the Azure ARM Costmanagement service API version 2018-08-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/datamigration/mgmt/2018-07-15-preview/datamigration
Package datamigration implements the Azure ARM Datamigration service API version 2018-07-15-preview.
Package datamigration implements the Azure ARM Datamigration service API version 2018-07-15-preview.
preview/deploymentmanager/mgmt/2018-09-01-preview/deploymentmanager
Package deploymentmanager implements the Azure ARM Deploymentmanager service API version 2018-09-01-preview.
Package deploymentmanager implements the Azure ARM Deploymentmanager service API version 2018-09-01-preview.
preview/devspaces/mgmt/2018-06-01-preview/devspaces
Package devspaces implements the Azure ARM Devspaces service API version 2018-06-01-preview.
Package devspaces implements the Azure ARM Devspaces service API version 2018-06-01-preview.
preview/devspaces/mgmt/2019-01-01-preview/devspaces
Package devspaces implements the Azure ARM Devspaces service API version 2019-01-01-preview.
Package devspaces implements the Azure ARM Devspaces service API version 2019-01-01-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/engagementfabric/mgmt/2018-09-01/engagementfabric
Package engagementfabric implements the Azure ARM Engagementfabric service API version 2018-09-01-preview.
Package engagementfabric implements the Azure ARM Engagementfabric service API version 2018-09-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/eventgrid/mgmt/2018-09-15-preview/eventgrid
Package eventgrid implements the Azure ARM Eventgrid service API version 2018-09-15-preview.
Package eventgrid implements the Azure ARM Eventgrid service API version 2018-09-15-preview.
preview/eventgrid/mgmt/2019-02-01-preview/eventgrid
Package eventgrid implements the Azure ARM Eventgrid service API version 2019-02-01-preview.
Package eventgrid implements the Azure ARM Eventgrid service API version 2019-02-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/frontdoor/mgmt/2018-08-01-preview/frontdoor
Package frontdoor implements the Azure ARM Frontdoor service API version .
Package frontdoor implements the Azure ARM Frontdoor service API version .
preview/frontdoor/mgmt/2019-04-01/frontdoor
Package frontdoor implements the Azure ARM Frontdoor service API version .
Package frontdoor implements the Azure ARM Frontdoor service API version .
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/2018-11-01-preview/hdinsight
Package hdinsight implements the Azure ARM Hdinsight service API version 2018-11-01-preview.
Package hdinsight implements the Azure ARM Hdinsight service API version 2018-11-01-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/hdinsight/mgmt/2018-06-01-preview/hdinsight
Package hdinsight implements the Azure ARM Hdinsight service API version 2018-06-01-preview.
Package hdinsight implements the Azure ARM Hdinsight service API version 2018-06-01-preview.
preview/healthcareapis/mgmt/2018-08-20-preview/healthcareapis
Package healthcareapis implements the Azure ARM Healthcareapis service API version 2018-08-20-preview.
Package healthcareapis implements the Azure ARM Healthcareapis service API version 2018-08-20-preview.
preview/iothub/mgmt/2018-12-01-preview/devices
Package devices implements the Azure ARM Devices service API version 2018-12-01-preview.
Package devices implements the Azure ARM Devices service API version 2018-12-01-preview.
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/kusto/mgmt/2018-09-07-preview/kusto
Package kusto implements the Azure ARM Kusto service API version 2018-09-07-preview.
Package kusto implements the Azure ARM Kusto service API version 2018-09-07-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/logic/mgmt/2018-07-01-preview/logic
Package logic implements the Azure ARM Logic service API version 2018-07-01-preview.
Package logic implements the Azure ARM Logic service API version 2018-07-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/managedservices/mgmt/2018-06-01/managedservices
Package managedservices implements the Azure ARM Managedservices service API version 2018-06-01-preview.
Package managedservices implements the Azure ARM Managedservices service API version 2018-06-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/mariadb/mgmt/2018-06-01-preview/mariadb
Package mariadb implements the Azure ARM Mariadb service API version 2018-06-01-preview.
Package mariadb implements the Azure ARM Mariadb service API version 2018-06-01-preview.
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/mediaservices/mgmt/2018-06-01-preview/media
Package media implements the Azure ARM Media service API version 2018-06-01-preview.
Package media implements the Azure ARM Media service API version 2018-06-01-preview.
preview/mixedreality/mgmt/2019-02-28/mixedreality
Package mixedreality implements the Azure ARM Mixedreality service API version 2019-02-28-preview.
Package mixedreality implements the Azure ARM Mixedreality service API version 2019-02-28-preview.
preview/monitor/2018-09-01-preview/monitor
Package monitor implements the Azure ARM Monitor service API version 2018-09-01-preview.
Package monitor implements the Azure ARM Monitor service API version 2018-09-01-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/monitor/mgmt/2018-09-01/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-11-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/2019-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/netapp/mgmt/2017-08-15/netapp
Package netapp implements the Azure ARM Netapp service API version 2017-08-15.
Package netapp implements the Azure ARM Netapp service API version 2017-08-15.
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/peering/mgmt/2019-03-01-preview/peering
Package peering implements the Azure ARM Peering service API version 2019-03-01-preview.
Package peering implements the Azure ARM Peering service API version 2019-03-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/policyinsights/mgmt/2018-07-01-preview/policyinsights
Package policyinsights implements the Azure ARM Policyinsights service API version .
Package policyinsights implements the Azure ARM Policyinsights service API version .
preview/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.
preview/reservations/mgmt/2018-06-01/reservations
Package reservations implements the Azure ARM Reservations service API version 2018-06-01.
Package reservations implements the Azure ARM Reservations service API version 2018-06-01.
preview/reservations/mgmt/2019-04-01/reservations
Package reservations implements the Azure ARM Reservations service API version 2019-04-01.
Package reservations implements the Azure ARM Reservations service API version 2019-04-01.
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/managementgroups
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/managementgroups
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/managementgroups
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/managementgroups
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/security/mgmt/v1.0/security
Package security implements the Azure ARM Security service API version .
Package security implements the Azure ARM Security service API version .
preview/security/mgmt/v2.0/security
Package security implements the Azure ARM Security service API version .
Package security implements the Azure ARM Security service API version .
preview/securityinsight/mgmt/2017-08-01-preview/securityinsight
Package securityinsight implements the Azure ARM Securityinsight service API version 2019-01-01-preview.
Package securityinsight implements the Azure ARM Securityinsight service API version 2019-01-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/servicefabricmesh/mgmt/2018-07-01-preview/servicefabricmesh
Package servicefabricmesh implements the Azure ARM Servicefabricmesh service API version 2018-07-01-preview.
Package servicefabricmesh implements the Azure ARM Servicefabricmesh service API version 2018-07-01-preview.
preview/servicefabricmesh/mgmt/2018-09-01-preview/servicefabricmesh
Package servicefabricmesh implements the Azure ARM Servicefabricmesh service API version 2018-09-01-preview.
Package servicefabricmesh implements the Azure ARM Servicefabricmesh service API version 2018-09-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/sqlvirtualmachine/mgmt/2017-03-01-preview/sqlvirtualmachine
Package sqlvirtualmachine implements the Azure ARM Sqlvirtualmachine service API version 2017-03-01-preview.
Package sqlvirtualmachine implements the Azure ARM Sqlvirtualmachine service API version 2017-03-01-preview.
preview/storage/datalake/2018-06-17/storagedatalake
Package storagedatalake implements the Azure ARM Storagedatalake service API version 2018-06-17.
Package storagedatalake implements the Azure ARM Storagedatalake service API version 2018-06-17.
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/storagesync/mgmt/2018-10-01/storagesync
Package storagesync implements the Azure ARM Storagesync service API version 2018-10-01.
Package storagesync implements the Azure ARM Storagesync service API version 2018-10-01.
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/timeseriesinsights/mgmt/2018-08-15-preview/timeseriesinsights
Package timeseriesinsights implements the Azure ARM Timeseriesinsights service API version 2018-08-15-preview.
Package timeseriesinsights implements the Azure ARM Timeseriesinsights service API version 2018-08-15-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/virtualmachineimagebuilder/mgmt/2018-02-01-preview/virtualmachineimagebuilder
Package virtualmachineimagebuilder implements the Azure ARM Virtualmachineimagebuilder service API version 2018-02-01-preview.
Package virtualmachineimagebuilder implements the Azure ARM Virtualmachineimagebuilder service API version 2018-02-01-preview.
preview/virtualmachineimagebuilder/mgmt/2019-02-01-preview/virtualmachineimagebuilder
Package virtualmachineimagebuilder implements the Azure ARM Virtualmachineimagebuilder service API version 2019-02-01-preview.
Package virtualmachineimagebuilder implements the Azure ARM Virtualmachineimagebuilder service API version 2019-02-01-preview.
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-01-preview/web
Package web implements the Azure ARM Web service API version .
Package web implements the Azure ARM Web service API version .
preview/workloadmonitor/mgmt/2018-08-31-preview/workloadmonitor
Package workloadmonitor implements the Azure ARM Workloadmonitor service API version 2018-08-31-preview.
Package workloadmonitor implements the Azure ARM Workloadmonitor service API version 2018-08-31-preview.
privatedns/mgmt/2018-09-01/privatedns
Package privatedns implements the Azure ARM Privatedns service API version 2018-09-01.
Package privatedns implements the Azure ARM Privatedns service API version 2018-09-01.
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/2016-12-01/backup
Package backup implements the Azure ARM Backup service API version 2016-12-01.
Package backup implements the Azure ARM Backup service API version 2016-12-01.
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.
reservations/mgmt/2018-06-01/reservations
Package reservations implements the Azure ARM Reservations service API version 2018-06-01.
Package reservations implements the Azure ARM Reservations service API version 2018-06-01.
resourcegraph/mgmt/2019-04-01/resourcegraph
Package resourcegraph implements the Azure ARM Resourcegraph service API version 2019-04-01.
Package resourcegraph implements the Azure ARM Resourcegraph service API version 2019-04-01.
resourcehealth/mgmt/2015-01-01/resourcehealth
Package resourcehealth implements the Azure ARM Resourcehealth service API version 2015-01-01.
Package resourcehealth implements the Azure ARM Resourcehealth service API version 2015-01-01.
resourcehealth/mgmt/2017-07-01/resourcehealth
Package resourcehealth implements the Azure ARM Resourcehealth service API version 2017-07-01.
Package resourcehealth implements the Azure ARM Resourcehealth service API version 2017-07-01.
resources/mgmt/2015-01-01/locks
Package locks implements the Azure ARM Locks service API version 2015-01-01.
Package locks implements the Azure ARM Locks service API version 2015-01-01.
resources/mgmt/2015-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/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-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/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.
resources/mgmt/2018-05-01/policy
Package policy implements the Azure ARM Policy service API version 2018-05-01.
Package policy implements the Azure ARM Policy service API version 2018-05-01.
resources/mgmt/2018-05-01/resources
Package resources implements the Azure ARM Resources service API version 2018-05-01.
Package resources implements the Azure ARM Resources service API version 2018-05-01.
resources/mgmt/2018-06-01/managedapplications
Package managedapplications implements the Azure ARM Managedapplications service API version 2018-06-01.
Package managedapplications implements the Azure ARM Managedapplications service API version 2018-06-01.
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.
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/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/6.3/servicefabric
Package servicefabric implements the Azure ARM Servicefabric service API version 6.3.0.9.
Package servicefabric implements the Azure ARM Servicefabric service API version 6.3.0.9.
servicefabric/6.4/servicefabric
Package servicefabric implements the Azure ARM Servicefabric service API version 6.4.0.36.
Package servicefabric implements the Azure ARM Servicefabric service API version 6.4.0.36.
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/2018-02-01/servicefabric
Package servicefabric implements the Azure ARM Servicefabric service API version .
Package servicefabric implements the Azure ARM Servicefabric service API version .
signalr/mgmt/2018-10-01/signalr
Package signalr implements the Azure ARM Signalr service API version 2018-10-01.
Package signalr implements the Azure ARM Signalr service API version 2018-10-01.
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.
storage/datalake/2018-11-09/storagedatalake
Package storagedatalake implements the Azure ARM Storagedatalake service API version 2018-11-09.
Package storagedatalake implements the Azure ARM Storagedatalake service API version 2018-11-09.
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.
storage/mgmt/2018-07-01/storage
Package storage implements the Azure ARM Storage service API version .
Package storage implements the Azure ARM Storage service API version .
storage/mgmt/2018-11-01/storage
Package storage implements the Azure ARM Storage service API version 2018-11-01.
Package storage implements the Azure ARM Storage service API version 2018-11-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.
storagesync/mgmt/2018-04-02/storagesync
Package storagesync implements the Azure ARM Storagesync service API version 2018-04-02.
Package storagesync implements the Azure ARM Storagesync service API version 2018-04-02.
storagesync/mgmt/2018-07-01/storagesync
Package storagesync implements the Azure ARM Storagesync service API version 2018-07-01.
Package storagesync implements the Azure ARM Storagesync service API version 2018-07-01.
storagesync/mgmt/2018-10-01/storagesync
Package storagesync implements the Azure ARM Storagesync service API version 2018-10-01.
Package storagesync implements the Azure ARM Storagesync service API version 2018-10-01.
storagesync/mgmt/2019-02-01/storagesync
Package storagesync implements the Azure ARM Storagesync service API version 2019-02-01.
Package storagesync implements the Azure ARM Storagesync service API version 2019-02-01.
storsimple1200series/mgmt/2016-10-01/storsimple
Package storsimple implements the Azure ARM Storsimple service API version 2016-10-01.
Package storsimple implements the Azure ARM Storsimple service API version 2016-10-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-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/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.
trafficmanager/mgmt/2018-04-01/trafficmanager
Package trafficmanager implements the Azure ARM Trafficmanager service API version 2018-04-01.
Package trafficmanager implements the Azure ARM Trafficmanager service API version 2018-04-01.
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.

Jump to

Keyboard shortcuts

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