Skip to content

Commit a74c279

Browse files
1 parent 4532e49 commit a74c279

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

src/WorkloadManager/SapDiscovery.php

+18
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ class SapDiscovery extends \Google\Model
3737
* @var string
3838
*/
3939
public $updateTime;
40+
/**
41+
* @var bool
42+
*/
43+
public $useDrReconciliation;
4044
protected $workloadPropertiesType = SapDiscoveryWorkloadProperties::class;
4145
protected $workloadPropertiesDataType = '';
4246

@@ -124,6 +128,20 @@ public function getUpdateTime()
124128
{
125129
return $this->updateTime;
126130
}
131+
/**
132+
* @param bool
133+
*/
134+
public function setUseDrReconciliation($useDrReconciliation)
135+
{
136+
$this->useDrReconciliation = $useDrReconciliation;
137+
}
138+
/**
139+
* @return bool
140+
*/
141+
public function getUseDrReconciliation()
142+
{
143+
return $this->useDrReconciliation;
144+
}
127145
/**
128146
* @param SapDiscoveryWorkloadProperties
129147
*/

src/WorkloadManager/SapDiscoveryComponentDatabaseProperties.php

+18
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ class SapDiscoveryComponentDatabaseProperties extends \Google\Model
3535
* @var string
3636
*/
3737
public $instanceNumber;
38+
/**
39+
* @var string
40+
*/
41+
public $landscapeId;
3842
/**
3943
* @var string
4044
*/
@@ -100,6 +104,20 @@ public function getInstanceNumber()
100104
{
101105
return $this->instanceNumber;
102106
}
107+
/**
108+
* @param string
109+
*/
110+
public function setLandscapeId($landscapeId)
111+
{
112+
$this->landscapeId = $landscapeId;
113+
}
114+
/**
115+
* @return string
116+
*/
117+
public function getLandscapeId()
118+
{
119+
return $this->landscapeId;
120+
}
103121
/**
104122
* @param string
105123
*/

0 commit comments

Comments
 (0)