コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the SignalRUpdateParameters class.
 /// </summary>
 /// <param name="tags">A list of key value pairs that describe the
 /// resource.</param>
 /// <param name="sku">The billing information of the resource.(e.g.
 /// basic vs. standard)</param>
 /// <param name="properties">Settings used to provision or configure
 /// the resource</param>
 public SignalRUpdateParameters(IDictionary <string, string> tags = default(IDictionary <string, string>), ResourceSku sku = default(ResourceSku), SignalRCreateOrUpdateProperties properties = default(SignalRCreateOrUpdateProperties))
 {
     Tags       = tags;
     Sku        = sku;
     Properties = properties;
     CustomInit();
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the SignalRCreateParameters class.
 /// </summary>
 /// <param name="location">Azure GEO region: e.g. West US | East US |
 /// North Central US | South Central US | West Europe | North Europe |
 /// East Asia | Southeast Asia | etc.
 /// The geo region of a resource never changes after it is
 /// created.</param>
 /// <param name="tags">A list of key value pairs that describe the
 /// resource.</param>
 /// <param name="sku">The billing information of the resource.(e.g.
 /// basic vs. standard)</param>
 /// <param name="properties">Settings used to provision or configure
 /// the resource</param>
 public SignalRCreateParameters(string location, IDictionary <string, string> tags = default(IDictionary <string, string>), ResourceSku sku = default(ResourceSku), SignalRCreateOrUpdateProperties properties = default(SignalRCreateOrUpdateProperties))
     : base(tags, sku, properties)
 {
     Location = location;
     CustomInit();
 }