Show / Hide Table of Contents

Class IncidentResourceType

Details about the resource associated with the support request.

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

Properties

Description

Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type Description
string

The description of the resource.

IsSubscriptionsSupported

Declaration
[JsonProperty(PropertyName = "isSubscriptionsSupported")]
public bool? IsSubscriptionsSupported { get; set; }
Property Value
Type Description
bool?

Indicates whether multi-subscription is supported

Label

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

The label associated with the resource.

Remarks

Required

Name

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

The display name of the resource.

ResourceTypeKey

Declaration
[JsonProperty(PropertyName = "resourceTypeKey")]
public string ResourceTypeKey { get; set; }
Property Value
Type Description
string

A unique identifier for the resource.

Service

Declaration
[JsonProperty(PropertyName = "service")]
public Dictionary<string, string> Service { get; set; }
Property Value
Type Description
Dictionary<string, string>

The map of services for MOS Taxonomy.

ServiceCategoryList

Declaration
[JsonProperty(PropertyName = "serviceCategoryList")]
public List<ServiceCategory> ServiceCategoryList { get; set; }
Property Value
Type Description
List<ServiceCategory>

The service category list.

Services

Declaration
[JsonProperty(PropertyName = "services")]
public List<Services> Services { get; set; }
Property Value
Type Description
List<Services>

The service categories list for MOS Taxonomy.

In this article
Back to top