Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.cloudbuild/v1.WorkerPool
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Creates a WorkerPool
.
Auto-naming is currently not supported for this resource.
Create WorkerPool Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WorkerPool(name: string, args: WorkerPoolArgs, opts?: CustomResourceOptions);
@overload
def WorkerPool(resource_name: str,
args: WorkerPoolArgs,
opts: Optional[ResourceOptions] = None)
@overload
def WorkerPool(resource_name: str,
opts: Optional[ResourceOptions] = None,
worker_pool_id: Optional[str] = None,
annotations: Optional[Mapping[str, str]] = None,
display_name: Optional[str] = None,
location: Optional[str] = None,
private_pool_v1_config: Optional[PrivatePoolV1ConfigArgs] = None,
project: Optional[str] = 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: google-native:cloudbuild/v1:WorkerPool
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var workerPoolResource = new GoogleNative.CloudBuild.V1.WorkerPool("workerPoolResource", new()
{
WorkerPoolId = "string",
Annotations =
{
{ "string", "string" },
},
DisplayName = "string",
Location = "string",
PrivatePoolV1Config = new GoogleNative.CloudBuild.V1.Inputs.PrivatePoolV1ConfigArgs
{
NetworkConfig = new GoogleNative.CloudBuild.V1.Inputs.NetworkConfigArgs
{
PeeredNetwork = "string",
EgressOption = GoogleNative.CloudBuild.V1.NetworkConfigEgressOption.EgressOptionUnspecified,
PeeredNetworkIpRange = "string",
},
WorkerConfig = new GoogleNative.CloudBuild.V1.Inputs.WorkerConfigArgs
{
DiskSizeGb = "string",
MachineType = "string",
},
},
Project = "string",
});
example, err := cloudbuild.NewWorkerPool(ctx, "workerPoolResource", &cloudbuild.WorkerPoolArgs{
WorkerPoolId: pulumi.String("string"),
Annotations: pulumi.StringMap{
"string": pulumi.String("string"),
},
DisplayName: pulumi.String("string"),
Location: pulumi.String("string"),
PrivatePoolV1Config: &cloudbuild.PrivatePoolV1ConfigArgs{
NetworkConfig: &cloudbuild.NetworkConfigArgs{
PeeredNetwork: pulumi.String("string"),
EgressOption: cloudbuild.NetworkConfigEgressOptionEgressOptionUnspecified,
PeeredNetworkIpRange: pulumi.String("string"),
},
WorkerConfig: &cloudbuild.WorkerConfigArgs{
DiskSizeGb: pulumi.String("string"),
MachineType: pulumi.String("string"),
},
},
Project: pulumi.String("string"),
})
var workerPoolResource = new WorkerPool("workerPoolResource", WorkerPoolArgs.builder()
.workerPoolId("string")
.annotations(Map.of("string", "string"))
.displayName("string")
.location("string")
.privatePoolV1Config(PrivatePoolV1ConfigArgs.builder()
.networkConfig(NetworkConfigArgs.builder()
.peeredNetwork("string")
.egressOption("EGRESS_OPTION_UNSPECIFIED")
.peeredNetworkIpRange("string")
.build())
.workerConfig(WorkerConfigArgs.builder()
.diskSizeGb("string")
.machineType("string")
.build())
.build())
.project("string")
.build());
worker_pool_resource = google_native.cloudbuild.v1.WorkerPool("workerPoolResource",
worker_pool_id="string",
annotations={
"string": "string",
},
display_name="string",
location="string",
private_pool_v1_config=google_native.cloudbuild.v1.PrivatePoolV1ConfigArgs(
network_config=google_native.cloudbuild.v1.NetworkConfigArgs(
peered_network="string",
egress_option=google_native.cloudbuild.v1.NetworkConfigEgressOption.EGRESS_OPTION_UNSPECIFIED,
peered_network_ip_range="string",
),
worker_config=google_native.cloudbuild.v1.WorkerConfigArgs(
disk_size_gb="string",
machine_type="string",
),
),
project="string")
const workerPoolResource = new google_native.cloudbuild.v1.WorkerPool("workerPoolResource", {
workerPoolId: "string",
annotations: {
string: "string",
},
displayName: "string",
location: "string",
privatePoolV1Config: {
networkConfig: {
peeredNetwork: "string",
egressOption: google_native.cloudbuild.v1.NetworkConfigEgressOption.EgressOptionUnspecified,
peeredNetworkIpRange: "string",
},
workerConfig: {
diskSizeGb: "string",
machineType: "string",
},
},
project: "string",
});
type: google-native:cloudbuild/v1:WorkerPool
properties:
annotations:
string: string
displayName: string
location: string
privatePoolV1Config:
networkConfig:
egressOption: EGRESS_OPTION_UNSPECIFIED
peeredNetwork: string
peeredNetworkIpRange: string
workerConfig:
diskSizeGb: string
machineType: string
project: string
workerPoolId: string
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:
- Worker
Pool stringId - Required. Immutable. The ID to use for the
WorkerPool
, which will become the final component of the resource name. This value should be 1-63 characters, and valid characters are /a-z-/. - Annotations Dictionary<string, string>
- User specified annotations. See https://google.aip.dev/128#annotations for more details such as format and size limitations.
- Display
Name string - A user-specified, human-readable name for the
WorkerPool
. If provided, this value must be 1-63 characters. - Location string
- Private
Pool Pulumi.V1Config Google Native. Cloud Build. V1. Inputs. Private Pool V1Config - Legacy Private Pool configuration.
- Project string
- Worker
Pool stringId - Required. Immutable. The ID to use for the
WorkerPool
, which will become the final component of the resource name. This value should be 1-63 characters, and valid characters are /a-z-/. - Annotations map[string]string
- User specified annotations. See https://google.aip.dev/128#annotations for more details such as format and size limitations.
- Display
Name string - A user-specified, human-readable name for the
WorkerPool
. If provided, this value must be 1-63 characters. - Location string
- Private
Pool PrivateV1Config Pool V1Config Args - Legacy Private Pool configuration.
- Project string
- worker
Pool StringId - Required. Immutable. The ID to use for the
WorkerPool
, which will become the final component of the resource name. This value should be 1-63 characters, and valid characters are /a-z-/. - annotations Map<String,String>
- User specified annotations. See https://google.aip.dev/128#annotations for more details such as format and size limitations.
- display
Name String - A user-specified, human-readable name for the
WorkerPool
. If provided, this value must be 1-63 characters. - location String
- private
Pool PrivateV1Config Pool V1Config - Legacy Private Pool configuration.
- project String
- worker
Pool stringId - Required. Immutable. The ID to use for the
WorkerPool
, which will become the final component of the resource name. This value should be 1-63 characters, and valid characters are /a-z-/. - annotations {[key: string]: string}
- User specified annotations. See https://google.aip.dev/128#annotations for more details such as format and size limitations.
- display
Name string - A user-specified, human-readable name for the
WorkerPool
. If provided, this value must be 1-63 characters. - location string
- private
Pool PrivateV1Config Pool V1Config - Legacy Private Pool configuration.
- project string
- worker_
pool_ strid - Required. Immutable. The ID to use for the
WorkerPool
, which will become the final component of the resource name. This value should be 1-63 characters, and valid characters are /a-z-/. - annotations Mapping[str, str]
- User specified annotations. See https://google.aip.dev/128#annotations for more details such as format and size limitations.
- display_
name str - A user-specified, human-readable name for the
WorkerPool
. If provided, this value must be 1-63 characters. - location str
- private_
pool_ Privatev1_ config Pool V1Config Args - Legacy Private Pool configuration.
- project str
- worker
Pool StringId - Required. Immutable. The ID to use for the
WorkerPool
, which will become the final component of the resource name. This value should be 1-63 characters, and valid characters are /a-z-/. - annotations Map<String>
- User specified annotations. See https://google.aip.dev/128#annotations for more details such as format and size limitations.
- display
Name String - A user-specified, human-readable name for the
WorkerPool
. If provided, this value must be 1-63 characters. - location String
- private
Pool Property MapV1Config - Legacy Private Pool configuration.
- project String
Outputs
All input properties are implicitly available as output properties. Additionally, the WorkerPool resource produces the following output properties:
- Create
Time string - Time at which the request to create the
WorkerPool
was received. - Delete
Time string - Time at which the request to delete the
WorkerPool
was received. - Etag string
- Checksum computed by the server. May be sent on update and delete requests to ensure that the client has an up-to-date value before proceeding.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The resource name of the
WorkerPool
, with formatprojects/{project}/locations/{location}/workerPools/{worker_pool}
. The value of{worker_pool}
is provided byworker_pool_id
inCreateWorkerPool
request and the value of{location}
is determined by the endpoint accessed. - State string
WorkerPool
state.- Uid string
- A unique identifier for the
WorkerPool
. - Update
Time string - Time at which the request to update the
WorkerPool
was received.
- Create
Time string - Time at which the request to create the
WorkerPool
was received. - Delete
Time string - Time at which the request to delete the
WorkerPool
was received. - Etag string
- Checksum computed by the server. May be sent on update and delete requests to ensure that the client has an up-to-date value before proceeding.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The resource name of the
WorkerPool
, with formatprojects/{project}/locations/{location}/workerPools/{worker_pool}
. The value of{worker_pool}
is provided byworker_pool_id
inCreateWorkerPool
request and the value of{location}
is determined by the endpoint accessed. - State string
WorkerPool
state.- Uid string
- A unique identifier for the
WorkerPool
. - Update
Time string - Time at which the request to update the
WorkerPool
was received.
- create
Time String - Time at which the request to create the
WorkerPool
was received. - delete
Time String - Time at which the request to delete the
WorkerPool
was received. - etag String
- Checksum computed by the server. May be sent on update and delete requests to ensure that the client has an up-to-date value before proceeding.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The resource name of the
WorkerPool
, with formatprojects/{project}/locations/{location}/workerPools/{worker_pool}
. The value of{worker_pool}
is provided byworker_pool_id
inCreateWorkerPool
request and the value of{location}
is determined by the endpoint accessed. - state String
WorkerPool
state.- uid String
- A unique identifier for the
WorkerPool
. - update
Time String - Time at which the request to update the
WorkerPool
was received.
- create
Time string - Time at which the request to create the
WorkerPool
was received. - delete
Time string - Time at which the request to delete the
WorkerPool
was received. - etag string
- Checksum computed by the server. May be sent on update and delete requests to ensure that the client has an up-to-date value before proceeding.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The resource name of the
WorkerPool
, with formatprojects/{project}/locations/{location}/workerPools/{worker_pool}
. The value of{worker_pool}
is provided byworker_pool_id
inCreateWorkerPool
request and the value of{location}
is determined by the endpoint accessed. - state string
WorkerPool
state.- uid string
- A unique identifier for the
WorkerPool
. - update
Time string - Time at which the request to update the
WorkerPool
was received.
- create_
time str - Time at which the request to create the
WorkerPool
was received. - delete_
time str - Time at which the request to delete the
WorkerPool
was received. - etag str
- Checksum computed by the server. May be sent on update and delete requests to ensure that the client has an up-to-date value before proceeding.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The resource name of the
WorkerPool
, with formatprojects/{project}/locations/{location}/workerPools/{worker_pool}
. The value of{worker_pool}
is provided byworker_pool_id
inCreateWorkerPool
request and the value of{location}
is determined by the endpoint accessed. - state str
WorkerPool
state.- uid str
- A unique identifier for the
WorkerPool
. - update_
time str - Time at which the request to update the
WorkerPool
was received.
- create
Time String - Time at which the request to create the
WorkerPool
was received. - delete
Time String - Time at which the request to delete the
WorkerPool
was received. - etag String
- Checksum computed by the server. May be sent on update and delete requests to ensure that the client has an up-to-date value before proceeding.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The resource name of the
WorkerPool
, with formatprojects/{project}/locations/{location}/workerPools/{worker_pool}
. The value of{worker_pool}
is provided byworker_pool_id
inCreateWorkerPool
request and the value of{location}
is determined by the endpoint accessed. - state String
WorkerPool
state.- uid String
- A unique identifier for the
WorkerPool
. - update
Time String - Time at which the request to update the
WorkerPool
was received.
Supporting Types
NetworkConfig, NetworkConfigArgs
- Peered
Network 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 formatprojects/{project}/global/networks/{network}
, where{project}
is a project number, such as12345
, and{network}
is the name of a VPC network in the project. See Understanding network configuration options - Egress
Option Pulumi.Google Native. Cloud Build. V1. Network Config Egress Option - Option to configure network egress for the workers.
- Peered
Network stringIp Range - 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 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 formatprojects/{project}/global/networks/{network}
, where{project}
is a project number, such as12345
, and{network}
is the name of a VPC network in the project. See Understanding network configuration options - Egress
Option NetworkConfig Egress Option - Option to configure network egress for the workers.
- Peered
Network stringIp Range - 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 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 formatprojects/{project}/global/networks/{network}
, where{project}
is a project number, such as12345
, and{network}
is the name of a VPC network in the project. See Understanding network configuration options - egress
Option NetworkConfig Egress Option - Option to configure network egress for the workers.
- peered
Network StringIp Range - 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 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 formatprojects/{project}/global/networks/{network}
, where{project}
is a project number, such as12345
, and{network}
is the name of a VPC network in the project. See Understanding network configuration options - egress
Option NetworkConfig Egress Option - Option to configure network egress for the workers.
- peered
Network stringIp Range - 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 formatprojects/{project}/global/networks/{network}
, where{project}
is a project number, such as12345
, and{network}
is the name of a VPC network in the project. See Understanding network configuration options - egress_
option NetworkConfig Egress Option - Option to configure network egress for the workers.
- peered_
network_ strip_ range - 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 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 formatprojects/{project}/global/networks/{network}
, where{project}
is a project number, such as12345
, and{network}
is the name of a VPC network in the project. See Understanding network configuration options - egress
Option "EGRESS_OPTION_UNSPECIFIED" | "NO_PUBLIC_EGRESS" | "PUBLIC_EGRESS" - Option to configure network egress for the workers.
- peered
Network StringIp Range - 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.
NetworkConfigEgressOption, NetworkConfigEgressOptionArgs
- Egress
Option Unspecified - EGRESS_OPTION_UNSPECIFIEDIf set, defaults to PUBLIC_EGRESS.
- No
Public Egress - NO_PUBLIC_EGRESSIf set, workers are created without any public address, which prevents network egress to public IPs unless a network proxy is configured.
- Public
Egress - PUBLIC_EGRESSIf set, workers are created with a public address which allows for public internet egress.
- Network
Config Egress Option Egress Option Unspecified - EGRESS_OPTION_UNSPECIFIEDIf set, defaults to PUBLIC_EGRESS.
- Network
Config Egress Option No Public Egress - NO_PUBLIC_EGRESSIf set, workers are created without any public address, which prevents network egress to public IPs unless a network proxy is configured.
- Network
Config Egress Option Public Egress - PUBLIC_EGRESSIf set, workers are created with a public address which allows for public internet egress.
- Egress
Option Unspecified - EGRESS_OPTION_UNSPECIFIEDIf set, defaults to PUBLIC_EGRESS.
- No
Public Egress - NO_PUBLIC_EGRESSIf set, workers are created without any public address, which prevents network egress to public IPs unless a network proxy is configured.
- Public
Egress - PUBLIC_EGRESSIf set, workers are created with a public address which allows for public internet egress.
- Egress
Option Unspecified - EGRESS_OPTION_UNSPECIFIEDIf set, defaults to PUBLIC_EGRESS.
- No
Public Egress - NO_PUBLIC_EGRESSIf set, workers are created without any public address, which prevents network egress to public IPs unless a network proxy is configured.
- Public
Egress - PUBLIC_EGRESSIf set, workers are created with a public address which allows for public internet egress.
- EGRESS_OPTION_UNSPECIFIED
- EGRESS_OPTION_UNSPECIFIEDIf set, defaults to PUBLIC_EGRESS.
- NO_PUBLIC_EGRESS
- NO_PUBLIC_EGRESSIf set, workers are created without any public address, which prevents network egress to public IPs unless a network proxy is configured.
- PUBLIC_EGRESS
- PUBLIC_EGRESSIf set, workers are created with a public address which allows for public internet egress.
- "EGRESS_OPTION_UNSPECIFIED"
- EGRESS_OPTION_UNSPECIFIEDIf set, defaults to PUBLIC_EGRESS.
- "NO_PUBLIC_EGRESS"
- NO_PUBLIC_EGRESSIf set, workers are created without any public address, which prevents network egress to public IPs unless a network proxy is configured.
- "PUBLIC_EGRESS"
- PUBLIC_EGRESSIf set, workers are created with a public address which allows for public internet egress.
NetworkConfigResponse, NetworkConfigResponseArgs
- Egress
Option string - Option to configure network egress for the workers.
- Peered
Network 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 formatprojects/{project}/global/networks/{network}
, where{project}
is a project number, such as12345
, and{network}
is the name of a VPC network in the project. See Understanding network configuration options - Peered
Network stringIp Range - 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.
- Egress
Option string - Option to configure network egress for the workers.
- Peered
Network 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 formatprojects/{project}/global/networks/{network}
, where{project}
is a project number, such as12345
, and{network}
is the name of a VPC network in the project. See Understanding network configuration options - Peered
Network stringIp Range - 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.
- egress
Option String - Option to configure network egress for the workers.
- peered
Network 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 formatprojects/{project}/global/networks/{network}
, where{project}
is a project number, such as12345
, and{network}
is the name of a VPC network in the project. See Understanding network configuration options - peered
Network StringIp Range - 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.
- egress
Option string - Option to configure network egress for the workers.
- peered
Network 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 formatprojects/{project}/global/networks/{network}
, where{project}
is a project number, such as12345
, and{network}
is the name of a VPC network in the project. See Understanding network configuration options - peered
Network stringIp Range - 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.
- egress_
option str - Option to configure network egress for the workers.
- 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 formatprojects/{project}/global/networks/{network}
, where{project}
is a project number, such as12345
, and{network}
is the name of a VPC network in the project. See Understanding network configuration options - peered_
network_ strip_ range - 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.
- egress
Option String - Option to configure network egress for the workers.
- peered
Network 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 formatprojects/{project}/global/networks/{network}
, where{project}
is a project number, such as12345
, and{network}
is the name of a VPC network in the project. See Understanding network configuration options - peered
Network StringIp Range - 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.
PrivatePoolV1Config, PrivatePoolV1ConfigArgs
- Network
Config Pulumi.Google Native. Cloud Build. V1. Inputs. Network Config - Network configuration for the pool.
- Worker
Config Pulumi.Google Native. Cloud Build. V1. Inputs. Worker Config - Machine configuration for the workers in the pool.
- Network
Config NetworkConfig - Network configuration for the pool.
- Worker
Config WorkerConfig - Machine configuration for the workers in the pool.
- network
Config NetworkConfig - Network configuration for the pool.
- worker
Config WorkerConfig - Machine configuration for the workers in the pool.
- network
Config NetworkConfig - Network configuration for the pool.
- worker
Config WorkerConfig - Machine configuration for the workers in the pool.
- network_
config NetworkConfig - Network configuration for the pool.
- worker_
config WorkerConfig - Machine configuration for the workers in the pool.
- network
Config Property Map - Network configuration for the pool.
- worker
Config Property Map - Machine configuration for the workers in the pool.
PrivatePoolV1ConfigResponse, PrivatePoolV1ConfigResponseArgs
- Network
Config Pulumi.Google Native. Cloud Build. V1. Inputs. Network Config Response - Network configuration for the pool.
- Worker
Config Pulumi.Google Native. Cloud Build. V1. Inputs. Worker Config Response - Machine configuration for the workers in the pool.
- Network
Config NetworkConfig Response - Network configuration for the pool.
- Worker
Config WorkerConfig Response - Machine configuration for the workers in the pool.
- network
Config NetworkConfig Response - Network configuration for the pool.
- worker
Config WorkerConfig Response - Machine configuration for the workers in the pool.
- network
Config NetworkConfig Response - Network configuration for the pool.
- worker
Config WorkerConfig Response - Machine configuration for the workers in the pool.
- network_
config NetworkConfig Response - Network configuration for the pool.
- worker_
config WorkerConfig Response - Machine configuration for the workers in the pool.
- network
Config Property Map - Network configuration for the pool.
- worker
Config Property Map - Machine configuration for the workers in the pool.
WorkerConfig, WorkerConfigArgs
- Disk
Size stringGb - Size of the disk attached to the worker, in GB. See Worker pool config file. Specify a value of up to 2000. If
0
is specified, Cloud Build will use a standard disk size. - Machine
Type string - Machine type of a worker, such as
e2-medium
. See Worker pool config file. If left blank, Cloud Build will use a sensible default.
- Disk
Size stringGb - Size of the disk attached to the worker, in GB. See Worker pool config file. Specify a value of up to 2000. If
0
is specified, Cloud Build will use a standard disk size. - Machine
Type string - Machine type of a worker, such as
e2-medium
. See Worker pool config file. If left blank, Cloud Build will use a sensible default.
- disk
Size StringGb - Size of the disk attached to the worker, in GB. See Worker pool config file. Specify a value of up to 2000. If
0
is specified, Cloud Build will use a standard disk size. - machine
Type String - Machine type of a worker, such as
e2-medium
. See Worker pool config file. If left blank, Cloud Build will use a sensible default.
- disk
Size stringGb - Size of the disk attached to the worker, in GB. See Worker pool config file. Specify a value of up to 2000. If
0
is specified, Cloud Build will use a standard disk size. - machine
Type string - Machine type of a worker, such as
e2-medium
. See Worker pool config file. If left blank, Cloud Build will use a sensible default.
- disk_
size_ strgb - Size of the disk attached to the worker, in GB. See Worker pool config file. Specify a value of up to 2000. If
0
is specified, Cloud Build will use a standard disk size. - machine_
type str - Machine type of a worker, such as
e2-medium
. See Worker pool config file. If left blank, Cloud Build will use a sensible default.
- disk
Size StringGb - Size of the disk attached to the worker, in GB. See Worker pool config file. Specify a value of up to 2000. If
0
is specified, Cloud Build will use a standard disk size. - machine
Type String - Machine type of a worker, such as
e2-medium
. See Worker pool config file. If left blank, Cloud Build will use a sensible default.
WorkerConfigResponse, WorkerConfigResponseArgs
- Disk
Size stringGb - Size of the disk attached to the worker, in GB. See Worker pool config file. Specify a value of up to 2000. If
0
is specified, Cloud Build will use a standard disk size. - Machine
Type string - Machine type of a worker, such as
e2-medium
. See Worker pool config file. If left blank, Cloud Build will use a sensible default.
- Disk
Size stringGb - Size of the disk attached to the worker, in GB. See Worker pool config file. Specify a value of up to 2000. If
0
is specified, Cloud Build will use a standard disk size. - Machine
Type string - Machine type of a worker, such as
e2-medium
. See Worker pool config file. If left blank, Cloud Build will use a sensible default.
- disk
Size StringGb - Size of the disk attached to the worker, in GB. See Worker pool config file. Specify a value of up to 2000. If
0
is specified, Cloud Build will use a standard disk size. - machine
Type String - Machine type of a worker, such as
e2-medium
. See Worker pool config file. If left blank, Cloud Build will use a sensible default.
- disk
Size stringGb - Size of the disk attached to the worker, in GB. See Worker pool config file. Specify a value of up to 2000. If
0
is specified, Cloud Build will use a standard disk size. - machine
Type string - Machine type of a worker, such as
e2-medium
. See Worker pool config file. If left blank, Cloud Build will use a sensible default.
- disk_
size_ strgb - Size of the disk attached to the worker, in GB. See Worker pool config file. Specify a value of up to 2000. If
0
is specified, Cloud Build will use a standard disk size. - machine_
type str - Machine type of a worker, such as
e2-medium
. See Worker pool config file. If left blank, Cloud Build will use a sensible default.
- disk
Size StringGb - Size of the disk attached to the worker, in GB. See Worker pool config file. Specify a value of up to 2000. If
0
is specified, Cloud Build will use a standard disk size. - machine
Type String - Machine type of a worker, such as
e2-medium
. See Worker pool config file. If left blank, Cloud Build will use a sensible default.
Package Details
- Repository
- Google Cloud Native pulumi/pulumi-google-native
- License
- Apache-2.0
Google Cloud Native is in preview. Google Cloud Classic is fully supported.