Esempio n. 1
0
 /// <summary>
 /// Initializes a new instance of the FunctionPatchResponse class with
 /// required arguments.
 /// </summary>
 public FunctionPatchResponse(FunctionProperties properties)
     : this()
 {
     if (properties == null)
     {
         throw new ArgumentNullException("properties");
     }
     this.Properties = properties;
 }
 /// <summary>
 /// Initializes a new instance of the FunctionPatchParameters class
 /// with required arguments.
 /// </summary>
 public FunctionPatchParameters(FunctionProperties properties)
     : this()
 {
     if (properties == null)
     {
         throw new ArgumentNullException("properties");
     }
     this.Properties = properties;
 }
Esempio n. 3
0
 /// <summary>
 /// Initializes a new instance of the Function class.
 /// </summary>
 /// <param name="id">Resource Id</param>
 /// <param name="name">Resource name</param>
 /// <param name="type">Resource type</param>
 /// <param name="properties">The properties that are associated with a
 /// function.</param>
 public Function(string id = default(string), string name = default(string), string type = default(string), FunctionProperties properties = default(FunctionProperties))
     : base(id, name, type)
 {
     Properties = properties;
     CustomInit();
 }