Skip to content

Commit eb82284

Browse files
committed
Updated Compute.php
1 parent 8ac3a0e commit eb82284

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

src/Google/Service/Compute.php

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5981,6 +5981,7 @@ class Google_Service_Compute_Image extends Google_Model
59815981
protected $deprecatedType = 'Google_Service_Compute_DeprecationStatus';
59825982
protected $deprecatedDataType = '';
59835983
public $description;
5984+
public $diskSizeGb;
59845985
public $id;
59855986
public $kind;
59865987
public $name;
@@ -6030,6 +6031,16 @@ public function getDescription()
60306031
return $this->description;
60316032
}
60326033

6034+
public function setDiskSizeGb($diskSizeGb)
6035+
{
6036+
$this->diskSizeGb = $diskSizeGb;
6037+
}
6038+
6039+
public function getDiskSizeGb()
6040+
{
6041+
return $this->diskSizeGb;
6042+
}
6043+
60336044
public function setId($id)
60346045
{
60356046
$this->id = $id;
@@ -7863,6 +7874,8 @@ class Google_Service_Compute_Project extends Google_Collection
78637874
protected $quotasType = 'Google_Service_Compute_Quota';
78647875
protected $quotasDataType = 'array';
78657876
public $selfLink;
7877+
protected $usageExportLocationType = 'Google_Service_Compute_UsageExportLocation';
7878+
protected $usageExportLocationDataType = '';
78667879

78677880
public function setCommonInstanceMetadata(Google_Service_Compute_Metadata $commonInstanceMetadata)
78687881
{
@@ -7943,6 +7956,16 @@ public function getSelfLink()
79437956
{
79447957
return $this->selfLink;
79457958
}
7959+
7960+
public function setUsageExportLocation(Google_Service_Compute_UsageExportLocation $usageExportLocation)
7961+
{
7962+
$this->usageExportLocation = $usageExportLocation;
7963+
}
7964+
7965+
public function getUsageExportLocation()
7966+
{
7967+
return $this->usageExportLocation;
7968+
}
79467969
}
79477970

79487971
class Google_Service_Compute_Quota extends Google_Model
@@ -9532,6 +9555,32 @@ public function getTarget()
95329555
}
95339556
}
95349557

9558+
class Google_Service_Compute_UsageExportLocation extends Google_Model
9559+
{
9560+
public $bucketName;
9561+
public $reportNamePrefix;
9562+
9563+
public function setBucketName($bucketName)
9564+
{
9565+
$this->bucketName = $bucketName;
9566+
}
9567+
9568+
public function getBucketName()
9569+
{
9570+
return $this->bucketName;
9571+
}
9572+
9573+
public function setReportNamePrefix($reportNamePrefix)
9574+
{
9575+
$this->reportNamePrefix = $reportNamePrefix;
9576+
}
9577+
9578+
public function getReportNamePrefix()
9579+
{
9580+
return $this->reportNamePrefix;
9581+
}
9582+
}
9583+
95359584
class Google_Service_Compute_Zone extends Google_Collection
95369585
{
95379586
public $creationTimestamp;

0 commit comments

Comments
 (0)