Show / Hide Table of Contents

Class Assignment

An assignment allows a project to submit jobs of a certain type using slots from the specified reservation.

Inheritance
System.Object
Assignment
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.BigQueryReservation.v1beta1.Data
Assembly: Google.Apis.BigQueryReservation.v1beta1.dll
Syntax
public class Assignment : IDirectResponseSchema

Properties

Assignee

The resource which will use the reservation. E.g. projects/myproject, folders/123, or organizations/456.

Declaration
[JsonProperty("assignee")]
public virtual string Assignee { 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

JobType

Which type of jobs will use the reservation.

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

Name

Output only. Name of the resource. E.g.: projects/myproject/locations/US/reservations/team1-prod/assignments/123. The assignment_id must only contain lower case alphanumeric characters or dashes and the max length is 64 characters.

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

State

Output only. State of the assignment.

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

Implements

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