Class: Google::Apis::FirebaserulesV1::File

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

File containing source content.

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

Returns a new instance of File



95
96
97
# File 'generated/google/apis/firebaserules_v1/classes.rb', line 95

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

Instance Attribute Details

#contentString

Textual Content. Corresponds to the JSON property content

Returns:

  • (String)


82
83
84
# File 'generated/google/apis/firebaserules_v1/classes.rb', line 82

def content
  @content
end

#fingerprintString

Fingerprint (e.g. github sha) associated with the File. Corresponds to the JSON property fingerprint NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


88
89
90
# File 'generated/google/apis/firebaserules_v1/classes.rb', line 88

def fingerprint
  @fingerprint
end

#nameString

File name. Corresponds to the JSON property name

Returns:

  • (String)


93
94
95
# File 'generated/google/apis/firebaserules_v1/classes.rb', line 93

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



100
101
102
103
104
# File 'generated/google/apis/firebaserules_v1/classes.rb', line 100

def update!(**args)
  @content = args[:content] if args.key?(:content)
  @fingerprint = args[:fingerprint] if args.key?(:fingerprint)
  @name = args[:name] if args.key?(:name)
end