Method: deployments.groups.updateConfigs
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
group
の config
を更新します。一致するグループまたは構成が存在しない場合は NOT_FOUND
を返します。
HTTP リクエスト
PUT https://androidovertheair.googleapis.com/v1/{name=deployments/*/groups/*}/configs
この URL は gRPC Transcoding 構文を使用します。
パスパラメータ
パラメータ |
name |
string
相対的なリソース名。例: 「deployments/deployment_x/groups/group_g」
|
リクエスト本文
リクエストの本文には、次の構造のデータが含まれます。
JSON 表現 |
{
"configNames": [
string
],
"versionTag": {
object (VersionTag )
},
"disabledConfigNames": [
string
]
} |
フィールド |
configNames[] |
string
必須。グループ内のすべての構成の名前。重要: 構成の順序は重要です。デバイスが設定間で複数のパッケージ セットと一致する場合は、無効化されていない、最後に一致した設定が優先され、使用されます。無効な構成はスキップされます。
|
versionTag |
object (VersionTag )
必須。更新するグループは、このバージョンと一致している必要があります。別のクライアントが既存のグループを同時に更新すると、更新オペレーションは失敗します。
|
disabledConfigNames[] |
string
必須。グループで無効な構成の名前。
|
レスポンスの本文
成功すると、レスポンスの本文は空になります。
認可スコープ
次の OAuth スコープが必要です。
https://www.googleapis.com/auth/android_partner_over_the_air
詳しくは、OAuth 2.0 の概要をご覧ください。
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-26 UTC。
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["必要な情報がない","missingTheInformationINeed","thumb-down"],["複雑すぎる / 手順が多すぎる","tooComplicatedTooManySteps","thumb-down"],["最新ではない","outOfDate","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["サンプル / コードに問題がある","samplesCodeIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2025-07-26 UTC。"],[],["This document details updating configurations under a specified group using a `PUT` request to the provided URL. The request URL includes a `name` path parameter indicating the target group. The request body, formatted in JSON, requires `configNames`, `versionTag`, and `disabledConfigNames` fields. It's necessary to provide all configs' name and the order of the `configNames` field matters. A successful update yields an empty response body. Authorization requires the `android_partner_over_the_air` OAuth scope. If the group or config is not found the request will return a `NOT_FOUND` response.\n"]]