/*
* Copyright 2012 Splunk, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"): you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
namespace Splunk
{
///
/// The LicenseStack class represents the License Stack Entity.
///
public class LicenseStack : Entity
{
///
/// Initializes a new instance of the
/// class.
///
/// The service
/// The path
public LicenseStack(Service service, string path)
: base(service, path)
{
}
///
/// Gets the label of this license slave.
///
public string Label
{
get
{
return this.GetString("label", null);
}
}
///
/// Gets the byte quota of this license stack. This value is the sum of
/// the byte quota for all the licenses in the license stack.
///
public int Quota
{
get
{
return this.GetInteger("quota", 0);
}
}
///
/// Gets additional information about the type of this license stack.
///
public string Type
{
get
{
return this.GetString("type", null);
}
}
}
}