Show / Hide Table of Contents

Class ClusterState

Inheritance
System.Object
InputArgs
ResourceArgs
ClusterState
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.Gcp.Dataproc
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class ClusterState : ResourceArgs

Constructors

View Source

ClusterState()

Declaration
public ClusterState()

Properties

View Source

ClusterConfig

Allows you to configure various aspects of the cluster. Structure defined below.

Declaration
public Input<ClusterClusterConfigGetArgs> ClusterConfig { get; set; }
Property Value
Type Description
Input<ClusterClusterConfigGetArgs>
View Source

Labels

The list of labels (key/value pairs) to be applied to instances in the cluster. GCP generates some itself including goog-dataproc-cluster-name which is the name of the cluster.

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

Name

The name of the cluster, unique within the project and zone.

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

Project

The ID of the project in which the cluster will exist. If it is not provided, the provider project is used.

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

Region

The region in which the cluster and associated nodes will be created in. Defaults to global.

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