Show / Hide Table of Contents

Class ShellDeployStageSummary

Specifies the shell stage.

Inheritance
object
DeployStageSummary
ShellDeployStageSummary
Inherited Members
DeployStageSummary.Id
DeployStageSummary.Description
DeployStageSummary.DisplayName
DeployStageSummary.ProjectId
DeployStageSummary.DeployPipelineId
DeployStageSummary.CompartmentId
DeployStageSummary.TimeCreated
DeployStageSummary.TimeUpdated
DeployStageSummary.LifecycleState
DeployStageSummary.LifecycleDetails
DeployStageSummary.DeployStagePredecessorCollection
DeployStageSummary.FreeformTags
DeployStageSummary.DefinedTags
DeployStageSummary.SystemTags
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 ShellDeployStageSummary : DeployStageSummary

Properties

CommandSpecDeployArtifactId

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

The OCID of the artifact that contains the command specification.

Remarks

Required

ContainerConfig

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

Required

TimeoutInSeconds

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

Time to wait for execution of a shell stage. Defaults to 36000 seconds.

In this article
Back to top