Skip to content

Commit dcfb906

Browse files
1 parent 7419337 commit dcfb906

6 files changed

Lines changed: 21 additions & 5 deletions

src/Logging/Policy.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
class Policy extends \Google\Collection
2121
{
2222
protected $collection_key = 'bindings';
23+
protected $auditConfigsType = AuditConfig::class;
24+
protected $auditConfigsDataType = 'array';
2325
protected $bindingsType = Binding::class;
2426
protected $bindingsDataType = 'array';
2527
/**
@@ -31,6 +33,20 @@ class Policy extends \Google\Collection
3133
*/
3234
public $version;
3335

36+
/**
37+
* @param AuditConfig[]
38+
*/
39+
public function setAuditConfigs($auditConfigs)
40+
{
41+
$this->auditConfigs = $auditConfigs;
42+
}
43+
/**
44+
* @return AuditConfig[]
45+
*/
46+
public function getAuditConfigs()
47+
{
48+
return $this->auditConfigs;
49+
}
3450
/**
3551
* @param Binding[]
3652
*/

src/Logging/Resource/BillingAccountsLocationsBucketsViews.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class BillingAccountsLocationsBucketsViews extends \Google\Service\Resource
4343
*
4444
* @opt_param string viewId Required. A client-assigned identifier such as "my-
4545
* view". Identifiers are limited to 100 characters and can include only
46-
* letters, digits, underscores, and hyphens.
46+
* letters, digits, underscores, hyphens, and periods.
4747
* @return LogView
4848
* @throws \Google\Service\Exception
4949
*/

src/Logging/Resource/FoldersLocationsBucketsViews.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class FoldersLocationsBucketsViews extends \Google\Service\Resource
4848
*
4949
* @opt_param string viewId Required. A client-assigned identifier such as "my-
5050
* view". Identifiers are limited to 100 characters and can include only
51-
* letters, digits, underscores, and hyphens.
51+
* letters, digits, underscores, hyphens, and periods.
5252
* @return LogView
5353
* @throws \Google\Service\Exception
5454
*/

src/Logging/Resource/LocationsBucketsViews.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class LocationsBucketsViews extends \Google\Service\Resource
4848
*
4949
* @opt_param string viewId Required. A client-assigned identifier such as "my-
5050
* view". Identifiers are limited to 100 characters and can include only
51-
* letters, digits, underscores, and hyphens.
51+
* letters, digits, underscores, hyphens, and periods.
5252
* @return LogView
5353
* @throws \Google\Service\Exception
5454
*/

src/Logging/Resource/OrganizationsLocationsBucketsViews.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class OrganizationsLocationsBucketsViews extends \Google\Service\Resource
4848
*
4949
* @opt_param string viewId Required. A client-assigned identifier such as "my-
5050
* view". Identifiers are limited to 100 characters and can include only
51-
* letters, digits, underscores, and hyphens.
51+
* letters, digits, underscores, hyphens, and periods.
5252
* @return LogView
5353
* @throws \Google\Service\Exception
5454
*/

src/Logging/Resource/ProjectsLocationsBucketsViews.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class ProjectsLocationsBucketsViews extends \Google\Service\Resource
4848
*
4949
* @opt_param string viewId Required. A client-assigned identifier such as "my-
5050
* view". Identifiers are limited to 100 characters and can include only
51-
* letters, digits, underscores, and hyphens.
51+
* letters, digits, underscores, hyphens, and periods.
5252
* @return LogView
5353
* @throws \Google\Service\Exception
5454
*/

0 commit comments

Comments
 (0)