Show / Hide Table of Contents

Class UpdateIncidentRequest

Inheritance
object
UpdateIncidentRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CimsService.Requests
Assembly: OCI.DotNetSDK.Cims.dll
Syntax
public class UpdateIncidentRequest : IOciRequest
Examples

Click here to see an example of how to use UpdateIncident request.

Properties

Bearertoken

Declaration
[HttpConverter(TargetEnum.Header, "bearertoken")]
public string Bearertoken { get; set; }
Property Value
Type Description
string

Token that provided by multi cloud provider, which help to validate the email.

Bearertokentype

Declaration
[HttpConverter(TargetEnum.Header, "bearertokentype")]
public string Bearertokentype { get; set; }
Property Value
Type Description
string

Token type that determine which cloud provider the request come from.

CompartmentId

Declaration
[Required(ErrorMessage = "CompartmentId is required.")]
[HttpConverter(TargetEnum.Query, "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

The OCID of the tenancy.

Remarks

Required

Csi

Declaration
[HttpConverter(TargetEnum.Header, "csi")]
public string Csi { get; set; }
Property Value
Type Description
string

The Customer Support Identifier (CSI) number associated with the support account. The CSI is optional for all support request types.

Domainid

Declaration
[HttpConverter(TargetEnum.Header, "domainid")]
public string Domainid { get; set; }
Property Value
Type Description
string

The OCID of identity domain. DomainID is mandatory if the user is part of Non Default Identity domain.

Homeregion

Declaration
[HttpConverter(TargetEnum.Header, "homeregion")]
public string Homeregion { get; set; }
Property Value
Type Description
string

The region of the tenancy.

Idtoken

Declaration
[HttpConverter(TargetEnum.Header, "idtoken")]
public string Idtoken { get; set; }
Property Value
Type Description
string

IdToken that provided by multi cloud provider, which help to validate the email.

IfMatch

Declaration
[HttpConverter(TargetEnum.Header, "if-match")]
public string IfMatch { get; set; }
Property Value
Type Description
string

For optimistic concurrency control. In the PUT or DELETE call for a resource, set the if-match parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value.

IncidentKey

Declaration
[Required(ErrorMessage = "IncidentKey is required.")]
[HttpConverter(TargetEnum.Path, "incidentKey")]
public string IncidentKey { get; set; }
Property Value
Type Description
string

Unique identifier for the support ticket.

Remarks

Required

Ocid

Declaration
[HttpConverter(TargetEnum.Header, "ocid")]
public string Ocid { get; set; }
Property Value
Type Description
string

User OCID for Oracle Identity Cloud Service (IDCS) users who also have a federated Oracle Cloud Infrastructure account. User OCID is mandatory for OCI Users and optional for Multicloud users.

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.

UpdateIncidentDetails

Declaration
[Required(ErrorMessage = "UpdateIncidentDetails is required.")]
[HttpConverter(TargetEnum.Body)]
public UpdateIncident UpdateIncidentDetails { get; set; }
Property Value
Type Description
UpdateIncident

Details about the support ticket being updated.

Remarks

Required

Implements

IOciRequest
In this article
Back to top