Show / Hide Table of Contents

Class DeployedResourceDetails

The Filtered List Of Deployed Resources

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

Properties

Mode

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

The mode of the resource. Example: "managed"

Remarks

Required

ResourceInstanceList

Declaration
[Required(ErrorMessage = "ResourceInstanceList is required.")]
[JsonProperty(PropertyName = "resourceInstanceList")]
public List<InstanceSummary> ResourceInstanceList { get; set; }
Property Value
Type Description
List<InstanceSummary>

Collection of InstanceSummary

Remarks

Required

ResourceName

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

The name of the resource

Remarks

Required

ResourceProvider

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

The name of the Provider

Remarks

Required

ResourceType

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

The provider resource type. Must be supported by the Oracle Cloud Infrastructure provider. Example: oci_core_instance

Remarks

Required

In this article
Back to top