AI-generated Key Takeaways
-
This document outlines how to disable all enabled groups associated with a specific config using an HTTP POST request.
-
The request requires a path parameter
namespecifying the relative resource name of the config. -
The request body must be empty.
-
The response body contains a list of the names of the groups that were disabled.
-
Authorization requires the
https://www.googleapis.com/auth/android_partner_over_the_airOAuth scope.
Disables all enabled groups that have the specified config. Returns NOT_FOUND if the matching path does not exist.
HTTP request
POST https://androidovertheair.googleapis.com/v1/{name=deployments/*/configs/*}:disable
The URL uses gRPC Transcoding syntax.
Path parameters
| Parameters | |
|---|---|
name |
Relative resource name. For example: "deployments/deployment_x/configs/config_c" |
Request body
The request body must be empty.
Response body
Response message for OverTheAirService.DisableAllEnabledGroupsOfConfig.
If successful, the response body contains data with the following structure:
| JSON representation |
|---|
{ "groupNames": [ string ] } |
| Fields | |
|---|---|
groupNames[] |
The list of group names that are associated with the specified config and have been disabled in this request processing. |
Authorization scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/android_partner_over_the_air
For more information, see the OAuth 2.0 Overview.