Class: Google::Apis::FirebaserulesV1::Arg

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

Overview

Arg matchers for the mock function.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Arg

Returns a new instance of Arg.



42
43
44
# File 'lib/google/apis/firebaserules_v1/classes.rb', line 42

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

Instance Attribute Details

#any_valueGoogle::Apis::FirebaserulesV1::Empty

A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo rpc Bar(google. protobuf.Empty) returns (google.protobuf.Empty); Corresponds to the JSON property anyValue



35
36
37
# File 'lib/google/apis/firebaserules_v1/classes.rb', line 35

def any_value
  @any_value
end

#exact_valueObject

Argument exactly matches value provided. Corresponds to the JSON property exactValue

Returns:

  • (Object)


40
41
42
# File 'lib/google/apis/firebaserules_v1/classes.rb', line 40

def exact_value
  @exact_value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



47
48
49
50
# File 'lib/google/apis/firebaserules_v1/classes.rb', line 47

def update!(**args)
  @any_value = args[:any_value] if args.key?(:any_value)
  @exact_value = args[:exact_value] if args.key?(:exact_value)
end