Class: Google::Apis::ComputeBeta::AuditLogConfig

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

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AuditLogConfig

Returns a new instance of AuditLogConfig.



1698
1699
1700
# File 'lib/google/apis/compute_beta/classes.rb', line 1698

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


1685
1686
1687
# File 'lib/google/apis/compute_beta/classes.rb', line 1685

def exempted_members
  @exempted_members
end

#ignore_child_exemptionsBoolean Also known as: ignore_child_exemptions?

This is deprecated and has no effect. Do not use. Corresponds to the JSON property ignoreChildExemptions

Returns:

  • (Boolean)


1690
1691
1692
# File 'lib/google/apis/compute_beta/classes.rb', line 1690

def ignore_child_exemptions
  @ignore_child_exemptions
end

#log_typeString

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

Returns:

  • (String)


1696
1697
1698
# File 'lib/google/apis/compute_beta/classes.rb', line 1696

def log_type
  @log_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1703
1704
1705
1706
1707
# File 'lib/google/apis/compute_beta/classes.rb', line 1703

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