Show / Hide Table of Contents

Class InjectCredentialsRequest

A request to inject credentials into a cluster.

Inheritance
System.Object
InjectCredentialsRequest
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 InjectCredentialsRequest : IDirectResponseSchema

Properties

ClusterUuid

Required. The cluster UUID.

Declaration
[JsonProperty("clusterUuid")]
public virtual string ClusterUuid { get; set; }
Property Value
Type Description
System.String

CredentialsCiphertext

Required. The encrypted credentials being injected in to the cluster.The client is responsible for encrypting the credentials in a way that is supported by the cluster.A wrapped value is used here so that the actual contents of the encrypted credentials are not written to audit logs.

Declaration
[JsonProperty("credentialsCiphertext")]
public virtual string CredentialsCiphertext { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

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

Implements

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