GoogleApi.Firebase.V1beta1.Model.FirebaseProject (google_api_firebase v0.13.3)
View SourceA FirebaseProject
is the top-level Firebase entity. It is the container for Firebase Apps, Firebase Hosting sites, storage systems (Firebase Realtime Database, Cloud Firestore, Cloud Storage buckets), and other Firebase and Google Cloud resources. You create a FirebaseProject
by calling AddFirebase and specifying an existing Google Cloud Project
. This adds Firebase resources to the existing Google Cloud Project
. Since a FirebaseProject is actually also a Google Cloud Project
, a FirebaseProject
has the same underlying Google Cloud identifiers (projectNumber
and projectId
). This allows for easy interop with Google APIs.
Attributes
-
annotations
(type:map()
, default:nil
) - A set of user-defined annotations for the FirebaseProject. Learn more about annotations in Google's AIP-128 standard. These annotations are intended solely for developers and client-side tools. Firebase services will not mutate this annotations set. -
displayName
(type:String.t
, default:nil
) - The user-assigned display name of the Project. -
etag
(type:String.t
, default:nil
) - This checksum is computed by the server based on the value of other fields, and it may be sent with update requests to ensure the client has an up-to-date value before proceeding. Learn more aboutetag
in Google's AIP-154 standard. This etag is strongly validated. -
name
(type:String.t
, default:nil
) - The resource name of the Project, in the format: projects/PROJECT_IDENTIFIER PROJECT_IDENTIFIER: the Project'sProjectNumber
(recommended) or itsProjectId
. Learn more about using project identifiers in Google's AIP 2510 standard. Note that the value for PROJECT_IDENTIFIER in any response body will be theProjectId
. -
projectId
(type:String.t
, default:nil
) - Output only. Immutable. A user-assigned unique identifier for the Project. This identifier may appear in URLs or names for some Firebase resources associated with the Project, but it should generally be treated as a convenience alias to reference the Project. -
projectNumber
(type:String.t
, default:nil
) - Output only. Immutable. The globally unique, Google-assigned canonical identifier for the Project. Use this identifier when configuring integrations and/or making API calls to Firebase or third-party services. -
resources
(type:GoogleApi.Firebase.V1beta1.Model.DefaultResources.t
, default:nil
) - Output only. DEPRECATED. Auto-provisioning of these resources is changing, so this object no longer reliably provides information about the Project. Instead, retrieve information about each resource directly from its resource-specific API. The default Firebase resources associated with the Project. -
state
(type:String.t
, default:nil
) - Output only. The lifecycle state of the Project.
Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Types
@type t() :: %GoogleApi.Firebase.V1beta1.Model.FirebaseProject{ annotations: map() | nil, displayName: String.t() | nil, etag: String.t() | nil, name: String.t() | nil, projectId: String.t() | nil, projectNumber: String.t() | nil, resources: GoogleApi.Firebase.V1beta1.Model.DefaultResources.t() | nil, state: String.t() | nil }