Show / Hide Table of Contents

Class RequirementDetails

Minimum memory required by this PBF. The user should use memory greater than or equal to this value while configuring the Function.

Inheritance
object
RequirementDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.FunctionsService.Models
Assembly: OCI.DotNetSDK.Functions.dll
Syntax
public class RequirementDetails

Properties

MinMemoryRequiredInMBs

Declaration
[Required(ErrorMessage = "MinMemoryRequiredInMBs is required.")]
[JsonProperty(PropertyName = "minMemoryRequiredInMBs")]
public long? MinMemoryRequiredInMBs { get; set; }
Property Value
Type Description
long?

Minimum memory required by this PBF. The user should use memory greater than or equal to this value while configuring the Function.

Remarks

Required

Policies

Declaration
[JsonProperty(PropertyName = "policies")]
public List<PolicyDetails> Policies { get; set; }
Property Value
Type Description
List<PolicyDetails>

List of policies required for this PBF execution.

In this article
Back to top