Class: Google::Apis::BigqueryV2::PrivacyPolicy
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::PrivacyPolicy
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/bigquery_v2/classes.rb,
lib/google/apis/bigquery_v2/representations.rb,
lib/google/apis/bigquery_v2/representations.rb
Overview
Represents privacy policy that contains the privacy requirements specified by the data owner. Currently, this is only supported on views.
Instance Attribute Summary collapse
-
#aggregation_threshold_policy ⇒ Google::Apis::BigqueryV2::AggregationThresholdPolicy
Represents privacy policy associated with "aggregation threshold" method.
-
#differential_privacy_policy ⇒ Google::Apis::BigqueryV2::DifferentialPrivacyPolicy
Represents privacy policy associated with "differential privacy" method.
-
#join_restriction_policy ⇒ Google::Apis::BigqueryV2::JoinRestrictionPolicy
Represents privacy policy associated with "join restrictions".
Instance Method Summary collapse
-
#initialize(**args) ⇒ PrivacyPolicy
constructor
A new instance of PrivacyPolicy.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PrivacyPolicy
Returns a new instance of PrivacyPolicy.
7143 7144 7145 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7143 def initialize(**args) update!(**args) end |
Instance Attribute Details
#aggregation_threshold_policy ⇒ Google::Apis::BigqueryV2::AggregationThresholdPolicy
Represents privacy policy associated with "aggregation threshold" method.
Corresponds to the JSON property aggregationThresholdPolicy
7129 7130 7131 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7129 def aggregation_threshold_policy @aggregation_threshold_policy end |
#differential_privacy_policy ⇒ Google::Apis::BigqueryV2::DifferentialPrivacyPolicy
Represents privacy policy associated with "differential privacy" method.
Corresponds to the JSON property differentialPrivacyPolicy
7134 7135 7136 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7134 def differential_privacy_policy @differential_privacy_policy end |
#join_restriction_policy ⇒ Google::Apis::BigqueryV2::JoinRestrictionPolicy
Represents privacy policy associated with "join restrictions". Join
restriction gives data providers the ability to enforce joins on the '
join_allowed_columns' when data is queried from a privacy protected view.
Corresponds to the JSON property joinRestrictionPolicy
7141 7142 7143 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7141 def join_restriction_policy @join_restriction_policy end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7148 7149 7150 7151 7152 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7148 def update!(**args) @aggregation_threshold_policy = args[:aggregation_threshold_policy] if args.key?(:aggregation_threshold_policy) @differential_privacy_policy = args[:differential_privacy_policy] if args.key?(:differential_privacy_policy) @join_restriction_policy = args[:join_restriction_policy] if args.key?(:join_restriction_policy) end |