Show / Hide Table of Contents

Class NonDisclosureAgreement

A non-disclosure agreement that describes terms of use for a particular compliance document.

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

Properties

AgreementContent

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

The actual terms of the non-disclosure agreement between the customer and Oracle.

Remarks

Required

CompartmentId

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

The OCID of the compartment that contains the non-disclosure agreement.

Remarks

Required

DocumentId

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

The ID of the compliance document associated with the non-disclosure agreement.

Remarks

Required

Id

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

The OCID of the non-disclosure agreement, which is assigned when you create the non-disclosure agreement as an Oracle Cloud Infrastructure resource and is immutable.

Remarks

Required

TimeCreated

Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The date and time the non-disclosure agreement was created, expressed in RFC 3339 timestamp format.

UserId

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

The OCID of the principal that called CreateNonDisclosureAgreement.

Remarks

Required

In this article
Back to top