Google_Firewall
The Google Pagespeed Insights Google Firewall class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_ComputeService.php
- class Google_Firewall extends Google_Model {
- protected $__allowedType = 'Google_FirewallAllowed';
- protected $__allowedDataType = 'array';
- public $allowed;
- public $creationTimestamp;
- public $description;
- public $id;
- public $kind;
- public $name;
- public $network;
- public $selfLink;
- public $sourceRanges;
- public $sourceTags;
- public $targetTags;
- public function setAllowed(/** array(Google_FirewallAllowed) */ $allowed) {
- $this->assertIsArray($allowed, 'Google_FirewallAllowed', __METHOD__);
- $this->allowed = $allowed;
- }
- public function getAllowed() {
- return $this->allowed;
- }
- public function setCreationTimestamp($creationTimestamp) {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp() {
- return $this->creationTimestamp;
- }
- public function setDescription($description) {
- $this->description = $description;
- }
- public function getDescription() {
- return $this->description;
- }
- public function setId($id) {
- $this->id = $id;
- }
- public function getId() {
- return $this->id;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setName($name) {
- $this->name = $name;
- }
- public function getName() {
- return $this->name;
- }
- public function setNetwork($network) {
- $this->network = $network;
- }
- public function getNetwork() {
- return $this->network;
- }
- public function setSelfLink($selfLink) {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink() {
- return $this->selfLink;
- }
- public function setSourceRanges(/** array(Google_string) */ $sourceRanges) {
- $this->assertIsArray($sourceRanges, 'Google_string', __METHOD__);
- $this->sourceRanges = $sourceRanges;
- }
- public function getSourceRanges() {
- return $this->sourceRanges;
- }
- public function setSourceTags(/** array(Google_string) */ $sourceTags) {
- $this->assertIsArray($sourceTags, 'Google_string', __METHOD__);
- $this->sourceTags = $sourceTags;
- }
- public function getSourceTags() {
- return $this->sourceTags;
- }
- public function setTargetTags(/** array(Google_string) */ $targetTags) {
- $this->assertIsArray($targetTags, 'Google_string', __METHOD__);
- $this->targetTags = $targetTags;
- }
- public function getTargetTags() {
- return $this->targetTags;
- }
- }