/// <summary> /// Initializes a new instance of the Vault class. /// </summary> /// <param name="properties">Properties of the vault</param> /// <param name="id">Fully qualified identifier of the key vault /// resource.</param> /// <param name="name">Name of the key vault resource.</param> /// <param name="type">Resource type of the key vault resource.</param> /// <param name="location">Azure location of the key vault /// resource.</param> /// <param name="tags">Tags assigned to the key vault resource.</param> public Vault(VaultProperties properties, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary <string, string> tags = default(IDictionary <string, string>)) { Id = id; Name = name; Type = type; Location = location; Tags = tags; Properties = properties; CustomInit(); }
/// <summary> /// Initializes a new instance of the VaultCreateOrUpdateParameters /// class. /// </summary> public VaultCreateOrUpdateParameters() { Properties = new VaultProperties(); CustomInit(); }
/// <summary> /// Initializes a new instance of the Vault class. /// </summary> public Vault() { Properties = new VaultProperties(); CustomInit(); }
/// <summary> /// Initializes a new instance of the Vault class. /// </summary> /// <param name="name">The name of the key vault.</param> /// <param name="location">The supported Azure location where the key /// vault should be created.</param> /// <param name="properties">Properties of the vault</param> /// <param name="id">The Azure Resource Manager resource ID for the /// key vault.</param> /// <param name="type">The resource type of the key vault.</param> /// <param name="tags">The tags that will be assigned to the key /// vault. </param> public Vault(string name, string location, VaultProperties properties, string id = default(string), string type = default(string), IDictionary <string, string> tags = default(IDictionary <string, string>)) : base(name, location, id, type, tags) { Properties = new VaultProperties(); Properties = properties; }
/// <summary> /// Initializes a new instance of the Vault class. /// </summary> public Vault() { Properties = new VaultProperties(); }
/// <summary> /// Initializes a new instance of the Vault class. /// </summary> /// <param name="location">The supported Azure location where the key /// vault should be created.</param> /// <param name="properties">Properties of the vault</param> /// <param name="id">The Azure Resource Manager resource ID for the key /// vault.</param> /// <param name="name">The name of the key vault.</param> /// <param name="type">The resource type of the key vault.</param> /// <param name="tags">The tags that will be assigned to the key vault. /// </param> public Vault(string location, VaultProperties properties, string id = default(string), string name = default(string), string type = default(string), IDictionary <string, string> tags = default(IDictionary <string, string>)) : base(location, id, name, type, tags) { Properties = properties; CustomInit(); }