class Google::Apis::ServicenetworkingV1::ValidateConsumerConfigResponse
Attributes
existing_subnetwork_candidates[RW]
List of subnetwork candidates from the request which exist with the ` ip_cidr_range`, `secondary_ip_cider_ranges`, and `outside_allocation` fields set. Corresponds to the JSON property `existingSubnetworkCandidates` @return [Array<Google::Apis::ServicenetworkingV1::Subnetwork>]
is_valid[RW]
Indicates whether all the requested validations passed. Corresponds to the JSON property `isValid` @return [Boolean]
is_valid?[RW]
Indicates whether all the requested validations passed. Corresponds to the JSON property `isValid` @return [Boolean]
validation_error[RW]
The first validation which failed. Corresponds to the JSON property `validationError` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/servicenetworking_v1/classes.rb, line 4297 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/servicenetworking_v1/classes.rb, line 4302 def update!(**args) @existing_subnetwork_candidates = args[:existing_subnetwork_candidates] if args.key?(:existing_subnetwork_candidates) @is_valid = args[:is_valid] if args.key?(:is_valid) @validation_error = args[:validation_error] if args.key?(:validation_error) end