Show / Hide Table of Contents

Class AssociatedFleetPropertyDetails

The information about associated FleetProperty.

Inheritance
object
AssociatedFleetPropertyDetails
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
public class AssociatedFleetPropertyDetails

Properties

CompartmentId

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

compartment OCID

Remarks

Required

DisplayName

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

A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
Example: My new resource

FleetPropertyType

Declaration
[Required(ErrorMessage = "FleetPropertyType is required.")]
[JsonProperty(PropertyName = "fleetPropertyType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AssociatedFleetPropertyDetails.FleetPropertyTypeEnum? FleetPropertyType { get; set; }
Property Value
Type Description
AssociatedFleetPropertyDetails.FleetPropertyTypeEnum?

Type of the FleetProperty.

Remarks

Required

IsRequired

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

Property is required or not.

Value

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

Value of the Property.

In this article
Back to top