/*
* 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 iotwireless-2020-11-22.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.IoTWireless.Model
{
///
/// Container for the parameters to the UpdateNetworkAnalyzerConfiguration operation.
/// Update network analyzer configuration.
///
public partial class UpdateNetworkAnalyzerConfigurationRequest : AmazonIoTWirelessRequest
{
private string _configurationName;
private string _description;
private List _multicastGroupsToAdd = new List();
private List _multicastGroupsToRemove = new List();
private TraceContent _traceContent;
private List _wirelessDevicesToAdd = new List();
private List _wirelessDevicesToRemove = new List();
private List _wirelessGatewaysToAdd = new List();
private List _wirelessGatewaysToRemove = new List();
///
/// Gets and sets the property ConfigurationName.
///
[AWSProperty(Required=true, Min=1, Max=1024)]
public string ConfigurationName
{
get { return this._configurationName; }
set { this._configurationName = value; }
}
// Check to see if ConfigurationName property is set
internal bool IsSetConfigurationName()
{
return this._configurationName != null;
}
///
/// Gets and sets the property Description.
///
[AWSProperty(Max=2048)]
public string Description
{
get { return this._description; }
set { this._description = value; }
}
// Check to see if Description property is set
internal bool IsSetDescription()
{
return this._description != null;
}
///
/// Gets and sets the property MulticastGroupsToAdd.
///
/// Multicast group resources to add to the network analyzer configuration. Provide the
/// MulticastGroupId
of the resource to add in the input array.
///
///
[AWSProperty(Min=0, Max=10)]
public List MulticastGroupsToAdd
{
get { return this._multicastGroupsToAdd; }
set { this._multicastGroupsToAdd = value; }
}
// Check to see if MulticastGroupsToAdd property is set
internal bool IsSetMulticastGroupsToAdd()
{
return this._multicastGroupsToAdd != null && this._multicastGroupsToAdd.Count > 0;
}
///
/// Gets and sets the property MulticastGroupsToRemove.
///
/// Multicast group resources to remove from the network analyzer configuration. Provide
/// the MulticastGroupId
of the resource to remove in the input array.
///
///
[AWSProperty(Min=0, Max=10)]
public List MulticastGroupsToRemove
{
get { return this._multicastGroupsToRemove; }
set { this._multicastGroupsToRemove = value; }
}
// Check to see if MulticastGroupsToRemove property is set
internal bool IsSetMulticastGroupsToRemove()
{
return this._multicastGroupsToRemove != null && this._multicastGroupsToRemove.Count > 0;
}
///
/// Gets and sets the property TraceContent.
///
public TraceContent TraceContent
{
get { return this._traceContent; }
set { this._traceContent = value; }
}
// Check to see if TraceContent property is set
internal bool IsSetTraceContent()
{
return this._traceContent != null;
}
///
/// Gets and sets the property WirelessDevicesToAdd.
///
/// Wireless device resources to add to the network analyzer configuration. Provide the
/// WirelessDeviceId
of the resource to add in the input array.
///
///
[AWSProperty(Min=0, Max=250)]
public List WirelessDevicesToAdd
{
get { return this._wirelessDevicesToAdd; }
set { this._wirelessDevicesToAdd = value; }
}
// Check to see if WirelessDevicesToAdd property is set
internal bool IsSetWirelessDevicesToAdd()
{
return this._wirelessDevicesToAdd != null && this._wirelessDevicesToAdd.Count > 0;
}
///
/// Gets and sets the property WirelessDevicesToRemove.
///
/// Wireless device resources to remove from the network analyzer configuration. Provide
/// the WirelessDeviceId
of the resources to remove in the input array.
///
///
[AWSProperty(Min=0, Max=250)]
public List WirelessDevicesToRemove
{
get { return this._wirelessDevicesToRemove; }
set { this._wirelessDevicesToRemove = value; }
}
// Check to see if WirelessDevicesToRemove property is set
internal bool IsSetWirelessDevicesToRemove()
{
return this._wirelessDevicesToRemove != null && this._wirelessDevicesToRemove.Count > 0;
}
///
/// Gets and sets the property WirelessGatewaysToAdd.
///
/// Wireless gateway resources to add to the network analyzer configuration. Provide the
/// WirelessGatewayId
of the resource to add in the input array.
///
///
public List WirelessGatewaysToAdd
{
get { return this._wirelessGatewaysToAdd; }
set { this._wirelessGatewaysToAdd = value; }
}
// Check to see if WirelessGatewaysToAdd property is set
internal bool IsSetWirelessGatewaysToAdd()
{
return this._wirelessGatewaysToAdd != null && this._wirelessGatewaysToAdd.Count > 0;
}
///
/// Gets and sets the property WirelessGatewaysToRemove.
///
/// Wireless gateway resources to remove from the network analyzer configuration. Provide
/// the WirelessGatewayId
of the resources to remove in the input array.
///
///
public List WirelessGatewaysToRemove
{
get { return this._wirelessGatewaysToRemove; }
set { this._wirelessGatewaysToRemove = value; }
}
// Check to see if WirelessGatewaysToRemove property is set
internal bool IsSetWirelessGatewaysToRemove()
{
return this._wirelessGatewaysToRemove != null && this._wirelessGatewaysToRemove.Count > 0;
}
}
}