Google_FirewallAllowed
The Google Pagespeed Insights Google FirewallAllowed class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_ComputeService.php
- class Google_FirewallAllowed extends Google_Model {
- public $IPProtocol;
- public $ports;
- public function setIPProtocol($IPProtocol) {
- $this->IPProtocol = $IPProtocol;
- }
- public function getIPProtocol() {
- return $this->IPProtocol;
- }
- public function setPorts(/** array(Google_string) */ $ports) {
- $this->assertIsArray($ports, 'Google_string', __METHOD__);
- $this->ports = $ports;
- }
- public function getPorts() {
- return $this->ports;
- }
- }