Class: Google::Apis::FirebaseappdistributionV1::GoogleFirebaseAppdistroV1AabInfo

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/firebaseappdistribution_v1/classes.rb,
lib/google/apis/firebaseappdistribution_v1/representations.rb,
lib/google/apis/firebaseappdistribution_v1/representations.rb

Overview

Android App Bundle (AAB) information for a Firebase app.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleFirebaseAppdistroV1AabInfo

Returns a new instance of GoogleFirebaseAppdistroV1AabInfo.



718
719
720
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 718

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#integration_stateString

App bundle integration state. Only valid for android apps. Corresponds to the JSON property integrationState

Returns:

  • (String)


705
706
707
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 705

def integration_state
  @integration_state
end

#nameString

The name of the AabInfo resource. Format: projects/project_number/apps/ app/aabInfo Corresponds to the JSON property name

Returns:

  • (String)


711
712
713
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 711

def name
  @name
end

#test_certificateGoogle::Apis::FirebaseappdistributionV1::GoogleFirebaseAppdistroV1TestCertificate

App bundle test certificate Corresponds to the JSON property testCertificate



716
717
718
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 716

def test_certificate
  @test_certificate
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



723
724
725
726
727
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 723

def update!(**args)
  @integration_state = args[:integration_state] if args.key?(:integration_state)
  @name = args[:name] if args.key?(:name)
  @test_certificate = args[:test_certificate] if args.key?(:test_certificate)
end