View Source GoogleApi.FirebaseHosting.V1beta1.Model.Version (google_api_firebase_hosting v0.17.1)
A Version
is a configuration and a collection of static files which determine how a site is displayed.
Attributes
-
config
(type:GoogleApi.FirebaseHosting.V1beta1.Model.ServingConfig.t
, default:nil
) - The configuration for the behavior of the site. This configuration exists in thefirebase.json
file. -
createTime
(type:DateTime.t
, default:nil
) - Output only. The time at which the version was created. -
createUser
(type:GoogleApi.FirebaseHosting.V1beta1.Model.ActingUser.t
, default:nil
) - Output only. Identifies the user who created the version. -
deleteTime
(type:DateTime.t
, default:nil
) - Output only. The time at which the version wasDELETED
. -
deleteUser
(type:GoogleApi.FirebaseHosting.V1beta1.Model.ActingUser.t
, default:nil
) - Output only. Identifies the user whoDELETED
the version. -
fileCount
(type:String.t
, default:nil
) - Output only. The total number of files associated with the version. This value is calculated after a version isFINALIZED
. -
finalizeTime
(type:DateTime.t
, default:nil
) - Output only. The time at which the version wasFINALIZED
. -
finalizeUser
(type:GoogleApi.FirebaseHosting.V1beta1.Model.ActingUser.t
, default:nil
) - Output only. Identifies the user whoFINALIZED
the version. -
labels
(type:map()
, default:nil
) - The labels used for extra metadata and/or filtering. -
name
(type:String.t
, default:nil
) - The fully-qualified resource name for the version, in the format: sites/ SITE_ID/versions/VERSION_ID This name is provided in the response body when you callCreateVersion
. -
status
(type:String.t
, default:nil
) - The deploy status of the version. For a successful deploy, callCreateVersion
to make a new version (CREATED
status), upload all desired files to the version, then update the version to theFINALIZED
status. Note that if you leave the version in theCREATED
state for more than 12 hours, the system will automatically mark the version asABANDONED
. You can also change the status of a version toDELETED
by callingDeleteVersion
. -
versionBytes
(type:String.t
, default:nil
) - Output only. The total stored bytesize of the version. This value is calculated after a version isFINALIZED
.
Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Types
@type t() :: %GoogleApi.FirebaseHosting.V1beta1.Model.Version{ config: GoogleApi.FirebaseHosting.V1beta1.Model.ServingConfig.t() | nil, createTime: DateTime.t() | nil, createUser: GoogleApi.FirebaseHosting.V1beta1.Model.ActingUser.t() | nil, deleteTime: DateTime.t() | nil, deleteUser: GoogleApi.FirebaseHosting.V1beta1.Model.ActingUser.t() | nil, fileCount: String.t() | nil, finalizeTime: DateTime.t() | nil, finalizeUser: GoogleApi.FirebaseHosting.V1beta1.Model.ActingUser.t() | nil, labels: map() | nil, name: String.t() | nil, status: String.t() | nil, versionBytes: String.t() | nil }