Firewall constructor

Firewall({
  1. List<FirewallAllowed>? allowed,
  2. String? creationTimestamp,
  3. List<FirewallDenied>? denied,
  4. String? description,
  5. List<String>? destinationRanges,
  6. String? direction,
  7. bool? disabled,
  8. String? id,
  9. String? kind,
  10. FirewallLogConfig? logConfig,
  11. String? name,
  12. String? network,
  13. int? priority,
  14. String? selfLink,
  15. List<String>? sourceRanges,
  16. List<String>? sourceServiceAccounts,
  17. List<String>? sourceTags,
  18. List<String>? targetServiceAccounts,
  19. List<String>? targetTags,
})

Implementation

Firewall({
  this.allowed,
  this.creationTimestamp,
  this.denied,
  this.description,
  this.destinationRanges,
  this.direction,
  this.disabled,
  this.id,
  this.kind,
  this.logConfig,
  this.name,
  this.network,
  this.priority,
  this.selfLink,
  this.sourceRanges,
  this.sourceServiceAccounts,
  this.sourceTags,
  this.targetServiceAccounts,
  this.targetTags,
});