RequirementDetails¶
-
class
oci.functions.models.
RequirementDetails
(**kwargs)¶ Bases:
object
Minimum memory required by this PBF. The user should use memory greater than or equal to this value while configuring the Function.
Methods
__init__
(**kwargs)Initializes a new RequirementDetails object with values from keyword arguments. Attributes
min_memory_required_in_mbs
[Required] Gets the min_memory_required_in_mbs of this RequirementDetails. policies
Gets the policies of this RequirementDetails. -
__init__
(**kwargs)¶ Initializes a new RequirementDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - min_memory_required_in_mbs (int) – The value to assign to the min_memory_required_in_mbs property of this RequirementDetails.
- policies (list[oci.functions.models.PolicyDetails]) – The value to assign to the policies property of this RequirementDetails.
-
min_memory_required_in_mbs
¶ [Required] Gets the min_memory_required_in_mbs of this RequirementDetails. Minimum memory required by this PBF. The user should use memory greater than or equal to this value while configuring the Function.
Returns: The min_memory_required_in_mbs of this RequirementDetails. Return type: int
-
policies
¶ Gets the policies of this RequirementDetails. List of policies required for this PBF execution.
Returns: The policies of this RequirementDetails. Return type: list[oci.functions.models.PolicyDetails]
-