/// <summary>
 /// Initializes a new instance of the DppTrackedResource class.
 /// </summary>
 /// <param name="eTag">Optional ETag.</param>
 /// <param name="id">Resource Id represents the complete path to the
 /// resource.</param>
 /// <param name="identity">Input Managed Identity Details</param>
 /// <param name="location">Resource location.</param>
 /// <param name="name">Resource name associated with the
 /// resource.</param>
 /// <param name="tags">Resource tags.</param>
 /// <param name="type">Resource type represents the complete path of
 /// the form Namespace/ResourceType/ResourceType/...</param>
 public DppTrackedResource(string eTag = default(string), string id = default(string), DppIdentityDetails identity = default(DppIdentityDetails), string location = default(string), string name = default(string), IDictionary <string, string> tags = default(IDictionary <string, string>), string type = default(string), SystemData systemData = default(SystemData))
 {
     ETag       = eTag;
     Id         = id;
     Identity   = identity;
     Location   = location;
     Name       = name;
     Tags       = tags;
     Type       = type;
     SystemData = systemData;
     CustomInit();
 }
 /// <summary>
 /// Initializes a new instance of the BackupVaultResource class.
 /// </summary>
 /// <param name="properties">BackupVaultResource properties</param>
 /// <param name="eTag">Optional ETag.</param>
 /// <param name="id">Resource Id represents the complete path to the
 /// resource.</param>
 /// <param name="identity">Input Managed Identity Details</param>
 /// <param name="location">Resource location.</param>
 /// <param name="name">Resource name associated with the
 /// resource.</param>
 /// <param name="tags">Resource tags.</param>
 /// <param name="type">Resource type represents the complete path of
 /// the form Namespace/ResourceType/ResourceType/...</param>
 public BackupVaultResource(BackupVault properties, string eTag = default(string), string id = default(string), DppIdentityDetails identity = default(DppIdentityDetails), string location = default(string), string name = default(string), IDictionary <string, string> tags = default(IDictionary <string, string>), string type = default(string), SystemData systemData = default(SystemData))
     : base(eTag, id, identity, location, name, tags, type, systemData)
 {
     Properties = properties;
     CustomInit();
 }
 /// <summary>
 /// Initializes a new instance of the PatchResourceRequestInput class.
 /// </summary>
 /// <param name="identity">Input Managed Identity Details</param>
 /// <param name="tags">Resource tags.</param>
 public PatchResourceRequestInput(DppIdentityDetails identity = default(DppIdentityDetails), IDictionary <string, string> tags = default(IDictionary <string, string>))
 {
     Identity = identity;
     Tags     = tags;
     CustomInit();
 }