public interface FirewallPolicyBuilder extends Buildable.Builder<FirewallPolicyBuilder,FirewallPolicy>
Modifier and Type | Method and Description |
---|---|
FirewallPolicyBuilder |
audited(Boolean audited) |
FirewallPolicyBuilder |
description(String description) |
FirewallPolicyBuilder |
firewallRules(List<String> ruleIdList) |
FirewallPolicyBuilder |
name(String name) |
FirewallPolicyBuilder |
shared(Boolean shared) |
FirewallPolicyBuilder |
tenantId(String tenantId) |
build, from
FirewallPolicyBuilder name(String name)
name
- : Human readable name for the FirewallPolicy (255 characters limit). Does not have to be unique.FirewallPolicyBuilder tenantId(String tenantId)
tenantId
- : Owner of the FirewallPolicy. Only an administrative user can
specify a tenant ID other than its own.FirewallPolicyBuilder description(String description)
description
- : Human readable description for the FirewallPolicy (1024 characters limit).FirewallPolicyBuilder shared(Boolean shared)
shared
- : When set to True makes this FirewallPolicy visible to tenants other
than its owner, and can be used in FirewallPolicy not owned by its tenant.FirewallPolicyBuilder audited(Boolean audited)
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.FirewallPolicyBuilder firewallRules(List<String> ruleIdList)
firewallRules(UUID)List
- : This is an ordered list of firewall rule uuids.
The firewall applies the rules in the order in which they appear in this list.Copyright © 2017. All rights reserved.