Class: Google::Cloud::Build::V1::PrivatePoolV1Config::NetworkConfig

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/devtools/cloudbuild/v1/cloudbuild.rb

Overview

Defines the network configuration for the pool.

Defined Under Namespace

Modules: EgressOption

Instance Attribute Summary collapse

Instance Attribute Details

#egress_option::Google::Cloud::Build::V1::PrivatePoolV1Config::NetworkConfig::EgressOption

Returns Option to configure network egress for the workers.

Returns:



2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
# File 'proto_docs/google/devtools/cloudbuild/v1/cloudbuild.rb', line 2231

class NetworkConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Defines the egress option for the pool.
  module EgressOption
    # If set, defaults to PUBLIC_EGRESS.
    EGRESS_OPTION_UNSPECIFIED = 0

    # If set, workers are created without any public address, which prevents
    # network egress to public IPs unless a network proxy is configured.
    NO_PUBLIC_EGRESS = 1

    # If set, workers are created with a public address which allows for
    # public internet egress.
    PUBLIC_EGRESS = 2
  end
end

#peered_network::String

Returns Required. 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 Understanding network configuration options.

Returns:

  • (::String)

    Required. 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 Understanding network configuration options



2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
# File 'proto_docs/google/devtools/cloudbuild/v1/cloudbuild.rb', line 2231

class NetworkConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Defines the egress option for the pool.
  module EgressOption
    # If set, defaults to PUBLIC_EGRESS.
    EGRESS_OPTION_UNSPECIFIED = 0

    # If set, workers are created without any public address, which prevents
    # network egress to public IPs unless a network proxy is configured.
    NO_PUBLIC_EGRESS = 1

    # If set, workers are created with a public address which allows for
    # public internet egress.
    PUBLIC_EGRESS = 2
  end
end

#peered_network_ip_range::String

Returns 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.

Returns:

  • (::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.



2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
# File 'proto_docs/google/devtools/cloudbuild/v1/cloudbuild.rb', line 2231

class NetworkConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Defines the egress option for the pool.
  module EgressOption
    # If set, defaults to PUBLIC_EGRESS.
    EGRESS_OPTION_UNSPECIFIED = 0

    # If set, workers are created without any public address, which prevents
    # network egress to public IPs unless a network proxy is configured.
    NO_PUBLIC_EGRESS = 1

    # If set, workers are created with a public address which allows for
    # public internet egress.
    PUBLIC_EGRESS = 2
  end
end