blob: c294689fad7391bdf2d457505f3d1f89a92cb507 [file] [log] [blame]
Bu Sun Kim715bd7f2019-06-14 16:50:42 -07001<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5 margin: 0;
6 padding: 0;
7 border: 0;
8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
13}
14
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50 border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54 margin-top: 0.5em;
55}
56
57.firstline {
58 margin-left: 2 em;
59}
60
61.method {
62 margin-top: 1em;
63 border: solid 1px #CCC;
64 padding: 1em;
65 background: #EEE;
66}
67
68.details {
69 font-weight: bold;
70 font-size: 14px;
71}
72
73</style>
74
75<h1><a href="androidmanagement_v1.html">Android Management API</a> . <a href="androidmanagement_v1.enterprises.html">enterprises</a> . <a href="androidmanagement_v1.enterprises.applications.html">applications</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="#get">get(name, languageCode=None, x__xgafv=None)</a></code></p>
79<p class="firstline">Gets info about an application.</p>
80<h3>Method Details</h3>
81<div class="method">
82 <code class="details" id="get">get(name, languageCode=None, x__xgafv=None)</code>
83 <pre>Gets info about an application.
84
85Args:
86 name: string, The name of the application in the form enterprises/{enterpriseId}/applications/{package_name}. (required)
87 languageCode: string, The preferred language for localized application info, as a BCP47 tag (e.g. "en-US", "de"). If not specified the default language of the application will be used.
88 x__xgafv: string, V1 error format.
89 Allowed values
90 1 - v1 error format
91 2 - v2 error format
92
93Returns:
94 An object of the form:
95
96 { # Information about an app.
Dan O'Mearadd494642020-05-01 07:42:23 -070097 "appTracks": [ # Application tracks visible to the enterprise.
98 { # Id to name association of a app track.
99 "trackId": "A String", # The unmodifiable unique track identifier, taken from the releaseTrackId in the URL of the Play Console page that displays the app’s track information.
100 "trackAlias": "A String", # The track name associated with the trackId, set in the Play Console. The name is modifiable from Play Console.
101 },
102 ],
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700103 "managedProperties": [ # The set of managed properties available to be pre-configured for the app.
104 { # Managed property.
Dan O'Mearadd494642020-05-01 07:42:23 -0700105 "key": "A String", # The unique key that the app uses to identify the property, e.g. "com.google.android.gm.fieldname".
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700106 "description": "A String", # A longer description of the property, providing more detail of what it affects. Localized.
107 "title": "A String", # The name of the property. Localized.
108 "defaultValue": "", # The default value of the property. BUNDLE_ARRAY properties don't have a default value.
Dan O'Mearadd494642020-05-01 07:42:23 -0700109 "nestedProperties": [ # For BUNDLE_ARRAY properties, the list of nested properties. A BUNDLE_ARRAY property is at most two levels deep.
110 # Object with schema name: ManagedProperty
111 ],
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700112 "entries": [ # For CHOICE or MULTISELECT properties, the list of possible entries.
113 { # An entry of a managed property.
114 "name": "A String", # The human-readable name of the value. Localized.
115 "value": "A String", # The machine-readable value of the entry, which should be used in the configuration. Not localized.
116 },
117 ],
118 "type": "A String", # The type of the property.
119 },
120 ],
121 "permissions": [ # The permissions required by the app.
122 { # A permission required by the app.
123 "permissionId": "A String", # An opaque string uniquely identifying the permission. Not localized.
124 "name": "A String", # The name of the permission. Localized.
125 "description": "A String", # A longer description of the permission, providing more detail on what it affects. Localized.
126 },
127 ],
128 "name": "A String", # The name of the app in the form enterprises/{enterpriseId}/applications/{package_name}.
129 "title": "A String", # The title of the app. Localized.
130 }</pre>
131</div>
132
133</body></html>