Class UpdateManualRuntimeConfig
FunctionsRuntime configuration for updating a function with 'MANUAL' Runtime Update strategy.
Inherited Members
Namespace: Oci.FunctionsService.Models
Assembly: OCI.DotNetSDK.Functions.dll
Syntax
public class UpdateManualRuntimeConfig : UpdateRuntimeConfig
Properties
FunctionsRuntimeName
Declaration
[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. |
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