/// <summary>
 /// Initializes a new instance of the DataFlowResource class.
 /// </summary>
 /// <param name="properties">Data flow properties.</param>
 /// <param name="id">The resource identifier.</param>
 /// <param name="name">The resource name.</param>
 /// <param name="type">The resource type.</param>
 /// <param name="etag">Etag identifies change in the resource.</param>
 public DataFlowResource(DataFlow properties, string id = default(string), string name = default(string), string type = default(string), string etag = default(string))
     : base(id, name, type, etag)
 {
     Properties = properties;
     CustomInit();
 }