Class SyncAgentLinkedDatabase
An Azure SQL Database sync agent linked database.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Sql.dll
Syntax
[Microsoft.Rest.Serialization.JsonTransformation]
public class SyncAgentLinkedDatabase : Microsoft.Azure.Management.Sql.Models.ProxyResource
Constructors
SyncAgentLinkedDatabase()
Initializes a new instance of the SyncAgentLinkedDatabase class.
Declaration
public SyncAgentLinkedDatabase ();
SyncAgentLinkedDatabase(String, String, String, String, String, String, String, String, String)
Initializes a new instance of the SyncAgentLinkedDatabase class.
Declaration
public SyncAgentLinkedDatabase (string id = null, string name = null, string type = null, string databaseType = null, string databaseId = null, string description = null, string serverName = null, string databaseName = null, string userName = null);
Parameters
String
id
Resource ID. |
String
name
Resource name. |
String
type
Resource type. |
String
databaseType
Type of the sync agent linked database. Possible values include: 'AzureSqlDatabase', 'SqlServerDatabase' |
String
databaseId
Id of the sync agent linked database. |
String
description
Description of the sync agent linked database. |
String
serverName
Server name of the sync agent linked database. |
String
databaseName
Database name of the sync agent linked database. |
String
userName
User name of the sync agent linked database. |
Properties
DatabaseId
Gets id of the sync agent linked database.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="properties.databaseId")]
public string DatabaseId { get; }
Property Value
String
|
DatabaseName
Gets database name of the sync agent linked database.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="properties.databaseName")]
public string DatabaseName { get; }
Property Value
String
|
DatabaseType
Gets type of the sync agent linked database. Possible values include: 'AzureSqlDatabase', 'SqlServerDatabase'
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="properties.databaseType")]
public string DatabaseType { get; }
Property Value
String
|
Description
Gets description of the sync agent linked database.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="properties.description")]
public string Description { get; }
Property Value
String
|
ServerName
Gets server name of the sync agent linked database.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="properties.serverName")]
public string ServerName { get; }
Property Value
String
|
UserName
Gets user name of the sync agent linked database.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="properties.userName")]
public string UserName { get; }
Property Value
String
|