Show / Hide Table of Contents

Class UpdateInvokeFunctionDeployStageDetails

Specifies Invoke Function stage.

Inheritance
object
UpdateDeployStageDetails
UpdateInvokeFunctionDeployStageDetails
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 UpdateInvokeFunctionDeployStageDetails : UpdateDeployStageDetails

Properties

DeployArtifactId

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

Optional artifact OCID. The artifact will be included in the body for the function invocation during the stage's execution. If the DeployArtifact.argumentSubstituitionMode is set to SUBSTITUTE_PLACEHOLDERS, then the pipeline parameter values will be used to replace the placeholders in the artifact content.

FunctionDeployEnvironmentId

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

Function environment OCID.

IsAsync

Declaration
[JsonProperty(PropertyName = "isAsync")]
public bool? IsAsync { get; set; }
Property Value
Type Description
bool?

A boolean flag specifies whether this stage executes asynchronously.

IsValidationEnabled

Declaration
[JsonProperty(PropertyName = "isValidationEnabled")]
public bool? IsValidationEnabled { get; set; }
Property Value
Type Description
bool?

A boolean flag specifies whether the invoked function must be validated.

In this article
Back to top