Show / Hide Table of Contents

Class ScheduledFleetSummary

Summary of Fleet part of the Schedule.

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

Properties

CompartmentId

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

The OCID of the resource.

Remarks

Required

CountOfAffectedResources

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

Count of Resources affected by the Schedule

CountOfAffectedTargets

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

Count of Targets affected by the Schedule

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

Id

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

The OCID of the resource.

Remarks

Required

Products

Declaration
[JsonProperty(PropertyName = "products")]
public List<string> Products { get; set; }
Property Value
Type Description
List<string>

All products part of the schedule.

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"}}

In this article
Back to top