Class: Google::Apis::AndroidmanagementV1::Application

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 about an app.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Application

Returns a new instance of Application.



181
182
183
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 181

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

Instance Attribute Details

#app_tracksArray<Google::Apis::AndroidmanagementV1::AppTrackInfo>

Application tracks visible to the enterprise. Corresponds to the JSON property appTracks



158
159
160
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 158

def app_tracks
  @app_tracks
end

#managed_propertiesArray<Google::Apis::AndroidmanagementV1::ManagedProperty>

The set of managed properties available to be pre-configured for the app. Corresponds to the JSON property managedProperties



163
164
165
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 163

def managed_properties
  @managed_properties
end

#nameString

The name of the app in the form enterprises/enterpriseId/applications/ package_name. Corresponds to the JSON property name

Returns:

  • (String)


169
170
171
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 169

def name
  @name
end

#permissionsArray<Google::Apis::AndroidmanagementV1::ApplicationPermission>

The permissions required by the app. Corresponds to the JSON property permissions



174
175
176
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 174

def permissions
  @permissions
end

#titleString

The title of the app. Localized. Corresponds to the JSON property title

Returns:

  • (String)


179
180
181
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 179

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



186
187
188
189
190
191
192
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 186

def update!(**args)
  @app_tracks = args[:app_tracks] if args.key?(:app_tracks)
  @managed_properties = args[:managed_properties] if args.key?(:managed_properties)
  @name = args[:name] if args.key?(:name)
  @permissions = args[:permissions] if args.key?(:permissions)
  @title = args[:title] if args.key?(:title)
end