Table of Contents

Class StaticRouteUpdateRequest

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

UpdateNetworkStaticRoute

[DataContract]
public class StaticRouteUpdateRequest : StaticRouteCreationRequest
Inheritance
StaticRouteUpdateRequest
Derived
Inherited Members

Properties

Enabled

The enabled state of the static route

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

Property Value

bool?

FixedIpAssignments

The DHCP fixed IP assignments on the static route. This should be an object that contains mappings from MAC addresses to objects that themselves each contain "ip" and "name" string fields. See the sample request/response for more details.

[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "fixedIpAssignments")]
public Dictionary<string, StaticRouteFixedIpAssignment>? FixedIpAssignments { get; set; }

Property Value

Dictionary<string, StaticRouteFixedIpAssignment>

ReservedIpRanges

The DHCP reserved IP ranges on the static route

[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "reservedIpRanges")]
public List<ReservedIpRange>? ReservedIpRanges { get; set; }

Property Value

List<ReservedIpRange>