File: /var/www/javago-portal-updates/vendor/google/common-protos/src/Api/SelectiveGapicGeneration.php
<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/api/client.proto
namespace Google\Api;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* This message is used to configure the generation of a subset of the RPCs in
* a service for client libraries.
*
* Generated from protobuf message <code>google.api.SelectiveGapicGeneration</code>
*/
class SelectiveGapicGeneration extends \Google\Protobuf\Internal\Message
{
/**
* An allowlist of the fully qualified names of RPCs that should be included
* on public client surfaces.
*
* Generated from protobuf field <code>repeated string methods = 1;</code>
*/
private $methods;
/**
* Setting this to true indicates to the client generators that methods
* that would be excluded from the generation should instead be generated
* in a way that indicates these methods should not be consumed by
* end users. How this is expressed is up to individual language
* implementations to decide. Some examples may be: added annotations,
* obfuscated identifiers, or other language idiomatic patterns.
*
* Generated from protobuf field <code>bool generate_omitted_as_internal = 2;</code>
*/
protected $generate_omitted_as_internal = false;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type array<string>|\Google\Protobuf\Internal\RepeatedField $methods
* An allowlist of the fully qualified names of RPCs that should be included
* on public client surfaces.
* @type bool $generate_omitted_as_internal
* Setting this to true indicates to the client generators that methods
* that would be excluded from the generation should instead be generated
* in a way that indicates these methods should not be consumed by
* end users. How this is expressed is up to individual language
* implementations to decide. Some examples may be: added annotations,
* obfuscated identifiers, or other language idiomatic patterns.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Api\Client::initOnce();
parent::__construct($data);
}
/**
* An allowlist of the fully qualified names of RPCs that should be included
* on public client surfaces.
*
* Generated from protobuf field <code>repeated string methods = 1;</code>
* @return \Google\Protobuf\Internal\RepeatedField
*/
public function getMethods()
{
return $this->methods;
}
/**
* An allowlist of the fully qualified names of RPCs that should be included
* on public client surfaces.
*
* Generated from protobuf field <code>repeated string methods = 1;</code>
* @param array<string>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this
*/
public function setMethods($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
$this->methods = $arr;
return $this;
}
/**
* Setting this to true indicates to the client generators that methods
* that would be excluded from the generation should instead be generated
* in a way that indicates these methods should not be consumed by
* end users. How this is expressed is up to individual language
* implementations to decide. Some examples may be: added annotations,
* obfuscated identifiers, or other language idiomatic patterns.
*
* Generated from protobuf field <code>bool generate_omitted_as_internal = 2;</code>
* @return bool
*/
public function getGenerateOmittedAsInternal()
{
return $this->generate_omitted_as_internal;
}
/**
* Setting this to true indicates to the client generators that methods
* that would be excluded from the generation should instead be generated
* in a way that indicates these methods should not be consumed by
* end users. How this is expressed is up to individual language
* implementations to decide. Some examples may be: added annotations,
* obfuscated identifiers, or other language idiomatic patterns.
*
* Generated from protobuf field <code>bool generate_omitted_as_internal = 2;</code>
* @param bool $var
* @return $this
*/
public function setGenerateOmittedAsInternal($var)
{
GPBUtil::checkBool($var);
$this->generate_omitted_as_internal = $var;
return $this;
}
}