Class: Google::Apis::AlloydbV1beta::Node
- Inherits:
-
Object
- Object
- Google::Apis::AlloydbV1beta::Node
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/alloydb_v1beta/classes.rb,
lib/google/apis/alloydb_v1beta/representations.rb,
lib/google/apis/alloydb_v1beta/representations.rb
Overview
Details of a single node in the instance. Nodes in an AlloyDB instance are ephemereal, they can change during update, failover, autohealing and resize operations.
Instance Attribute Summary collapse
-
#id ⇒ String
The identifier of the VM e.g.
-
#ip ⇒ String
The private IP address of the VM e.g.
-
#state ⇒ String
Determined by state of the compute VM and postgres-service health.
-
#zone_id ⇒ String
The Compute Engine zone of the VM e.g.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Node
constructor
A new instance of Node.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Node
Returns a new instance of Node.
1978 1979 1980 |
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 1978 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
The identifier of the VM e.g. "test-read-0601-407e52be-ms3l".
Corresponds to the JSON property id
1958 1959 1960 |
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 1958 def id @id end |
#ip ⇒ String
The private IP address of the VM e.g. "10.57.0.34".
Corresponds to the JSON property ip
1963 1964 1965 |
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 1963 def ip @ip end |
#state ⇒ String
Determined by state of the compute VM and postgres-service health. Compute VM
state can have values listed in https://cloud.google.com/compute/docs/
instances/instance-life-cycle and postgres-service health can have values:
HEALTHY and UNHEALTHY.
Corresponds to the JSON property state
1971 1972 1973 |
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 1971 def state @state end |
#zone_id ⇒ String
The Compute Engine zone of the VM e.g. "us-central1-b".
Corresponds to the JSON property zoneId
1976 1977 1978 |
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 1976 def zone_id @zone_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1983 1984 1985 1986 1987 1988 |
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 1983 def update!(**args) @id = args[:id] if args.key?(:id) @ip = args[:ip] if args.key?(:ip) @state = args[:state] if args.key?(:state) @zone_id = args[:zone_id] if args.key?(:zone_id) end |