Skip to content

Commit cc73c53

Browse files
Regenerate connectors client (#6592)
1 parent 37dba0d commit cc73c53

4 files changed

Lines changed: 45 additions & 1 deletion

File tree

src/Connectors.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -300,6 +300,11 @@ public function __construct($clientOrConfig = [], $rootUrl = null)
300300
'type' => 'string',
301301
'repeated' => true,
302302
],
303+
'sortOrder' => [
304+
'location' => 'query',
305+
'type' => 'string',
306+
'repeated' => true,
307+
],
303308
],
304309
],'patch' => [
305310
'path' => 'v2/{+name}',

src/Connectors/AuthCodeData.php

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@
1717

1818
namespace Google\Service\Connectors;
1919

20-
class AuthCodeData extends \Google\Model
20+
class AuthCodeData extends \Google\Collection
2121
{
22+
protected $collection_key = 'scopes';
2223
/**
2324
* @var string
2425
*/
@@ -31,6 +32,10 @@ class AuthCodeData extends \Google\Model
3132
* @var string
3233
*/
3334
public $redirectUri;
35+
/**
36+
* @var string[]
37+
*/
38+
public $scopes;
3439

3540
/**
3641
* @param string
@@ -74,6 +79,20 @@ public function getRedirectUri()
7479
{
7580
return $this->redirectUri;
7681
}
82+
/**
83+
* @param string[]
84+
*/
85+
public function setScopes($scopes)
86+
{
87+
$this->scopes = $scopes;
88+
}
89+
/**
90+
* @return string[]
91+
*/
92+
public function getScopes()
93+
{
94+
return $this->scopes;
95+
}
7796
}
7897

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

src/Connectors/Instance.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ class Instance extends \Google\Collection
2424
* @var string
2525
*/
2626
public $consumerDefinedName;
27+
/**
28+
* @var string
29+
*/
30+
public $consumerProjectNumber;
2731
/**
2832
* @var string
2933
*/
@@ -93,6 +97,20 @@ public function getConsumerDefinedName()
9397
{
9498
return $this->consumerDefinedName;
9599
}
100+
/**
101+
* @param string
102+
*/
103+
public function setConsumerProjectNumber($consumerProjectNumber)
104+
{
105+
$this->consumerProjectNumber = $consumerProjectNumber;
106+
}
107+
/**
108+
* @return string
109+
*/
110+
public function getConsumerProjectNumber()
111+
{
112+
return $this->consumerProjectNumber;
113+
}
96114
/**
97115
* @param string
98116
*/

src/Connectors/Resource/ProjectsLocationsConnectionsEntityTypesEntities.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,8 @@ public function get($name, $optParams = [])
138138
* request.
139139
* @opt_param string sortBy List of 'sort_by' columns to use when returning the
140140
* results.
141+
* @opt_param string sortOrder List of 'sort_order' columns to use when
142+
* returning the results.
141143
* @return ListEntitiesResponse
142144
* @throws \Google\Service\Exception
143145
*/

0 commit comments

Comments
 (0)