Show / Hide Table of Contents

Class OkeClusterResourceModifierMapping

The mapping of OKE namespaces to config maps for an OKE member.

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

Properties

ConfigMap

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

The name of the config map containing resource modification details. Example: resource-modifier

Remarks

Required

Namespace

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

The OKE namespace where the config map resides. Example: namespace_string_5

Remarks

Required

In this article
Back to top