com.pulumi.googlenative.apigateway.v1.inputs.ApigatewayAuditLogConfigArgs Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.googlenative.apigateway.v1.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.googlenative.apigateway.v1.enums.ApigatewayAuditLogConfigLogType;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* 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.
*
*/
public final class ApigatewayAuditLogConfigArgs extends com.pulumi.resources.ResourceArgs {
public static final ApigatewayAuditLogConfigArgs Empty = new ApigatewayAuditLogConfigArgs();
/**
* Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members.
*
*/
@Import(name="exemptedMembers")
private @Nullable Output> exemptedMembers;
/**
* @return Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members.
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy