Class ChangeTableCompartmentDetails
Specification of both from and to compartments.
Inherited Members
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