Skip to content

Commit 2ad4632

Browse files
1 parent dc824aa commit 2ad4632

4 files changed

Lines changed: 14 additions & 11 deletions

File tree

src/ServiceNetworking/BackendRule.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,9 @@ class BackendRule extends \Google\Model
9494
protected $overridesByRequestProtocolType = BackendRule::class;
9595
protected $overridesByRequestProtocolDataType = 'map';
9696
/**
97-
* no-lint
97+
* Path translation specifies how to combine the backend address with the
98+
* request path in order to produce the appropriate forwarding URL for the
99+
* request. See PathTranslation for more details.
98100
*
99101
* @var string
100102
*/
@@ -241,7 +243,9 @@ public function getOverridesByRequestProtocol()
241243
return $this->overridesByRequestProtocol;
242244
}
243245
/**
244-
* no-lint
246+
* Path translation specifies how to combine the backend address with the
247+
* request path in order to produce the appropriate forwarding URL for the
248+
* request. See PathTranslation for more details.
245249
*
246250
* Accepted values: PATH_TRANSLATION_UNSPECIFIED, CONSTANT_ADDRESS,
247251
* APPEND_PATH_TO_ADDRESS

src/ServiceNetworking/CommonLanguageSettings.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ public function getReferenceDocsUri()
7373
return $this->referenceDocsUri;
7474
}
7575
/**
76-
* Configuration for which RPCs should be generated in the GAPIC client.
76+
* Configuration for which RPCs should be generated in the GAPIC client. Note:
77+
* This field should not be used in most cases.
7778
*
7879
* @param SelectiveGapicGeneration $selectiveGapicGeneration
7980
*/

src/ServiceNetworking/Publishing.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@ class Publishing extends \Google\Collection
5151
* Generative AI - https://developers.generativeai.google
5252
*/
5353
public const ORGANIZATION_GENERATIVE_AI = 'GENERATIVE_AI';
54+
/**
55+
* Health Org.
56+
*/
57+
public const ORGANIZATION_HEALTH = 'HEALTH';
5458
protected $collection_key = 'methodSettings';
5559
/**
5660
* Used as a tracking tag when collecting data about the APIs developer
@@ -254,7 +258,7 @@ public function getNewIssueUri()
254258
* For whom the client library is being published.
255259
*
256260
* Accepted values: CLIENT_LIBRARY_ORGANIZATION_UNSPECIFIED, CLOUD, ADS,
257-
* PHOTOS, STREET_VIEW, SHOPPING, GEO, GENERATIVE_AI
261+
* PHOTOS, STREET_VIEW, SHOPPING, GEO, GENERATIVE_AI, HEALTH
258262
*
259263
* @param self::ORGANIZATION_* $organization
260264
*/

src/ServiceNetworking/Service.php

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -278,13 +278,7 @@ public function getDocumentation()
278278
/**
279279
* Configuration for network endpoints. If this is empty, then an endpoint
280280
* with the same name as the service is automatically generated to service all
281-
* defined APIs. WARNING: Defining any entries in the `endpoints` list
282-
* disables the automatic generation of default endpoint variations (e.g.,
283-
* `{service}.clients6.google.com`, `content-{service}.googleapis.com`, and
284-
* mTLS variants like `{service}.mtls.googleapis.com`). To retain these
285-
* default variations, you are required to explicitly include your main
286-
* service endpoint (e.g., `myservice.googleapis.com`) in this list alongside
287-
* any other custom endpoints (like REP, GFE, etc.).
281+
* defined APIs.
288282
*
289283
* @param Endpoint[] $endpoints
290284
*/

0 commit comments

Comments
 (0)