Show / Hide Table of Contents

Class JobOutputSummary

Terraform output associated with a job.

Inheritance
object
JobOutputSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ResourcemanagerService.Models
Assembly: OCI.DotNetSDK.Resourcemanager.dll
Syntax
public class JobOutputSummary

Properties

Description

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

Description of the output.

IsSensitive

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

When true, output is sensitive.

OutputName

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

Name of the output.

OutputType

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

Output resource type.

OutputValue

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

Value of the Terraform output.

In this article
Back to top