OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
google
/
grpc-gcp
/
src
/
generated
/
Grpc
/
Gcp
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:36:20 AM
rwxr-xr-x
📄
AffinityConfig.php
2.33 KB
08/12/2024 10:36:21 AM
rw-r--r--
📄
AffinityConfig_Command.php
1.24 KB
08/12/2024 10:36:21 AM
rw-r--r--
📄
ApiConfig.php
2.28 KB
08/12/2024 10:36:21 AM
rw-r--r--
📄
ChannelPoolConfig.php
3.43 KB
08/12/2024 10:36:21 AM
rw-r--r--
📄
MethodConfig.php
2.66 KB
08/12/2024 10:36:21 AM
rw-r--r--
Editing: AffinityConfig.php
Close
<?php # Generated by the protocol buffer compiler. DO NOT EDIT! # source: grpc_gcp.proto namespace Grpc\Gcp; use Google\Protobuf\Internal\GPBUtil; /** * Generated from protobuf message <code>grpc.gcp.AffinityConfig</code> */ class AffinityConfig extends \Google\Protobuf\Internal\Message { /** * The affinity command applies on the selected gRPC methods. * * Generated from protobuf field <code>.grpc.gcp.AffinityConfig.Command command = 2;</code> */ private $command = 0; /** * The field path of the affinity key in the request/response message. * For example: "f.a", "f.b.d", etc. * * Generated from protobuf field <code>string affinity_key = 3;</code> */ private $affinity_key = ''; public function __construct() { \GPBMetadata\GrpcGcp::initOnce(); parent::__construct(); } /** * The affinity command applies on the selected gRPC methods. * * Generated from protobuf field <code>.grpc.gcp.AffinityConfig.Command command = 2;</code> * @return int */ public function getCommand() { return $this->command; } /** * The affinity command applies on the selected gRPC methods. * * Generated from protobuf field <code>.grpc.gcp.AffinityConfig.Command command = 2;</code> * @param int $var * @return $this */ public function setCommand($var) { GPBUtil::checkEnum($var, \Grpc\Gcp\AffinityConfig_Command::class); $this->command = $var; return $this; } /** * The field path of the affinity key in the request/response message. * For example: "f.a", "f.b.d", etc. * * Generated from protobuf field <code>string affinity_key = 3;</code> * @return string */ public function getAffinityKey() { return $this->affinity_key; } /** * The field path of the affinity key in the request/response message. * For example: "f.a", "f.b.d", etc. * * Generated from protobuf field <code>string affinity_key = 3;</code> * @param string $var * @return $this */ public function setAffinityKey($var) { GPBUtil::checkString($var, true); $this->affinity_key = $var; return $this; } }