AllowRule¶
-
class
oci.fusion_apps.models.
AllowRule
(**kwargs)¶ Bases:
oci.fusion_apps.models.rule.Rule
An object that represents the action of configuring an access control rule. Access control rules permit access to application resources based on user-specified match conditions. This rule applies only to HTTP listeners. NOTES: * If you do not specify any access control rules, the default rule is to allow all traffic. * If you add access control rules, the load balancer denies any traffic that does not match the rules. * Maximum of two match conditions can be specified in a rule. * You can specify this rule only with the following RuleCondition combinations: * SOURCE_IP_ADDRESS * SOURCE_VCN_ID * SOURCE_VCN_ID, SOURCE_VCN_IP_ADDRESS
Attributes
ACTION_ALLOW
str(object=’’) -> str action
[Required] Gets the action of this Rule. conditions
[Required] Gets the conditions of this AllowRule. description
Gets the description of this AllowRule. Methods
__init__
(**kwargs)Initializes a new AllowRule object with values from keyword arguments. get_subtype
(object_dictionary)Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. -
ACTION_ALLOW
= 'ALLOW'¶
-
__init__
(**kwargs)¶ Initializes a new AllowRule object with values from keyword arguments. The default value of the
action
attribute of this class isALLOW
and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):Parameters: - action (str) – The value to assign to the action property of this AllowRule. Allowed values for this property are: “ALLOW”
- conditions (list[oci.fusion_apps.models.RuleCondition]) – The value to assign to the conditions property of this AllowRule.
- description (str) – The value to assign to the description property of this AllowRule.
-
action
¶ [Required] Gets the action of this Rule. Rule type
Allowed values for this property are: “ALLOW”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The action of this Rule. Return type: str
-
conditions
¶ [Required] Gets the conditions of this AllowRule.
Returns: The conditions of this AllowRule. Return type: list[oci.fusion_apps.models.RuleCondition]
-
description
¶ Gets the description of this AllowRule. A brief description of the access control rule. Avoid entering confidential information. example: 192.168.0.0/16 and 2001:db8::/32 are trusted clients. Whitelist them.
Returns: The description of this AllowRule. Return type: str
-
static
get_subtype
(object_dictionary)¶ Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
-