你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

WebApp.DefinitionStages.ExistingWindowsPlanWithGroup Interface

public interface ExistingWindowsPlanWithGroup

A web app definition allowing resource group to be specified when a new app service plan is to be created.

Method Summary

Modifier and Type Method and Description
WebApp.DefinitionStages.WithCreate withExistingResourceGroup(ResourceGroup group)

Associates the resource with an existing resource group.

WebApp.DefinitionStages.WithCreate withExistingResourceGroup(String groupName)

Associates the resource with an existing resource group.

WebApp.DefinitionStages.WithCreate withNewResourceGroup()

Creates a new resource group to put the resource in.

The group will be created in the same location as the resource. The group's name is automatically derived from the resource's name.

WebApp.DefinitionStages.WithCreate withNewResourceGroup(Creatable<ResourceGroup> groupDefinition)

Creates a new resource group to put the resource in, based on the definition specified.

WebApp.DefinitionStages.WithCreate withNewResourceGroup(String name)

Creates a new resource group to put the resource in.

The group will be created in the same location as the resource.

Method Details

withExistingResourceGroup

public WithCreate withExistingResourceGroup(ResourceGroup group)

Associates the resource with an existing resource group.

Parameters:

group - an existing resource group to put the resource in

Returns:

the next stage of the definition

withExistingResourceGroup

public WithCreate withExistingResourceGroup(String groupName)

Associates the resource with an existing resource group.

Parameters:

groupName - the name of an existing resource group to put this resource in.

Returns:

the next stage of the definition

withNewResourceGroup

public WithCreate withNewResourceGroup()

Creates a new resource group to put the resource in.

The group will be created in the same location as the resource. The group's name is automatically derived from the resource's name.

Returns:

the next stage of the definition

withNewResourceGroup

public WithCreate withNewResourceGroup(Creatable groupDefinition)

Creates a new resource group to put the resource in, based on the definition specified.

Parameters:

groupDefinition - a creatable definition for a new resource group

Returns:

the next stage of the definition

withNewResourceGroup

public WithCreate withNewResourceGroup(String name)

Creates a new resource group to put the resource in.

The group will be created in the same location as the resource.

Parameters:

name - the name of the new group

Returns:

the next stage of the definition

Applies to