UserAccessPolicy 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
UserAccessPolicy() |
Initializes a new instance of the UserAccessPolicy class. |
UserAccessPolicy(String, String, String, String, String) |
Initializes a new instance of the UserAccessPolicy class. |
UserAccessPolicy()
Initializes a new instance of the UserAccessPolicy class.
public UserAccessPolicy ();
Public Sub New ()
Applies to
UserAccessPolicy(String, String, String, String, String)
Initializes a new instance of the UserAccessPolicy class.
public UserAccessPolicy (string permissions = default, string accessResourcePath = default, string profileName = default, string startTime = default, string expireTime = default);
new Microsoft.Azure.Management.DataFactory.Models.UserAccessPolicy : string * string * string * string * string -> Microsoft.Azure.Management.DataFactory.Models.UserAccessPolicy
Public Sub New (Optional permissions As String = Nothing, Optional accessResourcePath As String = Nothing, Optional profileName As String = Nothing, Optional startTime As String = Nothing, Optional expireTime As String = Nothing)
Parameters
- permissions
- String
The string with permissions for Data Plane access. Currently only 'r' is supported which grants read only access.
- accessResourcePath
- String
The resource path to get access relative to factory. Currently only empty string is supported which corresponds to the factory resource.
- profileName
- String
The name of the profile. Currently only the default is supported. The default value is DefaultProfile.
- startTime
- String
Start time for the token. If not specified the current time will be used.
- expireTime
- String
Expiration time for the token. Maximum duration for the token is eight hours and by default the token will expire in eight hours.
Applies to
Azure SDK for .NET