SecurityConnectorApplicationOperations Interface

public interface SecurityConnectorApplicationOperations

Resource collection API of SecurityConnectorApplicationOperations.

Method Summary

Modifier and Type Method and Description
abstract Application createOrUpdate(String resourceGroupName, String securityConnectorName, String applicationId, ApplicationInner application)

Creates or update a security Application on the given security connector.

abstract Response<Application> createOrUpdateWithResponse(String resourceGroupName, String securityConnectorName, String applicationId, ApplicationInner application, Context context)

Creates or update a security Application on the given security connector.

abstract void delete(String resourceGroupName, String securityConnectorName, String applicationId)

Delete an Application over a given scope.

abstract Response<Void> deleteWithResponse(String resourceGroupName, String securityConnectorName, String applicationId, Context context)

Delete an Application over a given scope.

abstract Application get(String resourceGroupName, String securityConnectorName, String applicationId)

Get a specific application for the requested scope by applicationId.

abstract Response<Application> getWithResponse(String resourceGroupName, String securityConnectorName, String applicationId, Context context)

Get a specific application for the requested scope by applicationId.

Method Details

createOrUpdate

public abstract Application createOrUpdate(String resourceGroupName, String securityConnectorName, String applicationId, ApplicationInner application)

Creates or update a security Application on the given security connector.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription. The name is case insensitive.
securityConnectorName - The security connector name.
applicationId - The security Application key - unique key for the standard application.
application - Application over a subscription scope.

Returns:

security Application over a given scope.

createOrUpdateWithResponse

public abstract Response createOrUpdateWithResponse(String resourceGroupName, String securityConnectorName, String applicationId, ApplicationInner application, Context context)

Creates or update a security Application on the given security connector.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription. The name is case insensitive.
securityConnectorName - The security connector name.
applicationId - The security Application key - unique key for the standard application.
application - Application over a subscription scope.
context - The context to associate with this operation.

Returns:

security Application over a given scope along with Response<T>.

delete

public abstract void delete(String resourceGroupName, String securityConnectorName, String applicationId)

Delete an Application over a given scope.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription. The name is case insensitive.
securityConnectorName - The security connector name.
applicationId - The security Application key - unique key for the standard application.

deleteWithResponse

public abstract Response deleteWithResponse(String resourceGroupName, String securityConnectorName, String applicationId, Context context)

Delete an Application over a given scope.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription. The name is case insensitive.
securityConnectorName - The security connector name.
applicationId - The security Application key - unique key for the standard application.
context - The context to associate with this operation.

Returns:

get

public abstract Application get(String resourceGroupName, String securityConnectorName, String applicationId)

Get a specific application for the requested scope by applicationId.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription. The name is case insensitive.
securityConnectorName - The security connector name.
applicationId - The security Application key - unique key for the standard application.

Returns:

a specific application for the requested scope by applicationId.

getWithResponse

public abstract Response getWithResponse(String resourceGroupName, String securityConnectorName, String applicationId, Context context)

Get a specific application for the requested scope by applicationId.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription. The name is case insensitive.
securityConnectorName - The security connector name.
applicationId - The security Application key - unique key for the standard application.
context - The context to associate with this operation.

Returns:

a specific application for the requested scope by applicationId along with Response<T>.

Applies to