View Source GoogleApi.Compute.V1.Model.InstanceGroup (google_api_compute v0.55.0)

Represents an Instance Group resource. Instance Groups can be used to configure a target for load balancing. Instance groups can either be managed or unmanaged. To create managed instance groups, use the instanceGroupManager or regionInstanceGroupManager resource instead. Use zonal unmanaged instance groups if you need to apply load balancing to groups of heterogeneous instances or if you need to manage the instances yourself. You cannot create regional unmanaged instance groups. For more information, read Instance groups.

Attributes

  • creationTimestamp (type: String.t, default: nil) - [Output Only] The creation timestamp for this instance group in RFC3339 text format.
  • description (type: String.t, default: nil) - An optional description of this resource. Provide this property when you create the resource.
  • fingerprint (type: String.t, default: nil) - [Output Only] The fingerprint of the named ports. The system uses this fingerprint to detect conflicts when multiple users change the named ports concurrently.
  • id (type: String.t, default: nil) - [Output Only] A unique identifier for this instance group, generated by the server.
  • kind (type: String.t, default: compute#instanceGroup) - [Output Only] The resource type, which is always compute#instanceGroup for instance groups.
  • name (type: String.t, default: nil) - The name of the instance group. The name must be 1-63 characters long, and comply with RFC1035.
  • namedPorts (type: list(GoogleApi.Compute.V1.Model.NamedPort.t), default: nil) - Assigns a name to a port number. For example: {name: "http", port: 80} This allows the system to reference ports by the assigned name instead of a port number. Named ports can also contain multiple ports. For example: [{name: "app1", port: 8080}, {name: "app1", port: 8081}, {name: "app2", port: 8082}] Named ports apply to all instances in this instance group.
  • network (type: String.t, default: nil) - [Output Only] The URL of the network to which all instances in the instance group belong. If your instance has multiple network interfaces, then the network and subnetwork fields only refer to the network and subnet used by your primary interface (nic0).
  • region (type: String.t, default: nil) - [Output Only] The URL of the region where the instance group is located (for regional resources).
  • selfLink (type: String.t, default: nil) - [Output Only] The URL for this instance group. The server generates this URL.
  • size (type: integer(), default: nil) - [Output Only] The total number of instances in the instance group.
  • subnetwork (type: String.t, default: nil) - [Output Only] The URL of the subnetwork to which all instances in the instance group belong. If your instance has multiple network interfaces, then the network and subnetwork fields only refer to the network and subnet used by your primary interface (nic0).
  • zone (type: String.t, default: nil) - [Output Only] The URL of the zone where the instance group is located (for zonal resources).

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

@type t() :: %GoogleApi.Compute.V1.Model.InstanceGroup{
  creationTimestamp: String.t() | nil,
  description: String.t() | nil,
  fingerprint: String.t() | nil,
  id: String.t() | nil,
  kind: String.t() | nil,
  name: String.t() | nil,
  namedPorts: [GoogleApi.Compute.V1.Model.NamedPort.t()] | nil,
  network: String.t() | nil,
  region: String.t() | nil,
  selfLink: String.t() | nil,
  size: integer() | nil,
  subnetwork: String.t() | nil,
  zone: String.t() | nil
}

Functions

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.