All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openstack4j.model.network.ext.Firewall Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package org.openstack4j.model.network.ext;

import org.openstack4j.common.Buildable;
import org.openstack4j.model.ModelEntity;
import org.openstack4j.model.network.ext.builder.FirewallBuilder;
import org.openstack4j.openstack.networking.domain.ext.NeutronFirewall;

/**
 * 

Networking (Neutron) FwaaS Firewall Extension API.

* *

Represents a logical firewall resource that a tenant can instantiate and manage. A firewall is associated with one firewall policy.

* * @author Vishvesh Deshmukh */ public interface Firewall extends ModelEntity, Buildable { /** * * @return id : Unique identifier for the firewall. */ public String getId(); /** * * @return name : Human readable name for the firewall (255 characters limit). Does not have to be unique. */ public String getName(); /** * * @return tenantId : Owner of the Firewall. Only an administrative user can * specify a tenant ID other than its own. */ public String getTenantId(); /** * * @return description : Human readable description for the firewall (1024 characters limit). */ public String getDescription(); /** * * @return adminstateup : The administrative state of the firewall, * which is up (true) or down (false). */ public Boolean isAdminStateUp(); /** * * @return shared : When set to True makes this firewall rule visible to tenants other * than its owner, and can be used in firewall policies not owned by its tenant. */ public Boolean isShared(); /** * @see NeutronFirewall.FirewallStatus * * @return status The status of the health monitor. Indicates whether the * health monitor is operational. */ public NeutronFirewall.FirewallStatus getStatus(); /** * * @return policyid : The firewall policy uuid that this firewall is associated with. * This firewall will implement the rules contained in the firewall policy represented by this uuid. */ public String getPolicy(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy