ExampleResource.Status¶
Describes the current state of the Resource
data class Status(
    val state: ExampleResource.State,
    val value: Int,
    val resolvedSupport: ResolvedSupport<Product, ExampleResourceSupport>?,
    val resolvedProduct: Product?,
)
The contents of this field depends almost entirely on the specific Resource that this field is managing. Typically,
this will contain information such as:
- A state value. For example, a compute - Jobmight be- RUNNING
- Key metrics about the resource. 
- Related resources. For example, certain - Resources are bound to another- Resourcein a mutually exclusive way, this should be listed in the- statussection.
Properties
state: ExampleResource.State
ExampleResource.State
value: Int
Int
resolvedSupport: ResolvedSupport<Product, ExampleResourceSupport>?
ResolvedSupport<Product, ExampleResourceSupport>?
resolvedProduct: Product?
Product?This attribute is not included by default unless includeProduct is specified.