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.



750
751
752
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 750

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)


737
738
739
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 737

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)


743
744
745
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 743

def name
  @name
end

#test_certificateGoogle::Apis::FirebaseappdistributionV1::GoogleFirebaseAppdistroV1TestCertificate

App bundle test certificate Corresponds to the JSON property testCertificate



748
749
750
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 748

def test_certificate
  @test_certificate
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



755
756
757
758
759
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 755

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