LinkedServices Interface

public interface LinkedServices

Resource collection API of LinkedServices.

Method Summary

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

Begins definition for a new LinkedService resource.

abstract void delete(String resourceGroupName, String workspaceName, String linkedServiceName)

Deletes a linked service instance.

abstract void delete(String resourceGroupName, String workspaceName, String linkedServiceName, Context context)

Deletes a linked service instance.

abstract void deleteById(String id)

Deletes a linked service instance.

abstract void deleteByIdWithResponse(String id, Context context)

Deletes a linked service instance.

abstract LinkedService get(String resourceGroupName, String workspaceName, String linkedServiceName)

Gets a linked service instance.

abstract LinkedService getById(String id)

Gets a linked service instance.

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

Gets a linked service instance.

abstract Response<LinkedService> getWithResponse(String resourceGroupName, String workspaceName, String linkedServiceName, Context context)

Gets a linked service instance.

abstract PagedIterable<LinkedService> listByWorkspace(String resourceGroupName, String workspaceName)

Gets the linked services instances in a workspace.

abstract PagedIterable<LinkedService> listByWorkspace(String resourceGroupName, String workspaceName, Context context)

Gets the linked services instances in a workspace.

Method Details

define

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

Begins definition for a new LinkedService resource.

Parameters:

name - resource name.

Returns:

the first stage of the new LinkedService definition.

delete

public abstract void delete(String resourceGroupName, String workspaceName, String linkedServiceName)

Deletes a linked service instance.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
workspaceName - The name of the workspace.
linkedServiceName - Name of the linked service.

delete

public abstract void delete(String resourceGroupName, String workspaceName, String linkedServiceName, Context context)

Deletes a linked service instance.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
workspaceName - The name of the workspace.
linkedServiceName - Name of the linked service.
context - The context to associate with this operation.

deleteById

public abstract void deleteById(String id)

Deletes a linked service instance.

Parameters:

id - the resource ID.

deleteByIdWithResponse

public abstract void deleteByIdWithResponse(String id, Context context)

Deletes a linked service instance.

Parameters:

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

get

public abstract LinkedService get(String resourceGroupName, String workspaceName, String linkedServiceName)

Gets a linked service instance.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
workspaceName - The name of the workspace.
linkedServiceName - Name of the linked service.

Returns:

a linked service instance.

getById

public abstract LinkedService getById(String id)

Gets a linked service instance.

Parameters:

id - the resource ID.

Returns:

a linked service instance along with Response<T>.

getByIdWithResponse

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

Gets a linked service instance.

Parameters:

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

Returns:

a linked service instance along with Response<T>.

getWithResponse

public abstract Response<LinkedService> getWithResponse(String resourceGroupName, String workspaceName, String linkedServiceName, Context context)

Gets a linked service instance.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
workspaceName - The name of the workspace.
linkedServiceName - Name of the linked service.
context - The context to associate with this operation.

Returns:

a linked service instance along with Response<T>.

listByWorkspace

public abstract PagedIterable<LinkedService> listByWorkspace(String resourceGroupName, String workspaceName)

Gets the linked services instances in a workspace.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
workspaceName - The name of the workspace.

Returns:

the linked services instances in a workspace as paginated response with PagedIterable<T>.

listByWorkspace

public abstract PagedIterable<LinkedService> listByWorkspace(String resourceGroupName, String workspaceName, Context context)

Gets the linked services instances in a workspace.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
workspaceName - The name of the workspace.
context - The context to associate with this operation.

Returns:

the linked services instances in a workspace as paginated response with PagedIterable<T>.

Applies to