Show / Hide Table of Contents

Class GoogleDevtoolsRemotebuildexecutionAdminV1alphaUpdateInstanceRequest

The request used for UpdateInstance.

Inheritance
System.Object
GoogleDevtoolsRemotebuildexecutionAdminV1alphaUpdateInstanceRequest
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.RemoteBuildExecution.v1.Data
Assembly: Google.Apis.RemoteBuildExecution.v1.dll
Syntax
public class GoogleDevtoolsRemotebuildexecutionAdminV1alphaUpdateInstanceRequest : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Instance

Specifies the instance to update.

Declaration
[JsonProperty("instance")]
public virtual GoogleDevtoolsRemotebuildexecutionAdminV1alphaInstance Instance { get; set; }
Property Value
Type Description
GoogleDevtoolsRemotebuildexecutionAdminV1alphaInstance

LoggingEnabled

Deprecated, use instance.logging_enabled instead. Whether to enable Stackdriver logging for this instance.

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

Name

Deprecated, use instance.Name instead. Name of the instance to update. Format: projects/[PROJECT_ID]/instances/[INSTANCE_ID].

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

UpdateMask

The update mask applies to instance. For the FieldMask definition, see https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask If an empty update_mask is provided, only the non-default valued field in the worker pool field will be updated. Note that in order to update a field to the default value (zero, false, empty string) an explicit update_mask must be provided.

Declaration
[JsonProperty("updateMask")]
public virtual object UpdateMask { get; set; }
Property Value
Type Description
System.Object

Implements

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