Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions src/DeveloperConnect/AccountConnector.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@ class AccountConnector extends \Google\Model
protected $providerOauthConfigDataType = '';
protected $proxyConfigType = ProxyConfig::class;
protected $proxyConfigDataType = '';
/**
* Output only. A system-assigned unique identifier for the Account Connector.
*
* @var string
*/
public $uid;
/**
* Output only. The timestamp when the accountConnector was updated.
*
Expand Down Expand Up @@ -220,6 +226,22 @@ public function getProxyConfig()
{
return $this->proxyConfig;
}
/**
* Output only. A system-assigned unique identifier for the Account Connector.
*
* @param string $uid
*/
public function setUid($uid)
{
$this->uid = $uid;
}
/**
* @return string
*/
public function getUid()
{
return $this->uid;
}
/**
* Output only. The timestamp when the accountConnector was updated.
*
Expand Down
28 changes: 28 additions & 0 deletions src/DeveloperConnect/ProxyConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,15 @@ class ProxyConfig extends \Google\Model
* @var bool
*/
public $enabled;
/**
* Output only. The base URI for the HTTP proxy endpoint. Has the format
* `https://{generatedID}-a-h-{shortRegion}.developerconnect.dev` Populated
* only when `enabled` is set to `true`. This endpoint is used by other Google
* services that integrate with Developer Connect.
*
* @var string
*/
public $httpProxyBaseUri;

/**
* Optional. Setting this to true allows the git and http proxies to perform
Expand All @@ -44,6 +53,25 @@ public function getEnabled()
{
return $this->enabled;
}
/**
* Output only. The base URI for the HTTP proxy endpoint. Has the format
* `https://{generatedID}-a-h-{shortRegion}.developerconnect.dev` Populated
* only when `enabled` is set to `true`. This endpoint is used by other Google
* services that integrate with Developer Connect.
*
* @param string $httpProxyBaseUri
*/
public function setHttpProxyBaseUri($httpProxyBaseUri)
{
$this->httpProxyBaseUri = $httpProxyBaseUri;
}
/**
* @return string
*/
public function getHttpProxyBaseUri()
{
return $this->httpProxyBaseUri;
}
}

// Adding a class alias for backwards compatibility with the previous class name.
Expand Down
Loading