Class: Google::Apis::AndroidmanagementV1::Application
- Inherits:
-
Object
- Object
- Google::Apis::AndroidmanagementV1::Application
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/androidmanagement_v1/classes.rb,
generated/google/apis/androidmanagement_v1/representations.rb,
generated/google/apis/androidmanagement_v1/representations.rb
Overview
Information about an app.
Instance Attribute Summary collapse
-
#app_tracks ⇒ Array<Google::Apis::AndroidmanagementV1::AppTrackInfo>
Application tracks visible to the enterprise.
-
#managed_properties ⇒ Array<Google::Apis::AndroidmanagementV1::ManagedProperty>
The set of managed properties available to be pre-configured for the app.
-
#name ⇒ String
The name of the app in the form enterprises/
enterpriseId
/applications/package_name
. -
#permissions ⇒ Array<Google::Apis::AndroidmanagementV1::ApplicationPermission>
The permissions required by the app.
-
#title ⇒ String
The title of the app.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Application
constructor
A new instance of Application.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Application
Returns a new instance of Application.
166 167 168 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 166 def initialize(**args) update!(**args) end |
Instance Attribute Details
#app_tracks ⇒ Array<Google::Apis::AndroidmanagementV1::AppTrackInfo>
Application tracks visible to the enterprise.
Corresponds to the JSON property appTracks
143 144 145 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 143 def app_tracks @app_tracks end |
#managed_properties ⇒ Array<Google::Apis::AndroidmanagementV1::ManagedProperty>
The set of managed properties available to be pre-configured for the app.
Corresponds to the JSON property managedProperties
148 149 150 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 148 def managed_properties @managed_properties end |
#name ⇒ String
The name of the app in the form enterprises/enterpriseId
/applications/
package_name
.
Corresponds to the JSON property name
154 155 156 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 154 def name @name end |
#permissions ⇒ Array<Google::Apis::AndroidmanagementV1::ApplicationPermission>
The permissions required by the app.
Corresponds to the JSON property permissions
159 160 161 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 159 def @permissions end |
#title ⇒ String
The title of the app. Localized.
Corresponds to the JSON property title
164 165 166 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 164 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
171 172 173 174 175 176 177 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 171 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 |