Class: Google::Apis::AndroidmanagementV1::ApplicationReport

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

Overview

Information reported about an installed app.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ApplicationReport

Returns a new instance of ApplicationReport.



442
443
444
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 442

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

Instance Attribute Details

#application_sourceString

The source of the package. Corresponds to the JSON property applicationSource

Returns:

  • (String)


384
385
386
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 384

def application_source
  @application_source
end

#display_nameString

The display name of the app. Corresponds to the JSON property displayName

Returns:

  • (String)


389
390
391
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 389

def display_name
  @display_name
end

#eventsArray<Google::Apis::AndroidmanagementV1::ApplicationEvent>

List of app events. The most recent 20 events are stored in the list. Corresponds to the JSON property events



394
395
396
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 394

def events
  @events
end

#installer_package_nameString

The package name of the app that installed this app. Corresponds to the JSON property installerPackageName

Returns:

  • (String)


399
400
401
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 399

def installer_package_name
  @installer_package_name
end

#keyed_app_statesArray<Google::Apis::AndroidmanagementV1::KeyedAppState>

List of keyed app states reported by the app. Corresponds to the JSON property keyedAppStates



404
405
406
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 404

def keyed_app_states
  @keyed_app_states
end

#package_nameString

Package name of the app. Corresponds to the JSON property packageName

Returns:

  • (String)


409
410
411
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 409

def package_name
  @package_name
end

#package_sha256_hashString

The SHA-256 hash of the app's APK file, which can be used to verify the app hasn't been modified. Each byte of the hash value is represented as a two- digit hexadecimal number. Corresponds to the JSON property packageSha256Hash

Returns:

  • (String)


416
417
418
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 416

def package_sha256_hash
  @package_sha256_hash
end

#signing_key_cert_fingerprintsArray<String>

The SHA-1 hash of each android.content.pm.Signature (https://developer.android. com/reference/android/content/pm/Signature.html) associated with the app package. Each byte of each hash value is represented as a two-digit hexadecimal number. Corresponds to the JSON property signingKeyCertFingerprints

Returns:

  • (Array<String>)


424
425
426
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 424

def signing_key_cert_fingerprints
  @signing_key_cert_fingerprints
end

#stateString

Application state. Corresponds to the JSON property state

Returns:

  • (String)


429
430
431
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 429

def state
  @state
end

#version_codeFixnum

The app version code, which can be used to determine whether one version is more recent than another. Corresponds to the JSON property versionCode

Returns:

  • (Fixnum)


435
436
437
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 435

def version_code
  @version_code
end

#version_nameString

The app version as displayed to the user. Corresponds to the JSON property versionName

Returns:

  • (String)


440
441
442
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 440

def version_name
  @version_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



447
448
449
450
451
452
453
454
455
456
457
458
459
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 447

def update!(**args)
  @application_source = args[:application_source] if args.key?(:application_source)
  @display_name = args[:display_name] if args.key?(:display_name)
  @events = args[:events] if args.key?(:events)
  @installer_package_name = args[:installer_package_name] if args.key?(:installer_package_name)
  @keyed_app_states = args[:keyed_app_states] if args.key?(:keyed_app_states)
  @package_name = args[:package_name] if args.key?(:package_name)
  @package_sha256_hash = args[:package_sha256_hash] if args.key?(:package_sha256_hash)
  @signing_key_cert_fingerprints = args[:signing_key_cert_fingerprints] if args.key?(:signing_key_cert_fingerprints)
  @state = args[:state] if args.key?(:state)
  @version_code = args[:version_code] if args.key?(:version_code)
  @version_name = args[:version_name] if args.key?(:version_name)
end