Show / Hide Table of Contents

Class UpdateConfigurationRequest

Inheritance
object
UpdateConfigurationRequest
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.AuditService.Requests
Assembly: OCI.DotNetSDK.Audit.dll
Syntax
public class UpdateConfigurationRequest : IOciRequest
Examples

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

Properties

CompartmentId

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

ID of the root compartment (tenancy)

Remarks

Required

UpdateConfigurationDetails

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

The configuration properties

Remarks

Required

Implements

IOciRequest
In this article
Back to top