joinCondition property
Specifies if a join is required or not on queries for the view.
Default is JOIN_CONDITION_UNSPECIFIED.
Optional. Possible string values are:
- "JOIN_CONDITION_UNSPECIFIED" : A join is neither required nor restricted on any column. Default value.
- "JOIN_ANY" : A join is required on at least one of the specified columns.
- "JOIN_ALL" : A join is required on all specified columns.
- "JOIN_NOT_REQUIRED" : A join is not required, but if present it is only permitted on 'join_allowed_columns'
- "JOIN_BLOCKED" : Joins are blocked for all queries.
Implementation
core.String? joinCondition;