Show / Hide Table of Contents

Class FleetResourceSummary

Summary of the FleetResource.

Inheritance
object
FleetResourceSummary
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 FleetResourceSummary

Properties

Compartment

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

Resource Compartment name.

CompartmentId

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

OCID of the compartment to which the resource belongs to.

Remarks

Required

ComplianceState

Declaration
[JsonProperty(PropertyName = "complianceState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ComplianceState? ComplianceState { get; set; }
Property Value
Type Description
ComplianceState?

Compliance State of the Resource.

DisplayName

Declaration
[Required(ErrorMessage = "DisplayName is required.")]
[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

Remarks

Required

EnvironmentType

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

Environment Type associated with the Fleet when the resource type is fleet. Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.

Id

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

The unique id of the resource.

Remarks

Required

LifecycleDetails

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

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public FleetResource.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
FleetResource.LifecycleStateEnum?

The current state of the FleetResource.

Remarks

Required

PercentCompliant

Declaration
[JsonProperty(PropertyName = "percentCompliant")]
public float? PercentCompliant { get; set; }
Property Value
Type Description
float?

The compliance percentage.

Product

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

Product associated with the resource when the resource type is fleet. Will only be returned for PRODUCT fleets that are part of a GROUP Fleet.

ProductCount

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

Count of products within the resource.

ResourceId

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

The OCID of the resource.

Remarks

Required

ResourceRegion

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

Associated region

ResourceType

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

Type of the Resource.

Remarks

Required

SystemTags

Declaration
[JsonProperty(PropertyName = "systemTags")]
public Dictionary<string, Dictionary<string, object>> SystemTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud": {"free-tier-retained": "true"}}

TargetCount

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

Count of targets within the resource.

TenancyId

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

OCID of the tenancy to which the resource belongs to.

Remarks

Required

TenancyName

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

Resource Tenancy Name.

TimeCreated

Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The time this resource was created. An RFC3339 formatted datetime string.

Remarks

Required

TimeUpdated

Declaration
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

The time this resource was last updated. An RFC3339 formatted datetime string.

In this article
Back to top