Show / Hide Table of Contents

Class Credential

The credential used by Deployment Manager and TypeProvider. Only one of the options is permitted.

Inheritance
System.Object
Credential
Implements
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.DeploymentManagerAlpha.alpha.Data
Assembly: Google.Apis.DeploymentManagerAlpha.alpha.dll
Syntax
public class Credential : IDirectResponseSchema

Properties

BasicAuth

Basic Auth Credential, only used by TypeProvider.

Declaration
[JsonProperty("basicAuth")]
public virtual BasicAuth BasicAuth { get; set; }
Property Value
Type Description
BasicAuth

ETag

The ETag of the item.

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

ServiceAccount

Service Account Credential, only used by Deployment.

Declaration
[JsonProperty("serviceAccount")]
public virtual ServiceAccount ServiceAccount { get; set; }
Property Value
Type Description
ServiceAccount

UseProjectDefault

Specify to use the project default credential, only supported by Deployment.

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

Implements

IDirectResponseSchema
Back to top