Firewall constructor

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

Implementation

Firewall({
  this.allowed = const [],
  this.creationTimestamp,
  this.denied = const [],
  this.description,
  this.destinationRanges = const [],
  this.direction,
  this.disabled,
  this.id,
  this.kind,
  this.logConfig,
  this.name,
  this.network,
  this.params,
  this.priority,
  this.selfLink,
  this.sourceRanges = const [],
  this.sourceServiceAccounts = const [],
  this.sourceTags = const [],
  this.targetServiceAccounts = const [],
  this.targetTags = const [],
}) : super(fullyQualifiedName);