Show / Hide Table of Contents

Class CreateVolumeBackupPolicyAssignmentDetails

Inheritance
object
CreateVolumeBackupPolicyAssignmentDetails
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 CreateVolumeBackupPolicyAssignmentDetails

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 to assign the policy to.

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 to assign to the volume.

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