Class: Google::Apis::AnalyticshubV1::RestrictedExportPolicy

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/analyticshub_v1/classes.rb,
lib/google/apis/analyticshub_v1/representations.rb,
lib/google/apis/analyticshub_v1/representations.rb

Overview

Restricted export policy used to configure restricted export on linked dataset.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RestrictedExportPolicy

Returns a new instance of RestrictedExportPolicy.



1970
1971
1972
# File 'lib/google/apis/analyticshub_v1/classes.rb', line 1970

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#enabledBoolean Also known as: enabled?

Optional. If true, enable restricted export. Corresponds to the JSON property enabled

Returns:

  • (Boolean)


1953
1954
1955
# File 'lib/google/apis/analyticshub_v1/classes.rb', line 1953

def enabled
  @enabled
end

#restrict_direct_table_accessBoolean Also known as: restrict_direct_table_access?

Optional. If true, restrict direct table access (read api/tabledata.list) on linked table. Corresponds to the JSON property restrictDirectTableAccess

Returns:

  • (Boolean)


1960
1961
1962
# File 'lib/google/apis/analyticshub_v1/classes.rb', line 1960

def restrict_direct_table_access
  @restrict_direct_table_access
end

#restrict_query_resultBoolean Also known as: restrict_query_result?

Optional. If true, restrict export of query result derived from restricted linked dataset table. Corresponds to the JSON property restrictQueryResult

Returns:

  • (Boolean)


1967
1968
1969
# File 'lib/google/apis/analyticshub_v1/classes.rb', line 1967

def restrict_query_result
  @restrict_query_result
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1975
1976
1977
1978
1979
# File 'lib/google/apis/analyticshub_v1/classes.rb', line 1975

def update!(**args)
  @enabled = args[:enabled] if args.key?(:enabled)
  @restrict_direct_table_access = args[:restrict_direct_table_access] if args.key?(:restrict_direct_table_access)
  @restrict_query_result = args[:restrict_query_result] if args.key?(:restrict_query_result)
end