Class: Google::Apis::ServiceuserV1::BackendRule

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

Overview

A backend rule provides configuration for an individual API element.

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) ⇒ BackendRule

Returns a new instance of BackendRule



481
482
483
# File 'generated/google/apis/serviceuser_v1/classes.rb', line 481

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

Instance Attribute Details

#addressString

The address of the API backend. Corresponds to the JSON property address

Returns:

  • (String)


467
468
469
# File 'generated/google/apis/serviceuser_v1/classes.rb', line 467

def address
  @address
end

#deadlineFloat

The number of seconds to wait for a response from a request. The default depends on the deployment context. Corresponds to the JSON property deadline

Returns:

  • (Float)


479
480
481
# File 'generated/google/apis/serviceuser_v1/classes.rb', line 479

def deadline
  @deadline
end

#selectorString

Selects the methods to which this rule applies. Refer to selector for syntax details. Corresponds to the JSON property selector

Returns:

  • (String)


473
474
475
# File 'generated/google/apis/serviceuser_v1/classes.rb', line 473

def selector
  @selector
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



486
487
488
489
490
# File 'generated/google/apis/serviceuser_v1/classes.rb', line 486

def update!(**args)
  @address = args[:address] if args.key?(:address)
  @selector = args[:selector] if args.key?(:selector)
  @deadline = args[:deadline] if args.key?(:deadline)
end