Show / Hide Table of Contents

Class UpdateArchiveFunctionSourceDetails

Source details for updating an archive\u2011based function.

Inheritance
object
UpdateFunctionSourceDetails
UpdateArchiveFunctionSourceDetails
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 UpdateArchiveFunctionSourceDetails : UpdateFunctionSourceDetails

Properties

ArchiveSourceDetails

Declaration
[JsonProperty(PropertyName = "archiveSourceDetails")]
public UpdateArchiveSourceDetails ArchiveSourceDetails { get; set; }
Property Value
Type Description
UpdateArchiveSourceDetails

Handler

Declaration
[JsonProperty(PropertyName = "handler")]
public string Handler { get; set; }
Property Value
Type Description
string

The function handler that is executed when the function is invoked. The value of this field depends on the runtime used

RuntimeConfig

Declaration
[JsonProperty(PropertyName = "runtimeConfig")]
public UpdateRuntimeConfig RuntimeConfig { get; set; }
Property Value
Type Description
UpdateRuntimeConfig
In this article
Back to top