Skip to content

Commit b7865bd

Browse files
feat(androidenterprise): update the api
#### androidenterprise:v1 The following keys were deleted: - resources.enterprises.methods.createEnrollmentToken (Total Keys: 11) The following keys were added: - resources.enrollmentTokens.methods.create (Total Keys: 11)
1 parent 0208b0b commit b7865bd

File tree

4 files changed

+156
-61
lines changed

4 files changed

+156
-61
lines changed
Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
<html><body>
2+
<style>
3+
4+
body, 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+
15+
body {
16+
font-size: 13px;
17+
padding: 1em;
18+
}
19+
20+
h1 {
21+
font-size: 26px;
22+
margin-bottom: 1em;
23+
}
24+
25+
h2 {
26+
font-size: 24px;
27+
margin-bottom: 1em;
28+
}
29+
30+
h3 {
31+
font-size: 20px;
32+
margin-bottom: 1em;
33+
margin-top: 1em;
34+
}
35+
36+
pre, code {
37+
line-height: 1.5;
38+
font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39+
}
40+
41+
pre {
42+
margin-top: 0.5em;
43+
}
44+
45+
h1, h2, h3, p {
46+
font-family: Arial, sans serif;
47+
}
48+
49+
h1, 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="androidenterprise_v1.html">Google Play EMM API</a> . <a href="androidenterprise_v1.enrollmentTokens.html">enrollmentTokens</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(enterpriseId, body=None, x__xgafv=None)</a></code></p>
82+
<p class="firstline">Returns a token for device enrollment. The DPC can encode this token within the QR/NFC/zero-touch enrollment payload or fetch it before calling the on-device API to authenticate the user. The token can be generated for each device or reused across multiple devices.</p>
83+
<h3>Method Details</h3>
84+
<div class="method">
85+
<code class="details" id="close">close()</code>
86+
<pre>Close httplib2 connections.</pre>
87+
</div>
88+
89+
<div class="method">
90+
<code class="details" id="create">create(enterpriseId, body=None, x__xgafv=None)</code>
91+
<pre>Returns a token for device enrollment. The DPC can encode this token within the QR/NFC/zero-touch enrollment payload or fetch it before calling the on-device API to authenticate the user. The token can be generated for each device or reused across multiple devices.
92+
93+
Args:
94+
enterpriseId: string, Required. The ID of the enterprise. (required)
95+
body: object, The request body.
96+
The object takes the form of:
97+
98+
{ # A token used to enroll a device.
99+
&quot;duration&quot;: &quot;A String&quot;, # [Optional] The length of time the enrollment token is valid, ranging from 1 minute to [`Durations.MAX_VALUE`](https://developers.google.com/protocol-buffers/docs/reference/java/com/google/protobuf/util/Durations.html#MAX_VALUE), approximately 10,000 years. If not specified, the default duration is 1 hour.
100+
&quot;enrollmentTokenType&quot;: &quot;A String&quot;, # [Required] The type of the enrollment token.
101+
&quot;token&quot;: &quot;A String&quot;, # The token value that&#x27;s passed to the device and authorizes the device to enroll. This is a read-only field generated by the server.
102+
}
103+
104+
x__xgafv: string, V1 error format.
105+
Allowed values
106+
1 - v1 error format
107+
2 - v2 error format
108+
109+
Returns:
110+
An object of the form:
111+
112+
{ # A token used to enroll a device.
113+
&quot;duration&quot;: &quot;A String&quot;, # [Optional] The length of time the enrollment token is valid, ranging from 1 minute to [`Durations.MAX_VALUE`](https://developers.google.com/protocol-buffers/docs/reference/java/com/google/protobuf/util/Durations.html#MAX_VALUE), approximately 10,000 years. If not specified, the default duration is 1 hour.
114+
&quot;enrollmentTokenType&quot;: &quot;A String&quot;, # [Required] The type of the enrollment token.
115+
&quot;token&quot;: &quot;A String&quot;, # The token value that&#x27;s passed to the device and authorizes the device to enroll. This is a read-only field generated by the server.
116+
}</pre>
117+
</div>
118+
119+
</body></html>

docs/dyn/androidenterprise_v1.enterprises.html

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,6 @@ <h2>Instance Methods</h2>
8383
<p class="toc_element">
8484
<code><a href="#completeSignup">completeSignup(completionToken=None, enterpriseToken=None, x__xgafv=None)</a></code></p>
8585
<p class="firstline">Completes the signup flow, by specifying the Completion token and Enterprise token. This request must not be called multiple times for a given Enterprise Token.</p>
86-
<p class="toc_element">
87-
<code><a href="#createEnrollmentToken">createEnrollmentToken(enterpriseId, body=None, x__xgafv=None)</a></code></p>
88-
<p class="firstline">Returns a token for device enrollment. The DPC can encode this token within the QR/NFC/zero-touch enrollment payload or fetch it before calling the on-device API to authenticate the user. The token can be generated for each device or reused across multiple devices.</p>
8986
<p class="toc_element">
9087
<code><a href="#createWebToken">createWebToken(enterpriseId, body=None, x__xgafv=None)</a></code></p>
9188
<p class="firstline">Returns a unique token to access an embeddable UI. To generate a web UI, pass the generated token into the managed Google Play javascript API. Each token may only be used to start one UI session. See the JavaScript API documentation for further information.</p>
@@ -172,36 +169,6 @@ <h3>Method Details</h3>
172169
}</pre>
173170
</div>
174171

175-
<div class="method">
176-
<code class="details" id="createEnrollmentToken">createEnrollmentToken(enterpriseId, body=None, x__xgafv=None)</code>
177-
<pre>Returns a token for device enrollment. The DPC can encode this token within the QR/NFC/zero-touch enrollment payload or fetch it before calling the on-device API to authenticate the user. The token can be generated for each device or reused across multiple devices.
178-
179-
Args:
180-
enterpriseId: string, Required. The ID of the enterprise. (required)
181-
body: object, The request body.
182-
The object takes the form of:
183-
184-
{ # A token used to enroll a device.
185-
&quot;duration&quot;: &quot;A String&quot;, # [Optional] The length of time the enrollment token is valid, ranging from 1 minute to [`Durations.MAX_VALUE`](https://developers.google.com/protocol-buffers/docs/reference/java/com/google/protobuf/util/Durations.html#MAX_VALUE), approximately 10,000 years. If not specified, the default duration is 1 hour.
186-
&quot;enrollmentTokenType&quot;: &quot;A String&quot;, # [Required] The type of the enrollment token.
187-
&quot;token&quot;: &quot;A String&quot;, # The token value that&#x27;s passed to the device and authorizes the device to enroll. This is a read-only field generated by the server.
188-
}
189-
190-
x__xgafv: string, V1 error format.
191-
Allowed values
192-
1 - v1 error format
193-
2 - v2 error format
194-
195-
Returns:
196-
An object of the form:
197-
198-
{ # A token used to enroll a device.
199-
&quot;duration&quot;: &quot;A String&quot;, # [Optional] The length of time the enrollment token is valid, ranging from 1 minute to [`Durations.MAX_VALUE`](https://developers.google.com/protocol-buffers/docs/reference/java/com/google/protobuf/util/Durations.html#MAX_VALUE), approximately 10,000 years. If not specified, the default duration is 1 hour.
200-
&quot;enrollmentTokenType&quot;: &quot;A String&quot;, # [Required] The type of the enrollment token.
201-
&quot;token&quot;: &quot;A String&quot;, # The token value that&#x27;s passed to the device and authorizes the device to enroll. This is a read-only field generated by the server.
202-
}</pre>
203-
</div>
204-
205172
<div class="method">
206173
<code class="details" id="createWebToken">createWebToken(enterpriseId, body=None, x__xgafv=None)</code>
207174
<pre>Returns a unique token to access an embeddable UI. To generate a web UI, pass the generated token into the managed Google Play javascript API. Each token may only be used to start one UI session. See the JavaScript API documentation for further information.

docs/dyn/androidenterprise_v1.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,11 @@ <h2>Instance Methods</h2>
7979
</p>
8080
<p class="firstline">Returns the devices Resource.</p>
8181

82+
<p class="toc_element">
83+
<code><a href="androidenterprise_v1.enrollmentTokens.html">enrollmentTokens()</a></code>
84+
</p>
85+
<p class="firstline">Returns the enrollmentTokens Resource.</p>
86+
8287
<p class="toc_element">
8388
<code><a href="androidenterprise_v1.enterprises.html">enterprises()</a></code>
8489
</p>

googleapiclient/discovery_cache/documents/androidenterprise.v1.json

Lines changed: 32 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,37 @@
337337
}
338338
}
339339
},
340+
"enrollmentTokens": {
341+
"methods": {
342+
"create": {
343+
"description": "Returns a token for device enrollment. The DPC can encode this token within the QR/NFC/zero-touch enrollment payload or fetch it before calling the on-device API to authenticate the user. The token can be generated for each device or reused across multiple devices.",
344+
"flatPath": "androidenterprise/v1/enterprises/{enterpriseId}/enrollmentTokens",
345+
"httpMethod": "POST",
346+
"id": "androidenterprise.enrollmentTokens.create",
347+
"parameterOrder": [
348+
"enterpriseId"
349+
],
350+
"parameters": {
351+
"enterpriseId": {
352+
"description": "Required. The ID of the enterprise.",
353+
"location": "path",
354+
"required": true,
355+
"type": "string"
356+
}
357+
},
358+
"path": "androidenterprise/v1/enterprises/{enterpriseId}/enrollmentTokens",
359+
"request": {
360+
"$ref": "EnrollmentToken"
361+
},
362+
"response": {
363+
"$ref": "EnrollmentToken"
364+
},
365+
"scopes": [
366+
"https://www.googleapis.com/auth/androidenterprise"
367+
]
368+
}
369+
}
370+
},
340371
"enterprises": {
341372
"methods": {
342373
"acknowledgeNotificationSet": {
@@ -383,33 +414,6 @@
383414
"https://www.googleapis.com/auth/androidenterprise"
384415
]
385416
},
386-
"createEnrollmentToken": {
387-
"description": "Returns a token for device enrollment. The DPC can encode this token within the QR/NFC/zero-touch enrollment payload or fetch it before calling the on-device API to authenticate the user. The token can be generated for each device or reused across multiple devices.",
388-
"flatPath": "androidenterprise/v1/enterprises/{enterpriseId}/createEnrollmentToken",
389-
"httpMethod": "POST",
390-
"id": "androidenterprise.enterprises.createEnrollmentToken",
391-
"parameterOrder": [
392-
"enterpriseId"
393-
],
394-
"parameters": {
395-
"enterpriseId": {
396-
"description": "Required. The ID of the enterprise.",
397-
"location": "path",
398-
"required": true,
399-
"type": "string"
400-
}
401-
},
402-
"path": "androidenterprise/v1/enterprises/{enterpriseId}/createEnrollmentToken",
403-
"request": {
404-
"$ref": "EnrollmentToken"
405-
},
406-
"response": {
407-
"$ref": "EnrollmentToken"
408-
},
409-
"scopes": [
410-
"https://www.googleapis.com/auth/androidenterprise"
411-
]
412-
},
413417
"createWebToken": {
414418
"description": "Returns a unique token to access an embeddable UI. To generate a web UI, pass the generated token into the managed Google Play javascript API. Each token may only be used to start one UI session. See the JavaScript API documentation for further information.",
415419
"flatPath": "androidenterprise/v1/enterprises/{enterpriseId}/createWebToken",
@@ -2648,7 +2652,7 @@
26482652
}
26492653
}
26502654
},
2651-
"revision": "20250109",
2655+
"revision": "20250115",
26522656
"rootUrl": "https://androidenterprise.googleapis.com/",
26532657
"schemas": {
26542658
"Administrator": {

0 commit comments

Comments
 (0)