@maxim_mazurok/gapi.client.androidenterprise-v1 0.0.20220810
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +3849 -0
- package/package.json +20 -0
- package/readme.md +443 -0
- package/tests.ts +810 -0
- package/tsconfig.json +18 -0
- package/tslint.json +6 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,3849 @@
|
|
|
1
|
+
/* Type definitions for non-npm package Google Play EMM API v1 0.0 */
|
|
2
|
+
// Project: https://developers.google.com/android/work/play/emm-api
|
|
3
|
+
// Definitions by: Maxim Mazurok <https://github.com/Maxim-Mazurok>
|
|
4
|
+
// Nick Amoscato <https://github.com/namoscato>
|
|
5
|
+
// Declan Vong <https://github.com/declanvong>
|
|
6
|
+
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
7
|
+
// TypeScript Version: 2.8
|
|
8
|
+
|
|
9
|
+
// IMPORTANT
|
|
10
|
+
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
11
|
+
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
12
|
+
// Generated from: https://androidenterprise.googleapis.com/$discovery/rest?version=v1
|
|
13
|
+
// Revision: 20220810
|
|
14
|
+
|
|
15
|
+
/// <reference types="gapi.client" />
|
|
16
|
+
|
|
17
|
+
declare namespace gapi.client {
|
|
18
|
+
/** Load Google Play EMM API v1 */
|
|
19
|
+
function load(urlOrObject: "https://androidenterprise.googleapis.com/$discovery/rest?version=v1"): Promise<void>;
|
|
20
|
+
/** @deprecated Please load APIs with discovery documents. */
|
|
21
|
+
function load(name: "androidenterprise", version: "v1"): Promise<void>;
|
|
22
|
+
/** @deprecated Please load APIs with discovery documents. */
|
|
23
|
+
function load(name: "androidenterprise", version: "v1", callback: () => any): void;
|
|
24
|
+
|
|
25
|
+
namespace androidenterprise {
|
|
26
|
+
interface Administrator {
|
|
27
|
+
/** The admin's email address. */
|
|
28
|
+
email?: string;
|
|
29
|
+
}
|
|
30
|
+
interface AdministratorWebToken {
|
|
31
|
+
/** An opaque token to be passed to the Play front-end to generate an iframe. */
|
|
32
|
+
token?: string;
|
|
33
|
+
}
|
|
34
|
+
interface AdministratorWebTokenSpec {
|
|
35
|
+
/** Options for displaying the Managed Configuration page. */
|
|
36
|
+
managedConfigurations?: AdministratorWebTokenSpecManagedConfigurations;
|
|
37
|
+
/** The URI of the parent frame hosting the iframe. To prevent XSS, the iframe may not be hosted at other URIs. This URI must be https. Use whitespaces to separate multiple parent URIs. */
|
|
38
|
+
parent?: string;
|
|
39
|
+
/** Deprecated. Use PlaySearch.approveApps. */
|
|
40
|
+
permission?: string[];
|
|
41
|
+
/** Options for displaying the managed Play Search apps page. */
|
|
42
|
+
playSearch?: AdministratorWebTokenSpecPlaySearch;
|
|
43
|
+
/** Options for displaying the Private Apps page. */
|
|
44
|
+
privateApps?: AdministratorWebTokenSpecPrivateApps;
|
|
45
|
+
/** Options for displaying the Organize apps page. */
|
|
46
|
+
storeBuilder?: AdministratorWebTokenSpecStoreBuilder;
|
|
47
|
+
/** Options for displaying the Web Apps page. */
|
|
48
|
+
webApps?: AdministratorWebTokenSpecWebApps;
|
|
49
|
+
/** Options for displaying the Zero Touch page. */
|
|
50
|
+
zeroTouch?: AdministratorWebTokenSpecZeroTouch;
|
|
51
|
+
}
|
|
52
|
+
interface AdministratorWebTokenSpecManagedConfigurations {
|
|
53
|
+
/** Whether the Managed Configuration page is displayed. Default is true. */
|
|
54
|
+
enabled?: boolean;
|
|
55
|
+
}
|
|
56
|
+
interface AdministratorWebTokenSpecPlaySearch {
|
|
57
|
+
/** Allow access to the iframe in approve mode. Default is false. */
|
|
58
|
+
approveApps?: boolean;
|
|
59
|
+
/** Whether the managed Play Search apps page is displayed. Default is true. */
|
|
60
|
+
enabled?: boolean;
|
|
61
|
+
}
|
|
62
|
+
interface AdministratorWebTokenSpecPrivateApps {
|
|
63
|
+
/** Whether the Private Apps page is displayed. Default is true. */
|
|
64
|
+
enabled?: boolean;
|
|
65
|
+
}
|
|
66
|
+
interface AdministratorWebTokenSpecStoreBuilder {
|
|
67
|
+
/** Whether the Organize apps page is displayed. Default is true. */
|
|
68
|
+
enabled?: boolean;
|
|
69
|
+
}
|
|
70
|
+
interface AdministratorWebTokenSpecWebApps {
|
|
71
|
+
/** Whether the Web Apps page is displayed. Default is true. */
|
|
72
|
+
enabled?: boolean;
|
|
73
|
+
}
|
|
74
|
+
interface AdministratorWebTokenSpecZeroTouch {
|
|
75
|
+
/** Whether zero-touch embedded UI is usable with this token. If enabled, the admin can link zero-touch customers to this enterprise. */
|
|
76
|
+
enabled?: boolean;
|
|
77
|
+
}
|
|
78
|
+
interface AppRestrictionsSchema {
|
|
79
|
+
/** Deprecated. */
|
|
80
|
+
kind?: string;
|
|
81
|
+
/** The set of restrictions that make up this schema. */
|
|
82
|
+
restrictions?: AppRestrictionsSchemaRestriction[];
|
|
83
|
+
}
|
|
84
|
+
interface AppRestrictionsSchemaChangeEvent {
|
|
85
|
+
/** The id of the product (e.g. "app:com.google.android.gm") for which the app restriction schema changed. This field will always be present. */
|
|
86
|
+
productId?: string;
|
|
87
|
+
}
|
|
88
|
+
interface AppRestrictionsSchemaRestriction {
|
|
89
|
+
/** The default value of the restriction. bundle and bundleArray restrictions never have a default value. */
|
|
90
|
+
defaultValue?: AppRestrictionsSchemaRestrictionRestrictionValue;
|
|
91
|
+
/** A longer description of the restriction, giving more detail of what it affects. */
|
|
92
|
+
description?: string;
|
|
93
|
+
/** For choice or multiselect restrictions, the list of possible entries' human-readable names. */
|
|
94
|
+
entry?: string[];
|
|
95
|
+
/**
|
|
96
|
+
* For choice or multiselect restrictions, the list of possible entries' machine-readable values. These values should be used in the configuration, either as a single string value for
|
|
97
|
+
* a choice restriction or in a stringArray for a multiselect restriction.
|
|
98
|
+
*/
|
|
99
|
+
entryValue?: string[];
|
|
100
|
+
/** The unique key that the product uses to identify the restriction, e.g. "com.google.android.gm.fieldname". */
|
|
101
|
+
key?: string;
|
|
102
|
+
/**
|
|
103
|
+
* For bundle or bundleArray restrictions, the list of nested restrictions. A bundle restriction is always nested within a bundleArray restriction, and a bundleArray restriction is at
|
|
104
|
+
* most two levels deep.
|
|
105
|
+
*/
|
|
106
|
+
nestedRestriction?: AppRestrictionsSchemaRestriction[];
|
|
107
|
+
/** The type of the restriction. */
|
|
108
|
+
restrictionType?: string;
|
|
109
|
+
/** The name of the restriction. */
|
|
110
|
+
title?: string;
|
|
111
|
+
}
|
|
112
|
+
interface AppRestrictionsSchemaRestrictionRestrictionValue {
|
|
113
|
+
/** The type of the value being provided. */
|
|
114
|
+
type?: string;
|
|
115
|
+
/** The boolean value - this will only be present if type is bool. */
|
|
116
|
+
valueBool?: boolean;
|
|
117
|
+
/** The integer value - this will only be present if type is integer. */
|
|
118
|
+
valueInteger?: number;
|
|
119
|
+
/** The list of string values - this will only be present if type is multiselect. */
|
|
120
|
+
valueMultiselect?: string[];
|
|
121
|
+
/** The string value - this will be present for types string, choice and hidden. */
|
|
122
|
+
valueString?: string;
|
|
123
|
+
}
|
|
124
|
+
interface ApprovalUrlInfo {
|
|
125
|
+
/** A URL that displays a product's permissions and that can also be used to approve the product with the Products.approve call. */
|
|
126
|
+
approvalUrl?: string;
|
|
127
|
+
}
|
|
128
|
+
interface AppState {
|
|
129
|
+
/** List of keyed app states. This field will always be present. */
|
|
130
|
+
keyedAppState?: KeyedAppState[];
|
|
131
|
+
/** The package name of the app. This field will always be present. */
|
|
132
|
+
packageName?: string;
|
|
133
|
+
}
|
|
134
|
+
interface AppUpdateEvent {
|
|
135
|
+
/** The id of the product (e.g. "app:com.google.android.gm") that was updated. This field will always be present. */
|
|
136
|
+
productId?: string;
|
|
137
|
+
}
|
|
138
|
+
interface AppVersion {
|
|
139
|
+
/** True if this version is a production APK. */
|
|
140
|
+
isProduction?: boolean;
|
|
141
|
+
/** Deprecated, use trackId instead. */
|
|
142
|
+
track?: string;
|
|
143
|
+
/** Track ids that the app version is published in. Replaces the track field (deprecated), but doesn't include the production track (see isProduction instead). */
|
|
144
|
+
trackId?: string[];
|
|
145
|
+
/** Unique increasing identifier for the app version. */
|
|
146
|
+
versionCode?: number;
|
|
147
|
+
/** The string used in the Play store by the app developer to identify the version. The string is not necessarily unique or localized (for example, the string could be "1.4"). */
|
|
148
|
+
versionString?: string;
|
|
149
|
+
}
|
|
150
|
+
interface AuthenticationToken {
|
|
151
|
+
/** The authentication token to be passed to the device policy client on the device where it can be used to provision the account for which this token was generated. */
|
|
152
|
+
token?: string;
|
|
153
|
+
}
|
|
154
|
+
interface AutoInstallConstraint {
|
|
155
|
+
/** Charging state constraint. */
|
|
156
|
+
chargingStateConstraint?: string;
|
|
157
|
+
/** Device idle state constraint. */
|
|
158
|
+
deviceIdleStateConstraint?: string;
|
|
159
|
+
/** Network type constraint. */
|
|
160
|
+
networkTypeConstraint?: string;
|
|
161
|
+
}
|
|
162
|
+
interface AutoInstallPolicy {
|
|
163
|
+
/** The constraints for auto-installing the app. You can specify a maximum of one constraint. */
|
|
164
|
+
autoInstallConstraint?: AutoInstallConstraint[];
|
|
165
|
+
/** The auto-install mode. If unset defaults to "doNotAutoInstall". */
|
|
166
|
+
autoInstallMode?: string;
|
|
167
|
+
/** The priority of the install, as an unsigned integer. A lower number means higher priority. */
|
|
168
|
+
autoInstallPriority?: number;
|
|
169
|
+
/**
|
|
170
|
+
* The minimum version of the app. If a lower version of the app is installed, then the app will be auto-updated according to the auto-install constraints, instead of waiting for the
|
|
171
|
+
* regular auto-update. You can set a minimum version code for at most 20 apps per device.
|
|
172
|
+
*/
|
|
173
|
+
minimumVersionCode?: number;
|
|
174
|
+
}
|
|
175
|
+
interface ConfigurationVariables {
|
|
176
|
+
/** The ID of the managed configurations settings. */
|
|
177
|
+
mcmId?: string;
|
|
178
|
+
/** The variable set that is attributed to the user. */
|
|
179
|
+
variableSet?: VariableSet[];
|
|
180
|
+
}
|
|
181
|
+
interface Device {
|
|
182
|
+
/** The Google Play Services Android ID for the device encoded as a lowercase hex string. For example, "123456789abcdef0". */
|
|
183
|
+
androidId?: string;
|
|
184
|
+
/**
|
|
185
|
+
* Identifies the extent to which the device is controlled by a managed Google Play EMM in various deployment configurations. Possible values include: - "managedDevice", a device that
|
|
186
|
+
* has the EMM's device policy controller (DPC) as the device owner. - "managedProfile", a device that has a profile managed by the DPC (DPC is profile owner) in addition to a
|
|
187
|
+
* separate, personal profile that is unavailable to the DPC. - "containerApp", no longer used (deprecated). - "unmanagedProfile", a device that has been allowed (by the domain's
|
|
188
|
+
* admin, using the Admin Console to enable the privilege) to use managed Google Play, but the profile is itself not owned by a DPC.
|
|
189
|
+
*/
|
|
190
|
+
managementType?: string;
|
|
191
|
+
/** The policy enforced on the device. */
|
|
192
|
+
policy?: Policy;
|
|
193
|
+
/** The device report updated with the latest app states. */
|
|
194
|
+
report?: DeviceReport;
|
|
195
|
+
}
|
|
196
|
+
interface DeviceReport {
|
|
197
|
+
/** List of app states set by managed apps on the device. App states are defined by the app's developers. This field will always be present. */
|
|
198
|
+
appState?: AppState[];
|
|
199
|
+
/** The timestamp of the last report update in milliseconds since epoch. This field will always be present. */
|
|
200
|
+
lastUpdatedTimestampMillis?: string;
|
|
201
|
+
}
|
|
202
|
+
interface DeviceReportUpdateEvent {
|
|
203
|
+
/** The Android ID of the device. This field will always be present. */
|
|
204
|
+
deviceId?: string;
|
|
205
|
+
/** The device report updated with the latest app states. This field will always be present. */
|
|
206
|
+
report?: DeviceReport;
|
|
207
|
+
/** The ID of the user. This field will always be present. */
|
|
208
|
+
userId?: string;
|
|
209
|
+
}
|
|
210
|
+
interface DevicesListResponse {
|
|
211
|
+
/** A managed device. */
|
|
212
|
+
device?: Device[];
|
|
213
|
+
}
|
|
214
|
+
interface DeviceState {
|
|
215
|
+
/**
|
|
216
|
+
* The state of the Google account on the device. "enabled" indicates that the Google account on the device can be used to access Google services (including Google Play), while
|
|
217
|
+
* "disabled" means that it cannot. A new device is initially in the "disabled" state.
|
|
218
|
+
*/
|
|
219
|
+
accountState?: string;
|
|
220
|
+
}
|
|
221
|
+
interface Enterprise {
|
|
222
|
+
/** Admins of the enterprise. This is only supported for enterprises created via the EMM-initiated flow. */
|
|
223
|
+
administrator?: Administrator[];
|
|
224
|
+
/** The unique ID for the enterprise. */
|
|
225
|
+
id?: string;
|
|
226
|
+
/** The name of the enterprise, for example, "Example, Inc". */
|
|
227
|
+
name?: string;
|
|
228
|
+
/** The enterprise's primary domain, such as "example.com". */
|
|
229
|
+
primaryDomain?: string;
|
|
230
|
+
}
|
|
231
|
+
interface EnterpriseAccount {
|
|
232
|
+
/** The email address of the service account. */
|
|
233
|
+
accountEmail?: string;
|
|
234
|
+
}
|
|
235
|
+
interface EnterpriseAuthenticationAppLinkConfig {
|
|
236
|
+
/** An authentication url. */
|
|
237
|
+
uri?: string;
|
|
238
|
+
}
|
|
239
|
+
interface EnterprisesListResponse {
|
|
240
|
+
/** An enterprise. */
|
|
241
|
+
enterprise?: Enterprise[];
|
|
242
|
+
}
|
|
243
|
+
interface EnterprisesSendTestPushNotificationResponse {
|
|
244
|
+
/** The message ID of the test push notification that was sent. */
|
|
245
|
+
messageId?: string;
|
|
246
|
+
/** The name of the Cloud Pub/Sub topic to which notifications for this enterprise's enrolled account will be sent. */
|
|
247
|
+
topicName?: string;
|
|
248
|
+
}
|
|
249
|
+
interface Entitlement {
|
|
250
|
+
/** The ID of the product that the entitlement is for. For example, "app:com.google.android.gm". */
|
|
251
|
+
productId?: string;
|
|
252
|
+
/** The reason for the entitlement. For example, "free" for free apps. This property is temporary: it will be replaced by the acquisition kind field of group licenses. */
|
|
253
|
+
reason?: string;
|
|
254
|
+
}
|
|
255
|
+
interface EntitlementsListResponse {
|
|
256
|
+
/** An entitlement of a user to a product (e.g. an app). For example, a free app that they have installed, or a paid app that they have been allocated a license to. */
|
|
257
|
+
entitlement?: Entitlement[];
|
|
258
|
+
}
|
|
259
|
+
interface GroupLicense {
|
|
260
|
+
/**
|
|
261
|
+
* How this group license was acquired. "bulkPurchase" means that this Grouplicenses resource was created because the enterprise purchased licenses for this product; otherwise, the
|
|
262
|
+
* value is "free" (for free products).
|
|
263
|
+
*/
|
|
264
|
+
acquisitionKind?: string;
|
|
265
|
+
/**
|
|
266
|
+
* Whether the product to which this group license relates is currently approved by the enterprise. Products are approved when a group license is first created, but this approval may
|
|
267
|
+
* be revoked by an enterprise admin via Google Play. Unapproved products will not be visible to end users in collections, and new entitlements to them should not normally be created.
|
|
268
|
+
*/
|
|
269
|
+
approval?: string;
|
|
270
|
+
/** The total number of provisioned licenses for this product. Returned by read operations, but ignored in write operations. */
|
|
271
|
+
numProvisioned?: number;
|
|
272
|
+
/**
|
|
273
|
+
* The number of purchased licenses (possibly in multiple purchases). If this field is omitted, then there is no limit on the number of licenses that can be provisioned (for example,
|
|
274
|
+
* if the acquisition kind is "free").
|
|
275
|
+
*/
|
|
276
|
+
numPurchased?: number;
|
|
277
|
+
/**
|
|
278
|
+
* The permission approval status of the product. This field is only set if the product is approved. Possible states are: - "currentApproved", the current set of permissions is
|
|
279
|
+
* approved, but additional permissions will require the administrator to reapprove the product (If the product was approved without specifying the approved permissions setting, then
|
|
280
|
+
* this is the default behavior.), - "needsReapproval", the product has unapproved permissions. No additional product licenses can be assigned until the product is reapproved, -
|
|
281
|
+
* "allCurrentAndFutureApproved", the current permissions are approved and any future permission updates will be automatically approved without administrator review.
|
|
282
|
+
*/
|
|
283
|
+
permissions?: string;
|
|
284
|
+
/** The ID of the product that the license is for. For example, "app:com.google.android.gm". */
|
|
285
|
+
productId?: string;
|
|
286
|
+
}
|
|
287
|
+
interface GroupLicensesListResponse {
|
|
288
|
+
/** A group license for a product approved for use in the enterprise. */
|
|
289
|
+
groupLicense?: GroupLicense[];
|
|
290
|
+
}
|
|
291
|
+
interface GroupLicenseUsersListResponse {
|
|
292
|
+
/** A user of an enterprise. */
|
|
293
|
+
user?: User[];
|
|
294
|
+
}
|
|
295
|
+
interface Install {
|
|
296
|
+
/**
|
|
297
|
+
* Install state. The state "installPending" means that an install request has recently been made and download to the device is in progress. The state "installed" means that the app
|
|
298
|
+
* has been installed. This field is read-only.
|
|
299
|
+
*/
|
|
300
|
+
installState?: string;
|
|
301
|
+
/** The ID of the product that the install is for. For example, "app:com.google.android.gm". */
|
|
302
|
+
productId?: string;
|
|
303
|
+
/** The version of the installed product. Guaranteed to be set only if the install state is "installed". */
|
|
304
|
+
versionCode?: number;
|
|
305
|
+
}
|
|
306
|
+
interface InstallFailureEvent {
|
|
307
|
+
/** The Android ID of the device. This field will always be present. */
|
|
308
|
+
deviceId?: string;
|
|
309
|
+
/** Additional details on the failure if applicable. */
|
|
310
|
+
failureDetails?: string;
|
|
311
|
+
/** The reason for the installation failure. This field will always be present. */
|
|
312
|
+
failureReason?: string;
|
|
313
|
+
/** The id of the product (e.g. "app:com.google.android.gm") for which the install failure event occured. This field will always be present. */
|
|
314
|
+
productId?: string;
|
|
315
|
+
/** The ID of the user. This field will always be present. */
|
|
316
|
+
userId?: string;
|
|
317
|
+
}
|
|
318
|
+
interface InstallsListResponse {
|
|
319
|
+
/** An installation of an app for a user on a specific device. The existence of an install implies that the user must have an entitlement to the app. */
|
|
320
|
+
install?: Install[];
|
|
321
|
+
}
|
|
322
|
+
interface KeyedAppState {
|
|
323
|
+
/** Additional field intended for machine-readable data. For example, a number or JSON object. To prevent XSS, we recommend removing any HTML from the data before displaying it. */
|
|
324
|
+
data?: string;
|
|
325
|
+
/**
|
|
326
|
+
* Key indicating what the app is providing a state for. The content of the key is set by the app's developer. To prevent XSS, we recommend removing any HTML from the key before
|
|
327
|
+
* displaying it. This field will always be present.
|
|
328
|
+
*/
|
|
329
|
+
key?: string;
|
|
330
|
+
/** Free-form, human-readable message describing the app state. For example, an error message. To prevent XSS, we recommend removing any HTML from the message before displaying it. */
|
|
331
|
+
message?: string;
|
|
332
|
+
/** Severity of the app state. This field will always be present. */
|
|
333
|
+
severity?: string;
|
|
334
|
+
/** Timestamp of when the app set the state in milliseconds since epoch. This field will always be present. */
|
|
335
|
+
stateTimestampMillis?: string;
|
|
336
|
+
}
|
|
337
|
+
interface LocalizedText {
|
|
338
|
+
/** The BCP47 tag for a locale. (e.g. "en-US", "de"). */
|
|
339
|
+
locale?: string;
|
|
340
|
+
/** The text localized in the associated locale. */
|
|
341
|
+
text?: string;
|
|
342
|
+
}
|
|
343
|
+
interface MaintenanceWindow {
|
|
344
|
+
/** Duration of the maintenance window, in milliseconds. The duration must be between 30 minutes and 24 hours (inclusive). */
|
|
345
|
+
durationMs?: string;
|
|
346
|
+
/** Start time of the maintenance window, in milliseconds after midnight on the device. Windows can span midnight. */
|
|
347
|
+
startTimeAfterMidnightMs?: string;
|
|
348
|
+
}
|
|
349
|
+
interface ManagedConfiguration {
|
|
350
|
+
/** Contains the ID of the managed configuration profile and the set of configuration variables (if any) defined for the user. */
|
|
351
|
+
configurationVariables?: ConfigurationVariables;
|
|
352
|
+
/** Deprecated. */
|
|
353
|
+
kind?: string;
|
|
354
|
+
/** The set of managed properties for this configuration. */
|
|
355
|
+
managedProperty?: ManagedProperty[];
|
|
356
|
+
/** The ID of the product that the managed configuration is for, e.g. "app:com.google.android.gm". */
|
|
357
|
+
productId?: string;
|
|
358
|
+
}
|
|
359
|
+
interface ManagedConfigurationsForDeviceListResponse {
|
|
360
|
+
/** A managed configuration for an app on a specific device. */
|
|
361
|
+
managedConfigurationForDevice?: ManagedConfiguration[];
|
|
362
|
+
}
|
|
363
|
+
interface ManagedConfigurationsForUserListResponse {
|
|
364
|
+
/** A managed configuration for an app for a specific user. */
|
|
365
|
+
managedConfigurationForUser?: ManagedConfiguration[];
|
|
366
|
+
}
|
|
367
|
+
interface ManagedConfigurationsSettings {
|
|
368
|
+
/** The last updated time of the managed configuration settings in milliseconds since 1970-01-01T00:00:00Z. */
|
|
369
|
+
lastUpdatedTimestampMillis?: string;
|
|
370
|
+
/** The ID of the managed configurations settings. */
|
|
371
|
+
mcmId?: string;
|
|
372
|
+
/** The name of the managed configurations settings. */
|
|
373
|
+
name?: string;
|
|
374
|
+
}
|
|
375
|
+
interface ManagedConfigurationsSettingsListResponse {
|
|
376
|
+
/** A managed configurations settings for an app that may be assigned to a group of users in an enterprise. */
|
|
377
|
+
managedConfigurationsSettings?: ManagedConfigurationsSettings[];
|
|
378
|
+
}
|
|
379
|
+
interface ManagedProperty {
|
|
380
|
+
/** The unique key that identifies the property. */
|
|
381
|
+
key?: string;
|
|
382
|
+
/** The boolean value - this will only be present if type of the property is bool. */
|
|
383
|
+
valueBool?: boolean;
|
|
384
|
+
/** The bundle of managed properties - this will only be present if type of the property is bundle. */
|
|
385
|
+
valueBundle?: ManagedPropertyBundle;
|
|
386
|
+
/** The list of bundles of properties - this will only be present if type of the property is bundle_array. */
|
|
387
|
+
valueBundleArray?: ManagedPropertyBundle[];
|
|
388
|
+
/** The integer value - this will only be present if type of the property is integer. */
|
|
389
|
+
valueInteger?: number;
|
|
390
|
+
/** The string value - this will only be present if type of the property is string, choice or hidden. */
|
|
391
|
+
valueString?: string;
|
|
392
|
+
/** The list of string values - this will only be present if type of the property is multiselect. */
|
|
393
|
+
valueStringArray?: string[];
|
|
394
|
+
}
|
|
395
|
+
interface ManagedPropertyBundle {
|
|
396
|
+
/** The list of managed properties. */
|
|
397
|
+
managedProperty?: ManagedProperty[];
|
|
398
|
+
}
|
|
399
|
+
interface NewDeviceEvent {
|
|
400
|
+
/** The Android ID of the device. This field will always be present. */
|
|
401
|
+
deviceId?: string;
|
|
402
|
+
/** Policy app on the device. */
|
|
403
|
+
dpcPackageName?: string;
|
|
404
|
+
/**
|
|
405
|
+
* Identifies the extent to which the device is controlled by an Android EMM in various deployment configurations. Possible values include: - "managedDevice", a device where the DPC is
|
|
406
|
+
* set as device owner, - "managedProfile", a device where the DPC is set as profile owner.
|
|
407
|
+
*/
|
|
408
|
+
managementType?: string;
|
|
409
|
+
/** The ID of the user. This field will always be present. */
|
|
410
|
+
userId?: string;
|
|
411
|
+
}
|
|
412
|
+
interface NewPermissionsEvent {
|
|
413
|
+
/** The set of permissions that the enterprise admin has already approved for this application. Use Permissions.Get on the EMM API to retrieve details about these permissions. */
|
|
414
|
+
approvedPermissions?: string[];
|
|
415
|
+
/** The id of the product (e.g. "app:com.google.android.gm") for which new permissions were added. This field will always be present. */
|
|
416
|
+
productId?: string;
|
|
417
|
+
/** The set of permissions that the app is currently requesting. Use Permissions.Get on the EMM API to retrieve details about these permissions. */
|
|
418
|
+
requestedPermissions?: string[];
|
|
419
|
+
}
|
|
420
|
+
interface Notification {
|
|
421
|
+
/** Notifications about new app restrictions schema changes. */
|
|
422
|
+
appRestrictionsSchemaChangeEvent?: AppRestrictionsSchemaChangeEvent;
|
|
423
|
+
/** Notifications about app updates. */
|
|
424
|
+
appUpdateEvent?: AppUpdateEvent;
|
|
425
|
+
/** Notifications about device report updates. */
|
|
426
|
+
deviceReportUpdateEvent?: DeviceReportUpdateEvent;
|
|
427
|
+
/** The ID of the enterprise for which the notification is sent. This will always be present. */
|
|
428
|
+
enterpriseId?: string;
|
|
429
|
+
/** Notifications about an app installation failure. */
|
|
430
|
+
installFailureEvent?: InstallFailureEvent;
|
|
431
|
+
/** Notifications about new devices. */
|
|
432
|
+
newDeviceEvent?: NewDeviceEvent;
|
|
433
|
+
/** Notifications about new app permissions. */
|
|
434
|
+
newPermissionsEvent?: NewPermissionsEvent;
|
|
435
|
+
/** Type of the notification. */
|
|
436
|
+
notificationType?: string;
|
|
437
|
+
/** Notifications about changes to a product's approval status. */
|
|
438
|
+
productApprovalEvent?: ProductApprovalEvent;
|
|
439
|
+
/** Notifications about product availability changes. */
|
|
440
|
+
productAvailabilityChangeEvent?: ProductAvailabilityChangeEvent;
|
|
441
|
+
/** The time when the notification was published in milliseconds since 1970-01-01T00:00:00Z. This will always be present. */
|
|
442
|
+
timestampMillis?: string;
|
|
443
|
+
}
|
|
444
|
+
interface NotificationSet {
|
|
445
|
+
/** The notifications received, or empty if no notifications are present. */
|
|
446
|
+
notification?: Notification[];
|
|
447
|
+
/** The notification set ID, required to mark the notification as received with the Enterprises.AcknowledgeNotification API. This will be omitted if no notifications are present. */
|
|
448
|
+
notificationSetId?: string;
|
|
449
|
+
}
|
|
450
|
+
interface PageInfo {
|
|
451
|
+
/** Maximum number of results returned in one page. ! The number of results included in the API response. */
|
|
452
|
+
resultPerPage?: number;
|
|
453
|
+
/** Index of the first result returned in the current page. */
|
|
454
|
+
startIndex?: number;
|
|
455
|
+
/** Total number of results available on the backend ! The total number of results in the result set. */
|
|
456
|
+
totalResults?: number;
|
|
457
|
+
}
|
|
458
|
+
interface Permission {
|
|
459
|
+
/** A longer description of the Permissions resource, giving more details of what it affects. */
|
|
460
|
+
description?: string;
|
|
461
|
+
/** The name of the permission. */
|
|
462
|
+
name?: string;
|
|
463
|
+
/** An opaque string uniquely identifying the permission. */
|
|
464
|
+
permissionId?: string;
|
|
465
|
+
}
|
|
466
|
+
interface Policy {
|
|
467
|
+
/**
|
|
468
|
+
* Deprecated. Use autoUpdateMode instead. When autoUpdateMode is set to AUTO_UPDATE_POSTPONED or AUTO_UPDATE_HIGH_PRIORITY, this field has no effect. "choiceToTheUser" allows the
|
|
469
|
+
* device's user to configure the app update policy. "always" enables auto updates. "never" disables auto updates. "wifiOnly" enables auto updates only when the device is connected to
|
|
470
|
+
* wifi.
|
|
471
|
+
*/
|
|
472
|
+
autoUpdatePolicy?: string;
|
|
473
|
+
/** Whether the device reports app states to the EMM. The default value is "deviceReportDisabled". */
|
|
474
|
+
deviceReportPolicy?: string;
|
|
475
|
+
/** The maintenance window defining when apps running in the foreground should be updated. */
|
|
476
|
+
maintenanceWindow?: MaintenanceWindow;
|
|
477
|
+
/**
|
|
478
|
+
* The availability granted to the device for the specified products. "all" gives the device access to all products, regardless of approval status. "all" does not enable automatic
|
|
479
|
+
* visibility of "alpha" or "beta" tracks. "whitelist" grants the device access the products specified in productPolicy[]. Only products that are approved or products that were
|
|
480
|
+
* previously approved (products with revoked approval) by the enterprise can be whitelisted. If no value is provided, the availability set at the user level is applied by default.
|
|
481
|
+
*/
|
|
482
|
+
productAvailabilityPolicy?: string;
|
|
483
|
+
/** The list of product policies. The productAvailabilityPolicy needs to be set to WHITELIST or ALL for the product policies to be applied. */
|
|
484
|
+
productPolicy?: ProductPolicy[];
|
|
485
|
+
}
|
|
486
|
+
interface Product {
|
|
487
|
+
/** The app restriction schema */
|
|
488
|
+
appRestrictionsSchema?: AppRestrictionsSchema;
|
|
489
|
+
/** The tracks visible to the enterprise. */
|
|
490
|
+
appTracks?: TrackInfo[];
|
|
491
|
+
/** App versions currently available for this product. */
|
|
492
|
+
appVersion?: AppVersion[];
|
|
493
|
+
/** The name of the author of the product (for example, the app developer). */
|
|
494
|
+
authorName?: string;
|
|
495
|
+
/** The countries which this app is available in. */
|
|
496
|
+
availableCountries?: string[];
|
|
497
|
+
/** Deprecated, use appTracks instead. */
|
|
498
|
+
availableTracks?: string[];
|
|
499
|
+
/** The app category (e.g. RACING, SOCIAL, etc.) */
|
|
500
|
+
category?: string;
|
|
501
|
+
/** The content rating for this app. */
|
|
502
|
+
contentRating?: string;
|
|
503
|
+
/** The localized promotional description, if available. */
|
|
504
|
+
description?: string;
|
|
505
|
+
/** A link to the (consumer) Google Play details page for the product. */
|
|
506
|
+
detailsUrl?: string;
|
|
507
|
+
/**
|
|
508
|
+
* How and to whom the package is made available. The value publicGoogleHosted means that the package is available through the Play store and not restricted to a specific enterprise.
|
|
509
|
+
* The value privateGoogleHosted means that the package is a private app (restricted to an enterprise) but hosted by Google. The value privateSelfHosted means that the package is a
|
|
510
|
+
* private app (restricted to an enterprise) and is privately hosted.
|
|
511
|
+
*/
|
|
512
|
+
distributionChannel?: string;
|
|
513
|
+
/** Noteworthy features (if any) of this product. */
|
|
514
|
+
features?: string[];
|
|
515
|
+
/** A link to an image that can be used as an icon for the product. This image is suitable for use at up to 512px x 512px. */
|
|
516
|
+
iconUrl?: string;
|
|
517
|
+
/** The approximate time (within 7 days) the app was last published, expressed in milliseconds since epoch. */
|
|
518
|
+
lastUpdatedTimestampMillis?: string;
|
|
519
|
+
/** The minimum Android SDK necessary to run the app. */
|
|
520
|
+
minAndroidSdkVersion?: number;
|
|
521
|
+
/** A list of permissions required by the app. */
|
|
522
|
+
permissions?: ProductPermission[];
|
|
523
|
+
/** A string of the form *app:<package name>*. For example, app:com.google.android.gm represents the Gmail app. */
|
|
524
|
+
productId?: string;
|
|
525
|
+
/**
|
|
526
|
+
* Whether this product is free, free with in-app purchases, or paid. If the pricing is unknown, this means the product is not generally available anymore (even though it might still
|
|
527
|
+
* be available to people who own it).
|
|
528
|
+
*/
|
|
529
|
+
productPricing?: string;
|
|
530
|
+
/** A description of the recent changes made to the app. */
|
|
531
|
+
recentChanges?: string;
|
|
532
|
+
/** Deprecated. */
|
|
533
|
+
requiresContainerApp?: boolean;
|
|
534
|
+
/** A list of screenshot links representing the app. */
|
|
535
|
+
screenshotUrls?: string[];
|
|
536
|
+
/** The certificate used to sign this product. */
|
|
537
|
+
signingCertificate?: ProductSigningCertificate;
|
|
538
|
+
/** A link to a smaller image that can be used as an icon for the product. This image is suitable for use at up to 128px x 128px. */
|
|
539
|
+
smallIconUrl?: string;
|
|
540
|
+
/** The name of the product. */
|
|
541
|
+
title?: string;
|
|
542
|
+
/** A link to the managed Google Play details page for the product, for use by an Enterprise admin. */
|
|
543
|
+
workDetailsUrl?: string;
|
|
544
|
+
}
|
|
545
|
+
interface ProductApprovalEvent {
|
|
546
|
+
/** Whether the product was approved or unapproved. This field will always be present. */
|
|
547
|
+
approved?: string;
|
|
548
|
+
/** The id of the product (e.g. "app:com.google.android.gm") for which the approval status has changed. This field will always be present. */
|
|
549
|
+
productId?: string;
|
|
550
|
+
}
|
|
551
|
+
interface ProductAvailabilityChangeEvent {
|
|
552
|
+
/** The new state of the product. This field will always be present. */
|
|
553
|
+
availabilityStatus?: string;
|
|
554
|
+
/** The id of the product (e.g. "app:com.google.android.gm") for which the product availability changed. This field will always be present. */
|
|
555
|
+
productId?: string;
|
|
556
|
+
}
|
|
557
|
+
interface ProductPermission {
|
|
558
|
+
/** An opaque string uniquely identifying the permission. */
|
|
559
|
+
permissionId?: string;
|
|
560
|
+
/** Whether the permission has been accepted or not. */
|
|
561
|
+
state?: string;
|
|
562
|
+
}
|
|
563
|
+
interface ProductPermissions {
|
|
564
|
+
/** The permissions required by the app. */
|
|
565
|
+
permission?: ProductPermission[];
|
|
566
|
+
/** The ID of the app that the permissions relate to, e.g. "app:com.google.android.gm". */
|
|
567
|
+
productId?: string;
|
|
568
|
+
}
|
|
569
|
+
interface ProductPolicy {
|
|
570
|
+
/** The auto-install policy for the product. */
|
|
571
|
+
autoInstallPolicy?: AutoInstallPolicy;
|
|
572
|
+
/** The auto-update mode for the product. */
|
|
573
|
+
autoUpdateMode?: string;
|
|
574
|
+
/**
|
|
575
|
+
* An authentication URL configuration for the authenticator app of an identity provider. This helps to launch the identity provider's authenticator app during the authentication
|
|
576
|
+
* happening in a private app using Android WebView. Authenticator app should already be the [default
|
|
577
|
+
* handler](https://developer.android.com/training/app-links/verify-site-associations) for the authentication url on the device.
|
|
578
|
+
*/
|
|
579
|
+
enterpriseAuthenticationAppLinkConfigs?: EnterpriseAuthenticationAppLinkConfig[];
|
|
580
|
+
/** The managed configuration for the product. */
|
|
581
|
+
managedConfiguration?: ManagedConfiguration;
|
|
582
|
+
/** The ID of the product. For example, "app:com.google.android.gm". */
|
|
583
|
+
productId?: string;
|
|
584
|
+
/** Grants the device visibility to the specified product release track(s), identified by trackIds. The list of release tracks of a product can be obtained by calling Products.Get. */
|
|
585
|
+
trackIds?: string[];
|
|
586
|
+
/** Deprecated. Use trackIds instead. */
|
|
587
|
+
tracks?: string[];
|
|
588
|
+
}
|
|
589
|
+
interface ProductsApproveRequest {
|
|
590
|
+
/**
|
|
591
|
+
* The approval URL that was shown to the user. Only the permissions shown to the user with that URL will be accepted, which may not be the product's entire set of permissions. For
|
|
592
|
+
* example, the URL may only display new permissions from an update after the product was approved, or not include new permissions if the product was updated since the URL was
|
|
593
|
+
* generated.
|
|
594
|
+
*/
|
|
595
|
+
approvalUrlInfo?: ApprovalUrlInfo;
|
|
596
|
+
/**
|
|
597
|
+
* Sets how new permission requests for the product are handled. "allPermissions" automatically approves all current and future permissions for the product. "currentPermissionsOnly"
|
|
598
|
+
* approves the current set of permissions for the product, but any future permissions added through updates will require manual reapproval. If not specified, only the current set of
|
|
599
|
+
* permissions will be approved.
|
|
600
|
+
*/
|
|
601
|
+
approvedPermissions?: string;
|
|
602
|
+
}
|
|
603
|
+
interface ProductSet {
|
|
604
|
+
/** The list of product IDs making up the set of products. */
|
|
605
|
+
productId?: string[];
|
|
606
|
+
/**
|
|
607
|
+
* The interpretation of this product set. "unknown" should never be sent and is ignored if received. "whitelist" means that the user is entitled to access the product set.
|
|
608
|
+
* "includeAll" means that all products are accessible, including products that are approved, products with revoked approval, and products that have never been approved. "allApproved"
|
|
609
|
+
* means that the user is entitled to access all products that are approved for the enterprise. If the value is "allApproved" or "includeAll", the productId field is ignored. If no
|
|
610
|
+
* value is provided, it is interpreted as "whitelist" for backwards compatibility. Further "allApproved" or "includeAll" does not enable automatic visibility of "alpha" or "beta"
|
|
611
|
+
* tracks for Android app. Use ProductVisibility to enable "alpha" or "beta" tracks per user.
|
|
612
|
+
*/
|
|
613
|
+
productSetBehavior?: string;
|
|
614
|
+
/**
|
|
615
|
+
* Additional list of product IDs making up the product set. Unlike the productID array, in this list It's possible to specify which tracks (alpha, beta, production) of a product are
|
|
616
|
+
* visible to the user. See ProductVisibility and its fields for more information. Specifying the same product ID both here and in the productId array is not allowed and it will result
|
|
617
|
+
* in an error.
|
|
618
|
+
*/
|
|
619
|
+
productVisibility?: ProductVisibility[];
|
|
620
|
+
}
|
|
621
|
+
interface ProductsGenerateApprovalUrlResponse {
|
|
622
|
+
/**
|
|
623
|
+
* A URL that can be rendered in an iframe to display the permissions (if any) of a product. This URL can be used to approve the product only once and only within 24 hours of being
|
|
624
|
+
* generated, using the Products.approve call. If the product is currently unapproved and has no permissions, this URL will point to an empty page. If the product is currently
|
|
625
|
+
* approved, a URL will only be generated if that product has added permissions since it was last approved, and the URL will only display those new permissions that have not yet been
|
|
626
|
+
* accepted.
|
|
627
|
+
*/
|
|
628
|
+
url?: string;
|
|
629
|
+
}
|
|
630
|
+
interface ProductSigningCertificate {
|
|
631
|
+
/** The base64 urlsafe encoded SHA1 hash of the certificate. (This field is deprecated in favor of SHA2-256. It should not be used and may be removed at any time.) */
|
|
632
|
+
certificateHashSha1?: string;
|
|
633
|
+
/** The base64 urlsafe encoded SHA2-256 hash of the certificate. */
|
|
634
|
+
certificateHashSha256?: string;
|
|
635
|
+
}
|
|
636
|
+
interface ProductsListResponse {
|
|
637
|
+
/** General pagination information. */
|
|
638
|
+
pageInfo?: PageInfo;
|
|
639
|
+
/** Information about a product (e.g. an app) in the Google Play store, for display to an enterprise admin. */
|
|
640
|
+
product?: Product[];
|
|
641
|
+
/** Pagination information for token pagination. */
|
|
642
|
+
tokenPagination?: TokenPagination;
|
|
643
|
+
}
|
|
644
|
+
interface ProductVisibility {
|
|
645
|
+
/** The product ID to make visible to the user. Required for each item in the productVisibility list. */
|
|
646
|
+
productId?: string;
|
|
647
|
+
/** Grants the user visibility to the specified product track(s), identified by trackIds. */
|
|
648
|
+
trackIds?: string[];
|
|
649
|
+
/** Deprecated. Use trackIds instead. */
|
|
650
|
+
tracks?: string[];
|
|
651
|
+
}
|
|
652
|
+
interface ServiceAccount {
|
|
653
|
+
/** Credentials that can be used to authenticate as this ServiceAccount. */
|
|
654
|
+
key?: ServiceAccountKey;
|
|
655
|
+
/** The account name of the service account, in the form of an email address. Assigned by the server. */
|
|
656
|
+
name?: string;
|
|
657
|
+
}
|
|
658
|
+
interface ServiceAccountKey {
|
|
659
|
+
/** The body of the private key credentials file, in string format. This is only populated when the ServiceAccountKey is created, and is not stored by Google. */
|
|
660
|
+
data?: string;
|
|
661
|
+
/** An opaque, unique identifier for this ServiceAccountKey. Assigned by the server. */
|
|
662
|
+
id?: string;
|
|
663
|
+
/**
|
|
664
|
+
* Public key data for the credentials file. This is an X.509 cert. If you are using the googleCredentials key type, this is identical to the cert that can be retrieved by using the
|
|
665
|
+
* X.509 cert url inside of the credentials file.
|
|
666
|
+
*/
|
|
667
|
+
publicData?: string;
|
|
668
|
+
/** The file format of the generated key data. */
|
|
669
|
+
type?: string;
|
|
670
|
+
}
|
|
671
|
+
interface ServiceAccountKeysListResponse {
|
|
672
|
+
/** The service account credentials. */
|
|
673
|
+
serviceAccountKey?: ServiceAccountKey[];
|
|
674
|
+
}
|
|
675
|
+
interface SignupInfo {
|
|
676
|
+
/** An opaque token that will be required, along with the Enterprise Token, for obtaining the enterprise resource from CompleteSignup. */
|
|
677
|
+
completionToken?: string;
|
|
678
|
+
/** Deprecated. */
|
|
679
|
+
kind?: string;
|
|
680
|
+
/** A URL under which the Admin can sign up for an enterprise. The page pointed to cannot be rendered in an iframe. */
|
|
681
|
+
url?: string;
|
|
682
|
+
}
|
|
683
|
+
interface StoreCluster {
|
|
684
|
+
/** Unique ID of this cluster. Assigned by the server. Immutable once assigned. */
|
|
685
|
+
id?: string;
|
|
686
|
+
/**
|
|
687
|
+
* Ordered list of localized strings giving the name of this page. The text displayed is the one that best matches the user locale, or the first entry if there is no good match. There
|
|
688
|
+
* needs to be at least one entry.
|
|
689
|
+
*/
|
|
690
|
+
name?: LocalizedText[];
|
|
691
|
+
/**
|
|
692
|
+
* String (US-ASCII only) used to determine order of this cluster within the parent page's elements. Page elements are sorted in lexicographic order of this field. Duplicated values
|
|
693
|
+
* are allowed, but ordering between elements with duplicate order is undefined. The value of this field is never visible to a user, it is used solely for the purpose of defining an
|
|
694
|
+
* ordering. Maximum length is 256 characters.
|
|
695
|
+
*/
|
|
696
|
+
orderInPage?: string;
|
|
697
|
+
/** List of products in the order they are displayed in the cluster. There should not be duplicates within a cluster. */
|
|
698
|
+
productId?: string[];
|
|
699
|
+
}
|
|
700
|
+
interface StoreLayout {
|
|
701
|
+
/**
|
|
702
|
+
* The ID of the store page to be used as the homepage. The homepage is the first page shown in the managed Google Play Store. Not specifying a homepage is equivalent to setting the
|
|
703
|
+
* store layout type to "basic".
|
|
704
|
+
*/
|
|
705
|
+
homepageId?: string;
|
|
706
|
+
/**
|
|
707
|
+
* The store layout type. By default, this value is set to "basic" if the homepageId field is not set, and to "custom" otherwise. If set to "basic", the layout will consist of all
|
|
708
|
+
* approved apps that have been whitelisted for the user.
|
|
709
|
+
*/
|
|
710
|
+
storeLayoutType?: string;
|
|
711
|
+
}
|
|
712
|
+
interface StoreLayoutClustersListResponse {
|
|
713
|
+
/** A store cluster of an enterprise. */
|
|
714
|
+
cluster?: StoreCluster[];
|
|
715
|
+
}
|
|
716
|
+
interface StoreLayoutPagesListResponse {
|
|
717
|
+
/** A store page of an enterprise. */
|
|
718
|
+
page?: StorePage[];
|
|
719
|
+
}
|
|
720
|
+
interface StorePage {
|
|
721
|
+
/** Unique ID of this page. Assigned by the server. Immutable once assigned. */
|
|
722
|
+
id?: string;
|
|
723
|
+
/**
|
|
724
|
+
* Ordered list of pages a user should be able to reach from this page. The list can't include this page. It is recommended that the basic pages are created first, before adding the
|
|
725
|
+
* links between pages. The API doesn't verify that the pages exist or the pages are reachable.
|
|
726
|
+
*/
|
|
727
|
+
link?: string[];
|
|
728
|
+
/**
|
|
729
|
+
* Ordered list of localized strings giving the name of this page. The text displayed is the one that best matches the user locale, or the first entry if there is no good match. There
|
|
730
|
+
* needs to be at least one entry.
|
|
731
|
+
*/
|
|
732
|
+
name?: LocalizedText[];
|
|
733
|
+
}
|
|
734
|
+
interface TokenPagination {
|
|
735
|
+
/** Tokens to pass to the standard list field 'page_token'. Whenever available, tokens are preferred over manipulating start_index. */
|
|
736
|
+
nextPageToken?: string;
|
|
737
|
+
previousPageToken?: string;
|
|
738
|
+
}
|
|
739
|
+
interface TrackInfo {
|
|
740
|
+
/** A modifiable name for a track. This is the visible name in the play developer console. */
|
|
741
|
+
trackAlias?: string;
|
|
742
|
+
/** Unmodifiable, unique track identifier. This identifier is the releaseTrackId in the url of the play developer console page that displays the track information. */
|
|
743
|
+
trackId?: string;
|
|
744
|
+
}
|
|
745
|
+
interface User {
|
|
746
|
+
/**
|
|
747
|
+
* A unique identifier you create for this user, such as "user342" or "asset#44418". Do not use personally identifiable information (PII) for this property. Must always be set for
|
|
748
|
+
* EMM-managed users. Not set for Google-managed users.
|
|
749
|
+
*/
|
|
750
|
+
accountIdentifier?: string;
|
|
751
|
+
/**
|
|
752
|
+
* The type of account that this user represents. A userAccount can be installed on multiple devices, but a deviceAccount is specific to a single device. An EMM-managed user
|
|
753
|
+
* (emmManaged) can be either type (userAccount, deviceAccount), but a Google-managed user (googleManaged) is always a userAccount.
|
|
754
|
+
*/
|
|
755
|
+
accountType?: string;
|
|
756
|
+
/**
|
|
757
|
+
* The name that will appear in user interfaces. Setting this property is optional when creating EMM-managed users. If you do set this property, use something generic about the
|
|
758
|
+
* organization (such as "Example, Inc.") or your name (as EMM). Not used for Google-managed user accounts. @mutable androidenterprise.users.update
|
|
759
|
+
*/
|
|
760
|
+
displayName?: string;
|
|
761
|
+
/** The unique ID for the user. */
|
|
762
|
+
id?: string;
|
|
763
|
+
/**
|
|
764
|
+
* The entity that manages the user. With googleManaged users, the source of truth is Google so EMMs have to make sure a Google Account exists for the user. With emmManaged users, the
|
|
765
|
+
* EMM is in charge.
|
|
766
|
+
*/
|
|
767
|
+
managementType?: string;
|
|
768
|
+
/** The user's primary email address, for example, "jsmith@example.com". Will always be set for Google managed users and not set for EMM managed users. */
|
|
769
|
+
primaryEmail?: string;
|
|
770
|
+
}
|
|
771
|
+
interface UsersListResponse {
|
|
772
|
+
/** A user of an enterprise. */
|
|
773
|
+
user?: User[];
|
|
774
|
+
}
|
|
775
|
+
interface VariableSet {
|
|
776
|
+
/** The placeholder string; defined by EMM. */
|
|
777
|
+
placeholder?: string;
|
|
778
|
+
/** The value of the placeholder, specific to the user. */
|
|
779
|
+
userValue?: string;
|
|
780
|
+
}
|
|
781
|
+
interface WebApp {
|
|
782
|
+
/**
|
|
783
|
+
* The display mode of the web app. Possible values include: - "minimalUi", the device's status bar, navigation bar, the app's URL, and a refresh button are visible when the app is
|
|
784
|
+
* open. For HTTP URLs, you can only select this option. - "standalone", the device's status bar and navigation bar are visible when the app is open. - "fullScreen", the app opens in
|
|
785
|
+
* full screen mode, hiding the device's status and navigation bars. All browser UI elements, page URL, system status bar and back button are not visible, and the web app takes up the
|
|
786
|
+
* entirety of the available display area.
|
|
787
|
+
*/
|
|
788
|
+
displayMode?: string;
|
|
789
|
+
/** A list of icons representing this website. If absent, a default icon (for create) or the current icon (for update) will be used. */
|
|
790
|
+
icons?: WebAppIcon[];
|
|
791
|
+
/** A flag whether the app has been published to the Play store yet. */
|
|
792
|
+
isPublished?: boolean;
|
|
793
|
+
/** The start URL, i.e. the URL that should load when the user opens the application. */
|
|
794
|
+
startUrl?: string;
|
|
795
|
+
/** 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). */
|
|
796
|
+
title?: string;
|
|
797
|
+
/**
|
|
798
|
+
* 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
|
|
799
|
+
* up-to-date.
|
|
800
|
+
*/
|
|
801
|
+
versionCode?: string;
|
|
802
|
+
/** The ID of the application. A string of the form "app:<package name>" where the package name always starts with the prefix "com.google.enterprise.webapp." followed by a random id. */
|
|
803
|
+
webAppId?: string;
|
|
804
|
+
}
|
|
805
|
+
interface WebAppIcon {
|
|
806
|
+
/**
|
|
807
|
+
* 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. -
|
|
808
|
+
* The image should ideally be square. - The image should ideally have a size of 512x512.
|
|
809
|
+
*/
|
|
810
|
+
imageData?: string;
|
|
811
|
+
}
|
|
812
|
+
interface WebAppsListResponse {
|
|
813
|
+
/** The manifest describing a web app. */
|
|
814
|
+
webApp?: WebApp[];
|
|
815
|
+
}
|
|
816
|
+
interface DevicesResource {
|
|
817
|
+
/**
|
|
818
|
+
* Uploads a report containing any changes in app states on the device since the last report was generated. You can call this method up to 3 times every 24 hours for a given device. If
|
|
819
|
+
* you exceed the quota, then the Google Play EMM API returns HTTP 429 Too Many Requests.
|
|
820
|
+
*/
|
|
821
|
+
forceReportUpload(request?: {
|
|
822
|
+
/** V1 error format. */
|
|
823
|
+
"$.xgafv"?: string;
|
|
824
|
+
/** OAuth access token. */
|
|
825
|
+
access_token?: string;
|
|
826
|
+
/** Data format for response. */
|
|
827
|
+
alt?: string;
|
|
828
|
+
/** JSONP */
|
|
829
|
+
callback?: string;
|
|
830
|
+
/** The ID of the device. */
|
|
831
|
+
deviceId: string;
|
|
832
|
+
/** The ID of the enterprise. */
|
|
833
|
+
enterpriseId: string;
|
|
834
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
835
|
+
fields?: string;
|
|
836
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
837
|
+
key?: string;
|
|
838
|
+
/** OAuth 2.0 token for the current user. */
|
|
839
|
+
oauth_token?: string;
|
|
840
|
+
/** Returns response with indentations and line breaks. */
|
|
841
|
+
prettyPrint?: boolean;
|
|
842
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
843
|
+
quotaUser?: string;
|
|
844
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
845
|
+
upload_protocol?: string;
|
|
846
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
847
|
+
uploadType?: string;
|
|
848
|
+
/** The ID of the user. */
|
|
849
|
+
userId: string;
|
|
850
|
+
}): Request<void>;
|
|
851
|
+
/** Retrieves the details of a device. */
|
|
852
|
+
get(request?: {
|
|
853
|
+
/** V1 error format. */
|
|
854
|
+
"$.xgafv"?: string;
|
|
855
|
+
/** OAuth access token. */
|
|
856
|
+
access_token?: string;
|
|
857
|
+
/** Data format for response. */
|
|
858
|
+
alt?: string;
|
|
859
|
+
/** JSONP */
|
|
860
|
+
callback?: string;
|
|
861
|
+
/** The ID of the device. */
|
|
862
|
+
deviceId: string;
|
|
863
|
+
/** The ID of the enterprise. */
|
|
864
|
+
enterpriseId: string;
|
|
865
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
866
|
+
fields?: string;
|
|
867
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
868
|
+
key?: string;
|
|
869
|
+
/** OAuth 2.0 token for the current user. */
|
|
870
|
+
oauth_token?: string;
|
|
871
|
+
/** Returns response with indentations and line breaks. */
|
|
872
|
+
prettyPrint?: boolean;
|
|
873
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
874
|
+
quotaUser?: string;
|
|
875
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
876
|
+
upload_protocol?: string;
|
|
877
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
878
|
+
uploadType?: string;
|
|
879
|
+
/** The ID of the user. */
|
|
880
|
+
userId: string;
|
|
881
|
+
}): Request<Device>;
|
|
882
|
+
/**
|
|
883
|
+
* Retrieves whether a device's access to Google services is enabled or disabled. The device state takes effect only if enforcing EMM policies on Android devices is enabled in the
|
|
884
|
+
* Google Admin Console. Otherwise, the device state is ignored and all devices are allowed access to Google services. This is only supported for Google-managed users.
|
|
885
|
+
*/
|
|
886
|
+
getState(request?: {
|
|
887
|
+
/** V1 error format. */
|
|
888
|
+
"$.xgafv"?: string;
|
|
889
|
+
/** OAuth access token. */
|
|
890
|
+
access_token?: string;
|
|
891
|
+
/** Data format for response. */
|
|
892
|
+
alt?: string;
|
|
893
|
+
/** JSONP */
|
|
894
|
+
callback?: string;
|
|
895
|
+
/** The ID of the device. */
|
|
896
|
+
deviceId: string;
|
|
897
|
+
/** The ID of the enterprise. */
|
|
898
|
+
enterpriseId: string;
|
|
899
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
900
|
+
fields?: string;
|
|
901
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
902
|
+
key?: string;
|
|
903
|
+
/** OAuth 2.0 token for the current user. */
|
|
904
|
+
oauth_token?: string;
|
|
905
|
+
/** Returns response with indentations and line breaks. */
|
|
906
|
+
prettyPrint?: boolean;
|
|
907
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
908
|
+
quotaUser?: string;
|
|
909
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
910
|
+
upload_protocol?: string;
|
|
911
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
912
|
+
uploadType?: string;
|
|
913
|
+
/** The ID of the user. */
|
|
914
|
+
userId: string;
|
|
915
|
+
}): Request<DeviceState>;
|
|
916
|
+
/** Retrieves the IDs of all of a user's devices. */
|
|
917
|
+
list(request?: {
|
|
918
|
+
/** V1 error format. */
|
|
919
|
+
"$.xgafv"?: string;
|
|
920
|
+
/** OAuth access token. */
|
|
921
|
+
access_token?: string;
|
|
922
|
+
/** Data format for response. */
|
|
923
|
+
alt?: string;
|
|
924
|
+
/** JSONP */
|
|
925
|
+
callback?: string;
|
|
926
|
+
/** The ID of the enterprise. */
|
|
927
|
+
enterpriseId: string;
|
|
928
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
929
|
+
fields?: string;
|
|
930
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
931
|
+
key?: string;
|
|
932
|
+
/** OAuth 2.0 token for the current user. */
|
|
933
|
+
oauth_token?: string;
|
|
934
|
+
/** Returns response with indentations and line breaks. */
|
|
935
|
+
prettyPrint?: boolean;
|
|
936
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
937
|
+
quotaUser?: string;
|
|
938
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
939
|
+
upload_protocol?: string;
|
|
940
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
941
|
+
uploadType?: string;
|
|
942
|
+
/** The ID of the user. */
|
|
943
|
+
userId: string;
|
|
944
|
+
}): Request<DevicesListResponse>;
|
|
945
|
+
/**
|
|
946
|
+
* Sets whether a device's access to Google services is enabled or disabled. The device state takes effect only if enforcing EMM policies on Android devices is enabled in the Google
|
|
947
|
+
* Admin Console. Otherwise, the device state is ignored and all devices are allowed access to Google services. This is only supported for Google-managed users.
|
|
948
|
+
*/
|
|
949
|
+
setState(request: {
|
|
950
|
+
/** V1 error format. */
|
|
951
|
+
"$.xgafv"?: string;
|
|
952
|
+
/** OAuth access token. */
|
|
953
|
+
access_token?: string;
|
|
954
|
+
/** Data format for response. */
|
|
955
|
+
alt?: string;
|
|
956
|
+
/** JSONP */
|
|
957
|
+
callback?: string;
|
|
958
|
+
/** The ID of the device. */
|
|
959
|
+
deviceId: string;
|
|
960
|
+
/** The ID of the enterprise. */
|
|
961
|
+
enterpriseId: string;
|
|
962
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
963
|
+
fields?: string;
|
|
964
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
965
|
+
key?: string;
|
|
966
|
+
/** OAuth 2.0 token for the current user. */
|
|
967
|
+
oauth_token?: string;
|
|
968
|
+
/** Returns response with indentations and line breaks. */
|
|
969
|
+
prettyPrint?: boolean;
|
|
970
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
971
|
+
quotaUser?: string;
|
|
972
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
973
|
+
upload_protocol?: string;
|
|
974
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
975
|
+
uploadType?: string;
|
|
976
|
+
/** The ID of the user. */
|
|
977
|
+
userId: string;
|
|
978
|
+
/** Request body */
|
|
979
|
+
resource: DeviceState;
|
|
980
|
+
}): Request<DeviceState>;
|
|
981
|
+
setState(request: {
|
|
982
|
+
/** V1 error format. */
|
|
983
|
+
"$.xgafv"?: string;
|
|
984
|
+
/** OAuth access token. */
|
|
985
|
+
access_token?: string;
|
|
986
|
+
/** Data format for response. */
|
|
987
|
+
alt?: string;
|
|
988
|
+
/** JSONP */
|
|
989
|
+
callback?: string;
|
|
990
|
+
/** The ID of the device. */
|
|
991
|
+
deviceId: string;
|
|
992
|
+
/** The ID of the enterprise. */
|
|
993
|
+
enterpriseId: string;
|
|
994
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
995
|
+
fields?: string;
|
|
996
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
997
|
+
key?: string;
|
|
998
|
+
/** OAuth 2.0 token for the current user. */
|
|
999
|
+
oauth_token?: string;
|
|
1000
|
+
/** Returns response with indentations and line breaks. */
|
|
1001
|
+
prettyPrint?: boolean;
|
|
1002
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1003
|
+
quotaUser?: string;
|
|
1004
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1005
|
+
upload_protocol?: string;
|
|
1006
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1007
|
+
uploadType?: string;
|
|
1008
|
+
/** The ID of the user. */
|
|
1009
|
+
userId: string;
|
|
1010
|
+
},
|
|
1011
|
+
body: DeviceState): Request<DeviceState>;
|
|
1012
|
+
/**
|
|
1013
|
+
* Updates the device policy. To ensure the policy is properly enforced, you need to prevent unmanaged accounts from accessing Google Play by setting the allowed_accounts in the
|
|
1014
|
+
* managed configuration for the Google Play package. See restrict accounts in Google Play. When provisioning a new device, you should set the device policy using this method before
|
|
1015
|
+
* adding the managed Google Play Account to the device, otherwise the policy will not be applied for a short period of time after adding the account to the device.
|
|
1016
|
+
*/
|
|
1017
|
+
update(request: {
|
|
1018
|
+
/** V1 error format. */
|
|
1019
|
+
"$.xgafv"?: string;
|
|
1020
|
+
/** OAuth access token. */
|
|
1021
|
+
access_token?: string;
|
|
1022
|
+
/** Data format for response. */
|
|
1023
|
+
alt?: string;
|
|
1024
|
+
/** JSONP */
|
|
1025
|
+
callback?: string;
|
|
1026
|
+
/** The ID of the device. */
|
|
1027
|
+
deviceId: string;
|
|
1028
|
+
/** The ID of the enterprise. */
|
|
1029
|
+
enterpriseId: string;
|
|
1030
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1031
|
+
fields?: string;
|
|
1032
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1033
|
+
key?: string;
|
|
1034
|
+
/** OAuth 2.0 token for the current user. */
|
|
1035
|
+
oauth_token?: string;
|
|
1036
|
+
/** Returns response with indentations and line breaks. */
|
|
1037
|
+
prettyPrint?: boolean;
|
|
1038
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1039
|
+
quotaUser?: string;
|
|
1040
|
+
/**
|
|
1041
|
+
* Mask that identifies which fields to update. If not set, all modifiable fields will be modified. When set in a query parameter, this field should be specified as
|
|
1042
|
+
* updateMask=<field1>,<field2>,...
|
|
1043
|
+
*/
|
|
1044
|
+
updateMask?: string;
|
|
1045
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1046
|
+
upload_protocol?: string;
|
|
1047
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1048
|
+
uploadType?: string;
|
|
1049
|
+
/** The ID of the user. */
|
|
1050
|
+
userId: string;
|
|
1051
|
+
/** Request body */
|
|
1052
|
+
resource: Device;
|
|
1053
|
+
}): Request<Device>;
|
|
1054
|
+
update(request: {
|
|
1055
|
+
/** V1 error format. */
|
|
1056
|
+
"$.xgafv"?: string;
|
|
1057
|
+
/** OAuth access token. */
|
|
1058
|
+
access_token?: string;
|
|
1059
|
+
/** Data format for response. */
|
|
1060
|
+
alt?: string;
|
|
1061
|
+
/** JSONP */
|
|
1062
|
+
callback?: string;
|
|
1063
|
+
/** The ID of the device. */
|
|
1064
|
+
deviceId: string;
|
|
1065
|
+
/** The ID of the enterprise. */
|
|
1066
|
+
enterpriseId: string;
|
|
1067
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1068
|
+
fields?: string;
|
|
1069
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1070
|
+
key?: string;
|
|
1071
|
+
/** OAuth 2.0 token for the current user. */
|
|
1072
|
+
oauth_token?: string;
|
|
1073
|
+
/** Returns response with indentations and line breaks. */
|
|
1074
|
+
prettyPrint?: boolean;
|
|
1075
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1076
|
+
quotaUser?: string;
|
|
1077
|
+
/**
|
|
1078
|
+
* Mask that identifies which fields to update. If not set, all modifiable fields will be modified. When set in a query parameter, this field should be specified as
|
|
1079
|
+
* updateMask=<field1>,<field2>,...
|
|
1080
|
+
*/
|
|
1081
|
+
updateMask?: string;
|
|
1082
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1083
|
+
upload_protocol?: string;
|
|
1084
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1085
|
+
uploadType?: string;
|
|
1086
|
+
/** The ID of the user. */
|
|
1087
|
+
userId: string;
|
|
1088
|
+
},
|
|
1089
|
+
body: Device): Request<Device>;
|
|
1090
|
+
}
|
|
1091
|
+
interface EnterprisesResource {
|
|
1092
|
+
/** Acknowledges notifications that were received from Enterprises.PullNotificationSet to prevent subsequent calls from returning the same notifications. */
|
|
1093
|
+
acknowledgeNotificationSet(request?: {
|
|
1094
|
+
/** V1 error format. */
|
|
1095
|
+
"$.xgafv"?: string;
|
|
1096
|
+
/** OAuth access token. */
|
|
1097
|
+
access_token?: string;
|
|
1098
|
+
/** Data format for response. */
|
|
1099
|
+
alt?: string;
|
|
1100
|
+
/** JSONP */
|
|
1101
|
+
callback?: string;
|
|
1102
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1103
|
+
fields?: string;
|
|
1104
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1105
|
+
key?: string;
|
|
1106
|
+
/** The notification set ID as returned by Enterprises.PullNotificationSet. This must be provided. */
|
|
1107
|
+
notificationSetId?: string;
|
|
1108
|
+
/** OAuth 2.0 token for the current user. */
|
|
1109
|
+
oauth_token?: string;
|
|
1110
|
+
/** Returns response with indentations and line breaks. */
|
|
1111
|
+
prettyPrint?: boolean;
|
|
1112
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1113
|
+
quotaUser?: string;
|
|
1114
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1115
|
+
upload_protocol?: string;
|
|
1116
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1117
|
+
uploadType?: string;
|
|
1118
|
+
}): Request<void>;
|
|
1119
|
+
/** 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. */
|
|
1120
|
+
completeSignup(request?: {
|
|
1121
|
+
/** V1 error format. */
|
|
1122
|
+
"$.xgafv"?: string;
|
|
1123
|
+
/** OAuth access token. */
|
|
1124
|
+
access_token?: string;
|
|
1125
|
+
/** Data format for response. */
|
|
1126
|
+
alt?: string;
|
|
1127
|
+
/** JSONP */
|
|
1128
|
+
callback?: string;
|
|
1129
|
+
/** The Completion token initially returned by GenerateSignupUrl. */
|
|
1130
|
+
completionToken?: string;
|
|
1131
|
+
/** The Enterprise token appended to the Callback URL. */
|
|
1132
|
+
enterpriseToken?: string;
|
|
1133
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1134
|
+
fields?: string;
|
|
1135
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1136
|
+
key?: string;
|
|
1137
|
+
/** OAuth 2.0 token for the current user. */
|
|
1138
|
+
oauth_token?: string;
|
|
1139
|
+
/** Returns response with indentations and line breaks. */
|
|
1140
|
+
prettyPrint?: boolean;
|
|
1141
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1142
|
+
quotaUser?: string;
|
|
1143
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1144
|
+
upload_protocol?: string;
|
|
1145
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1146
|
+
uploadType?: string;
|
|
1147
|
+
}): Request<Enterprise>;
|
|
1148
|
+
/**
|
|
1149
|
+
* 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
|
|
1150
|
+
* one UI session. See the javascript API documentation for further information.
|
|
1151
|
+
*/
|
|
1152
|
+
createWebToken(request: {
|
|
1153
|
+
/** V1 error format. */
|
|
1154
|
+
"$.xgafv"?: string;
|
|
1155
|
+
/** OAuth access token. */
|
|
1156
|
+
access_token?: string;
|
|
1157
|
+
/** Data format for response. */
|
|
1158
|
+
alt?: string;
|
|
1159
|
+
/** JSONP */
|
|
1160
|
+
callback?: string;
|
|
1161
|
+
/** The ID of the enterprise. */
|
|
1162
|
+
enterpriseId: string;
|
|
1163
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1164
|
+
fields?: string;
|
|
1165
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1166
|
+
key?: string;
|
|
1167
|
+
/** OAuth 2.0 token for the current user. */
|
|
1168
|
+
oauth_token?: string;
|
|
1169
|
+
/** Returns response with indentations and line breaks. */
|
|
1170
|
+
prettyPrint?: boolean;
|
|
1171
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1172
|
+
quotaUser?: string;
|
|
1173
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1174
|
+
upload_protocol?: string;
|
|
1175
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1176
|
+
uploadType?: string;
|
|
1177
|
+
/** Request body */
|
|
1178
|
+
resource: AdministratorWebTokenSpec;
|
|
1179
|
+
}): Request<AdministratorWebToken>;
|
|
1180
|
+
createWebToken(request: {
|
|
1181
|
+
/** V1 error format. */
|
|
1182
|
+
"$.xgafv"?: string;
|
|
1183
|
+
/** OAuth access token. */
|
|
1184
|
+
access_token?: string;
|
|
1185
|
+
/** Data format for response. */
|
|
1186
|
+
alt?: string;
|
|
1187
|
+
/** JSONP */
|
|
1188
|
+
callback?: string;
|
|
1189
|
+
/** The ID of the enterprise. */
|
|
1190
|
+
enterpriseId: string;
|
|
1191
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1192
|
+
fields?: string;
|
|
1193
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1194
|
+
key?: string;
|
|
1195
|
+
/** OAuth 2.0 token for the current user. */
|
|
1196
|
+
oauth_token?: string;
|
|
1197
|
+
/** Returns response with indentations and line breaks. */
|
|
1198
|
+
prettyPrint?: boolean;
|
|
1199
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1200
|
+
quotaUser?: string;
|
|
1201
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1202
|
+
upload_protocol?: string;
|
|
1203
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1204
|
+
uploadType?: string;
|
|
1205
|
+
},
|
|
1206
|
+
body: AdministratorWebTokenSpec): Request<AdministratorWebToken>;
|
|
1207
|
+
/** Enrolls an enterprise with the calling EMM. */
|
|
1208
|
+
enroll(request: {
|
|
1209
|
+
/** V1 error format. */
|
|
1210
|
+
"$.xgafv"?: string;
|
|
1211
|
+
/** OAuth access token. */
|
|
1212
|
+
access_token?: string;
|
|
1213
|
+
/** Data format for response. */
|
|
1214
|
+
alt?: string;
|
|
1215
|
+
/** JSONP */
|
|
1216
|
+
callback?: string;
|
|
1217
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1218
|
+
fields?: string;
|
|
1219
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1220
|
+
key?: string;
|
|
1221
|
+
/** OAuth 2.0 token for the current user. */
|
|
1222
|
+
oauth_token?: string;
|
|
1223
|
+
/** Returns response with indentations and line breaks. */
|
|
1224
|
+
prettyPrint?: boolean;
|
|
1225
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1226
|
+
quotaUser?: string;
|
|
1227
|
+
/** Required. The token provided by the enterprise to register the EMM. */
|
|
1228
|
+
token: string;
|
|
1229
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1230
|
+
upload_protocol?: string;
|
|
1231
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1232
|
+
uploadType?: string;
|
|
1233
|
+
/** Request body */
|
|
1234
|
+
resource: Enterprise;
|
|
1235
|
+
}): Request<Enterprise>;
|
|
1236
|
+
enroll(request: {
|
|
1237
|
+
/** V1 error format. */
|
|
1238
|
+
"$.xgafv"?: string;
|
|
1239
|
+
/** OAuth access token. */
|
|
1240
|
+
access_token?: string;
|
|
1241
|
+
/** Data format for response. */
|
|
1242
|
+
alt?: string;
|
|
1243
|
+
/** JSONP */
|
|
1244
|
+
callback?: string;
|
|
1245
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1246
|
+
fields?: string;
|
|
1247
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1248
|
+
key?: string;
|
|
1249
|
+
/** OAuth 2.0 token for the current user. */
|
|
1250
|
+
oauth_token?: string;
|
|
1251
|
+
/** Returns response with indentations and line breaks. */
|
|
1252
|
+
prettyPrint?: boolean;
|
|
1253
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1254
|
+
quotaUser?: string;
|
|
1255
|
+
/** Required. The token provided by the enterprise to register the EMM. */
|
|
1256
|
+
token: string;
|
|
1257
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1258
|
+
upload_protocol?: string;
|
|
1259
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1260
|
+
uploadType?: string;
|
|
1261
|
+
},
|
|
1262
|
+
body: Enterprise): Request<Enterprise>;
|
|
1263
|
+
/** Generates a sign-up URL. */
|
|
1264
|
+
generateSignupUrl(request?: {
|
|
1265
|
+
/** V1 error format. */
|
|
1266
|
+
"$.xgafv"?: string;
|
|
1267
|
+
/** OAuth access token. */
|
|
1268
|
+
access_token?: string;
|
|
1269
|
+
/** Data format for response. */
|
|
1270
|
+
alt?: string;
|
|
1271
|
+
/** JSONP */
|
|
1272
|
+
callback?: string;
|
|
1273
|
+
/**
|
|
1274
|
+
* The callback URL to which the Admin will be redirected after successfully creating an enterprise. Before redirecting there the system will add a single query parameter to this
|
|
1275
|
+
* URL named "enterpriseToken" which will contain an opaque token to be used for the CompleteSignup request. Beware that this means that the URL will be parsed, the parameter added
|
|
1276
|
+
* and then a new URL formatted, i.e. there may be some minor formatting changes and, more importantly, the URL must be well-formed so that it can be parsed.
|
|
1277
|
+
*/
|
|
1278
|
+
callbackUrl?: string;
|
|
1279
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1280
|
+
fields?: string;
|
|
1281
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1282
|
+
key?: string;
|
|
1283
|
+
/** OAuth 2.0 token for the current user. */
|
|
1284
|
+
oauth_token?: string;
|
|
1285
|
+
/** Returns response with indentations and line breaks. */
|
|
1286
|
+
prettyPrint?: boolean;
|
|
1287
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1288
|
+
quotaUser?: string;
|
|
1289
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1290
|
+
upload_protocol?: string;
|
|
1291
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1292
|
+
uploadType?: string;
|
|
1293
|
+
}): Request<SignupInfo>;
|
|
1294
|
+
/** Retrieves the name and domain of an enterprise. */
|
|
1295
|
+
get(request?: {
|
|
1296
|
+
/** V1 error format. */
|
|
1297
|
+
"$.xgafv"?: string;
|
|
1298
|
+
/** OAuth access token. */
|
|
1299
|
+
access_token?: string;
|
|
1300
|
+
/** Data format for response. */
|
|
1301
|
+
alt?: string;
|
|
1302
|
+
/** JSONP */
|
|
1303
|
+
callback?: string;
|
|
1304
|
+
/** The ID of the enterprise. */
|
|
1305
|
+
enterpriseId: string;
|
|
1306
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1307
|
+
fields?: string;
|
|
1308
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1309
|
+
key?: string;
|
|
1310
|
+
/** OAuth 2.0 token for the current user. */
|
|
1311
|
+
oauth_token?: string;
|
|
1312
|
+
/** Returns response with indentations and line breaks. */
|
|
1313
|
+
prettyPrint?: boolean;
|
|
1314
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1315
|
+
quotaUser?: string;
|
|
1316
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1317
|
+
upload_protocol?: string;
|
|
1318
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1319
|
+
uploadType?: string;
|
|
1320
|
+
}): Request<Enterprise>;
|
|
1321
|
+
/**
|
|
1322
|
+
* Returns a service account and credentials. The service account can be bound to the enterprise by calling setAccount. The service account is unique to this enterprise and EMM, and
|
|
1323
|
+
* will be deleted if the enterprise is unbound. The credentials contain private key data and are not stored server-side. This method can only be called after calling
|
|
1324
|
+
* Enterprises.Enroll or Enterprises.CompleteSignup, and before Enterprises.SetAccount; at other times it will return an error. Subsequent calls after the first will generate a new,
|
|
1325
|
+
* unique set of credentials, and invalidate the previously generated credentials. Once the service account is bound to the enterprise, it can be managed using the serviceAccountKeys
|
|
1326
|
+
* resource.
|
|
1327
|
+
*/
|
|
1328
|
+
getServiceAccount(request?: {
|
|
1329
|
+
/** V1 error format. */
|
|
1330
|
+
"$.xgafv"?: string;
|
|
1331
|
+
/** OAuth access token. */
|
|
1332
|
+
access_token?: string;
|
|
1333
|
+
/** Data format for response. */
|
|
1334
|
+
alt?: string;
|
|
1335
|
+
/** JSONP */
|
|
1336
|
+
callback?: string;
|
|
1337
|
+
/** The ID of the enterprise. */
|
|
1338
|
+
enterpriseId: string;
|
|
1339
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1340
|
+
fields?: string;
|
|
1341
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1342
|
+
key?: string;
|
|
1343
|
+
/** The type of credential to return with the service account. Required. */
|
|
1344
|
+
keyType?: string;
|
|
1345
|
+
/** OAuth 2.0 token for the current user. */
|
|
1346
|
+
oauth_token?: string;
|
|
1347
|
+
/** Returns response with indentations and line breaks. */
|
|
1348
|
+
prettyPrint?: boolean;
|
|
1349
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1350
|
+
quotaUser?: string;
|
|
1351
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1352
|
+
upload_protocol?: string;
|
|
1353
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1354
|
+
uploadType?: string;
|
|
1355
|
+
}): Request<ServiceAccount>;
|
|
1356
|
+
/** Returns the store layout for the enterprise. If the store layout has not been set, returns "basic" as the store layout type and no homepage. */
|
|
1357
|
+
getStoreLayout(request?: {
|
|
1358
|
+
/** V1 error format. */
|
|
1359
|
+
"$.xgafv"?: string;
|
|
1360
|
+
/** OAuth access token. */
|
|
1361
|
+
access_token?: string;
|
|
1362
|
+
/** Data format for response. */
|
|
1363
|
+
alt?: string;
|
|
1364
|
+
/** JSONP */
|
|
1365
|
+
callback?: string;
|
|
1366
|
+
/** The ID of the enterprise. */
|
|
1367
|
+
enterpriseId: string;
|
|
1368
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1369
|
+
fields?: string;
|
|
1370
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1371
|
+
key?: string;
|
|
1372
|
+
/** OAuth 2.0 token for the current user. */
|
|
1373
|
+
oauth_token?: string;
|
|
1374
|
+
/** Returns response with indentations and line breaks. */
|
|
1375
|
+
prettyPrint?: boolean;
|
|
1376
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1377
|
+
quotaUser?: string;
|
|
1378
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1379
|
+
upload_protocol?: string;
|
|
1380
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1381
|
+
uploadType?: string;
|
|
1382
|
+
}): Request<StoreLayout>;
|
|
1383
|
+
/**
|
|
1384
|
+
* Looks up an enterprise by domain name. This is only supported for enterprises created via the Google-initiated creation flow. Lookup of the id is not needed for enterprises created
|
|
1385
|
+
* via the EMM-initiated flow since the EMM learns the enterprise ID in the callback specified in the Enterprises.generateSignupUrl call.
|
|
1386
|
+
*/
|
|
1387
|
+
list(request?: {
|
|
1388
|
+
/** V1 error format. */
|
|
1389
|
+
"$.xgafv"?: string;
|
|
1390
|
+
/** OAuth access token. */
|
|
1391
|
+
access_token?: string;
|
|
1392
|
+
/** Data format for response. */
|
|
1393
|
+
alt?: string;
|
|
1394
|
+
/** JSONP */
|
|
1395
|
+
callback?: string;
|
|
1396
|
+
/** Required. The exact primary domain name of the enterprise to look up. */
|
|
1397
|
+
domain: string;
|
|
1398
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1399
|
+
fields?: string;
|
|
1400
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1401
|
+
key?: string;
|
|
1402
|
+
/** OAuth 2.0 token for the current user. */
|
|
1403
|
+
oauth_token?: string;
|
|
1404
|
+
/** Returns response with indentations and line breaks. */
|
|
1405
|
+
prettyPrint?: boolean;
|
|
1406
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1407
|
+
quotaUser?: string;
|
|
1408
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1409
|
+
upload_protocol?: string;
|
|
1410
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1411
|
+
uploadType?: string;
|
|
1412
|
+
}): Request<EnterprisesListResponse>;
|
|
1413
|
+
/**
|
|
1414
|
+
* Pulls and returns a notification set for the enterprises associated with the service account authenticated for the request. The notification set may be empty if no notification are
|
|
1415
|
+
* pending. A notification set returned needs to be acknowledged within 20 seconds by calling Enterprises.AcknowledgeNotificationSet, unless the notification set is empty.
|
|
1416
|
+
* Notifications that are not acknowledged within the 20 seconds will eventually be included again in the response to another PullNotificationSet request, and those that are never
|
|
1417
|
+
* acknowledged will ultimately be deleted according to the Google Cloud Platform Pub/Sub system policy. Multiple requests might be performed concurrently to retrieve notifications, in
|
|
1418
|
+
* which case the pending notifications (if any) will be split among each caller, if any are pending. If no notifications are present, an empty notification list is returned.
|
|
1419
|
+
* Subsequent requests may return more notifications once they become available.
|
|
1420
|
+
*/
|
|
1421
|
+
pullNotificationSet(request?: {
|
|
1422
|
+
/** V1 error format. */
|
|
1423
|
+
"$.xgafv"?: string;
|
|
1424
|
+
/** OAuth access token. */
|
|
1425
|
+
access_token?: string;
|
|
1426
|
+
/** Data format for response. */
|
|
1427
|
+
alt?: string;
|
|
1428
|
+
/** JSONP */
|
|
1429
|
+
callback?: string;
|
|
1430
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1431
|
+
fields?: string;
|
|
1432
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1433
|
+
key?: string;
|
|
1434
|
+
/** OAuth 2.0 token for the current user. */
|
|
1435
|
+
oauth_token?: string;
|
|
1436
|
+
/** Returns response with indentations and line breaks. */
|
|
1437
|
+
prettyPrint?: boolean;
|
|
1438
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1439
|
+
quotaUser?: string;
|
|
1440
|
+
/**
|
|
1441
|
+
* The request mode for pulling notifications. Specifying waitForNotifications will cause the request to block and wait until one or more notifications are present, or return an
|
|
1442
|
+
* empty notification list if no notifications are present after some time. Speciying returnImmediately will cause the request to immediately return the pending notifications, or
|
|
1443
|
+
* an empty list if no notifications are present. If omitted, defaults to waitForNotifications.
|
|
1444
|
+
*/
|
|
1445
|
+
requestMode?: string;
|
|
1446
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1447
|
+
upload_protocol?: string;
|
|
1448
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1449
|
+
uploadType?: string;
|
|
1450
|
+
}): Request<NotificationSet>;
|
|
1451
|
+
/** Sends a test notification to validate the EMM integration with the Google Cloud Pub/Sub service for this enterprise. */
|
|
1452
|
+
sendTestPushNotification(request?: {
|
|
1453
|
+
/** V1 error format. */
|
|
1454
|
+
"$.xgafv"?: string;
|
|
1455
|
+
/** OAuth access token. */
|
|
1456
|
+
access_token?: string;
|
|
1457
|
+
/** Data format for response. */
|
|
1458
|
+
alt?: string;
|
|
1459
|
+
/** JSONP */
|
|
1460
|
+
callback?: string;
|
|
1461
|
+
/** The ID of the enterprise. */
|
|
1462
|
+
enterpriseId: string;
|
|
1463
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1464
|
+
fields?: string;
|
|
1465
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1466
|
+
key?: string;
|
|
1467
|
+
/** OAuth 2.0 token for the current user. */
|
|
1468
|
+
oauth_token?: string;
|
|
1469
|
+
/** Returns response with indentations and line breaks. */
|
|
1470
|
+
prettyPrint?: boolean;
|
|
1471
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1472
|
+
quotaUser?: string;
|
|
1473
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1474
|
+
upload_protocol?: string;
|
|
1475
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1476
|
+
uploadType?: string;
|
|
1477
|
+
}): Request<EnterprisesSendTestPushNotificationResponse>;
|
|
1478
|
+
/** Sets the account that will be used to authenticate to the API as the enterprise. */
|
|
1479
|
+
setAccount(request: {
|
|
1480
|
+
/** V1 error format. */
|
|
1481
|
+
"$.xgafv"?: string;
|
|
1482
|
+
/** OAuth access token. */
|
|
1483
|
+
access_token?: string;
|
|
1484
|
+
/** Data format for response. */
|
|
1485
|
+
alt?: string;
|
|
1486
|
+
/** JSONP */
|
|
1487
|
+
callback?: string;
|
|
1488
|
+
/** The ID of the enterprise. */
|
|
1489
|
+
enterpriseId: string;
|
|
1490
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1491
|
+
fields?: string;
|
|
1492
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1493
|
+
key?: string;
|
|
1494
|
+
/** OAuth 2.0 token for the current user. */
|
|
1495
|
+
oauth_token?: string;
|
|
1496
|
+
/** Returns response with indentations and line breaks. */
|
|
1497
|
+
prettyPrint?: boolean;
|
|
1498
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1499
|
+
quotaUser?: string;
|
|
1500
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1501
|
+
upload_protocol?: string;
|
|
1502
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1503
|
+
uploadType?: string;
|
|
1504
|
+
/** Request body */
|
|
1505
|
+
resource: EnterpriseAccount;
|
|
1506
|
+
}): Request<EnterpriseAccount>;
|
|
1507
|
+
setAccount(request: {
|
|
1508
|
+
/** V1 error format. */
|
|
1509
|
+
"$.xgafv"?: string;
|
|
1510
|
+
/** OAuth access token. */
|
|
1511
|
+
access_token?: string;
|
|
1512
|
+
/** Data format for response. */
|
|
1513
|
+
alt?: string;
|
|
1514
|
+
/** JSONP */
|
|
1515
|
+
callback?: string;
|
|
1516
|
+
/** The ID of the enterprise. */
|
|
1517
|
+
enterpriseId: string;
|
|
1518
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1519
|
+
fields?: string;
|
|
1520
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1521
|
+
key?: string;
|
|
1522
|
+
/** OAuth 2.0 token for the current user. */
|
|
1523
|
+
oauth_token?: string;
|
|
1524
|
+
/** Returns response with indentations and line breaks. */
|
|
1525
|
+
prettyPrint?: boolean;
|
|
1526
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1527
|
+
quotaUser?: string;
|
|
1528
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1529
|
+
upload_protocol?: string;
|
|
1530
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1531
|
+
uploadType?: string;
|
|
1532
|
+
},
|
|
1533
|
+
body: EnterpriseAccount): Request<EnterpriseAccount>;
|
|
1534
|
+
/**
|
|
1535
|
+
* Sets the store layout for the enterprise. By default, storeLayoutType is set to "basic" and the basic store layout is enabled. The basic layout only contains apps approved by the
|
|
1536
|
+
* admin, and that have been added to the available product set for a user (using the setAvailableProductSet call). Apps on the page are sorted in order of their product ID value. If
|
|
1537
|
+
* you create a custom store layout (by setting storeLayoutType = "custom" and setting a homepage), the basic store layout is disabled.
|
|
1538
|
+
*/
|
|
1539
|
+
setStoreLayout(request: {
|
|
1540
|
+
/** V1 error format. */
|
|
1541
|
+
"$.xgafv"?: string;
|
|
1542
|
+
/** OAuth access token. */
|
|
1543
|
+
access_token?: string;
|
|
1544
|
+
/** Data format for response. */
|
|
1545
|
+
alt?: string;
|
|
1546
|
+
/** JSONP */
|
|
1547
|
+
callback?: string;
|
|
1548
|
+
/** The ID of the enterprise. */
|
|
1549
|
+
enterpriseId: string;
|
|
1550
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1551
|
+
fields?: string;
|
|
1552
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1553
|
+
key?: string;
|
|
1554
|
+
/** OAuth 2.0 token for the current user. */
|
|
1555
|
+
oauth_token?: string;
|
|
1556
|
+
/** Returns response with indentations and line breaks. */
|
|
1557
|
+
prettyPrint?: boolean;
|
|
1558
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1559
|
+
quotaUser?: string;
|
|
1560
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1561
|
+
upload_protocol?: string;
|
|
1562
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1563
|
+
uploadType?: string;
|
|
1564
|
+
/** Request body */
|
|
1565
|
+
resource: StoreLayout;
|
|
1566
|
+
}): Request<StoreLayout>;
|
|
1567
|
+
setStoreLayout(request: {
|
|
1568
|
+
/** V1 error format. */
|
|
1569
|
+
"$.xgafv"?: string;
|
|
1570
|
+
/** OAuth access token. */
|
|
1571
|
+
access_token?: string;
|
|
1572
|
+
/** Data format for response. */
|
|
1573
|
+
alt?: string;
|
|
1574
|
+
/** JSONP */
|
|
1575
|
+
callback?: string;
|
|
1576
|
+
/** The ID of the enterprise. */
|
|
1577
|
+
enterpriseId: string;
|
|
1578
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1579
|
+
fields?: string;
|
|
1580
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1581
|
+
key?: string;
|
|
1582
|
+
/** OAuth 2.0 token for the current user. */
|
|
1583
|
+
oauth_token?: string;
|
|
1584
|
+
/** Returns response with indentations and line breaks. */
|
|
1585
|
+
prettyPrint?: boolean;
|
|
1586
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1587
|
+
quotaUser?: string;
|
|
1588
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1589
|
+
upload_protocol?: string;
|
|
1590
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1591
|
+
uploadType?: string;
|
|
1592
|
+
},
|
|
1593
|
+
body: StoreLayout): Request<StoreLayout>;
|
|
1594
|
+
/** Unenrolls an enterprise from the calling EMM. */
|
|
1595
|
+
unenroll(request?: {
|
|
1596
|
+
/** V1 error format. */
|
|
1597
|
+
"$.xgafv"?: string;
|
|
1598
|
+
/** OAuth access token. */
|
|
1599
|
+
access_token?: string;
|
|
1600
|
+
/** Data format for response. */
|
|
1601
|
+
alt?: string;
|
|
1602
|
+
/** JSONP */
|
|
1603
|
+
callback?: string;
|
|
1604
|
+
/** The ID of the enterprise. */
|
|
1605
|
+
enterpriseId: string;
|
|
1606
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1607
|
+
fields?: string;
|
|
1608
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1609
|
+
key?: string;
|
|
1610
|
+
/** OAuth 2.0 token for the current user. */
|
|
1611
|
+
oauth_token?: string;
|
|
1612
|
+
/** Returns response with indentations and line breaks. */
|
|
1613
|
+
prettyPrint?: boolean;
|
|
1614
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1615
|
+
quotaUser?: string;
|
|
1616
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1617
|
+
upload_protocol?: string;
|
|
1618
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1619
|
+
uploadType?: string;
|
|
1620
|
+
}): Request<void>;
|
|
1621
|
+
}
|
|
1622
|
+
interface EntitlementsResource {
|
|
1623
|
+
/** Removes an entitlement to an app for a user. */
|
|
1624
|
+
delete(request?: {
|
|
1625
|
+
/** V1 error format. */
|
|
1626
|
+
"$.xgafv"?: string;
|
|
1627
|
+
/** OAuth access token. */
|
|
1628
|
+
access_token?: string;
|
|
1629
|
+
/** Data format for response. */
|
|
1630
|
+
alt?: string;
|
|
1631
|
+
/** JSONP */
|
|
1632
|
+
callback?: string;
|
|
1633
|
+
/** The ID of the enterprise. */
|
|
1634
|
+
enterpriseId: string;
|
|
1635
|
+
/** The ID of the entitlement (a product ID), e.g. "app:com.google.android.gm". */
|
|
1636
|
+
entitlementId: string;
|
|
1637
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1638
|
+
fields?: string;
|
|
1639
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1640
|
+
key?: string;
|
|
1641
|
+
/** OAuth 2.0 token for the current user. */
|
|
1642
|
+
oauth_token?: string;
|
|
1643
|
+
/** Returns response with indentations and line breaks. */
|
|
1644
|
+
prettyPrint?: boolean;
|
|
1645
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1646
|
+
quotaUser?: string;
|
|
1647
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1648
|
+
upload_protocol?: string;
|
|
1649
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1650
|
+
uploadType?: string;
|
|
1651
|
+
/** The ID of the user. */
|
|
1652
|
+
userId: string;
|
|
1653
|
+
}): Request<void>;
|
|
1654
|
+
/** Retrieves details of an entitlement. */
|
|
1655
|
+
get(request?: {
|
|
1656
|
+
/** V1 error format. */
|
|
1657
|
+
"$.xgafv"?: string;
|
|
1658
|
+
/** OAuth access token. */
|
|
1659
|
+
access_token?: string;
|
|
1660
|
+
/** Data format for response. */
|
|
1661
|
+
alt?: string;
|
|
1662
|
+
/** JSONP */
|
|
1663
|
+
callback?: string;
|
|
1664
|
+
/** The ID of the enterprise. */
|
|
1665
|
+
enterpriseId: string;
|
|
1666
|
+
/** The ID of the entitlement (a product ID), e.g. "app:com.google.android.gm". */
|
|
1667
|
+
entitlementId: string;
|
|
1668
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1669
|
+
fields?: string;
|
|
1670
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1671
|
+
key?: string;
|
|
1672
|
+
/** OAuth 2.0 token for the current user. */
|
|
1673
|
+
oauth_token?: string;
|
|
1674
|
+
/** Returns response with indentations and line breaks. */
|
|
1675
|
+
prettyPrint?: boolean;
|
|
1676
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1677
|
+
quotaUser?: string;
|
|
1678
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1679
|
+
upload_protocol?: string;
|
|
1680
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1681
|
+
uploadType?: string;
|
|
1682
|
+
/** The ID of the user. */
|
|
1683
|
+
userId: string;
|
|
1684
|
+
}): Request<Entitlement>;
|
|
1685
|
+
/** Lists all entitlements for the specified user. Only the ID is set. */
|
|
1686
|
+
list(request?: {
|
|
1687
|
+
/** V1 error format. */
|
|
1688
|
+
"$.xgafv"?: string;
|
|
1689
|
+
/** OAuth access token. */
|
|
1690
|
+
access_token?: string;
|
|
1691
|
+
/** Data format for response. */
|
|
1692
|
+
alt?: string;
|
|
1693
|
+
/** JSONP */
|
|
1694
|
+
callback?: string;
|
|
1695
|
+
/** The ID of the enterprise. */
|
|
1696
|
+
enterpriseId: string;
|
|
1697
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1698
|
+
fields?: string;
|
|
1699
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1700
|
+
key?: string;
|
|
1701
|
+
/** OAuth 2.0 token for the current user. */
|
|
1702
|
+
oauth_token?: string;
|
|
1703
|
+
/** Returns response with indentations and line breaks. */
|
|
1704
|
+
prettyPrint?: boolean;
|
|
1705
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1706
|
+
quotaUser?: string;
|
|
1707
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1708
|
+
upload_protocol?: string;
|
|
1709
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1710
|
+
uploadType?: string;
|
|
1711
|
+
/** The ID of the user. */
|
|
1712
|
+
userId: string;
|
|
1713
|
+
}): Request<EntitlementsListResponse>;
|
|
1714
|
+
/** Adds or updates an entitlement to an app for a user. */
|
|
1715
|
+
update(request: {
|
|
1716
|
+
/** V1 error format. */
|
|
1717
|
+
"$.xgafv"?: string;
|
|
1718
|
+
/** OAuth access token. */
|
|
1719
|
+
access_token?: string;
|
|
1720
|
+
/** Data format for response. */
|
|
1721
|
+
alt?: string;
|
|
1722
|
+
/** JSONP */
|
|
1723
|
+
callback?: string;
|
|
1724
|
+
/** The ID of the enterprise. */
|
|
1725
|
+
enterpriseId: string;
|
|
1726
|
+
/** The ID of the entitlement (a product ID), e.g. "app:com.google.android.gm". */
|
|
1727
|
+
entitlementId: string;
|
|
1728
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1729
|
+
fields?: string;
|
|
1730
|
+
/**
|
|
1731
|
+
* Set to true to also install the product on all the user's devices where possible. Failure to install on one or more devices will not prevent this operation from returning
|
|
1732
|
+
* successfully, as long as the entitlement was successfully assigned to the user.
|
|
1733
|
+
*/
|
|
1734
|
+
install?: boolean;
|
|
1735
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1736
|
+
key?: string;
|
|
1737
|
+
/** OAuth 2.0 token for the current user. */
|
|
1738
|
+
oauth_token?: string;
|
|
1739
|
+
/** Returns response with indentations and line breaks. */
|
|
1740
|
+
prettyPrint?: boolean;
|
|
1741
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1742
|
+
quotaUser?: string;
|
|
1743
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1744
|
+
upload_protocol?: string;
|
|
1745
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1746
|
+
uploadType?: string;
|
|
1747
|
+
/** The ID of the user. */
|
|
1748
|
+
userId: string;
|
|
1749
|
+
/** Request body */
|
|
1750
|
+
resource: Entitlement;
|
|
1751
|
+
}): Request<Entitlement>;
|
|
1752
|
+
update(request: {
|
|
1753
|
+
/** V1 error format. */
|
|
1754
|
+
"$.xgafv"?: string;
|
|
1755
|
+
/** OAuth access token. */
|
|
1756
|
+
access_token?: string;
|
|
1757
|
+
/** Data format for response. */
|
|
1758
|
+
alt?: string;
|
|
1759
|
+
/** JSONP */
|
|
1760
|
+
callback?: string;
|
|
1761
|
+
/** The ID of the enterprise. */
|
|
1762
|
+
enterpriseId: string;
|
|
1763
|
+
/** The ID of the entitlement (a product ID), e.g. "app:com.google.android.gm". */
|
|
1764
|
+
entitlementId: string;
|
|
1765
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1766
|
+
fields?: string;
|
|
1767
|
+
/**
|
|
1768
|
+
* Set to true to also install the product on all the user's devices where possible. Failure to install on one or more devices will not prevent this operation from returning
|
|
1769
|
+
* successfully, as long as the entitlement was successfully assigned to the user.
|
|
1770
|
+
*/
|
|
1771
|
+
install?: boolean;
|
|
1772
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1773
|
+
key?: string;
|
|
1774
|
+
/** OAuth 2.0 token for the current user. */
|
|
1775
|
+
oauth_token?: string;
|
|
1776
|
+
/** Returns response with indentations and line breaks. */
|
|
1777
|
+
prettyPrint?: boolean;
|
|
1778
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1779
|
+
quotaUser?: string;
|
|
1780
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1781
|
+
upload_protocol?: string;
|
|
1782
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1783
|
+
uploadType?: string;
|
|
1784
|
+
/** The ID of the user. */
|
|
1785
|
+
userId: string;
|
|
1786
|
+
},
|
|
1787
|
+
body: Entitlement): Request<Entitlement>;
|
|
1788
|
+
}
|
|
1789
|
+
interface GrouplicensesResource {
|
|
1790
|
+
/** Retrieves details of an enterprise's group license for a product. */
|
|
1791
|
+
get(request?: {
|
|
1792
|
+
/** V1 error format. */
|
|
1793
|
+
"$.xgafv"?: string;
|
|
1794
|
+
/** OAuth access token. */
|
|
1795
|
+
access_token?: string;
|
|
1796
|
+
/** Data format for response. */
|
|
1797
|
+
alt?: string;
|
|
1798
|
+
/** JSONP */
|
|
1799
|
+
callback?: string;
|
|
1800
|
+
/** The ID of the enterprise. */
|
|
1801
|
+
enterpriseId: string;
|
|
1802
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1803
|
+
fields?: string;
|
|
1804
|
+
/** The ID of the product the group license is for, e.g. "app:com.google.android.gm". */
|
|
1805
|
+
groupLicenseId: string;
|
|
1806
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1807
|
+
key?: string;
|
|
1808
|
+
/** OAuth 2.0 token for the current user. */
|
|
1809
|
+
oauth_token?: string;
|
|
1810
|
+
/** Returns response with indentations and line breaks. */
|
|
1811
|
+
prettyPrint?: boolean;
|
|
1812
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1813
|
+
quotaUser?: string;
|
|
1814
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1815
|
+
upload_protocol?: string;
|
|
1816
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1817
|
+
uploadType?: string;
|
|
1818
|
+
}): Request<GroupLicense>;
|
|
1819
|
+
/** Retrieves IDs of all products for which the enterprise has a group license. */
|
|
1820
|
+
list(request?: {
|
|
1821
|
+
/** V1 error format. */
|
|
1822
|
+
"$.xgafv"?: string;
|
|
1823
|
+
/** OAuth access token. */
|
|
1824
|
+
access_token?: string;
|
|
1825
|
+
/** Data format for response. */
|
|
1826
|
+
alt?: string;
|
|
1827
|
+
/** JSONP */
|
|
1828
|
+
callback?: string;
|
|
1829
|
+
/** The ID of the enterprise. */
|
|
1830
|
+
enterpriseId: string;
|
|
1831
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1832
|
+
fields?: string;
|
|
1833
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1834
|
+
key?: string;
|
|
1835
|
+
/** OAuth 2.0 token for the current user. */
|
|
1836
|
+
oauth_token?: string;
|
|
1837
|
+
/** Returns response with indentations and line breaks. */
|
|
1838
|
+
prettyPrint?: boolean;
|
|
1839
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1840
|
+
quotaUser?: string;
|
|
1841
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1842
|
+
upload_protocol?: string;
|
|
1843
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1844
|
+
uploadType?: string;
|
|
1845
|
+
}): Request<GroupLicensesListResponse>;
|
|
1846
|
+
}
|
|
1847
|
+
interface GrouplicenseusersResource {
|
|
1848
|
+
/** Retrieves the IDs of the users who have been granted entitlements under the license. */
|
|
1849
|
+
list(request?: {
|
|
1850
|
+
/** V1 error format. */
|
|
1851
|
+
"$.xgafv"?: string;
|
|
1852
|
+
/** OAuth access token. */
|
|
1853
|
+
access_token?: string;
|
|
1854
|
+
/** Data format for response. */
|
|
1855
|
+
alt?: string;
|
|
1856
|
+
/** JSONP */
|
|
1857
|
+
callback?: string;
|
|
1858
|
+
/** The ID of the enterprise. */
|
|
1859
|
+
enterpriseId: string;
|
|
1860
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1861
|
+
fields?: string;
|
|
1862
|
+
/** The ID of the product the group license is for, e.g. "app:com.google.android.gm". */
|
|
1863
|
+
groupLicenseId: string;
|
|
1864
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1865
|
+
key?: string;
|
|
1866
|
+
/** OAuth 2.0 token for the current user. */
|
|
1867
|
+
oauth_token?: string;
|
|
1868
|
+
/** Returns response with indentations and line breaks. */
|
|
1869
|
+
prettyPrint?: boolean;
|
|
1870
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1871
|
+
quotaUser?: string;
|
|
1872
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1873
|
+
upload_protocol?: string;
|
|
1874
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1875
|
+
uploadType?: string;
|
|
1876
|
+
}): Request<GroupLicenseUsersListResponse>;
|
|
1877
|
+
}
|
|
1878
|
+
interface InstallsResource {
|
|
1879
|
+
/** Requests to remove an app from a device. A call to get or list will still show the app as installed on the device until it is actually removed. */
|
|
1880
|
+
delete(request?: {
|
|
1881
|
+
/** V1 error format. */
|
|
1882
|
+
"$.xgafv"?: string;
|
|
1883
|
+
/** OAuth access token. */
|
|
1884
|
+
access_token?: string;
|
|
1885
|
+
/** Data format for response. */
|
|
1886
|
+
alt?: string;
|
|
1887
|
+
/** JSONP */
|
|
1888
|
+
callback?: string;
|
|
1889
|
+
/** The Android ID of the device. */
|
|
1890
|
+
deviceId: string;
|
|
1891
|
+
/** The ID of the enterprise. */
|
|
1892
|
+
enterpriseId: string;
|
|
1893
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1894
|
+
fields?: string;
|
|
1895
|
+
/** The ID of the product represented by the install, e.g. "app:com.google.android.gm". */
|
|
1896
|
+
installId: string;
|
|
1897
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1898
|
+
key?: string;
|
|
1899
|
+
/** OAuth 2.0 token for the current user. */
|
|
1900
|
+
oauth_token?: string;
|
|
1901
|
+
/** Returns response with indentations and line breaks. */
|
|
1902
|
+
prettyPrint?: boolean;
|
|
1903
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1904
|
+
quotaUser?: string;
|
|
1905
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1906
|
+
upload_protocol?: string;
|
|
1907
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1908
|
+
uploadType?: string;
|
|
1909
|
+
/** The ID of the user. */
|
|
1910
|
+
userId: string;
|
|
1911
|
+
}): Request<void>;
|
|
1912
|
+
/** Retrieves details of an installation of an app on a device. */
|
|
1913
|
+
get(request?: {
|
|
1914
|
+
/** V1 error format. */
|
|
1915
|
+
"$.xgafv"?: string;
|
|
1916
|
+
/** OAuth access token. */
|
|
1917
|
+
access_token?: string;
|
|
1918
|
+
/** Data format for response. */
|
|
1919
|
+
alt?: string;
|
|
1920
|
+
/** JSONP */
|
|
1921
|
+
callback?: string;
|
|
1922
|
+
/** The Android ID of the device. */
|
|
1923
|
+
deviceId: string;
|
|
1924
|
+
/** The ID of the enterprise. */
|
|
1925
|
+
enterpriseId: string;
|
|
1926
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1927
|
+
fields?: string;
|
|
1928
|
+
/** The ID of the product represented by the install, e.g. "app:com.google.android.gm". */
|
|
1929
|
+
installId: string;
|
|
1930
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1931
|
+
key?: string;
|
|
1932
|
+
/** OAuth 2.0 token for the current user. */
|
|
1933
|
+
oauth_token?: string;
|
|
1934
|
+
/** Returns response with indentations and line breaks. */
|
|
1935
|
+
prettyPrint?: boolean;
|
|
1936
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1937
|
+
quotaUser?: string;
|
|
1938
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1939
|
+
upload_protocol?: string;
|
|
1940
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1941
|
+
uploadType?: string;
|
|
1942
|
+
/** The ID of the user. */
|
|
1943
|
+
userId: string;
|
|
1944
|
+
}): Request<Install>;
|
|
1945
|
+
/** Retrieves the details of all apps installed on the specified device. */
|
|
1946
|
+
list(request?: {
|
|
1947
|
+
/** V1 error format. */
|
|
1948
|
+
"$.xgafv"?: string;
|
|
1949
|
+
/** OAuth access token. */
|
|
1950
|
+
access_token?: string;
|
|
1951
|
+
/** Data format for response. */
|
|
1952
|
+
alt?: string;
|
|
1953
|
+
/** JSONP */
|
|
1954
|
+
callback?: string;
|
|
1955
|
+
/** The Android ID of the device. */
|
|
1956
|
+
deviceId: string;
|
|
1957
|
+
/** The ID of the enterprise. */
|
|
1958
|
+
enterpriseId: string;
|
|
1959
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1960
|
+
fields?: string;
|
|
1961
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1962
|
+
key?: string;
|
|
1963
|
+
/** OAuth 2.0 token for the current user. */
|
|
1964
|
+
oauth_token?: string;
|
|
1965
|
+
/** Returns response with indentations and line breaks. */
|
|
1966
|
+
prettyPrint?: boolean;
|
|
1967
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1968
|
+
quotaUser?: string;
|
|
1969
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1970
|
+
upload_protocol?: string;
|
|
1971
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1972
|
+
uploadType?: string;
|
|
1973
|
+
/** The ID of the user. */
|
|
1974
|
+
userId: string;
|
|
1975
|
+
}): Request<InstallsListResponse>;
|
|
1976
|
+
/** Requests to install the latest version of an app to a device. If the app is already installed, then it is updated to the latest version if necessary. */
|
|
1977
|
+
update(request: {
|
|
1978
|
+
/** V1 error format. */
|
|
1979
|
+
"$.xgafv"?: string;
|
|
1980
|
+
/** OAuth access token. */
|
|
1981
|
+
access_token?: string;
|
|
1982
|
+
/** Data format for response. */
|
|
1983
|
+
alt?: string;
|
|
1984
|
+
/** JSONP */
|
|
1985
|
+
callback?: string;
|
|
1986
|
+
/** The Android ID of the device. */
|
|
1987
|
+
deviceId: string;
|
|
1988
|
+
/** The ID of the enterprise. */
|
|
1989
|
+
enterpriseId: string;
|
|
1990
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1991
|
+
fields?: string;
|
|
1992
|
+
/** The ID of the product represented by the install, e.g. "app:com.google.android.gm". */
|
|
1993
|
+
installId: string;
|
|
1994
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1995
|
+
key?: string;
|
|
1996
|
+
/** OAuth 2.0 token for the current user. */
|
|
1997
|
+
oauth_token?: string;
|
|
1998
|
+
/** Returns response with indentations and line breaks. */
|
|
1999
|
+
prettyPrint?: boolean;
|
|
2000
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2001
|
+
quotaUser?: string;
|
|
2002
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2003
|
+
upload_protocol?: string;
|
|
2004
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2005
|
+
uploadType?: string;
|
|
2006
|
+
/** The ID of the user. */
|
|
2007
|
+
userId: string;
|
|
2008
|
+
/** Request body */
|
|
2009
|
+
resource: Install;
|
|
2010
|
+
}): Request<Install>;
|
|
2011
|
+
update(request: {
|
|
2012
|
+
/** V1 error format. */
|
|
2013
|
+
"$.xgafv"?: string;
|
|
2014
|
+
/** OAuth access token. */
|
|
2015
|
+
access_token?: string;
|
|
2016
|
+
/** Data format for response. */
|
|
2017
|
+
alt?: string;
|
|
2018
|
+
/** JSONP */
|
|
2019
|
+
callback?: string;
|
|
2020
|
+
/** The Android ID of the device. */
|
|
2021
|
+
deviceId: string;
|
|
2022
|
+
/** The ID of the enterprise. */
|
|
2023
|
+
enterpriseId: string;
|
|
2024
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2025
|
+
fields?: string;
|
|
2026
|
+
/** The ID of the product represented by the install, e.g. "app:com.google.android.gm". */
|
|
2027
|
+
installId: string;
|
|
2028
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2029
|
+
key?: string;
|
|
2030
|
+
/** OAuth 2.0 token for the current user. */
|
|
2031
|
+
oauth_token?: string;
|
|
2032
|
+
/** Returns response with indentations and line breaks. */
|
|
2033
|
+
prettyPrint?: boolean;
|
|
2034
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2035
|
+
quotaUser?: string;
|
|
2036
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2037
|
+
upload_protocol?: string;
|
|
2038
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2039
|
+
uploadType?: string;
|
|
2040
|
+
/** The ID of the user. */
|
|
2041
|
+
userId: string;
|
|
2042
|
+
},
|
|
2043
|
+
body: Install): Request<Install>;
|
|
2044
|
+
}
|
|
2045
|
+
interface ManagedconfigurationsfordeviceResource {
|
|
2046
|
+
/** Removes a per-device managed configuration for an app for the specified device. */
|
|
2047
|
+
delete(request?: {
|
|
2048
|
+
/** V1 error format. */
|
|
2049
|
+
"$.xgafv"?: string;
|
|
2050
|
+
/** OAuth access token. */
|
|
2051
|
+
access_token?: string;
|
|
2052
|
+
/** Data format for response. */
|
|
2053
|
+
alt?: string;
|
|
2054
|
+
/** JSONP */
|
|
2055
|
+
callback?: string;
|
|
2056
|
+
/** The Android ID of the device. */
|
|
2057
|
+
deviceId: string;
|
|
2058
|
+
/** The ID of the enterprise. */
|
|
2059
|
+
enterpriseId: string;
|
|
2060
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2061
|
+
fields?: string;
|
|
2062
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2063
|
+
key?: string;
|
|
2064
|
+
/** The ID of the managed configuration (a product ID), e.g. "app:com.google.android.gm". */
|
|
2065
|
+
managedConfigurationForDeviceId: string;
|
|
2066
|
+
/** OAuth 2.0 token for the current user. */
|
|
2067
|
+
oauth_token?: string;
|
|
2068
|
+
/** Returns response with indentations and line breaks. */
|
|
2069
|
+
prettyPrint?: boolean;
|
|
2070
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2071
|
+
quotaUser?: string;
|
|
2072
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2073
|
+
upload_protocol?: string;
|
|
2074
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2075
|
+
uploadType?: string;
|
|
2076
|
+
/** The ID of the user. */
|
|
2077
|
+
userId: string;
|
|
2078
|
+
}): Request<void>;
|
|
2079
|
+
/** Retrieves details of a per-device managed configuration. */
|
|
2080
|
+
get(request?: {
|
|
2081
|
+
/** V1 error format. */
|
|
2082
|
+
"$.xgafv"?: string;
|
|
2083
|
+
/** OAuth access token. */
|
|
2084
|
+
access_token?: string;
|
|
2085
|
+
/** Data format for response. */
|
|
2086
|
+
alt?: string;
|
|
2087
|
+
/** JSONP */
|
|
2088
|
+
callback?: string;
|
|
2089
|
+
/** The Android ID of the device. */
|
|
2090
|
+
deviceId: string;
|
|
2091
|
+
/** The ID of the enterprise. */
|
|
2092
|
+
enterpriseId: string;
|
|
2093
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2094
|
+
fields?: string;
|
|
2095
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2096
|
+
key?: string;
|
|
2097
|
+
/** The ID of the managed configuration (a product ID), e.g. "app:com.google.android.gm". */
|
|
2098
|
+
managedConfigurationForDeviceId: string;
|
|
2099
|
+
/** OAuth 2.0 token for the current user. */
|
|
2100
|
+
oauth_token?: string;
|
|
2101
|
+
/** Returns response with indentations and line breaks. */
|
|
2102
|
+
prettyPrint?: boolean;
|
|
2103
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2104
|
+
quotaUser?: string;
|
|
2105
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2106
|
+
upload_protocol?: string;
|
|
2107
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2108
|
+
uploadType?: string;
|
|
2109
|
+
/** The ID of the user. */
|
|
2110
|
+
userId: string;
|
|
2111
|
+
}): Request<ManagedConfiguration>;
|
|
2112
|
+
/** Lists all the per-device managed configurations for the specified device. Only the ID is set. */
|
|
2113
|
+
list(request?: {
|
|
2114
|
+
/** V1 error format. */
|
|
2115
|
+
"$.xgafv"?: string;
|
|
2116
|
+
/** OAuth access token. */
|
|
2117
|
+
access_token?: string;
|
|
2118
|
+
/** Data format for response. */
|
|
2119
|
+
alt?: string;
|
|
2120
|
+
/** JSONP */
|
|
2121
|
+
callback?: string;
|
|
2122
|
+
/** The Android ID of the device. */
|
|
2123
|
+
deviceId: string;
|
|
2124
|
+
/** The ID of the enterprise. */
|
|
2125
|
+
enterpriseId: string;
|
|
2126
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2127
|
+
fields?: string;
|
|
2128
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2129
|
+
key?: string;
|
|
2130
|
+
/** OAuth 2.0 token for the current user. */
|
|
2131
|
+
oauth_token?: string;
|
|
2132
|
+
/** Returns response with indentations and line breaks. */
|
|
2133
|
+
prettyPrint?: boolean;
|
|
2134
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2135
|
+
quotaUser?: string;
|
|
2136
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2137
|
+
upload_protocol?: string;
|
|
2138
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2139
|
+
uploadType?: string;
|
|
2140
|
+
/** The ID of the user. */
|
|
2141
|
+
userId: string;
|
|
2142
|
+
}): Request<ManagedConfigurationsForDeviceListResponse>;
|
|
2143
|
+
/** Adds or updates a per-device managed configuration for an app for the specified device. */
|
|
2144
|
+
update(request: {
|
|
2145
|
+
/** V1 error format. */
|
|
2146
|
+
"$.xgafv"?: string;
|
|
2147
|
+
/** OAuth access token. */
|
|
2148
|
+
access_token?: string;
|
|
2149
|
+
/** Data format for response. */
|
|
2150
|
+
alt?: string;
|
|
2151
|
+
/** JSONP */
|
|
2152
|
+
callback?: string;
|
|
2153
|
+
/** The Android ID of the device. */
|
|
2154
|
+
deviceId: string;
|
|
2155
|
+
/** The ID of the enterprise. */
|
|
2156
|
+
enterpriseId: string;
|
|
2157
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2158
|
+
fields?: string;
|
|
2159
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2160
|
+
key?: string;
|
|
2161
|
+
/** The ID of the managed configuration (a product ID), e.g. "app:com.google.android.gm". */
|
|
2162
|
+
managedConfigurationForDeviceId: string;
|
|
2163
|
+
/** OAuth 2.0 token for the current user. */
|
|
2164
|
+
oauth_token?: string;
|
|
2165
|
+
/** Returns response with indentations and line breaks. */
|
|
2166
|
+
prettyPrint?: boolean;
|
|
2167
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2168
|
+
quotaUser?: string;
|
|
2169
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2170
|
+
upload_protocol?: string;
|
|
2171
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2172
|
+
uploadType?: string;
|
|
2173
|
+
/** The ID of the user. */
|
|
2174
|
+
userId: string;
|
|
2175
|
+
/** Request body */
|
|
2176
|
+
resource: ManagedConfiguration;
|
|
2177
|
+
}): Request<ManagedConfiguration>;
|
|
2178
|
+
update(request: {
|
|
2179
|
+
/** V1 error format. */
|
|
2180
|
+
"$.xgafv"?: string;
|
|
2181
|
+
/** OAuth access token. */
|
|
2182
|
+
access_token?: string;
|
|
2183
|
+
/** Data format for response. */
|
|
2184
|
+
alt?: string;
|
|
2185
|
+
/** JSONP */
|
|
2186
|
+
callback?: string;
|
|
2187
|
+
/** The Android ID of the device. */
|
|
2188
|
+
deviceId: string;
|
|
2189
|
+
/** The ID of the enterprise. */
|
|
2190
|
+
enterpriseId: string;
|
|
2191
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2192
|
+
fields?: string;
|
|
2193
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2194
|
+
key?: string;
|
|
2195
|
+
/** The ID of the managed configuration (a product ID), e.g. "app:com.google.android.gm". */
|
|
2196
|
+
managedConfigurationForDeviceId: string;
|
|
2197
|
+
/** OAuth 2.0 token for the current user. */
|
|
2198
|
+
oauth_token?: string;
|
|
2199
|
+
/** Returns response with indentations and line breaks. */
|
|
2200
|
+
prettyPrint?: boolean;
|
|
2201
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2202
|
+
quotaUser?: string;
|
|
2203
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2204
|
+
upload_protocol?: string;
|
|
2205
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2206
|
+
uploadType?: string;
|
|
2207
|
+
/** The ID of the user. */
|
|
2208
|
+
userId: string;
|
|
2209
|
+
},
|
|
2210
|
+
body: ManagedConfiguration): Request<ManagedConfiguration>;
|
|
2211
|
+
}
|
|
2212
|
+
interface ManagedconfigurationsforuserResource {
|
|
2213
|
+
/** Removes a per-user managed configuration for an app for the specified user. */
|
|
2214
|
+
delete(request?: {
|
|
2215
|
+
/** V1 error format. */
|
|
2216
|
+
"$.xgafv"?: string;
|
|
2217
|
+
/** OAuth access token. */
|
|
2218
|
+
access_token?: string;
|
|
2219
|
+
/** Data format for response. */
|
|
2220
|
+
alt?: string;
|
|
2221
|
+
/** JSONP */
|
|
2222
|
+
callback?: string;
|
|
2223
|
+
/** The ID of the enterprise. */
|
|
2224
|
+
enterpriseId: string;
|
|
2225
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2226
|
+
fields?: string;
|
|
2227
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2228
|
+
key?: string;
|
|
2229
|
+
/** The ID of the managed configuration (a product ID), e.g. "app:com.google.android.gm". */
|
|
2230
|
+
managedConfigurationForUserId: string;
|
|
2231
|
+
/** OAuth 2.0 token for the current user. */
|
|
2232
|
+
oauth_token?: string;
|
|
2233
|
+
/** Returns response with indentations and line breaks. */
|
|
2234
|
+
prettyPrint?: boolean;
|
|
2235
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2236
|
+
quotaUser?: string;
|
|
2237
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2238
|
+
upload_protocol?: string;
|
|
2239
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2240
|
+
uploadType?: string;
|
|
2241
|
+
/** The ID of the user. */
|
|
2242
|
+
userId: string;
|
|
2243
|
+
}): Request<void>;
|
|
2244
|
+
/** Retrieves details of a per-user managed configuration for an app for the specified user. */
|
|
2245
|
+
get(request?: {
|
|
2246
|
+
/** V1 error format. */
|
|
2247
|
+
"$.xgafv"?: string;
|
|
2248
|
+
/** OAuth access token. */
|
|
2249
|
+
access_token?: string;
|
|
2250
|
+
/** Data format for response. */
|
|
2251
|
+
alt?: string;
|
|
2252
|
+
/** JSONP */
|
|
2253
|
+
callback?: string;
|
|
2254
|
+
/** The ID of the enterprise. */
|
|
2255
|
+
enterpriseId: string;
|
|
2256
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2257
|
+
fields?: string;
|
|
2258
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2259
|
+
key?: string;
|
|
2260
|
+
/** The ID of the managed configuration (a product ID), e.g. "app:com.google.android.gm". */
|
|
2261
|
+
managedConfigurationForUserId: string;
|
|
2262
|
+
/** OAuth 2.0 token for the current user. */
|
|
2263
|
+
oauth_token?: string;
|
|
2264
|
+
/** Returns response with indentations and line breaks. */
|
|
2265
|
+
prettyPrint?: boolean;
|
|
2266
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2267
|
+
quotaUser?: string;
|
|
2268
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2269
|
+
upload_protocol?: string;
|
|
2270
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2271
|
+
uploadType?: string;
|
|
2272
|
+
/** The ID of the user. */
|
|
2273
|
+
userId: string;
|
|
2274
|
+
}): Request<ManagedConfiguration>;
|
|
2275
|
+
/** Lists all the per-user managed configurations for the specified user. Only the ID is set. */
|
|
2276
|
+
list(request?: {
|
|
2277
|
+
/** V1 error format. */
|
|
2278
|
+
"$.xgafv"?: string;
|
|
2279
|
+
/** OAuth access token. */
|
|
2280
|
+
access_token?: string;
|
|
2281
|
+
/** Data format for response. */
|
|
2282
|
+
alt?: string;
|
|
2283
|
+
/** JSONP */
|
|
2284
|
+
callback?: string;
|
|
2285
|
+
/** The ID of the enterprise. */
|
|
2286
|
+
enterpriseId: string;
|
|
2287
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2288
|
+
fields?: string;
|
|
2289
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2290
|
+
key?: string;
|
|
2291
|
+
/** OAuth 2.0 token for the current user. */
|
|
2292
|
+
oauth_token?: string;
|
|
2293
|
+
/** Returns response with indentations and line breaks. */
|
|
2294
|
+
prettyPrint?: boolean;
|
|
2295
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2296
|
+
quotaUser?: string;
|
|
2297
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2298
|
+
upload_protocol?: string;
|
|
2299
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2300
|
+
uploadType?: string;
|
|
2301
|
+
/** The ID of the user. */
|
|
2302
|
+
userId: string;
|
|
2303
|
+
}): Request<ManagedConfigurationsForUserListResponse>;
|
|
2304
|
+
/**
|
|
2305
|
+
* Adds or updates the managed configuration settings for an app for the specified user. If you support the Managed configurations iframe, you can apply managed configurations to a
|
|
2306
|
+
* user by specifying an mcmId and its associated configuration variables (if any) in the request. Alternatively, all EMMs can apply managed configurations by passing a list of managed
|
|
2307
|
+
* properties.
|
|
2308
|
+
*/
|
|
2309
|
+
update(request: {
|
|
2310
|
+
/** V1 error format. */
|
|
2311
|
+
"$.xgafv"?: string;
|
|
2312
|
+
/** OAuth access token. */
|
|
2313
|
+
access_token?: string;
|
|
2314
|
+
/** Data format for response. */
|
|
2315
|
+
alt?: string;
|
|
2316
|
+
/** JSONP */
|
|
2317
|
+
callback?: string;
|
|
2318
|
+
/** The ID of the enterprise. */
|
|
2319
|
+
enterpriseId: string;
|
|
2320
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2321
|
+
fields?: string;
|
|
2322
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2323
|
+
key?: string;
|
|
2324
|
+
/** The ID of the managed configuration (a product ID), e.g. "app:com.google.android.gm". */
|
|
2325
|
+
managedConfigurationForUserId: string;
|
|
2326
|
+
/** OAuth 2.0 token for the current user. */
|
|
2327
|
+
oauth_token?: string;
|
|
2328
|
+
/** Returns response with indentations and line breaks. */
|
|
2329
|
+
prettyPrint?: boolean;
|
|
2330
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2331
|
+
quotaUser?: string;
|
|
2332
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2333
|
+
upload_protocol?: string;
|
|
2334
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2335
|
+
uploadType?: string;
|
|
2336
|
+
/** The ID of the user. */
|
|
2337
|
+
userId: string;
|
|
2338
|
+
/** Request body */
|
|
2339
|
+
resource: ManagedConfiguration;
|
|
2340
|
+
}): Request<ManagedConfiguration>;
|
|
2341
|
+
update(request: {
|
|
2342
|
+
/** V1 error format. */
|
|
2343
|
+
"$.xgafv"?: string;
|
|
2344
|
+
/** OAuth access token. */
|
|
2345
|
+
access_token?: string;
|
|
2346
|
+
/** Data format for response. */
|
|
2347
|
+
alt?: string;
|
|
2348
|
+
/** JSONP */
|
|
2349
|
+
callback?: string;
|
|
2350
|
+
/** The ID of the enterprise. */
|
|
2351
|
+
enterpriseId: string;
|
|
2352
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2353
|
+
fields?: string;
|
|
2354
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2355
|
+
key?: string;
|
|
2356
|
+
/** The ID of the managed configuration (a product ID), e.g. "app:com.google.android.gm". */
|
|
2357
|
+
managedConfigurationForUserId: string;
|
|
2358
|
+
/** OAuth 2.0 token for the current user. */
|
|
2359
|
+
oauth_token?: string;
|
|
2360
|
+
/** Returns response with indentations and line breaks. */
|
|
2361
|
+
prettyPrint?: boolean;
|
|
2362
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2363
|
+
quotaUser?: string;
|
|
2364
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2365
|
+
upload_protocol?: string;
|
|
2366
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2367
|
+
uploadType?: string;
|
|
2368
|
+
/** The ID of the user. */
|
|
2369
|
+
userId: string;
|
|
2370
|
+
},
|
|
2371
|
+
body: ManagedConfiguration): Request<ManagedConfiguration>;
|
|
2372
|
+
}
|
|
2373
|
+
interface ManagedconfigurationssettingsResource {
|
|
2374
|
+
/** Lists all the managed configurations settings for the specified app. */
|
|
2375
|
+
list(request?: {
|
|
2376
|
+
/** V1 error format. */
|
|
2377
|
+
"$.xgafv"?: string;
|
|
2378
|
+
/** OAuth access token. */
|
|
2379
|
+
access_token?: string;
|
|
2380
|
+
/** Data format for response. */
|
|
2381
|
+
alt?: string;
|
|
2382
|
+
/** JSONP */
|
|
2383
|
+
callback?: string;
|
|
2384
|
+
/** The ID of the enterprise. */
|
|
2385
|
+
enterpriseId: string;
|
|
2386
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2387
|
+
fields?: string;
|
|
2388
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2389
|
+
key?: string;
|
|
2390
|
+
/** OAuth 2.0 token for the current user. */
|
|
2391
|
+
oauth_token?: string;
|
|
2392
|
+
/** Returns response with indentations and line breaks. */
|
|
2393
|
+
prettyPrint?: boolean;
|
|
2394
|
+
/** The ID of the product for which the managed configurations settings applies to. */
|
|
2395
|
+
productId: string;
|
|
2396
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2397
|
+
quotaUser?: string;
|
|
2398
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2399
|
+
upload_protocol?: string;
|
|
2400
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2401
|
+
uploadType?: string;
|
|
2402
|
+
}): Request<ManagedConfigurationsSettingsListResponse>;
|
|
2403
|
+
}
|
|
2404
|
+
interface PermissionsResource {
|
|
2405
|
+
/** Retrieves details of an Android app permission for display to an enterprise admin. */
|
|
2406
|
+
get(request?: {
|
|
2407
|
+
/** V1 error format. */
|
|
2408
|
+
"$.xgafv"?: string;
|
|
2409
|
+
/** OAuth access token. */
|
|
2410
|
+
access_token?: string;
|
|
2411
|
+
/** Data format for response. */
|
|
2412
|
+
alt?: string;
|
|
2413
|
+
/** JSONP */
|
|
2414
|
+
callback?: string;
|
|
2415
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2416
|
+
fields?: string;
|
|
2417
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2418
|
+
key?: string;
|
|
2419
|
+
/** The BCP47 tag for the user's preferred language (e.g. "en-US", "de") */
|
|
2420
|
+
language?: string;
|
|
2421
|
+
/** OAuth 2.0 token for the current user. */
|
|
2422
|
+
oauth_token?: string;
|
|
2423
|
+
/** The ID of the permission. */
|
|
2424
|
+
permissionId: string;
|
|
2425
|
+
/** Returns response with indentations and line breaks. */
|
|
2426
|
+
prettyPrint?: boolean;
|
|
2427
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2428
|
+
quotaUser?: string;
|
|
2429
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2430
|
+
upload_protocol?: string;
|
|
2431
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2432
|
+
uploadType?: string;
|
|
2433
|
+
}): Request<Permission>;
|
|
2434
|
+
}
|
|
2435
|
+
interface ProductsResource {
|
|
2436
|
+
/**
|
|
2437
|
+
* Approves the specified product and the relevant app permissions, if any. The maximum number of products that you can approve per enterprise customer is 1,000. To learn how to use
|
|
2438
|
+
* managed Google Play to design and create a store layout to display approved products to your users, see Store Layout Design.
|
|
2439
|
+
*/
|
|
2440
|
+
approve(request: {
|
|
2441
|
+
/** V1 error format. */
|
|
2442
|
+
"$.xgafv"?: string;
|
|
2443
|
+
/** OAuth access token. */
|
|
2444
|
+
access_token?: string;
|
|
2445
|
+
/** Data format for response. */
|
|
2446
|
+
alt?: string;
|
|
2447
|
+
/** JSONP */
|
|
2448
|
+
callback?: string;
|
|
2449
|
+
/** The ID of the enterprise. */
|
|
2450
|
+
enterpriseId: string;
|
|
2451
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2452
|
+
fields?: string;
|
|
2453
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2454
|
+
key?: string;
|
|
2455
|
+
/** OAuth 2.0 token for the current user. */
|
|
2456
|
+
oauth_token?: string;
|
|
2457
|
+
/** Returns response with indentations and line breaks. */
|
|
2458
|
+
prettyPrint?: boolean;
|
|
2459
|
+
/** The ID of the product. */
|
|
2460
|
+
productId: string;
|
|
2461
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2462
|
+
quotaUser?: string;
|
|
2463
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2464
|
+
upload_protocol?: string;
|
|
2465
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2466
|
+
uploadType?: string;
|
|
2467
|
+
/** Request body */
|
|
2468
|
+
resource: ProductsApproveRequest;
|
|
2469
|
+
}): Request<void>;
|
|
2470
|
+
approve(request: {
|
|
2471
|
+
/** V1 error format. */
|
|
2472
|
+
"$.xgafv"?: string;
|
|
2473
|
+
/** OAuth access token. */
|
|
2474
|
+
access_token?: string;
|
|
2475
|
+
/** Data format for response. */
|
|
2476
|
+
alt?: string;
|
|
2477
|
+
/** JSONP */
|
|
2478
|
+
callback?: string;
|
|
2479
|
+
/** The ID of the enterprise. */
|
|
2480
|
+
enterpriseId: string;
|
|
2481
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2482
|
+
fields?: string;
|
|
2483
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2484
|
+
key?: string;
|
|
2485
|
+
/** OAuth 2.0 token for the current user. */
|
|
2486
|
+
oauth_token?: string;
|
|
2487
|
+
/** Returns response with indentations and line breaks. */
|
|
2488
|
+
prettyPrint?: boolean;
|
|
2489
|
+
/** The ID of the product. */
|
|
2490
|
+
productId: string;
|
|
2491
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2492
|
+
quotaUser?: string;
|
|
2493
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2494
|
+
upload_protocol?: string;
|
|
2495
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2496
|
+
uploadType?: string;
|
|
2497
|
+
},
|
|
2498
|
+
body: ProductsApproveRequest): Request<void>;
|
|
2499
|
+
/**
|
|
2500
|
+
* Generates a URL that can be rendered in an iframe to display the permissions (if any) of a product. An enterprise admin must view these permissions and accept them on behalf of
|
|
2501
|
+
* their organization in order to approve that product. Admins should accept the displayed permissions by interacting with a separate UI element in the EMM console, which in turn
|
|
2502
|
+
* should trigger the use of this URL as the approvalUrlInfo.approvalUrl property in a Products.approve call to approve the product. This URL can only be used to display permissions
|
|
2503
|
+
* for up to 1 day.
|
|
2504
|
+
*/
|
|
2505
|
+
generateApprovalUrl(request?: {
|
|
2506
|
+
/** V1 error format. */
|
|
2507
|
+
"$.xgafv"?: string;
|
|
2508
|
+
/** OAuth access token. */
|
|
2509
|
+
access_token?: string;
|
|
2510
|
+
/** Data format for response. */
|
|
2511
|
+
alt?: string;
|
|
2512
|
+
/** JSONP */
|
|
2513
|
+
callback?: string;
|
|
2514
|
+
/** The ID of the enterprise. */
|
|
2515
|
+
enterpriseId: string;
|
|
2516
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2517
|
+
fields?: string;
|
|
2518
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2519
|
+
key?: string;
|
|
2520
|
+
/** The BCP 47 language code used for permission names and descriptions in the returned iframe, for instance "en-US". */
|
|
2521
|
+
languageCode?: string;
|
|
2522
|
+
/** OAuth 2.0 token for the current user. */
|
|
2523
|
+
oauth_token?: string;
|
|
2524
|
+
/** Returns response with indentations and line breaks. */
|
|
2525
|
+
prettyPrint?: boolean;
|
|
2526
|
+
/** The ID of the product. */
|
|
2527
|
+
productId: string;
|
|
2528
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2529
|
+
quotaUser?: string;
|
|
2530
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2531
|
+
upload_protocol?: string;
|
|
2532
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2533
|
+
uploadType?: string;
|
|
2534
|
+
}): Request<ProductsGenerateApprovalUrlResponse>;
|
|
2535
|
+
/** Retrieves details of a product for display to an enterprise admin. */
|
|
2536
|
+
get(request?: {
|
|
2537
|
+
/** V1 error format. */
|
|
2538
|
+
"$.xgafv"?: string;
|
|
2539
|
+
/** OAuth access token. */
|
|
2540
|
+
access_token?: string;
|
|
2541
|
+
/** Data format for response. */
|
|
2542
|
+
alt?: string;
|
|
2543
|
+
/** JSONP */
|
|
2544
|
+
callback?: string;
|
|
2545
|
+
/** The ID of the enterprise. */
|
|
2546
|
+
enterpriseId: string;
|
|
2547
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2548
|
+
fields?: string;
|
|
2549
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2550
|
+
key?: string;
|
|
2551
|
+
/** The BCP47 tag for the user's preferred language (e.g. "en-US", "de"). */
|
|
2552
|
+
language?: string;
|
|
2553
|
+
/** OAuth 2.0 token for the current user. */
|
|
2554
|
+
oauth_token?: string;
|
|
2555
|
+
/** Returns response with indentations and line breaks. */
|
|
2556
|
+
prettyPrint?: boolean;
|
|
2557
|
+
/** The ID of the product, e.g. "app:com.google.android.gm". */
|
|
2558
|
+
productId: string;
|
|
2559
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2560
|
+
quotaUser?: string;
|
|
2561
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2562
|
+
upload_protocol?: string;
|
|
2563
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2564
|
+
uploadType?: string;
|
|
2565
|
+
}): Request<Product>;
|
|
2566
|
+
/**
|
|
2567
|
+
* Retrieves the schema that defines the configurable properties for this product. All products have a schema, but this schema may be empty if no managed configurations have been
|
|
2568
|
+
* defined. This schema can be used to populate a UI that allows an admin to configure the product. To apply a managed configuration based on the schema obtained using this API, see
|
|
2569
|
+
* Managed Configurations through Play.
|
|
2570
|
+
*/
|
|
2571
|
+
getAppRestrictionsSchema(request?: {
|
|
2572
|
+
/** V1 error format. */
|
|
2573
|
+
"$.xgafv"?: string;
|
|
2574
|
+
/** OAuth access token. */
|
|
2575
|
+
access_token?: string;
|
|
2576
|
+
/** Data format for response. */
|
|
2577
|
+
alt?: string;
|
|
2578
|
+
/** JSONP */
|
|
2579
|
+
callback?: string;
|
|
2580
|
+
/** The ID of the enterprise. */
|
|
2581
|
+
enterpriseId: string;
|
|
2582
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2583
|
+
fields?: string;
|
|
2584
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2585
|
+
key?: string;
|
|
2586
|
+
/** The BCP47 tag for the user's preferred language (e.g. "en-US", "de"). */
|
|
2587
|
+
language?: string;
|
|
2588
|
+
/** OAuth 2.0 token for the current user. */
|
|
2589
|
+
oauth_token?: string;
|
|
2590
|
+
/** Returns response with indentations and line breaks. */
|
|
2591
|
+
prettyPrint?: boolean;
|
|
2592
|
+
/** The ID of the product. */
|
|
2593
|
+
productId: string;
|
|
2594
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2595
|
+
quotaUser?: string;
|
|
2596
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2597
|
+
upload_protocol?: string;
|
|
2598
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2599
|
+
uploadType?: string;
|
|
2600
|
+
}): Request<AppRestrictionsSchema>;
|
|
2601
|
+
/** Retrieves the Android app permissions required by this app. */
|
|
2602
|
+
getPermissions(request?: {
|
|
2603
|
+
/** V1 error format. */
|
|
2604
|
+
"$.xgafv"?: string;
|
|
2605
|
+
/** OAuth access token. */
|
|
2606
|
+
access_token?: string;
|
|
2607
|
+
/** Data format for response. */
|
|
2608
|
+
alt?: string;
|
|
2609
|
+
/** JSONP */
|
|
2610
|
+
callback?: string;
|
|
2611
|
+
/** The ID of the enterprise. */
|
|
2612
|
+
enterpriseId: string;
|
|
2613
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2614
|
+
fields?: string;
|
|
2615
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2616
|
+
key?: string;
|
|
2617
|
+
/** OAuth 2.0 token for the current user. */
|
|
2618
|
+
oauth_token?: string;
|
|
2619
|
+
/** Returns response with indentations and line breaks. */
|
|
2620
|
+
prettyPrint?: boolean;
|
|
2621
|
+
/** The ID of the product. */
|
|
2622
|
+
productId: string;
|
|
2623
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2624
|
+
quotaUser?: string;
|
|
2625
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2626
|
+
upload_protocol?: string;
|
|
2627
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2628
|
+
uploadType?: string;
|
|
2629
|
+
}): Request<ProductPermissions>;
|
|
2630
|
+
/** Finds approved products that match a query, or all approved products if there is no query. */
|
|
2631
|
+
list(request?: {
|
|
2632
|
+
/** V1 error format. */
|
|
2633
|
+
"$.xgafv"?: string;
|
|
2634
|
+
/** OAuth access token. */
|
|
2635
|
+
access_token?: string;
|
|
2636
|
+
/** Data format for response. */
|
|
2637
|
+
alt?: string;
|
|
2638
|
+
/** Specifies whether to search among all products (false) or among only products that have been approved (true). Only "true" is supported, and should be specified. */
|
|
2639
|
+
approved?: boolean;
|
|
2640
|
+
/** JSONP */
|
|
2641
|
+
callback?: string;
|
|
2642
|
+
/** The ID of the enterprise. */
|
|
2643
|
+
enterpriseId: string;
|
|
2644
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2645
|
+
fields?: string;
|
|
2646
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2647
|
+
key?: string;
|
|
2648
|
+
/** The BCP47 tag for the user's preferred language (e.g. "en-US", "de"). Results are returned in the language best matching the preferred language. */
|
|
2649
|
+
language?: string;
|
|
2650
|
+
/** Defines how many results the list operation should return. The default number depends on the resource collection. */
|
|
2651
|
+
maxResults?: number;
|
|
2652
|
+
/** OAuth 2.0 token for the current user. */
|
|
2653
|
+
oauth_token?: string;
|
|
2654
|
+
/** Returns response with indentations and line breaks. */
|
|
2655
|
+
prettyPrint?: boolean;
|
|
2656
|
+
/**
|
|
2657
|
+
* The search query as typed in the Google Play store search box. If omitted, all approved apps will be returned (using the pagination parameters), including apps that are not
|
|
2658
|
+
* available in the store (e.g. unpublished apps).
|
|
2659
|
+
*/
|
|
2660
|
+
query?: string;
|
|
2661
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2662
|
+
quotaUser?: string;
|
|
2663
|
+
/** Defines the token of the page to return, usually taken from TokenPagination. This can only be used if token paging is enabled. */
|
|
2664
|
+
token?: string;
|
|
2665
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2666
|
+
upload_protocol?: string;
|
|
2667
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2668
|
+
uploadType?: string;
|
|
2669
|
+
}): Request<ProductsListResponse>;
|
|
2670
|
+
/** Unapproves the specified product (and the relevant app permissions, if any) */
|
|
2671
|
+
unapprove(request?: {
|
|
2672
|
+
/** V1 error format. */
|
|
2673
|
+
"$.xgafv"?: string;
|
|
2674
|
+
/** OAuth access token. */
|
|
2675
|
+
access_token?: string;
|
|
2676
|
+
/** Data format for response. */
|
|
2677
|
+
alt?: string;
|
|
2678
|
+
/** JSONP */
|
|
2679
|
+
callback?: string;
|
|
2680
|
+
/** The ID of the enterprise. */
|
|
2681
|
+
enterpriseId: string;
|
|
2682
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2683
|
+
fields?: string;
|
|
2684
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2685
|
+
key?: string;
|
|
2686
|
+
/** OAuth 2.0 token for the current user. */
|
|
2687
|
+
oauth_token?: string;
|
|
2688
|
+
/** Returns response with indentations and line breaks. */
|
|
2689
|
+
prettyPrint?: boolean;
|
|
2690
|
+
/** The ID of the product. */
|
|
2691
|
+
productId: string;
|
|
2692
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2693
|
+
quotaUser?: string;
|
|
2694
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2695
|
+
upload_protocol?: string;
|
|
2696
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2697
|
+
uploadType?: string;
|
|
2698
|
+
}): Request<void>;
|
|
2699
|
+
}
|
|
2700
|
+
interface ServiceaccountkeysResource {
|
|
2701
|
+
/**
|
|
2702
|
+
* Removes and invalidates the specified credentials for the service account associated with this enterprise. The calling service account must have been retrieved by calling
|
|
2703
|
+
* Enterprises.GetServiceAccount and must have been set as the enterprise service account by calling Enterprises.SetAccount.
|
|
2704
|
+
*/
|
|
2705
|
+
delete(request?: {
|
|
2706
|
+
/** V1 error format. */
|
|
2707
|
+
"$.xgafv"?: string;
|
|
2708
|
+
/** OAuth access token. */
|
|
2709
|
+
access_token?: string;
|
|
2710
|
+
/** Data format for response. */
|
|
2711
|
+
alt?: string;
|
|
2712
|
+
/** JSONP */
|
|
2713
|
+
callback?: string;
|
|
2714
|
+
/** The ID of the enterprise. */
|
|
2715
|
+
enterpriseId: string;
|
|
2716
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2717
|
+
fields?: string;
|
|
2718
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2719
|
+
key?: string;
|
|
2720
|
+
/** The ID of the key. */
|
|
2721
|
+
keyId: string;
|
|
2722
|
+
/** OAuth 2.0 token for the current user. */
|
|
2723
|
+
oauth_token?: string;
|
|
2724
|
+
/** Returns response with indentations and line breaks. */
|
|
2725
|
+
prettyPrint?: boolean;
|
|
2726
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2727
|
+
quotaUser?: string;
|
|
2728
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2729
|
+
upload_protocol?: string;
|
|
2730
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2731
|
+
uploadType?: string;
|
|
2732
|
+
}): Request<void>;
|
|
2733
|
+
/**
|
|
2734
|
+
* Generates new credentials for the service account associated with this enterprise. The calling service account must have been retrieved by calling Enterprises.GetServiceAccount and
|
|
2735
|
+
* must have been set as the enterprise service account by calling Enterprises.SetAccount. Only the type of the key should be populated in the resource to be inserted.
|
|
2736
|
+
*/
|
|
2737
|
+
insert(request: {
|
|
2738
|
+
/** V1 error format. */
|
|
2739
|
+
"$.xgafv"?: string;
|
|
2740
|
+
/** OAuth access token. */
|
|
2741
|
+
access_token?: string;
|
|
2742
|
+
/** Data format for response. */
|
|
2743
|
+
alt?: string;
|
|
2744
|
+
/** JSONP */
|
|
2745
|
+
callback?: string;
|
|
2746
|
+
/** The ID of the enterprise. */
|
|
2747
|
+
enterpriseId: string;
|
|
2748
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2749
|
+
fields?: string;
|
|
2750
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2751
|
+
key?: string;
|
|
2752
|
+
/** OAuth 2.0 token for the current user. */
|
|
2753
|
+
oauth_token?: string;
|
|
2754
|
+
/** Returns response with indentations and line breaks. */
|
|
2755
|
+
prettyPrint?: boolean;
|
|
2756
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2757
|
+
quotaUser?: string;
|
|
2758
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2759
|
+
upload_protocol?: string;
|
|
2760
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2761
|
+
uploadType?: string;
|
|
2762
|
+
/** Request body */
|
|
2763
|
+
resource: ServiceAccountKey;
|
|
2764
|
+
}): Request<ServiceAccountKey>;
|
|
2765
|
+
insert(request: {
|
|
2766
|
+
/** V1 error format. */
|
|
2767
|
+
"$.xgafv"?: string;
|
|
2768
|
+
/** OAuth access token. */
|
|
2769
|
+
access_token?: string;
|
|
2770
|
+
/** Data format for response. */
|
|
2771
|
+
alt?: string;
|
|
2772
|
+
/** JSONP */
|
|
2773
|
+
callback?: string;
|
|
2774
|
+
/** The ID of the enterprise. */
|
|
2775
|
+
enterpriseId: string;
|
|
2776
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2777
|
+
fields?: string;
|
|
2778
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2779
|
+
key?: string;
|
|
2780
|
+
/** OAuth 2.0 token for the current user. */
|
|
2781
|
+
oauth_token?: string;
|
|
2782
|
+
/** Returns response with indentations and line breaks. */
|
|
2783
|
+
prettyPrint?: boolean;
|
|
2784
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2785
|
+
quotaUser?: string;
|
|
2786
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2787
|
+
upload_protocol?: string;
|
|
2788
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2789
|
+
uploadType?: string;
|
|
2790
|
+
},
|
|
2791
|
+
body: ServiceAccountKey): Request<ServiceAccountKey>;
|
|
2792
|
+
/**
|
|
2793
|
+
* Lists all active credentials for the service account associated with this enterprise. Only the ID and key type are returned. The calling service account must have been retrieved by
|
|
2794
|
+
* calling Enterprises.GetServiceAccount and must have been set as the enterprise service account by calling Enterprises.SetAccount.
|
|
2795
|
+
*/
|
|
2796
|
+
list(request?: {
|
|
2797
|
+
/** V1 error format. */
|
|
2798
|
+
"$.xgafv"?: string;
|
|
2799
|
+
/** OAuth access token. */
|
|
2800
|
+
access_token?: string;
|
|
2801
|
+
/** Data format for response. */
|
|
2802
|
+
alt?: string;
|
|
2803
|
+
/** JSONP */
|
|
2804
|
+
callback?: string;
|
|
2805
|
+
/** The ID of the enterprise. */
|
|
2806
|
+
enterpriseId: string;
|
|
2807
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2808
|
+
fields?: string;
|
|
2809
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2810
|
+
key?: string;
|
|
2811
|
+
/** OAuth 2.0 token for the current user. */
|
|
2812
|
+
oauth_token?: string;
|
|
2813
|
+
/** Returns response with indentations and line breaks. */
|
|
2814
|
+
prettyPrint?: boolean;
|
|
2815
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2816
|
+
quotaUser?: string;
|
|
2817
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2818
|
+
upload_protocol?: string;
|
|
2819
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2820
|
+
uploadType?: string;
|
|
2821
|
+
}): Request<ServiceAccountKeysListResponse>;
|
|
2822
|
+
}
|
|
2823
|
+
interface StorelayoutclustersResource {
|
|
2824
|
+
/** Deletes a cluster. */
|
|
2825
|
+
delete(request?: {
|
|
2826
|
+
/** V1 error format. */
|
|
2827
|
+
"$.xgafv"?: string;
|
|
2828
|
+
/** OAuth access token. */
|
|
2829
|
+
access_token?: string;
|
|
2830
|
+
/** Data format for response. */
|
|
2831
|
+
alt?: string;
|
|
2832
|
+
/** JSONP */
|
|
2833
|
+
callback?: string;
|
|
2834
|
+
/** The ID of the cluster. */
|
|
2835
|
+
clusterId: string;
|
|
2836
|
+
/** The ID of the enterprise. */
|
|
2837
|
+
enterpriseId: string;
|
|
2838
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2839
|
+
fields?: string;
|
|
2840
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2841
|
+
key?: string;
|
|
2842
|
+
/** OAuth 2.0 token for the current user. */
|
|
2843
|
+
oauth_token?: string;
|
|
2844
|
+
/** The ID of the page. */
|
|
2845
|
+
pageId: string;
|
|
2846
|
+
/** Returns response with indentations and line breaks. */
|
|
2847
|
+
prettyPrint?: boolean;
|
|
2848
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2849
|
+
quotaUser?: string;
|
|
2850
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2851
|
+
upload_protocol?: string;
|
|
2852
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2853
|
+
uploadType?: string;
|
|
2854
|
+
}): Request<void>;
|
|
2855
|
+
/** Retrieves details of a cluster. */
|
|
2856
|
+
get(request?: {
|
|
2857
|
+
/** V1 error format. */
|
|
2858
|
+
"$.xgafv"?: string;
|
|
2859
|
+
/** OAuth access token. */
|
|
2860
|
+
access_token?: string;
|
|
2861
|
+
/** Data format for response. */
|
|
2862
|
+
alt?: string;
|
|
2863
|
+
/** JSONP */
|
|
2864
|
+
callback?: string;
|
|
2865
|
+
/** The ID of the cluster. */
|
|
2866
|
+
clusterId: string;
|
|
2867
|
+
/** The ID of the enterprise. */
|
|
2868
|
+
enterpriseId: string;
|
|
2869
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2870
|
+
fields?: string;
|
|
2871
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2872
|
+
key?: string;
|
|
2873
|
+
/** OAuth 2.0 token for the current user. */
|
|
2874
|
+
oauth_token?: string;
|
|
2875
|
+
/** The ID of the page. */
|
|
2876
|
+
pageId: string;
|
|
2877
|
+
/** Returns response with indentations and line breaks. */
|
|
2878
|
+
prettyPrint?: boolean;
|
|
2879
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2880
|
+
quotaUser?: string;
|
|
2881
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2882
|
+
upload_protocol?: string;
|
|
2883
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2884
|
+
uploadType?: string;
|
|
2885
|
+
}): Request<StoreCluster>;
|
|
2886
|
+
/** Inserts a new cluster in a page. */
|
|
2887
|
+
insert(request: {
|
|
2888
|
+
/** V1 error format. */
|
|
2889
|
+
"$.xgafv"?: string;
|
|
2890
|
+
/** OAuth access token. */
|
|
2891
|
+
access_token?: string;
|
|
2892
|
+
/** Data format for response. */
|
|
2893
|
+
alt?: string;
|
|
2894
|
+
/** JSONP */
|
|
2895
|
+
callback?: string;
|
|
2896
|
+
/** The ID of the enterprise. */
|
|
2897
|
+
enterpriseId: string;
|
|
2898
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2899
|
+
fields?: string;
|
|
2900
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2901
|
+
key?: string;
|
|
2902
|
+
/** OAuth 2.0 token for the current user. */
|
|
2903
|
+
oauth_token?: string;
|
|
2904
|
+
/** The ID of the page. */
|
|
2905
|
+
pageId: string;
|
|
2906
|
+
/** Returns response with indentations and line breaks. */
|
|
2907
|
+
prettyPrint?: boolean;
|
|
2908
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2909
|
+
quotaUser?: string;
|
|
2910
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2911
|
+
upload_protocol?: string;
|
|
2912
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2913
|
+
uploadType?: string;
|
|
2914
|
+
/** Request body */
|
|
2915
|
+
resource: StoreCluster;
|
|
2916
|
+
}): Request<StoreCluster>;
|
|
2917
|
+
insert(request: {
|
|
2918
|
+
/** V1 error format. */
|
|
2919
|
+
"$.xgafv"?: string;
|
|
2920
|
+
/** OAuth access token. */
|
|
2921
|
+
access_token?: string;
|
|
2922
|
+
/** Data format for response. */
|
|
2923
|
+
alt?: string;
|
|
2924
|
+
/** JSONP */
|
|
2925
|
+
callback?: string;
|
|
2926
|
+
/** The ID of the enterprise. */
|
|
2927
|
+
enterpriseId: string;
|
|
2928
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2929
|
+
fields?: string;
|
|
2930
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2931
|
+
key?: string;
|
|
2932
|
+
/** OAuth 2.0 token for the current user. */
|
|
2933
|
+
oauth_token?: string;
|
|
2934
|
+
/** The ID of the page. */
|
|
2935
|
+
pageId: string;
|
|
2936
|
+
/** Returns response with indentations and line breaks. */
|
|
2937
|
+
prettyPrint?: boolean;
|
|
2938
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2939
|
+
quotaUser?: string;
|
|
2940
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2941
|
+
upload_protocol?: string;
|
|
2942
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2943
|
+
uploadType?: string;
|
|
2944
|
+
},
|
|
2945
|
+
body: StoreCluster): Request<StoreCluster>;
|
|
2946
|
+
/** Retrieves the details of all clusters on the specified page. */
|
|
2947
|
+
list(request?: {
|
|
2948
|
+
/** V1 error format. */
|
|
2949
|
+
"$.xgafv"?: string;
|
|
2950
|
+
/** OAuth access token. */
|
|
2951
|
+
access_token?: string;
|
|
2952
|
+
/** Data format for response. */
|
|
2953
|
+
alt?: string;
|
|
2954
|
+
/** JSONP */
|
|
2955
|
+
callback?: string;
|
|
2956
|
+
/** The ID of the enterprise. */
|
|
2957
|
+
enterpriseId: string;
|
|
2958
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2959
|
+
fields?: string;
|
|
2960
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2961
|
+
key?: string;
|
|
2962
|
+
/** OAuth 2.0 token for the current user. */
|
|
2963
|
+
oauth_token?: string;
|
|
2964
|
+
/** The ID of the page. */
|
|
2965
|
+
pageId: string;
|
|
2966
|
+
/** Returns response with indentations and line breaks. */
|
|
2967
|
+
prettyPrint?: boolean;
|
|
2968
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2969
|
+
quotaUser?: string;
|
|
2970
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2971
|
+
upload_protocol?: string;
|
|
2972
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2973
|
+
uploadType?: string;
|
|
2974
|
+
}): Request<StoreLayoutClustersListResponse>;
|
|
2975
|
+
/** Updates a cluster. */
|
|
2976
|
+
update(request: {
|
|
2977
|
+
/** V1 error format. */
|
|
2978
|
+
"$.xgafv"?: string;
|
|
2979
|
+
/** OAuth access token. */
|
|
2980
|
+
access_token?: string;
|
|
2981
|
+
/** Data format for response. */
|
|
2982
|
+
alt?: string;
|
|
2983
|
+
/** JSONP */
|
|
2984
|
+
callback?: string;
|
|
2985
|
+
/** The ID of the cluster. */
|
|
2986
|
+
clusterId: string;
|
|
2987
|
+
/** The ID of the enterprise. */
|
|
2988
|
+
enterpriseId: string;
|
|
2989
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2990
|
+
fields?: string;
|
|
2991
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2992
|
+
key?: string;
|
|
2993
|
+
/** OAuth 2.0 token for the current user. */
|
|
2994
|
+
oauth_token?: string;
|
|
2995
|
+
/** The ID of the page. */
|
|
2996
|
+
pageId: string;
|
|
2997
|
+
/** Returns response with indentations and line breaks. */
|
|
2998
|
+
prettyPrint?: boolean;
|
|
2999
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3000
|
+
quotaUser?: string;
|
|
3001
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3002
|
+
upload_protocol?: string;
|
|
3003
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3004
|
+
uploadType?: string;
|
|
3005
|
+
/** Request body */
|
|
3006
|
+
resource: StoreCluster;
|
|
3007
|
+
}): Request<StoreCluster>;
|
|
3008
|
+
update(request: {
|
|
3009
|
+
/** V1 error format. */
|
|
3010
|
+
"$.xgafv"?: string;
|
|
3011
|
+
/** OAuth access token. */
|
|
3012
|
+
access_token?: string;
|
|
3013
|
+
/** Data format for response. */
|
|
3014
|
+
alt?: string;
|
|
3015
|
+
/** JSONP */
|
|
3016
|
+
callback?: string;
|
|
3017
|
+
/** The ID of the cluster. */
|
|
3018
|
+
clusterId: string;
|
|
3019
|
+
/** The ID of the enterprise. */
|
|
3020
|
+
enterpriseId: string;
|
|
3021
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3022
|
+
fields?: string;
|
|
3023
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3024
|
+
key?: string;
|
|
3025
|
+
/** OAuth 2.0 token for the current user. */
|
|
3026
|
+
oauth_token?: string;
|
|
3027
|
+
/** The ID of the page. */
|
|
3028
|
+
pageId: string;
|
|
3029
|
+
/** Returns response with indentations and line breaks. */
|
|
3030
|
+
prettyPrint?: boolean;
|
|
3031
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3032
|
+
quotaUser?: string;
|
|
3033
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3034
|
+
upload_protocol?: string;
|
|
3035
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3036
|
+
uploadType?: string;
|
|
3037
|
+
},
|
|
3038
|
+
body: StoreCluster): Request<StoreCluster>;
|
|
3039
|
+
}
|
|
3040
|
+
interface StorelayoutpagesResource {
|
|
3041
|
+
/** Deletes a store page. */
|
|
3042
|
+
delete(request?: {
|
|
3043
|
+
/** V1 error format. */
|
|
3044
|
+
"$.xgafv"?: string;
|
|
3045
|
+
/** OAuth access token. */
|
|
3046
|
+
access_token?: string;
|
|
3047
|
+
/** Data format for response. */
|
|
3048
|
+
alt?: string;
|
|
3049
|
+
/** JSONP */
|
|
3050
|
+
callback?: string;
|
|
3051
|
+
/** The ID of the enterprise. */
|
|
3052
|
+
enterpriseId: string;
|
|
3053
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3054
|
+
fields?: string;
|
|
3055
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3056
|
+
key?: string;
|
|
3057
|
+
/** OAuth 2.0 token for the current user. */
|
|
3058
|
+
oauth_token?: string;
|
|
3059
|
+
/** The ID of the page. */
|
|
3060
|
+
pageId: string;
|
|
3061
|
+
/** Returns response with indentations and line breaks. */
|
|
3062
|
+
prettyPrint?: boolean;
|
|
3063
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3064
|
+
quotaUser?: string;
|
|
3065
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3066
|
+
upload_protocol?: string;
|
|
3067
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3068
|
+
uploadType?: string;
|
|
3069
|
+
}): Request<void>;
|
|
3070
|
+
/** Retrieves details of a store page. */
|
|
3071
|
+
get(request?: {
|
|
3072
|
+
/** V1 error format. */
|
|
3073
|
+
"$.xgafv"?: string;
|
|
3074
|
+
/** OAuth access token. */
|
|
3075
|
+
access_token?: string;
|
|
3076
|
+
/** Data format for response. */
|
|
3077
|
+
alt?: string;
|
|
3078
|
+
/** JSONP */
|
|
3079
|
+
callback?: string;
|
|
3080
|
+
/** The ID of the enterprise. */
|
|
3081
|
+
enterpriseId: string;
|
|
3082
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3083
|
+
fields?: string;
|
|
3084
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3085
|
+
key?: string;
|
|
3086
|
+
/** OAuth 2.0 token for the current user. */
|
|
3087
|
+
oauth_token?: string;
|
|
3088
|
+
/** The ID of the page. */
|
|
3089
|
+
pageId: string;
|
|
3090
|
+
/** Returns response with indentations and line breaks. */
|
|
3091
|
+
prettyPrint?: boolean;
|
|
3092
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3093
|
+
quotaUser?: string;
|
|
3094
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3095
|
+
upload_protocol?: string;
|
|
3096
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3097
|
+
uploadType?: string;
|
|
3098
|
+
}): Request<StorePage>;
|
|
3099
|
+
/** Inserts a new store page. */
|
|
3100
|
+
insert(request: {
|
|
3101
|
+
/** V1 error format. */
|
|
3102
|
+
"$.xgafv"?: string;
|
|
3103
|
+
/** OAuth access token. */
|
|
3104
|
+
access_token?: string;
|
|
3105
|
+
/** Data format for response. */
|
|
3106
|
+
alt?: string;
|
|
3107
|
+
/** JSONP */
|
|
3108
|
+
callback?: string;
|
|
3109
|
+
/** The ID of the enterprise. */
|
|
3110
|
+
enterpriseId: string;
|
|
3111
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3112
|
+
fields?: string;
|
|
3113
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3114
|
+
key?: string;
|
|
3115
|
+
/** OAuth 2.0 token for the current user. */
|
|
3116
|
+
oauth_token?: string;
|
|
3117
|
+
/** Returns response with indentations and line breaks. */
|
|
3118
|
+
prettyPrint?: boolean;
|
|
3119
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3120
|
+
quotaUser?: string;
|
|
3121
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3122
|
+
upload_protocol?: string;
|
|
3123
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3124
|
+
uploadType?: string;
|
|
3125
|
+
/** Request body */
|
|
3126
|
+
resource: StorePage;
|
|
3127
|
+
}): Request<StorePage>;
|
|
3128
|
+
insert(request: {
|
|
3129
|
+
/** V1 error format. */
|
|
3130
|
+
"$.xgafv"?: string;
|
|
3131
|
+
/** OAuth access token. */
|
|
3132
|
+
access_token?: string;
|
|
3133
|
+
/** Data format for response. */
|
|
3134
|
+
alt?: string;
|
|
3135
|
+
/** JSONP */
|
|
3136
|
+
callback?: string;
|
|
3137
|
+
/** The ID of the enterprise. */
|
|
3138
|
+
enterpriseId: string;
|
|
3139
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3140
|
+
fields?: string;
|
|
3141
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3142
|
+
key?: string;
|
|
3143
|
+
/** OAuth 2.0 token for the current user. */
|
|
3144
|
+
oauth_token?: string;
|
|
3145
|
+
/** Returns response with indentations and line breaks. */
|
|
3146
|
+
prettyPrint?: boolean;
|
|
3147
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3148
|
+
quotaUser?: string;
|
|
3149
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3150
|
+
upload_protocol?: string;
|
|
3151
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3152
|
+
uploadType?: string;
|
|
3153
|
+
},
|
|
3154
|
+
body: StorePage): Request<StorePage>;
|
|
3155
|
+
/** Retrieves the details of all pages in the store. */
|
|
3156
|
+
list(request?: {
|
|
3157
|
+
/** V1 error format. */
|
|
3158
|
+
"$.xgafv"?: string;
|
|
3159
|
+
/** OAuth access token. */
|
|
3160
|
+
access_token?: string;
|
|
3161
|
+
/** Data format for response. */
|
|
3162
|
+
alt?: string;
|
|
3163
|
+
/** JSONP */
|
|
3164
|
+
callback?: string;
|
|
3165
|
+
/** The ID of the enterprise. */
|
|
3166
|
+
enterpriseId: string;
|
|
3167
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3168
|
+
fields?: string;
|
|
3169
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3170
|
+
key?: string;
|
|
3171
|
+
/** OAuth 2.0 token for the current user. */
|
|
3172
|
+
oauth_token?: string;
|
|
3173
|
+
/** Returns response with indentations and line breaks. */
|
|
3174
|
+
prettyPrint?: boolean;
|
|
3175
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3176
|
+
quotaUser?: string;
|
|
3177
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3178
|
+
upload_protocol?: string;
|
|
3179
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3180
|
+
uploadType?: string;
|
|
3181
|
+
}): Request<StoreLayoutPagesListResponse>;
|
|
3182
|
+
/** Updates the content of a store page. */
|
|
3183
|
+
update(request: {
|
|
3184
|
+
/** V1 error format. */
|
|
3185
|
+
"$.xgafv"?: string;
|
|
3186
|
+
/** OAuth access token. */
|
|
3187
|
+
access_token?: string;
|
|
3188
|
+
/** Data format for response. */
|
|
3189
|
+
alt?: string;
|
|
3190
|
+
/** JSONP */
|
|
3191
|
+
callback?: string;
|
|
3192
|
+
/** The ID of the enterprise. */
|
|
3193
|
+
enterpriseId: string;
|
|
3194
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3195
|
+
fields?: string;
|
|
3196
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3197
|
+
key?: string;
|
|
3198
|
+
/** OAuth 2.0 token for the current user. */
|
|
3199
|
+
oauth_token?: string;
|
|
3200
|
+
/** The ID of the page. */
|
|
3201
|
+
pageId: string;
|
|
3202
|
+
/** Returns response with indentations and line breaks. */
|
|
3203
|
+
prettyPrint?: boolean;
|
|
3204
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3205
|
+
quotaUser?: string;
|
|
3206
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3207
|
+
upload_protocol?: string;
|
|
3208
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3209
|
+
uploadType?: string;
|
|
3210
|
+
/** Request body */
|
|
3211
|
+
resource: StorePage;
|
|
3212
|
+
}): Request<StorePage>;
|
|
3213
|
+
update(request: {
|
|
3214
|
+
/** V1 error format. */
|
|
3215
|
+
"$.xgafv"?: string;
|
|
3216
|
+
/** OAuth access token. */
|
|
3217
|
+
access_token?: string;
|
|
3218
|
+
/** Data format for response. */
|
|
3219
|
+
alt?: string;
|
|
3220
|
+
/** JSONP */
|
|
3221
|
+
callback?: string;
|
|
3222
|
+
/** The ID of the enterprise. */
|
|
3223
|
+
enterpriseId: string;
|
|
3224
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3225
|
+
fields?: string;
|
|
3226
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3227
|
+
key?: string;
|
|
3228
|
+
/** OAuth 2.0 token for the current user. */
|
|
3229
|
+
oauth_token?: string;
|
|
3230
|
+
/** The ID of the page. */
|
|
3231
|
+
pageId: string;
|
|
3232
|
+
/** Returns response with indentations and line breaks. */
|
|
3233
|
+
prettyPrint?: boolean;
|
|
3234
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3235
|
+
quotaUser?: string;
|
|
3236
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3237
|
+
upload_protocol?: string;
|
|
3238
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3239
|
+
uploadType?: string;
|
|
3240
|
+
},
|
|
3241
|
+
body: StorePage): Request<StorePage>;
|
|
3242
|
+
}
|
|
3243
|
+
interface UsersResource {
|
|
3244
|
+
/** Deleted an EMM-managed user. */
|
|
3245
|
+
delete(request?: {
|
|
3246
|
+
/** V1 error format. */
|
|
3247
|
+
"$.xgafv"?: string;
|
|
3248
|
+
/** OAuth access token. */
|
|
3249
|
+
access_token?: string;
|
|
3250
|
+
/** Data format for response. */
|
|
3251
|
+
alt?: string;
|
|
3252
|
+
/** JSONP */
|
|
3253
|
+
callback?: string;
|
|
3254
|
+
/** The ID of the enterprise. */
|
|
3255
|
+
enterpriseId: string;
|
|
3256
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3257
|
+
fields?: string;
|
|
3258
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3259
|
+
key?: string;
|
|
3260
|
+
/** OAuth 2.0 token for the current user. */
|
|
3261
|
+
oauth_token?: string;
|
|
3262
|
+
/** Returns response with indentations and line breaks. */
|
|
3263
|
+
prettyPrint?: boolean;
|
|
3264
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3265
|
+
quotaUser?: string;
|
|
3266
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3267
|
+
upload_protocol?: string;
|
|
3268
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3269
|
+
uploadType?: string;
|
|
3270
|
+
/** The ID of the user. */
|
|
3271
|
+
userId: string;
|
|
3272
|
+
}): Request<void>;
|
|
3273
|
+
/**
|
|
3274
|
+
* Generates an authentication token which the device policy client can use to provision the given EMM-managed user account on a device. The generated token is single-use and expires
|
|
3275
|
+
* after a few minutes. You can provision a maximum of 10 devices per user. This call only works with EMM-managed accounts.
|
|
3276
|
+
*/
|
|
3277
|
+
generateAuthenticationToken(request?: {
|
|
3278
|
+
/** V1 error format. */
|
|
3279
|
+
"$.xgafv"?: string;
|
|
3280
|
+
/** OAuth access token. */
|
|
3281
|
+
access_token?: string;
|
|
3282
|
+
/** Data format for response. */
|
|
3283
|
+
alt?: string;
|
|
3284
|
+
/** JSONP */
|
|
3285
|
+
callback?: string;
|
|
3286
|
+
/** The ID of the enterprise. */
|
|
3287
|
+
enterpriseId: string;
|
|
3288
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3289
|
+
fields?: string;
|
|
3290
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3291
|
+
key?: string;
|
|
3292
|
+
/** OAuth 2.0 token for the current user. */
|
|
3293
|
+
oauth_token?: string;
|
|
3294
|
+
/** Returns response with indentations and line breaks. */
|
|
3295
|
+
prettyPrint?: boolean;
|
|
3296
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3297
|
+
quotaUser?: string;
|
|
3298
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3299
|
+
upload_protocol?: string;
|
|
3300
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3301
|
+
uploadType?: string;
|
|
3302
|
+
/** The ID of the user. */
|
|
3303
|
+
userId: string;
|
|
3304
|
+
}): Request<AuthenticationToken>;
|
|
3305
|
+
/** Retrieves a user's details. */
|
|
3306
|
+
get(request?: {
|
|
3307
|
+
/** V1 error format. */
|
|
3308
|
+
"$.xgafv"?: string;
|
|
3309
|
+
/** OAuth access token. */
|
|
3310
|
+
access_token?: string;
|
|
3311
|
+
/** Data format for response. */
|
|
3312
|
+
alt?: string;
|
|
3313
|
+
/** JSONP */
|
|
3314
|
+
callback?: string;
|
|
3315
|
+
/** The ID of the enterprise. */
|
|
3316
|
+
enterpriseId: string;
|
|
3317
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3318
|
+
fields?: string;
|
|
3319
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3320
|
+
key?: string;
|
|
3321
|
+
/** OAuth 2.0 token for the current user. */
|
|
3322
|
+
oauth_token?: string;
|
|
3323
|
+
/** Returns response with indentations and line breaks. */
|
|
3324
|
+
prettyPrint?: boolean;
|
|
3325
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3326
|
+
quotaUser?: string;
|
|
3327
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3328
|
+
upload_protocol?: string;
|
|
3329
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3330
|
+
uploadType?: string;
|
|
3331
|
+
/** The ID of the user. */
|
|
3332
|
+
userId: string;
|
|
3333
|
+
}): Request<User>;
|
|
3334
|
+
/** Retrieves the set of products a user is entitled to access. */
|
|
3335
|
+
getAvailableProductSet(request?: {
|
|
3336
|
+
/** V1 error format. */
|
|
3337
|
+
"$.xgafv"?: string;
|
|
3338
|
+
/** OAuth access token. */
|
|
3339
|
+
access_token?: string;
|
|
3340
|
+
/** Data format for response. */
|
|
3341
|
+
alt?: string;
|
|
3342
|
+
/** JSONP */
|
|
3343
|
+
callback?: string;
|
|
3344
|
+
/** The ID of the enterprise. */
|
|
3345
|
+
enterpriseId: string;
|
|
3346
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3347
|
+
fields?: string;
|
|
3348
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3349
|
+
key?: string;
|
|
3350
|
+
/** OAuth 2.0 token for the current user. */
|
|
3351
|
+
oauth_token?: string;
|
|
3352
|
+
/** Returns response with indentations and line breaks. */
|
|
3353
|
+
prettyPrint?: boolean;
|
|
3354
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3355
|
+
quotaUser?: string;
|
|
3356
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3357
|
+
upload_protocol?: string;
|
|
3358
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3359
|
+
uploadType?: string;
|
|
3360
|
+
/** The ID of the user. */
|
|
3361
|
+
userId: string;
|
|
3362
|
+
}): Request<ProductSet>;
|
|
3363
|
+
/**
|
|
3364
|
+
* Creates a new EMM-managed user. The Users resource passed in the body of the request should include an accountIdentifier and an accountType. If a corresponding user already exists
|
|
3365
|
+
* with the same account identifier, the user will be updated with the resource. In this case only the displayName field can be changed.
|
|
3366
|
+
*/
|
|
3367
|
+
insert(request: {
|
|
3368
|
+
/** V1 error format. */
|
|
3369
|
+
"$.xgafv"?: string;
|
|
3370
|
+
/** OAuth access token. */
|
|
3371
|
+
access_token?: string;
|
|
3372
|
+
/** Data format for response. */
|
|
3373
|
+
alt?: string;
|
|
3374
|
+
/** JSONP */
|
|
3375
|
+
callback?: string;
|
|
3376
|
+
/** The ID of the enterprise. */
|
|
3377
|
+
enterpriseId: string;
|
|
3378
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3379
|
+
fields?: string;
|
|
3380
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3381
|
+
key?: string;
|
|
3382
|
+
/** OAuth 2.0 token for the current user. */
|
|
3383
|
+
oauth_token?: string;
|
|
3384
|
+
/** Returns response with indentations and line breaks. */
|
|
3385
|
+
prettyPrint?: boolean;
|
|
3386
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3387
|
+
quotaUser?: string;
|
|
3388
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3389
|
+
upload_protocol?: string;
|
|
3390
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3391
|
+
uploadType?: string;
|
|
3392
|
+
/** Request body */
|
|
3393
|
+
resource: User;
|
|
3394
|
+
}): Request<User>;
|
|
3395
|
+
insert(request: {
|
|
3396
|
+
/** V1 error format. */
|
|
3397
|
+
"$.xgafv"?: string;
|
|
3398
|
+
/** OAuth access token. */
|
|
3399
|
+
access_token?: string;
|
|
3400
|
+
/** Data format for response. */
|
|
3401
|
+
alt?: string;
|
|
3402
|
+
/** JSONP */
|
|
3403
|
+
callback?: string;
|
|
3404
|
+
/** The ID of the enterprise. */
|
|
3405
|
+
enterpriseId: string;
|
|
3406
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3407
|
+
fields?: string;
|
|
3408
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3409
|
+
key?: string;
|
|
3410
|
+
/** OAuth 2.0 token for the current user. */
|
|
3411
|
+
oauth_token?: string;
|
|
3412
|
+
/** Returns response with indentations and line breaks. */
|
|
3413
|
+
prettyPrint?: boolean;
|
|
3414
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3415
|
+
quotaUser?: string;
|
|
3416
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3417
|
+
upload_protocol?: string;
|
|
3418
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3419
|
+
uploadType?: string;
|
|
3420
|
+
},
|
|
3421
|
+
body: User): Request<User>;
|
|
3422
|
+
/**
|
|
3423
|
+
* Looks up a user by primary email address. This is only supported for Google-managed users. Lookup of the id is not needed for EMM-managed users because the id is already returned in
|
|
3424
|
+
* the result of the Users.insert call.
|
|
3425
|
+
*/
|
|
3426
|
+
list(request?: {
|
|
3427
|
+
/** V1 error format. */
|
|
3428
|
+
"$.xgafv"?: string;
|
|
3429
|
+
/** OAuth access token. */
|
|
3430
|
+
access_token?: string;
|
|
3431
|
+
/** Data format for response. */
|
|
3432
|
+
alt?: string;
|
|
3433
|
+
/** JSONP */
|
|
3434
|
+
callback?: string;
|
|
3435
|
+
/** Required. The exact primary email address of the user to look up. */
|
|
3436
|
+
email: string;
|
|
3437
|
+
/** The ID of the enterprise. */
|
|
3438
|
+
enterpriseId: string;
|
|
3439
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3440
|
+
fields?: string;
|
|
3441
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3442
|
+
key?: string;
|
|
3443
|
+
/** OAuth 2.0 token for the current user. */
|
|
3444
|
+
oauth_token?: string;
|
|
3445
|
+
/** Returns response with indentations and line breaks. */
|
|
3446
|
+
prettyPrint?: boolean;
|
|
3447
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3448
|
+
quotaUser?: string;
|
|
3449
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3450
|
+
upload_protocol?: string;
|
|
3451
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3452
|
+
uploadType?: string;
|
|
3453
|
+
}): Request<UsersListResponse>;
|
|
3454
|
+
/**
|
|
3455
|
+
* Revokes access to all devices currently provisioned to the user. The user will no longer be able to use the managed Play store on any of their managed devices. This call only works
|
|
3456
|
+
* with EMM-managed accounts.
|
|
3457
|
+
*/
|
|
3458
|
+
revokeDeviceAccess(request?: {
|
|
3459
|
+
/** V1 error format. */
|
|
3460
|
+
"$.xgafv"?: string;
|
|
3461
|
+
/** OAuth access token. */
|
|
3462
|
+
access_token?: string;
|
|
3463
|
+
/** Data format for response. */
|
|
3464
|
+
alt?: string;
|
|
3465
|
+
/** JSONP */
|
|
3466
|
+
callback?: string;
|
|
3467
|
+
/** The ID of the enterprise. */
|
|
3468
|
+
enterpriseId: string;
|
|
3469
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3470
|
+
fields?: string;
|
|
3471
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3472
|
+
key?: string;
|
|
3473
|
+
/** OAuth 2.0 token for the current user. */
|
|
3474
|
+
oauth_token?: string;
|
|
3475
|
+
/** Returns response with indentations and line breaks. */
|
|
3476
|
+
prettyPrint?: boolean;
|
|
3477
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3478
|
+
quotaUser?: string;
|
|
3479
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3480
|
+
upload_protocol?: string;
|
|
3481
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3482
|
+
uploadType?: string;
|
|
3483
|
+
/** The ID of the user. */
|
|
3484
|
+
userId: string;
|
|
3485
|
+
}): Request<void>;
|
|
3486
|
+
/**
|
|
3487
|
+
* Modifies the set of products that a user is entitled to access (referred to as *whitelisted* products). Only products that are approved or products that were previously approved
|
|
3488
|
+
* (products with revoked approval) can be whitelisted.
|
|
3489
|
+
*/
|
|
3490
|
+
setAvailableProductSet(request: {
|
|
3491
|
+
/** V1 error format. */
|
|
3492
|
+
"$.xgafv"?: string;
|
|
3493
|
+
/** OAuth access token. */
|
|
3494
|
+
access_token?: string;
|
|
3495
|
+
/** Data format for response. */
|
|
3496
|
+
alt?: string;
|
|
3497
|
+
/** JSONP */
|
|
3498
|
+
callback?: string;
|
|
3499
|
+
/** The ID of the enterprise. */
|
|
3500
|
+
enterpriseId: string;
|
|
3501
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3502
|
+
fields?: string;
|
|
3503
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3504
|
+
key?: string;
|
|
3505
|
+
/** OAuth 2.0 token for the current user. */
|
|
3506
|
+
oauth_token?: string;
|
|
3507
|
+
/** Returns response with indentations and line breaks. */
|
|
3508
|
+
prettyPrint?: boolean;
|
|
3509
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3510
|
+
quotaUser?: string;
|
|
3511
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3512
|
+
upload_protocol?: string;
|
|
3513
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3514
|
+
uploadType?: string;
|
|
3515
|
+
/** The ID of the user. */
|
|
3516
|
+
userId: string;
|
|
3517
|
+
/** Request body */
|
|
3518
|
+
resource: ProductSet;
|
|
3519
|
+
}): Request<ProductSet>;
|
|
3520
|
+
setAvailableProductSet(request: {
|
|
3521
|
+
/** V1 error format. */
|
|
3522
|
+
"$.xgafv"?: string;
|
|
3523
|
+
/** OAuth access token. */
|
|
3524
|
+
access_token?: string;
|
|
3525
|
+
/** Data format for response. */
|
|
3526
|
+
alt?: string;
|
|
3527
|
+
/** JSONP */
|
|
3528
|
+
callback?: string;
|
|
3529
|
+
/** The ID of the enterprise. */
|
|
3530
|
+
enterpriseId: string;
|
|
3531
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3532
|
+
fields?: string;
|
|
3533
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3534
|
+
key?: string;
|
|
3535
|
+
/** OAuth 2.0 token for the current user. */
|
|
3536
|
+
oauth_token?: string;
|
|
3537
|
+
/** Returns response with indentations and line breaks. */
|
|
3538
|
+
prettyPrint?: boolean;
|
|
3539
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3540
|
+
quotaUser?: string;
|
|
3541
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3542
|
+
upload_protocol?: string;
|
|
3543
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3544
|
+
uploadType?: string;
|
|
3545
|
+
/** The ID of the user. */
|
|
3546
|
+
userId: string;
|
|
3547
|
+
},
|
|
3548
|
+
body: ProductSet): Request<ProductSet>;
|
|
3549
|
+
/**
|
|
3550
|
+
* Updates the details of an EMM-managed user. Can be used with EMM-managed users only (not Google managed users). Pass the new details in the Users resource in the request body. Only
|
|
3551
|
+
* the displayName field can be changed. Other fields must either be unset or have the currently active value.
|
|
3552
|
+
*/
|
|
3553
|
+
update(request: {
|
|
3554
|
+
/** V1 error format. */
|
|
3555
|
+
"$.xgafv"?: string;
|
|
3556
|
+
/** OAuth access token. */
|
|
3557
|
+
access_token?: string;
|
|
3558
|
+
/** Data format for response. */
|
|
3559
|
+
alt?: string;
|
|
3560
|
+
/** JSONP */
|
|
3561
|
+
callback?: string;
|
|
3562
|
+
/** The ID of the enterprise. */
|
|
3563
|
+
enterpriseId: string;
|
|
3564
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3565
|
+
fields?: string;
|
|
3566
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3567
|
+
key?: string;
|
|
3568
|
+
/** OAuth 2.0 token for the current user. */
|
|
3569
|
+
oauth_token?: string;
|
|
3570
|
+
/** Returns response with indentations and line breaks. */
|
|
3571
|
+
prettyPrint?: boolean;
|
|
3572
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3573
|
+
quotaUser?: string;
|
|
3574
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3575
|
+
upload_protocol?: string;
|
|
3576
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3577
|
+
uploadType?: string;
|
|
3578
|
+
/** The ID of the user. */
|
|
3579
|
+
userId: string;
|
|
3580
|
+
/** Request body */
|
|
3581
|
+
resource: User;
|
|
3582
|
+
}): Request<User>;
|
|
3583
|
+
update(request: {
|
|
3584
|
+
/** V1 error format. */
|
|
3585
|
+
"$.xgafv"?: string;
|
|
3586
|
+
/** OAuth access token. */
|
|
3587
|
+
access_token?: string;
|
|
3588
|
+
/** Data format for response. */
|
|
3589
|
+
alt?: string;
|
|
3590
|
+
/** JSONP */
|
|
3591
|
+
callback?: string;
|
|
3592
|
+
/** The ID of the enterprise. */
|
|
3593
|
+
enterpriseId: string;
|
|
3594
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3595
|
+
fields?: string;
|
|
3596
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3597
|
+
key?: string;
|
|
3598
|
+
/** OAuth 2.0 token for the current user. */
|
|
3599
|
+
oauth_token?: string;
|
|
3600
|
+
/** Returns response with indentations and line breaks. */
|
|
3601
|
+
prettyPrint?: boolean;
|
|
3602
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3603
|
+
quotaUser?: string;
|
|
3604
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3605
|
+
upload_protocol?: string;
|
|
3606
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3607
|
+
uploadType?: string;
|
|
3608
|
+
/** The ID of the user. */
|
|
3609
|
+
userId: string;
|
|
3610
|
+
},
|
|
3611
|
+
body: User): Request<User>;
|
|
3612
|
+
}
|
|
3613
|
+
interface WebappsResource {
|
|
3614
|
+
/** Deletes an existing web app. */
|
|
3615
|
+
delete(request?: {
|
|
3616
|
+
/** V1 error format. */
|
|
3617
|
+
"$.xgafv"?: string;
|
|
3618
|
+
/** OAuth access token. */
|
|
3619
|
+
access_token?: string;
|
|
3620
|
+
/** Data format for response. */
|
|
3621
|
+
alt?: string;
|
|
3622
|
+
/** JSONP */
|
|
3623
|
+
callback?: string;
|
|
3624
|
+
/** The ID of the enterprise. */
|
|
3625
|
+
enterpriseId: string;
|
|
3626
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3627
|
+
fields?: string;
|
|
3628
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3629
|
+
key?: string;
|
|
3630
|
+
/** OAuth 2.0 token for the current user. */
|
|
3631
|
+
oauth_token?: string;
|
|
3632
|
+
/** Returns response with indentations and line breaks. */
|
|
3633
|
+
prettyPrint?: boolean;
|
|
3634
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3635
|
+
quotaUser?: string;
|
|
3636
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3637
|
+
upload_protocol?: string;
|
|
3638
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3639
|
+
uploadType?: string;
|
|
3640
|
+
/** The ID of the web app. */
|
|
3641
|
+
webAppId: string;
|
|
3642
|
+
}): Request<void>;
|
|
3643
|
+
/** Gets an existing web app. */
|
|
3644
|
+
get(request?: {
|
|
3645
|
+
/** V1 error format. */
|
|
3646
|
+
"$.xgafv"?: string;
|
|
3647
|
+
/** OAuth access token. */
|
|
3648
|
+
access_token?: string;
|
|
3649
|
+
/** Data format for response. */
|
|
3650
|
+
alt?: string;
|
|
3651
|
+
/** JSONP */
|
|
3652
|
+
callback?: string;
|
|
3653
|
+
/** The ID of the enterprise. */
|
|
3654
|
+
enterpriseId: string;
|
|
3655
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3656
|
+
fields?: string;
|
|
3657
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3658
|
+
key?: string;
|
|
3659
|
+
/** OAuth 2.0 token for the current user. */
|
|
3660
|
+
oauth_token?: string;
|
|
3661
|
+
/** Returns response with indentations and line breaks. */
|
|
3662
|
+
prettyPrint?: boolean;
|
|
3663
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3664
|
+
quotaUser?: string;
|
|
3665
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3666
|
+
upload_protocol?: string;
|
|
3667
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3668
|
+
uploadType?: string;
|
|
3669
|
+
/** The ID of the web app. */
|
|
3670
|
+
webAppId: string;
|
|
3671
|
+
}): Request<WebApp>;
|
|
3672
|
+
/** Creates a new web app for the enterprise. */
|
|
3673
|
+
insert(request: {
|
|
3674
|
+
/** V1 error format. */
|
|
3675
|
+
"$.xgafv"?: string;
|
|
3676
|
+
/** OAuth access token. */
|
|
3677
|
+
access_token?: string;
|
|
3678
|
+
/** Data format for response. */
|
|
3679
|
+
alt?: string;
|
|
3680
|
+
/** JSONP */
|
|
3681
|
+
callback?: string;
|
|
3682
|
+
/** The ID of the enterprise. */
|
|
3683
|
+
enterpriseId: string;
|
|
3684
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3685
|
+
fields?: string;
|
|
3686
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3687
|
+
key?: string;
|
|
3688
|
+
/** OAuth 2.0 token for the current user. */
|
|
3689
|
+
oauth_token?: string;
|
|
3690
|
+
/** Returns response with indentations and line breaks. */
|
|
3691
|
+
prettyPrint?: boolean;
|
|
3692
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3693
|
+
quotaUser?: string;
|
|
3694
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3695
|
+
upload_protocol?: string;
|
|
3696
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3697
|
+
uploadType?: string;
|
|
3698
|
+
/** Request body */
|
|
3699
|
+
resource: WebApp;
|
|
3700
|
+
}): Request<WebApp>;
|
|
3701
|
+
insert(request: {
|
|
3702
|
+
/** V1 error format. */
|
|
3703
|
+
"$.xgafv"?: string;
|
|
3704
|
+
/** OAuth access token. */
|
|
3705
|
+
access_token?: string;
|
|
3706
|
+
/** Data format for response. */
|
|
3707
|
+
alt?: string;
|
|
3708
|
+
/** JSONP */
|
|
3709
|
+
callback?: string;
|
|
3710
|
+
/** The ID of the enterprise. */
|
|
3711
|
+
enterpriseId: string;
|
|
3712
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3713
|
+
fields?: string;
|
|
3714
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3715
|
+
key?: string;
|
|
3716
|
+
/** OAuth 2.0 token for the current user. */
|
|
3717
|
+
oauth_token?: string;
|
|
3718
|
+
/** Returns response with indentations and line breaks. */
|
|
3719
|
+
prettyPrint?: boolean;
|
|
3720
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3721
|
+
quotaUser?: string;
|
|
3722
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3723
|
+
upload_protocol?: string;
|
|
3724
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3725
|
+
uploadType?: string;
|
|
3726
|
+
},
|
|
3727
|
+
body: WebApp): Request<WebApp>;
|
|
3728
|
+
/** Retrieves the details of all web apps for a given enterprise. */
|
|
3729
|
+
list(request?: {
|
|
3730
|
+
/** V1 error format. */
|
|
3731
|
+
"$.xgafv"?: string;
|
|
3732
|
+
/** OAuth access token. */
|
|
3733
|
+
access_token?: string;
|
|
3734
|
+
/** Data format for response. */
|
|
3735
|
+
alt?: string;
|
|
3736
|
+
/** JSONP */
|
|
3737
|
+
callback?: string;
|
|
3738
|
+
/** The ID of the enterprise. */
|
|
3739
|
+
enterpriseId: string;
|
|
3740
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3741
|
+
fields?: string;
|
|
3742
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3743
|
+
key?: string;
|
|
3744
|
+
/** OAuth 2.0 token for the current user. */
|
|
3745
|
+
oauth_token?: string;
|
|
3746
|
+
/** Returns response with indentations and line breaks. */
|
|
3747
|
+
prettyPrint?: boolean;
|
|
3748
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3749
|
+
quotaUser?: string;
|
|
3750
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3751
|
+
upload_protocol?: string;
|
|
3752
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3753
|
+
uploadType?: string;
|
|
3754
|
+
}): Request<WebAppsListResponse>;
|
|
3755
|
+
/** Updates an existing web app. */
|
|
3756
|
+
update(request: {
|
|
3757
|
+
/** V1 error format. */
|
|
3758
|
+
"$.xgafv"?: string;
|
|
3759
|
+
/** OAuth access token. */
|
|
3760
|
+
access_token?: string;
|
|
3761
|
+
/** Data format for response. */
|
|
3762
|
+
alt?: string;
|
|
3763
|
+
/** JSONP */
|
|
3764
|
+
callback?: string;
|
|
3765
|
+
/** The ID of the enterprise. */
|
|
3766
|
+
enterpriseId: string;
|
|
3767
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3768
|
+
fields?: string;
|
|
3769
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3770
|
+
key?: string;
|
|
3771
|
+
/** OAuth 2.0 token for the current user. */
|
|
3772
|
+
oauth_token?: string;
|
|
3773
|
+
/** Returns response with indentations and line breaks. */
|
|
3774
|
+
prettyPrint?: boolean;
|
|
3775
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3776
|
+
quotaUser?: string;
|
|
3777
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3778
|
+
upload_protocol?: string;
|
|
3779
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3780
|
+
uploadType?: string;
|
|
3781
|
+
/** The ID of the web app. */
|
|
3782
|
+
webAppId: string;
|
|
3783
|
+
/** Request body */
|
|
3784
|
+
resource: WebApp;
|
|
3785
|
+
}): Request<WebApp>;
|
|
3786
|
+
update(request: {
|
|
3787
|
+
/** V1 error format. */
|
|
3788
|
+
"$.xgafv"?: string;
|
|
3789
|
+
/** OAuth access token. */
|
|
3790
|
+
access_token?: string;
|
|
3791
|
+
/** Data format for response. */
|
|
3792
|
+
alt?: string;
|
|
3793
|
+
/** JSONP */
|
|
3794
|
+
callback?: string;
|
|
3795
|
+
/** The ID of the enterprise. */
|
|
3796
|
+
enterpriseId: string;
|
|
3797
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3798
|
+
fields?: string;
|
|
3799
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3800
|
+
key?: string;
|
|
3801
|
+
/** OAuth 2.0 token for the current user. */
|
|
3802
|
+
oauth_token?: string;
|
|
3803
|
+
/** Returns response with indentations and line breaks. */
|
|
3804
|
+
prettyPrint?: boolean;
|
|
3805
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3806
|
+
quotaUser?: string;
|
|
3807
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3808
|
+
upload_protocol?: string;
|
|
3809
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3810
|
+
uploadType?: string;
|
|
3811
|
+
/** The ID of the web app. */
|
|
3812
|
+
webAppId: string;
|
|
3813
|
+
},
|
|
3814
|
+
body: WebApp): Request<WebApp>;
|
|
3815
|
+
}
|
|
3816
|
+
|
|
3817
|
+
const devices: DevicesResource;
|
|
3818
|
+
|
|
3819
|
+
const enterprises: EnterprisesResource;
|
|
3820
|
+
|
|
3821
|
+
const entitlements: EntitlementsResource;
|
|
3822
|
+
|
|
3823
|
+
const grouplicenses: GrouplicensesResource;
|
|
3824
|
+
|
|
3825
|
+
const grouplicenseusers: GrouplicenseusersResource;
|
|
3826
|
+
|
|
3827
|
+
const installs: InstallsResource;
|
|
3828
|
+
|
|
3829
|
+
const managedconfigurationsfordevice: ManagedconfigurationsfordeviceResource;
|
|
3830
|
+
|
|
3831
|
+
const managedconfigurationsforuser: ManagedconfigurationsforuserResource;
|
|
3832
|
+
|
|
3833
|
+
const managedconfigurationssettings: ManagedconfigurationssettingsResource;
|
|
3834
|
+
|
|
3835
|
+
const permissions: PermissionsResource;
|
|
3836
|
+
|
|
3837
|
+
const products: ProductsResource;
|
|
3838
|
+
|
|
3839
|
+
const serviceaccountkeys: ServiceaccountkeysResource;
|
|
3840
|
+
|
|
3841
|
+
const storelayoutclusters: StorelayoutclustersResource;
|
|
3842
|
+
|
|
3843
|
+
const storelayoutpages: StorelayoutpagesResource;
|
|
3844
|
+
|
|
3845
|
+
const users: UsersResource;
|
|
3846
|
+
|
|
3847
|
+
const webapps: WebappsResource;
|
|
3848
|
+
}
|
|
3849
|
+
}
|