-
Notifications
You must be signed in to change notification settings - Fork 316
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 (#5101)
Generated in GitHub action: https://github.com/googleapis/googleapis/google-api-php-client-services/actions/workflows/codegen.yaml
- Loading branch information
1 parent
7155031
commit 235e6a4
Showing
6 changed files
with
214 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
80 changes: 80 additions & 0 deletions
80
src/ContainerAnalysis/ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig.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,80 @@ | ||
<?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 ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig extends \Google\Model | ||
{ | ||
/** | ||
* @var string | ||
*/ | ||
public $dir; | ||
/** | ||
* @var string | ||
*/ | ||
public $gitRepositoryLink; | ||
/** | ||
* @var string | ||
*/ | ||
public $revision; | ||
|
||
/** | ||
* @param string | ||
*/ | ||
public function setDir($dir) | ||
{ | ||
$this->dir = $dir; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getDir() | ||
{ | ||
return $this->dir; | ||
} | ||
/** | ||
* @param string | ||
*/ | ||
public function setGitRepositoryLink($gitRepositoryLink) | ||
{ | ||
$this->gitRepositoryLink = $gitRepositoryLink; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getGitRepositoryLink() | ||
{ | ||
return $this->gitRepositoryLink; | ||
} | ||
/** | ||
* @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(ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig::class, 'Google_Service_ContainerAnalysis_ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig'); |
42 changes: 42 additions & 0 deletions
42
src/ContainerAnalysis/ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfig.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,42 @@ | ||
<?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 ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfig extends \Google\Model | ||
{ | ||
protected $httpType = ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfigHttpConfig::class; | ||
protected $httpDataType = ''; | ||
|
||
/** | ||
* @param ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfigHttpConfig | ||
*/ | ||
public function setHttp(ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfigHttpConfig $http) | ||
{ | ||
$this->http = $http; | ||
} | ||
/** | ||
* @return ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfigHttpConfig | ||
*/ | ||
public function getHttp() | ||
{ | ||
return $this->http; | ||
} | ||
} | ||
|
||
// Adding a class alias for backwards compatibility with the previous class name. | ||
class_alias(ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfig::class, 'Google_Service_ContainerAnalysis_ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfig'); |
44 changes: 44 additions & 0 deletions
44
src/ContainerAnalysis/ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfigHttpConfig.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,44 @@ | ||
<?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 ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfigHttpConfig extends \Google\Model | ||
{ | ||
/** | ||
* @var string | ||
*/ | ||
public $proxySecretVersionName; | ||
|
||
/** | ||
* @param string | ||
*/ | ||
public function setProxySecretVersionName($proxySecretVersionName) | ||
{ | ||
$this->proxySecretVersionName = $proxySecretVersionName; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getProxySecretVersionName() | ||
{ | ||
return $this->proxySecretVersionName; | ||
} | ||
} | ||
|
||
// Adding a class alias for backwards compatibility with the previous class name. | ||
class_alias(ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfigHttpConfig::class, 'Google_Service_ContainerAnalysis_ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfigHttpConfig'); |
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