/*
* 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 migrationhubstrategy-2020-02-19.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.MigrationHubStrategyRecommendations.Model
{
///
/// Information about the server that hosts application components.
///
public partial class SystemInfo
{
private string _cpuArchitecture;
private string _fileSystemType;
private List _networkInfoList = new List();
private OSInfo _osInfo;
///
/// Gets and sets the property CpuArchitecture.
///
/// CPU architecture type for the server.
///
///
[AWSProperty(Min=0, Max=1024)]
public string CpuArchitecture
{
get { return this._cpuArchitecture; }
set { this._cpuArchitecture = value; }
}
// Check to see if CpuArchitecture property is set
internal bool IsSetCpuArchitecture()
{
return this._cpuArchitecture != null;
}
///
/// Gets and sets the property FileSystemType.
///
/// File system type for the server.
///
///
[AWSProperty(Min=0, Max=1024)]
public string FileSystemType
{
get { return this._fileSystemType; }
set { this._fileSystemType = value; }
}
// Check to see if FileSystemType property is set
internal bool IsSetFileSystemType()
{
return this._fileSystemType != null;
}
///
/// Gets and sets the property NetworkInfoList.
///
/// Networking information related to a server.
///
///
public List NetworkInfoList
{
get { return this._networkInfoList; }
set { this._networkInfoList = value; }
}
// Check to see if NetworkInfoList property is set
internal bool IsSetNetworkInfoList()
{
return this._networkInfoList != null && this._networkInfoList.Count > 0;
}
///
/// Gets and sets the property OsInfo.
///
/// Operating system corresponding to a server.
///
///
public OSInfo OsInfo
{
get { return this._osInfo; }
set { this._osInfo = value; }
}
// Check to see if OsInfo property is set
internal bool IsSetOsInfo()
{
return this._osInfo != null;
}
}
}