Skip to content

Commit e023429

Browse files
1 parent 136737b commit e023429

5 files changed

+270
-0
lines changed

src/ContainerAnalysis/ContaineranalysisGoogleDevtoolsCloudbuildV1Build.php

+16
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ class ContaineranalysisGoogleDevtoolsCloudbuildV1Build extends \Google\Collectio
3434
* @var string
3535
*/
3636
public $createTime;
37+
protected $dependenciesType = ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency::class;
38+
protected $dependenciesDataType = 'array';
3739
protected $failureInfoType = ContaineranalysisGoogleDevtoolsCloudbuildV1BuildFailureInfo::class;
3840
protected $failureInfoDataType = '';
3941
/**
@@ -185,6 +187,20 @@ public function getCreateTime()
185187
{
186188
return $this->createTime;
187189
}
190+
/**
191+
* @param ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency[]
192+
*/
193+
public function setDependencies($dependencies)
194+
{
195+
$this->dependencies = $dependencies;
196+
}
197+
/**
198+
* @return ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency[]
199+
*/
200+
public function getDependencies()
201+
{
202+
return $this->dependencies;
203+
}
188204
/**
189205
* @param ContaineranalysisGoogleDevtoolsCloudbuildV1BuildFailureInfo
190206
*/

src/ContainerAnalysis/ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptions.php

+18
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,10 @@ class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptions extends \Google\Co
5858
public $machineType;
5959
protected $poolType = ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOption::class;
6060
protected $poolDataType = '';
61+
/**
62+
* @var string
63+
*/
64+
public $pubsubTopic;
6165
/**
6266
* @var string
6367
*/
@@ -221,6 +225,20 @@ public function getPool()
221225
{
222226
return $this->pool;
223227
}
228+
/**
229+
* @param string
230+
*/
231+
public function setPubsubTopic($pubsubTopic)
232+
{
233+
$this->pubsubTopic = $pubsubTopic;
234+
}
235+
/**
236+
* @return string
237+
*/
238+
public function getPubsubTopic()
239+
{
240+
return $this->pubsubTopic;
241+
}
224242
/**
225243
* @param string
226244
*/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
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\ContainerAnalysis;
19+
20+
class ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency extends \Google\Model
21+
{
22+
/**
23+
* @var bool
24+
*/
25+
public $empty;
26+
protected $gitSourceType = ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency::class;
27+
protected $gitSourceDataType = '';
28+
29+
/**
30+
* @param bool
31+
*/
32+
public function setEmpty($empty)
33+
{
34+
$this->empty = $empty;
35+
}
36+
/**
37+
* @return bool
38+
*/
39+
public function getEmpty()
40+
{
41+
return $this->empty;
42+
}
43+
/**
44+
* @param ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
45+
*/
46+
public function setGitSource(ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency $gitSource)
47+
{
48+
$this->gitSource = $gitSource;
49+
}
50+
/**
51+
* @return ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
52+
*/
53+
public function getGitSource()
54+
{
55+
return $this->gitSource;
56+
}
57+
}
58+
59+
// Adding a class alias for backwards compatibility with the previous class name.
60+
class_alias(ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency::class, 'Google_Service_ContainerAnalysis_ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency');
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
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\ContainerAnalysis;
19+
20+
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency extends \Google\Model
21+
{
22+
/**
23+
* @var string
24+
*/
25+
public $depth;
26+
/**
27+
* @var string
28+
*/
29+
public $destPath;
30+
/**
31+
* @var bool
32+
*/
33+
public $recurseSubmodules;
34+
protected $repositoryType = ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository::class;
35+
protected $repositoryDataType = '';
36+
/**
37+
* @var string
38+
*/
39+
public $revision;
40+
41+
/**
42+
* @param string
43+
*/
44+
public function setDepth($depth)
45+
{
46+
$this->depth = $depth;
47+
}
48+
/**
49+
* @return string
50+
*/
51+
public function getDepth()
52+
{
53+
return $this->depth;
54+
}
55+
/**
56+
* @param string
57+
*/
58+
public function setDestPath($destPath)
59+
{
60+
$this->destPath = $destPath;
61+
}
62+
/**
63+
* @return string
64+
*/
65+
public function getDestPath()
66+
{
67+
return $this->destPath;
68+
}
69+
/**
70+
* @param bool
71+
*/
72+
public function setRecurseSubmodules($recurseSubmodules)
73+
{
74+
$this->recurseSubmodules = $recurseSubmodules;
75+
}
76+
/**
77+
* @return bool
78+
*/
79+
public function getRecurseSubmodules()
80+
{
81+
return $this->recurseSubmodules;
82+
}
83+
/**
84+
* @param ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository
85+
*/
86+
public function setRepository(ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository $repository)
87+
{
88+
$this->repository = $repository;
89+
}
90+
/**
91+
* @return ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository
92+
*/
93+
public function getRepository()
94+
{
95+
return $this->repository;
96+
}
97+
/**
98+
* @param string
99+
*/
100+
public function setRevision($revision)
101+
{
102+
$this->revision = $revision;
103+
}
104+
/**
105+
* @return string
106+
*/
107+
public function getRevision()
108+
{
109+
return $this->revision;
110+
}
111+
}
112+
113+
// Adding a class alias for backwards compatibility with the previous class name.
114+
class_alias(ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency::class, 'Google_Service_ContainerAnalysis_ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency');
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
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\ContainerAnalysis;
19+
20+
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository extends \Google\Model
21+
{
22+
/**
23+
* @var string
24+
*/
25+
public $developerConnect;
26+
/**
27+
* @var string
28+
*/
29+
public $url;
30+
31+
/**
32+
* @param string
33+
*/
34+
public function setDeveloperConnect($developerConnect)
35+
{
36+
$this->developerConnect = $developerConnect;
37+
}
38+
/**
39+
* @return string
40+
*/
41+
public function getDeveloperConnect()
42+
{
43+
return $this->developerConnect;
44+
}
45+
/**
46+
* @param string
47+
*/
48+
public function setUrl($url)
49+
{
50+
$this->url = $url;
51+
}
52+
/**
53+
* @return string
54+
*/
55+
public function getUrl()
56+
{
57+
return $this->url;
58+
}
59+
}
60+
61+
// Adding a class alias for backwards compatibility with the previous class name.
62+
class_alias(ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository::class, 'Google_Service_ContainerAnalysis_ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository');

0 commit comments

Comments
 (0)