get(packageName, editId, track)
Fetches the track configuration for the specified track type. Includes the APK version codes that are in this track.
Lists all the track configurations for this edit.
patch(packageName, editId, track, body)
Updates the track configuration for the specified track type. This method supports patch semantics.
update(packageName, editId, track, body)
Updates the track configuration for the specified track type.
get(packageName, editId, track)
Fetches the track configuration for the specified track type. Includes the APK version codes that are in this track. Args: packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required) editId: string, Unique identifier for this edit. (required) track: string, The track to read or modify. (required) Returns: An object of the form: { "track": "A String", # Identifier for this track. "userFraction": 3.14, "versionCodes": [ # Version codes to make active on this track. Note that this list should contain all versions you wish to be active, including those you wish to retain from previous releases. 42, ], }
list(packageName, editId)
Lists all the track configurations for this edit. Args: packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required) editId: string, Unique identifier for this edit. (required) Returns: An object of the form: { "kind": "androidpublisher#tracksListResponse", # Identifies what kind of resource this is. Value: the fixed string "androidpublisher#tracksListResponse". "tracks": [ { "track": "A String", # Identifier for this track. "userFraction": 3.14, "versionCodes": [ # Version codes to make active on this track. Note that this list should contain all versions you wish to be active, including those you wish to retain from previous releases. 42, ], }, ], }
patch(packageName, editId, track, body)
Updates the track configuration for the specified track type. This method supports patch semantics. Args: packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required) editId: string, Unique identifier for this edit. (required) track: string, The track to read or modify. (required) body: object, The request body. (required) The object takes the form of: { "track": "A String", # Identifier for this track. "userFraction": 3.14, "versionCodes": [ # Version codes to make active on this track. Note that this list should contain all versions you wish to be active, including those you wish to retain from previous releases. 42, ], } Returns: An object of the form: { "track": "A String", # Identifier for this track. "userFraction": 3.14, "versionCodes": [ # Version codes to make active on this track. Note that this list should contain all versions you wish to be active, including those you wish to retain from previous releases. 42, ], }
update(packageName, editId, track, body)
Updates the track configuration for the specified track type. Args: packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required) editId: string, Unique identifier for this edit. (required) track: string, The track to read or modify. (required) body: object, The request body. (required) The object takes the form of: { "track": "A String", # Identifier for this track. "userFraction": 3.14, "versionCodes": [ # Version codes to make active on this track. Note that this list should contain all versions you wish to be active, including those you wish to retain from previous releases. 42, ], } Returns: An object of the form: { "track": "A String", # Identifier for this track. "userFraction": 3.14, "versionCodes": [ # Version codes to make active on this track. Note that this list should contain all versions you wish to be active, including those you wish to retain from previous releases. 42, ], }