class Google::Apis::ComputeBeta::InstanceGroupManagersDeleteInstancesRequest
Attributes
The URLs of one or more instances to delete. This can be a full URL or a partial URL, such as zones//instances/. Corresponds to the JSON property `instances` @return [Array<String>]
Specifies whether the request should proceed despite the inclusion of instances that are not members of the group or that are already in the process of being deleted or abandoned. If this field is set to `false` and such an instance is specified in the request, the operation fails. The operation always fails if the request contains a malformed instance URL or a reference to an instance that exists in a zone or region other than the group's zone or region. Corresponds to the JSON property `skipInstancesOnValidationError` @return [Boolean]
Specifies whether the request should proceed despite the inclusion of instances that are not members of the group or that are already in the process of being deleted or abandoned. If this field is set to `false` and such an instance is specified in the request, the operation fails. The operation always fails if the request contains a malformed instance URL or a reference to an instance that exists in a zone or region other than the group's zone or region. Corresponds to the JSON property `skipInstancesOnValidationError` @return [Boolean]
Public Class Methods
# File lib/google/apis/compute_beta/classes.rb, line 14121 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/compute_beta/classes.rb, line 14126 def update!(**args) @instances = args[:instances] if args.key?(:instances) @skip_instances_on_validation_error = args[:skip_instances_on_validation_error] if args.key?(:skip_instances_on_validation_error) end