Show / Hide Table of Contents

Class KubernetesClusterNodePoolNodeArgs

Inheritance
System.Object
InputArgs
ResourceArgs
KubernetesClusterNodePoolNodeArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.DigitalOcean.Inputs
Assembly: Pulumi.DigitalOcean.dll
Syntax
public sealed class KubernetesClusterNodePoolNodeArgs : ResourceArgs

Constructors

View Source

KubernetesClusterNodePoolNodeArgs()

Declaration
public KubernetesClusterNodePoolNodeArgs()

Properties

View Source

CreatedAt

The date and time when the Kubernetes cluster was created.

Declaration
public Input<string> CreatedAt { get; set; }
Property Value
Type Description
Input<System.String>
View Source

DropletId

Declaration
public Input<string> DropletId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Id

A unique ID that can be used to identify and reference a Kubernetes cluster.

Declaration
public Input<string> Id { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

A name for the Kubernetes cluster.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Status

A string indicating the current status of the cluster. Potential values include running, provisioning, and errored.

Declaration
public Input<string> Status { get; set; }
Property Value
Type Description
Input<System.String>
View Source

UpdatedAt

The date and time when the Kubernetes cluster was last updated.

  • kube_config.0 - A representation of the Kubernetes cluster's kubeconfig with the following attributes:
  • raw_config - The full contents of the Kubernetes cluster's kubeconfig file.
  • host - The URL of the API server on the Kubernetes master node.
  • cluster_ca_certificate - The base64 encoded public certificate for the cluster's certificate authority.
  • token - The DigitalOcean API access token used by clients to access the cluster.
  • client_key - The base64 encoded private key used by clients to access the cluster. Only available if token authentication is not supported on your cluster.
  • client_certificate - The base64 encoded public certificate used by clients to access the cluster. Only available if token authentication is not supported on your cluster.
  • expires_at - The date and time when the credentials will expire and need to be regenerated.
Declaration
public Input<string> UpdatedAt { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.