Class: Google::Apis::ComputeV1::UsableSubnetwork
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::UsableSubnetwork
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_v1/classes.rb,
lib/google/apis/compute_v1/representations.rb,
lib/google/apis/compute_v1/representations.rb
Overview
Subnetwork which the current user has compute.subnetworks.use permission on.
Instance Attribute Summary collapse
-
#external_ipv6_prefix ⇒ String
[Output Only] The external IPv6 address range that is assigned to this subnetwork.
-
#internal_ipv6_prefix ⇒ String
[Output Only] The internal IPv6 address range that is assigned to this subnetwork.
-
#ip_cidr_range ⇒ String
The range of internal addresses that are owned by this subnetwork.
-
#ipv6_access_type ⇒ String
The access type of IPv6 address this subnet holds.
-
#network ⇒ String
Network URL.
-
#purpose ⇒ String
The purpose of the resource.
-
#role ⇒ String
The role of subnetwork.
-
#secondary_ip_ranges ⇒ Array<Google::Apis::ComputeV1::UsableSubnetworkSecondaryRange>
Secondary IP ranges.
-
#stack_type ⇒ String
The stack type for the subnet.
-
#subnetwork ⇒ String
Subnetwork URL.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UsableSubnetwork
constructor
A new instance of UsableSubnetwork.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UsableSubnetwork
Returns a new instance of UsableSubnetwork.
48424 48425 48426 |
# File 'lib/google/apis/compute_v1/classes.rb', line 48424 def initialize(**args) update!(**args) end |
Instance Attribute Details
#external_ipv6_prefix ⇒ String
[Output Only] The external IPv6 address range that is assigned to this
subnetwork.
Corresponds to the JSON property externalIpv6Prefix
48357 48358 48359 |
# File 'lib/google/apis/compute_v1/classes.rb', line 48357 def external_ipv6_prefix @external_ipv6_prefix end |
#internal_ipv6_prefix ⇒ String
[Output Only] The internal IPv6 address range that is assigned to this
subnetwork.
Corresponds to the JSON property internalIpv6Prefix
48363 48364 48365 |
# File 'lib/google/apis/compute_v1/classes.rb', line 48363 def internal_ipv6_prefix @internal_ipv6_prefix end |
#ip_cidr_range ⇒ String
The range of internal addresses that are owned by this subnetwork.
Corresponds to the JSON property ipCidrRange
48368 48369 48370 |
# File 'lib/google/apis/compute_v1/classes.rb', line 48368 def ip_cidr_range @ip_cidr_range end |
#ipv6_access_type ⇒ String
The access type of IPv6 address this subnet holds. It's immutable and can only
be specified during creation or the first time the subnet is updated into
IPV4_IPV6 dual stack.
Corresponds to the JSON property ipv6AccessType
48375 48376 48377 |
# File 'lib/google/apis/compute_v1/classes.rb', line 48375 def ipv6_access_type @ipv6_access_type end |
#network ⇒ String
Network URL.
Corresponds to the JSON property network
48380 48381 48382 |
# File 'lib/google/apis/compute_v1/classes.rb', line 48380 def network @network end |
#purpose ⇒ String
The purpose of the resource. This field can be either PRIVATE,
GLOBAL_MANAGED_PROXY, REGIONAL_MANAGED_PROXY, PRIVATE_SERVICE_CONNECT, or
PRIVATE is the default purpose for user-created subnets or subnets that are
automatically created in auto mode networks. Subnets with purpose set to
GLOBAL_MANAGED_PROXY or REGIONAL_MANAGED_PROXY are user-created subnetworks
that are reserved for Envoy-based load balancers. A subnet with purpose set to
PRIVATE_SERVICE_CONNECT is used to publish services using Private Service
Connect. If unspecified, the subnet purpose defaults to PRIVATE. The
enableFlowLogs field isn't supported if the subnet purpose field is set to
GLOBAL_MANAGED_PROXY or REGIONAL_MANAGED_PROXY.
Corresponds to the JSON property purpose
48394 48395 48396 |
# File 'lib/google/apis/compute_v1/classes.rb', line 48394 def purpose @purpose end |
#role ⇒ String
The role of subnetwork. Currently, this field is only used when purpose is set
to GLOBAL_MANAGED_PROXY or REGIONAL_MANAGED_PROXY. The value can be set to
ACTIVE or BACKUP. An ACTIVE subnetwork is one that is currently being used for
Envoy-based load balancers in a region. A BACKUP subnetwork is one that is
ready to be promoted to ACTIVE or is currently draining. This field can be
updated with a patch request.
Corresponds to the JSON property role
48404 48405 48406 |
# File 'lib/google/apis/compute_v1/classes.rb', line 48404 def role @role end |
#secondary_ip_ranges ⇒ Array<Google::Apis::ComputeV1::UsableSubnetworkSecondaryRange>
Secondary IP ranges.
Corresponds to the JSON property secondaryIpRanges
48409 48410 48411 |
# File 'lib/google/apis/compute_v1/classes.rb', line 48409 def secondary_ip_ranges @secondary_ip_ranges end |
#stack_type ⇒ String
The stack type for the subnet. If set to IPV4_ONLY, new VMs in the subnet are
assigned IPv4 addresses only. If set to IPV4_IPV6, new VMs in the subnet can
be assigned both IPv4 and IPv6 addresses. If not specified, IPV4_ONLY is used.
This field can be both set at resource creation time and updated using patch.
Corresponds to the JSON property stackType
48417 48418 48419 |
# File 'lib/google/apis/compute_v1/classes.rb', line 48417 def stack_type @stack_type end |
#subnetwork ⇒ String
Subnetwork URL.
Corresponds to the JSON property subnetwork
48422 48423 48424 |
# File 'lib/google/apis/compute_v1/classes.rb', line 48422 def subnetwork @subnetwork end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
48429 48430 48431 48432 48433 48434 48435 48436 48437 48438 48439 48440 |
# File 'lib/google/apis/compute_v1/classes.rb', line 48429 def update!(**args) @external_ipv6_prefix = args[:external_ipv6_prefix] if args.key?(:external_ipv6_prefix) @internal_ipv6_prefix = args[:internal_ipv6_prefix] if args.key?(:internal_ipv6_prefix) @ip_cidr_range = args[:ip_cidr_range] if args.key?(:ip_cidr_range) @ipv6_access_type = args[:ipv6_access_type] if args.key?(:ipv6_access_type) @network = args[:network] if args.key?(:network) @purpose = args[:purpose] if args.key?(:purpose) @role = args[:role] if args.key?(:role) @secondary_ip_ranges = args[:secondary_ip_ranges] if args.key?(:secondary_ip_ranges) @stack_type = args[:stack_type] if args.key?(:stack_type) @subnetwork = args[:subnetwork] if args.key?(:subnetwork) end |