Skip to content

Commit ceb2e43

Browse files
1 parent e5b744c commit ceb2e43

13 files changed

+1510
-0
lines changed

src/VMwareEngine.php

+112
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ class VMwareEngine extends \Google\Service
4040
"https://www.googleapis.com/auth/cloud-platform";
4141

4242
public $projects_locations;
43+
public $projects_locations_announcements;
4344
public $projects_locations_dnsBindPermission;
4445
public $projects_locations_networkPeerings;
4546
public $projects_locations_networkPeerings_peeringRoutes;
@@ -55,6 +56,7 @@ class VMwareEngine extends \Google\Service
5556
public $projects_locations_privateClouds_loggingServers;
5657
public $projects_locations_privateClouds_managementDnsZoneBindings;
5758
public $projects_locations_privateClouds_subnets;
59+
public $projects_locations_privateClouds_upgrades;
5860
public $projects_locations_privateConnections;
5961
public $projects_locations_privateConnections_peeringRoutes;
6062
public $projects_locations_vmwareEngineNetworks;
@@ -129,6 +131,52 @@ public function __construct($clientOrConfig = [], $rootUrl = null)
129131
]
130132
]
131133
);
134+
$this->projects_locations_announcements = new VMwareEngine\Resource\ProjectsLocationsAnnouncements(
135+
$this,
136+
$this->serviceName,
137+
'announcements',
138+
[
139+
'methods' => [
140+
'get' => [
141+
'path' => 'v1/{+name}',
142+
'httpMethod' => 'GET',
143+
'parameters' => [
144+
'name' => [
145+
'location' => 'path',
146+
'type' => 'string',
147+
'required' => true,
148+
],
149+
],
150+
],'list' => [
151+
'path' => 'v1/{+parent}/announcements',
152+
'httpMethod' => 'GET',
153+
'parameters' => [
154+
'parent' => [
155+
'location' => 'path',
156+
'type' => 'string',
157+
'required' => true,
158+
],
159+
'filter' => [
160+
'location' => 'query',
161+
'type' => 'string',
162+
],
163+
'orderBy' => [
164+
'location' => 'query',
165+
'type' => 'string',
166+
],
167+
'pageSize' => [
168+
'location' => 'query',
169+
'type' => 'integer',
170+
],
171+
'pageToken' => [
172+
'location' => 'query',
173+
'type' => 'string',
174+
],
175+
],
176+
],
177+
]
178+
]
179+
);
132180
$this->projects_locations_dnsBindPermission = new VMwareEngine\Resource\ProjectsLocationsDnsBindPermission(
133181
$this,
134182
$this->serviceName,
@@ -1431,6 +1479,70 @@ public function __construct($clientOrConfig = [], $rootUrl = null)
14311479
]
14321480
]
14331481
);
1482+
$this->projects_locations_privateClouds_upgrades = new VMwareEngine\Resource\ProjectsLocationsPrivateCloudsUpgrades(
1483+
$this,
1484+
$this->serviceName,
1485+
'upgrades',
1486+
[
1487+
'methods' => [
1488+
'get' => [
1489+
'path' => 'v1/{+name}',
1490+
'httpMethod' => 'GET',
1491+
'parameters' => [
1492+
'name' => [
1493+
'location' => 'path',
1494+
'type' => 'string',
1495+
'required' => true,
1496+
],
1497+
],
1498+
],'list' => [
1499+
'path' => 'v1/{+parent}/upgrades',
1500+
'httpMethod' => 'GET',
1501+
'parameters' => [
1502+
'parent' => [
1503+
'location' => 'path',
1504+
'type' => 'string',
1505+
'required' => true,
1506+
],
1507+
'filter' => [
1508+
'location' => 'query',
1509+
'type' => 'string',
1510+
],
1511+
'orderBy' => [
1512+
'location' => 'query',
1513+
'type' => 'string',
1514+
],
1515+
'pageSize' => [
1516+
'location' => 'query',
1517+
'type' => 'integer',
1518+
],
1519+
'pageToken' => [
1520+
'location' => 'query',
1521+
'type' => 'string',
1522+
],
1523+
],
1524+
],'patch' => [
1525+
'path' => 'v1/{+name}',
1526+
'httpMethod' => 'PATCH',
1527+
'parameters' => [
1528+
'name' => [
1529+
'location' => 'path',
1530+
'type' => 'string',
1531+
'required' => true,
1532+
],
1533+
'requestId' => [
1534+
'location' => 'query',
1535+
'type' => 'string',
1536+
],
1537+
'updateMask' => [
1538+
'location' => 'query',
1539+
'type' => 'string',
1540+
],
1541+
],
1542+
],
1543+
]
1544+
]
1545+
);
14341546
$this->projects_locations_privateConnections = new VMwareEngine\Resource\ProjectsLocationsPrivateConnections(
14351547
$this,
14361548
$this->serviceName,

src/VMwareEngine/Announcement.php

+224
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,224 @@
1+
<?php
2+
/*
3+
* Copyright 2014 Google Inc.
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
6+
* use this file except in compliance with the License. You may obtain a copy of
7+
* the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13+
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14+
* License for the specific language governing permissions and limitations under
15+
* the License.
16+
*/
17+
18+
namespace Google\Service\VMwareEngine;
19+
20+
class Announcement extends \Google\Model
21+
{
22+
/**
23+
* @var string
24+
*/
25+
public $activityType;
26+
/**
27+
* @var string
28+
*/
29+
public $cluster;
30+
/**
31+
* @var string
32+
*/
33+
public $code;
34+
/**
35+
* @var string
36+
*/
37+
public $createTime;
38+
/**
39+
* @var string
40+
*/
41+
public $description;
42+
/**
43+
* @var string[]
44+
*/
45+
public $metadata;
46+
/**
47+
* @var string
48+
*/
49+
public $name;
50+
/**
51+
* @var string
52+
*/
53+
public $privateCloud;
54+
/**
55+
* @var string
56+
*/
57+
public $state;
58+
/**
59+
* @var string
60+
*/
61+
public $targetResourceType;
62+
/**
63+
* @var string
64+
*/
65+
public $updateTime;
66+
67+
/**
68+
* @param string
69+
*/
70+
public function setActivityType($activityType)
71+
{
72+
$this->activityType = $activityType;
73+
}
74+
/**
75+
* @return string
76+
*/
77+
public function getActivityType()
78+
{
79+
return $this->activityType;
80+
}
81+
/**
82+
* @param string
83+
*/
84+
public function setCluster($cluster)
85+
{
86+
$this->cluster = $cluster;
87+
}
88+
/**
89+
* @return string
90+
*/
91+
public function getCluster()
92+
{
93+
return $this->cluster;
94+
}
95+
/**
96+
* @param string
97+
*/
98+
public function setCode($code)
99+
{
100+
$this->code = $code;
101+
}
102+
/**
103+
* @return string
104+
*/
105+
public function getCode()
106+
{
107+
return $this->code;
108+
}
109+
/**
110+
* @param string
111+
*/
112+
public function setCreateTime($createTime)
113+
{
114+
$this->createTime = $createTime;
115+
}
116+
/**
117+
* @return string
118+
*/
119+
public function getCreateTime()
120+
{
121+
return $this->createTime;
122+
}
123+
/**
124+
* @param string
125+
*/
126+
public function setDescription($description)
127+
{
128+
$this->description = $description;
129+
}
130+
/**
131+
* @return string
132+
*/
133+
public function getDescription()
134+
{
135+
return $this->description;
136+
}
137+
/**
138+
* @param string[]
139+
*/
140+
public function setMetadata($metadata)
141+
{
142+
$this->metadata = $metadata;
143+
}
144+
/**
145+
* @return string[]
146+
*/
147+
public function getMetadata()
148+
{
149+
return $this->metadata;
150+
}
151+
/**
152+
* @param string
153+
*/
154+
public function setName($name)
155+
{
156+
$this->name = $name;
157+
}
158+
/**
159+
* @return string
160+
*/
161+
public function getName()
162+
{
163+
return $this->name;
164+
}
165+
/**
166+
* @param string
167+
*/
168+
public function setPrivateCloud($privateCloud)
169+
{
170+
$this->privateCloud = $privateCloud;
171+
}
172+
/**
173+
* @return string
174+
*/
175+
public function getPrivateCloud()
176+
{
177+
return $this->privateCloud;
178+
}
179+
/**
180+
* @param string
181+
*/
182+
public function setState($state)
183+
{
184+
$this->state = $state;
185+
}
186+
/**
187+
* @return string
188+
*/
189+
public function getState()
190+
{
191+
return $this->state;
192+
}
193+
/**
194+
* @param string
195+
*/
196+
public function setTargetResourceType($targetResourceType)
197+
{
198+
$this->targetResourceType = $targetResourceType;
199+
}
200+
/**
201+
* @return string
202+
*/
203+
public function getTargetResourceType()
204+
{
205+
return $this->targetResourceType;
206+
}
207+
/**
208+
* @param string
209+
*/
210+
public function setUpdateTime($updateTime)
211+
{
212+
$this->updateTime = $updateTime;
213+
}
214+
/**
215+
* @return string
216+
*/
217+
public function getUpdateTime()
218+
{
219+
return $this->updateTime;
220+
}
221+
}
222+
223+
// Adding a class alias for backwards compatibility with the previous class name.
224+
class_alias(Announcement::class, 'Google_Service_VMwareEngine_Announcement');

0 commit comments

Comments
 (0)