Show / Hide Table of Contents

Class UpdateDrProtectionGroupDetails

The details for updating a DR protection group.

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

Properties

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace.
Example: {"Operations": {"CostCenter": "42"}}

DisplayName

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

The display name of the DR protection group.
Example: EBS PHX Group

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
Example: {"Department": "Finance"}

LogLocation

Declaration
[JsonProperty(PropertyName = "logLocation")]
public UpdateObjectStorageLogLocationDetails LogLocation { get; set; }
Property Value
Type Description
UpdateObjectStorageLogLocationDetails

Members

Declaration
[JsonProperty(PropertyName = "members")]
public List<UpdateDrProtectionGroupMemberDetails> Members { get; set; }
Property Value
Type Description
List<UpdateDrProtectionGroupMemberDetails>

A list of DR protection group members. When updating members, this list must contain all members being retained, including added and updated members. The list must not contain deleted members.

In this article
Back to top