Show / Hide Table of Contents

Class DimensionDetails

A dimension name and value.

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

Properties

DimensionValue

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

Required

Name

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

Dimension key. A valid dimension key includes only printable ASCII, excluding periods (.) and spaces. Custom dimension keys are acceptable. Avoid entering confidential information. Due to use by Connector Hub, the following dimension names are reserved: connectorId, connectorName, connectorSourceType. For information on valid dimension keys and values, see {@link #metricDataDetails(MetricDataDetailsRequest) metricDataDetails}. Example: type

Remarks

Required

In this article
Back to top