OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
google
/
longrunning
/
src
/
LongRunning
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:35:23 AM
rwxr-xr-x
📄
CancelOperationRequest.php
2.04 KB
08/12/2024 10:34:03 AM
rw-r--r--
📁
Client
-
08/12/2024 10:35:23 AM
rwxr-xr-x
📄
DeleteOperationRequest.php
2.03 KB
08/12/2024 10:34:03 AM
rw-r--r--
📁
Gapic
-
08/12/2024 10:35:23 AM
rwxr-xr-x
📄
GetOperationRequest.php
1.95 KB
08/12/2024 10:34:03 AM
rw-r--r--
📄
ListOperationsRequest.php
4.51 KB
08/12/2024 10:34:03 AM
rw-r--r--
📄
ListOperationsResponse.php
3.09 KB
08/12/2024 10:34:03 AM
rw-r--r--
📄
Operation.php
9.45 KB
08/12/2024 10:34:03 AM
rw-r--r--
📄
OperationInfo.php
5.33 KB
08/12/2024 10:34:03 AM
rw-r--r--
📄
OperationsClient.php
1.26 KB
08/12/2024 10:34:03 AM
rw-r--r--
📄
OperationsGrpcClient.php
6.86 KB
08/12/2024 10:34:03 AM
rw-r--r--
📄
WaitOperationRequest.php
3.63 KB
08/12/2024 10:34:03 AM
rw-r--r--
📄
gapic_metadata.json
1.45 KB
08/12/2024 10:34:03 AM
rw-r--r--
📁
resources
-
08/12/2024 10:35:23 AM
rwxr-xr-x
Editing: OperationInfo.php
Close
<?php # Generated by the protocol buffer compiler. DO NOT EDIT! # source: google/longrunning/operations.proto namespace Google\LongRunning; use Google\Protobuf\Internal\GPBType; use Google\Protobuf\Internal\RepeatedField; use Google\Protobuf\Internal\GPBUtil; /** * A message representing the message types used by a long-running operation. * Example: * rpc LongRunningRecognize(LongRunningRecognizeRequest) * returns (google.longrunning.Operation) { * option (google.longrunning.operation_info) = { * response_type: "LongRunningRecognizeResponse" * metadata_type: "LongRunningRecognizeMetadata" * }; * } * * Generated from protobuf message <code>google.longrunning.OperationInfo</code> */ class OperationInfo extends \Google\Protobuf\Internal\Message { /** * Required. The message name of the primary return type for this * long-running operation. * This type will be used to deserialize the LRO's response. * If the response is in a different package from the rpc, a fully-qualified * message name must be used (e.g. `google.protobuf.Struct`). * Note: Altering this value constitutes a breaking change. * * Generated from protobuf field <code>string response_type = 1;</code> */ private $response_type = ''; /** * Required. The message name of the metadata type for this long-running * operation. * If the response is in a different package from the rpc, a fully-qualified * message name must be used (e.g. `google.protobuf.Struct`). * Note: Altering this value constitutes a breaking change. * * Generated from protobuf field <code>string metadata_type = 2;</code> */ private $metadata_type = ''; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type string $response_type * Required. The message name of the primary return type for this * long-running operation. * This type will be used to deserialize the LRO's response. * If the response is in a different package from the rpc, a fully-qualified * message name must be used (e.g. `google.protobuf.Struct`). * Note: Altering this value constitutes a breaking change. * @type string $metadata_type * Required. The message name of the metadata type for this long-running * operation. * If the response is in a different package from the rpc, a fully-qualified * message name must be used (e.g. `google.protobuf.Struct`). * Note: Altering this value constitutes a breaking change. * } */ public function __construct($data = NULL) { \GPBMetadata\Google\Longrunning\Operations::initOnce(); parent::__construct($data); } /** * Required. The message name of the primary return type for this * long-running operation. * This type will be used to deserialize the LRO's response. * If the response is in a different package from the rpc, a fully-qualified * message name must be used (e.g. `google.protobuf.Struct`). * Note: Altering this value constitutes a breaking change. * * Generated from protobuf field <code>string response_type = 1;</code> * @return string */ public function getResponseType() { return $this->response_type; } /** * Required. The message name of the primary return type for this * long-running operation. * This type will be used to deserialize the LRO's response. * If the response is in a different package from the rpc, a fully-qualified * message name must be used (e.g. `google.protobuf.Struct`). * Note: Altering this value constitutes a breaking change. * * Generated from protobuf field <code>string response_type = 1;</code> * @param string $var * @return $this */ public function setResponseType($var) { GPBUtil::checkString($var, True); $this->response_type = $var; return $this; } /** * Required. The message name of the metadata type for this long-running * operation. * If the response is in a different package from the rpc, a fully-qualified * message name must be used (e.g. `google.protobuf.Struct`). * Note: Altering this value constitutes a breaking change. * * Generated from protobuf field <code>string metadata_type = 2;</code> * @return string */ public function getMetadataType() { return $this->metadata_type; } /** * Required. The message name of the metadata type for this long-running * operation. * If the response is in a different package from the rpc, a fully-qualified * message name must be used (e.g. `google.protobuf.Struct`). * Note: Altering this value constitutes a breaking change. * * Generated from protobuf field <code>string metadata_type = 2;</code> * @param string $var * @return $this */ public function setMetadataType($var) { GPBUtil::checkString($var, True); $this->metadata_type = $var; return $this; } }