Class: Google::Apis::FirebaserulesV1::TestRulesetRequest

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

The request for FirebaseRulesService.TestRuleset.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TestRulesetRequest

Returns a new instance of TestRulesetRequest.



677
678
679
# File 'lib/google/apis/firebaserules_v1/classes.rb', line 677

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

Instance Attribute Details

#sourceGoogle::Apis::FirebaserulesV1::Source

Source is one or more File messages comprising a logical set of rules. Corresponds to the JSON property source



667
668
669
# File 'lib/google/apis/firebaserules_v1/classes.rb', line 667

def source
  @source
end

#test_suiteGoogle::Apis::FirebaserulesV1::TestSuite

TestSuite is a collection of TestCase instances that validate the logical correctness of a Ruleset. The TestSuite may be referenced in-line within a TestRuleset invocation or as part of a Release object as a pre-release check. Corresponds to the JSON property testSuite



675
676
677
# File 'lib/google/apis/firebaserules_v1/classes.rb', line 675

def test_suite
  @test_suite
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



682
683
684
685
# File 'lib/google/apis/firebaserules_v1/classes.rb', line 682

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