/*
* 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 dms-2016-01-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.DatabaseMigrationService.Model
{
///
/// Describes a schema object in a Fleet Advisor collector inventory.
///
public partial class FleetAdvisorSchemaObjectResponse
{
private long? _codeLineCount;
private long? _codeSize;
private long? _numberOfObjects;
private string _objectType;
private string _schemaId;
///
/// Gets and sets the property CodeLineCount.
///
/// The number of lines of code in a schema object in a Fleet Advisor collector inventory.
///
///
public long CodeLineCount
{
get { return this._codeLineCount.GetValueOrDefault(); }
set { this._codeLineCount = value; }
}
// Check to see if CodeLineCount property is set
internal bool IsSetCodeLineCount()
{
return this._codeLineCount.HasValue;
}
///
/// Gets and sets the property CodeSize.
///
/// The size level of the code in a schema object in a Fleet Advisor collector inventory.
///
///
public long CodeSize
{
get { return this._codeSize.GetValueOrDefault(); }
set { this._codeSize = value; }
}
// Check to see if CodeSize property is set
internal bool IsSetCodeSize()
{
return this._codeSize.HasValue;
}
///
/// Gets and sets the property NumberOfObjects.
///
/// The number of objects in a schema object in a Fleet Advisor collector inventory.
///
///
public long NumberOfObjects
{
get { return this._numberOfObjects.GetValueOrDefault(); }
set { this._numberOfObjects = value; }
}
// Check to see if NumberOfObjects property is set
internal bool IsSetNumberOfObjects()
{
return this._numberOfObjects.HasValue;
}
///
/// Gets and sets the property ObjectType.
///
/// The type of the schema object, as reported by the database engine. Examples include
/// the following:
///
/// -
///
///
function
///
/// -
///
///
trigger
///
/// -
///
///
SYSTEM_TABLE
///
/// -
///
///
QUEUE
///
///
///
public string ObjectType
{
get { return this._objectType; }
set { this._objectType = value; }
}
// Check to see if ObjectType property is set
internal bool IsSetObjectType()
{
return this._objectType != null;
}
///
/// Gets and sets the property SchemaId.
///
/// The ID of a schema object in a Fleet Advisor collector inventory.
///
///
public string SchemaId
{
get { return this._schemaId; }
set { this._schemaId = value; }
}
// Check to see if SchemaId property is set
internal bool IsSetSchemaId()
{
return this._schemaId != null;
}
}
}