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 LinkedServiceResource resource.

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

Deletes a linked service.

abstract void deleteById(String id)

Deletes a linked service.

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

Deletes a linked service.

abstract Response<Void> deleteWithResponse(String resourceGroupName, String factoryName, String linkedServiceName, Context context)

Deletes a linked service.

abstract LinkedServiceResource get(String resourceGroupName, String factoryName, String linkedServiceName)

Gets a linked service.

abstract LinkedServiceResource getById(String id)

Gets a linked service.

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

Gets a linked service.

abstract Response<LinkedServiceResource> getWithResponse(String resourceGroupName, String factoryName, String linkedServiceName, String ifNoneMatch, Context context)

Gets a linked service.

abstract PagedIterable<LinkedServiceResource> listByFactory(String resourceGroupName, String factoryName)

Lists linked services.

abstract PagedIterable<LinkedServiceResource> listByFactory(String resourceGroupName, String factoryName, Context context)

Lists linked services.

Method Details

define

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

Begins definition for a new LinkedServiceResource resource.

Parameters:

name - resource name.

Returns:

the first stage of the new LinkedServiceResource definition.

delete

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

Deletes a linked service.

Parameters:

resourceGroupName - The resource group name.
factoryName - The factory name.
linkedServiceName - The linked service name.

deleteById

public abstract void deleteById(String id)

Deletes a linked service.

Parameters:

id - the resource ID.

deleteByIdWithResponse

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

Deletes a linked service.

Parameters:

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

Returns:

deleteWithResponse

public abstract Response<Void> deleteWithResponse(String resourceGroupName, String factoryName, String linkedServiceName, Context context)

Deletes a linked service.

Parameters:

resourceGroupName - The resource group name.
factoryName - The factory name.
linkedServiceName - The linked service name.
context - The context to associate with this operation.

Returns:

get

public abstract LinkedServiceResource get(String resourceGroupName, String factoryName, String linkedServiceName)

Gets a linked service.

Parameters:

resourceGroupName - The resource group name.
factoryName - The factory name.
linkedServiceName - The linked service name.

Returns:

a linked service.

getById

public abstract LinkedServiceResource getById(String id)

Gets a linked service.

Parameters:

id - the resource ID.

Returns:

a linked service along with Response<T>.

getByIdWithResponse

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

Gets a linked service.

Parameters:

id - the resource ID.
ifNoneMatch - ETag of the linked service entity. Should only be specified for get. If the ETag matches the existing entity tag, or if * was provided, then no content will be returned.
context - The context to associate with this operation.

Returns:

a linked service along with Response<T>.

getWithResponse

public abstract Response<LinkedServiceResource> getWithResponse(String resourceGroupName, String factoryName, String linkedServiceName, String ifNoneMatch, Context context)

Gets a linked service.

Parameters:

resourceGroupName - The resource group name.
factoryName - The factory name.
linkedServiceName - The linked service name.
ifNoneMatch - ETag of the linked service entity. Should only be specified for get. If the ETag matches the existing entity tag, or if * was provided, then no content will be returned.
context - The context to associate with this operation.

Returns:

a linked service along with Response<T>.

listByFactory

public abstract PagedIterable<LinkedServiceResource> listByFactory(String resourceGroupName, String factoryName)

Lists linked services.

Parameters:

resourceGroupName - The resource group name.
factoryName - The factory name.

Returns:

a list of linked service resources as paginated response with PagedIterable<T>.

listByFactory

public abstract PagedIterable<LinkedServiceResource> listByFactory(String resourceGroupName, String factoryName, Context context)

Lists linked services.

Parameters:

resourceGroupName - The resource group name.
factoryName - The factory name.
context - The context to associate with this operation.

Returns:

a list of linked service resources as paginated response with PagedIterable<T>.

Applies to