Share via


Table Constructors

Definition

Overloads

Table()

Initializes a new instance of the Table class.

Table(String, String, String, String, IList<TableSignedIdentifier>)

Initializes a new instance of the Table class.

Table()

Initializes a new instance of the Table class.

public Table ();
Public Sub New ()

Applies to

Table(String, String, String, String, IList<TableSignedIdentifier>)

Initializes a new instance of the Table class.

public Table (string id = default, string name = default, string type = default, string tableName = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Storage.Models.TableSignedIdentifier> signedIdentifiers = default);
new Microsoft.Azure.Management.Storage.Models.Table : string * string * string * string * System.Collections.Generic.IList<Microsoft.Azure.Management.Storage.Models.TableSignedIdentifier> -> Microsoft.Azure.Management.Storage.Models.Table
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional tableName As String = Nothing, Optional signedIdentifiers As IList(Of TableSignedIdentifier) = Nothing)

Parameters

id
String

Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}

name
String

The name of the resource

type
String

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

tableName
String

Table name under the specified account

signedIdentifiers
IList<TableSignedIdentifier>

List of stored access policies specified on the table.

Applies to