Class: Google::Apis::NetworksecurityV1beta1::GoogleIamV1AuditLogConfig

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

Overview

Provides the configuration for logging a type of permissions. Example: " audit_log_configs": [ "log_type": "DATA_READ", "exempted_members": [ "user: [email protected]" ] , "log_type": "DATA_WRITE" ] This enables ' DATA_READ' and 'DATA_WRITE' logging, while exempting [email protected] from DATA_READ logging.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleIamV1AuditLogConfig

Returns a new instance of GoogleIamV1AuditLogConfig.



1421
1422
1423
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1421

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

Instance Attribute Details

#exempted_membersArray<String>

Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members. Corresponds to the JSON property exemptedMembers

Returns:

  • (Array<String>)


1414
1415
1416
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1414

def exempted_members
  @exempted_members
end

#log_typeString

The log type that this config enables. Corresponds to the JSON property logType

Returns:

  • (String)


1419
1420
1421
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1419

def log_type
  @log_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1426
1427
1428
1429
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1426

def update!(**args)
  @exempted_members = args[:exempted_members] if args.key?(:exempted_members)
  @log_type = args[:log_type] if args.key?(:log_type)
end