Class: Google::Apis::CloudsearchV1::AuditLoggingSettings

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_actionsBoolean 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

Returns:

  • (Boolean)


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_actionsBoolean 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

Returns:

  • (Boolean)


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_actionsBoolean 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

Returns:

  • (Boolean)


4877
4878
4879
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4877

def log_data_write_actions
  @log_data_write_actions
end

#projectString

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

Returns:

  • (String)


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