Class: Google::Apis::CloudsearchV1::AuditLoggingSettings
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::AuditLoggingSettings
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb
Overview
Represents the settings for Cloud audit logging
Instance Attribute Summary collapse
-
#log_admin_read_actions ⇒ Boolean
(also: #log_admin_read_actions?)
Indicates whether audit logging is on/off for admin activity read APIs i.e.
-
#log_data_read_actions ⇒ Boolean
(also: #log_data_read_actions?)
Indicates whether audit logging is on/off for data access read APIs i.e.
-
#log_data_write_actions ⇒ Boolean
(also: #log_data_write_actions?)
Indicates whether audit logging is on/off for data access write APIs i.e.
-
#project ⇒ String
The resource name of the GCP Project to store audit logs.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AuditLoggingSettings
constructor
A new instance of AuditLoggingSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AuditLoggingSettings
Returns a new instance of AuditLoggingSettings.
4887 4888 4889 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4887 def initialize(**args) update!(**args) end |
Instance Attribute Details
#log_admin_read_actions ⇒ Boolean Also known as: log_admin_read_actions?
Indicates whether audit logging is on/off for admin activity read APIs i.e.
Get/List DataSources, Get/List SearchApplications etc.
Corresponds to the JSON property logAdminReadActions
4863 4864 4865 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4863 def log_admin_read_actions @log_admin_read_actions end |
#log_data_read_actions ⇒ Boolean Also known as: log_data_read_actions?
Indicates whether audit logging is on/off for data access read APIs i.e.
ListItems, GetItem etc.
Corresponds to the JSON property logDataReadActions
4870 4871 4872 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4870 def log_data_read_actions @log_data_read_actions end |
#log_data_write_actions ⇒ Boolean Also known as: log_data_write_actions?
Indicates whether audit logging is on/off for data access write APIs i.e.
IndexItem etc.
Corresponds to the JSON property logDataWriteActions
4877 4878 4879 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4877 def log_data_write_actions @log_data_write_actions end |
#project ⇒ String
The resource name of the GCP Project to store audit logs. Cloud audit logging
will be enabled after project_name has been updated through CustomerService.
Format: projects/project_id
Corresponds to the JSON property project
4885 4886 4887 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4885 def project @project end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4892 4893 4894 4895 4896 4897 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4892 def update!(**args) @log_admin_read_actions = args[:log_admin_read_actions] if args.key?(:log_admin_read_actions) @log_data_read_actions = args[:log_data_read_actions] if args.key?(:log_data_read_actions) @log_data_write_actions = args[:log_data_write_actions] if args.key?(:log_data_write_actions) @project = args[:project] if args.key?(:project) end |