Class ApiManagementServiceSkuProperties
API Management service resource SKU properties.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.ApiManagement.dll
Syntax
public class ApiManagementServiceSkuProperties
Constructors
ApiManagementServiceSkuProperties()
Initializes a new instance of the ApiManagementServiceSkuProperties class.
Declaration
public ApiManagementServiceSkuProperties ();
ApiManagementServiceSkuProperties(String, Nullable<Int32>)
Initializes a new instance of the ApiManagementServiceSkuProperties class.
Declaration
public ApiManagementServiceSkuProperties (string name, Nullable<int> capacity = null);
Parameters
|
String
name
Name of the Sku. Possible values include: 'Developer', 'Standard', 'Premium', 'Basic', 'Consumption' |
|
Nullable<Int32>
capacity
Capacity of the SKU (number of deployed units of the SKU). |
Properties
Capacity
Gets or sets capacity of the SKU (number of deployed units of the SKU).
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="capacity")]
public Nullable<int> Capacity { get; set; }
Property Value
|
Nullable<Int32>
|
Name
Gets or sets name of the Sku. Possible values include: 'Developer', 'Standard', 'Premium', 'Basic', 'Consumption'
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="name")]
public string Name { get; set; }
Property Value
|
String
|
Methods
Validate()
Validate the object.
Declaration
public virtual void Validate ();
Exceptions
|
ValidationException
Thrown if validation fails |