ProjectEnvironmentTypes Interface

public interface ProjectEnvironmentTypes

Resource collection API of ProjectEnvironmentTypes.

Method Summary

Modifier and Type Method and Description
abstract Blank define(String name)

Begins definition for a new ProjectEnvironmentType resource.

abstract void delete(String resourceGroupName, String projectName, String environmentTypeName)

Deletes a project environment type.

abstract void deleteById(String id)

Deletes a project environment type.

abstract Response<Void> deleteByIdWithResponse(String id, Context context)

Deletes a project environment type.

abstract Response<Void> deleteWithResponse(String resourceGroupName, String projectName, String environmentTypeName, Context context)

Deletes a project environment type.

abstract ProjectEnvironmentType get(String resourceGroupName, String projectName, String environmentTypeName)

Gets a project environment type.

abstract ProjectEnvironmentType getById(String id)

Gets a project environment type.

abstract Response<ProjectEnvironmentType> getByIdWithResponse(String id, Context context)

Gets a project environment type.

abstract Response<ProjectEnvironmentType> getWithResponse(String resourceGroupName, String projectName, String environmentTypeName, Context context)

Gets a project environment type.

abstract PagedIterable<ProjectEnvironmentType> list(String resourceGroupName, String projectName)

Lists environment types for a project.

abstract PagedIterable<ProjectEnvironmentType> list(String resourceGroupName, String projectName, Integer top, Context context)

Lists environment types for a project.

Method Details

define

public abstract ProjectEnvironmentType.DefinitionStages.Blank define(String name)

Begins definition for a new ProjectEnvironmentType resource.

Parameters:

name - resource name.

Returns:

the first stage of the new ProjectEnvironmentType definition.

delete

public abstract void delete(String resourceGroupName, String projectName, String environmentTypeName)

Deletes a project environment type.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
projectName - The name of the project.
environmentTypeName - The name of the environment type.

deleteById

public abstract void deleteById(String id)

Deletes a project environment type.

Parameters:

id - the resource ID.

deleteByIdWithResponse

public abstract Response<Void> deleteByIdWithResponse(String id, Context context)

Deletes a project environment type.

Parameters:

id - the resource ID.
context - The context to associate with this operation.

Returns:

deleteWithResponse

public abstract Response<Void> deleteWithResponse(String resourceGroupName, String projectName, String environmentTypeName, Context context)

Deletes a project environment type.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
projectName - The name of the project.
environmentTypeName - The name of the environment type.
context - The context to associate with this operation.

Returns:

get

public abstract ProjectEnvironmentType get(String resourceGroupName, String projectName, String environmentTypeName)

Gets a project environment type.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
projectName - The name of the project.
environmentTypeName - The name of the environment type.

Returns:

a project environment type.

getById

public abstract ProjectEnvironmentType getById(String id)

Gets a project environment type.

Parameters:

id - the resource ID.

Returns:

a project environment type along with Response<T>.

getByIdWithResponse

public abstract Response<ProjectEnvironmentType> getByIdWithResponse(String id, Context context)

Gets a project environment type.

Parameters:

id - the resource ID.
context - The context to associate with this operation.

Returns:

a project environment type along with Response<T>.

getWithResponse

public abstract Response<ProjectEnvironmentType> getWithResponse(String resourceGroupName, String projectName, String environmentTypeName, Context context)

Gets a project environment type.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
projectName - The name of the project.
environmentTypeName - The name of the environment type.
context - The context to associate with this operation.

Returns:

a project environment type along with Response<T>.

list

public abstract PagedIterable<ProjectEnvironmentType> list(String resourceGroupName, String projectName)

Lists environment types for a project.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
projectName - The name of the project.

Returns:

result of the project environment type list operation as paginated response with PagedIterable<T>.

list

public abstract PagedIterable<ProjectEnvironmentType> list(String resourceGroupName, String projectName, Integer top, Context context)

Lists environment types for a project.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
projectName - The name of the project.
top - The maximum number of resources to return from the operation. Example: '$top=10'.
context - The context to associate with this operation.

Returns:

result of the project environment type list operation as paginated response with PagedIterable<T>.

Applies to