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 および関連会社の登録商標です。
最終更新日 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。"],[[["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"]]