class Google::Apis::FirebaseV1beta1::WebApp
Details of a Firebase App for the web.
Attributes
Immutable. The globally unique, Firebase-assigned identifier for the `WebApp`. This identifier should be treated as an opaque token, as the data format is not specified. Corresponds to the JSON property `appId` @return [String]
The URLs where the `WebApp` is hosted. Corresponds to the JSON property `appUrls` @return [Array<String>]
The user-assigned display name for the `WebApp`. Corresponds to the JSON property `displayName` @return [String]
The resource name of the WebApp
, in the format: projects/PROJECT_IDENTIFIER / webApps/APP_ID * PROJECT_IDENTIFIER: the parent Project's [`ProjectNumber`](../ projects#FirebaseProject.FIELDS.project_number) ***(recommended)*** or its [` ProjectId`](../projects#FirebaseProject.FIELDS.project_id). Learn more about using project identifiers in Google's [AIP 2510 standard](google.aip. dev/cloud/2510). Note that the value for PROJECT_IDENTIFIER in any response body will be the `ProjectId`. * APP_ID: the globally unique, Firebase-assigned identifier for the App (see [`appId`](../projects.webApps#WebApp.FIELDS.app_id) ). Corresponds to the JSON property `name` @return [String]
Immutable. A user-assigned unique identifier of the parent FirebaseProject
for the `WebApp`. Corresponds to the JSON property `projectId` @return [String]
Output only. Immutable. A unique, Firebase-assigned identifier for the `WebApp` . This identifier is only used to populate the `namespace` value for the ` WebApp`. For most use cases, use `appId` to identify or reference the App. The `webId` value is only unique within a `FirebaseProject` and its associated Apps. Corresponds to the JSON property `webId` @return [String]
Public Class Methods
# File lib/google/apis/firebase_v1beta1/classes.rb, line 1182 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/firebase_v1beta1/classes.rb, line 1187 def update!(**args) @app_id = args[:app_id] if args.key?(:app_id) @app_urls = args[:app_urls] if args.key?(:app_urls) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) @project_id = args[:project_id] if args.key?(:project_id) @web_id = args[:web_id] if args.key?(:web_id) end