Reference documentation and code samples for the Google Cloud Compute V1 API class Google::Cloud::Compute::V1::AuditLogConfig.
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.
Inherits
- Object
Extended By
- Google::Protobuf::MessageExts::ClassMethods
Includes
- Google::Protobuf::MessageExts
Methods
#exempted_members
def exempted_members() -> ::Array<::String>
Returns
- (::Array<::String>) — Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members.
#exempted_members=
def exempted_members=(value) -> ::Array<::String>
Parameter
- value (::Array<::String>) — Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members.
Returns
- (::Array<::String>) — Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members.
#ignore_child_exemptions
def ignore_child_exemptions() -> ::Boolean
Returns
- (::Boolean)
#ignore_child_exemptions=
def ignore_child_exemptions=(value) -> ::Boolean
Parameter
- value (::Boolean)
Returns
- (::Boolean)
#log_type
def log_type() -> ::String
Returns
- (::String) — The log type that this config enables. Check the LogType enum for the list of possible values.
#log_type=
def log_type=(value) -> ::String
Parameter
- value (::String) — The log type that this config enables. Check the LogType enum for the list of possible values.
Returns
- (::String) — The log type that this config enables. Check the LogType enum for the list of possible values.