Class: Google::Apis::ServicenetworkingV1::ValidateConsumerConfigRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/servicenetworking_v1/classes.rb,
generated/google/apis/servicenetworking_v1/representations.rb,
generated/google/apis/servicenetworking_v1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ValidateConsumerConfigRequest

Returns a new instance of ValidateConsumerConfigRequest.



3856
3857
3858
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 3856

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#consumer_networkString

Required. The network that the consumer is using to connect with services. Must be in the form of projects/project/global/networks/network project is a project number, as in '12345' network is network name. Corresponds to the JSON property consumerNetwork

Returns:

  • (String)


3832
3833
3834
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 3832

def consumer_network
  @consumer_network
end

#consumer_projectGoogle::Apis::ServicenetworkingV1::ConsumerProject

Represents a consumer project. Corresponds to the JSON property consumerProject



3837
3838
3839
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 3837

def consumer_project
  @consumer_project
end

#range_reservationGoogle::Apis::ServicenetworkingV1::RangeReservation

Represents a range reservation. Corresponds to the JSON property rangeReservation



3842
3843
3844
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 3842

def range_reservation
  @range_reservation
end

#validate_networkBoolean Also known as: validate_network?

The validations will be performed in the order listed in the ValidationError enum. The first failure will return. If a validation is not requested, then the next one will be performed. SERVICE_NETWORKING_NOT_ENABLED and NETWORK_NOT_PEERED checks are performed for all requests where validation is requested. NETWORK_NOT_FOUND and NETWORK_DISCONNECTED checks are done for requests that have validate_network set to true. Corresponds to the JSON property validateNetwork

Returns:

  • (Boolean)


3853
3854
3855
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 3853

def validate_network
  @validate_network
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3861
3862
3863
3864
3865
3866
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 3861

def update!(**args)
  @consumer_network = args[:consumer_network] if args.key?(:consumer_network)
  @consumer_project = args[:consumer_project] if args.key?(:consumer_project)
  @range_reservation = args[:range_reservation] if args.key?(:range_reservation)
  @validate_network = args[:validate_network] if args.key?(:validate_network)
end