Class: Google::Apis::ComputeV1::NodeGroupsPerformMaintenanceRequest
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::NodeGroupsPerformMaintenanceRequest
- 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
Instance Attribute Summary collapse
-
#nodes ⇒ Array<String>
[Required] List of nodes affected by the call.
-
#start_time ⇒ String
The start time of the schedule.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NodeGroupsPerformMaintenanceRequest
constructor
A new instance of NodeGroupsPerformMaintenanceRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ NodeGroupsPerformMaintenanceRequest
Returns a new instance of NodeGroupsPerformMaintenanceRequest.
27198 27199 27200 |
# File 'lib/google/apis/compute_v1/classes.rb', line 27198 def initialize(**args) update!(**args) end |
Instance Attribute Details
#nodes ⇒ Array<String>
[Required] List of nodes affected by the call.
Corresponds to the JSON property nodes
27191 27192 27193 |
# File 'lib/google/apis/compute_v1/classes.rb', line 27191 def nodes @nodes end |
#start_time ⇒ String
The start time of the schedule. The timestamp is an RFC3339 string.
Corresponds to the JSON property startTime
27196 27197 27198 |
# File 'lib/google/apis/compute_v1/classes.rb', line 27196 def start_time @start_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
27203 27204 27205 27206 |
# File 'lib/google/apis/compute_v1/classes.rb', line 27203 def update!(**args) @nodes = args[:nodes] if args.key?(:nodes) @start_time = args[:start_time] if args.key?(:start_time) end |