Skip to content

Commit fd9eae8

Browse files
1 parent ba60428 commit fd9eae8

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

src/OnDemandScanning/BaseImage.php

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@ class BaseImage extends \Google\Model
3131
* @var string
3232
*/
3333
public $name;
34+
/**
35+
* The registry in which the base image is from.
36+
*
37+
* @var string
38+
*/
39+
public $registry;
3440
/**
3541
* The repository name in which the base image is from.
3642
*
@@ -70,6 +76,22 @@ public function getName()
7076
{
7177
return $this->name;
7278
}
79+
/**
80+
* The registry in which the base image is from.
81+
*
82+
* @param string $registry
83+
*/
84+
public function setRegistry($registry)
85+
{
86+
$this->registry = $registry;
87+
}
88+
/**
89+
* @return string
90+
*/
91+
public function getRegistry()
92+
{
93+
return $this->registry;
94+
}
7395
/**
7496
* The repository name in which the base image is from.
7597
*

0 commit comments

Comments
 (0)