Skip to content

Commit b24f399

Browse files
1 parent ad0e95a commit b24f399

2 files changed

Lines changed: 39 additions & 3 deletions

File tree

src/NetworkServices/ExtensionChainExtension.php

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,14 @@ class ExtensionChainExtension extends \Google\Collection
4040
* @var string
4141
*/
4242
public $name;
43+
/**
44+
* @var string
45+
*/
46+
public $requestBodySendMode;
47+
/**
48+
* @var string
49+
*/
50+
public $responseBodySendMode;
4351
/**
4452
* @var string
4553
*/
@@ -123,6 +131,34 @@ public function getName()
123131
{
124132
return $this->name;
125133
}
134+
/**
135+
* @param string
136+
*/
137+
public function setRequestBodySendMode($requestBodySendMode)
138+
{
139+
$this->requestBodySendMode = $requestBodySendMode;
140+
}
141+
/**
142+
* @return string
143+
*/
144+
public function getRequestBodySendMode()
145+
{
146+
return $this->requestBodySendMode;
147+
}
148+
/**
149+
* @param string
150+
*/
151+
public function setResponseBodySendMode($responseBodySendMode)
152+
{
153+
$this->responseBodySendMode = $responseBodySendMode;
154+
}
155+
/**
156+
* @return string
157+
*/
158+
public function getResponseBodySendMode()
159+
{
160+
return $this->responseBodySendMode;
161+
}
126162
/**
127163
* @param string
128164
*/

src/NetworkServices/Resource/ProjectsLocations.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ public function get($name, $optParams = [])
5252
* applicable.
5353
* @param array $optParams Optional parameters.
5454
*
55-
* @opt_param string extraLocationTypes Optional. A list of extra location types
56-
* that should be used as conditions for controlling the visibility of the
57-
* locations.
55+
* @opt_param string extraLocationTypes Optional. Do not use this field. It is
56+
* unsupported and is ignored unless explicitly documented otherwise. This is
57+
* primarily for internal usage.
5858
* @opt_param string filter A filter to narrow down results to a preferred
5959
* subset. The filtering language accepts strings like `"displayName=tokyo"`,
6060
* and is documented in more detail in [AIP-160](https://google.aip.dev/160).

0 commit comments

Comments
 (0)