gcp_bigquery_client/model/row_access_policy_reference.rs
1use serde::{Deserialize, Serialize};
2
3#[derive(Clone, Debug, Default, PartialEq, Eq, Serialize, Deserialize)]
4#[serde(rename_all = "camelCase")]
5pub struct RowAccessPolicyReference {
6 /// [Required] The ID of the dataset containing this row access policy.
7 pub dataset_id: Option<String>,
8 /// [Required] The ID of the row access policy. The ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_). The maximum length is 256 characters.
9 pub policy_id: Option<String>,
10 /// [Required] The ID of the project containing this row access policy.
11 pub project_id: Option<String>,
12 /// [Required] The ID of the table containing this row access policy.
13 pub table_id: Option<String>,
14}