1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. cloudbuild
  5. WorkerPool
Google Cloud Classic v7.16.0 published on Wednesday, Mar 27, 2024 by Pulumi

gcp.cloudbuild.WorkerPool

Explore with Pulumi AI

gcp logo
Google Cloud Classic v7.16.0 published on Wednesday, Mar 27, 2024 by Pulumi

    Definition of custom Cloud Build WorkerPools for running jobs with custom configuration and custom networking.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const pool = new gcp.cloudbuild.WorkerPool("pool", {
        name: "my-pool",
        location: "europe-west1",
        workerConfig: {
            diskSizeGb: 100,
            machineType: "e2-standard-4",
            noExternalIp: false,
        },
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    pool = gcp.cloudbuild.WorkerPool("pool",
        name="my-pool",
        location="europe-west1",
        worker_config=gcp.cloudbuild.WorkerPoolWorkerConfigArgs(
            disk_size_gb=100,
            machine_type="e2-standard-4",
            no_external_ip=False,
        ))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/cloudbuild"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cloudbuild.NewWorkerPool(ctx, "pool", &cloudbuild.WorkerPoolArgs{
    			Name:     pulumi.String("my-pool"),
    			Location: pulumi.String("europe-west1"),
    			WorkerConfig: &cloudbuild.WorkerPoolWorkerConfigArgs{
    				DiskSizeGb:   pulumi.Int(100),
    				MachineType:  pulumi.String("e2-standard-4"),
    				NoExternalIp: pulumi.Bool(false),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var pool = new Gcp.CloudBuild.WorkerPool("pool", new()
        {
            Name = "my-pool",
            Location = "europe-west1",
            WorkerConfig = new Gcp.CloudBuild.Inputs.WorkerPoolWorkerConfigArgs
            {
                DiskSizeGb = 100,
                MachineType = "e2-standard-4",
                NoExternalIp = false,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.cloudbuild.WorkerPool;
    import com.pulumi.gcp.cloudbuild.WorkerPoolArgs;
    import com.pulumi.gcp.cloudbuild.inputs.WorkerPoolWorkerConfigArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var pool = new WorkerPool("pool", WorkerPoolArgs.builder()        
                .name("my-pool")
                .location("europe-west1")
                .workerConfig(WorkerPoolWorkerConfigArgs.builder()
                    .diskSizeGb(100)
                    .machineType("e2-standard-4")
                    .noExternalIp(false)
                    .build())
                .build());
    
        }
    }
    
    resources:
      pool:
        type: gcp:cloudbuild:WorkerPool
        properties:
          name: my-pool
          location: europe-west1
          workerConfig:
            diskSizeGb: 100
            machineType: e2-standard-4
            noExternalIp: false
    

    Network Config

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const servicenetworking = new gcp.projects.Service("servicenetworking", {
        service: "servicenetworking.googleapis.com",
        disableOnDestroy: false,
    });
    const network = new gcp.compute.Network("network", {
        name: "my-network",
        autoCreateSubnetworks: false,
    });
    const workerRange = new gcp.compute.GlobalAddress("worker_range", {
        name: "worker-pool-range",
        purpose: "VPC_PEERING",
        addressType: "INTERNAL",
        prefixLength: 16,
        network: network.id,
    });
    const workerPoolConn = new gcp.servicenetworking.Connection("worker_pool_conn", {
        network: network.id,
        service: "servicenetworking.googleapis.com",
        reservedPeeringRanges: [workerRange.name],
    });
    const pool = new gcp.cloudbuild.WorkerPool("pool", {
        name: "my-pool",
        location: "europe-west1",
        workerConfig: {
            diskSizeGb: 100,
            machineType: "e2-standard-4",
            noExternalIp: false,
        },
        networkConfig: {
            peeredNetwork: network.id,
            peeredNetworkIpRange: "/29",
        },
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    servicenetworking = gcp.projects.Service("servicenetworking",
        service="servicenetworking.googleapis.com",
        disable_on_destroy=False)
    network = gcp.compute.Network("network",
        name="my-network",
        auto_create_subnetworks=False)
    worker_range = gcp.compute.GlobalAddress("worker_range",
        name="worker-pool-range",
        purpose="VPC_PEERING",
        address_type="INTERNAL",
        prefix_length=16,
        network=network.id)
    worker_pool_conn = gcp.servicenetworking.Connection("worker_pool_conn",
        network=network.id,
        service="servicenetworking.googleapis.com",
        reserved_peering_ranges=[worker_range.name])
    pool = gcp.cloudbuild.WorkerPool("pool",
        name="my-pool",
        location="europe-west1",
        worker_config=gcp.cloudbuild.WorkerPoolWorkerConfigArgs(
            disk_size_gb=100,
            machine_type="e2-standard-4",
            no_external_ip=False,
        ),
        network_config=gcp.cloudbuild.WorkerPoolNetworkConfigArgs(
            peered_network=network.id,
            peered_network_ip_range="/29",
        ))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/cloudbuild"
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/projects"
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/servicenetworking"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := projects.NewService(ctx, "servicenetworking", &projects.ServiceArgs{
    			Service:          pulumi.String("servicenetworking.googleapis.com"),
    			DisableOnDestroy: pulumi.Bool(false),
    		})
    		if err != nil {
    			return err
    		}
    		network, err := compute.NewNetwork(ctx, "network", &compute.NetworkArgs{
    			Name:                  pulumi.String("my-network"),
    			AutoCreateSubnetworks: pulumi.Bool(false),
    		})
    		if err != nil {
    			return err
    		}
    		workerRange, err := compute.NewGlobalAddress(ctx, "worker_range", &compute.GlobalAddressArgs{
    			Name:         pulumi.String("worker-pool-range"),
    			Purpose:      pulumi.String("VPC_PEERING"),
    			AddressType:  pulumi.String("INTERNAL"),
    			PrefixLength: pulumi.Int(16),
    			Network:      network.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = servicenetworking.NewConnection(ctx, "worker_pool_conn", &servicenetworking.ConnectionArgs{
    			Network: network.ID(),
    			Service: pulumi.String("servicenetworking.googleapis.com"),
    			ReservedPeeringRanges: pulumi.StringArray{
    				workerRange.Name,
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = cloudbuild.NewWorkerPool(ctx, "pool", &cloudbuild.WorkerPoolArgs{
    			Name:     pulumi.String("my-pool"),
    			Location: pulumi.String("europe-west1"),
    			WorkerConfig: &cloudbuild.WorkerPoolWorkerConfigArgs{
    				DiskSizeGb:   pulumi.Int(100),
    				MachineType:  pulumi.String("e2-standard-4"),
    				NoExternalIp: pulumi.Bool(false),
    			},
    			NetworkConfig: &cloudbuild.WorkerPoolNetworkConfigArgs{
    				PeeredNetwork:        network.ID(),
    				PeeredNetworkIpRange: pulumi.String("/29"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var servicenetworking = new Gcp.Projects.Service("servicenetworking", new()
        {
            ServiceName = "servicenetworking.googleapis.com",
            DisableOnDestroy = false,
        });
    
        var network = new Gcp.Compute.Network("network", new()
        {
            Name = "my-network",
            AutoCreateSubnetworks = false,
        });
    
        var workerRange = new Gcp.Compute.GlobalAddress("worker_range", new()
        {
            Name = "worker-pool-range",
            Purpose = "VPC_PEERING",
            AddressType = "INTERNAL",
            PrefixLength = 16,
            Network = network.Id,
        });
    
        var workerPoolConn = new Gcp.ServiceNetworking.Connection("worker_pool_conn", new()
        {
            Network = network.Id,
            Service = "servicenetworking.googleapis.com",
            ReservedPeeringRanges = new[]
            {
                workerRange.Name,
            },
        });
    
        var pool = new Gcp.CloudBuild.WorkerPool("pool", new()
        {
            Name = "my-pool",
            Location = "europe-west1",
            WorkerConfig = new Gcp.CloudBuild.Inputs.WorkerPoolWorkerConfigArgs
            {
                DiskSizeGb = 100,
                MachineType = "e2-standard-4",
                NoExternalIp = false,
            },
            NetworkConfig = new Gcp.CloudBuild.Inputs.WorkerPoolNetworkConfigArgs
            {
                PeeredNetwork = network.Id,
                PeeredNetworkIpRange = "/29",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.projects.Service;
    import com.pulumi.gcp.projects.ServiceArgs;
    import com.pulumi.gcp.compute.Network;
    import com.pulumi.gcp.compute.NetworkArgs;
    import com.pulumi.gcp.compute.GlobalAddress;
    import com.pulumi.gcp.compute.GlobalAddressArgs;
    import com.pulumi.gcp.servicenetworking.Connection;
    import com.pulumi.gcp.servicenetworking.ConnectionArgs;
    import com.pulumi.gcp.cloudbuild.WorkerPool;
    import com.pulumi.gcp.cloudbuild.WorkerPoolArgs;
    import com.pulumi.gcp.cloudbuild.inputs.WorkerPoolWorkerConfigArgs;
    import com.pulumi.gcp.cloudbuild.inputs.WorkerPoolNetworkConfigArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var servicenetworking = new Service("servicenetworking", ServiceArgs.builder()        
                .service("servicenetworking.googleapis.com")
                .disableOnDestroy(false)
                .build());
    
            var network = new Network("network", NetworkArgs.builder()        
                .name("my-network")
                .autoCreateSubnetworks(false)
                .build());
    
            var workerRange = new GlobalAddress("workerRange", GlobalAddressArgs.builder()        
                .name("worker-pool-range")
                .purpose("VPC_PEERING")
                .addressType("INTERNAL")
                .prefixLength(16)
                .network(network.id())
                .build());
    
            var workerPoolConn = new Connection("workerPoolConn", ConnectionArgs.builder()        
                .network(network.id())
                .service("servicenetworking.googleapis.com")
                .reservedPeeringRanges(workerRange.name())
                .build());
    
            var pool = new WorkerPool("pool", WorkerPoolArgs.builder()        
                .name("my-pool")
                .location("europe-west1")
                .workerConfig(WorkerPoolWorkerConfigArgs.builder()
                    .diskSizeGb(100)
                    .machineType("e2-standard-4")
                    .noExternalIp(false)
                    .build())
                .networkConfig(WorkerPoolNetworkConfigArgs.builder()
                    .peeredNetwork(network.id())
                    .peeredNetworkIpRange("/29")
                    .build())
                .build());
    
        }
    }
    
    resources:
      servicenetworking:
        type: gcp:projects:Service
        properties:
          service: servicenetworking.googleapis.com
          disableOnDestroy: false
      network:
        type: gcp:compute:Network
        properties:
          name: my-network
          autoCreateSubnetworks: false
      workerRange:
        type: gcp:compute:GlobalAddress
        name: worker_range
        properties:
          name: worker-pool-range
          purpose: VPC_PEERING
          addressType: INTERNAL
          prefixLength: 16
          network: ${network.id}
      workerPoolConn:
        type: gcp:servicenetworking:Connection
        name: worker_pool_conn
        properties:
          network: ${network.id}
          service: servicenetworking.googleapis.com
          reservedPeeringRanges:
            - ${workerRange.name}
      pool:
        type: gcp:cloudbuild:WorkerPool
        properties:
          name: my-pool
          location: europe-west1
          workerConfig:
            diskSizeGb: 100
            machineType: e2-standard-4
            noExternalIp: false
          networkConfig:
            peeredNetwork: ${network.id}
            peeredNetworkIpRange: /29
    

    Create WorkerPool Resource

    new WorkerPool(name: string, args: WorkerPoolArgs, opts?: CustomResourceOptions);
    @overload
    def WorkerPool(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   annotations: Optional[Mapping[str, str]] = None,
                   display_name: Optional[str] = None,
                   location: Optional[str] = None,
                   name: Optional[str] = None,
                   network_config: Optional[WorkerPoolNetworkConfigArgs] = None,
                   project: Optional[str] = None,
                   worker_config: Optional[WorkerPoolWorkerConfigArgs] = None)
    @overload
    def WorkerPool(resource_name: str,
                   args: WorkerPoolArgs,
                   opts: Optional[ResourceOptions] = None)
    func NewWorkerPool(ctx *Context, name string, args WorkerPoolArgs, opts ...ResourceOption) (*WorkerPool, error)
    public WorkerPool(string name, WorkerPoolArgs args, CustomResourceOptions? opts = null)
    public WorkerPool(String name, WorkerPoolArgs args)
    public WorkerPool(String name, WorkerPoolArgs args, CustomResourceOptions options)
    
    type: gcp:cloudbuild:WorkerPool
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args WorkerPoolArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args WorkerPoolArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args WorkerPoolArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WorkerPoolArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WorkerPoolArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    WorkerPool Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The WorkerPool resource accepts the following input properties:

    Location string
    The location for the resource
    Annotations Dictionary<string, string>
    User specified annotations. See https://google.aip.dev/128#annotations for more details such as format and size limitations. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
    DisplayName string
    A user-specified, human-readable name for the WorkerPool. If provided, this value must be 1-63 characters.
    Name string
    User-defined name of the WorkerPool.


    NetworkConfig WorkerPoolNetworkConfig
    Network configuration for the WorkerPool. Structure is documented below.
    Project string
    The project for the resource
    WorkerConfig WorkerPoolWorkerConfig
    Configuration to be used for a creating workers in the WorkerPool. Structure is documented below.
    Location string
    The location for the resource
    Annotations map[string]string
    User specified annotations. See https://google.aip.dev/128#annotations for more details such as format and size limitations. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
    DisplayName string
    A user-specified, human-readable name for the WorkerPool. If provided, this value must be 1-63 characters.
    Name string
    User-defined name of the WorkerPool.


    NetworkConfig WorkerPoolNetworkConfigArgs
    Network configuration for the WorkerPool. Structure is documented below.
    Project string
    The project for the resource
    WorkerConfig WorkerPoolWorkerConfigArgs
    Configuration to be used for a creating workers in the WorkerPool. Structure is documented below.
    location String
    The location for the resource
    annotations Map<String,String>
    User specified annotations. See https://google.aip.dev/128#annotations for more details such as format and size limitations. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
    displayName String
    A user-specified, human-readable name for the WorkerPool. If provided, this value must be 1-63 characters.
    name String
    User-defined name of the WorkerPool.


    networkConfig WorkerPoolNetworkConfig
    Network configuration for the WorkerPool. Structure is documented below.
    project String
    The project for the resource
    workerConfig WorkerPoolWorkerConfig
    Configuration to be used for a creating workers in the WorkerPool. Structure is documented below.
    location string
    The location for the resource
    annotations {[key: string]: string}
    User specified annotations. See https://google.aip.dev/128#annotations for more details such as format and size limitations. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
    displayName string
    A user-specified, human-readable name for the WorkerPool. If provided, this value must be 1-63 characters.
    name string
    User-defined name of the WorkerPool.


    networkConfig WorkerPoolNetworkConfig
    Network configuration for the WorkerPool. Structure is documented below.
    project string
    The project for the resource
    workerConfig WorkerPoolWorkerConfig
    Configuration to be used for a creating workers in the WorkerPool. Structure is documented below.
    location str
    The location for the resource
    annotations Mapping[str, str]
    User specified annotations. See https://google.aip.dev/128#annotations for more details such as format and size limitations. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
    display_name str
    A user-specified, human-readable name for the WorkerPool. If provided, this value must be 1-63 characters.
    name str
    User-defined name of the WorkerPool.


    network_config WorkerPoolNetworkConfigArgs
    Network configuration for the WorkerPool. Structure is documented below.
    project str
    The project for the resource
    worker_config WorkerPoolWorkerConfigArgs
    Configuration to be used for a creating workers in the WorkerPool. Structure is documented below.
    location String
    The location for the resource
    annotations Map<String>
    User specified annotations. See https://google.aip.dev/128#annotations for more details such as format and size limitations. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
    displayName String
    A user-specified, human-readable name for the WorkerPool. If provided, this value must be 1-63 characters.
    name String
    User-defined name of the WorkerPool.


    networkConfig Property Map
    Network configuration for the WorkerPool. Structure is documented below.
    project String
    The project for the resource
    workerConfig Property Map
    Configuration to be used for a creating workers in the WorkerPool. Structure is documented below.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the WorkerPool resource produces the following output properties:

    CreateTime string
    Output only. Time at which the request to create the WorkerPool was received.
    DeleteTime string
    Output only. Time at which the request to delete the WorkerPool was received.
    EffectiveAnnotations Dictionary<string, object>
    All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through Terraform, other clients and services.
    Id string
    The provider-assigned unique ID for this managed resource.
    State string
    Output only. WorkerPool state. Possible values: STATE_UNSPECIFIED, PENDING, APPROVED, REJECTED, CANCELLED
    Uid string
    Output only. A unique identifier for the WorkerPool.
    UpdateTime string
    Output only. Time at which the request to update the WorkerPool was received.
    CreateTime string
    Output only. Time at which the request to create the WorkerPool was received.
    DeleteTime string
    Output only. Time at which the request to delete the WorkerPool was received.
    EffectiveAnnotations map[string]interface{}
    All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through Terraform, other clients and services.
    Id string
    The provider-assigned unique ID for this managed resource.
    State string
    Output only. WorkerPool state. Possible values: STATE_UNSPECIFIED, PENDING, APPROVED, REJECTED, CANCELLED
    Uid string
    Output only. A unique identifier for the WorkerPool.
    UpdateTime string
    Output only. Time at which the request to update the WorkerPool was received.
    createTime String
    Output only. Time at which the request to create the WorkerPool was received.
    deleteTime String
    Output only. Time at which the request to delete the WorkerPool was received.
    effectiveAnnotations Map<String,Object>
    All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through Terraform, other clients and services.
    id String
    The provider-assigned unique ID for this managed resource.
    state String
    Output only. WorkerPool state. Possible values: STATE_UNSPECIFIED, PENDING, APPROVED, REJECTED, CANCELLED
    uid String
    Output only. A unique identifier for the WorkerPool.
    updateTime String
    Output only. Time at which the request to update the WorkerPool was received.
    createTime string
    Output only. Time at which the request to create the WorkerPool was received.
    deleteTime string
    Output only. Time at which the request to delete the WorkerPool was received.
    effectiveAnnotations {[key: string]: any}
    All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through Terraform, other clients and services.
    id string
    The provider-assigned unique ID for this managed resource.
    state string
    Output only. WorkerPool state. Possible values: STATE_UNSPECIFIED, PENDING, APPROVED, REJECTED, CANCELLED
    uid string
    Output only. A unique identifier for the WorkerPool.
    updateTime string
    Output only. Time at which the request to update the WorkerPool was received.
    create_time str
    Output only. Time at which the request to create the WorkerPool was received.
    delete_time str
    Output only. Time at which the request to delete the WorkerPool was received.
    effective_annotations Mapping[str, Any]
    All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through Terraform, other clients and services.
    id str
    The provider-assigned unique ID for this managed resource.
    state str
    Output only. WorkerPool state. Possible values: STATE_UNSPECIFIED, PENDING, APPROVED, REJECTED, CANCELLED
    uid str
    Output only. A unique identifier for the WorkerPool.
    update_time str
    Output only. Time at which the request to update the WorkerPool was received.
    createTime String
    Output only. Time at which the request to create the WorkerPool was received.
    deleteTime String
    Output only. Time at which the request to delete the WorkerPool was received.
    effectiveAnnotations Map<Any>
    All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through Terraform, other clients and services.
    id String
    The provider-assigned unique ID for this managed resource.
    state String
    Output only. WorkerPool state. Possible values: STATE_UNSPECIFIED, PENDING, APPROVED, REJECTED, CANCELLED
    uid String
    Output only. A unique identifier for the WorkerPool.
    updateTime String
    Output only. Time at which the request to update the WorkerPool was received.

    Look up Existing WorkerPool Resource

    Get an existing WorkerPool resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: WorkerPoolState, opts?: CustomResourceOptions): WorkerPool
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            annotations: Optional[Mapping[str, str]] = None,
            create_time: Optional[str] = None,
            delete_time: Optional[str] = None,
            display_name: Optional[str] = None,
            effective_annotations: Optional[Mapping[str, Any]] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            network_config: Optional[WorkerPoolNetworkConfigArgs] = None,
            project: Optional[str] = None,
            state: Optional[str] = None,
            uid: Optional[str] = None,
            update_time: Optional[str] = None,
            worker_config: Optional[WorkerPoolWorkerConfigArgs] = None) -> WorkerPool
    func GetWorkerPool(ctx *Context, name string, id IDInput, state *WorkerPoolState, opts ...ResourceOption) (*WorkerPool, error)
    public static WorkerPool Get(string name, Input<string> id, WorkerPoolState? state, CustomResourceOptions? opts = null)
    public static WorkerPool get(String name, Output<String> id, WorkerPoolState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Annotations Dictionary<string, string>
    User specified annotations. See https://google.aip.dev/128#annotations for more details such as format and size limitations. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
    CreateTime string
    Output only. Time at which the request to create the WorkerPool was received.
    DeleteTime string
    Output only. Time at which the request to delete the WorkerPool was received.
    DisplayName string
    A user-specified, human-readable name for the WorkerPool. If provided, this value must be 1-63 characters.
    EffectiveAnnotations Dictionary<string, object>
    All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through Terraform, other clients and services.
    Location string
    The location for the resource
    Name string
    User-defined name of the WorkerPool.


    NetworkConfig WorkerPoolNetworkConfig
    Network configuration for the WorkerPool. Structure is documented below.
    Project string
    The project for the resource
    State string
    Output only. WorkerPool state. Possible values: STATE_UNSPECIFIED, PENDING, APPROVED, REJECTED, CANCELLED
    Uid string
    Output only. A unique identifier for the WorkerPool.
    UpdateTime string
    Output only. Time at which the request to update the WorkerPool was received.
    WorkerConfig WorkerPoolWorkerConfig
    Configuration to be used for a creating workers in the WorkerPool. Structure is documented below.
    Annotations map[string]string
    User specified annotations. See https://google.aip.dev/128#annotations for more details such as format and size limitations. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
    CreateTime string
    Output only. Time at which the request to create the WorkerPool was received.
    DeleteTime string
    Output only. Time at which the request to delete the WorkerPool was received.
    DisplayName string
    A user-specified, human-readable name for the WorkerPool. If provided, this value must be 1-63 characters.
    EffectiveAnnotations map[string]interface{}
    All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through Terraform, other clients and services.
    Location string
    The location for the resource
    Name string
    User-defined name of the WorkerPool.


    NetworkConfig WorkerPoolNetworkConfigArgs
    Network configuration for the WorkerPool. Structure is documented below.
    Project string
    The project for the resource
    State string
    Output only. WorkerPool state. Possible values: STATE_UNSPECIFIED, PENDING, APPROVED, REJECTED, CANCELLED
    Uid string
    Output only. A unique identifier for the WorkerPool.
    UpdateTime string
    Output only. Time at which the request to update the WorkerPool was received.
    WorkerConfig WorkerPoolWorkerConfigArgs
    Configuration to be used for a creating workers in the WorkerPool. Structure is documented below.
    annotations Map<String,String>
    User specified annotations. See https://google.aip.dev/128#annotations for more details such as format and size limitations. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
    createTime String
    Output only. Time at which the request to create the WorkerPool was received.
    deleteTime String
    Output only. Time at which the request to delete the WorkerPool was received.
    displayName String
    A user-specified, human-readable name for the WorkerPool. If provided, this value must be 1-63 characters.
    effectiveAnnotations Map<String,Object>
    All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through Terraform, other clients and services.
    location String
    The location for the resource
    name String
    User-defined name of the WorkerPool.


    networkConfig WorkerPoolNetworkConfig
    Network configuration for the WorkerPool. Structure is documented below.
    project String
    The project for the resource
    state String
    Output only. WorkerPool state. Possible values: STATE_UNSPECIFIED, PENDING, APPROVED, REJECTED, CANCELLED
    uid String
    Output only. A unique identifier for the WorkerPool.
    updateTime String
    Output only. Time at which the request to update the WorkerPool was received.
    workerConfig WorkerPoolWorkerConfig
    Configuration to be used for a creating workers in the WorkerPool. Structure is documented below.
    annotations {[key: string]: string}
    User specified annotations. See https://google.aip.dev/128#annotations for more details such as format and size limitations. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
    createTime string
    Output only. Time at which the request to create the WorkerPool was received.
    deleteTime string
    Output only. Time at which the request to delete the WorkerPool was received.
    displayName string
    A user-specified, human-readable name for the WorkerPool. If provided, this value must be 1-63 characters.
    effectiveAnnotations {[key: string]: any}
    All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through Terraform, other clients and services.
    location string
    The location for the resource
    name string
    User-defined name of the WorkerPool.


    networkConfig WorkerPoolNetworkConfig
    Network configuration for the WorkerPool. Structure is documented below.
    project string
    The project for the resource
    state string
    Output only. WorkerPool state. Possible values: STATE_UNSPECIFIED, PENDING, APPROVED, REJECTED, CANCELLED
    uid string
    Output only. A unique identifier for the WorkerPool.
    updateTime string
    Output only. Time at which the request to update the WorkerPool was received.
    workerConfig WorkerPoolWorkerConfig
    Configuration to be used for a creating workers in the WorkerPool. Structure is documented below.
    annotations Mapping[str, str]
    User specified annotations. See https://google.aip.dev/128#annotations for more details such as format and size limitations. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
    create_time str
    Output only. Time at which the request to create the WorkerPool was received.
    delete_time str
    Output only. Time at which the request to delete the WorkerPool was received.
    display_name str
    A user-specified, human-readable name for the WorkerPool. If provided, this value must be 1-63 characters.
    effective_annotations Mapping[str, Any]
    All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through Terraform, other clients and services.
    location str
    The location for the resource
    name str
    User-defined name of the WorkerPool.


    network_config WorkerPoolNetworkConfigArgs
    Network configuration for the WorkerPool. Structure is documented below.
    project str
    The project for the resource
    state str
    Output only. WorkerPool state. Possible values: STATE_UNSPECIFIED, PENDING, APPROVED, REJECTED, CANCELLED
    uid str
    Output only. A unique identifier for the WorkerPool.
    update_time str
    Output only. Time at which the request to update the WorkerPool was received.
    worker_config WorkerPoolWorkerConfigArgs
    Configuration to be used for a creating workers in the WorkerPool. Structure is documented below.
    annotations Map<String>
    User specified annotations. See https://google.aip.dev/128#annotations for more details such as format and size limitations. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
    createTime String
    Output only. Time at which the request to create the WorkerPool was received.
    deleteTime String
    Output only. Time at which the request to delete the WorkerPool was received.
    displayName String
    A user-specified, human-readable name for the WorkerPool. If provided, this value must be 1-63 characters.
    effectiveAnnotations Map<Any>
    All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through Terraform, other clients and services.
    location String
    The location for the resource
    name String
    User-defined name of the WorkerPool.


    networkConfig Property Map
    Network configuration for the WorkerPool. Structure is documented below.
    project String
    The project for the resource
    state String
    Output only. WorkerPool state. Possible values: STATE_UNSPECIFIED, PENDING, APPROVED, REJECTED, CANCELLED
    uid String
    Output only. A unique identifier for the WorkerPool.
    updateTime String
    Output only. Time at which the request to update the WorkerPool was received.
    workerConfig Property Map
    Configuration to be used for a creating workers in the WorkerPool. Structure is documented below.

    Supporting Types

    WorkerPoolNetworkConfig, WorkerPoolNetworkConfigArgs

    PeeredNetwork string
    Immutable. The network definition that the workers are peered to. If this section is left empty, the workers will be peered to WorkerPool.project_id on the service producer network. Must be in the format projects/{project}/global/networks/{network}, where {project} is a project number, such as 12345, and {network} is the name of a VPC network in the project. See (https://cloud.google.com/cloud-build/docs/custom-workers/set-up-custom-worker-pool-environment#understanding_the_network_configuration_options)
    PeeredNetworkIpRange string
    Immutable. Subnet IP range within the peered network. This is specified in CIDR notation with a slash and the subnet prefix size. You can optionally specify an IP address before the subnet prefix value. e.g. 192.168.0.0/29 would specify an IP range starting at 192.168.0.0 with a prefix size of 29 bits. /16 would specify a prefix size of 16 bits, with an automatically determined IP within the peered VPC. If unspecified, a value of /24 will be used.
    PeeredNetwork string
    Immutable. The network definition that the workers are peered to. If this section is left empty, the workers will be peered to WorkerPool.project_id on the service producer network. Must be in the format projects/{project}/global/networks/{network}, where {project} is a project number, such as 12345, and {network} is the name of a VPC network in the project. See (https://cloud.google.com/cloud-build/docs/custom-workers/set-up-custom-worker-pool-environment#understanding_the_network_configuration_options)
    PeeredNetworkIpRange string
    Immutable. Subnet IP range within the peered network. This is specified in CIDR notation with a slash and the subnet prefix size. You can optionally specify an IP address before the subnet prefix value. e.g. 192.168.0.0/29 would specify an IP range starting at 192.168.0.0 with a prefix size of 29 bits. /16 would specify a prefix size of 16 bits, with an automatically determined IP within the peered VPC. If unspecified, a value of /24 will be used.
    peeredNetwork String
    Immutable. The network definition that the workers are peered to. If this section is left empty, the workers will be peered to WorkerPool.project_id on the service producer network. Must be in the format projects/{project}/global/networks/{network}, where {project} is a project number, such as 12345, and {network} is the name of a VPC network in the project. See (https://cloud.google.com/cloud-build/docs/custom-workers/set-up-custom-worker-pool-environment#understanding_the_network_configuration_options)
    peeredNetworkIpRange String
    Immutable. Subnet IP range within the peered network. This is specified in CIDR notation with a slash and the subnet prefix size. You can optionally specify an IP address before the subnet prefix value. e.g. 192.168.0.0/29 would specify an IP range starting at 192.168.0.0 with a prefix size of 29 bits. /16 would specify a prefix size of 16 bits, with an automatically determined IP within the peered VPC. If unspecified, a value of /24 will be used.
    peeredNetwork string
    Immutable. The network definition that the workers are peered to. If this section is left empty, the workers will be peered to WorkerPool.project_id on the service producer network. Must be in the format projects/{project}/global/networks/{network}, where {project} is a project number, such as 12345, and {network} is the name of a VPC network in the project. See (https://cloud.google.com/cloud-build/docs/custom-workers/set-up-custom-worker-pool-environment#understanding_the_network_configuration_options)
    peeredNetworkIpRange string
    Immutable. Subnet IP range within the peered network. This is specified in CIDR notation with a slash and the subnet prefix size. You can optionally specify an IP address before the subnet prefix value. e.g. 192.168.0.0/29 would specify an IP range starting at 192.168.0.0 with a prefix size of 29 bits. /16 would specify a prefix size of 16 bits, with an automatically determined IP within the peered VPC. If unspecified, a value of /24 will be used.
    peered_network str
    Immutable. The network definition that the workers are peered to. If this section is left empty, the workers will be peered to WorkerPool.project_id on the service producer network. Must be in the format projects/{project}/global/networks/{network}, where {project} is a project number, such as 12345, and {network} is the name of a VPC network in the project. See (https://cloud.google.com/cloud-build/docs/custom-workers/set-up-custom-worker-pool-environment#understanding_the_network_configuration_options)
    peered_network_ip_range str
    Immutable. Subnet IP range within the peered network. This is specified in CIDR notation with a slash and the subnet prefix size. You can optionally specify an IP address before the subnet prefix value. e.g. 192.168.0.0/29 would specify an IP range starting at 192.168.0.0 with a prefix size of 29 bits. /16 would specify a prefix size of 16 bits, with an automatically determined IP within the peered VPC. If unspecified, a value of /24 will be used.
    peeredNetwork String
    Immutable. The network definition that the workers are peered to. If this section is left empty, the workers will be peered to WorkerPool.project_id on the service producer network. Must be in the format projects/{project}/global/networks/{network}, where {project} is a project number, such as 12345, and {network} is the name of a VPC network in the project. See (https://cloud.google.com/cloud-build/docs/custom-workers/set-up-custom-worker-pool-environment#understanding_the_network_configuration_options)
    peeredNetworkIpRange String
    Immutable. Subnet IP range within the peered network. This is specified in CIDR notation with a slash and the subnet prefix size. You can optionally specify an IP address before the subnet prefix value. e.g. 192.168.0.0/29 would specify an IP range starting at 192.168.0.0 with a prefix size of 29 bits. /16 would specify a prefix size of 16 bits, with an automatically determined IP within the peered VPC. If unspecified, a value of /24 will be used.

    WorkerPoolWorkerConfig, WorkerPoolWorkerConfigArgs

    DiskSizeGb int
    Size of the disk attached to the worker, in GB. See (https://cloud.google.com/cloud-build/docs/custom-workers/worker-pool-config-file). Specify a value of up to 1000. If 0 is specified, Cloud Build will use a standard disk size.
    MachineType string
    Machine type of a worker, such as n1-standard-1. See (https://cloud.google.com/cloud-build/docs/custom-workers/worker-pool-config-file). If left blank, Cloud Build will use n1-standard-1.
    NoExternalIp bool
    If true, workers are created without any public address, which prevents network egress to public IPs.
    DiskSizeGb int
    Size of the disk attached to the worker, in GB. See (https://cloud.google.com/cloud-build/docs/custom-workers/worker-pool-config-file). Specify a value of up to 1000. If 0 is specified, Cloud Build will use a standard disk size.
    MachineType string
    Machine type of a worker, such as n1-standard-1. See (https://cloud.google.com/cloud-build/docs/custom-workers/worker-pool-config-file). If left blank, Cloud Build will use n1-standard-1.
    NoExternalIp bool
    If true, workers are created without any public address, which prevents network egress to public IPs.
    diskSizeGb Integer
    Size of the disk attached to the worker, in GB. See (https://cloud.google.com/cloud-build/docs/custom-workers/worker-pool-config-file). Specify a value of up to 1000. If 0 is specified, Cloud Build will use a standard disk size.
    machineType String
    Machine type of a worker, such as n1-standard-1. See (https://cloud.google.com/cloud-build/docs/custom-workers/worker-pool-config-file). If left blank, Cloud Build will use n1-standard-1.
    noExternalIp Boolean
    If true, workers are created without any public address, which prevents network egress to public IPs.
    diskSizeGb number
    Size of the disk attached to the worker, in GB. See (https://cloud.google.com/cloud-build/docs/custom-workers/worker-pool-config-file). Specify a value of up to 1000. If 0 is specified, Cloud Build will use a standard disk size.
    machineType string
    Machine type of a worker, such as n1-standard-1. See (https://cloud.google.com/cloud-build/docs/custom-workers/worker-pool-config-file). If left blank, Cloud Build will use n1-standard-1.
    noExternalIp boolean
    If true, workers are created without any public address, which prevents network egress to public IPs.
    disk_size_gb int
    Size of the disk attached to the worker, in GB. See (https://cloud.google.com/cloud-build/docs/custom-workers/worker-pool-config-file). Specify a value of up to 1000. If 0 is specified, Cloud Build will use a standard disk size.
    machine_type str
    Machine type of a worker, such as n1-standard-1. See (https://cloud.google.com/cloud-build/docs/custom-workers/worker-pool-config-file). If left blank, Cloud Build will use n1-standard-1.
    no_external_ip bool
    If true, workers are created without any public address, which prevents network egress to public IPs.
    diskSizeGb Number
    Size of the disk attached to the worker, in GB. See (https://cloud.google.com/cloud-build/docs/custom-workers/worker-pool-config-file). Specify a value of up to 1000. If 0 is specified, Cloud Build will use a standard disk size.
    machineType String
    Machine type of a worker, such as n1-standard-1. See (https://cloud.google.com/cloud-build/docs/custom-workers/worker-pool-config-file). If left blank, Cloud Build will use n1-standard-1.
    noExternalIp Boolean
    If true, workers are created without any public address, which prevents network egress to public IPs.

    Import

    WorkerPool can be imported using any of these accepted formats:

    • projects/{{project}}/locations/{{location}}/workerPools/{{name}}

    • {{project}}/{{location}}/{{name}}

    • {{location}}/{{name}}

    When using the pulumi import command, WorkerPool can be imported using one of the formats above. For example:

    $ pulumi import gcp:cloudbuild/workerPool:WorkerPool default projects/{{project}}/locations/{{location}}/workerPools/{{name}}
    
    $ pulumi import gcp:cloudbuild/workerPool:WorkerPool default {{project}}/{{location}}/{{name}}
    
    $ pulumi import gcp:cloudbuild/workerPool:WorkerPool default {{location}}/{{name}}
    

    Package Details

    Repository
    Google Cloud (GCP) Classic pulumi/pulumi-gcp
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the google-beta Terraform Provider.
    gcp logo
    Google Cloud Classic v7.16.0 published on Wednesday, Mar 27, 2024 by Pulumi