Q:
Pass variable
---
title: "List v
It would be a crim
Q:
How to make su
If this is your fi
A major and possib
The present invent
Infection of mouse
Amidst a tumultuou
Category: Guitar
defaultBackendAddresses = $defaultBackendAddresses;
}
public function getDefaultBackendAddresses()
{
return $this->defaultBackendAddresses;
}
public function setDescription($description)
{
$this->description = $description;
}
public function getDescription()
{
return $this->description;
}
public function setIpAddress($ipAddress)
{
$this->ipAddress = $ipAddress;
}
public function getIpAddress()
{
return $this->ipAddress;
}
public function setLabels($labels)
{
$this->labels = $labels;
}
@@ -38,9 +40,13 @@ public function setNetworkTier($networkTier)
}
public function getNetworkTier()
{
- return $this->networkTier;
+ return $this->networkTierName;
+ }
+ public function setNetworkTierName($networkTierName)
+ {
+ $this->networkTierName = $networkTierName;
+ }
public function getNetworkTierName()
{
- return $this->networkTierName;
+ return $this->networkTierName;
+ }
+ public function getNetworkTierIpAddress()
+ {
+ return $this->networkTierIpAddress;
+ }
public function setNetworkTierIpAddress($networkTierIpAddress)
{
- $this->networkTierIpAddress = $networkTierIpAddress;
+ $this->networkTierIpAddress = $networkTierIpAddress;
}
}
@@ -58,8 +63,12 @@ public class Google_Service_Manager_NetworkInterface
*/
public function setIpAddress($ipAddress)
{
+ if (!$this->ipAddress) {
+ $this->ipAddress = new Google_Service_Manager_NetworkInterfaceIpAddress();
+ }
$this->ipAddress->setAddress($ipAddress);
}
@@ -67,4 +75,7 @@ public class Google_Service_Manager_NetworkInterface
$this->networkTierIpAddress = $networkTierIpAddress;
$this->networkTier = new Google_Service_Manager_NetworkInterfaceTier();
+ }
+
+ public function getNetworkTierIpAddress() {
+ return $this->networkTierIpAddress;
+ }
}
/**
@@ -76,10 +87,14 @@ public class Google_Service_Manager_NetworkInterface
*/
public function setLabels($labels)
{
- $this->labels = $labels;
+ if (!$this->labels) {
+ $this->labels = new Google_Service_Manager_NetworkInterfaceLabels();
+ }
}
public function getLabels()
{
- return $this->labels;
+ if (!$this->labels) {
+ return new Google_Service_Manager_NetworkInterfaceLabels();
+ }
}
+ public function setNetworkTierName($networkTierName)
+ {
+ $this->networkTierName = $networkTierName;
}
}
diff --git a/plugins/networks/network/common.php b/plugins/networks/network/common.php
index 70c7e1af..fc619d3e 100644
--- a/plugins/networks/network/common.php
+++ b/plugins/networks/network/common.php
@@ -14,6 +14,7 @@ class Google_Service_Manager_Provider_EnvConfig
public function __construct($config)
{
$this->config = $config;
+ $this->envConfigFile = $config;
}
@@ -67,9 +68,12 @@ class Google_Service_Manager_Provider_EnvConfig
*/
public function __toString()
{
+ if ($this->envConfigFile) {
+ $this->config = $this->envConfigFile->getContent();