Class NeutronFirewallUpdate
- java.lang.Object
-
- org.openstack4j.openstack.networking.domain.ext.NeutronFirewallUpdate
-
- All Implemented Interfaces:
Serializable,Buildable<FirewallUpdateBuilder>,ModelEntity,FirewallUpdate
public class NeutronFirewallUpdate extends Object implements FirewallUpdate
An entity used to update Neutron Firewall (FwaaS).- Author:
- Vishvesh Deshmukh
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classNeutronFirewallUpdate.FirewallUpdateConcreteBuilder-
Nested classes/interfaces inherited from interface org.openstack4j.common.Buildable
Buildable.Builder<T extends Buildable.Builder<T,M>,M extends Buildable<?>>
-
-
Constructor Summary
Constructors Constructor Description NeutronFirewallUpdate()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FirewallUpdateBuilderbuilder()StringgetDescription()StringgetName()StringgetPolicy()StringgetTenantId()BooleanisAdminStateUp()BooleanisShared()FirewallUpdateBuildertoBuilder()Wrap this Firewall to a builderStringtoString()
-
-
-
Method Detail
-
builder
public static FirewallUpdateBuilder builder()
- Returns:
- FirewallUpdateBuilder
-
toBuilder
public FirewallUpdateBuilder toBuilder()
Wrap this Firewall to a builder- Specified by:
toBuilderin interfaceBuildable<FirewallUpdateBuilder>- Returns:
- FirewallUpdateBuilder
-
getName
public String getName()
- Specified by:
getNamein interfaceFirewallUpdate- Returns:
- tenantId : Human readable name for the firewall (255 characters limit). Does not have to be unique.
-
getTenantId
public String getTenantId()
- Specified by:
getTenantIdin interfaceFirewallUpdate- Returns:
- tenantId : Owner of the Firewall. Only an administrative user can specify a tenant ID other than its own.
-
getDescription
public String getDescription()
- Specified by:
getDescriptionin interfaceFirewallUpdate- Returns:
- description : Human readable description for the firewall (1024 characters limit).
-
isAdminStateUp
public Boolean isAdminStateUp()
- Specified by:
isAdminStateUpin interfaceFirewallUpdate- Returns:
- adminstateup : The administrative state of the firewall, which is up (true) or down (false).
-
isShared
public Boolean isShared()
- Specified by:
isSharedin interfaceFirewallUpdate- Returns:
- 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.
-
getPolicy
public String getPolicy()
- Specified by:
getPolicyin interfaceFirewallUpdate- Returns:
- 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.
-
-