Show / Hide Table of Contents

Class AllocationPolicy

A Job's resource allocation policy describes when, where, and how compute resources should be allocated for the Job.

Inheritance
object
AllocationPolicy
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Batch.v1.Data
Assembly: Google.Apis.Batch.v1.dll
Syntax
public class AllocationPolicy : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Instances

Describe instances that can be created by this AllocationPolicy. Only instances[0] is supported now.

Declaration
[JsonProperty("instances")]
public virtual IList<InstancePolicyOrTemplate> Instances { get; set; }
Property Value
Type Description
IList<InstancePolicyOrTemplate>

Labels

Custom labels to apply to the job and all the Compute Engine resources that both are created by this allocation policy and support labels. Use labels to group and describe the resources they are applied to. Batch automatically applies predefined labels and supports multiple labels fields for each job, which each let you apply custom labels to various resources. Label names that start with "goog-" or "google-" are reserved for predefined labels. For more information about labels with Batch, see Organize resources using labels.

Declaration
[JsonProperty("labels")]
public virtual IDictionary<string, string> Labels { get; set; }
Property Value
Type Description
IDictionary<string, string>

Location

Location where compute resources should be allocated for the Job.

Declaration
[JsonProperty("location")]
public virtual LocationPolicy Location { get; set; }
Property Value
Type Description
LocationPolicy

Network

The network policy. If you define an instance template in the InstancePolicyOrTemplate field, Batch will use the network settings in the instance template instead of this field.

Declaration
[JsonProperty("network")]
public virtual NetworkPolicy Network { get; set; }
Property Value
Type Description
NetworkPolicy

Placement

The placement policy.

Declaration
[JsonProperty("placement")]
public virtual PlacementPolicy Placement { get; set; }
Property Value
Type Description
PlacementPolicy

ServiceAccount

Defines the service account for Batch-created VMs. If omitted, the default Compute Engine service account is used. Must match the service account specified in any used instance template configured in the Batch job. Includes the following fields: * email: The service account's email address. If not set, the default Compute Engine service account is used. * scopes: Additional OAuth scopes to grant the service account, beyond the default cloud-platform scope. (list of strings)

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

Tags

Optional. Tags applied to the VM instances. The tags identify valid sources or targets for network firewalls. Each tag must be 1-63 characters long, and comply with RFC1035.

Declaration
[JsonProperty("tags")]
public virtual IList<string> Tags { get; set; }
Property Value
Type Description
IList<string>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX