/// <summary>
 /// Initializes a new instance of the ReadOnlyFollowingDatabase class.
 /// </summary>
 /// <param name="id">Fully qualified resource ID for the resource. Ex -
 /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}</param>
 /// <param name="name">The name of the resource</param>
 /// <param name="type">The type of the resource. E.g.
 /// "Microsoft.Compute/virtualMachines" or
 /// "Microsoft.Storage/storageAccounts"</param>
 /// <param name="location">Resource location.</param>
 /// <param name="systemData">Azure Resource Manager metadata containing
 /// createdBy and modifiedBy information.</param>
 /// <param name="provisioningState">The provisioned state of the
 /// resource. Possible values include: 'Running', 'Creating',
 /// 'Deleting', 'Succeeded', 'Failed', 'Moving', 'Canceled'</param>
 /// <param name="softDeletePeriod">The time the data should be kept
 /// before it stops being accessible to queries in TimeSpan.</param>
 /// <param name="hotCachePeriod">The time the data should be kept in
 /// cache for fast queries in TimeSpan.</param>
 /// <param name="statistics">The statistics of the database.</param>
 /// <param name="leaderClusterResourceId">The name of the leader
 /// cluster</param>
 /// <param name="attachedDatabaseConfigurationName">The name of the
 /// attached database configuration cluster</param>
 /// <param name="principalsModificationKind">The principals
 /// modification kind of the database. Possible values include:
 /// 'Union', 'Replace', 'None'</param>
 public ReadOnlyFollowingDatabase(string id = default(string), string name = default(string), string type = default(string), string location = default(string), SystemData systemData = default(SystemData), string provisioningState = default(string), System.TimeSpan?softDeletePeriod = default(System.TimeSpan?), System.TimeSpan?hotCachePeriod = default(System.TimeSpan?), DatabaseStatistics statistics = default(DatabaseStatistics), string leaderClusterResourceId = default(string), string attachedDatabaseConfigurationName = default(string), string principalsModificationKind = default(string))
     : base(id, name, type, location, systemData)
 {
     ProvisioningState                 = provisioningState;
     SoftDeletePeriod                  = softDeletePeriod;
     HotCachePeriod                    = hotCachePeriod;
     Statistics                        = statistics;
     LeaderClusterResourceId           = leaderClusterResourceId;
     AttachedDatabaseConfigurationName = attachedDatabaseConfigurationName;
     PrincipalsModificationKind        = principalsModificationKind;
     CustomInit();
 }
 /// <summary>
 /// Initializes a new instance of the ReadWriteDatabase class.
 /// </summary>
 /// <param name="id">Fully qualified resource ID for the resource. Ex -
 /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}</param>
 /// <param name="name">The name of the resource</param>
 /// <param name="type">The type of the resource. E.g.
 /// "Microsoft.Compute/virtualMachines" or
 /// "Microsoft.Storage/storageAccounts"</param>
 /// <param name="location">Resource location.</param>
 /// <param name="systemData">Azure Resource Manager metadata containing
 /// createdBy and modifiedBy information.</param>
 /// <param name="provisioningState">The provisioned state of the
 /// resource. Possible values include: 'Running', 'Creating',
 /// 'Deleting', 'Succeeded', 'Failed', 'Moving', 'Canceled'</param>
 /// <param name="softDeletePeriod">The time the data should be kept
 /// before it stops being accessible to queries in TimeSpan.</param>
 /// <param name="hotCachePeriod">The time the data should be kept in
 /// cache for fast queries in TimeSpan.</param>
 /// <param name="statistics">The statistics of the database.</param>
 /// <param name="isFollowed">Indicates whether the database is
 /// followed.</param>
 public ReadWriteDatabase(string id = default(string), string name = default(string), string type = default(string), string location = default(string), SystemData systemData = default(SystemData), string provisioningState = default(string), System.TimeSpan?softDeletePeriod = default(System.TimeSpan?), System.TimeSpan?hotCachePeriod = default(System.TimeSpan?), DatabaseStatistics statistics = default(DatabaseStatistics), bool?isFollowed = default(bool?))
     : base(id, name, type, location, systemData)
 {
     ProvisioningState = provisioningState;
     SoftDeletePeriod  = softDeletePeriod;
     HotCachePeriod    = hotCachePeriod;
     Statistics        = statistics;
     IsFollowed        = isFollowed;
     CustomInit();
 }