Skip to content

Commit dca2b84

Browse files
1 parent 874e6c6 commit dca2b84

10 files changed

Lines changed: 988 additions & 14 deletions

src/Networkconnectivity.php

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ class Networkconnectivity extends \Google\Service
3939
"https://www.googleapis.com/auth/cloud-platform";
4040

4141
public $projects_locations;
42+
public $projects_locations_automatedDnsRecords;
4243
public $projects_locations_global_hubs;
4344
public $projects_locations_global_hubs_groups;
4445
public $projects_locations_global_hubs_routeTables;
@@ -131,6 +132,96 @@ public function __construct($clientOrConfig = [], $rootUrl = null)
131132
]
132133
]
133134
);
135+
$this->projects_locations_automatedDnsRecords = new Networkconnectivity\Resource\ProjectsLocationsAutomatedDnsRecords(
136+
$this,
137+
$this->serviceName,
138+
'automatedDnsRecords',
139+
[
140+
'methods' => [
141+
'create' => [
142+
'path' => 'v1/{+parent}/automatedDnsRecords',
143+
'httpMethod' => 'POST',
144+
'parameters' => [
145+
'parent' => [
146+
'location' => 'path',
147+
'type' => 'string',
148+
'required' => true,
149+
],
150+
'automatedDnsRecordId' => [
151+
'location' => 'query',
152+
'type' => 'string',
153+
],
154+
'insertMode' => [
155+
'location' => 'query',
156+
'type' => 'string',
157+
],
158+
'requestId' => [
159+
'location' => 'query',
160+
'type' => 'string',
161+
],
162+
],
163+
],'delete' => [
164+
'path' => 'v1/{+name}',
165+
'httpMethod' => 'DELETE',
166+
'parameters' => [
167+
'name' => [
168+
'location' => 'path',
169+
'type' => 'string',
170+
'required' => true,
171+
],
172+
'deleteMode' => [
173+
'location' => 'query',
174+
'type' => 'string',
175+
],
176+
'etag' => [
177+
'location' => 'query',
178+
'type' => 'string',
179+
],
180+
'requestId' => [
181+
'location' => 'query',
182+
'type' => 'string',
183+
],
184+
],
185+
],'get' => [
186+
'path' => 'v1/{+name}',
187+
'httpMethod' => 'GET',
188+
'parameters' => [
189+
'name' => [
190+
'location' => 'path',
191+
'type' => 'string',
192+
'required' => true,
193+
],
194+
],
195+
],'list' => [
196+
'path' => 'v1/{+parent}/automatedDnsRecords',
197+
'httpMethod' => 'GET',
198+
'parameters' => [
199+
'parent' => [
200+
'location' => 'path',
201+
'type' => 'string',
202+
'required' => true,
203+
],
204+
'filter' => [
205+
'location' => 'query',
206+
'type' => 'string',
207+
],
208+
'orderBy' => [
209+
'location' => 'query',
210+
'type' => 'string',
211+
],
212+
'pageSize' => [
213+
'location' => 'query',
214+
'type' => 'integer',
215+
],
216+
'pageToken' => [
217+
'location' => 'query',
218+
'type' => 'string',
219+
],
220+
],
221+
],
222+
]
223+
]
224+
);
134225
$this->projects_locations_global_hubs = new Networkconnectivity\Resource\ProjectsLocationsNetworkconnectivityGlobalHubs(
135226
$this,
136227
$this->serviceName,

src/Networkconnectivity/AutoCreatedSubnetworkInfo.php

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,14 @@
1919

2020
class AutoCreatedSubnetworkInfo extends \Google\Model
2121
{
22+
/**
23+
* Output only. Indicates whether the subnetwork is delinked from the Service
24+
* Connection Policy. Only set if the subnetwork mode is AUTO_CREATED during
25+
* creation.
26+
*
27+
* @var bool
28+
*/
29+
public $delinked;
2230
/**
2331
* Output only. URI of the automatically created Internal Range. Only set if
2432
* the subnetwork mode is AUTO_CREATED during creation.
@@ -48,6 +56,24 @@ class AutoCreatedSubnetworkInfo extends \Google\Model
4856
*/
4957
public $subnetworkRef;
5058

59+
/**
60+
* Output only. Indicates whether the subnetwork is delinked from the Service
61+
* Connection Policy. Only set if the subnetwork mode is AUTO_CREATED during
62+
* creation.
63+
*
64+
* @param bool $delinked
65+
*/
66+
public function setDelinked($delinked)
67+
{
68+
$this->delinked = $delinked;
69+
}
70+
/**
71+
* @return bool
72+
*/
73+
public function getDelinked()
74+
{
75+
return $this->delinked;
76+
}
5177
/**
5278
* Output only. URI of the automatically created Internal Range. Only set if
5379
* the subnetwork mode is AUTO_CREATED during creation.

0 commit comments

Comments
 (0)