Show / Hide Table of Contents

Class EndpointConfig

Endpoint config for this cluster

Inheritance
System.Object
EndpointConfig
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
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: Google.Apis.Dataproc.v1beta2.Data
Assembly: Google.Apis.Dataproc.v1beta2.dll
Syntax
public class EndpointConfig : IDirectResponseSchema

Properties

EnableHttpPortAccess

Optional. If true, enable http access to specific ports on the cluster from external sources. Defaults to false.

Declaration
[JsonProperty("enableHttpPortAccess")]
public virtual bool? EnableHttpPortAccess { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

HttpPorts

Output only. The map of port descriptions to URLs. Will only be populated if enable_http_port_access is true.

Declaration
[JsonProperty("httpPorts")]
public virtual IDictionary<string, string> HttpPorts { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, System.String>

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top