You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/compute/lib/google_api/compute/v1/model/resource_status.ex
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@ defmodule GoogleApi.Compute.V1.Model.ResourceStatus do
22
22
## Attributes
23
23
24
24
* `physicalHost` (*type:* `String.t`, *default:* `nil`) - [Output Only] The precise location of your instance within the zone's data center, including the block, sub-block, and host. The field is formatted as follows: blockId/subBlockId/hostId.
25
+
* `physicalHostTopology` (*type:* `GoogleApi.Compute.V1.Model.ResourceStatusPhysicalHostTopology.t`, *default:* `nil`) - [Output Only] A series of fields containing the global name of the Compute Engine cluster, as well as the ID of the block, sub-block, and host on which the running instance is located.
Represents the physical host topology of the host on which the VM is running.
21
+
22
+
## Attributes
23
+
24
+
* `block` (*type:* `String.t`, *default:* `nil`) - [Output Only] The ID of the block in which the running instance is located. Instances within the same block experience low network latency.
25
+
* `cluster` (*type:* `String.t`, *default:* `nil`) - [Output Only] The global name of the Compute Engine cluster where the running instance is located.
26
+
* `host` (*type:* `String.t`, *default:* `nil`) - [Output Only] The ID of the host on which the running instance is located. Instances on the same host experience the lowest possible network latency.
27
+
* `subblock` (*type:* `String.t`, *default:* `nil`) - [Output Only] The ID of the sub-block in which the running instance is located. Instances in the same sub-block experience lower network latency than instances in the same block.
Copy file name to clipboardExpand all lines: clients/compute/lib/google_api/compute/v1/model/subnetwork.ex
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -30,8 +30,10 @@ defmodule GoogleApi.Compute.V1.Model.Subnetwork do
30
30
* `id` (*type:* `String.t`, *default:* `nil`) - [Output Only] The unique identifier for the resource. This identifier is defined by the server.
31
31
* `internalIpv6Prefix` (*type:* `String.t`, *default:* `nil`) - The internal IPv6 address range that is owned by this subnetwork.
32
32
* `ipCidrRange` (*type:* `String.t`, *default:* `nil`) - The range of internal addresses that are owned by this subnetwork. Provide this property when you create the subnetwork. For example, 10.0.0.0/8 or 100.64.0.0/10. Ranges must be unique and non-overlapping within a network. Only IPv4 is supported. This field is set at resource creation time. The range can be any range listed in the Valid ranges list. The range can be expanded after creation using expandIpCidrRange.
33
+
* `ipCollection` (*type:* `String.t`, *default:* `nil`) - Reference to the source of IP, like a PublicDelegatedPrefix (PDP) for BYOIP. The PDP must be a sub-PDP in EXTERNAL_IPV6_SUBNETWORK_CREATION mode. Use one of the following formats to specify a sub-PDP when creating a dual stack subnetwork with external access using BYOIP: - Full resource URL, as in https://www.googleapis.com/compute/v1/projects/projectId/regions/region /publicDelegatedPrefixes/sub-pdp-name - Partial URL, as in - projects/projectId/regions/region/publicDelegatedPrefixes/ sub-pdp-name - regions/region/publicDelegatedPrefixes/sub-pdp-name
33
34
* `ipv6AccessType` (*type:* `String.t`, *default:* `nil`) - 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.
34
35
* `ipv6CidrRange` (*type:* `String.t`, *default:* `nil`) - [Output Only] This field is for internal use.
36
+
* `ipv6GceEndpoint` (*type:* `String.t`, *default:* `nil`) - [Output Only] Possible endpoints of this subnetwork. It can be one of the following: - VM_ONLY: The subnetwork can be used for creating instances and IPv6 addresses with VM endpoint type. Such a subnetwork gets external IPv6 ranges from a public delegated prefix and cannot be used to create NetLb. - VM_AND_FR: The subnetwork can be used for creating both VM instances and Forwarding Rules. It can also be used to reserve IPv6 addresses with both VM and FR endpoint types. Such a subnetwork gets its IPv6 range from Google IP Pool directly.
35
37
* `kind` (*type:* `String.t`, *default:* `compute#subnetwork`) - [Output Only] Type of the resource. Always compute#subnetwork for Subnetwork resources.
36
38
* `logConfig` (*type:* `GoogleApi.Compute.V1.Model.SubnetworkLogConfig.t`, *default:* `nil`) - This field denotes the VPC flow logging options for this subnetwork. If logging is enabled, logs are exported to Cloud Logging.
37
39
* `name` (*type:* `String.t`, *default:* `nil`) - The name of the resource, provided by the client when initially creating the resource. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
@@ -60,8 +62,10 @@ defmodule GoogleApi.Compute.V1.Model.Subnetwork do
0 commit comments