Show / Hide Table of Contents

Class CustomResourceDefinitionConditionArgs

CustomResourceDefinitionCondition contains details for the current condition of this pod.

Inheritance
System.Object
InputArgs
ResourceArgs
CustomResourceDefinitionConditionArgs
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.Kubernetes.Types.Inputs.ApiExtensions.V1Beta1
Assembly: Pulumi.Kubernetes.dll
Syntax
public class CustomResourceDefinitionConditionArgs : ResourceArgs

Properties

View Source

LastTransitionTime

lastTransitionTime last time the condition transitioned from one status to another.

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

Message

message is a human-readable message indicating details about last transition.

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

Reason

reason is a unique, one-word, CamelCase reason for the condition's last transition.

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

Status

status is the status of the condition. Can be True, False, Unknown.

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

Type

type is the type of the condition. Types include Established, NamesAccepted and Terminating.

Declaration
public Input<string> Type { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.