IFunctionsOperations Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
FunctionsOperations operations.
public interface IFunctionsOperations
type IFunctionsOperations = interface
Public Interface IFunctionsOperations
Methods
Extension Methods
BeginTest(IFunctionsOperations, String, String, String, Function) |
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. |
BeginTestAsync(IFunctionsOperations, String, String, String, Function, CancellationToken) |
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. |
CreateOrReplace(IFunctionsOperations, Function, String, String, String, String, String) |
Creates a function or replaces an already existing function under an existing streaming job. |
CreateOrReplaceAsync(IFunctionsOperations, Function, String, String, String, String, String, CancellationToken) |
Creates a function or replaces an already existing function under an existing streaming job. |
Delete(IFunctionsOperations, String, String, String) |
Deletes a function from the streaming job. |
DeleteAsync(IFunctionsOperations, String, String, String, CancellationToken) |
Deletes a function from the streaming job. |
Get(IFunctionsOperations, String, String, String) |
Gets details about the specified function. |
GetAsync(IFunctionsOperations, String, String, String, CancellationToken) |
Gets details about the specified function. |
ListByStreamingJob(IFunctionsOperations, String, String, String) |
Lists all of the functions under the specified streaming job. |
ListByStreamingJobAsync(IFunctionsOperations, String, String, String, CancellationToken) |
Lists all of the functions under the specified streaming job. |
ListByStreamingJobNext(IFunctionsOperations, String) |
Lists all of the functions under the specified streaming job. |
ListByStreamingJobNextAsync(IFunctionsOperations, String, CancellationToken) |
Lists all of the functions under the specified streaming job. |
RetrieveDefaultDefinition(IFunctionsOperations, String, String, String, FunctionRetrieveDefaultDefinitionParameters) |
Retrieves the default definition of a function based on the parameters specified. |
RetrieveDefaultDefinitionAsync(IFunctionsOperations, String, String, String, FunctionRetrieveDefaultDefinitionParameters, CancellationToken) |
Retrieves the default definition of a function based on the parameters specified. |
Test(IFunctionsOperations, String, String, String, Function) |
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. |
TestAsync(IFunctionsOperations, String, String, String, Function, CancellationToken) |
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. |
Update(IFunctionsOperations, Function, String, String, String, String) |
Updates an existing function under an existing streaming job. This can be used to partially update (ie. update one or two properties) a function without affecting the rest the job or function definition. |
UpdateAsync(IFunctionsOperations, Function, String, String, String, String, CancellationToken) |
Updates an existing function under an existing streaming job. This can be used to partially update (ie. update one or two properties) a function without affecting the rest the job or function definition. |