Show / Hide Table of Contents

Class UpdateDirectArchiveSourceDetails

Source details required for updating an archive based function from Direct Archive.

Inheritance
object
UpdateArchiveSourceDetails
UpdateDirectArchiveSourceDetails
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 UpdateDirectArchiveSourceDetails : UpdateArchiveSourceDetails

Properties

ArchiveFile

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

The base64-encoded archive file of the function code. The archive file must contain all the files for the function. Please refer to functions documentation for maximum allowed size and supported archive formats.

Remarks

Required

In this article
Back to top