Interface FirewallUpdate
-
- All Superinterfaces:
Buildable<FirewallUpdateBuilder>,ModelEntity,Serializable
- All Known Implementing Classes:
NeutronFirewallUpdate
public interface FirewallUpdate extends ModelEntity, Buildable<FirewallUpdateBuilder>
A Builder to Update Firewall of FwaaS- Author:
- Vishvesh Deshmukh
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.openstack4j.common.Buildable
Buildable.Builder<T extends Buildable.Builder<T,M>,M extends Buildable<?>>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDescription()StringgetName()StringgetPolicy()StringgetTenantId()BooleanisAdminStateUp()BooleanisShared()
-
-
-
Method Detail
-
getTenantId
String getTenantId()
- Returns:
- tenantId : Owner of the Firewall. Only an administrative user can specify a tenant ID other than its own.
-
getName
String getName()
- Returns:
- tenantId : Human readable name for the firewall (255 characters limit). Does not have to be unique.
-
getDescription
String getDescription()
- Returns:
- description : Human readable description for the firewall (1024 characters limit).
-
isAdminStateUp
Boolean isAdminStateUp()
- Returns:
- adminstateup : The administrative state of the firewall, which is up (true) or down (false).
-
isShared
Boolean isShared()
- 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
String getPolicy()
- 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.
-
-