Interface FirewallPolicyUpdate
-
- All Superinterfaces:
Buildable<FirewallPolicyUpdateBuilder>,ModelEntity,Serializable
- All Known Implementing Classes:
NeutronFirewallPolicyUpdate
public interface FirewallPolicyUpdate extends ModelEntity, Buildable<FirewallPolicyUpdateBuilder>
A Builder to Update Firewall Policy of FwaaS
Represents an ordered collection of firewall rules. A firewall policy can be shared across tenants. Thus it can also be made part of an audit workflow wherein the firewall_policy can be audited by the relevant entity that is authorized (and can be different from the tenants which create or use the firewall policy).
- 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()List<String>getFirewallRuleIds()StringgetName()BooleanisAudited()BooleanisShared()
-
-
-
Method Detail
-
getName
String getName()
- Returns:
- name : Human readable name for the FirewallPolicyUpdate (255 characters limit). Does not have to be unique.
-
getDescription
String getDescription()
- Returns:
- description : Human readable description for the FirewallPolicyUpdate (1024 characters limit).
-
isShared
Boolean isShared()
- Returns:
- shared : When set to True makes this FirewallPolicyUpdate visible to tenants other than its owner, and can be used in FirewallPolicyUpdate not owned by its tenant.
-
isAudited
Boolean isAudited()
- Returns:
- audited : When set to True by the policy owner indicates that the firewall policy has been audited. This attribute is meant to aid in the firewall policy audit workflows. Each time the firewall policy or the associated firewall rules are changed, this attribute will be set to False and will have to be explicitly set to True through an update operation.
-
-