Skip to content

Commit

Permalink
feat(androidenterprise): update the API
Browse files Browse the repository at this point in the history
#### androidenterprise:v1

The following keys were added:
- schemas.AdministratorWebTokenSpec.properties.zeroTouch.$ref
- schemas.AdministratorWebTokenSpec.properties.zeroTouch.description
- schemas.AdministratorWebTokenSpecZeroTouch.id
- schemas.AdministratorWebTokenSpecZeroTouch.properties.enabled.description
- schemas.AdministratorWebTokenSpecZeroTouch.properties.enabled.type
- schemas.AdministratorWebTokenSpecZeroTouch.type
  • Loading branch information
yoshi-automation authored and bcoe committed May 3, 2021
1 parent 3a5408a commit d355208
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 2 deletions.
16 changes: 15 additions & 1 deletion discovery/androidenterprise-v1.json
Expand Up @@ -2610,7 +2610,7 @@
}
}
},
"revision": "20201125",
"revision": "20210428",
"rootUrl": "https://androidenterprise.googleapis.com/",
"schemas": {
"Administrator": {
Expand Down Expand Up @@ -2679,6 +2679,10 @@
"webApps": {
"$ref": "AdministratorWebTokenSpecWebApps",
"description": "Options for displaying the Web Apps page."
},
"zeroTouch": {
"$ref": "AdministratorWebTokenSpecZeroTouch",
"description": "Options for displaying the Zero Touch page."
}
},
"type": "object"
Expand Down Expand Up @@ -2737,6 +2741,16 @@
},
"type": "object"
},
"AdministratorWebTokenSpecZeroTouch": {
"id": "AdministratorWebTokenSpecZeroTouch",
"properties": {
"enabled": {
"description": "Whether zero-touch embedded UI is usable with this token. If enabled, the admin can link zero-touch customers to this enterprise.",
"type": "boolean"
}
},
"type": "object"
},
"AppRestrictionsSchema": {
"description": "Represents the list of app restrictions available to be pre-configured for the product.",
"id": "AppRestrictionsSchema",
Expand Down
13 changes: 12 additions & 1 deletion src/apis/androidenterprise/v1.ts
Expand Up @@ -211,6 +211,10 @@ export namespace androidenterprise_v1 {
* Options for displaying the Web Apps page.
*/
webApps?: Schema$AdministratorWebTokenSpecWebApps;
/**
* Options for displaying the Zero Touch page.
*/
zeroTouch?: Schema$AdministratorWebTokenSpecZeroTouch;
}
export interface Schema$AdministratorWebTokenSpecManagedConfigurations {
/**
Expand Down Expand Up @@ -246,6 +250,12 @@ export namespace androidenterprise_v1 {
*/
enabled?: boolean | null;
}
export interface Schema$AdministratorWebTokenSpecZeroTouch {
/**
* Whether zero-touch embedded UI is usable with this token. If enabled, the admin can link zero-touch customers to this enterprise.
*/
enabled?: boolean | null;
}
/**
* Represents the list of app restrictions available to be pre-configured for the product.
*/
Expand Down Expand Up @@ -2693,7 +2703,8 @@ export namespace androidenterprise_v1 {
* // "playSearch": {},
* // "privateApps": {},
* // "storeBuilder": {},
* // "webApps": {}
* // "webApps": {},
* // "zeroTouch": {}
* // }
* },
* });
Expand Down

0 comments on commit d355208

Please sign in to comment.