-
Notifications
You must be signed in to change notification settings - Fork 317
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Regenerate containeranalysis client (#6229)
Generated in GitHub action: https://togithub.com/googleapis/googleapis/google-api-php-client-services/actions/workflows/codegen.yaml
- Loading branch information
1 parent
136737b
commit e023429
Showing
5 changed files
with
270 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
60 changes: 60 additions & 0 deletions
60
src/ContainerAnalysis/ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<?php | ||
/* | ||
* Copyright 2014 Google Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
*/ | ||
|
||
namespace Google\Service\ContainerAnalysis; | ||
|
||
class ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency extends \Google\Model | ||
{ | ||
/** | ||
* @var bool | ||
*/ | ||
public $empty; | ||
protected $gitSourceType = ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency::class; | ||
protected $gitSourceDataType = ''; | ||
|
||
/** | ||
* @param bool | ||
*/ | ||
public function setEmpty($empty) | ||
{ | ||
$this->empty = $empty; | ||
} | ||
/** | ||
* @return bool | ||
*/ | ||
public function getEmpty() | ||
{ | ||
return $this->empty; | ||
} | ||
/** | ||
* @param ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency | ||
*/ | ||
public function setGitSource(ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency $gitSource) | ||
{ | ||
$this->gitSource = $gitSource; | ||
} | ||
/** | ||
* @return ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency | ||
*/ | ||
public function getGitSource() | ||
{ | ||
return $this->gitSource; | ||
} | ||
} | ||
|
||
// Adding a class alias for backwards compatibility with the previous class name. | ||
class_alias(ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency::class, 'Google_Service_ContainerAnalysis_ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency'); |
114 changes: 114 additions & 0 deletions
114
...inerAnalysis/ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
<?php | ||
/* | ||
* Copyright 2014 Google Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
*/ | ||
|
||
namespace Google\Service\ContainerAnalysis; | ||
|
||
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency extends \Google\Model | ||
{ | ||
/** | ||
* @var string | ||
*/ | ||
public $depth; | ||
/** | ||
* @var string | ||
*/ | ||
public $destPath; | ||
/** | ||
* @var bool | ||
*/ | ||
public $recurseSubmodules; | ||
protected $repositoryType = ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository::class; | ||
protected $repositoryDataType = ''; | ||
/** | ||
* @var string | ||
*/ | ||
public $revision; | ||
|
||
/** | ||
* @param string | ||
*/ | ||
public function setDepth($depth) | ||
{ | ||
$this->depth = $depth; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getDepth() | ||
{ | ||
return $this->depth; | ||
} | ||
/** | ||
* @param string | ||
*/ | ||
public function setDestPath($destPath) | ||
{ | ||
$this->destPath = $destPath; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getDestPath() | ||
{ | ||
return $this->destPath; | ||
} | ||
/** | ||
* @param bool | ||
*/ | ||
public function setRecurseSubmodules($recurseSubmodules) | ||
{ | ||
$this->recurseSubmodules = $recurseSubmodules; | ||
} | ||
/** | ||
* @return bool | ||
*/ | ||
public function getRecurseSubmodules() | ||
{ | ||
return $this->recurseSubmodules; | ||
} | ||
/** | ||
* @param ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository | ||
*/ | ||
public function setRepository(ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository $repository) | ||
{ | ||
$this->repository = $repository; | ||
} | ||
/** | ||
* @return ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository | ||
*/ | ||
public function getRepository() | ||
{ | ||
return $this->repository; | ||
} | ||
/** | ||
* @param string | ||
*/ | ||
public function setRevision($revision) | ||
{ | ||
$this->revision = $revision; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getRevision() | ||
{ | ||
return $this->revision; | ||
} | ||
} | ||
|
||
// Adding a class alias for backwards compatibility with the previous class name. | ||
class_alias(ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency::class, 'Google_Service_ContainerAnalysis_ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency'); |
62 changes: 62 additions & 0 deletions
62
...inerAnalysis/ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<?php | ||
/* | ||
* Copyright 2014 Google Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
*/ | ||
|
||
namespace Google\Service\ContainerAnalysis; | ||
|
||
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository extends \Google\Model | ||
{ | ||
/** | ||
* @var string | ||
*/ | ||
public $developerConnect; | ||
/** | ||
* @var string | ||
*/ | ||
public $url; | ||
|
||
/** | ||
* @param string | ||
*/ | ||
public function setDeveloperConnect($developerConnect) | ||
{ | ||
$this->developerConnect = $developerConnect; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getDeveloperConnect() | ||
{ | ||
return $this->developerConnect; | ||
} | ||
/** | ||
* @param string | ||
*/ | ||
public function setUrl($url) | ||
{ | ||
$this->url = $url; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getUrl() | ||
{ | ||
return $this->url; | ||
} | ||
} | ||
|
||
// Adding a class alias for backwards compatibility with the previous class name. | ||
class_alias(ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository::class, 'Google_Service_ContainerAnalysis_ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository'); |