/* * 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 ds-2015-04-16.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.DirectoryService.Model { /// /// Describes the directory owner account details that have been shared to the directory /// consumer account. /// public partial class OwnerDirectoryDescription { private string _accountId; private string _directoryId; private List _dnsIpAddrs = new List(); private RadiusSettings _radiusSettings; private RadiusStatus _radiusStatus; private DirectoryVpcSettingsDescription _vpcSettings; /// /// Gets and sets the property AccountId. /// /// Identifier of the directory owner account. /// /// public string AccountId { get { return this._accountId; } set { this._accountId = value; } } // Check to see if AccountId property is set internal bool IsSetAccountId() { return this._accountId != null; } /// /// Gets and sets the property DirectoryId. /// /// Identifier of the Managed Microsoft AD directory in the directory owner account. /// /// public string DirectoryId { get { return this._directoryId; } set { this._directoryId = value; } } // Check to see if DirectoryId property is set internal bool IsSetDirectoryId() { return this._directoryId != null; } /// /// Gets and sets the property DnsIpAddrs. /// /// IP address of the directory’s domain controllers. /// /// public List DnsIpAddrs { get { return this._dnsIpAddrs; } set { this._dnsIpAddrs = value; } } // Check to see if DnsIpAddrs property is set internal bool IsSetDnsIpAddrs() { return this._dnsIpAddrs != null && this._dnsIpAddrs.Count > 0; } /// /// Gets and sets the property RadiusSettings. /// /// A RadiusSettings object that contains information about the RADIUS server. /// /// public RadiusSettings RadiusSettings { get { return this._radiusSettings; } set { this._radiusSettings = value; } } // Check to see if RadiusSettings property is set internal bool IsSetRadiusSettings() { return this._radiusSettings != null; } /// /// Gets and sets the property RadiusStatus. /// /// Information about the status of the RADIUS server. /// /// public RadiusStatus RadiusStatus { get { return this._radiusStatus; } set { this._radiusStatus = value; } } // Check to see if RadiusStatus property is set internal bool IsSetRadiusStatus() { return this._radiusStatus != null; } /// /// Gets and sets the property VpcSettings. /// /// Information about the VPC settings for the directory. /// /// public DirectoryVpcSettingsDescription VpcSettings { get { return this._vpcSettings; } set { this._vpcSettings = value; } } // Check to see if VpcSettings property is set internal bool IsSetVpcSettings() { return this._vpcSettings != null; } } }