Table of Contents

Class ProtectedNetworks

Namespace
Meraki.Api.Data
Assembly
Meraki.Api.dll

Set the included/excluded networks from the intrusion engine (optional - omitting will leave current config unchanged). This is available only in 'passthrough' mode

[DataContract]
public class ProtectedNetworks
Inheritance
ProtectedNetworks
Inherited Members

Properties

ExcludedCidr

list of IP addresses or subnets being excluded from protection (required if 'useDefault' is false)

[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "excludedCidr")]
public List<string> ExcludedCidr { get; set; }

Property Value

List<string>

IncludedCidr

list of IP addresses or subnets being protected (required if 'useDefault' is false)

[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "includedCidr")]
public List<string> IncludedCidr { get; set; }

Property Value

List<string>

UseDefault

true/false whether to use special IPv4 addresses: https://tools.ietf.org/html/rfc5735 (required). Default value is true if none currently saved

[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "useDefault")]
public bool? UseDefault { get; set; }

Property Value

bool?