blob: 656f321d96edc3152931fec65cd9c0bd6cef515f [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.
97 "managedProperties": [ # The set of managed properties available to be pre-configured for the app.
98 { # Managed property.
99 "nestedProperties": [ # For BUNDLE_ARRAY properties, the list of nested properties. A BUNDLE_ARRAY property is at most two levels deep.
100 # Object with schema name: ManagedProperty
101 ],
102 "description": "A String", # A longer description of the property, providing more detail of what it affects. Localized.
103 "title": "A String", # The name of the property. Localized.
104 "defaultValue": "", # The default value of the property. BUNDLE_ARRAY properties don't have a default value.
105 "key": "A String", # The unique key that the app uses to identify the property, e.g. "com.google.android.gm.fieldname".
106 "entries": [ # For CHOICE or MULTISELECT properties, the list of possible entries.
107 { # An entry of a managed property.
108 "name": "A String", # The human-readable name of the value. Localized.
109 "value": "A String", # The machine-readable value of the entry, which should be used in the configuration. Not localized.
110 },
111 ],
112 "type": "A String", # The type of the property.
113 },
114 ],
115 "permissions": [ # The permissions required by the app.
116 { # A permission required by the app.
117 "permissionId": "A String", # An opaque string uniquely identifying the permission. Not localized.
118 "name": "A String", # The name of the permission. Localized.
119 "description": "A String", # A longer description of the permission, providing more detail on what it affects. Localized.
120 },
121 ],
122 "name": "A String", # The name of the app in the form enterprises/{enterpriseId}/applications/{package_name}.
123 "title": "A String", # The title of the app. Localized.
124 }</pre>
125</div>
126
127</body></html>