Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the NamespaceResource class.
 /// </summary>
 public NamespaceResource(string id = default(string), string location = default(string), string name = default(string), string type = default(string), IDictionary <string, string> tags = default(IDictionary <string, string>), NamespaceProperties properties = default(NamespaceProperties))
 {
     Id         = id;
     Location   = location;
     Name       = name;
     Type       = type;
     Tags       = tags;
     Properties = properties;
 }
 /// <summary>
 /// Initializes a new instance of the NamespaceCreateOrUpdateParameters
 /// class with required arguments.
 /// </summary>
 public NamespaceCreateOrUpdateParameters(string location, NamespaceProperties properties)
     : this()
 {
     if (location == null)
     {
         throw new ArgumentNullException("location");
     }
     if (properties == null)
     {
         throw new ArgumentNullException("properties");
     }
     this.Location   = location;
     this.Properties = properties;
 }
 /// <summary>
 /// Initializes a new instance of the NamespaceCreateOrUpdateParameters
 /// class with required arguments.
 /// </summary>
 public NamespaceCreateOrUpdateParameters(string location, NamespaceProperties properties)
     : this()
 {
     if (location == null)
     {
         throw new ArgumentNullException("location");
     }
     if (properties == null)
     {
         throw new ArgumentNullException("properties");
     }
     this.Location = location;
     this.Properties = properties;
 }
 /// <summary>
 /// Initializes a new instance of the
 /// NamespaceCreateOrUpdateParameters class.
 /// </summary>
 public NamespaceCreateOrUpdateParameters(string location, NamespaceProperties properties, IDictionary <string, string> tags = default(IDictionary <string, string>))
 {
     Location   = location;
     Tags       = tags;
     Properties = properties;
 }