Creators Interface

public interface Creators

Resource collection API of Creators.

Method Summary

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

Begins definition for a new Creator resource.

abstract void delete(String resourceGroupName, String accountName, String creatorName)

Delete a Maps Creator resource.

abstract void deleteById(String id)

Delete a Maps Creator resource.

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

Delete a Maps Creator resource.

abstract Response<Void> deleteWithResponse(String resourceGroupName, String accountName, String creatorName, Context context)

Delete a Maps Creator resource.

abstract Creator get(String resourceGroupName, String accountName, String creatorName)

Get a Maps Creator resource.

abstract Creator getById(String id)

Get a Maps Creator resource.

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

Get a Maps Creator resource.

abstract Response<Creator> getWithResponse(String resourceGroupName, String accountName, String creatorName, Context context)

Get a Maps Creator resource.

abstract PagedIterable<Creator> listByAccount(String resourceGroupName, String accountName)

Get all Creator instances for an Azure Maps Account.

abstract PagedIterable<Creator> listByAccount(String resourceGroupName, String accountName, Context context)

Get all Creator instances for an Azure Maps Account.

Method Details

define

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

Begins definition for a new Creator resource.

Parameters:

name - resource name.

Returns:

the first stage of the new Creator definition.

delete

public abstract void delete(String resourceGroupName, String accountName, String creatorName)

Delete a Maps Creator resource.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
accountName - The name of the Maps Account.
creatorName - The name of the Maps Creator instance.

deleteById

public abstract void deleteById(String id)

Delete a Maps Creator resource.

Parameters:

id - the resource ID.

deleteByIdWithResponse

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

Delete a Maps Creator resource.

Parameters:

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

Returns:

deleteWithResponse

public abstract Response<Void> deleteWithResponse(String resourceGroupName, String accountName, String creatorName, Context context)

Delete a Maps Creator resource.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
accountName - The name of the Maps Account.
creatorName - The name of the Maps Creator instance.
context - The context to associate with this operation.

Returns:

get

public abstract Creator get(String resourceGroupName, String accountName, String creatorName)

Get a Maps Creator resource.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
accountName - The name of the Maps Account.
creatorName - The name of the Maps Creator instance.

Returns:

a Maps Creator resource.

getById

public abstract Creator getById(String id)

Get a Maps Creator resource.

Parameters:

id - the resource ID.

Returns:

a Maps Creator resource along with Response<T>.

getByIdWithResponse

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

Get a Maps Creator resource.

Parameters:

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

Returns:

a Maps Creator resource along with Response<T>.

getWithResponse

public abstract Response<Creator> getWithResponse(String resourceGroupName, String accountName, String creatorName, Context context)

Get a Maps Creator resource.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
accountName - The name of the Maps Account.
creatorName - The name of the Maps Creator instance.
context - The context to associate with this operation.

Returns:

a Maps Creator resource along with Response<T>.

listByAccount

public abstract PagedIterable<Creator> listByAccount(String resourceGroupName, String accountName)

Get all Creator instances for an Azure Maps Account.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
accountName - The name of the Maps Account.

Returns:

all Creator instances for an Azure Maps Account as paginated response with PagedIterable<T>.

listByAccount

public abstract PagedIterable<Creator> listByAccount(String resourceGroupName, String accountName, Context context)

Get all Creator instances for an Azure Maps Account.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
accountName - The name of the Maps Account.
context - The context to associate with this operation.

Returns:

all Creator instances for an Azure Maps Account as paginated response with PagedIterable<T>.

Applies to