Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the ResourceGroupInner class.
 /// </summary>
 /// <param name="properties">The resource group properties.</param>
 /// <param name="managedBy">The ID of the resource that manages this
 /// resource group.</param>
 public ResourceGroupInner(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary <string, string> tags = default(IDictionary <string, string>), ResourceGroupProperties properties = default(ResourceGroupProperties), string managedBy = default(string))
     : base(location, id, name, type, tags)
 {
     Properties = properties;
     ManagedBy  = managedBy;
     CustomInit();
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the ResourceGroupPatchable class.
 /// </summary>
 /// <param name="name">The name of the resource group.</param>
 /// <param name="properties">The resource group properties.</param>
 /// <param name="managedBy">The ID of the resource that manages this
 /// resource group.</param>
 /// <param name="tags">The tags attached to the resource group.</param>
 public ResourceGroupPatchable(string name = default(string), ResourceGroupProperties properties = default(ResourceGroupProperties), string managedBy = default(string), IDictionary <string, string> tags = default(IDictionary <string, string>))
 {
     Name       = name;
     Properties = properties;
     ManagedBy  = managedBy;
     Tags       = tags;
     CustomInit();
 }
 /// <summary>
 /// Initializes a new instance of the ResourceGroupInner class.
 /// </summary>
 /// <param name="location">The location of the resource group. It
 /// cannot be changed after the resource group has been created. Has to
 /// be one of the supported Azure Locations, such as West US, East US,
 /// West Europe, East Asia, etc.</param>
 /// <param name="id">The ID of the resource group.</param>
 /// <param name="name">The Name of the resource group.</param>
 /// <param name="tags">The tags attached to the resource group.</param>
 public ResourceGroupInner(string location, string id = default(string), string name = default(string), ResourceGroupProperties properties = default(ResourceGroupProperties), IDictionary <string, string> tags = default(IDictionary <string, string>))
 {
     Id         = id;
     Name       = name;
     Properties = properties;
     Location   = location;
     Tags       = tags;
     CustomInit();
 }