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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/firebaserules_v1/classes.rb,
generated/google/apis/firebaserules_v1/representations.rb,
generated/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.



686
687
688
# File 'generated/google/apis/firebaserules_v1/classes.rb', line 686

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



676
677
678
# File 'generated/google/apis/firebaserules_v1/classes.rb', line 676

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



684
685
686
# File 'generated/google/apis/firebaserules_v1/classes.rb', line 684

def test_suite
  @test_suite
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



691
692
693
694
# File 'generated/google/apis/firebaserules_v1/classes.rb', line 691

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