Show / Hide Table of Contents

Class ChangeTableCompartmentDetails

Specification of both from and to compartments.

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

Properties

FromCompartmentId

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

The OCID of the table's current compartment. Required if the tableNameOrId path parameter is a table name. Optional if tableNameOrId is an OCID. If tableNameOrId is an OCID, and fromCompartmentId is supplied, the latter must match the identified table's current compartmentId.

ToCompartmentId

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

The OCID of the table's new compartment.

Remarks

Required

In this article
Back to top