Show / Hide Table of Contents

Class Fleet

A Fleet is the primary collection with which users interact when using Java Management Service.

Inheritance
object
Fleet
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.JmsService.Models
Assembly: OCI.DotNetSDK.Jms.dll
Syntax
public class Fleet

Properties

ApproximateApplicationCount

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

The approximate count of all unique applications in the Fleet in the past seven days. This metric is provided on a best-effort manner, and isn't taken into account when computing the resource ETag.

Remarks

Required

ApproximateInstallationCount

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

The approximate count of all unique Java installations in the Fleet in the past seven days. This metric is provided on a best-effort manner, and isn't taken into account when computing the resource ETag.

Remarks

Required

ApproximateJavaServerCount

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

The approximate count of all unique Java servers in the Fleet in the past seven days. This metric is provided on a best-effort manner, and isn't taken into account when computing the resource ETag.

Remarks

Required

ApproximateJreCount

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

The approximate count of all unique Java Runtimes in the Fleet in the past seven days. This metric is provided on a best-effort manner, and isn't taken into account when computing the resource ETag.

Remarks

Required

ApproximateManagedInstanceCount

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

The approximate count of all unique managed instances in the Fleet in the past seven days. This metric is provided on a best-effort manner, and isn't taken into account when computing the resource ETag.

Remarks

Required

CompartmentId

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

The OCID of the compartment of the Fleet.

Remarks

Required

DefinedTags

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

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace": {"bar-key": "value"}}. (See Understanding Free-form Tags).

Description

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

The Fleet's description.

Remarks

Required

DisplayName

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

The name of the Fleet.

Remarks

Required

FreeformTags

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

Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}. (See Managing Tags and Tag Namespaces.)

Id

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

The OCID of the Fleet.

Remarks

Required

InventoryLog

Declaration
[JsonProperty(PropertyName = "inventoryLog")]
public CustomLog InventoryLog { get; set; }
Property Value
Type Description
CustomLog

IsAdvancedFeaturesEnabled

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

Whether or not advanced features are enabled in this Fleet. Deprecated, use /fleets/{fleetId}/advanceFeatureConfiguration API instead.

IsExportSettingEnabled

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

Whether or not export setting is enabled in this Fleet.

LifecycleState

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

The lifecycle state of the Fleet.

Remarks

Required

OperationLog

Declaration
[JsonProperty(PropertyName = "operationLog")]
public CustomLog OperationLog { get; set; }
Property Value
Type Description
CustomLog

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. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system.
Example: {"orcl-cloud": {"free-tier-retained": "true"}}

TimeCreated

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

The creation date and time of the Fleet (formatted according to RFC3339).

Remarks

Required

In this article
Back to top