-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathprint_firewall_rule.php
More file actions
70 lines (65 loc) · 2.83 KB
/
print_firewall_rule.php
File metadata and controls
70 lines (65 loc) · 2.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
/**
* Copyright 2021 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* For instructions on how to run the full sample:
*
* @see https://github.com/GoogleCloudPlatform/php-docs-samples/tree/main/compute/cloud-client/README.md
*/
namespace Google\Cloud\Samples\Compute;
use Google\Cloud\Compute\V1\Client\FirewallsClient;
use Google\Cloud\Compute\V1\GetFirewallRequest;
/**
* Prints details about a particular firewall rule in the specified project.
*
* @param string $projectId Project ID or project number of the Cloud project you want to print a rule from.
* @param string $firewallRuleName Unique name for the firewall rule.
*
* @throws \Google\ApiCore\ApiException if the remote call fails.
*/
function print_firewall_rule(string $projectId, string $firewallRuleName)
{
// Get details of a firewall rule defined for the project using Firewalls Client.
$firewallClient = new FirewallsClient();
$request = (new GetFirewallRequest())
->setFirewall($firewallRuleName)
->setProject($projectId);
$response = $firewallClient->get($request);
$direction = $response->getDirection();
printf('ID: %s' . PHP_EOL, $response->getID());
printf('Kind: %s' . PHP_EOL, $response->getKind());
printf('Name: %s' . PHP_EOL, $response->getName());
printf('Creation Time: %s' . PHP_EOL, $response->getCreationTimestamp());
printf('Direction: %s' . PHP_EOL, $direction);
printf('Network: %s' . PHP_EOL, $response->getNetwork());
printf('Disabled: %s' . PHP_EOL, var_export($response->getDisabled(), true));
printf('Priority: %s' . PHP_EOL, $response->getPriority());
printf('Self Link: %s' . PHP_EOL, $response->getSelfLink());
printf('Logging Enabled: %s' . PHP_EOL, var_export($response->getLogConfig()->getEnable(), true));
print('--Allowed--' . PHP_EOL);
foreach ($response->getAllowed() as $item) {
printf('Protocol: %s' . PHP_EOL, $item->getIPProtocol());
foreach ($item->getPorts() as $ports) {
printf(' - Ports: %s' . PHP_EOL, $ports);
}
}
print('--Source Ranges--' . PHP_EOL);
foreach ($response->getSourceRanges() as $ranges) {
printf(' - Range: %s' . PHP_EOL, $ranges);
}
}
require_once __DIR__ . '/../../../testing/sample_helpers.php';
\Google\Cloud\Samples\execute_sample(__FILE__, __NAMESPACE__, $argv);