Skip to content

Commit a10f390

Browse files
1 parent fc7f936 commit a10f390

File tree

2 files changed

+30
-7
lines changed

2 files changed

+30
-7
lines changed

src/NetworkManagement/FirewallInfo.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,10 @@ class FirewallInfo extends \Google\Collection
4444
* @var string
4545
*/
4646
public $policy;
47+
/**
48+
* @var int
49+
*/
50+
public $policyPriority;
4751
/**
4852
* @var string
4953
*/
@@ -149,6 +153,20 @@ public function getPolicy()
149153
{
150154
return $this->policy;
151155
}
156+
/**
157+
* @param int
158+
*/
159+
public function setPolicyPriority($policyPriority)
160+
{
161+
$this->policyPriority = $policyPriority;
162+
}
163+
/**
164+
* @return int
165+
*/
166+
public function getPolicyPriority()
167+
{
168+
return $this->policyPriority;
169+
}
152170
/**
153171
* @param string
154172
*/

src/NetworkManagement/Resource/ProjectsLocationsVpcFlowLogsConfigs.php

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ class ProjectsLocationsVpcFlowLogsConfigs extends \Google\Service\Resource
4343
*
4444
* @param string $parent Required. The parent resource of the VPC Flow Logs
4545
* configuration to create: `projects/{project_id}/locations/global`
46+
* `organizations/{organization_id}/locations/global`
4647
* @param VpcFlowLogsConfig $postBody
4748
* @param array $optParams Optional parameters.
4849
*
@@ -60,9 +61,10 @@ public function create($parent, VpcFlowLogsConfig $postBody, $optParams = [])
6061
/**
6162
* Deletes a specific `VpcFlowLogsConfig`. (vpcFlowLogsConfigs.delete)
6263
*
63-
* @param string $name Required. `VpcFlowLogsConfig` resource name using the
64-
* form: `projects/{project_id}/locations/global/vpcFlowLogsConfigs/{vpc_flow_lo
65-
* gs_config}`
64+
* @param string $name Required. `VpcFlowLogsConfig` resource name using one of
65+
* the form: `projects/{project_id}/locations/global/vpcFlowLogsConfigs/{vpc_flo
66+
* w_logs_config} `organizations/{organization_id}/locations/global/vpcFlowLogsC
67+
* onfigs/{vpc_flow_logs_config}`
6668
* @param array $optParams Optional parameters.
6769
* @return Operation
6870
* @throws \Google\Service\Exception
@@ -78,7 +80,8 @@ public function delete($name, $optParams = [])
7880
*
7981
* @param string $name Required. `VpcFlowLogsConfig` resource name using the
8082
* form: `projects/{project_id}/locations/global/vpcFlowLogsConfigs/{vpc_flow_lo
81-
* gs_config}`
83+
* gs_config}` `organizations/{organization_id}/locations/global/vpcFlowLogsConf
84+
* igs/{vpc_flow_logs_config}`
8285
* @param array $optParams Optional parameters.
8386
* @return VpcFlowLogsConfig
8487
* @throws \Google\Service\Exception
@@ -95,6 +98,7 @@ public function get($name, $optParams = [])
9598
*
9699
* @param string $parent Required. The parent resource of the VpcFlowLogsConfig:
97100
* `projects/{project_id}/locations/global`
101+
* `organizations/{organization_id}/locations/global`
98102
* @param array $optParams Optional parameters.
99103
*
100104
* @opt_param string filter Optional. Lists the `VpcFlowLogsConfigs` that match
@@ -124,9 +128,10 @@ public function listProjectsLocationsVpcFlowLogsConfigs($parent, $optParams = []
124128
* * name * create_time * update_time * labels * description
125129
* (vpcFlowLogsConfigs.patch)
126130
*
127-
* @param string $name Identifier. Unique name of the configuration using the
128-
* form: `projects/{project_id}/locations/global/vpcFlowLogsConfigs/{vpc_flow_lo
129-
* gs_config_id}`
131+
* @param string $name Identifier. Unique name of the configuration using one of
132+
* the forms: `projects/{project_id}/locations/global/vpcFlowLogsConfigs/{vpc_fl
133+
* ow_logs_config_id}` `organizations/{organization_number}/locations/global/vpc
134+
* FlowLogsConfigs/{vpc_flow_logs_config_id}`
130135
* @param VpcFlowLogsConfig $postBody
131136
* @param array $optParams Optional parameters.
132137
*

0 commit comments

Comments
 (0)