Show / Hide Table of Contents

Class DefinedTagFilterEntry

Defined Tag filter entry.

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

Properties

Key

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

Defined tag key.

Remarks

Required

Namespace

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

Defined tag namespace.

Remarks

Required

Value

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

Defined tag value.

Remarks

Required

In this article
Back to top