示例#1
0
 /// <summary>
 /// Initializes a new instance of the Vault class.
 /// </summary>
 public Vault()
 {
     Properties = new VaultProperties();
     CustomInit();
 }
示例#2
0
 /// <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();
 }
示例#3
0
 /// <summary>
 /// Initializes a new instance of the VaultCreateOrUpdateParameters
 /// class.
 /// </summary>
 public VaultCreateOrUpdateParameters()
 {
     Properties = new VaultProperties();
     CustomInit();
 }