Class ExternalServiceCost
The external service cost is a portion of the total cost, these costs are not additive with total_bytes_billed. Moreover, this field only track external service costs that will show up as BigQuery costs (e.g. training BigQuery ML job with google cloud CAIP or Automl Tables services), not other costs which may be accrued by running the query (e.g. reading from Bigtable or Cloud Storage). The external service costs with different billing sku (e.g. CAIP job is charged based on VM usage) are converted to BigQuery billed_bytes and slot_ms with equivalent amount of US dollars. Services may not directly correlate to these metrics, but these are the equivalents for billing purposes. Output only.
Implements
Inherited Members
Namespace: Google.Apis.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class ExternalServiceCost : IDirectResponseSchema
Properties
BytesBilled
External service cost in terms of bigquery bytes billed.
Declaration
[JsonProperty("bytesBilled")]
public virtual long? BytesBilled { get; set; }
Property Value
Type | Description |
---|---|
long? |
BytesProcessed
External service cost in terms of bigquery bytes processed.
Declaration
[JsonProperty("bytesProcessed")]
public virtual long? BytesProcessed { get; set; }
Property Value
Type | Description |
---|---|
long? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
ExternalService
External service name.
Declaration
[JsonProperty("externalService")]
public virtual string ExternalService { get; set; }
Property Value
Type | Description |
---|---|
string |
ReservedSlotCount
Non-preemptable reserved slots used for external job. For example, reserved slots for Cloua AI Platform job are the VM usages converted to BigQuery slot with equivalent mount of price.
Declaration
[JsonProperty("reservedSlotCount")]
public virtual long? ReservedSlotCount { get; set; }
Property Value
Type | Description |
---|---|
long? |
SlotMs
External service cost in terms of bigquery slot milliseconds.
Declaration
[JsonProperty("slotMs")]
public virtual long? SlotMs { get; set; }
Property Value
Type | Description |
---|---|
long? |