1<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.webApps.html">webApps</a></h1> 76<h2>Instance Methods</h2> 77<p class="toc_element"> 78 <code><a href="#close">close()</a></code></p> 79<p class="firstline">Close httplib2 connections.</p> 80<p class="toc_element"> 81 <code><a href="#create">create(parent, body=None, x__xgafv=None)</a></code></p> 82<p class="firstline">Creates a web app.</p> 83<p class="toc_element"> 84 <code><a href="#delete">delete(name, x__xgafv=None)</a></code></p> 85<p class="firstline">Deletes a web app.</p> 86<p class="toc_element"> 87 <code><a href="#get">get(name, x__xgafv=None)</a></code></p> 88<p class="firstline">Gets a web app.</p> 89<p class="toc_element"> 90 <code><a href="#list">list(parent, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p> 91<p class="firstline">Lists web apps for a given enterprise.</p> 92<p class="toc_element"> 93 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p> 94<p class="firstline">Retrieves the next page of results.</p> 95<p class="toc_element"> 96 <code><a href="#patch">patch(name, body=None, updateMask=None, x__xgafv=None)</a></code></p> 97<p class="firstline">Updates a web app.</p> 98<h3>Method Details</h3> 99<div class="method"> 100 <code class="details" id="close">close()</code> 101 <pre>Close httplib2 connections.</pre> 102</div> 103 104<div class="method"> 105 <code class="details" id="create">create(parent, body=None, x__xgafv=None)</code> 106 <pre>Creates a web app. 107 108Args: 109 parent: string, The name of the enterprise in the form enterprises/{enterpriseId}. (required) 110 body: object, The request body. 111 The object takes the form of: 112 113{ # A web app. 114 "displayMode": "A String", # The display mode of the web app. 115 "icons": [ # A list of icons for the web app. Must have at least one element. 116 { # An icon for a web app. Supported formats are: png, jpg and webp. 117 "imageData": "A String", # The actual bytes of the image in a base64url encoded string (c.f. RFC4648, section 5 "Base 64 Encoding with URL and Filename Safe Alphabet"). - The image type can be png or jpg. - The image should ideally be square. - The image should ideally have a size of 512x512. 118 }, 119 ], 120 "name": "A String", # The name of the web app, which is generated by the server during creation in the form enterprises/{enterpriseId}/webApps/{packageName}. 121 "startUrl": "A String", # The start URL, i.e. the URL that should load when the user opens the application. 122 "title": "A String", # The title of the web app as displayed to the user (e.g., amongst a list of other applications, or as a label for an icon). 123 "versionCode": "A String", # The current version of the app.Note that the version can automatically increase during the lifetime of the web app, while Google does internal housekeeping to keep the web app up-to-date. 124} 125 126 x__xgafv: string, V1 error format. 127 Allowed values 128 1 - v1 error format 129 2 - v2 error format 130 131Returns: 132 An object of the form: 133 134 { # A web app. 135 "displayMode": "A String", # The display mode of the web app. 136 "icons": [ # A list of icons for the web app. Must have at least one element. 137 { # An icon for a web app. Supported formats are: png, jpg and webp. 138 "imageData": "A String", # The actual bytes of the image in a base64url encoded string (c.f. RFC4648, section 5 "Base 64 Encoding with URL and Filename Safe Alphabet"). - The image type can be png or jpg. - The image should ideally be square. - The image should ideally have a size of 512x512. 139 }, 140 ], 141 "name": "A String", # The name of the web app, which is generated by the server during creation in the form enterprises/{enterpriseId}/webApps/{packageName}. 142 "startUrl": "A String", # The start URL, i.e. the URL that should load when the user opens the application. 143 "title": "A String", # The title of the web app as displayed to the user (e.g., amongst a list of other applications, or as a label for an icon). 144 "versionCode": "A String", # The current version of the app.Note that the version can automatically increase during the lifetime of the web app, while Google does internal housekeeping to keep the web app up-to-date. 145}</pre> 146</div> 147 148<div class="method"> 149 <code class="details" id="delete">delete(name, x__xgafv=None)</code> 150 <pre>Deletes a web app. 151 152Args: 153 name: string, The name of the web app in the form enterprises/{enterpriseId}/webApps/{packageName}. (required) 154 x__xgafv: string, V1 error format. 155 Allowed values 156 1 - v1 error format 157 2 - v2 error format 158 159Returns: 160 An object of the form: 161 162 { # A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for Empty is empty JSON object {}. 163}</pre> 164</div> 165 166<div class="method"> 167 <code class="details" id="get">get(name, x__xgafv=None)</code> 168 <pre>Gets a web app. 169 170Args: 171 name: string, The name of the web app in the form enterprises/{enterpriseId}/webApp/{packageName}. (required) 172 x__xgafv: string, V1 error format. 173 Allowed values 174 1 - v1 error format 175 2 - v2 error format 176 177Returns: 178 An object of the form: 179 180 { # A web app. 181 "displayMode": "A String", # The display mode of the web app. 182 "icons": [ # A list of icons for the web app. Must have at least one element. 183 { # An icon for a web app. Supported formats are: png, jpg and webp. 184 "imageData": "A String", # The actual bytes of the image in a base64url encoded string (c.f. RFC4648, section 5 "Base 64 Encoding with URL and Filename Safe Alphabet"). - The image type can be png or jpg. - The image should ideally be square. - The image should ideally have a size of 512x512. 185 }, 186 ], 187 "name": "A String", # The name of the web app, which is generated by the server during creation in the form enterprises/{enterpriseId}/webApps/{packageName}. 188 "startUrl": "A String", # The start URL, i.e. the URL that should load when the user opens the application. 189 "title": "A String", # The title of the web app as displayed to the user (e.g., amongst a list of other applications, or as a label for an icon). 190 "versionCode": "A String", # The current version of the app.Note that the version can automatically increase during the lifetime of the web app, while Google does internal housekeeping to keep the web app up-to-date. 191}</pre> 192</div> 193 194<div class="method"> 195 <code class="details" id="list">list(parent, pageSize=None, pageToken=None, x__xgafv=None)</code> 196 <pre>Lists web apps for a given enterprise. 197 198Args: 199 parent: string, The name of the enterprise in the form enterprises/{enterpriseId}. (required) 200 pageSize: integer, The requested page size. The actual page size may be fixed to a min or max value. 201 pageToken: string, A token identifying a page of results returned by the server. 202 x__xgafv: string, V1 error format. 203 Allowed values 204 1 - v1 error format 205 2 - v2 error format 206 207Returns: 208 An object of the form: 209 210 { # Response to a request to list web apps for a given enterprise. 211 "nextPageToken": "A String", # If there are more results, a token to retrieve next page of results. 212 "webApps": [ # The list of web apps. 213 { # A web app. 214 "displayMode": "A String", # The display mode of the web app. 215 "icons": [ # A list of icons for the web app. Must have at least one element. 216 { # An icon for a web app. Supported formats are: png, jpg and webp. 217 "imageData": "A String", # The actual bytes of the image in a base64url encoded string (c.f. RFC4648, section 5 "Base 64 Encoding with URL and Filename Safe Alphabet"). - The image type can be png or jpg. - The image should ideally be square. - The image should ideally have a size of 512x512. 218 }, 219 ], 220 "name": "A String", # The name of the web app, which is generated by the server during creation in the form enterprises/{enterpriseId}/webApps/{packageName}. 221 "startUrl": "A String", # The start URL, i.e. the URL that should load when the user opens the application. 222 "title": "A String", # The title of the web app as displayed to the user (e.g., amongst a list of other applications, or as a label for an icon). 223 "versionCode": "A String", # The current version of the app.Note that the version can automatically increase during the lifetime of the web app, while Google does internal housekeeping to keep the web app up-to-date. 224 }, 225 ], 226}</pre> 227</div> 228 229<div class="method"> 230 <code class="details" id="list_next">list_next(previous_request, previous_response)</code> 231 <pre>Retrieves the next page of results. 232 233Args: 234 previous_request: The request for the previous page. (required) 235 previous_response: The response from the request for the previous page. (required) 236 237Returns: 238 A request object that you can call 'execute()' on to request the next 239 page. Returns None if there are no more items in the collection. 240 </pre> 241</div> 242 243<div class="method"> 244 <code class="details" id="patch">patch(name, body=None, updateMask=None, x__xgafv=None)</code> 245 <pre>Updates a web app. 246 247Args: 248 name: string, The name of the web app in the form enterprises/{enterpriseId}/webApps/{packageName}. (required) 249 body: object, The request body. 250 The object takes the form of: 251 252{ # A web app. 253 "displayMode": "A String", # The display mode of the web app. 254 "icons": [ # A list of icons for the web app. Must have at least one element. 255 { # An icon for a web app. Supported formats are: png, jpg and webp. 256 "imageData": "A String", # The actual bytes of the image in a base64url encoded string (c.f. RFC4648, section 5 "Base 64 Encoding with URL and Filename Safe Alphabet"). - The image type can be png or jpg. - The image should ideally be square. - The image should ideally have a size of 512x512. 257 }, 258 ], 259 "name": "A String", # The name of the web app, which is generated by the server during creation in the form enterprises/{enterpriseId}/webApps/{packageName}. 260 "startUrl": "A String", # The start URL, i.e. the URL that should load when the user opens the application. 261 "title": "A String", # The title of the web app as displayed to the user (e.g., amongst a list of other applications, or as a label for an icon). 262 "versionCode": "A String", # The current version of the app.Note that the version can automatically increase during the lifetime of the web app, while Google does internal housekeeping to keep the web app up-to-date. 263} 264 265 updateMask: string, The field mask indicating the fields to update. If not set, all modifiable fields will be modified. 266 x__xgafv: string, V1 error format. 267 Allowed values 268 1 - v1 error format 269 2 - v2 error format 270 271Returns: 272 An object of the form: 273 274 { # A web app. 275 "displayMode": "A String", # The display mode of the web app. 276 "icons": [ # A list of icons for the web app. Must have at least one element. 277 { # An icon for a web app. Supported formats are: png, jpg and webp. 278 "imageData": "A String", # The actual bytes of the image in a base64url encoded string (c.f. RFC4648, section 5 "Base 64 Encoding with URL and Filename Safe Alphabet"). - The image type can be png or jpg. - The image should ideally be square. - The image should ideally have a size of 512x512. 279 }, 280 ], 281 "name": "A String", # The name of the web app, which is generated by the server during creation in the form enterprises/{enterpriseId}/webApps/{packageName}. 282 "startUrl": "A String", # The start URL, i.e. the URL that should load when the user opens the application. 283 "title": "A String", # The title of the web app as displayed to the user (e.g., amongst a list of other applications, or as a label for an icon). 284 "versionCode": "A String", # The current version of the app.Note that the version can automatically increase during the lifetime of the web app, while Google does internal housekeeping to keep the web app up-to-date. 285}</pre> 286</div> 287 288</body></html>