Show / Hide Table of Contents

Class BaseVariable

Base definition for a schema variable, including common metadata such as type, title, description, and validation constraints.

Inheritance
object
BaseVariable
ApmDomainVariable
ArrayVariable
AutonomousContainerDbVariable
AutonomousDataBaseVariable
AutonomousDatabaseVersionVariable
AvailabilityDomainVariable
BooleanVariable
CloudVmClusterId
CompartmentVariable
ContainerClusterVariable
DataBaseVariable
DatabaseCdbId
DatabaseDataGuardId
DatabaseDataguardAssociationId
DatabaseDbNodeId
DatabaseExadataId
DatetimeVariable
DbHomeVariable
DbHomeVersionVariable
DbSystemVariable
DynamicGroupsVariable
EnumVariable
FaultDomainVariable
FileStorageExportSetId
FileStorageFilesystemId
FileStorageMountTargetId
FileVariable
GroupsVariable
IdentityDomainVariable
ImageVariable
InstanceShapeVariable
InstanceShapeVariableWithFlex
InstanceVariable
IntegerVariable
KmsKeyVariable
KmsSecretVariable
KmsVaultVariable
KubernetesVersionsVariable
LoadBalancerReservedIps
LoadBalancerVariable
LogAnalyticsEntityTypes
LogAnalyticsLogEntities
LogAnalyticsLogGroup
LogAnalyticsScheduledTasks
LogAnalyticsSources
ManagementAgents
MountTargetsVariable
MultilineVariable
MysqlConfigurationId
MysqlShapeId
NatGatewayVariable
NetworkLoadBalancerId
NsgVariable
NumberVariable
ObjectStorageBucketName
OdsProjectVariable
PasswordVariable
PrivateEndpointVariable
RegionVariable
ServiceGatewayVariable
SshPublicKeyVariable
StringVariable
SubnetVariable
TagVariable
VcnNetworkSecurityGroupId
VcnSecListId
VcnVariable
VolumeBackupPoliciesVariable
VolumeId
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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.

In this article
Back to top