Show / Hide Table of Contents

Class UpdateFunctionDeployStageDetails

Specifies the Function stage.

Inheritance
object
UpdateDeployStageDetails
UpdateFunctionDeployStageDetails
Inherited Members
UpdateDeployStageDetails.Description
UpdateDeployStageDetails.DisplayName
UpdateDeployStageDetails.DeployStagePredecessorCollection
UpdateDeployStageDetails.FreeformTags
UpdateDeployStageDetails.DefinedTags
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DevopsService.Models
Assembly: OCI.DotNetSDK.Devops.dll
Syntax
public class UpdateFunctionDeployStageDetails : UpdateDeployStageDetails

Properties

Config

Declaration
[JsonProperty(PropertyName = "config")]
public Dictionary<string, string> Config { get; set; }
Property Value
Type Description
Dictionary<string, string>

User provided key and value pair configuration, which is assigned through constants or parameter.

DockerImageDeployArtifactId

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

A Docker image artifact OCID.

FunctionDeployEnvironmentId

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

Function environment OCID.

FunctionTimeoutInSeconds

Declaration
[JsonProperty(PropertyName = "functionTimeoutInSeconds")]
public int? FunctionTimeoutInSeconds { get; set; }
Property Value
Type Description
int?

Timeout for execution of the Function. Value in seconds.

MaxMemoryInMBs

Declaration
[JsonProperty(PropertyName = "maxMemoryInMBs")]
public long? MaxMemoryInMBs { get; set; }
Property Value
Type Description
long?

Maximum usable memory for the Function (in MB).

In this article
Back to top