Skip to content

Commit 75713f4

Browse files
1 parent 608b146 commit 75713f4

2 files changed

Lines changed: 50 additions & 0 deletions

File tree

src/DeveloperConnect/AccountConnector.php

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,12 @@ class AccountConnector extends \Google\Model
6565
protected $providerOauthConfigDataType = '';
6666
protected $proxyConfigType = ProxyConfig::class;
6767
protected $proxyConfigDataType = '';
68+
/**
69+
* Output only. A system-assigned unique identifier for the Account Connector.
70+
*
71+
* @var string
72+
*/
73+
public $uid;
6874
/**
6975
* Output only. The timestamp when the accountConnector was updated.
7076
*
@@ -220,6 +226,22 @@ public function getProxyConfig()
220226
{
221227
return $this->proxyConfig;
222228
}
229+
/**
230+
* Output only. A system-assigned unique identifier for the Account Connector.
231+
*
232+
* @param string $uid
233+
*/
234+
public function setUid($uid)
235+
{
236+
$this->uid = $uid;
237+
}
238+
/**
239+
* @return string
240+
*/
241+
public function getUid()
242+
{
243+
return $this->uid;
244+
}
223245
/**
224246
* Output only. The timestamp when the accountConnector was updated.
225247
*

src/DeveloperConnect/ProxyConfig.php

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,15 @@ class ProxyConfig extends \Google\Model
2626
* @var bool
2727
*/
2828
public $enabled;
29+
/**
30+
* Output only. The base URI for the HTTP proxy endpoint. Has the format
31+
* `https://{generatedID}-a-h-{shortRegion}.developerconnect.dev` Populated
32+
* only when `enabled` is set to `true`. This endpoint is used by other Google
33+
* services that integrate with Developer Connect.
34+
*
35+
* @var string
36+
*/
37+
public $httpProxyBaseUri;
2938

3039
/**
3140
* Optional. Setting this to true allows the git and http proxies to perform
@@ -44,6 +53,25 @@ public function getEnabled()
4453
{
4554
return $this->enabled;
4655
}
56+
/**
57+
* Output only. The base URI for the HTTP proxy endpoint. Has the format
58+
* `https://{generatedID}-a-h-{shortRegion}.developerconnect.dev` Populated
59+
* only when `enabled` is set to `true`. This endpoint is used by other Google
60+
* services that integrate with Developer Connect.
61+
*
62+
* @param string $httpProxyBaseUri
63+
*/
64+
public function setHttpProxyBaseUri($httpProxyBaseUri)
65+
{
66+
$this->httpProxyBaseUri = $httpProxyBaseUri;
67+
}
68+
/**
69+
* @return string
70+
*/
71+
public function getHttpProxyBaseUri()
72+
{
73+
return $this->httpProxyBaseUri;
74+
}
4775
}
4876

4977
// Adding a class alias for backwards compatibility with the previous class name.

0 commit comments

Comments
 (0)