���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/st2/vendor/google/gax/src/Cloud/DevTools/Source/V1/ |
<?php # Generated by the protocol buffer compiler. DO NOT EDIT! # source: google/devtools/source/v1/source_context.proto namespace Google\Cloud\DevTools\Source\V1; use Google\Protobuf\Internal\GPBType; use Google\Protobuf\Internal\RepeatedField; use Google\Protobuf\Internal\GPBUtil; /** * A CloudRepoSourceContext denotes a particular revision in a cloud * repo (a repo hosted by the Google Cloud Platform). * * Generated from protobuf message <code>google.devtools.source.v1.CloudRepoSourceContext</code> */ class CloudRepoSourceContext extends \Google\Protobuf\Internal\Message { /** * The ID of the repo. * * Generated from protobuf field <code>.google.devtools.source.v1.RepoId repo_id = 1;</code> */ private $repo_id = null; protected $revision; public function __construct() { \GPBMetadata\Google\Devtools\Source\V1\SourceContext::initOnce(); parent::__construct(); } /** * The ID of the repo. * * Generated from protobuf field <code>.google.devtools.source.v1.RepoId repo_id = 1;</code> * @return \Google\Cloud\DevTools\Source\V1\RepoId */ public function getRepoId() { return $this->repo_id; } /** * The ID of the repo. * * Generated from protobuf field <code>.google.devtools.source.v1.RepoId repo_id = 1;</code> * @param \Google\Cloud\DevTools\Source\V1\RepoId $var * @return $this */ public function setRepoId($var) { GPBUtil::checkMessage($var, \Google\Cloud\DevTools\Source\V1\RepoId::class); $this->repo_id = $var; return $this; } /** * A revision ID. * * Generated from protobuf field <code>string revision_id = 2;</code> * @return string */ public function getRevisionId() { return $this->readOneof(2); } /** * A revision ID. * * Generated from protobuf field <code>string revision_id = 2;</code> * @param string $var * @return $this */ public function setRevisionId($var) { GPBUtil::checkString($var, True); $this->writeOneof(2, $var); return $this; } /** * The name of an alias (branch, tag, etc.). * * Generated from protobuf field <code>string alias_name = 3;</code> * @return string */ public function getAliasName() { return $this->readOneof(3); } /** * The name of an alias (branch, tag, etc.). * * Generated from protobuf field <code>string alias_name = 3;</code> * @param string $var * @return $this */ public function setAliasName($var) { GPBUtil::checkString($var, True); $this->writeOneof(3, $var); return $this; } /** * An alias, which may be a branch or tag. * * Generated from protobuf field <code>.google.devtools.source.v1.AliasContext alias_context = 4;</code> * @return \Google\Cloud\DevTools\Source\V1\AliasContext */ public function getAliasContext() { return $this->readOneof(4); } /** * An alias, which may be a branch or tag. * * Generated from protobuf field <code>.google.devtools.source.v1.AliasContext alias_context = 4;</code> * @param \Google\Cloud\DevTools\Source\V1\AliasContext $var * @return $this */ public function setAliasContext($var) { GPBUtil::checkMessage($var, \Google\Cloud\DevTools\Source\V1\AliasContext::class); $this->writeOneof(4, $var); return $this; } /** * @return string */ public function getRevision() { return $this->whichOneof("revision"); } }