/// <summary>
 /// Initializes a new instance of the RestorableSqlContainerGetResult
 /// class.
 /// </summary>
 /// <param name="resource">The resource of an Azure Cosmos DB SQL
 /// container event</param>
 /// <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>
 public RestorableSqlContainerGetResult(RestorableSqlContainerPropertiesResource resource = default(RestorableSqlContainerPropertiesResource), string id = default(string), string name = default(string), string type = default(string))
 {
     Resource = resource;
     Id       = id;
     Name     = name;
     Type     = type;
     CustomInit();
 }
Esempio n. 2
0
 /// <summary>
 /// Initializes a new instance of the RestorableSqlContainerGetResult
 /// 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>
 public RestorableSqlContainerGetResult(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), RestorableSqlContainerPropertiesResource resource = default(RestorableSqlContainerPropertiesResource))
     : base(id, name, type, location, tags, identity)
 {
     Resource = resource;
     CustomInit();
 }