Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 1.3 KB

File metadata and controls

18 lines (13 loc) · 1.3 KB

openapi.model.FirewallRule

Load the model package

import 'package:openapi/api.dart';

Properties

Name Type Description Notes
protocol NetworkProtocol The protocol to which the rule applies.
portRange List An inclusive range of network ports specified as [min, max]. Not allowed for the icmp protocol but required for the others. To specify a single port, list it twice (for example, [22,22]). [optional] [default to const []]
sourceNetwork String The set of source IPv4 addresses from which you want to allow inbound traffic. These addresses must be specified in CIDR notation. You can specify individual public IPv4 CIDR blocks such as 1.2.3.4 or 1.2.3.4/32, or you can specify 0.0.0.0/0 to allow access from any address. This value is a string consisting of a public IPv4 address optionally followed by a slash (/) and an integer mask (the network prefix). If no mask is provided, the API assumes /32 by default.
description String A human-readable description of the rule.

[Back to Model list] [Back to API list] [Back to README]