Show / Hide Table of Contents

Class ConfigDetails

Details about the required and optional Function configurations needed for proper performance of the PBF.

Inheritance
object
ConfigDetails
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 ConfigDetails

Properties

Description

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

Details about why this config is required and what it will be used for.

Remarks

Required

IsOptional

Declaration
[JsonProperty(PropertyName = "isOptional")]
public bool? IsOptional { get; set; }
Property Value
Type Description
bool?

Is this a required config or an optional one. Requests with required config params missing will be rejected.

Key

Declaration
[Required(ErrorMessage = "Key is required.")]
[JsonProperty(PropertyName = "key")]
public string Key { get; set; }
Property Value
Type Description
string

The key name of the config param.

Remarks

Required

In this article
Back to top