/// <summary>
 /// Initializes a new instance of the ConfigurationProfilePreference
 /// class.
 /// </summary>
 /// <param name="location">The geo-location where the resource
 /// lives</param>
 /// <param name="id">Fully qualified resource Id for the resource. Ex -
 /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}</param>
 /// <param name="name">The name of the resource</param>
 /// <param name="type">The type of the resource. Ex-
 /// Microsoft.Compute/virtualMachines or
 /// Microsoft.Storage/storageAccounts.</param>
 /// <param name="tags">Resource tags.</param>
 /// <param name="properties">Properties of the configuration profile
 /// preference.</param>
 public ConfigurationProfilePreference(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary <string, string> tags = default(IDictionary <string, string>), ConfigurationProfilePreferenceProperties properties = default(ConfigurationProfilePreferenceProperties))
     : base(location, id, name, type, tags)
 {
     Properties = properties;
     CustomInit();
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the
 /// ConfigurationProfilePreferenceUpdate class.
 /// </summary>
 /// <param name="tags">The tags of the resource.</param>
 /// <param name="properties">Properties of the configuration profile
 /// preference.</param>
 public ConfigurationProfilePreferenceUpdate(IDictionary <string, string> tags = default(IDictionary <string, string>), ConfigurationProfilePreferenceProperties properties = default(ConfigurationProfilePreferenceProperties))
     : base(tags)
 {
     Properties = properties;
     CustomInit();
 }