Show / Hide Table of Contents

Class KubernetesClusterDataSource

A Kubernetes cluster data source.

Inheritance
object
DataSource
KubernetesClusterDataSource
Inherited Members
DataSource.Key
DataSource.Name
DataSource.CompartmentId
DataSource.State
DataSource.TimeCreated
DataSource.TimeUpdated
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ManagementagentService.Models
Assembly: OCI.DotNetSDK.Managementagent.dll
Syntax
public class KubernetesClusterDataSource : DataSource

Properties

IsDaemonSet

Declaration
[JsonProperty(PropertyName = "isDaemonSet")]
public bool? IsDaemonSet { get; set; }
Property Value
Type Description
bool?

If the Kubernetes cluster type is Daemon set then this will be set to true.

Namespace

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

The Kubernetes namespace

Remarks

Required

In this article
Back to top