다음을 통해 공유


GenerateTokenRequest Constructors

Definition

Overloads

GenerateTokenRequest()
GenerateTokenRequest(TokenAccessLevel, EffectiveIdentity)
GenerateTokenRequest(TokenAccessLevel, Nullable<Boolean>, EffectiveIdentity)
GenerateTokenRequest(TokenAccessLevel, String, EffectiveIdentity)
GenerateTokenRequest(TokenAccessLevel, String, Nullable<Boolean>, EffectiveIdentity)
GenerateTokenRequest(Nullable<TokenAccessLevel>, String, Nullable<Boolean>, IList<EffectiveIdentity>)

GenerateTokenRequest()

public GenerateTokenRequest ();
Public Sub New ()

Applies to

GenerateTokenRequest(TokenAccessLevel, EffectiveIdentity)

public GenerateTokenRequest (Microsoft.PowerBI.Api.Models.TokenAccessLevel accessLevel, Microsoft.PowerBI.Api.Models.EffectiveIdentity identity);
new Microsoft.PowerBI.Api.Models.GenerateTokenRequest : Microsoft.PowerBI.Api.Models.TokenAccessLevel * Microsoft.PowerBI.Api.Models.EffectiveIdentity -> Microsoft.PowerBI.Api.Models.GenerateTokenRequest
Public Sub New (accessLevel As TokenAccessLevel, identity As EffectiveIdentity)

Parameters

accessLevel
TokenAccessLevel

Applies to

GenerateTokenRequest(TokenAccessLevel, Nullable<Boolean>, EffectiveIdentity)

public GenerateTokenRequest (Microsoft.PowerBI.Api.Models.TokenAccessLevel accessLevel, bool? allowSaveAs, Microsoft.PowerBI.Api.Models.EffectiveIdentity identity);
new Microsoft.PowerBI.Api.Models.GenerateTokenRequest : Microsoft.PowerBI.Api.Models.TokenAccessLevel * Nullable<bool> * Microsoft.PowerBI.Api.Models.EffectiveIdentity -> Microsoft.PowerBI.Api.Models.GenerateTokenRequest
Public Sub New (accessLevel As TokenAccessLevel, allowSaveAs As Nullable(Of Boolean), identity As EffectiveIdentity)

Parameters

accessLevel
TokenAccessLevel
allowSaveAs
Nullable<Boolean>

Applies to

GenerateTokenRequest(TokenAccessLevel, String, EffectiveIdentity)

public GenerateTokenRequest (Microsoft.PowerBI.Api.Models.TokenAccessLevel accessLevel, string datasetId, Microsoft.PowerBI.Api.Models.EffectiveIdentity identity);
new Microsoft.PowerBI.Api.Models.GenerateTokenRequest : Microsoft.PowerBI.Api.Models.TokenAccessLevel * string * Microsoft.PowerBI.Api.Models.EffectiveIdentity -> Microsoft.PowerBI.Api.Models.GenerateTokenRequest
Public Sub New (accessLevel As TokenAccessLevel, datasetId As String, identity As EffectiveIdentity)

Parameters

accessLevel
TokenAccessLevel
datasetId
String

Applies to

GenerateTokenRequest(TokenAccessLevel, String, Nullable<Boolean>, EffectiveIdentity)

public GenerateTokenRequest (Microsoft.PowerBI.Api.Models.TokenAccessLevel accessLevel, string datasetId, bool? allowSaveAs, Microsoft.PowerBI.Api.Models.EffectiveIdentity identity);
new Microsoft.PowerBI.Api.Models.GenerateTokenRequest : Microsoft.PowerBI.Api.Models.TokenAccessLevel * string * Nullable<bool> * Microsoft.PowerBI.Api.Models.EffectiveIdentity -> Microsoft.PowerBI.Api.Models.GenerateTokenRequest
Public Sub New (accessLevel As TokenAccessLevel, datasetId As String, allowSaveAs As Nullable(Of Boolean), identity As EffectiveIdentity)

Parameters

accessLevel
TokenAccessLevel
datasetId
String
allowSaveAs
Nullable<Boolean>

Applies to

GenerateTokenRequest(Nullable<TokenAccessLevel>, String, Nullable<Boolean>, IList<EffectiveIdentity>)

public GenerateTokenRequest (Microsoft.PowerBI.Api.Models.TokenAccessLevel? accessLevel = default, string datasetId = default, bool? allowSaveAs = default, System.Collections.Generic.IList<Microsoft.PowerBI.Api.Models.EffectiveIdentity> identities = default);
new Microsoft.PowerBI.Api.Models.GenerateTokenRequest : Nullable<Microsoft.PowerBI.Api.Models.TokenAccessLevel> * string * Nullable<bool> * System.Collections.Generic.IList<Microsoft.PowerBI.Api.Models.EffectiveIdentity> -> Microsoft.PowerBI.Api.Models.GenerateTokenRequest
Public Sub New (Optional accessLevel As Nullable(Of TokenAccessLevel) = Nothing, Optional datasetId As String = Nothing, Optional allowSaveAs As Nullable(Of Boolean) = Nothing, Optional identities As IList(Of EffectiveIdentity) = Nothing)

Parameters

accessLevel
Nullable<TokenAccessLevel>
datasetId
String
allowSaveAs
Nullable<Boolean>
identities
IList<EffectiveIdentity>

Applies to