Class BaseVariable
Base definition for a schema variable, including common metadata such as type, title, description, and validation constraints.
Inheritance
BaseVariable
Inherited Members
Namespace: Oci.FleetappsmanagementService.Models
Assembly: OCI.DotNetSDK.Fleetappsmanagement.dll
Syntax
[JsonConverter(typeof(BaseVariableModelConverter))]
public class BaseVariable
Properties
Description
Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Detailed information about this variable's purpose and usage. |
IsRequired
Declaration
[JsonProperty(PropertyName = "isRequired")]
public bool? IsRequired { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? | Indicates if this input variable is required for stack execution. |
Title
Declaration
[JsonProperty(PropertyName = "title")]
public string Title { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The display name for the variable as shown in the UI. |
Visible
Declaration
[JsonProperty(PropertyName = "visible")]
public string Visible { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Hint to control whether this variable is visible. |