Viewing file: AuditConfig.php (5.08 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php # Generated by the protocol buffer compiler. DO NOT EDIT! # source: google/iam/v1/policy.proto
namespace Google\Cloud\Iam\V1;
use Google\Protobuf\Internal\GPBType; use Google\Protobuf\Internal\RepeatedField; use Google\Protobuf\Internal\GPBUtil;
/** * Specifies the audit configuration for a service. * The configuration determines which permission types are logged, and what * identities, if any, are exempted from logging. * An AuditConfig must have one or more AuditLogConfigs. * If there are AuditConfigs for both `allServices` and a specific service, * the union of the two AuditConfigs is used for that service: the log_types * specified in each AuditConfig are enabled, and the exempted_members in each * AuditLogConfig are exempted. * Example Policy with multiple AuditConfigs: * { * "audit_configs": [ * { * "service": "allServices", * "audit_log_configs": [ * { * "log_type": "DATA_READ", * "exempted_members": [ * "user:jose@example.com" * ] * }, * { * "log_type": "DATA_WRITE" * }, * { * "log_type": "ADMIN_READ" * } * ] * }, * { * "service": "sampleservice.googleapis.com", * "audit_log_configs": [ * { * "log_type": "DATA_READ" * }, * { * "log_type": "DATA_WRITE", * "exempted_members": [ * "user:aliya@example.com" * ] * } * ] * } * ] * } * For sampleservice, this policy enables DATA_READ, DATA_WRITE and ADMIN_READ * logging. It also exempts `jose@example.com` from DATA_READ logging, and * `aliya@example.com` from DATA_WRITE logging. * * Generated from protobuf message <code>google.iam.v1.AuditConfig</code> */ class AuditConfig extends \Google\Protobuf\Internal\Message { /** * Specifies a service that will be enabled for audit logging. * For example, `storage.googleapis.com`, `cloudsql.googleapis.com`. * `allServices` is a special value that covers all services. * * Generated from protobuf field <code>string service = 1;</code> */ protected $service = ''; /** * The configuration for logging of each type of permission. * * Generated from protobuf field <code>repeated .google.iam.v1.AuditLogConfig audit_log_configs = 3;</code> */ private $audit_log_configs;
/** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type string $service * Specifies a service that will be enabled for audit logging. * For example, `storage.googleapis.com`, `cloudsql.googleapis.com`. * `allServices` is a special value that covers all services. * @type array<\Google\Cloud\Iam\V1\AuditLogConfig>|\Google\Protobuf\Internal\RepeatedField $audit_log_configs * The configuration for logging of each type of permission. * } */ public function __construct($data = NULL) { \GPBMetadata\Google\Iam\V1\Policy::initOnce(); parent::__construct($data); }
/** * Specifies a service that will be enabled for audit logging. * For example, `storage.googleapis.com`, `cloudsql.googleapis.com`. * `allServices` is a special value that covers all services. * * Generated from protobuf field <code>string service = 1;</code> * @return string */ public function getService() { return $this->service; }
/** * Specifies a service that will be enabled for audit logging. * For example, `storage.googleapis.com`, `cloudsql.googleapis.com`. * `allServices` is a special value that covers all services. * * Generated from protobuf field <code>string service = 1;</code> * @param string $var * @return $this */ public function setService($var) { GPBUtil::checkString($var, True); $this->service = $var;
return $this; }
/** * The configuration for logging of each type of permission. * * Generated from protobuf field <code>repeated .google.iam.v1.AuditLogConfig audit_log_configs = 3;</code> * @return \Google\Protobuf\Internal\RepeatedField */ public function getAuditLogConfigs() { return $this->audit_log_configs; }
/** * The configuration for logging of each type of permission. * * Generated from protobuf field <code>repeated .google.iam.v1.AuditLogConfig audit_log_configs = 3;</code> * @param array<\Google\Cloud\Iam\V1\AuditLogConfig>|\Google\Protobuf\Internal\RepeatedField $var * @return $this */ public function setAuditLogConfigs($var) { $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Iam\V1\AuditLogConfig::class); $this->audit_log_configs = $arr;
return $this; }
}
|