/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file 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.
*/
/*
* Do not modify this file. This file is generated from the elasticbeanstalk-2010-12-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.ElasticBeanstalk.Model
{
///
/// Summary information about a platform branch.
///
public partial class PlatformBranchSummary
{
private string _branchName;
private int? _branchOrder;
private string _lifecycleState;
private string _platformName;
private List _supportedTierList = new List();
///
/// Gets and sets the property BranchName.
///
/// The name of the platform branch.
///
///
public string BranchName
{
get { return this._branchName; }
set { this._branchName = value; }
}
// Check to see if BranchName property is set
internal bool IsSetBranchName()
{
return this._branchName != null;
}
///
/// Gets and sets the property BranchOrder.
///
/// An ordinal number that designates the order in which platform branches have been added
/// to a platform. This can be helpful, for example, if your code calls the ListPlatformBranches
/// action and then displays a list of platform branches.
///
///
///
/// A larger BranchOrder
value designates a newer platform branch within
/// the platform.
///
///
public int BranchOrder
{
get { return this._branchOrder.GetValueOrDefault(); }
set { this._branchOrder = value; }
}
// Check to see if BranchOrder property is set
internal bool IsSetBranchOrder()
{
return this._branchOrder.HasValue;
}
///
/// Gets and sets the property LifecycleState.
///
/// The support life cycle state of the platform branch.
///
///
///
/// Possible values: beta
| supported
| deprecated
/// | retired
///
///
public string LifecycleState
{
get { return this._lifecycleState; }
set { this._lifecycleState = value; }
}
// Check to see if LifecycleState property is set
internal bool IsSetLifecycleState()
{
return this._lifecycleState != null;
}
///
/// Gets and sets the property PlatformName.
///
/// The name of the platform to which this platform branch belongs.
///
///
public string PlatformName
{
get { return this._platformName; }
set { this._platformName = value; }
}
// Check to see if PlatformName property is set
internal bool IsSetPlatformName()
{
return this._platformName != null;
}
///
/// Gets and sets the property SupportedTierList.
///
/// The environment tiers that platform versions in this branch support.
///
///
///
/// Possible values: WebServer/Standard
| Worker/SQS/HTTP
///
///
public List SupportedTierList
{
get { return this._supportedTierList; }
set { this._supportedTierList = value; }
}
// Check to see if SupportedTierList property is set
internal bool IsSetSupportedTierList()
{
return this._supportedTierList != null && this._supportedTierList.Count > 0;
}
}
}