Table of Contents

Class CoreResourceMeta

Namespace
Azure.Iot.Operations.Services.EdgeRegistry.Models
Assembly
Azure.Iot.Operations.Services.dll

The server-managed metadata sub-entity of a Resource.

public class CoreResourceMeta
Inheritance
CoreResourceMeta
Inherited Members

Properties

Compatibility

States that Versions of this Resource adhere to a certain compatibility rule.

public string? Compatibility { get; set; }

Property Value

string

CreatedAt

The date/time of when the entity was created.

public required DateTime CreatedAt { get; set; }

Property Value

DateTime

DefaultVersionId

The versionId of the default Version of the Resource.

public required string DefaultVersionId { get; set; }

Property Value

string

DefaultVersionSticky

A value of true means that defaultVersionId has been explicitly set and MUST NOT automatically change if other Versions are added or removed. A value of false means the default Version MUST be the newest Version, as defined by the Resource's versionmode algorithm.

public required bool DefaultVersionSticky { get; set; }

Property Value

bool

Deprecated

Information about deprecation status of the entity, if applicable.

public DeprecatedInfo? Deprecated { get; set; }

Property Value

DeprecatedInfo

Epoch

A numeric value used to determine whether an entity has been modified.

public required ulong Epoch { get; set; }

Property Value

ulong

Extensions

Extension-specific attributes (e.g., format and content_type for schemas).

public required Dictionary<string, byte[]> Extensions { get; set; }

Property Value

Dictionary<string, byte[]>

Id

Resource identifier.

public required string Id { get; set; }

Property Value

string

Labels

A mechanism in which additional metadata about the entity can be stored without changing the model definition of the entity. Labels can be used for querying.

public required List<Label> Labels { get; set; }

Property Value

List<Label>

ModifiedAt

The date/time of when the entity was last updated.

public required DateTime ModifiedAt { get; set; }

Property Value

DateTime

ReadOnly

Indicates whether the Resource is updateable by clients.

public required bool ReadOnly { get; set; }

Property Value

bool

XId

Full XID path.

public required string XId { get; set; }

Property Value

string

XRef

Indicates that this Resource is a reference to another Resource within the same Registry. The XID path of the referenced Resource.

public string? XRef { get; set; }

Property Value

string