AllocationPolicy_NetworkInterface constructor

AllocationPolicy_NetworkInterface({
  1. String? network,
  2. String? subnetwork,
  3. bool? noExternalIpAddress,
})

Implementation

factory AllocationPolicy_NetworkInterface({
  $core.String? network,
  $core.String? subnetwork,
  $core.bool? noExternalIpAddress,
}) {
  final $result = create();
  if (network != null) {
    $result.network = network;
  }
  if (subnetwork != null) {
    $result.subnetwork = subnetwork;
  }
  if (noExternalIpAddress != null) {
    $result.noExternalIpAddress = noExternalIpAddress;
  }
  return $result;
}