Functions Interface
public interface Functions
Resource collection API of Functions.
Method Summary
Method Details
define
public abstract Function.DefinitionStages.Blank define(String name)
Begins definition for a new Function resource.
Parameters:
Returns:
delete
public abstract void delete(String resourceGroupName, String jobName, String functionName)
Deletes a function from the streaming job.
Parameters:
deleteById
public abstract void deleteById(String id)
Deletes a function from the streaming job.
Parameters:
deleteByIdWithResponse
public abstract Response<Void> deleteByIdWithResponse(String id, Context context)
Deletes a function from the streaming job.
Parameters:
Returns:
deleteWithResponse
public abstract Response<Void> deleteWithResponse(String resourceGroupName, String jobName, String functionName, Context context)
Deletes a function from the streaming job.
Parameters:
Returns:
get
public abstract Function get(String resourceGroupName, String jobName, String functionName)
Gets details about the specified function.
Parameters:
Returns:
getById
public abstract Function getById(String id)
Gets details about the specified function.
Parameters:
Returns:
getByIdWithResponse
public abstract Response<Function> getByIdWithResponse(String id, Context context)
Gets details about the specified function.
Parameters:
Returns:
getWithResponse
public abstract Response<Function> getWithResponse(String resourceGroupName, String jobName, String functionName, Context context)
Gets details about the specified function.
Parameters:
Returns:
listByStreamingJob
public abstract PagedIterable<Function> listByStreamingJob(String resourceGroupName, String jobName)
Lists all of the functions under the specified streaming job.
Parameters:
Returns:
listByStreamingJob
public abstract PagedIterable<Function> listByStreamingJob(String resourceGroupName, String jobName, String select, Context context)
Lists all of the functions under the specified streaming job.
Parameters:
Returns:
retrieveDefaultDefinition
public abstract Function retrieveDefaultDefinition(String resourceGroupName, String jobName, String functionName)
Retrieves the default definition of a function based on the parameters specified.
Parameters:
Returns:
retrieveDefaultDefinitionWithResponse
public abstract Response<Function> retrieveDefaultDefinitionWithResponse(String resourceGroupName, String jobName, String functionName, FunctionRetrieveDefaultDefinitionParameters functionRetrieveDefaultDefinitionParameters, Context context)
Retrieves the default definition of a function based on the parameters specified.
Parameters:
Returns:
test
public abstract ResourceTestStatus test(String resourceGroupName, String jobName, String functionName)
Tests if the information provided for a function is valid. This can range from testing the connection to the underlying web service behind the function or making sure the function code provided is syntactically correct.
Parameters:
Returns:
test
public abstract ResourceTestStatus test(String resourceGroupName, String jobName, String functionName, FunctionInner function, Context context)
Tests if the information provided for a function is valid. This can range from testing the connection to the underlying web service behind the function or making sure the function code provided is syntactically correct.
Parameters:
Returns: