CatalogOperationsExtensions.GetTableValuedFunctionAsync Method (ICatalogOperations, String, String, String, String, String)

 

Retrieves the specified table valued function from the current DataLakeAnalytics catalog

Namespace:   Microsoft.Azure.Management.DataLake.AnalyticsCatalog
Assembly:  Microsoft.Azure.Management.DataLake.AnalyticsCatalog (in Microsoft.Azure.Management.DataLake.AnalyticsCatalog.dll)

Syntax

public static Task<CatalogTableValuedFunctionGetResponse> GetTableValuedFunctionAsync(
    this ICatalogOperations operations,
    string resourceGroupName,
    string accountName,
    string databaseName,
    string schemaName,
    string tableValuedFunctionName
)
public:
[ExtensionAttribute]
static Task<CatalogTableValuedFunctionGetResponse^>^ GetTableValuedFunctionAsync(
    ICatalogOperations^ operations,
    String^ resourceGroupName,
    String^ accountName,
    String^ databaseName,
    String^ schemaName,
    String^ tableValuedFunctionName
)
static member GetTableValuedFunctionAsync : 
        operations:ICatalogOperations *
        resourceGroupName:string *
        accountName:string *
        databaseName:string *
        schemaName:string *
        tableValuedFunctionName:string -> Task<CatalogTableValuedFunctionGetResponse>
<ExtensionAttribute>
Public Shared Function GetTableValuedFunctionAsync (
    operations As ICatalogOperations,
    resourceGroupName As String,
    accountName As String,
    databaseName As String,
    schemaName As String,
    tableValuedFunctionName As String
) As Task(Of CatalogTableValuedFunctionGetResponse)

Parameters

  • resourceGroupName
    Type: System.String

    Required. The name of the resourceGroup the Data Lake Analytics account is in

  • accountName
    Type: System.String

    Required. The name of the account to use

  • databaseName
    Type: System.String

    Required. The name of the database to find the table valued function in.

  • schemaName
    Type: System.String

    Required. The name of the schema to find the table valued function in.

  • tableValuedFunctionName
    Type: System.String

    Required. The name of the tableValuedFunction to find.

Return Value

Type: System.Threading.Tasks.Task<CatalogTableValuedFunctionGetResponse>

The Get table valued function operation response.

See Also

CatalogOperationsExtensions Class
Microsoft.Azure.Management.DataLake.AnalyticsCatalog Namespace

Return to top