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

Constructor Details

#initialize(**args) ⇒ File

Returns a new instance of File.



124
125
126
# File 'generated/google/apis/firebaserules_v1/classes.rb', line 124

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

Instance Attribute Details

#contentString

Textual Content. Corresponds to the JSON property content

Returns:

  • (String)


111
112
113
# File 'generated/google/apis/firebaserules_v1/classes.rb', line 111

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)


117
118
119
# File 'generated/google/apis/firebaserules_v1/classes.rb', line 117

def fingerprint
  @fingerprint
end

#nameString

File name. Corresponds to the JSON property name

Returns:

  • (String)


122
123
124
# File 'generated/google/apis/firebaserules_v1/classes.rb', line 122

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



129
130
131
132
133
# File 'generated/google/apis/firebaserules_v1/classes.rb', line 129

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