Show / Hide Table of Contents

Class ResourceType

Defines a type of resource that you can find with a search or query.

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

Properties

Fields

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

List of all the fields and their value type that are indexed for querying.

Remarks

Required

Name

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

The unique name of the resource type, which matches the value returned as part of the ResourceSummary object.

Remarks

Required

In this article
Back to top