Share via


CacheIdentity Constructors

Definition

Overloads

CacheIdentity()

Initializes a new instance of the CacheIdentity class.

CacheIdentity(String, String, Nullable<CacheIdentityType>)

Initializes a new instance of the CacheIdentity class.

CacheIdentity()

Initializes a new instance of the CacheIdentity class.

public CacheIdentity ();
Public Sub New ()

Applies to

CacheIdentity(String, String, Nullable<CacheIdentityType>)

Initializes a new instance of the CacheIdentity class.

public CacheIdentity (string principalId = default, string tenantId = default, Microsoft.Azure.Management.StorageCache.Models.CacheIdentityType? type = default);
new Microsoft.Azure.Management.StorageCache.Models.CacheIdentity : string * string * Nullable<Microsoft.Azure.Management.StorageCache.Models.CacheIdentityType> -> Microsoft.Azure.Management.StorageCache.Models.CacheIdentity
Public Sub New (Optional principalId As String = Nothing, Optional tenantId As String = Nothing, Optional type As Nullable(Of CacheIdentityType) = Nothing)

Parameters

principalId
String

The principal id of the cache.

tenantId
String

The tenant id associated with the cache.

type
Nullable<CacheIdentityType>

The type of identity used for the cache. Possible values include: 'SystemAssigned', 'None'

Applies to