Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -281379,6 +281379,7 @@
"/firebaseappdistribution:v1alpha/AndroidxCrawlerOutputRectangle/right": right
"/firebaseappdistribution:v1alpha/AndroidxCrawlerOutputRectangle/top": top
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1Release": google_firebase_appdistro_v1_release
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1Release/androidPackageRegistrationState": android_package_registration_state
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1Release/binaryDownloadUri": binary_download_uri
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1Release/buildVersion": build_version
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1Release/createTime": create_time
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-firebaseappdistribution_v1alpha

### v0.30.0 (2026-07-19)

* Regenerated from discovery document revision 20260713

### v0.29.0 (2026-06-14)

* Regenerated from discovery document revision 20260518
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,11 @@ def update!(**args)
class GoogleFirebaseAppdistroV1Release
include Google::Apis::Core::Hashable

# Output only. Registration state of the Android package (BinaryType.APK).
# Corresponds to the JSON property `androidPackageRegistrationState`
# @return [String]
attr_accessor :android_package_registration_state

# Output only. A signed link (which expires in one hour) to directly download
# the app binary (IPA/APK/AAB) file.
# Corresponds to the JSON property `binaryDownloadUri`
Expand Down Expand Up @@ -152,6 +157,7 @@ def initialize(**args)

# Update properties of this object
def update!(**args)
@android_package_registration_state = args[:android_package_registration_state] if args.key?(:android_package_registration_state)
@binary_download_uri = args[:binary_download_uri] if args.key?(:binary_download_uri)
@build_version = args[:build_version] if args.key?(:build_version)
@create_time = args[:create_time] if args.key?(:create_time)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module FirebaseappdistributionV1alpha
# Version of the google-apis-firebaseappdistribution_v1alpha gem
GEM_VERSION = "0.29.0"
GEM_VERSION = "0.30.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.19.0"

# Revision of the discovery document this client was generated from
REVISION = "20260518"
REVISION = "20260713"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
class GoogleFirebaseAppdistroV1Release
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :android_package_registration_state, as: 'androidPackageRegistrationState'
property :binary_download_uri, as: 'binaryDownloadUri'
property :build_version, as: 'buildVersion'
property :create_time, as: 'createTime'
Expand Down
Loading