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

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ TestRulesetRequest

Returns a new instance of TestRulesetRequest.



720
721
722
# File 'generated/google/apis/firebaserules_v1/classes.rb', line 720

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



710
711
712
# File 'generated/google/apis/firebaserules_v1/classes.rb', line 710

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



718
719
720
# File 'generated/google/apis/firebaserules_v1/classes.rb', line 718

def test_suite
  @test_suite
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



725
726
727
728
# File 'generated/google/apis/firebaserules_v1/classes.rb', line 725

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