Class ApiManagementServiceIdentity
Identity properties of the Api Management service resource.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.ApiManagement.dll
Syntax
public class ApiManagementServiceIdentity
Constructors
ApiManagementServiceIdentity()
Initializes a new instance of the ApiManagementServiceIdentity class.
Declaration
public ApiManagementServiceIdentity ();
ApiManagementServiceIdentity(Nullable<Guid>, Nullable<Guid>)
Initializes a new instance of the ApiManagementServiceIdentity class.
Declaration
public ApiManagementServiceIdentity (Nullable<Guid> principalId = null, Nullable<Guid> tenantId = null);
Parameters
|
Nullable<Guid>
principalId
The principal id of the identity. |
|
Nullable<Guid>
tenantId
The client tenant id of the identity. |
Properties
PrincipalId
Gets the principal id of the identity.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="principalId")]
public Nullable<Guid> PrincipalId { get; }
Property Value
|
Nullable<Guid>
|
TenantId
Gets the client tenant id of the identity.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="tenantId")]
public Nullable<Guid> TenantId { get; }
Property Value
|
Nullable<Guid>
|
Type
The identity type. Currently the only supported type is 'SystemAssigned'.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="type")]
public static string Type { get; }
Property Value
|
String
|