コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the AppResource class.
 /// </summary>
 /// <param name="id">Fully qualified resource Id for the
 /// resource.</param>
 /// <param name="name">The name of the resource.</param>
 /// <param name="type">The type of the resource.</param>
 /// <param name="properties">Properties of the App resource</param>
 /// <param name="identity">The Managed Identity type of the app
 /// resource</param>
 /// <param name="location">The GEO location of the application, always
 /// the same with its parent resource</param>
 public AppResource(string id = default(string), string name = default(string), string type = default(string), AppResourceProperties properties = default(AppResourceProperties), ManagedIdentityProperties identity = default(ManagedIdentityProperties), string location = default(string))
     : base(id, name, type)
 {
     Properties = properties;
     Identity   = identity;
     Location   = location;
     CustomInit();
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the AppResource class.
 /// </summary>
 /// <param name="id">Fully qualified resource Id for the
 /// resource.</param>
 /// <param name="name">The name of the resource.</param>
 /// <param name="type">The type of the resource.</param>
 /// <param name="properties">Properties of the App resource</param>
 public AppResource(string id = default(string), string name = default(string), string type = default(string), AppResourceProperties properties = default(AppResourceProperties))
     : base(id, name, type)
 {
     Properties = properties;
     CustomInit();
 }