Show / Hide Table of Contents

Class UpdateContainerImageFunctionSourceDetails

Source details for updating a container image based function.

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

Properties

Image

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

The qualified name of the Docker image to use in the function, including the image tag. The image should be in the OCI Registry that is in the same region as the function itself. Example: phx.ocir.io/ten/functions/function:0.0.1

ImageDigest

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

The image digest for the version of the image that will be pulled when invoking this function. If no value is specified, the digest currently associated with the image in the OCI Registry will be used. Example: sha256:ca0eeb6fb05351dfc8759c20733c91def84cb8007aa89a5bf606bc8b315b9fc7

In this article
Back to top