Targeting
地域、Android SDK レベル、アプリのバージョンなどの復元アクションのターゲティングの詳細情報。
JSON 表現 |
{
// Union field criteria can be only one of the following:
"regions": {
object (Regions )
},
"androidSdks": {
object (AndroidSdks )
},
"allUsers": {
object (AllUsers )
}
// End of list of possible types for union field criteria .
// Union field target_versions can be only one of the following:
"versionList": {
object (AppVersionList )
},
"versionRange": {
object (AppVersionRange )
}
// End of list of possible types for union field target_versions .
} |
フィールド |
共用体フィールド criteria 。ターゲティングの復元アクションの条件。criteria は次のいずれかになります。 |
regions |
object (Regions )
ターゲティングは、ユーザー アカウントの地域に基づいています。
|
androidSdks |
object (AndroidSdks )
ターゲティングは、デバイスの Android API レベルに基づいています。
|
allUsers |
object (AllUsers )
すべてのユーザーをターゲットとします。
|
共用体フィールド target_versions 。復元アクションがターゲットとするアプリのバージョン。必須。target_versions は次のいずれかになります。 |
versionList |
object (AppVersionList )
リストとしてのターゲット バージョン コード。
|
versionRange |
object (AppVersionRange )
範囲としてのターゲット バージョン コード。
|
AppVersionList
JSON 表現 |
{
"versionCodes": [
string
]
} |
フィールド |
versionCodes[] |
string (int64 format)
アプリのバージョン コードのリスト。
|
AppVersionRange
JSON 表現 |
{
"versionCodeStart": string,
"versionCodeEnd": string
} |
フィールド |
versionCodeStart |
string (int64 format)
範囲の最初のアプリ バージョン(これを含む)。
|
versionCodeEnd |
string (int64 format)
範囲の最も新しいアプリ バージョン(これを含む)。
|
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2024-12-18 UTC。
[null,null,["最終更新日 2024-12-18 UTC。"],[[["Targeting details for a recovery action include regions, Android SDK levels, and app versions."],["Recovery actions can target specific app versions using either a list of version codes or a range of version codes."],["You can target all users or filter by region or Android SDK level for recovery actions."],["`AppVersionList` defines target app versions using a list of version codes, while `AppVersionRange` uses a start and end version code for a continuous range."]]],["This describes targeting options for recovery actions, utilizing JSON structures. Actions can target users based on `regions`, `androidSdks`, or `allUsers`. App versions can be targeted either as a `versionList` with specific `versionCodes` or as a `versionRange` defined by `versionCodeStart` and `versionCodeEnd`. `AppVersionList` and `AppVersionRange` provide formats to define version-specific targeting. A recovery action needs to target app versions, using one of the formats.\n"]]