CacheIdentity Constructors
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.
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
Azure SDK for .NET