Show / Hide Table of Contents

Class CreateArchiveFunctionSourceDetails

Source details for creating an archive\u2011based function.

Inheritance
object
CreateFunctionSourceDetails
CreateArchiveFunctionSourceDetails
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 CreateArchiveFunctionSourceDetails : CreateFunctionSourceDetails

Properties

ArchiveSourceDetails

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

Required

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
[Required(ErrorMessage = "RuntimeConfig is required.")]
[JsonProperty(PropertyName = "runtimeConfig")]
public CreateRuntimeConfig RuntimeConfig { get; set; }
Property Value
Type Description
CreateRuntimeConfig
Remarks

Required

In this article
Back to top