Skip to content

Commit 62a4ef0

Browse files
1 parent 86fee9f commit 62a4ef0

3 files changed

Lines changed: 74 additions & 16 deletions

File tree

src/DeveloperConnect/GitProxyConfig.php

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,15 @@ class GitProxyConfig 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}-c-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 proxy to be used for
@@ -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}-c-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.

src/DeveloperConnect/ProviderOAuthConfig.php

Lines changed: 23 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,30 +36,45 @@ class ProviderOAuthConfig extends \Google\Collection
3636
*/
3737
public const SYSTEM_PROVIDER_ID_GITLAB = 'GITLAB';
3838
/**
39-
* Google provider. Recommended scopes:
40-
* "https://www.googleapis.com/auth/drive.readonly",
39+
* Deprecated: This provider is no longer supported. Google provider.
40+
* Recommended scopes: "https://www.googleapis.com/auth/drive.readonly",
4141
* "https://www.googleapis.com/auth/documents.readonly"
42+
*
43+
* @deprecated
4244
*/
4345
public const SYSTEM_PROVIDER_ID_GOOGLE = 'GOOGLE';
4446
/**
45-
* Sentry provider. Scopes can be found at
46-
* https://docs.sentry.io/api/permissions/
47+
* Deprecated: This provider is no longer supported. Sentry provider. Scopes
48+
* can be found at https://docs.sentry.io/api/permissions/
49+
*
50+
* @deprecated
4751
*/
4852
public const SYSTEM_PROVIDER_ID_SENTRY = 'SENTRY';
4953
/**
50-
* Rovo provider. Must select the "rovo" scope.
54+
* Deprecated: This provider is no longer supported. Rovo provider. Must
55+
* select the "rovo" scope.
56+
*
57+
* @deprecated
5158
*/
5259
public const SYSTEM_PROVIDER_ID_ROVO = 'ROVO';
5360
/**
54-
* New Relic provider. No scopes are allowed.
61+
* Deprecated: This provider is no longer supported. New Relic provider. No
62+
* scopes are allowed.
63+
*
64+
* @deprecated
5565
*/
5666
public const SYSTEM_PROVIDER_ID_NEW_RELIC = 'NEW_RELIC';
5767
/**
58-
* Datastax provider. No scopes are allowed.
68+
* Deprecated: This provider is no longer supported. Datastax provider. No
69+
* scopes are allowed.
70+
*
71+
* @deprecated
5972
*/
6073
public const SYSTEM_PROVIDER_ID_DATASTAX = 'DATASTAX';
6174
/**
62-
* Dynatrace provider.
75+
* Deprecated: This provider is no longer supported. Dynatrace provider.
76+
*
77+
* @deprecated
6378
*/
6479
public const SYSTEM_PROVIDER_ID_DYNATRACE = 'DYNATRACE';
6580
protected $collection_key = 'scopes';

src/DeveloperConnect/StartOAuthResponse.php

Lines changed: 23 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,30 +36,45 @@ class StartOAuthResponse extends \Google\Collection
3636
*/
3737
public const SYSTEM_PROVIDER_ID_GITLAB = 'GITLAB';
3838
/**
39-
* Google provider. Recommended scopes:
40-
* "https://www.googleapis.com/auth/drive.readonly",
39+
* Deprecated: This provider is no longer supported. Google provider.
40+
* Recommended scopes: "https://www.googleapis.com/auth/drive.readonly",
4141
* "https://www.googleapis.com/auth/documents.readonly"
42+
*
43+
* @deprecated
4244
*/
4345
public const SYSTEM_PROVIDER_ID_GOOGLE = 'GOOGLE';
4446
/**
45-
* Sentry provider. Scopes can be found at
46-
* https://docs.sentry.io/api/permissions/
47+
* Deprecated: This provider is no longer supported. Sentry provider. Scopes
48+
* can be found at https://docs.sentry.io/api/permissions/
49+
*
50+
* @deprecated
4751
*/
4852
public const SYSTEM_PROVIDER_ID_SENTRY = 'SENTRY';
4953
/**
50-
* Rovo provider. Must select the "rovo" scope.
54+
* Deprecated: This provider is no longer supported. Rovo provider. Must
55+
* select the "rovo" scope.
56+
*
57+
* @deprecated
5158
*/
5259
public const SYSTEM_PROVIDER_ID_ROVO = 'ROVO';
5360
/**
54-
* New Relic provider. No scopes are allowed.
61+
* Deprecated: This provider is no longer supported. New Relic provider. No
62+
* scopes are allowed.
63+
*
64+
* @deprecated
5565
*/
5666
public const SYSTEM_PROVIDER_ID_NEW_RELIC = 'NEW_RELIC';
5767
/**
58-
* Datastax provider. No scopes are allowed.
68+
* Deprecated: This provider is no longer supported. Datastax provider. No
69+
* scopes are allowed.
70+
*
71+
* @deprecated
5972
*/
6073
public const SYSTEM_PROVIDER_ID_DATASTAX = 'DATASTAX';
6174
/**
62-
* Dynatrace provider.
75+
* Deprecated: This provider is no longer supported. Dynatrace provider.
76+
*
77+
* @deprecated
6378
*/
6479
public const SYSTEM_PROVIDER_ID_DYNATRACE = 'DYNATRACE';
6580
protected $collection_key = 'scopes';

0 commit comments

Comments
 (0)