GetPartitionResult

data class GetPartitionResult(val etag: String, val location: String, val name: String, val values: List<String>)

Constructors

Link copied to clipboard
fun GetPartitionResult(etag: String, location: String, name: String, values: List<String>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Optional. The etag for this partition.

Link copied to clipboard

Immutable. The location of the entity data within the partition, for example, gs://bucket/path/to/entity/key1=value1/key2=value2. Or projects//datasets//tables/

Link copied to clipboard

Partition values used in the HTTP URL must be double encoded. For example, url_encode(url_encode(value)) can be used to encode "US:CA/CA#Sunnyvale so that the request URL ends with "/partitions/US%253ACA/CA%2523Sunnyvale". The name field in the response retains the encoded format.

Link copied to clipboard

Immutable. The set of values representing the partition, which correspond to the partition schema defined in the parent entity.