Show / Hide Table of Contents

Class CreateManualRuntimeConfig

FunctionsRuntime configuration for creating a function with 'MANUAL' Runtime Update strategy.

Inheritance
object
CreateRuntimeConfig
CreateManualRuntimeConfig
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 CreateManualRuntimeConfig : CreateRuntimeConfig

Properties

FunctionsRuntimeName

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

The name of the FunctionsRuntime this function is to be associated with.

Remarks

Required

FunctionsRuntimeVersionId

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

The OCID of the FunctionsRuntimeVersion to use for the Function in manual mode.

Remarks

Required

In this article
Back to top