Class FirebaseAppInfo
A high-level summary of an App.
Implements
Inherited Members
Namespace: Google.Apis.FirebaseManagement.v1beta1.Data
Assembly: Google.Apis.FirebaseManagement.v1beta1.dll
Syntax
public class FirebaseAppInfo : IDirectResponseSchema
Properties
ApiKeyId
The globally unique, Google-assigned identifier (UID) for the Firebase API key associated with the App. Be
aware that this value is the UID of the API key, not the
keyString
of the API key. The keyString is the value that can be found in the App's configuration artifact
(AndroidApp |
IosApp |
WebApp). If api_key_id is not set in requests to create
the App (AndroidApp |
IosApp |
WebApp), then Firebase automatically associates an
api_key_id with the App. This auto-associated key may be an existing valid key or, if no valid key exists,
a new one will be provisioned.
Declaration
[JsonProperty("apiKeyId")]
public virtual string ApiKeyId { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
AppId
Output only. 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.
Declaration
[JsonProperty("appId")]
public virtual string AppId { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
DisplayName
The user-assigned display name of the Firebase App.
Declaration
[JsonProperty("displayName")]
public virtual string DisplayName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ExpireTime
object representation of ExpireTimeRaw.
Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use ExpireTimeDateTimeOffset instead.")]
public virtual object ExpireTime { get; set; }
Property Value
| Type | Description |
|---|---|
| object |
ExpireTimeDateTimeOffset
DateTimeOffset representation of ExpireTimeRaw.
Declaration
[JsonIgnore]
public virtual DateTimeOffset? ExpireTimeDateTimeOffset { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTimeOffset? |
ExpireTimeRaw
Output only. If the App has been removed from the Project, this is the timestamp of when the App is
considered expired and will be permanently deleted. After this time, the App cannot be undeleted (that is,
restored to the Project). This value is only provided if the App is in the DELETED state.
Declaration
[JsonProperty("expireTime")]
public virtual string ExpireTimeRaw { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Name
The resource name of the Firebase App, in the format: projects/PROJECT_ID /iosApps/APP_ID or projects/PROJECT_ID/androidApps/APP_ID or projects/ PROJECT_ID/webApps/APP_ID
Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Namespace__
Output only. Immutable. The platform-specific identifier of the App. Note: For most use cases, use
appId, which is the canonical, globally unique identifier for referencing an App. This string is derived
from a native identifier for each platform: packageName for an AndroidApp, bundleId for an IosApp,
and webId for a WebApp. Its contents should be treated as opaque, as the native identifier format may
change as platforms evolve. This string is only unique within a FirebaseProject and its associated Apps.
Declaration
[JsonProperty("namespace")]
public virtual string Namespace__ { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Platform
The platform of the Firebase App.
Declaration
[JsonProperty("platform")]
public virtual string Platform { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
State
Output only. The lifecycle state of the App.
Declaration
[JsonProperty("state")]
public virtual string State { get; set; }
Property Value
| Type | Description |
|---|---|
| string |