Show / Hide Table of Contents

Class BulkMoveResourcesDetails

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

Properties

Resources

Declaration
[Required(ErrorMessage = "Resources is required.")]
[JsonProperty(PropertyName = "resources")]
public List<BulkActionResource> Resources { get; set; }
Property Value
Type Description
List<BulkActionResource>

The resources to be moved.

Remarks

Required

TargetCompartmentId

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

The OCID of the destination compartment into which to move the resources.

Remarks

Required

In this article
Back to top