Class FabricDataShareResponseModel
Class that represents the information for a Fabric Data Share.
public class FabricDataShareResponseModel
- Inheritance
-
FabricDataShareResponseModel
- Inherited Members
Properties
Id
The id of the external data share.
[JsonProperty("Id", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public long Id { get; set; }
Property Value
InvitationUrl
The url to the invitation for the Fabric Data Share.
[JsonProperty("InvitationUrl", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public Uri InvitationUrl { get; set; }
Property Value
Status
The current status of the Fabric Data Share.
[JsonProperty("Status", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Status { get; set; }
Property Value
TenantId
The tenant id of the external data share.
[JsonProperty("TenantId", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string TenantId { get; set; }
Property Value
UserPrincipalName
User principal name (email).
The user principal should be in the same tenant defined in the tenant id.
So, if the tenant id refers to nfielddevelopment.onmicrosoft.com then the email / UserPrincipalName
should be in this domain/tenant.
[JsonProperty("UserPrincipalName", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string UserPrincipalName { get; set; }