Class: Google::Apis::FirebaseV1beta1::IosAppConfig
- Inherits:
-
Object
- Object
- Google::Apis::FirebaseV1beta1::IosAppConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/firebase_v1beta1/classes.rb,
generated/google/apis/firebase_v1beta1/representations.rb,
generated/google/apis/firebase_v1beta1/representations.rb
Overview
Configuration metadata of a single Firebase App for iOS.
Instance Attribute Summary collapse
-
#config_file_contents ⇒ String
The content of the XML configuration file.
-
#config_filename ⇒ String
The filename that the configuration artifact for the
IosApp
is typically saved as.
Instance Method Summary collapse
-
#initialize(**args) ⇒ IosAppConfig
constructor
A new instance of IosAppConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ IosAppConfig
Returns a new instance of IosAppConfig.
580 581 582 |
# File 'generated/google/apis/firebase_v1beta1/classes.rb', line 580 def initialize(**args) update!(**args) end |
Instance Attribute Details
#config_file_contents ⇒ String
The content of the XML configuration file.
Corresponds to the JSON property configFileContents
NOTE: Values are automatically base64 encoded/decoded in the client library.
572 573 574 |
# File 'generated/google/apis/firebase_v1beta1/classes.rb', line 572 def config_file_contents @config_file_contents end |
#config_filename ⇒ String
The filename that the configuration artifact for the IosApp
is typically
saved as. For example: GoogleService-Info.plist
Corresponds to the JSON property configFilename
578 579 580 |
# File 'generated/google/apis/firebase_v1beta1/classes.rb', line 578 def config_filename @config_filename end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
585 586 587 588 |
# File 'generated/google/apis/firebase_v1beta1/classes.rb', line 585 def update!(**args) @config_file_contents = args[:config_file_contents] if args.key?(:config_file_contents) @config_filename = args[:config_filename] if args.key?(:config_filename) end |