Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the
 /// DatabaseAccountCreateUpdateParameters class.
 /// </summary>
 /// <param name="id">The unique resource identifier of the ARM
 /// resource.</param>
 /// <param name="name">The name of the ARM resource.</param>
 /// <param name="type">The type of Azure resource.</param>
 /// <param name="location">The location of the resource group to which
 /// the resource belongs.</param>
 /// <param name="kind">Indicates the type of database account. This can
 /// only be set at database account creation. Possible values include:
 /// 'GlobalDocumentDB', 'MongoDB', 'Parse'</param>
 public DatabaseAccountCreateUpdateParameters(DatabaseAccountCreateUpdateProperties 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>), ManagedServiceIdentity identity = default(ManagedServiceIdentity), string kind = default(string))
     : base(id, name, type, location, tags, identity)
 {
     Kind       = kind;
     Properties = properties;
     CustomInit();
 }
Exemple #2
0
 /// <summary>
 /// Initializes a new instance of the
 /// DatabaseAccountCreateUpdateParameters class.
 /// </summary>
 public DatabaseAccountCreateUpdateParameters()
 {
     Properties = new DatabaseAccountCreateUpdateProperties();
     CustomInit();
 }