OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
google
/
common-protos
/
src
/
Rpc
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:36:18 AM
rwxr-xr-x
📁
BadRequest
-
08/12/2024 10:35:05 AM
rwxr-xr-x
📄
BadRequest.php
2.16 KB
08/12/2024 10:33:57 AM
rw-r--r--
📄
Code.php
9.68 KB
08/12/2024 10:33:57 AM
rw-r--r--
📁
Context
-
08/12/2024 10:36:18 AM
rwxr-xr-x
📄
DebugInfo.php
2.82 KB
08/12/2024 10:33:57 AM
rw-r--r--
📄
ErrorInfo.php
8.83 KB
08/12/2024 10:33:57 AM
rw-r--r--
📁
Help
-
08/12/2024 10:35:06 AM
rwxr-xr-x
📄
Help.php
2.25 KB
08/12/2024 10:33:57 AM
rw-r--r--
📄
LocalizedMessage.php
3.03 KB
08/12/2024 10:33:58 AM
rw-r--r--
📁
PreconditionFailure
-
08/12/2024 10:35:06 AM
rwxr-xr-x
📄
PreconditionFailure.php
2.23 KB
08/12/2024 10:33:58 AM
rw-r--r--
📁
QuotaFailure
-
08/12/2024 10:35:06 AM
rwxr-xr-x
📄
QuotaFailure.php
2.43 KB
08/12/2024 10:33:58 AM
rw-r--r--
📄
RequestInfo.php
3.51 KB
08/12/2024 10:33:58 AM
rw-r--r--
📄
ResourceInfo.php
6.83 KB
08/12/2024 10:33:58 AM
rw-r--r--
📄
RetryInfo.php
2.7 KB
08/12/2024 10:33:58 AM
rw-r--r--
📄
Status.php
5.25 KB
08/12/2024 10:33:58 AM
rw-r--r--
Editing: ErrorInfo.php
Close
<?php # Generated by the protocol buffer compiler. DO NOT EDIT! # source: google/rpc/error_details.proto namespace Google\Rpc; use Google\Protobuf\Internal\GPBType; use Google\Protobuf\Internal\RepeatedField; use Google\Protobuf\Internal\GPBUtil; /** * Describes the cause of the error with structured details. * Example of an error when contacting the "pubsub.googleapis.com" API when it * is not enabled: * { "reason": "API_DISABLED" * "domain": "googleapis.com" * "metadata": { * "resource": "projects/123", * "service": "pubsub.googleapis.com" * } * } * This response indicates that the pubsub.googleapis.com API is not enabled. * Example of an error that is returned when attempting to create a Spanner * instance in a region that is out of stock: * { "reason": "STOCKOUT" * "domain": "spanner.googleapis.com", * "metadata": { * "availableRegions": "us-central1,us-east2" * } * } * * Generated from protobuf message <code>google.rpc.ErrorInfo</code> */ class ErrorInfo extends \Google\Protobuf\Internal\Message { /** * The reason of the error. This is a constant value that identifies the * proximate cause of the error. Error reasons are unique within a particular * domain of errors. This should be at most 63 characters and match a * regular expression of `[A-Z][A-Z0-9_]+[A-Z0-9]`, which represents * UPPER_SNAKE_CASE. * * Generated from protobuf field <code>string reason = 1;</code> */ protected $reason = ''; /** * The logical grouping to which the "reason" belongs. The error domain * is typically the registered service name of the tool or product that * generates the error. Example: "pubsub.googleapis.com". If the error is * generated by some common infrastructure, the error domain must be a * globally unique value that identifies the infrastructure. For Google API * infrastructure, the error domain is "googleapis.com". * * Generated from protobuf field <code>string domain = 2;</code> */ protected $domain = ''; /** * Additional structured details about this error. * Keys should match /[a-zA-Z0-9-_]/ and be limited to 64 characters in * length. When identifying the current value of an exceeded limit, the units * should be contained in the key, not the value. For example, rather than * {"instanceLimit": "100/request"}, should be returned as, * {"instanceLimitPerRequest": "100"}, if the client exceeds the number of * instances that can be created in a single (batch) request. * * Generated from protobuf field <code>map<string, string> metadata = 3;</code> */ private $metadata; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type string $reason * The reason of the error. This is a constant value that identifies the * proximate cause of the error. Error reasons are unique within a particular * domain of errors. This should be at most 63 characters and match a * regular expression of `[A-Z][A-Z0-9_]+[A-Z0-9]`, which represents * UPPER_SNAKE_CASE. * @type string $domain * The logical grouping to which the "reason" belongs. The error domain * is typically the registered service name of the tool or product that * generates the error. Example: "pubsub.googleapis.com". If the error is * generated by some common infrastructure, the error domain must be a * globally unique value that identifies the infrastructure. For Google API * infrastructure, the error domain is "googleapis.com". * @type array|\Google\Protobuf\Internal\MapField $metadata * Additional structured details about this error. * Keys should match /[a-zA-Z0-9-_]/ and be limited to 64 characters in * length. When identifying the current value of an exceeded limit, the units * should be contained in the key, not the value. For example, rather than * {"instanceLimit": "100/request"}, should be returned as, * {"instanceLimitPerRequest": "100"}, if the client exceeds the number of * instances that can be created in a single (batch) request. * } */ public function __construct($data = NULL) { \GPBMetadata\Google\Rpc\ErrorDetails::initOnce(); parent::__construct($data); } /** * The reason of the error. This is a constant value that identifies the * proximate cause of the error. Error reasons are unique within a particular * domain of errors. This should be at most 63 characters and match a * regular expression of `[A-Z][A-Z0-9_]+[A-Z0-9]`, which represents * UPPER_SNAKE_CASE. * * Generated from protobuf field <code>string reason = 1;</code> * @return string */ public function getReason() { return $this->reason; } /** * The reason of the error. This is a constant value that identifies the * proximate cause of the error. Error reasons are unique within a particular * domain of errors. This should be at most 63 characters and match a * regular expression of `[A-Z][A-Z0-9_]+[A-Z0-9]`, which represents * UPPER_SNAKE_CASE. * * Generated from protobuf field <code>string reason = 1;</code> * @param string $var * @return $this */ public function setReason($var) { GPBUtil::checkString($var, True); $this->reason = $var; return $this; } /** * The logical grouping to which the "reason" belongs. The error domain * is typically the registered service name of the tool or product that * generates the error. Example: "pubsub.googleapis.com". If the error is * generated by some common infrastructure, the error domain must be a * globally unique value that identifies the infrastructure. For Google API * infrastructure, the error domain is "googleapis.com". * * Generated from protobuf field <code>string domain = 2;</code> * @return string */ public function getDomain() { return $this->domain; } /** * The logical grouping to which the "reason" belongs. The error domain * is typically the registered service name of the tool or product that * generates the error. Example: "pubsub.googleapis.com". If the error is * generated by some common infrastructure, the error domain must be a * globally unique value that identifies the infrastructure. For Google API * infrastructure, the error domain is "googleapis.com". * * Generated from protobuf field <code>string domain = 2;</code> * @param string $var * @return $this */ public function setDomain($var) { GPBUtil::checkString($var, True); $this->domain = $var; return $this; } /** * Additional structured details about this error. * Keys should match /[a-zA-Z0-9-_]/ and be limited to 64 characters in * length. When identifying the current value of an exceeded limit, the units * should be contained in the key, not the value. For example, rather than * {"instanceLimit": "100/request"}, should be returned as, * {"instanceLimitPerRequest": "100"}, if the client exceeds the number of * instances that can be created in a single (batch) request. * * Generated from protobuf field <code>map<string, string> metadata = 3;</code> * @return \Google\Protobuf\Internal\MapField */ public function getMetadata() { return $this->metadata; } /** * Additional structured details about this error. * Keys should match /[a-zA-Z0-9-_]/ and be limited to 64 characters in * length. When identifying the current value of an exceeded limit, the units * should be contained in the key, not the value. For example, rather than * {"instanceLimit": "100/request"}, should be returned as, * {"instanceLimitPerRequest": "100"}, if the client exceeds the number of * instances that can be created in a single (batch) request. * * Generated from protobuf field <code>map<string, string> metadata = 3;</code> * @param array|\Google\Protobuf\Internal\MapField $var * @return $this */ public function setMetadata($var) { $arr = GPBUtil::checkMapField($var, \Google\Protobuf\Internal\GPBType::STRING, \Google\Protobuf\Internal\GPBType::STRING); $this->metadata = $arr; return $this; } }