Show / Hide Table of Contents

Class VolumeBackupPolicyAssignment

Specifies the volume that the volume backup policy is assigned to.
For more information about Oracle defined backup policies and custom backup policies, see Policy-Based Backups.

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

Properties

AssetId

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

The OCID of the volume the policy has been assigned to.

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 volume backup policy assignment.

Remarks

Required

PolicyId

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

The OCID of the volume backup policy that has been assigned to the volume.

Remarks

Required

TimeCreated

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

The date and time the volume backup policy was assigned to the volume. The format is defined by RFC3339.

Remarks

Required

XrcKmsKeyId

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

The OCID of the Vault service key which is the master encryption key for the block / boot volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.

In this article
Back to top