Show / Hide Table of Contents

Class GetProfileRequest

Inheritance
object
GetProfileRequest
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.DatasafeService.Requests
Assembly: OCI.DotNetSDK.Datasafe.dll
Syntax
public class GetProfileRequest : IOciRequest
Examples

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

Properties

OpcRequestId

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

Unique identifier for the request.

ProfileName

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

Profile name to get detailed information .

Remarks

Required

UserAssessmentId

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

The OCID of the user assessment.

Remarks

Required

Implements

IOciRequest
In this article
Back to top