update lock clucknut
All checks were successful
All checks were successful
This commit is contained in:
2
vendor/google/auth/VERSION
vendored
2
vendor/google/auth/VERSION
vendored
@@ -1 +1 @@
|
||||
1.50.0
|
||||
1.50.1
|
||||
|
||||
2
vendor/google/auth/composer.json
vendored
2
vendor/google/auth/composer.json
vendored
@@ -15,7 +15,7 @@
|
||||
"guzzlehttp/psr7": "^2.4.5",
|
||||
"psr/http-message": "^1.1||^2.0",
|
||||
"psr/cache": "^2.0||^3.0",
|
||||
"psr/log": "^3.0"
|
||||
"psr/log": "^2.0||^3.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"guzzlehttp/promises": "^2.0",
|
||||
|
||||
@@ -72,6 +72,11 @@ class ImpersonatedServiceAccountCredentials extends CredentialsLoader implements
|
||||
|
||||
private int $lifetime;
|
||||
|
||||
/**
|
||||
* @var array<mixed>|null
|
||||
*/
|
||||
protected array|null $lastReceivedToken = null;
|
||||
|
||||
/**
|
||||
* Instantiate an instance of ImpersonatedServiceAccountCredentials from a credentials file that
|
||||
* has be created with the --impersonate-service-account flag.
|
||||
@@ -252,7 +257,7 @@ public function fetchAuthToken(?callable $httpHandler = null)
|
||||
$response = $httpHandler($request);
|
||||
$body = json_decode((string) $response->getBody(), true);
|
||||
|
||||
return match ($this->isIdTokenRequest()) {
|
||||
return $this->lastReceivedToken = match ($this->isIdTokenRequest()) {
|
||||
true => ['id_token' => $body['token']],
|
||||
false => [
|
||||
'access_token' => $body['accessToken'],
|
||||
@@ -279,7 +284,7 @@ public function getCacheKey()
|
||||
*/
|
||||
public function getLastReceivedToken()
|
||||
{
|
||||
return $this->sourceCredentials->getLastReceivedToken();
|
||||
return $this->lastReceivedToken;
|
||||
}
|
||||
|
||||
protected function getCredType(): string
|
||||
|
||||
2
vendor/google/cloud-core/VERSION
vendored
2
vendor/google/cloud-core/VERSION
vendored
@@ -1 +1 @@
|
||||
1.69.0
|
||||
1.72.0
|
||||
|
||||
0
vendor/google/cloud-core/bin/google-cloud-batch
vendored
Normal file → Executable file
0
vendor/google/cloud-core/bin/google-cloud-batch
vendored
Normal file → Executable file
4
vendor/google/cloud-core/composer.json
vendored
4
vendor/google/cloud-core/composer.json
vendored
@@ -19,10 +19,10 @@
|
||||
"phpspec/prophecy-phpunit": "^2.0",
|
||||
"squizlabs/php_codesniffer": "2.*",
|
||||
"phpdocumentor/reflection": "^6.0",
|
||||
"phpdocumentor/reflection-docblock": "^5.3",
|
||||
"phpdocumentor/reflection-docblock": "^5.3.3||^6.0",
|
||||
"erusev/parsedown": "^1.6",
|
||||
"opis/closure": "^3.7|^4.0",
|
||||
"google/cloud-common-protos": "~0.5",
|
||||
"google/cloud-common-protos": "~0.5||^1.0",
|
||||
"nikic/php-parser": "^5.6"
|
||||
},
|
||||
"suggest": {
|
||||
|
||||
14
vendor/google/cloud-core/src/RequestWrapper.php
vendored
14
vendor/google/cloud-core/src/RequestWrapper.php
vendored
@@ -83,6 +83,12 @@ class RequestWrapper
|
||||
*/
|
||||
private $retryFunction;
|
||||
|
||||
/**
|
||||
* @var callable|null Lets the user listen for retries and
|
||||
* modify the next retry arguments
|
||||
*/
|
||||
private $retryListener;
|
||||
|
||||
/**
|
||||
* @var callable Executes a delay.
|
||||
*/
|
||||
@@ -136,6 +142,8 @@ class RequestWrapper
|
||||
* determining how long to wait between attempts to retry. Function
|
||||
* signature should match: `function (int $attempt) : int`.
|
||||
* @type string $universeDomain The expected universe of the credentials. Defaults to "googleapis.com".
|
||||
* @type callable $restRetryListener A function to run custom logic between retries. This function can modify
|
||||
* the next server call arguments for the next retry.
|
||||
* }
|
||||
*/
|
||||
public function __construct(array $config = [])
|
||||
@@ -151,6 +159,7 @@ public function __construct(array $config = [])
|
||||
'componentVersion' => null,
|
||||
'restRetryFunction' => null,
|
||||
'restDelayFunction' => null,
|
||||
'restRetryListener' => null,
|
||||
'restCalcDelayFunction' => null,
|
||||
'universeDomain' => GetUniverseDomainInterface::DEFAULT_UNIVERSE_DOMAIN,
|
||||
];
|
||||
@@ -160,6 +169,7 @@ public function __construct(array $config = [])
|
||||
$this->restOptions = $config['restOptions'];
|
||||
$this->shouldSignRequest = $config['shouldSignRequest'];
|
||||
$this->retryFunction = $config['restRetryFunction'] ?: $this->getRetryFunction();
|
||||
$this->retryListener = $config['restRetryListener'];
|
||||
$this->delayFunction = $config['restDelayFunction'] ?: function ($delay) {
|
||||
usleep($delay);
|
||||
};
|
||||
@@ -362,7 +372,7 @@ private function applyHeaders(RequestInterface $request, array $options = [])
|
||||
*/
|
||||
private function addAuthHeaders(RequestInterface $request, FetchAuthTokenInterface $fetcher)
|
||||
{
|
||||
$backoff = new ExponentialBackoff($this->retries, $this->getRetryFunction());
|
||||
$backoff = new ExponentialBackoff($this->retries, $this->getRetryFunction(), $this->retryListener);
|
||||
|
||||
try {
|
||||
return $backoff->execute(
|
||||
@@ -485,7 +495,7 @@ private function getRetryOptions(array $options)
|
||||
: $this->retryFunction,
|
||||
'retryListener' => isset($options['restRetryListener'])
|
||||
? $options['restRetryListener']
|
||||
: null,
|
||||
: $this->retryListener,
|
||||
'delayFunction' => isset($options['restDelayFunction'])
|
||||
? $options['restDelayFunction']
|
||||
: $this->delayFunction,
|
||||
|
||||
22
vendor/google/cloud-core/src/ServiceBuilder.php
vendored
22
vendor/google/cloud-core/src/ServiceBuilder.php
vendored
@@ -30,7 +30,7 @@
|
||||
use Google\Cloud\Speech\SpeechClient as DeprecatedSpeechClient;
|
||||
use Google\Cloud\Speech\V2\Client\SpeechClient;
|
||||
use Google\Cloud\Storage\StorageClient;
|
||||
use Google\Cloud\Trace\TraceClient;
|
||||
use Google\Cloud\Trace\V2\Client\TraceServiceClient;
|
||||
use Google\Cloud\Translate\V2\TranslateClient as DeprecatedTranslateClient;
|
||||
use Google\Cloud\Translate\V3\Client\TranslationServiceClient;
|
||||
use Google\Cloud\Vision\V1\Client\ImageAnnotatorClient;
|
||||
@@ -311,22 +311,16 @@ public function storage(array $config = [])
|
||||
}
|
||||
|
||||
/**
|
||||
* Google Stackdriver Trace allows you to collect latency data from your applications
|
||||
* and display it in the Google Cloud Platform Console. Find more information at
|
||||
* [Stackdriver Trace API docs](https://cloud.google.com/trace/docs/).
|
||||
*
|
||||
* Example:
|
||||
* ```
|
||||
* $trace = $cloud->trace();
|
||||
* ```
|
||||
*
|
||||
* @param array $config [optional] Configuration options. See
|
||||
* {@see \Google\Cloud\Core\ServiceBuilder::__construct()} for the available options.
|
||||
* @return TraceClient
|
||||
* @deprecated
|
||||
* @see TraceServiceClient
|
||||
* @throws \BadMethodCallException
|
||||
*/
|
||||
public function trace(array $config = [])
|
||||
{
|
||||
return $this->createClient(TraceClient::class, 'trace', $config);
|
||||
throw new \BadMethodCallException(sprintf(
|
||||
'This method is no longer supported, create %s directly instead.',
|
||||
TraceServiceClient::class
|
||||
));
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -126,8 +126,9 @@ private function lex(string $contents): array
|
||||
|
||||
return Utils::pregSplit(
|
||||
'/\{
|
||||
# "{@}" is not a valid inline tag. This ensures that we do not treat it as one, but treat it literally.
|
||||
(?!@\})
|
||||
# "{@}" and "{@*}" are not a valid inline tags. This ensures that we do not treat them as one, but treat
|
||||
# them literally.
|
||||
(?!(?:@\}|@\*\}) )
|
||||
# We want to capture the whole tag line, but without the inline tag delimiters.
|
||||
(\@
|
||||
# Match everything up to the next delimiter.
|
||||
|
||||
@@ -35,8 +35,6 @@ trait StubTrait
|
||||
public function ___getProperty($prop)
|
||||
{
|
||||
$property = $this->___getPropertyReflector($prop);
|
||||
|
||||
$property->setAccessible(true);
|
||||
return $property->getValue($this);
|
||||
}
|
||||
|
||||
@@ -54,8 +52,6 @@ public function ___setProperty($prop, $value)
|
||||
}
|
||||
|
||||
$property = $this->___getPropertyReflector($prop);
|
||||
|
||||
$property->setAccessible(true);
|
||||
$property->setValue($this, $value);
|
||||
}
|
||||
|
||||
|
||||
@@ -98,6 +98,9 @@ private function prepareRequest()
|
||||
$headers['Content-Length'] = $size;
|
||||
}
|
||||
|
||||
$customHeaders = $this->requestOptions['restOptions']['headers'] ?? [];
|
||||
$headers = array_merge($headers, $customHeaders);
|
||||
|
||||
return new Request(
|
||||
'POST',
|
||||
$this->uri,
|
||||
|
||||
@@ -170,6 +170,16 @@ public function upload()
|
||||
'Content-Range' => "bytes $rangeStart-$rangeEnd/$size",
|
||||
];
|
||||
|
||||
$customHeaders = $this->requestOptions['restOptions']['headers'] ?? [];
|
||||
|
||||
// Check if this chunk is the final one
|
||||
$isFinalChunk = ($size !== '*' && (int) ($rangeEnd + 1) === (int) $size);
|
||||
if (!$isFinalChunk) {
|
||||
unset($customHeaders['X-Goog-Hash']);
|
||||
}
|
||||
|
||||
$headers = array_merge($headers, $customHeaders);
|
||||
|
||||
$request = new Request(
|
||||
'PUT',
|
||||
$resumeUri,
|
||||
|
||||
@@ -43,10 +43,12 @@ public function upload($writeSize = null)
|
||||
return [];
|
||||
}
|
||||
|
||||
$isFinalRequest = ($writeSize === null);
|
||||
|
||||
// find or create the resumeUri
|
||||
$resumeUri = $this->getResumeUri();
|
||||
|
||||
if ($writeSize) {
|
||||
if ($writeSize !== null) {
|
||||
$rangeEnd = $this->rangeStart + $writeSize - 1;
|
||||
$data = $this->data->read($writeSize);
|
||||
} else {
|
||||
@@ -62,6 +64,14 @@ public function upload($writeSize = null)
|
||||
'Content-Range' => "bytes {$this->rangeStart}-$rangeEnd/*"
|
||||
];
|
||||
|
||||
$customHeaders = $this->requestOptions['restOptions']['headers'] ?? [];
|
||||
|
||||
// Only include X-Goog-Hash if this is the final request
|
||||
if (!$isFinalRequest) {
|
||||
unset($customHeaders['X-Goog-Hash']);
|
||||
}
|
||||
$headers = array_merge($headers, $customHeaders);
|
||||
|
||||
$request = new Request(
|
||||
'PUT',
|
||||
$resumeUri,
|
||||
|
||||
2
vendor/google/cloud-storage/VERSION
vendored
2
vendor/google/cloud-storage/VERSION
vendored
@@ -1 +1 @@
|
||||
1.49.0
|
||||
1.51.0
|
||||
|
||||
9
vendor/google/cloud-storage/composer.json
vendored
9
vendor/google/cloud-storage/composer.json
vendored
@@ -5,18 +5,19 @@
|
||||
"minimum-stability": "stable",
|
||||
"require": {
|
||||
"php": "^8.1",
|
||||
"google/cloud-core": "^1.57",
|
||||
"google/cloud-core": "^1.72.0",
|
||||
"ramsey/uuid": "^4.2.3"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^9.0",
|
||||
"phpspec/prophecy-phpunit": "^2.0",
|
||||
"squizlabs/php_codesniffer": "2.*",
|
||||
"phpdocumentor/reflection": "^5.3.3||^6.0",
|
||||
"phpdocumentor/reflection-docblock": "^5.3",
|
||||
"phpdocumentor/reflection": "^6.0",
|
||||
"phpdocumentor/reflection-docblock": "^5.3.3",
|
||||
"erusev/parsedown": "^1.6",
|
||||
"phpseclib/phpseclib": "^2.0||^3.0",
|
||||
"google/cloud-pubsub": "^2.0"
|
||||
"google/cloud-pubsub": "^2.0",
|
||||
"nikic/php-parser": "^5"
|
||||
},
|
||||
"suggest": {
|
||||
"phpseclib/phpseclib": "May be used in place of OpenSSL for creating signed Cloud Storage URLs. Please require version ^2.",
|
||||
|
||||
11
vendor/google/cloud-storage/src/Bucket.php
vendored
11
vendor/google/cloud-storage/src/Bucket.php
vendored
@@ -1029,6 +1029,17 @@ public function delete(array $options = [])
|
||||
* `projects/my-project/locations/kr-location/keyRings/my-kr/cryptoKeys/my-key`.
|
||||
* Please note the KMS key ring must use the same location as the
|
||||
* bucket.
|
||||
* @type array $encryption.googleManagedEncryptionEnforcementConfig
|
||||
* Enforcement configuration for Google-managed encryption.
|
||||
* @type array $encryption.customerManagedEncryptionEnforcementConfig
|
||||
* Enforcement configuration for Cloud KMS (customer-managed) encryption.
|
||||
* @type array $encryption.customerSuppliedEncryptionEnforcementConfig
|
||||
* Enforcement configuration for customer-supplied encryption keys (CSEK).
|
||||
* @type string $encryption.*.restrictionMode The restriction state of
|
||||
* the encryption policy. Acceptable values are `"NotRestricted"`
|
||||
* and `"FullyRestricted"`.
|
||||
* @type string $encryption.*.effectiveTime [readonly] The time from which
|
||||
* the policy was effective in RFC 3339 format.
|
||||
* @type bool $defaultEventBasedHold When `true`, newly created objects
|
||||
* in this bucket will be retained indefinitely until an event
|
||||
* occurs, signified by the hold's release.
|
||||
|
||||
@@ -500,10 +500,23 @@ private function resolveUploadOptions(array $args)
|
||||
}
|
||||
|
||||
$validate = $this->chooseValidationMethod($args);
|
||||
if ($validate === 'md5') {
|
||||
$args['metadata']['md5Hash'] = base64_encode(Utils::hash($args['data'], 'md5', true));
|
||||
} elseif ($validate === 'crc32') {
|
||||
$args['metadata']['crc32c'] = $this->crcFromStream($args['data']);
|
||||
$xGoogHashHeader = '';
|
||||
if ($validate !== false) {
|
||||
$md5Hash = base64_encode(Utils::hash($args['data'], 'md5', true));
|
||||
$crc32c = $this->crcFromStream($args['data']);
|
||||
|
||||
// Add validation metadata
|
||||
if ($validate === 'md5') {
|
||||
$args['metadata']['md5Hash'] = $md5Hash;
|
||||
} elseif ($validate === 'crc32') {
|
||||
$args['metadata']['crc32c'] = $crc32c;
|
||||
}
|
||||
|
||||
// Prepare the X-Goog-Hash header string
|
||||
$xGoogHashHeader = implode(',', array_filter([
|
||||
$md5Hash ? 'md5=' . $md5Hash : null,
|
||||
$crc32c ? 'crc32c=' . $crc32c : null,
|
||||
]));
|
||||
}
|
||||
|
||||
$args['metadata']['name'] = $args['name'];
|
||||
@@ -532,6 +545,19 @@ private function resolveUploadOptions(array $args)
|
||||
$args['uploaderOptions'] = array_intersect_key($args, array_flip($uploaderOptionKeys));
|
||||
$args = array_diff_key($args, array_flip($uploaderOptionKeys));
|
||||
|
||||
// Add the X-Goog-Hash header only if there are hashes to include
|
||||
if (!empty($xGoogHashHeader)) {
|
||||
$args['uploaderOptions']['restOptions']['headers']['X-Goog-Hash'] = $xGoogHashHeader;
|
||||
}
|
||||
|
||||
if (!empty($args['headers'])) {
|
||||
$args['uploaderOptions']['restOptions']['headers'] = array_merge(
|
||||
$args['uploaderOptions']['restOptions']['headers'] ?? [],
|
||||
$args['headers']
|
||||
);
|
||||
}
|
||||
unset($args['headers']);
|
||||
|
||||
// Passing on custom retry function to $args['uploaderOptions']
|
||||
$retryFunc = $this->getRestRetryFunction(
|
||||
'objects',
|
||||
@@ -714,7 +740,10 @@ private function buildDownloadObjectParams(array $args)
|
||||
private function chooseValidationMethod(array $args)
|
||||
{
|
||||
// If the user provided a hash, skip hashing.
|
||||
if (isset($args['metadata']['md5Hash']) || isset($args['metadata']['crc32c'])) {
|
||||
if (isset($args['metadata']['md5Hash'])
|
||||
|| isset($args['metadata']['crc32c'])
|
||||
|| isset($args['headers']['X-Goog-Hash'])
|
||||
) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
@@ -195,6 +195,78 @@
|
||||
"defaultKmsKeyName": {
|
||||
"type": "string",
|
||||
"description": "A Cloud KMS key that will be used to encrypt objects inserted into this bucket, if no encryption method is specified."
|
||||
},
|
||||
"googleManagedEncryptionEnforcementConfig": {
|
||||
"type": "object",
|
||||
"description": "If set, the new objects created in this bucket must comply with this enforcement config. Changing this has no effect on existing objects; it applies to new objects only. If omitted, the new objects are allowed to be encrypted with Google Managed Encryption type by default.",
|
||||
"properties": {
|
||||
"restrictionMode": {
|
||||
"type": "string",
|
||||
"description": "Restriction mode for Google-Managed Encryption Keys. Defaults to NotRestricted.",
|
||||
"enum": [
|
||||
"NotRestricted",
|
||||
"FullyRestricted"
|
||||
],
|
||||
"enumDescriptions": [
|
||||
"Creation of new objects with Google Managed Encryption is not restricted.",
|
||||
"Creation of new objects with Google Managed Encryption is fully restricted."
|
||||
]
|
||||
},
|
||||
"effectiveTime": {
|
||||
"type": "string",
|
||||
"description": "Server-determined value indicating when this configuration became effective. In RFC 3339 format.",
|
||||
"format": "date-time",
|
||||
"readOnly": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"customerManagedEncryptionEnforcementConfig": {
|
||||
"type": "object",
|
||||
"description": "If set, the new objects created in this bucket must comply with this enforcement config. Changing this has no effect on existing objects; it applies to new objects only. If omitted, the new objects are allowed to be encrypted with Customer Managed Encryption type by default.",
|
||||
"properties": {
|
||||
"restrictionMode": {
|
||||
"type": "string",
|
||||
"description": "Restriction mode for Customer-Managed Encryption Keys. Defaults to NotRestricted.",
|
||||
"enum": [
|
||||
"NotRestricted",
|
||||
"FullyRestricted"
|
||||
],
|
||||
"enumDescriptions": [
|
||||
"Creation of new objects with Customer-Managed Encryption is not restricted.",
|
||||
"Creation of new objects with Customer-Managed Encryption is fully restricted."
|
||||
]
|
||||
},
|
||||
"effectiveTime": {
|
||||
"type": "string",
|
||||
"description": "Server-determined value indicating when this configuration became effective. In RFC 3339 format.",
|
||||
"format": "date-time",
|
||||
"readOnly": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"customerSuppliedEncryptionEnforcementConfig": {
|
||||
"type": "object",
|
||||
"description": "If set, the new objects created in this bucket must comply with this enforcement config. Changing this has no effect on existing objects; it applies to new objects only. If omitted, the new objects are allowed to be encrypted with Customer Supplied Encryption type by default.",
|
||||
"properties": {
|
||||
"restrictionMode": {
|
||||
"type": "string",
|
||||
"description": "Restriction mode for Customer-Supplied Encryption Keys. Defaults to NotRestricted.",
|
||||
"enum": [
|
||||
"NotRestricted",
|
||||
"FullyRestricted"
|
||||
],
|
||||
"enumDescriptions": [
|
||||
"Creation of new objects with Customer-Supplied Encryption is not restricted.",
|
||||
"Creation of new objects with Customer-Supplied Encryption is fully restricted."
|
||||
]
|
||||
},
|
||||
"effectiveTime": {
|
||||
"type": "string",
|
||||
"description": "Server-determined value indicating when this configuration became effective. In RFC 3339 format.",
|
||||
"format": "date-time",
|
||||
"readOnly": true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -60,7 +60,13 @@ public function getSize(): ?int
|
||||
*/
|
||||
private function getSizeFromMetadata(): int
|
||||
{
|
||||
foreach ($this->stream->getMetadata('wrapper_data') as $value) {
|
||||
$metadata = $this->stream->getMetadata('wrapper_data');
|
||||
|
||||
if (is_null($metadata)) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
foreach ($metadata as $value) {
|
||||
if (substr($value, 0, 15) == 'Content-Length:') {
|
||||
return (int) substr($value, 16);
|
||||
}
|
||||
|
||||
@@ -47,7 +47,7 @@ class StorageClient
|
||||
use ArrayTrait;
|
||||
use ClientTrait;
|
||||
|
||||
const VERSION = '1.49.0';
|
||||
const VERSION = '1.51.0';
|
||||
|
||||
const FULL_CONTROL_SCOPE = 'https://www.googleapis.com/auth/devstorage.full_control';
|
||||
const READ_ONLY_SCOPE = 'https://www.googleapis.com/auth/devstorage.read_only';
|
||||
@@ -454,6 +454,27 @@ public function restore(string $name, string $generation, array $options = [])
|
||||
* `projects/my-project/locations/kr-location/keyRings/my-kr/cryptoKeys/my-key`.
|
||||
* Please note the KMS key ring must use the same location as the
|
||||
* bucket.
|
||||
* @type array $encryption.googleManagedEncryptionEnforcementConfig
|
||||
* Enforcement configuration for Google-managed encryption.
|
||||
* @type string $encryption.googleManagedEncryptionEnforcementConfig.restrictionMode
|
||||
* The restriction state of the encryption policy. Acceptable values are
|
||||
* `"NotRestricted"` and `"FullyRestricted"`.
|
||||
* @type string $encryption.googleManagedEncryptionEnforcementConfig.effectiveTime
|
||||
* [readonly] The time from which the policy was effective in RFC 3339 format.
|
||||
* @type array $encryption.customerManagedEncryptionEnforcementConfig
|
||||
* Enforcement configuration for Cloud KMS (customer-managed) encryption.
|
||||
* @type string $encryption.customerManagedEncryptionEnforcementConfig.restrictionMode
|
||||
* The restriction state of the encryption policy. Acceptable values are
|
||||
* `"NotRestricted"` and `"FullyRestricted"`.
|
||||
* @type string $encryption.customerManagedEncryptionEnforcementConfig.effectiveTime
|
||||
* [readonly] The time from which the policy was effective in RFC 3339 format.
|
||||
* @type array $encryption.customerSuppliedEncryptionEnforcementConfig
|
||||
* Enforcement configuration for customer-supplied encryption keys (CSEK).
|
||||
* @type string $encryption.customerSuppliedEncryptionEnforcementConfig.restrictionMode
|
||||
* The restriction state of the encryption policy. Acceptable values are
|
||||
* `"NotRestricted"` and `"FullyRestricted"`.
|
||||
* @type string $encryption.customerSuppliedEncryptionEnforcementConfig.effectiveTime
|
||||
* [readonly] The time from which the policy was effective in RFC 3339 format.
|
||||
* @type bool $defaultEventBasedHold When `true`, newly created objects
|
||||
* in this bucket will be retained indefinitely until an event
|
||||
* occurs, signified by the hold's release.
|
||||
|
||||
2
vendor/google/common-protos/VERSION
vendored
2
vendor/google/common-protos/VERSION
vendored
@@ -1 +1 @@
|
||||
4.12.4
|
||||
4.14.0
|
||||
|
||||
4
vendor/google/common-protos/composer.json
vendored
4
vendor/google/common-protos/composer.json
vendored
@@ -2,7 +2,7 @@
|
||||
"name": "google/common-protos",
|
||||
"type": "library",
|
||||
"description": "Google API Common Protos for PHP",
|
||||
"version": "4.12.4",
|
||||
"version": "4.14.0",
|
||||
"keywords": [
|
||||
"google"
|
||||
],
|
||||
@@ -10,7 +10,7 @@
|
||||
"license": "Apache-2.0",
|
||||
"require": {
|
||||
"php": "^8.1",
|
||||
"google/protobuf": "^4.31"
|
||||
"google/protobuf": "^4.31||^5.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^9.6"
|
||||
|
||||
@@ -16,11 +16,7 @@ public static function initOnce() {
|
||||
}
|
||||
\GPBMetadata\Google\Api\Http::initOnce();
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
Ä
|
||||
google/api/annotations.proto
|
||||
google.api google/protobuf/descriptor.protoBn
|
||||
com.google.apiBAnnotationsProtoPZAgoogle.golang.org/genproto/googleapis/api/annotations;annotations¢GAPIbproto3'
|
||||
"\x0A\xC4\x01\x0A\x1Cgoogle/api/annotations.proto\x12\x0Agoogle.api\x1A google/protobuf/descriptor.protoBn\x0A\x0Ecom.google.apiB\x10AnnotationsProtoP\x01ZAgoogle.golang.org/genproto/googleapis/api/annotations;annotations\xA2\x02\x04GAPIb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
BIN
vendor/google/common-protos/metadata/Api/Auth.php
vendored
BIN
vendor/google/common-protos/metadata/Api/Auth.php
vendored
Binary file not shown.
BIN
vendor/google/common-protos/metadata/Api/Backend.php
vendored
BIN
vendor/google/common-protos/metadata/Api/Backend.php
vendored
Binary file not shown.
@@ -15,16 +15,7 @@ public static function initOnce() {
|
||||
return;
|
||||
}
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
´
|
||||
google/api/billing.proto
|
||||
google.api"“
|
||||
BillingE
|
||||
consumer_destinations (2&.google.api.Billing.BillingDestinationA
|
||||
BillingDestination
|
||||
monitored_resource (
|
||||
metrics ( Bn
|
||||
com.google.apiBBillingProtoPZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig¢GAPIbproto3'
|
||||
"\x0A\xB4\x02\x0A\x18google/api/billing.proto\x12\x0Agoogle.api\"\x93\x01\x0A\x07Billing\x12E\x0A\x15consumer_destinations\x18\x08 \x03(\x0B2&.google.api.Billing.BillingDestination\x1AA\x0A\x12BillingDestination\x12\x1A\x0A\x12monitored_resource\x18\x01 \x01(\x09\x12\x0F\x0A\x07metrics\x18\x02 \x03(\x09Bn\x0A\x0Ecom.google.apiB\x0CBillingProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\xA2\x02\x04GAPIb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
BIN
vendor/google/common-protos/metadata/Api/Client.php
vendored
BIN
vendor/google/common-protos/metadata/Api/Client.php
vendored
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -15,19 +15,7 @@ public static function initOnce() {
|
||||
return;
|
||||
}
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
á
|
||||
google/api/context.proto
|
||||
google.api"1
|
||||
Context&
|
||||
rules (2.google.api.ContextRule"<EFBFBD>
|
||||
ContextRule
|
||||
selector (
|
||||
requested (
|
||||
provided ( "
|
||||
allowed_request_extensions ( #
|
||||
allowed_response_extensions ( Bn
|
||||
com.google.apiBContextProtoPZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig¢GAPIbproto3'
|
||||
"\x0A\xE1\x02\x0A\x18google/api/context.proto\x12\x0Agoogle.api\"1\x0A\x07Context\x12&\x0A\x05rules\x18\x01 \x03(\x0B2\x17.google.api.ContextRule\"\x8D\x01\x0A\x0BContextRule\x12\x10\x0A\x08selector\x18\x01 \x01(\x09\x12\x11\x0A\x09requested\x18\x02 \x03(\x09\x12\x10\x0A\x08provided\x18\x03 \x03(\x09\x12\"\x0A\x1Aallowed_request_extensions\x18\x04 \x03(\x09\x12#\x0A\x1Ballowed_response_extensions\x18\x05 \x03(\x09Bn\x0A\x0Ecom.google.apiB\x0CContextProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\xA2\x02\x04GAPIb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
@@ -16,14 +16,7 @@ public static function initOnce() {
|
||||
}
|
||||
\GPBMetadata\Google\Api\Policy::initOnce();
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
ñ
|
||||
google/api/control.proto
|
||||
google.api"Q
|
||||
Control
|
||||
environment ( 1
|
||||
method_policies (2.google.api.MethodPolicyBn
|
||||
com.google.apiBControlProtoPZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig¢GAPIbproto3'
|
||||
"\x0A\xF1\x01\x0A\x18google/api/control.proto\x12\x0Agoogle.api\"Q\x0A\x07Control\x12\x13\x0A\x0Benvironment\x18\x01 \x01(\x09\x121\x0A\x0Fmethod_policies\x18\x04 \x03(\x0B2\x18.google.api.MethodPolicyBn\x0A\x0Ecom.google.apiB\x0CControlProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\xA2\x02\x04GAPIb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
Binary file not shown.
@@ -15,26 +15,7 @@ public static function initOnce() {
|
||||
return;
|
||||
}
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
<EFBFBD>
|
||||
google/api/documentation.proto
|
||||
google.api"»
|
||||
Documentation
|
||||
summary (
|
||||
pages (2.google.api.Page,
|
||||
rules (2.google.api.DocumentationRule
|
||||
documentation_root_url (
|
||||
service_root_url (
|
||||
overview ( "[
|
||||
DocumentationRule
|
||||
selector (
|
||||
description (
|
||||
deprecation_description ( "I
|
||||
Page
|
||||
name (
|
||||
content ( "
|
||||
subpages (2.google.api.PageBt
|
||||
com.google.apiBDocumentationProtoPZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig¢GAPIbproto3'
|
||||
"\x0A\x90\x04\x0A\x1Egoogle/api/documentation.proto\x12\x0Agoogle.api\"\xBB\x01\x0A\x0DDocumentation\x12\x0F\x0A\x07summary\x18\x01 \x01(\x09\x12\x1F\x0A\x05pages\x18\x05 \x03(\x0B2\x10.google.api.Page\x12,\x0A\x05rules\x18\x03 \x03(\x0B2\x1D.google.api.DocumentationRule\x12\x1E\x0A\x16documentation_root_url\x18\x04 \x01(\x09\x12\x18\x0A\x10service_root_url\x18\x06 \x01(\x09\x12\x10\x0A\x08overview\x18\x02 \x01(\x09\"[\x0A\x11DocumentationRule\x12\x10\x0A\x08selector\x18\x01 \x01(\x09\x12\x13\x0A\x0Bdescription\x18\x02 \x01(\x09\x12\x1F\x0A\x17deprecation_description\x18\x03 \x01(\x09\"I\x0A\x04Page\x12\x0C\x0A\x04name\x18\x01 \x01(\x09\x12\x0F\x0A\x07content\x18\x02 \x01(\x09\x12\"\x0A\x08subpages\x18\x03 \x03(\x0B2\x10.google.api.PageBt\x0A\x0Ecom.google.apiB\x12DocumentationProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\xA2\x02\x04GAPIb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
@@ -15,17 +15,7 @@ public static function initOnce() {
|
||||
return;
|
||||
}
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
ï
|
||||
google/api/endpoint.proto
|
||||
google.api"M
|
||||
Endpoint
|
||||
name (
|
||||
aliases (
|
||||
targete (
|
||||
|
||||
allow_cors (Bo
|
||||
com.google.apiB
EndpointProtoPZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig¢GAPIbproto3'
|
||||
"\x0A\xEF\x01\x0A\x19google/api/endpoint.proto\x12\x0Agoogle.api\"M\x0A\x08Endpoint\x12\x0C\x0A\x04name\x18\x01 \x01(\x09\x12\x0F\x0A\x07aliases\x18\x02 \x03(\x09\x12\x0E\x0A\x06target\x18e \x01(\x09\x12\x12\x0A\x0Aallow_cors\x18\x05 \x01(\x08Bo\x0A\x0Ecom.google.apiB\x0DEndpointProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\xA2\x02\x04GAPIb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
vendor/google/common-protos/metadata/Api/Http.php
vendored
BIN
vendor/google/common-protos/metadata/Api/Http.php
vendored
Binary file not shown.
@@ -16,16 +16,7 @@ public static function initOnce() {
|
||||
}
|
||||
\GPBMetadata\Google\Protobuf\Any::initOnce();
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
ð
|
||||
google/api/httpbody.proto
|
||||
google.api"X
|
||||
HttpBody
|
||||
content_type (
|
||||
data ((
|
||||
|
||||
extensions (2.google.protobuf.AnyBe
|
||||
com.google.apiB
HttpBodyProtoPZ;google.golang.org/genproto/googleapis/api/httpbody;httpbody¢GAPIbproto3'
|
||||
"\x0A\xF0\x01\x0A\x19google/api/httpbody.proto\x12\x0Agoogle.api\"X\x0A\x08HttpBody\x12\x14\x0A\x0Ccontent_type\x18\x01 \x01(\x09\x12\x0C\x0A\x04data\x18\x02 \x01(\x0C\x12(\x0A\x0Aextensions\x18\x03 \x03(\x0B2\x14.google.protobuf.AnyBe\x0A\x0Ecom.google.apiB\x0DHttpBodyProtoP\x01Z;google.golang.org/genproto/googleapis/api/httpbody;httpbody\xA2\x02\x04GAPIb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
BIN
vendor/google/common-protos/metadata/Api/Label.php
vendored
BIN
vendor/google/common-protos/metadata/Api/Label.php
vendored
Binary file not shown.
Binary file not shown.
11
vendor/google/common-protos/metadata/Api/Log.php
vendored
11
vendor/google/common-protos/metadata/Api/Log.php
vendored
@@ -16,16 +16,7 @@ public static function initOnce() {
|
||||
}
|
||||
\GPBMetadata\Google\Api\Label::initOnce();
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
<EFBFBD>
|
||||
google/api/log.proto
|
||||
google.api"u
|
||||
LogDescriptor
|
||||
name ( +
|
||||
labels (2.google.api.LabelDescriptor
|
||||
description (
|
||||
display_name ( Bj
|
||||
com.google.apiBLogProtoPZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig¢GAPIbproto3'
|
||||
"\x0A\x8D\x02\x0A\x14google/api/log.proto\x12\x0Agoogle.api\"u\x0A\x0DLogDescriptor\x12\x0C\x0A\x04name\x18\x01 \x01(\x09\x12+\x0A\x06labels\x18\x02 \x03(\x0B2\x1B.google.api.LabelDescriptor\x12\x13\x0A\x0Bdescription\x18\x03 \x01(\x09\x12\x14\x0A\x0Cdisplay_name\x18\x04 \x01(\x09Bj\x0A\x0Ecom.google.apiB\x08LogProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\xA2\x02\x04GAPIb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
@@ -15,17 +15,7 @@ public static function initOnce() {
|
||||
return;
|
||||
}
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
ø
|
||||
google/api/logging.proto
|
||||
google.api"×
|
||||
LoggingE
|
||||
producer_destinations (2&.google.api.Logging.LoggingDestinationE
|
||||
consumer_destinations (2&.google.api.Logging.LoggingDestination>
|
||||
LoggingDestination
|
||||
monitored_resource (
|
||||
logs ( Bn
|
||||
com.google.apiBLoggingProtoPZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig¢GAPIbproto3'
|
||||
"\x0A\xF8\x02\x0A\x18google/api/logging.proto\x12\x0Agoogle.api\"\xD7\x01\x0A\x07Logging\x12E\x0A\x15producer_destinations\x18\x01 \x03(\x0B2&.google.api.Logging.LoggingDestination\x12E\x0A\x15consumer_destinations\x18\x02 \x03(\x0B2&.google.api.Logging.LoggingDestination\x1A>\x0A\x12LoggingDestination\x12\x1A\x0A\x12monitored_resource\x18\x03 \x01(\x09\x12\x0C\x0A\x04logs\x18\x01 \x03(\x09Bn\x0A\x0Ecom.google.apiB\x0CLoggingProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\xA2\x02\x04GAPIb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
BIN
vendor/google/common-protos/metadata/Api/Metric.php
vendored
BIN
vendor/google/common-protos/metadata/Api/Metric.php
vendored
Binary file not shown.
@@ -18,30 +18,7 @@ public static function initOnce() {
|
||||
\GPBMetadata\Google\Api\LaunchStage::initOnce();
|
||||
\GPBMetadata\Google\Protobuf\Struct::initOnce();
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
Œ
|
||||
#google/api/monitored_resource.proto
|
||||
google.apigoogle/api/launch_stage.protogoogle/protobuf/struct.proto"À
|
||||
MonitoredResourceDescriptor
|
||||
name (
|
||||
type (
|
||||
display_name (
|
||||
description ( +
|
||||
labels (2.google.api.LabelDescriptor-
|
||||
launch_stage (2.google.api.LaunchStage"‹
|
||||
MonitoredResource
|
||||
type ( 9
|
||||
labels (2).google.api.MonitoredResource.LabelsEntry-
|
||||
LabelsEntry
|
||||
key (
|
||||
value ( :8"Ê
|
||||
MonitoredResourceMetadata.
|
||||
system_labels (2.google.protobuf.StructJ
|
||||
user_labels (25.google.api.MonitoredResourceMetadata.UserLabelsEntry1
|
||||
UserLabelsEntry
|
||||
key (
|
||||
value ( :8Bv
|
||||
com.google.apiBMonitoredResourceProtoPZCgoogle.golang.org/genproto/googleapis/api/monitoredres;monitoredres¢GAPIbproto3'
|
||||
"\x0A\x8C\x06\x0A#google/api/monitored_resource.proto\x12\x0Agoogle.api\x1A\x1Dgoogle/api/launch_stage.proto\x1A\x1Cgoogle/protobuf/struct.proto\"\xC0\x01\x0A\x1BMonitoredResourceDescriptor\x12\x0C\x0A\x04name\x18\x05 \x01(\x09\x12\x0C\x0A\x04type\x18\x01 \x01(\x09\x12\x14\x0A\x0Cdisplay_name\x18\x02 \x01(\x09\x12\x13\x0A\x0Bdescription\x18\x03 \x01(\x09\x12+\x0A\x06labels\x18\x04 \x03(\x0B2\x1B.google.api.LabelDescriptor\x12-\x0A\x0Claunch_stage\x18\x07 \x01(\x0E2\x17.google.api.LaunchStage\"\x8B\x01\x0A\x11MonitoredResource\x12\x0C\x0A\x04type\x18\x01 \x01(\x09\x129\x0A\x06labels\x18\x02 \x03(\x0B2).google.api.MonitoredResource.LabelsEntry\x1A-\x0A\x0BLabelsEntry\x12\x0B\x0A\x03key\x18\x01 \x01(\x09\x12\x0D\x0A\x05value\x18\x02 \x01(\x09:\x028\x01\"\xCA\x01\x0A\x19MonitoredResourceMetadata\x12.\x0A\x0Dsystem_labels\x18\x01 \x01(\x0B2\x17.google.protobuf.Struct\x12J\x0A\x0Buser_labels\x18\x02 \x03(\x0B25.google.api.MonitoredResourceMetadata.UserLabelsEntry\x1A1\x0A\x0FUserLabelsEntry\x12\x0B\x0A\x03key\x18\x01 \x01(\x09\x12\x0D\x0A\x05value\x18\x02 \x01(\x09:\x028\x01Bv\x0A\x0Ecom.google.apiB\x16MonitoredResourceProtoP\x01ZCgoogle.golang.org/genproto/googleapis/api/monitoredres;monitoredres\xA2\x02\x04GAPIb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
@@ -15,18 +15,7 @@ public static function initOnce() {
|
||||
return;
|
||||
}
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
“
|
||||
google/api/monitoring.proto
|
||||
google.api"ì
|
||||
|
||||
MonitoringK
|
||||
producer_destinations (2,.google.api.Monitoring.MonitoringDestinationK
|
||||
consumer_destinations (2,.google.api.Monitoring.MonitoringDestinationD
|
||||
MonitoringDestination
|
||||
monitored_resource (
|
||||
metrics ( Bq
|
||||
com.google.apiBMonitoringProtoPZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig¢GAPIbproto3'
|
||||
"\x0A\x93\x03\x0A\x1Bgoogle/api/monitoring.proto\x12\x0Agoogle.api\"\xEC\x01\x0A\x0AMonitoring\x12K\x0A\x15producer_destinations\x18\x01 \x03(\x0B2,.google.api.Monitoring.MonitoringDestination\x12K\x0A\x15consumer_destinations\x18\x02 \x03(\x0B2,.google.api.Monitoring.MonitoringDestination\x1AD\x0A\x15MonitoringDestination\x12\x1A\x0A\x12monitored_resource\x18\x01 \x01(\x09\x12\x0F\x0A\x07metrics\x18\x02 \x03(\x09Bq\x0A\x0Ecom.google.apiB\x0FMonitoringProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\xA2\x02\x04GAPIb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
@@ -15,18 +15,7 @@ public static function initOnce() {
|
||||
return;
|
||||
}
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
è
|
||||
google/api/policy.proto
|
||||
google.api google/protobuf/descriptor.proto"S
|
||||
FieldPolicy
|
||||
selector (
|
||||
resource_permission (
|
||||
resource_type ( "S
|
||||
MethodPolicy
|
||||
selector ( 1
|
||||
request_policies (2.google.api.FieldPolicyBm
|
||||
com.google.apiBPolicyProtoPZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig¢GAPIbproto3'
|
||||
"\x0A\xE8\x02\x0A\x17google/api/policy.proto\x12\x0Agoogle.api\x1A google/protobuf/descriptor.proto\"S\x0A\x0BFieldPolicy\x12\x10\x0A\x08selector\x18\x01 \x01(\x09\x12\x1B\x0A\x13resource_permission\x18\x02 \x01(\x09\x12\x15\x0A\x0Dresource_type\x18\x03 \x01(\x09\"S\x0A\x0CMethodPolicy\x12\x10\x0A\x08selector\x18\x09 \x01(\x09\x121\x0A\x10request_policies\x18\x02 \x03(\x0B2\x17.google.api.FieldPolicyBm\x0A\x0Ecom.google.apiB\x0BPolicyProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\xA2\x02\x04GAPIb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
@@ -15,38 +15,7 @@ public static function initOnce() {
|
||||
return;
|
||||
}
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
¥
|
||||
google/api/quota.proto
|
||||
google.api"]
|
||||
Quota&
|
||||
limits (2.google.api.QuotaLimit,
|
||||
metric_rules (2.google.api.MetricRule"‘
|
||||
|
||||
MetricRule
|
||||
selector ( =
|
||||
metric_costs (2\'.google.api.MetricRule.MetricCostsEntry2
|
||||
MetricCostsEntry
|
||||
key (
|
||||
value (:8"•
|
||||
|
||||
QuotaLimit
|
||||
name (
|
||||
description (
|
||||
default_limit (
|
||||
max_limit (
|
||||
free_tier (
|
||||
duration (
|
||||
metric (
|
||||
unit ( 2
|
||||
values
|
||||
(2".google.api.QuotaLimit.ValuesEntry
|
||||
display_name ( -
|
||||
ValuesEntry
|
||||
key (
|
||||
value (:8Bl
|
||||
com.google.apiB
|
||||
QuotaProtoPZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig¢GAPIbproto3'
|
||||
"\x0A\xA5\x05\x0A\x16google/api/quota.proto\x12\x0Agoogle.api\"]\x0A\x05Quota\x12&\x0A\x06limits\x18\x03 \x03(\x0B2\x16.google.api.QuotaLimit\x12,\x0A\x0Cmetric_rules\x18\x04 \x03(\x0B2\x16.google.api.MetricRule\"\x91\x01\x0A\x0AMetricRule\x12\x10\x0A\x08selector\x18\x01 \x01(\x09\x12=\x0A\x0Cmetric_costs\x18\x02 \x03(\x0B2'.google.api.MetricRule.MetricCostsEntry\x1A2\x0A\x10MetricCostsEntry\x12\x0B\x0A\x03key\x18\x01 \x01(\x09\x12\x0D\x0A\x05value\x18\x02 \x01(\x03:\x028\x01\"\x95\x02\x0A\x0AQuotaLimit\x12\x0C\x0A\x04name\x18\x06 \x01(\x09\x12\x13\x0A\x0Bdescription\x18\x02 \x01(\x09\x12\x15\x0A\x0Ddefault_limit\x18\x03 \x01(\x03\x12\x11\x0A\x09max_limit\x18\x04 \x01(\x03\x12\x11\x0A\x09free_tier\x18\x07 \x01(\x03\x12\x10\x0A\x08duration\x18\x05 \x01(\x09\x12\x0E\x0A\x06metric\x18\x08 \x01(\x09\x12\x0C\x0A\x04unit\x18\x09 \x01(\x09\x122\x0A\x06values\x18\x0A \x03(\x0B2\".google.api.QuotaLimit.ValuesEntry\x12\x14\x0A\x0Cdisplay_name\x18\x0C \x01(\x09\x1A-\x0A\x0BValuesEntry\x12\x0B\x0A\x03key\x18\x01 \x01(\x09\x12\x0D\x0A\x05value\x18\x02 \x01(\x03:\x028\x01Bl\x0A\x0Ecom.google.apiB\x0AQuotaProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\xA2\x02\x04GAPIb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
Binary file not shown.
@@ -15,16 +15,7 @@ public static function initOnce() {
|
||||
return;
|
||||
}
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
¿
|
||||
google/api/routing.proto
|
||||
google.api google/protobuf/descriptor.proto"G
|
||||
RoutingRule8
|
||||
routing_parameters (2.google.api.RoutingParameter"8
|
||||
RoutingParameter
|
||||
field (
|
||||
path_template ( Bj
|
||||
com.google.apiBRoutingProtoPZAgoogle.golang.org/genproto/googleapis/api/annotations;annotations¢GAPIbproto3'
|
||||
"\x0A\xBF\x02\x0A\x18google/api/routing.proto\x12\x0Agoogle.api\x1A google/protobuf/descriptor.proto\"G\x0A\x0BRoutingRule\x128\x0A\x12routing_parameters\x18\x02 \x03(\x0B2\x1C.google.api.RoutingParameter\"8\x0A\x10RoutingParameter\x12\x0D\x0A\x05field\x18\x01 \x01(\x09\x12\x15\x0A\x0Dpath_template\x18\x02 \x01(\x09Bj\x0A\x0Ecom.google.apiB\x0CRoutingProtoP\x01ZAgoogle.golang.org/genproto/googleapis/api/annotations;annotations\xA2\x02\x04GAPIb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
@@ -36,42 +36,7 @@ public static function initOnce() {
|
||||
\GPBMetadata\Google\Protobuf\Type::initOnce();
|
||||
\GPBMetadata\Google\Protobuf\Wrappers::initOnce();
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
É
|
||||
google/api/service.proto
|
||||
google.apigoogle/api/backend.protogoogle/api/billing.protogoogle/api/client.protogoogle/api/context.protogoogle/api/control.protogoogle/api/documentation.protogoogle/api/endpoint.protogoogle/api/http.protogoogle/api/log.protogoogle/api/logging.protogoogle/api/metric.proto#google/api/monitored_resource.protogoogle/api/monitoring.protogoogle/api/quota.protogoogle/api/source_info.proto!google/api/system_parameter.protogoogle/api/usage.protogoogle/protobuf/api.protogoogle/protobuf/type.protogoogle/protobuf/wrappers.proto"‚
|
||||
Service
|
||||
name (
|
||||
title (
|
||||
producer_project_id (
|
||||
|
||||
id! ( "
|
||||
apis (2.google.protobuf.Api$
|
||||
types (2.google.protobuf.Type$
|
||||
enums (2.google.protobuf.Enum0
|
||||
documentation (2.google.api.Documentation$
|
||||
backend (2.google.api.Backend
|
||||
http (2.google.api.Http
|
||||
quota
|
||||
(2.google.api.Quota2
|
||||
authentication (2.google.api.Authentication$
|
||||
context (2.google.api.Context
|
||||
usage (2.google.api.Usage\'
|
||||
endpoints (2.google.api.Endpoint$
|
||||
control (2.google.api.Control\'
|
||||
logs (2.google.api.LogDescriptor-
|
||||
metrics (2.google.api.MetricDescriptorD
|
||||
monitored_resources (2\'.google.api.MonitoredResourceDescriptor$
|
||||
billing (2.google.api.Billing$
|
||||
logging (2.google.api.Logging*
|
||||
|
||||
monitoring (2.google.api.Monitoring7
|
||||
system_parameters (2.google.api.SystemParameters+
|
||||
source_info% (2.google.api.SourceInfo*
|
||||
|
||||
publishing- (2.google.api.Publishing4
|
||||
config_version (2.google.protobuf.UInt32ValueBn
|
||||
com.google.apiBServiceProtoPZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig¢GAPIbproto3'
|
||||
"\x0A\xC9\x0D\x0A\x18google/api/service.proto\x12\x0Agoogle.api\x1A\x18google/api/backend.proto\x1A\x18google/api/billing.proto\x1A\x17google/api/client.proto\x1A\x18google/api/context.proto\x1A\x18google/api/control.proto\x1A\x1Egoogle/api/documentation.proto\x1A\x19google/api/endpoint.proto\x1A\x15google/api/http.proto\x1A\x14google/api/log.proto\x1A\x18google/api/logging.proto\x1A\x17google/api/metric.proto\x1A#google/api/monitored_resource.proto\x1A\x1Bgoogle/api/monitoring.proto\x1A\x16google/api/quota.proto\x1A\x1Cgoogle/api/source_info.proto\x1A!google/api/system_parameter.proto\x1A\x16google/api/usage.proto\x1A\x19google/protobuf/api.proto\x1A\x1Agoogle/protobuf/type.proto\x1A\x1Egoogle/protobuf/wrappers.proto\"\x82\x08\x0A\x07Service\x12\x0C\x0A\x04name\x18\x01 \x01(\x09\x12\x0D\x0A\x05title\x18\x02 \x01(\x09\x12\x1B\x0A\x13producer_project_id\x18\x16 \x01(\x09\x12\x0A\x0A\x02id\x18! \x01(\x09\x12\"\x0A\x04apis\x18\x03 \x03(\x0B2\x14.google.protobuf.Api\x12\$\x0A\x05types\x18\x04 \x03(\x0B2\x15.google.protobuf.Type\x12\$\x0A\x05enums\x18\x05 \x03(\x0B2\x15.google.protobuf.Enum\x120\x0A\x0Ddocumentation\x18\x06 \x01(\x0B2\x19.google.api.Documentation\x12\$\x0A\x07backend\x18\x08 \x01(\x0B2\x13.google.api.Backend\x12\x1E\x0A\x04http\x18\x09 \x01(\x0B2\x10.google.api.Http\x12 \x0A\x05quota\x18\x0A \x01(\x0B2\x11.google.api.Quota\x122\x0A\x0Eauthentication\x18\x0B \x01(\x0B2\x1A.google.api.Authentication\x12\$\x0A\x07context\x18\x0C \x01(\x0B2\x13.google.api.Context\x12 \x0A\x05usage\x18\x0F \x01(\x0B2\x11.google.api.Usage\x12'\x0A\x09endpoints\x18\x12 \x03(\x0B2\x14.google.api.Endpoint\x12\$\x0A\x07control\x18\x15 \x01(\x0B2\x13.google.api.Control\x12'\x0A\x04logs\x18\x17 \x03(\x0B2\x19.google.api.LogDescriptor\x12-\x0A\x07metrics\x18\x18 \x03(\x0B2\x1C.google.api.MetricDescriptor\x12D\x0A\x13monitored_resources\x18\x19 \x03(\x0B2'.google.api.MonitoredResourceDescriptor\x12\$\x0A\x07billing\x18\x1A \x01(\x0B2\x13.google.api.Billing\x12\$\x0A\x07logging\x18\x1B \x01(\x0B2\x13.google.api.Logging\x12*\x0A\x0Amonitoring\x18\x1C \x01(\x0B2\x16.google.api.Monitoring\x127\x0A\x11system_parameters\x18\x1D \x01(\x0B2\x1C.google.api.SystemParameters\x12+\x0A\x0Bsource_info\x18% \x01(\x0B2\x16.google.api.SourceInfo\x12*\x0A\x0Apublishing\x18- \x01(\x0B2\x16.google.api.Publishing\x124\x0A\x0Econfig_version\x18\x14 \x01(\x0B2\x1C.google.protobuf.UInt32ValueBn\x0A\x0Ecom.google.apiB\x0CServiceProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\xA2\x02\x04GAPIb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
@@ -16,14 +16,7 @@ public static function initOnce() {
|
||||
}
|
||||
\GPBMetadata\Google\Protobuf\Any::initOnce();
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
ß
|
||||
google/api/source_info.proto
|
||||
google.api"8
|
||||
|
||||
SourceInfo*
|
||||
source_files (2.google.protobuf.AnyBq
|
||||
com.google.apiBSourceInfoProtoPZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig¢GAPIbproto3'
|
||||
"\x0A\xDF\x01\x0A\x1Cgoogle/api/source_info.proto\x12\x0Agoogle.api\"8\x0A\x0ASourceInfo\x12*\x0A\x0Csource_files\x18\x01 \x03(\x0B2\x14.google.protobuf.AnyBq\x0A\x0Ecom.google.apiB\x0FSourceInfoProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\xA2\x02\x04GAPIb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
@@ -15,21 +15,7 @@ public static function initOnce() {
|
||||
return;
|
||||
}
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
|
||||
!google/api/system_parameter.proto
|
||||
google.api"B
|
||||
SystemParameters.
|
||||
rules (2.google.api.SystemParameterRule"X
|
||||
SystemParameterRule
|
||||
selector ( /
|
||||
|
||||
parameters (2.google.api.SystemParameter"Q
|
||||
SystemParameter
|
||||
name (
|
||||
http_header (
|
||||
url_query_parameter ( Bv
|
||||
com.google.apiBSystemParameterProtoPZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig¢GAPIbproto3'
|
||||
"\x0A\xA0\x03\x0A!google/api/system_parameter.proto\x12\x0Agoogle.api\"B\x0A\x10SystemParameters\x12.\x0A\x05rules\x18\x01 \x03(\x0B2\x1F.google.api.SystemParameterRule\"X\x0A\x13SystemParameterRule\x12\x10\x0A\x08selector\x18\x01 \x01(\x09\x12/\x0A\x0Aparameters\x18\x02 \x03(\x0B2\x1B.google.api.SystemParameter\"Q\x0A\x0FSystemParameter\x12\x0C\x0A\x04name\x18\x01 \x01(\x09\x12\x13\x0A\x0Bhttp_header\x18\x02 \x01(\x09\x12\x1B\x0A\x13url_query_parameter\x18\x03 \x01(\x09Bv\x0A\x0Ecom.google.apiB\x14SystemParameterProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\xA2\x02\x04GAPIb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
@@ -15,20 +15,7 @@ public static function initOnce() {
|
||||
return;
|
||||
}
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
å
|
||||
google/api/usage.proto
|
||||
google.api"j
|
||||
Usage
|
||||
requirements ( $
|
||||
rules (2.google.api.UsageRule%
|
||||
producer_notification_channel ( "]
|
||||
UsageRule
|
||||
selector (
|
||||
allow_unregistered_calls (
|
||||
skip_service_control (Bl
|
||||
com.google.apiB
|
||||
UsageProtoPZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig¢GAPIbproto3'
|
||||
"\x0A\xE5\x02\x0A\x16google/api/usage.proto\x12\x0Agoogle.api\"j\x0A\x05Usage\x12\x14\x0A\x0Crequirements\x18\x01 \x03(\x09\x12\$\x0A\x05rules\x18\x06 \x03(\x0B2\x15.google.api.UsageRule\x12%\x0A\x1Dproducer_notification_channel\x18\x07 \x01(\x09\"]\x0A\x09UsageRule\x12\x10\x0A\x08selector\x18\x01 \x01(\x09\x12 \x0A\x18allow_unregistered_calls\x18\x02 \x01(\x08\x12\x1C\x0A\x14skip_service_control\x18\x03 \x01(\x08Bl\x0A\x0Ecom.google.apiB\x0AUsageProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\xA2\x02\x04GAPIb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
@@ -15,17 +15,7 @@ public static function initOnce() {
|
||||
return;
|
||||
}
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
²
|
||||
google/api/visibility.proto
|
||||
google.api google/protobuf/descriptor.proto"7
|
||||
|
||||
Visibility)
|
||||
rules (2.google.api.VisibilityRule"7
|
||||
VisibilityRule
|
||||
selector (
|
||||
restriction ( Bk
|
||||
com.google.apiBVisibilityProtoPZ?google.golang.org/genproto/googleapis/api/visibility;visibility¢GAPIbproto3'
|
||||
"\x0A\xB2\x02\x0A\x1Bgoogle/api/visibility.proto\x12\x0Agoogle.api\x1A google/protobuf/descriptor.proto\"7\x0A\x0AVisibility\x12)\x0A\x05rules\x18\x01 \x03(\x0B2\x1A.google.api.VisibilityRule\"7\x0A\x0EVisibilityRule\x12\x10\x0A\x08selector\x18\x01 \x01(\x09\x12\x13\x0A\x0Brestriction\x18\x02 \x01(\x09Bk\x0A\x0Ecom.google.apiB\x0FVisibilityProtoP\x01Z?google.golang.org/genproto/googleapis/api/visibility;visibility\xA2\x02\x04GAPIb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
Binary file not shown.
@@ -18,33 +18,7 @@ public static function initOnce() {
|
||||
\GPBMetadata\Google\Protobuf\Any::initOnce();
|
||||
\GPBMetadata\Google\Api\Client::initOnce();
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
Ó
|
||||
%google/cloud/location/locations.protogoogle.cloud.locationgoogle/protobuf/any.protogoogle/api/client.proto"[
|
||||
ListLocationsRequest
|
||||
name (
|
||||
filter (
|
||||
page_size (
|
||||
|
||||
page_token ( "d
|
||||
ListLocationsResponse2
|
||||
locations (2.google.cloud.location.Location
|
||||
next_page_token ( ""
|
||||
GetLocationRequest
|
||||
name ( "×
|
||||
Location
|
||||
name (
|
||||
location_id (
|
||||
display_name ( ;
|
||||
labels (2+.google.cloud.location.Location.LabelsEntry&
|
||||
metadata (2.google.protobuf.Any-
|
||||
LabelsEntry
|
||||
key (
|
||||
value ( :82¤
|
||||
Locations«
|
||||
ListLocations+.google.cloud.location.ListLocationsRequest,.google.cloud.location.ListLocationsResponse"?‚Óä“9/v1/{name=locations}Z!/v1/{name=projects/*}/locationsž
|
||||
GetLocation).google.cloud.location.GetLocationRequest.google.cloud.location.Location"C‚Óä“=/v1/{name=locations/*}Z#!/v1/{name=projects/*/locations/*}HÊAcloud.googleapis.comÒA.https://www.googleapis.com/auth/cloud-platformBo
|
||||
com.google.cloud.locationBLocationsProtoPZ=google.golang.org/genproto/googleapis/cloud/location;locationøbproto3'
|
||||
"\x0A\xD3\x08\x0A%google/cloud/location/locations.proto\x12\x15google.cloud.location\x1A\x19google/protobuf/any.proto\x1A\x17google/api/client.proto\"[\x0A\x14ListLocationsRequest\x12\x0C\x0A\x04name\x18\x01 \x01(\x09\x12\x0E\x0A\x06filter\x18\x02 \x01(\x09\x12\x11\x0A\x09page_size\x18\x03 \x01(\x05\x12\x12\x0A\x0Apage_token\x18\x04 \x01(\x09\"d\x0A\x15ListLocationsResponse\x122\x0A\x09locations\x18\x01 \x03(\x0B2\x1F.google.cloud.location.Location\x12\x17\x0A\x0Fnext_page_token\x18\x02 \x01(\x09\"\"\x0A\x12GetLocationRequest\x12\x0C\x0A\x04name\x18\x01 \x01(\x09\"\xD7\x01\x0A\x08Location\x12\x0C\x0A\x04name\x18\x01 \x01(\x09\x12\x13\x0A\x0Blocation_id\x18\x04 \x01(\x09\x12\x14\x0A\x0Cdisplay_name\x18\x05 \x01(\x09\x12;\x0A\x06labels\x18\x02 \x03(\x0B2+.google.cloud.location.Location.LabelsEntry\x12&\x0A\x08metadata\x18\x03 \x01(\x0B2\x14.google.protobuf.Any\x1A-\x0A\x0BLabelsEntry\x12\x0B\x0A\x03key\x18\x01 \x01(\x09\x12\x0D\x0A\x05value\x18\x02 \x01(\x09:\x028\x012\xA4\x03\x0A\x09Locations\x12\xAB\x01\x0A\x0DListLocations\x12+.google.cloud.location.ListLocationsRequest\x1A,.google.cloud.location.ListLocationsResponse\"?\x82\xD3\xE4\x93\x029\x12\x14/v1/{name=locations}Z!\x12\x1F/v1/{name=projects/*}/locations\x12\x9E\x01\x0A\x0BGetLocation\x12).google.cloud.location.GetLocationRequest\x1A\x1F.google.cloud.location.Location\"C\x82\xD3\xE4\x93\x02=\x12\x16/v1/{name=locations/*}Z#\x12!/v1/{name=projects/*/locations/*}\x1AH\xCAA\x14cloud.googleapis.com\xD2A.https://www.googleapis.com/auth/cloud-platformBo\x0A\x19com.google.cloud.locationB\x0ELocationsProtoP\x01Z=google.golang.org/genproto/googleapis/cloud/location;location\xF8\x01\x01b\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
@@ -22,29 +22,7 @@ public static function initOnce() {
|
||||
\GPBMetadata\Google\Iam\V1\Policy::initOnce();
|
||||
\GPBMetadata\Google\Protobuf\FieldMask::initOnce();
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
›
|
||||
google/iam/v1/iam_policy.proto
google.iam.v1google/api/client.protogoogle/api/field_behavior.protogoogle/api/resource.protogoogle/iam/v1/options.protogoogle/iam/v1/policy.proto google/protobuf/field_mask.proto"Ź
|
||||
SetIamPolicyRequest
|
||||
resource ( B ŕAúA
|
||||
**
|
||||
policy (2.google.iam.v1.PolicyBŕA/
|
||||
update_mask (2.google.protobuf.FieldMask"d
|
||||
GetIamPolicyRequest
|
||||
resource ( B ŕAúA
|
||||
*0
|
||||
options (2.google.iam.v1.GetPolicyOptions"R
|
||||
TestIamPermissionsRequest
|
||||
resource ( B ŕAúA
|
||||
*
|
||||
permissions ( BŕA"1
|
||||
TestIamPermissionsResponse
|
||||
permissions ( 2´
|
||||
IAMPolicyt
|
||||
SetIamPolicy".google.iam.v1.SetIamPolicyRequest.google.iam.v1.Policy")‚Óä“#"/v1/{resource=**}:setIamPolicy:*t
|
||||
GetIamPolicy".google.iam.v1.GetIamPolicyRequest.google.iam.v1.Policy")‚Óä“#"/v1/{resource=**}:getIamPolicy:*š
|
||||
TestIamPermissions(.google.iam.v1.TestIamPermissionsRequest).google.iam.v1.TestIamPermissionsResponse"/‚Óä“)"$/v1/{resource=**}:testIamPermissions:*ĘAiam-meta-api.googleapis.comB|
|
||||
com.google.iam.v1BIamPolicyProtoPZ)cloud.google.com/go/iam/apiv1/iampb;iampbŞGoogle.Cloud.Iam.V1ĘGoogle\\Cloud\\Iam\\V1bproto3'
|
||||
"\x0A\x9B\x09\x0A\x1Egoogle/iam/v1/iam_policy.proto\x12\x0Dgoogle.iam.v1\x1A\x17google/api/client.proto\x1A\x1Fgoogle/api/field_behavior.proto\x1A\x19google/api/resource.proto\x1A\x1Bgoogle/iam/v1/options.proto\x1A\x1Agoogle/iam/v1/policy.proto\x1A google/protobuf/field_mask.proto\"\x8F\x01\x0A\x13SetIamPolicyRequest\x12\x1B\x0A\x08resource\x18\x01 \x01(\x09B\x09\xE0A\x02\xFAA\x03\x0A\x01*\x12*\x0A\x06policy\x18\x02 \x01(\x0B2\x15.google.iam.v1.PolicyB\x03\xE0A\x02\x12/\x0A\x0Bupdate_mask\x18\x03 \x01(\x0B2\x1A.google.protobuf.FieldMask\"d\x0A\x13GetIamPolicyRequest\x12\x1B\x0A\x08resource\x18\x01 \x01(\x09B\x09\xE0A\x02\xFAA\x03\x0A\x01*\x120\x0A\x07options\x18\x02 \x01(\x0B2\x1F.google.iam.v1.GetPolicyOptions\"R\x0A\x19TestIamPermissionsRequest\x12\x1B\x0A\x08resource\x18\x01 \x01(\x09B\x09\xE0A\x02\xFAA\x03\x0A\x01*\x12\x18\x0A\x0Bpermissions\x18\x02 \x03(\x09B\x03\xE0A\x02\"1\x0A\x1ATestIamPermissionsResponse\x12\x13\x0A\x0Bpermissions\x18\x01 \x03(\x092\xB4\x03\x0A\x09IAMPolicy\x12t\x0A\x0CSetIamPolicy\x12\".google.iam.v1.SetIamPolicyRequest\x1A\x15.google.iam.v1.Policy\")\x82\xD3\xE4\x93\x02#\"\x1E/v1/{resource=**}:setIamPolicy:\x01*\x12t\x0A\x0CGetIamPolicy\x12\".google.iam.v1.GetIamPolicyRequest\x1A\x15.google.iam.v1.Policy\")\x82\xD3\xE4\x93\x02#\"\x1E/v1/{resource=**}:getIamPolicy:\x01*\x12\x9A\x01\x0A\x12TestIamPermissions\x12(.google.iam.v1.TestIamPermissionsRequest\x1A).google.iam.v1.TestIamPermissionsResponse\"/\x82\xD3\xE4\x93\x02)\"\$/v1/{resource=**}:testIamPermissions:\x01*\x1A\x1E\xCAA\x1Biam-meta-api.googleapis.comB|\x0A\x11com.google.iam.v1B\x0EIamPolicyProtoP\x01Z)cloud.google.com/go/iam/apiv1/iampb;iampb\xAA\x02\x13Google.Cloud.Iam.V1\xCA\x02\x13Google\\Cloud\\Iam\\V1b\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
@@ -16,12 +16,7 @@ public static function initOnce() {
|
||||
}
|
||||
\GPBMetadata\Google\Iam\V1\Policy::initOnce();
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
<EFBFBD>
|
||||
&google/iam/v1/logging/audit_data.protogoogle.iam.v1.logging"=
|
||||
AuditData0
|
||||
policy_delta (2.google.iam.v1.PolicyDeltaB†
|
||||
com.google.iam.v1.loggingBAuditDataProtoPZ9cloud.google.com/go/iam/apiv1/logging/loggingpb;loggingpbªGoogle.Cloud.Iam.V1.Loggingbproto3'
|
||||
"\x0A\x8F\x02\x0A&google/iam/v1/logging/audit_data.proto\x12\x15google.iam.v1.logging\"=\x0A\x09AuditData\x120\x0A\x0Cpolicy_delta\x18\x02 \x01(\x0B2\x1A.google.iam.v1.PolicyDeltaB\x86\x01\x0A\x19com.google.iam.v1.loggingB\x0EAuditDataProtoP\x01Z9cloud.google.com/go/iam/apiv1/logging/loggingpb;loggingpb\xAA\x02\x1BGoogle.Cloud.Iam.V1.Loggingb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
@@ -15,12 +15,7 @@ public static function initOnce() {
|
||||
return;
|
||||
}
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
é
|
||||
google/iam/v1/options.proto
google.iam.v1"4
|
||||
GetPolicyOptions
|
||||
requested_policy_version (B}
|
||||
com.google.iam.v1BOptionsProtoPZ)cloud.google.com/go/iam/apiv1/iampb;iampbøªGoogle.Cloud.Iam.V1ÊGoogle\\Cloud\\Iam\\V1bproto3'
|
||||
"\x0A\xE9\x01\x0A\x1Bgoogle/iam/v1/options.proto\x12\x0Dgoogle.iam.v1\"4\x0A\x10GetPolicyOptions\x12 \x0A\x18requested_policy_version\x18\x01 \x01(\x05B}\x0A\x11com.google.iam.v1B\x0COptionsProtoP\x01Z)cloud.google.com/go/iam/apiv1/iampb;iampb\xF8\x01\x01\xAA\x02\x13Google.Cloud.Iam.V1\xCA\x02\x13Google\\Cloud\\Iam\\V1b\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
Binary file not shown.
@@ -16,13 +16,7 @@ public static function initOnce() {
|
||||
}
|
||||
\GPBMetadata\Google\Api\FieldBehavior::initOnce();
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
´
|
||||
*google/iam/v1/resource_policy_member.proto
google.iam.v1"e
|
||||
ResourcePolicyMember&
|
||||
iam_policy_name_principal ( BŕA%
|
||||
iam_policy_uid_principal ( BŕAB‡
|
||||
com.google.iam.v1BResourcePolicyMemberProtoPZ)cloud.google.com/go/iam/apiv1/iampb;iampbŞGoogle.Cloud.Iam.V1ĘGoogle\\Cloud\\Iam\\V1bproto3'
|
||||
"\x0A\xB4\x02\x0A*google/iam/v1/resource_policy_member.proto\x12\x0Dgoogle.iam.v1\"e\x0A\x14ResourcePolicyMember\x12&\x0A\x19iam_policy_name_principal\x18\x01 \x01(\x09B\x03\xE0A\x03\x12%\x0A\x18iam_policy_uid_principal\x18\x02 \x01(\x09B\x03\xE0A\x03B\x87\x01\x0A\x11com.google.iam.v1B\x19ResourcePolicyMemberProtoP\x01Z)cloud.google.com/go/iam/apiv1/iampb;iampb\xAA\x02\x13Google.Cloud.Iam.V1\xCA\x02\x13Google\\Cloud\\Iam\\V1b\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
@@ -16,28 +16,7 @@ public static function initOnce() {
|
||||
}
|
||||
\GPBMetadata\Google\Protobuf\Duration::initOnce();
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
ø
|
||||
&google/logging/type/http_request.protogoogle.logging.type"ï
|
||||
HttpRequest
|
||||
request_method (
|
||||
request_url (
|
||||
request_size (
|
||||
status (
|
||||
response_size (
|
||||
|
||||
user_agent (
|
||||
remote_ip (
|
||||
server_ip
(
|
||||
referer ( *
|
||||
latency (2.google.protobuf.Duration
|
||||
cache_lookup (
|
||||
cache_hit (*
|
||||
"cache_validated_with_origin_server
|
||||
(
|
||||
cache_fill_bytes (
|
||||
protocol ( B¾
|
||||
com.google.logging.typeBHttpRequestProtoPZ8google.golang.org/genproto/googleapis/logging/type;ltypeªGoogle.Cloud.Logging.TypeÊGoogle\\Cloud\\Logging\\TypeêGoogle::Cloud::Logging::Typebproto3'
|
||||
"\x0A\xF8\x04\x0A&google/logging/type/http_request.proto\x12\x13google.logging.type\"\xEF\x02\x0A\x0BHttpRequest\x12\x16\x0A\x0Erequest_method\x18\x01 \x01(\x09\x12\x13\x0A\x0Brequest_url\x18\x02 \x01(\x09\x12\x14\x0A\x0Crequest_size\x18\x03 \x01(\x03\x12\x0E\x0A\x06status\x18\x04 \x01(\x05\x12\x15\x0A\x0Dresponse_size\x18\x05 \x01(\x03\x12\x12\x0A\x0Auser_agent\x18\x06 \x01(\x09\x12\x11\x0A\x09remote_ip\x18\x07 \x01(\x09\x12\x11\x0A\x09server_ip\x18\x0D \x01(\x09\x12\x0F\x0A\x07referer\x18\x08 \x01(\x09\x12*\x0A\x07latency\x18\x0E \x01(\x0B2\x19.google.protobuf.Duration\x12\x14\x0A\x0Ccache_lookup\x18\x0B \x01(\x08\x12\x11\x0A\x09cache_hit\x18\x09 \x01(\x08\x12*\x0A\"cache_validated_with_origin_server\x18\x0A \x01(\x08\x12\x18\x0A\x10cache_fill_bytes\x18\x0C \x01(\x03\x12\x10\x0A\x08protocol\x18\x0F \x01(\x09B\xBE\x01\x0A\x17com.google.logging.typeB\x10HttpRequestProtoP\x01Z8google.golang.org/genproto/googleapis/logging/type;ltype\xAA\x02\x19Google.Cloud.Logging.Type\xCA\x02\x19Google\\Cloud\\Logging\\Type\xEA\x02\x1CGoogle::Cloud::Logging::Typeb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
Binary file not shown.
@@ -22,29 +22,7 @@ public static function initOnce() {
|
||||
\GPBMetadata\Google\Iam\V1\Policy::initOnce();
|
||||
\GPBMetadata\Google\Protobuf\FieldMask::initOnce();
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
›
|
||||
google/iam/v1/iam_policy.proto
google.iam.v1google/api/client.protogoogle/api/field_behavior.protogoogle/api/resource.protogoogle/iam/v1/options.protogoogle/iam/v1/policy.proto google/protobuf/field_mask.proto"Ź
|
||||
SetIamPolicyRequest
|
||||
resource ( B ŕAúA
|
||||
**
|
||||
policy (2.google.iam.v1.PolicyBŕA/
|
||||
update_mask (2.google.protobuf.FieldMask"d
|
||||
GetIamPolicyRequest
|
||||
resource ( B ŕAúA
|
||||
*0
|
||||
options (2.google.iam.v1.GetPolicyOptions"R
|
||||
TestIamPermissionsRequest
|
||||
resource ( B ŕAúA
|
||||
*
|
||||
permissions ( BŕA"1
|
||||
TestIamPermissionsResponse
|
||||
permissions ( 2´
|
||||
IAMPolicyt
|
||||
SetIamPolicy".google.iam.v1.SetIamPolicyRequest.google.iam.v1.Policy")‚Óä“#"/v1/{resource=**}:setIamPolicy:*t
|
||||
GetIamPolicy".google.iam.v1.GetIamPolicyRequest.google.iam.v1.Policy")‚Óä“#"/v1/{resource=**}:getIamPolicy:*š
|
||||
TestIamPermissions(.google.iam.v1.TestIamPermissionsRequest).google.iam.v1.TestIamPermissionsResponse"/‚Óä“)"$/v1/{resource=**}:testIamPermissions:*ĘAiam-meta-api.googleapis.comB|
|
||||
com.google.iam.v1BIamPolicyProtoPZ)cloud.google.com/go/iam/apiv1/iampb;iampbŞGoogle.Cloud.Iam.V1ĘGoogle\\Cloud\\Iam\\V1bproto3'
|
||||
"\x0A\x9B\x09\x0A\x1Egoogle/iam/v1/iam_policy.proto\x12\x0Dgoogle.iam.v1\x1A\x17google/api/client.proto\x1A\x1Fgoogle/api/field_behavior.proto\x1A\x19google/api/resource.proto\x1A\x1Bgoogle/iam/v1/options.proto\x1A\x1Agoogle/iam/v1/policy.proto\x1A google/protobuf/field_mask.proto\"\x8F\x01\x0A\x13SetIamPolicyRequest\x12\x1B\x0A\x08resource\x18\x01 \x01(\x09B\x09\xE0A\x02\xFAA\x03\x0A\x01*\x12*\x0A\x06policy\x18\x02 \x01(\x0B2\x15.google.iam.v1.PolicyB\x03\xE0A\x02\x12/\x0A\x0Bupdate_mask\x18\x03 \x01(\x0B2\x1A.google.protobuf.FieldMask\"d\x0A\x13GetIamPolicyRequest\x12\x1B\x0A\x08resource\x18\x01 \x01(\x09B\x09\xE0A\x02\xFAA\x03\x0A\x01*\x120\x0A\x07options\x18\x02 \x01(\x0B2\x1F.google.iam.v1.GetPolicyOptions\"R\x0A\x19TestIamPermissionsRequest\x12\x1B\x0A\x08resource\x18\x01 \x01(\x09B\x09\xE0A\x02\xFAA\x03\x0A\x01*\x12\x18\x0A\x0Bpermissions\x18\x02 \x03(\x09B\x03\xE0A\x02\"1\x0A\x1ATestIamPermissionsResponse\x12\x13\x0A\x0Bpermissions\x18\x01 \x03(\x092\xB4\x03\x0A\x09IAMPolicy\x12t\x0A\x0CSetIamPolicy\x12\".google.iam.v1.SetIamPolicyRequest\x1A\x15.google.iam.v1.Policy\")\x82\xD3\xE4\x93\x02#\"\x1E/v1/{resource=**}:setIamPolicy:\x01*\x12t\x0A\x0CGetIamPolicy\x12\".google.iam.v1.GetIamPolicyRequest\x1A\x15.google.iam.v1.Policy\")\x82\xD3\xE4\x93\x02#\"\x1E/v1/{resource=**}:getIamPolicy:\x01*\x12\x9A\x01\x0A\x12TestIamPermissions\x12(.google.iam.v1.TestIamPermissionsRequest\x1A).google.iam.v1.TestIamPermissionsResponse\"/\x82\xD3\xE4\x93\x02)\"\$/v1/{resource=**}:testIamPermissions:\x01*\x1A\x1E\xCAA\x1Biam-meta-api.googleapis.comB|\x0A\x11com.google.iam.v1B\x0EIamPolicyProtoP\x01Z)cloud.google.com/go/iam/apiv1/iampb;iampb\xAA\x02\x13Google.Cloud.Iam.V1\xCA\x02\x13Google\\Cloud\\Iam\\V1b\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
@@ -16,12 +16,7 @@ public static function initOnce() {
|
||||
}
|
||||
\GPBMetadata\Google\Iam\V1\Policy::initOnce();
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
<EFBFBD>
|
||||
&google/iam/v1/logging/audit_data.protogoogle.iam.v1.logging"=
|
||||
AuditData0
|
||||
policy_delta (2.google.iam.v1.PolicyDeltaB†
|
||||
com.google.iam.v1.loggingBAuditDataProtoPZ9cloud.google.com/go/iam/apiv1/logging/loggingpb;loggingpbªGoogle.Cloud.Iam.V1.Loggingbproto3'
|
||||
"\x0A\x8F\x02\x0A&google/iam/v1/logging/audit_data.proto\x12\x15google.iam.v1.logging\"=\x0A\x09AuditData\x120\x0A\x0Cpolicy_delta\x18\x02 \x01(\x0B2\x1A.google.iam.v1.PolicyDeltaB\x86\x01\x0A\x19com.google.iam.v1.loggingB\x0EAuditDataProtoP\x01Z9cloud.google.com/go/iam/apiv1/logging/loggingpb;loggingpb\xAA\x02\x1BGoogle.Cloud.Iam.V1.Loggingb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
@@ -15,12 +15,7 @@ public static function initOnce() {
|
||||
return;
|
||||
}
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
é
|
||||
google/iam/v1/options.proto
google.iam.v1"4
|
||||
GetPolicyOptions
|
||||
requested_policy_version (B}
|
||||
com.google.iam.v1BOptionsProtoPZ)cloud.google.com/go/iam/apiv1/iampb;iampbøªGoogle.Cloud.Iam.V1ÊGoogle\\Cloud\\Iam\\V1bproto3'
|
||||
"\x0A\xE9\x01\x0A\x1Bgoogle/iam/v1/options.proto\x12\x0Dgoogle.iam.v1\"4\x0A\x10GetPolicyOptions\x12 \x0A\x18requested_policy_version\x18\x01 \x01(\x05B}\x0A\x11com.google.iam.v1B\x0COptionsProtoP\x01Z)cloud.google.com/go/iam/apiv1/iampb;iampb\xF8\x01\x01\xAA\x02\x13Google.Cloud.Iam.V1\xCA\x02\x13Google\\Cloud\\Iam\\V1b\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
Binary file not shown.
@@ -16,13 +16,7 @@ public static function initOnce() {
|
||||
}
|
||||
\GPBMetadata\Google\Api\FieldBehavior::initOnce();
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
´
|
||||
*google/iam/v1/resource_policy_member.proto
google.iam.v1"e
|
||||
ResourcePolicyMember&
|
||||
iam_policy_name_principal ( BŕA%
|
||||
iam_policy_uid_principal ( BŕAB‡
|
||||
com.google.iam.v1BResourcePolicyMemberProtoPZ)cloud.google.com/go/iam/apiv1/iampb;iampbŞGoogle.Cloud.Iam.V1ĘGoogle\\Cloud\\Iam\\V1bproto3'
|
||||
"\x0A\xB4\x02\x0A*google/iam/v1/resource_policy_member.proto\x12\x0Dgoogle.iam.v1\"e\x0A\x14ResourcePolicyMember\x12&\x0A\x19iam_policy_name_principal\x18\x01 \x01(\x09B\x03\xE0A\x03\x12%\x0A\x18iam_policy_uid_principal\x18\x02 \x01(\x09B\x03\xE0A\x03B\x87\x01\x0A\x11com.google.iam.v1B\x19ResourcePolicyMemberProtoP\x01Z)cloud.google.com/go/iam/apiv1/iampb;iampb\xAA\x02\x13Google.Cloud.Iam.V1\xCA\x02\x13Google\\Cloud\\Iam\\V1b\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
@@ -16,28 +16,7 @@ public static function initOnce() {
|
||||
}
|
||||
\GPBMetadata\Google\Protobuf\Duration::initOnce();
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
ø
|
||||
&google/logging/type/http_request.protogoogle.logging.type"ï
|
||||
HttpRequest
|
||||
request_method (
|
||||
request_url (
|
||||
request_size (
|
||||
status (
|
||||
response_size (
|
||||
|
||||
user_agent (
|
||||
remote_ip (
|
||||
server_ip
(
|
||||
referer ( *
|
||||
latency (2.google.protobuf.Duration
|
||||
cache_lookup (
|
||||
cache_hit (*
|
||||
"cache_validated_with_origin_server
|
||||
(
|
||||
cache_fill_bytes (
|
||||
protocol ( B¾
|
||||
com.google.logging.typeBHttpRequestProtoPZ8google.golang.org/genproto/googleapis/logging/type;ltypeªGoogle.Cloud.Logging.TypeÊGoogle\\Cloud\\Logging\\TypeêGoogle::Cloud::Logging::Typebproto3'
|
||||
"\x0A\xF8\x04\x0A&google/logging/type/http_request.proto\x12\x13google.logging.type\"\xEF\x02\x0A\x0BHttpRequest\x12\x16\x0A\x0Erequest_method\x18\x01 \x01(\x09\x12\x13\x0A\x0Brequest_url\x18\x02 \x01(\x09\x12\x14\x0A\x0Crequest_size\x18\x03 \x01(\x03\x12\x0E\x0A\x06status\x18\x04 \x01(\x05\x12\x15\x0A\x0Dresponse_size\x18\x05 \x01(\x03\x12\x12\x0A\x0Auser_agent\x18\x06 \x01(\x09\x12\x11\x0A\x09remote_ip\x18\x07 \x01(\x09\x12\x11\x0A\x09server_ip\x18\x0D \x01(\x09\x12\x0F\x0A\x07referer\x18\x08 \x01(\x09\x12*\x0A\x07latency\x18\x0E \x01(\x0B2\x19.google.protobuf.Duration\x12\x14\x0A\x0Ccache_lookup\x18\x0B \x01(\x08\x12\x11\x0A\x09cache_hit\x18\x09 \x01(\x08\x12*\x0A\"cache_validated_with_origin_server\x18\x0A \x01(\x08\x12\x18\x0A\x10cache_fill_bytes\x18\x0C \x01(\x03\x12\x10\x0A\x08protocol\x18\x0F \x01(\x09B\xBE\x01\x0A\x17com.google.logging.typeB\x10HttpRequestProtoP\x01Z8google.golang.org/genproto/googleapis/logging/type;ltype\xAA\x02\x19Google.Cloud.Logging.Type\xCA\x02\x19Google\\Cloud\\Logging\\Type\xEA\x02\x1CGoogle::Cloud::Logging::Typeb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
Binary file not shown.
BIN
vendor/google/common-protos/metadata/Rpc/Code.php
vendored
BIN
vendor/google/common-protos/metadata/Rpc/Code.php
vendored
Binary file not shown.
@@ -19,88 +19,7 @@ public static function initOnce() {
|
||||
\GPBMetadata\Google\Protobuf\Struct::initOnce();
|
||||
\GPBMetadata\Google\Protobuf\Timestamp::initOnce();
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
»
|
||||
*google/rpc/context/attribute_context.protogoogle.rpc.contextgoogle/protobuf/duration.protogoogle/protobuf/struct.protogoogle/protobuf/timestamp.proto"ƒ
|
||||
AttributeContext9
|
||||
origin (2).google.rpc.context.AttributeContext.Peer9
|
||||
source (2).google.rpc.context.AttributeContext.Peer>
|
||||
destination (2).google.rpc.context.AttributeContext.Peer=
|
||||
request (2,.google.rpc.context.AttributeContext.Request?
|
||||
response (2-.google.rpc.context.AttributeContext.Response?
|
||||
resource (2-.google.rpc.context.AttributeContext.Resource5
|
||||
api (2(.google.rpc.context.AttributeContext.Api(
|
||||
|
||||
extensions (2.google.protobuf.Any¾
|
||||
Peer
|
||||
|
||||
ip (
|
||||
port (E
|
||||
labels (25.google.rpc.context.AttributeContext.Peer.LabelsEntry
|
||||
principal (
|
||||
region_code ( -
|
||||
LabelsEntry
|
||||
key (
|
||||
value ( :8L
|
||||
Api
|
||||
service (
|
||||
operation (
|
||||
protocol (
|
||||
version (
|
||||
Auth
|
||||
principal (
|
||||
audiences (
|
||||
presenter ( \'
|
||||
claims (2.google.protobuf.Struct
|
||||
access_levels ( ï
|
||||
Request
|
||||
|
||||
id (
|
||||
method ( J
|
||||
headers (29.google.rpc.context.AttributeContext.Request.HeadersEntry
|
||||
path (
|
||||
host (
|
||||
scheme (
|
||||
query ( (
|
||||
time (2.google.protobuf.Timestamp
|
||||
size
|
||||
(
|
||||
protocol (
|
||||
reason ( 7
|
||||
auth
(2).google.rpc.context.AttributeContext.Auth.
|
||||
HeadersEntry
|
||||
key (
|
||||
value ( :8<EFBFBD>
|
||||
Response
|
||||
code (
|
||||
size (K
|
||||
headers (2:.google.rpc.context.AttributeContext.Response.HeadersEntry(
|
||||
time (2.google.protobuf.Timestamp2
|
||||
backend_latency (2.google.protobuf.Duration.
|
||||
HeadersEntry
|
||||
key (
|
||||
value ( :8<EFBFBD>
|
||||
Resource
|
||||
service (
|
||||
name (
|
||||
type ( I
|
||||
labels (29.google.rpc.context.AttributeContext.Resource.LabelsEntry
|
||||
uid ( S
|
||||
annotations (2>.google.rpc.context.AttributeContext.Resource.AnnotationsEntry
|
||||
display_name ( /
|
||||
create_time (2.google.protobuf.Timestamp/
|
||||
update_time (2.google.protobuf.Timestamp/
|
||||
delete_time
|
||||
(2.google.protobuf.Timestamp
|
||||
etag (
|
||||
location ( -
|
||||
LabelsEntry
|
||||
key (
|
||||
value ( :82
|
||||
AnnotationsEntry
|
||||
key (
|
||||
value ( :8B‹
|
||||
com.google.rpc.contextBAttributeContextProtoPZUgoogle.golang.org/genproto/googleapis/rpc/context/attribute_context;attribute_contextøbproto3'
|
||||
"\x0A\xC8\x12\x0A*google/rpc/context/attribute_context.proto\x12\x12google.rpc.context\x1A\x1Egoogle/protobuf/duration.proto\x1A\x1Cgoogle/protobuf/struct.proto\x1A\x1Fgoogle/protobuf/timestamp.proto\"\x93\x10\x0A\x10AttributeContext\x129\x0A\x06origin\x18\x07 \x01(\x0B2).google.rpc.context.AttributeContext.Peer\x129\x0A\x06source\x18\x01 \x01(\x0B2).google.rpc.context.AttributeContext.Peer\x12>\x0A\x0Bdestination\x18\x02 \x01(\x0B2).google.rpc.context.AttributeContext.Peer\x12=\x0A\x07request\x18\x03 \x01(\x0B2,.google.rpc.context.AttributeContext.Request\x12?\x0A\x08response\x18\x04 \x01(\x0B2-.google.rpc.context.AttributeContext.Response\x12?\x0A\x08resource\x18\x05 \x01(\x0B2-.google.rpc.context.AttributeContext.Resource\x125\x0A\x03api\x18\x06 \x01(\x0B2(.google.rpc.context.AttributeContext.Api\x12(\x0A\x0Aextensions\x18\x08 \x03(\x0B2\x14.google.protobuf.Any\x1A\xBE\x01\x0A\x04Peer\x12\x0A\x0A\x02ip\x18\x01 \x01(\x09\x12\x0C\x0A\x04port\x18\x02 \x01(\x03\x12E\x0A\x06labels\x18\x06 \x03(\x0B25.google.rpc.context.AttributeContext.Peer.LabelsEntry\x12\x11\x0A\x09principal\x18\x07 \x01(\x09\x12\x13\x0A\x0Bregion_code\x18\x08 \x01(\x09\x1A-\x0A\x0BLabelsEntry\x12\x0B\x0A\x03key\x18\x01 \x01(\x09\x12\x0D\x0A\x05value\x18\x02 \x01(\x09:\x028\x01\x1AL\x0A\x03Api\x12\x0F\x0A\x07service\x18\x01 \x01(\x09\x12\x11\x0A\x09operation\x18\x02 \x01(\x09\x12\x10\x0A\x08protocol\x18\x03 \x01(\x09\x12\x0F\x0A\x07version\x18\x04 \x01(\x09\x1A\x7F\x0A\x04Auth\x12\x11\x0A\x09principal\x18\x01 \x01(\x09\x12\x11\x0A\x09audiences\x18\x02 \x03(\x09\x12\x11\x0A\x09presenter\x18\x03 \x01(\x09\x12'\x0A\x06claims\x18\x04 \x01(\x0B2\x17.google.protobuf.Struct\x12\x15\x0A\x0Daccess_levels\x18\x05 \x03(\x09\x1A\xFF\x02\x0A\x07Request\x12\x0A\x0A\x02id\x18\x01 \x01(\x09\x12\x0E\x0A\x06method\x18\x02 \x01(\x09\x12J\x0A\x07headers\x18\x03 \x03(\x0B29.google.rpc.context.AttributeContext.Request.HeadersEntry\x12\x0C\x0A\x04path\x18\x04 \x01(\x09\x12\x0C\x0A\x04host\x18\x05 \x01(\x09\x12\x0E\x0A\x06scheme\x18\x06 \x01(\x09\x12\x0D\x0A\x05query\x18\x07 \x01(\x09\x12(\x0A\x04time\x18\x09 \x01(\x0B2\x1A.google.protobuf.Timestamp\x12\x0C\x0A\x04size\x18\x0A \x01(\x03\x12\x10\x0A\x08protocol\x18\x0B \x01(\x09\x12\x0E\x0A\x06reason\x18\x0C \x01(\x09\x127\x0A\x04auth\x18\x0D \x01(\x0B2).google.rpc.context.AttributeContext.Auth\x12\x0E\x0A\x06origin\x18\x0E \x01(\x09\x1A.\x0A\x0CHeadersEntry\x12\x0B\x0A\x03key\x18\x01 \x01(\x09\x12\x0D\x0A\x05value\x18\x02 \x01(\x09:\x028\x01\x1A\x81\x02\x0A\x08Response\x12\x0C\x0A\x04code\x18\x01 \x01(\x03\x12\x0C\x0A\x04size\x18\x02 \x01(\x03\x12K\x0A\x07headers\x18\x03 \x03(\x0B2:.google.rpc.context.AttributeContext.Response.HeadersEntry\x12(\x0A\x04time\x18\x04 \x01(\x0B2\x1A.google.protobuf.Timestamp\x122\x0A\x0Fbackend_latency\x18\x05 \x01(\x0B2\x19.google.protobuf.Duration\x1A.\x0A\x0CHeadersEntry\x12\x0B\x0A\x03key\x18\x01 \x01(\x09\x12\x0D\x0A\x05value\x18\x02 \x01(\x09:\x028\x01\x1A\x90\x04\x0A\x08Resource\x12\x0F\x0A\x07service\x18\x01 \x01(\x09\x12\x0C\x0A\x04name\x18\x02 \x01(\x09\x12\x0C\x0A\x04type\x18\x03 \x01(\x09\x12I\x0A\x06labels\x18\x04 \x03(\x0B29.google.rpc.context.AttributeContext.Resource.LabelsEntry\x12\x0B\x0A\x03uid\x18\x05 \x01(\x09\x12S\x0A\x0Bannotations\x18\x06 \x03(\x0B2>.google.rpc.context.AttributeContext.Resource.AnnotationsEntry\x12\x14\x0A\x0Cdisplay_name\x18\x07 \x01(\x09\x12/\x0A\x0Bcreate_time\x18\x08 \x01(\x0B2\x1A.google.protobuf.Timestamp\x12/\x0A\x0Bupdate_time\x18\x09 \x01(\x0B2\x1A.google.protobuf.Timestamp\x12/\x0A\x0Bdelete_time\x18\x0A \x01(\x0B2\x1A.google.protobuf.Timestamp\x12\x0C\x0A\x04etag\x18\x0B \x01(\x09\x12\x10\x0A\x08location\x18\x0C \x01(\x09\x1A-\x0A\x0BLabelsEntry\x12\x0B\x0A\x03key\x18\x01 \x01(\x09\x12\x0D\x0A\x05value\x18\x02 \x01(\x09:\x028\x01\x1A2\x0A\x10AnnotationsEntry\x12\x0B\x0A\x03key\x18\x01 \x01(\x09\x12\x0D\x0A\x05value\x18\x02 \x01(\x09:\x028\x01B\x88\x01\x0A\x16com.google.rpc.contextB\x15AttributeContextProtoP\x01ZUgoogle.golang.org/genproto/googleapis/rpc/context/attribute_context;attribute_contextb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
@@ -16,16 +16,7 @@ public static function initOnce() {
|
||||
}
|
||||
\GPBMetadata\Google\Protobuf\Struct::initOnce();
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
ø
|
||||
&google/rpc/context/audit_context.protogoogle.rpc.context"Ç
|
||||
AuditContext
|
||||
audit_log (1
|
||||
scrubbed_request (2.google.protobuf.Struct2
|
||||
scrubbed_response (2.google.protobuf.Struct$
|
||||
scrubbed_response_item_count (
|
||||
target_resource ( Bh
|
||||
com.google.rpc.contextBAuditContextProtoPZ9google.golang.org/genproto/googleapis/rpc/context;contextbproto3'
|
||||
"\x0A\xF8\x02\x0A&google/rpc/context/audit_context.proto\x12\x12google.rpc.context\"\xC7\x01\x0A\x0CAuditContext\x12\x11\x0A\x09audit_log\x18\x01 \x01(\x0C\x121\x0A\x10scrubbed_request\x18\x02 \x01(\x0B2\x17.google.protobuf.Struct\x122\x0A\x11scrubbed_response\x18\x03 \x01(\x0B2\x17.google.protobuf.Struct\x12\$\x0A\x1Cscrubbed_response_item_count\x18\x04 \x01(\x05\x12\x17\x0A\x0Ftarget_resource\x18\x05 \x01(\x09Bh\x0A\x16com.google.rpc.contextB\x11AuditContextProtoP\x01Z9google.golang.org/genproto/googleapis/rpc/context;contextb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
Binary file not shown.
@@ -16,15 +16,7 @@ public static function initOnce() {
|
||||
}
|
||||
\GPBMetadata\Google\Protobuf\Any::initOnce();
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
ŕ
|
||||
google/rpc/status.proto
|
||||
google.rpc"N
|
||||
Status
|
||||
code (
|
||||
message ( %
|
||||
details (2.google.protobuf.AnyBa
|
||||
com.google.rpcBStatusProtoPZ7google.golang.org/genproto/googleapis/rpc/status;statusř˘RPCbproto3'
|
||||
"\x0A\xDD\x01\x0A\x17google/rpc/status.proto\x12\x0Agoogle.rpc\"N\x0A\x06Status\x12\x0C\x0A\x04code\x18\x01 \x01(\x05\x12\x0F\x0A\x07message\x18\x02 \x01(\x09\x12%\x0A\x07details\x18\x03 \x03(\x0B2\x14.google.protobuf.AnyB^\x0A\x0Ecom.google.rpcB\x0BStatusProtoP\x01Z7google.golang.org/genproto/googleapis/rpc/status;status\xA2\x02\x03RPCb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
Binary file not shown.
@@ -16,16 +16,7 @@ public static function initOnce() {
|
||||
}
|
||||
\GPBMetadata\Google\Protobuf\Wrappers::initOnce();
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
ď
|
||||
google/type/color.protogoogle.type"]
|
||||
Color
|
||||
red (
|
||||
green (
|
||||
blue (*
|
||||
alpha (2.google.protobuf.FloatValueB`
|
||||
com.google.typeB
|
||||
ColorProtoPZ6google.golang.org/genproto/googleapis/type/color;colorř˘GTPbproto3'
|
||||
"\x0A\xEC\x01\x0A\x17google/type/color.proto\x12\x0Bgoogle.type\"]\x0A\x05Color\x12\x0B\x0A\x03red\x18\x01 \x01(\x02\x12\x0D\x0A\x05green\x18\x02 \x01(\x02\x12\x0C\x0A\x04blue\x18\x03 \x01(\x02\x12*\x0A\x05alpha\x18\x04 \x01(\x0B2\x1B.google.protobuf.FloatValueB]\x0A\x0Fcom.google.typeB\x0AColorProtoP\x01Z6google.golang.org/genproto/googleapis/type/color;color\xA2\x02\x03GTPb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
@@ -15,14 +15,7 @@ public static function initOnce() {
|
||||
return;
|
||||
}
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
¾
|
||||
google/type/date.protogoogle.type"0
|
||||
Date
|
||||
year (
|
||||
month (
|
||||
day (B]
|
||||
com.google.typeB DateProtoPZ4google.golang.org/genproto/googleapis/type/date;dateø¢GTPbproto3'
|
||||
"\x0A\xBB\x01\x0A\x16google/type/date.proto\x12\x0Bgoogle.type\"0\x0A\x04Date\x12\x0C\x0A\x04year\x18\x01 \x01(\x05\x12\x0D\x0A\x05month\x18\x02 \x01(\x05\x12\x0B\x0A\x03day\x18\x03 \x01(\x05BZ\x0A\x0Fcom.google.typeB\x09DateProtoP\x01Z4google.golang.org/genproto/googleapis/type/date;date\xA2\x02\x03GTPb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -15,12 +15,7 @@ public static function initOnce() {
|
||||
return;
|
||||
}
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
²
|
||||
google/type/decimal.protogoogle.type"
|
||||
Decimal
|
||||
value ( Bf
|
||||
com.google.typeBDecimalProtoPZ:google.golang.org/genproto/googleapis/type/decimal;decimalø¢GTPbproto3'
|
||||
"\x0A\xAF\x01\x0A\x19google/type/decimal.proto\x12\x0Bgoogle.type\"\x18\x0A\x07Decimal\x12\x0D\x0A\x05value\x18\x01 \x01(\x09Bc\x0A\x0Fcom.google.typeB\x0CDecimalProtoP\x01Z:google.golang.org/genproto/googleapis/type/decimal;decimal\xA2\x02\x03GTPb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
@@ -15,16 +15,7 @@ public static function initOnce() {
|
||||
return;
|
||||
}
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
Û
|
||||
google/type/expr.protogoogle.type"P
|
||||
Expr
|
||||
|
||||
expression (
|
||||
title (
|
||||
description (
|
||||
location ( BZ
|
||||
com.google.typeB ExprProtoPZ4google.golang.org/genproto/googleapis/type/expr;expr¢GTPbproto3'
|
||||
"\x0A\xDB\x01\x0A\x16google/type/expr.proto\x12\x0Bgoogle.type\"P\x0A\x04Expr\x12\x12\x0A\x0Aexpression\x18\x01 \x01(\x09\x12\x0D\x0A\x05title\x18\x02 \x01(\x09\x12\x13\x0A\x0Bdescription\x18\x03 \x01(\x09\x12\x10\x0A\x08location\x18\x04 \x01(\x09BZ\x0A\x0Fcom.google.typeB\x09ExprProtoP\x01Z4google.golang.org/genproto/googleapis/type/expr;expr\xA2\x02\x03GTPb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
@@ -15,13 +15,7 @@ public static function initOnce() {
|
||||
return;
|
||||
}
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
Í
|
||||
google/type/fraction.protogoogle.type"2
|
||||
Fraction
|
||||
numerator (
|
||||
denominator (Bf
|
||||
com.google.typeB
FractionProtoPZ<google.golang.org/genproto/googleapis/type/fraction;fraction¢GTPbproto3'
|
||||
"\x0A\xCD\x01\x0A\x1Agoogle/type/fraction.proto\x12\x0Bgoogle.type\"2\x0A\x08Fraction\x12\x11\x0A\x09numerator\x18\x01 \x01(\x03\x12\x13\x0A\x0Bdenominator\x18\x02 \x01(\x03Bf\x0A\x0Fcom.google.typeB\x0DFractionProtoP\x01Z<google.golang.org/genproto/googleapis/type/fraction;fraction\xA2\x02\x03GTPb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
@@ -16,14 +16,7 @@ public static function initOnce() {
|
||||
}
|
||||
\GPBMetadata\Google\Protobuf\Timestamp::initOnce();
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
†
|
||||
google/type/interval.protogoogle.type"h
|
||||
Interval.
|
||||
|
||||
start_time (2.google.protobuf.Timestamp,
|
||||
end_time (2.google.protobuf.TimestampBi
|
||||
com.google.typeB
IntervalProtoPZ<google.golang.org/genproto/googleapis/type/interval;intervalø¢GTPbproto3'
|
||||
"\x0A\x83\x02\x0A\x1Agoogle/type/interval.proto\x12\x0Bgoogle.type\"h\x0A\x08Interval\x12.\x0A\x0Astart_time\x18\x01 \x01(\x0B2\x1A.google.protobuf.Timestamp\x12,\x0A\x08end_time\x18\x02 \x01(\x0B2\x1A.google.protobuf.TimestampBf\x0A\x0Fcom.google.typeB\x0DIntervalProtoP\x01Z<google.golang.org/genproto/googleapis/type/interval;interval\xA2\x02\x03GTPb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
@@ -15,13 +15,7 @@ public static function initOnce() {
|
||||
return;
|
||||
}
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
Ã
|
||||
google/type/latlng.protogoogle.type"-
|
||||
LatLng
|
||||
latitude (
|
||||
longitude (Bc
|
||||
com.google.typeBLatLngProtoPZ8google.golang.org/genproto/googleapis/type/latlng;latlngø¢GTPbproto3'
|
||||
"\x0A\xC0\x01\x0A\x18google/type/latlng.proto\x12\x0Bgoogle.type\"-\x0A\x06LatLng\x12\x10\x0A\x08latitude\x18\x01 \x01(\x01\x12\x11\x0A\x09longitude\x18\x02 \x01(\x01B`\x0A\x0Fcom.google.typeB\x0BLatLngProtoP\x01Z8google.golang.org/genproto/googleapis/type/latlng;latlng\xA2\x02\x03GTPb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
@@ -15,13 +15,7 @@ public static function initOnce() {
|
||||
return;
|
||||
}
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
é
|
||||
google/type/localized_text.protogoogle.type"4
|
||||
LocalizedText
|
||||
text (
|
||||
language_code ( Bz
|
||||
com.google.typeBLocalizedTextProtoPZHgoogle.golang.org/genproto/googleapis/type/localized_text;localized_textø¢GTPbproto3'
|
||||
"\x0A\xE6\x01\x0A google/type/localized_text.proto\x12\x0Bgoogle.type\"4\x0A\x0DLocalizedText\x12\x0C\x0A\x04text\x18\x01 \x01(\x09\x12\x15\x0A\x0Dlanguage_code\x18\x02 \x01(\x09Bw\x0A\x0Fcom.google.typeB\x12LocalizedTextProtoP\x01ZHgoogle.golang.org/genproto/googleapis/type/localized_text;localized_text\xA2\x02\x03GTPb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
@@ -15,15 +15,7 @@ public static function initOnce() {
|
||||
return;
|
||||
}
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
Î
|
||||
google/type/money.protogoogle.type"<
|
||||
Money
|
||||
currency_code (
|
||||
units (
|
||||
nanos (B`
|
||||
com.google.typeB
|
||||
MoneyProtoPZ6google.golang.org/genproto/googleapis/type/money;moneyø¢GTPbproto3'
|
||||
"\x0A\xCB\x01\x0A\x17google/type/money.proto\x12\x0Bgoogle.type\"<\x0A\x05Money\x12\x15\x0A\x0Dcurrency_code\x18\x01 \x01(\x09\x12\x0D\x0A\x05units\x18\x02 \x01(\x03\x12\x0D\x0A\x05nanos\x18\x03 \x01(\x05B]\x0A\x0Fcom.google.typeB\x0AMoneyProtoP\x01Z6google.golang.org/genproto/googleapis/type/money;money\xA2\x02\x03GTPb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
BIN
vendor/google/common-protos/metadata/Type/Month.php
vendored
BIN
vendor/google/common-protos/metadata/Type/Month.php
vendored
Binary file not shown.
Binary file not shown.
@@ -15,24 +15,7 @@ public static function initOnce() {
|
||||
return;
|
||||
}
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
±
|
||||
google/type/postal_address.protogoogle.type"ý
|
||||
PostalAddress
|
||||
revision (
|
||||
region_code (
|
||||
language_code (
|
||||
postal_code (
|
||||
sorting_code (
|
||||
administrative_area (
|
||||
locality (
|
||||
sublocality (
|
||||
address_lines (
|
||||
|
||||
recipients
|
||||
(
|
||||
organization ( Bx
|
||||
com.google.typeBPostalAddressProtoPZFgoogle.golang.org/genproto/googleapis/type/postaladdress;postaladdressø¢GTPbproto3'
|
||||
"\x0A\xAE\x03\x0A google/type/postal_address.proto\x12\x0Bgoogle.type\"\xFD\x01\x0A\x0DPostalAddress\x12\x10\x0A\x08revision\x18\x01 \x01(\x05\x12\x13\x0A\x0Bregion_code\x18\x02 \x01(\x09\x12\x15\x0A\x0Dlanguage_code\x18\x03 \x01(\x09\x12\x13\x0A\x0Bpostal_code\x18\x04 \x01(\x09\x12\x14\x0A\x0Csorting_code\x18\x05 \x01(\x09\x12\x1B\x0A\x13administrative_area\x18\x06 \x01(\x09\x12\x10\x0A\x08locality\x18\x07 \x01(\x09\x12\x13\x0A\x0Bsublocality\x18\x08 \x01(\x09\x12\x15\x0A\x0Daddress_lines\x18\x09 \x03(\x09\x12\x12\x0A\x0Arecipients\x18\x0A \x03(\x09\x12\x14\x0A\x0Corganization\x18\x0B \x01(\x09Bu\x0A\x0Fcom.google.typeB\x12PostalAddressProtoP\x01ZFgoogle.golang.org/genproto/googleapis/type/postaladdress;postaladdress\xA2\x02\x03GTPb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
@@ -15,16 +15,7 @@ public static function initOnce() {
|
||||
return;
|
||||
}
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
Þ
|
||||
google/type/quaternion.protogoogle.type"8
|
||||
|
||||
Quaternion
|
||||
x (
|
||||
y (
|
||||
z (
|
||||
w (Bo
|
||||
com.google.typeBQuaternionProtoPZ@google.golang.org/genproto/googleapis/type/quaternion;quaternionø¢GTPbproto3'
|
||||
"\x0A\xDB\x01\x0A\x1Cgoogle/type/quaternion.proto\x12\x0Bgoogle.type\"8\x0A\x0AQuaternion\x12\x09\x0A\x01x\x18\x01 \x01(\x01\x12\x09\x0A\x01y\x18\x02 \x01(\x01\x12\x09\x0A\x01z\x18\x03 \x01(\x01\x12\x09\x0A\x01w\x18\x04 \x01(\x01Bl\x0A\x0Fcom.google.typeB\x0FQuaternionProtoP\x01Z@google.golang.org/genproto/googleapis/type/quaternion;quaternion\xA2\x02\x03GTPb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
@@ -15,15 +15,7 @@ public static function initOnce() {
|
||||
return;
|
||||
}
|
||||
$pool->internalAddGeneratedFile(
|
||||
'
|
||||
í
|
||||
google/type/timeofday.protogoogle.type"K
|
||||
TimeOfDay
|
||||
hours (
|
||||
minutes (
|
||||
seconds (
|
||||
nanos (Bl
|
||||
com.google.typeBTimeOfDayProtoPZ>google.golang.org/genproto/googleapis/type/timeofday;timeofdayø¢GTPbproto3'
|
||||
"\x0A\xEA\x01\x0A\x1Bgoogle/type/timeofday.proto\x12\x0Bgoogle.type\"K\x0A\x09TimeOfDay\x12\x0D\x0A\x05hours\x18\x01 \x01(\x05\x12\x0F\x0A\x07minutes\x18\x02 \x01(\x05\x12\x0F\x0A\x07seconds\x18\x03 \x01(\x05\x12\x0D\x0A\x05nanos\x18\x04 \x01(\x05Bi\x0A\x0Fcom.google.typeB\x0ETimeOfDayProtoP\x01Z>google.golang.org/genproto/googleapis/type/timeofday;timeofday\xA2\x02\x03GTPb\x06proto3"
|
||||
, true);
|
||||
|
||||
static::$is_initialized = true;
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
namespace Google\Api;
|
||||
|
||||
use Google\Protobuf\Internal\GPBType;
|
||||
use Google\Protobuf\Internal\RepeatedField;
|
||||
use Google\Protobuf\Internal\GPBUtil;
|
||||
use Google\Protobuf\RepeatedField;
|
||||
|
||||
/**
|
||||
* Generated advice about this change, used for providing more
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
namespace Google\Api;
|
||||
|
||||
use Google\Protobuf\Internal\GPBType;
|
||||
use Google\Protobuf\Internal\RepeatedField;
|
||||
use Google\Protobuf\Internal\GPBUtil;
|
||||
use Google\Protobuf\RepeatedField;
|
||||
|
||||
/**
|
||||
* Configuration for an authentication provider, including support for
|
||||
@@ -30,7 +30,7 @@ class AuthProvider extends \Google\Protobuf\Internal\Message
|
||||
* https://tools.ietf.org/html/draft-ietf-oauth-json-web-token-32#section-4.1.1
|
||||
* Usually a URL or an email address.
|
||||
* Example: https://securetoken.google.com
|
||||
* Example: 1234567-compute@developer.gserviceaccount.com
|
||||
* Example: 1234567-compute\@developer.gserviceaccount.com
|
||||
*
|
||||
* Generated from protobuf field <code>string issuer = 2;</code>
|
||||
*/
|
||||
@@ -114,7 +114,7 @@ class AuthProvider extends \Google\Protobuf\Internal\Message
|
||||
* https://tools.ietf.org/html/draft-ietf-oauth-json-web-token-32#section-4.1.1
|
||||
* Usually a URL or an email address.
|
||||
* Example: https://securetoken.google.com
|
||||
* Example: 1234567-compute@developer.gserviceaccount.com
|
||||
* Example: 1234567-compute\@developer.gserviceaccount.com
|
||||
* @type string $jwks_uri
|
||||
* URL of the provider's public key set to validate signature of the JWT. See
|
||||
* [OpenID
|
||||
@@ -146,7 +146,7 @@ class AuthProvider extends \Google\Protobuf\Internal\Message
|
||||
* @type string $authorization_url
|
||||
* Redirect URL if JWT token is required but not present or is expired.
|
||||
* Implement authorizationUrl of securityDefinitions in OpenAPI spec.
|
||||
* @type array<\Google\Api\JwtLocation>|\Google\Protobuf\Internal\RepeatedField $jwt_locations
|
||||
* @type \Google\Api\JwtLocation[] $jwt_locations
|
||||
* Defines the locations to extract the JWT. For now it is only used by the
|
||||
* Cloud Endpoints to store the OpenAPI extension [x-google-jwt-locations]
|
||||
* (https://cloud.google.com/endpoints/docs/openapi/openapi-extensions#x-google-jwt-locations)
|
||||
@@ -204,7 +204,7 @@ public function setId($var)
|
||||
* https://tools.ietf.org/html/draft-ietf-oauth-json-web-token-32#section-4.1.1
|
||||
* Usually a URL or an email address.
|
||||
* Example: https://securetoken.google.com
|
||||
* Example: 1234567-compute@developer.gserviceaccount.com
|
||||
* Example: 1234567-compute\@developer.gserviceaccount.com
|
||||
*
|
||||
* Generated from protobuf field <code>string issuer = 2;</code>
|
||||
* @return string
|
||||
@@ -219,7 +219,7 @@ public function getIssuer()
|
||||
* https://tools.ietf.org/html/draft-ietf-oauth-json-web-token-32#section-4.1.1
|
||||
* Usually a URL or an email address.
|
||||
* Example: https://securetoken.google.com
|
||||
* Example: 1234567-compute@developer.gserviceaccount.com
|
||||
* Example: 1234567-compute\@developer.gserviceaccount.com
|
||||
*
|
||||
* Generated from protobuf field <code>string issuer = 2;</code>
|
||||
* @param string $var
|
||||
@@ -379,7 +379,7 @@ public function setAuthorizationUrl($var)
|
||||
* - query: access_token
|
||||
*
|
||||
* Generated from protobuf field <code>repeated .google.api.JwtLocation jwt_locations = 6;</code>
|
||||
* @return \Google\Protobuf\Internal\RepeatedField
|
||||
* @return RepeatedField<\Google\Api\JwtLocation>
|
||||
*/
|
||||
public function getJwtLocations()
|
||||
{
|
||||
@@ -404,7 +404,7 @@ public function getJwtLocations()
|
||||
* - query: access_token
|
||||
*
|
||||
* Generated from protobuf field <code>repeated .google.api.JwtLocation jwt_locations = 6;</code>
|
||||
* @param array<\Google\Api\JwtLocation>|\Google\Protobuf\Internal\RepeatedField $var
|
||||
* @param \Google\Api\JwtLocation[] $var
|
||||
* @return $this
|
||||
*/
|
||||
public function setJwtLocations($var)
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
namespace Google\Api;
|
||||
|
||||
use Google\Protobuf\Internal\GPBType;
|
||||
use Google\Protobuf\Internal\RepeatedField;
|
||||
use Google\Protobuf\Internal\GPBUtil;
|
||||
use Google\Protobuf\RepeatedField;
|
||||
|
||||
/**
|
||||
* User-defined authentication requirements, including support for
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
namespace Google\Api;
|
||||
|
||||
use Google\Protobuf\Internal\GPBType;
|
||||
use Google\Protobuf\Internal\RepeatedField;
|
||||
use Google\Protobuf\Internal\GPBUtil;
|
||||
use Google\Protobuf\RepeatedField;
|
||||
|
||||
/**
|
||||
* `Authentication` defines the authentication configuration for API methods
|
||||
@@ -50,10 +50,10 @@ class Authentication extends \Google\Protobuf\Internal\Message
|
||||
* @param array $data {
|
||||
* Optional. Data for populating the Message object.
|
||||
*
|
||||
* @type array<\Google\Api\AuthenticationRule>|\Google\Protobuf\Internal\RepeatedField $rules
|
||||
* @type \Google\Api\AuthenticationRule[] $rules
|
||||
* A list of authentication rules that apply to individual API methods.
|
||||
* **NOTE:** All service configuration rules follow "last one wins" order.
|
||||
* @type array<\Google\Api\AuthProvider>|\Google\Protobuf\Internal\RepeatedField $providers
|
||||
* @type \Google\Api\AuthProvider[] $providers
|
||||
* Defines a set of authentication providers that a service supports.
|
||||
* }
|
||||
*/
|
||||
@@ -67,7 +67,7 @@ public function __construct($data = NULL) {
|
||||
* **NOTE:** All service configuration rules follow "last one wins" order.
|
||||
*
|
||||
* Generated from protobuf field <code>repeated .google.api.AuthenticationRule rules = 3;</code>
|
||||
* @return \Google\Protobuf\Internal\RepeatedField
|
||||
* @return RepeatedField<\Google\Api\AuthenticationRule>
|
||||
*/
|
||||
public function getRules()
|
||||
{
|
||||
@@ -79,7 +79,7 @@ public function getRules()
|
||||
* **NOTE:** All service configuration rules follow "last one wins" order.
|
||||
*
|
||||
* Generated from protobuf field <code>repeated .google.api.AuthenticationRule rules = 3;</code>
|
||||
* @param array<\Google\Api\AuthenticationRule>|\Google\Protobuf\Internal\RepeatedField $var
|
||||
* @param \Google\Api\AuthenticationRule[] $var
|
||||
* @return $this
|
||||
*/
|
||||
public function setRules($var)
|
||||
@@ -94,7 +94,7 @@ public function setRules($var)
|
||||
* Defines a set of authentication providers that a service supports.
|
||||
*
|
||||
* Generated from protobuf field <code>repeated .google.api.AuthProvider providers = 4;</code>
|
||||
* @return \Google\Protobuf\Internal\RepeatedField
|
||||
* @return RepeatedField<\Google\Api\AuthProvider>
|
||||
*/
|
||||
public function getProviders()
|
||||
{
|
||||
@@ -105,7 +105,7 @@ public function getProviders()
|
||||
* Defines a set of authentication providers that a service supports.
|
||||
*
|
||||
* Generated from protobuf field <code>repeated .google.api.AuthProvider providers = 4;</code>
|
||||
* @param array<\Google\Api\AuthProvider>|\Google\Protobuf\Internal\RepeatedField $var
|
||||
* @param \Google\Api\AuthProvider[] $var
|
||||
* @return $this
|
||||
*/
|
||||
public function setProviders($var)
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
namespace Google\Api;
|
||||
|
||||
use Google\Protobuf\Internal\GPBType;
|
||||
use Google\Protobuf\Internal\RepeatedField;
|
||||
use Google\Protobuf\Internal\GPBUtil;
|
||||
use Google\Protobuf\RepeatedField;
|
||||
|
||||
/**
|
||||
* Authentication rules for the service.
|
||||
@@ -64,7 +64,7 @@ class AuthenticationRule extends \Google\Protobuf\Internal\Message
|
||||
* @type bool $allow_without_credential
|
||||
* If true, the service accepts API keys without any other credential.
|
||||
* This flag only applies to HTTP and gRPC requests.
|
||||
* @type array<\Google\Api\AuthRequirement>|\Google\Protobuf\Internal\RepeatedField $requirements
|
||||
* @type \Google\Api\AuthRequirement[] $requirements
|
||||
* Requirements for additional authentication providers.
|
||||
* }
|
||||
*/
|
||||
@@ -171,7 +171,7 @@ public function setAllowWithoutCredential($var)
|
||||
* Requirements for additional authentication providers.
|
||||
*
|
||||
* Generated from protobuf field <code>repeated .google.api.AuthRequirement requirements = 7;</code>
|
||||
* @return \Google\Protobuf\Internal\RepeatedField
|
||||
* @return RepeatedField<\Google\Api\AuthRequirement>
|
||||
*/
|
||||
public function getRequirements()
|
||||
{
|
||||
@@ -182,7 +182,7 @@ public function getRequirements()
|
||||
* Requirements for additional authentication providers.
|
||||
*
|
||||
* Generated from protobuf field <code>repeated .google.api.AuthRequirement requirements = 7;</code>
|
||||
* @param array<\Google\Api\AuthRequirement>|\Google\Protobuf\Internal\RepeatedField $var
|
||||
* @param \Google\Api\AuthRequirement[] $var
|
||||
* @return $this
|
||||
*/
|
||||
public function setRequirements($var)
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
namespace Google\Api;
|
||||
|
||||
use Google\Protobuf\Internal\GPBType;
|
||||
use Google\Protobuf\Internal\RepeatedField;
|
||||
use Google\Protobuf\Internal\GPBUtil;
|
||||
use Google\Protobuf\RepeatedField;
|
||||
|
||||
/**
|
||||
* `Backend` defines the backend configuration for a service.
|
||||
@@ -29,7 +29,7 @@ class Backend extends \Google\Protobuf\Internal\Message
|
||||
* @param array $data {
|
||||
* Optional. Data for populating the Message object.
|
||||
*
|
||||
* @type array<\Google\Api\BackendRule>|\Google\Protobuf\Internal\RepeatedField $rules
|
||||
* @type \Google\Api\BackendRule[] $rules
|
||||
* A list of API backend rules that apply to individual API methods.
|
||||
* **NOTE:** All service configuration rules follow "last one wins" order.
|
||||
* }
|
||||
@@ -44,7 +44,7 @@ public function __construct($data = NULL) {
|
||||
* **NOTE:** All service configuration rules follow "last one wins" order.
|
||||
*
|
||||
* Generated from protobuf field <code>repeated .google.api.BackendRule rules = 1;</code>
|
||||
* @return \Google\Protobuf\Internal\RepeatedField
|
||||
* @return RepeatedField<\Google\Api\BackendRule>
|
||||
*/
|
||||
public function getRules()
|
||||
{
|
||||
@@ -56,7 +56,7 @@ public function getRules()
|
||||
* **NOTE:** All service configuration rules follow "last one wins" order.
|
||||
*
|
||||
* Generated from protobuf field <code>repeated .google.api.BackendRule rules = 1;</code>
|
||||
* @param array<\Google\Api\BackendRule>|\Google\Protobuf\Internal\RepeatedField $var
|
||||
* @param \Google\Api\BackendRule[] $var
|
||||
* @return $this
|
||||
*/
|
||||
public function setRules($var)
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
namespace Google\Api;
|
||||
|
||||
use Google\Protobuf\Internal\GPBType;
|
||||
use Google\Protobuf\Internal\RepeatedField;
|
||||
use Google\Protobuf\Internal\GPBUtil;
|
||||
use Google\Protobuf\RepeatedField;
|
||||
|
||||
/**
|
||||
* A backend rule provides configuration for an individual API element.
|
||||
@@ -65,6 +65,11 @@ class BackendRule extends \Google\Protobuf\Internal\Message
|
||||
*/
|
||||
protected $operation_deadline = 0.0;
|
||||
/**
|
||||
* Path translation specifies how to combine the backend address with the
|
||||
* request path in order to produce the appropriate forwarding URL for the
|
||||
* request. See [PathTranslation][google.api.BackendRule.PathTranslation] for
|
||||
* more details.
|
||||
*
|
||||
* Generated from protobuf field <code>.google.api.BackendRule.PathTranslation path_translation = 6;</code>
|
||||
*/
|
||||
protected $path_translation = 0;
|
||||
@@ -95,6 +100,15 @@ class BackendRule extends \Google\Protobuf\Internal\Message
|
||||
* Generated from protobuf field <code>map<string, .google.api.BackendRule> overrides_by_request_protocol = 10;</code>
|
||||
*/
|
||||
private $overrides_by_request_protocol;
|
||||
/**
|
||||
* The load balancing policy used for connection to the application backend.
|
||||
* Defined as an arbitrary string to accomondate custom load balancing
|
||||
* policies supported by the underlying channel, but suggest most users use
|
||||
* one of the standard policies, such as the default, "RoundRobin".
|
||||
*
|
||||
* Generated from protobuf field <code>string load_balancing_policy = 11;</code>
|
||||
*/
|
||||
protected $load_balancing_policy = '';
|
||||
protected $authentication;
|
||||
|
||||
/**
|
||||
@@ -132,6 +146,10 @@ class BackendRule extends \Google\Protobuf\Internal\Message
|
||||
* The number of seconds to wait for the completion of a long running
|
||||
* operation. The default is no deadline.
|
||||
* @type int $path_translation
|
||||
* Path translation specifies how to combine the backend address with the
|
||||
* request path in order to produce the appropriate forwarding URL for the
|
||||
* request. See [PathTranslation][google.api.BackendRule.PathTranslation] for
|
||||
* more details.
|
||||
* @type string $jwt_audience
|
||||
* The JWT audience is used when generating a JWT ID token for the backend.
|
||||
* This ID token will be added in the HTTP "authorization" header, and sent
|
||||
@@ -160,6 +178,11 @@ class BackendRule extends \Google\Protobuf\Internal\Message
|
||||
* for more details on the supported values.
|
||||
* @type array|\Google\Protobuf\Internal\MapField $overrides_by_request_protocol
|
||||
* The map between request protocol and the backend address.
|
||||
* @type string $load_balancing_policy
|
||||
* The load balancing policy used for connection to the application backend.
|
||||
* Defined as an arbitrary string to accomondate custom load balancing
|
||||
* policies supported by the underlying channel, but suggest most users use
|
||||
* one of the standard policies, such as the default, "RoundRobin".
|
||||
* }
|
||||
*/
|
||||
public function __construct($data = NULL) {
|
||||
@@ -340,6 +363,11 @@ public function setOperationDeadline($var)
|
||||
}
|
||||
|
||||
/**
|
||||
* Path translation specifies how to combine the backend address with the
|
||||
* request path in order to produce the appropriate forwarding URL for the
|
||||
* request. See [PathTranslation][google.api.BackendRule.PathTranslation] for
|
||||
* more details.
|
||||
*
|
||||
* Generated from protobuf field <code>.google.api.BackendRule.PathTranslation path_translation = 6;</code>
|
||||
* @return int
|
||||
*/
|
||||
@@ -349,6 +377,11 @@ public function getPathTranslation()
|
||||
}
|
||||
|
||||
/**
|
||||
* Path translation specifies how to combine the backend address with the
|
||||
* request path in order to produce the appropriate forwarding URL for the
|
||||
* request. See [PathTranslation][google.api.BackendRule.PathTranslation] for
|
||||
* more details.
|
||||
*
|
||||
* Generated from protobuf field <code>.google.api.BackendRule.PathTranslation path_translation = 6;</code>
|
||||
* @param int $var
|
||||
* @return $this
|
||||
@@ -515,6 +548,38 @@ public function setOverridesByRequestProtocol($var)
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* The load balancing policy used for connection to the application backend.
|
||||
* Defined as an arbitrary string to accomondate custom load balancing
|
||||
* policies supported by the underlying channel, but suggest most users use
|
||||
* one of the standard policies, such as the default, "RoundRobin".
|
||||
*
|
||||
* Generated from protobuf field <code>string load_balancing_policy = 11;</code>
|
||||
* @return string
|
||||
*/
|
||||
public function getLoadBalancingPolicy()
|
||||
{
|
||||
return $this->load_balancing_policy;
|
||||
}
|
||||
|
||||
/**
|
||||
* The load balancing policy used for connection to the application backend.
|
||||
* Defined as an arbitrary string to accomondate custom load balancing
|
||||
* policies supported by the underlying channel, but suggest most users use
|
||||
* one of the standard policies, such as the default, "RoundRobin".
|
||||
*
|
||||
* Generated from protobuf field <code>string load_balancing_policy = 11;</code>
|
||||
* @param string $var
|
||||
* @return $this
|
||||
*/
|
||||
public function setLoadBalancingPolicy($var)
|
||||
{
|
||||
GPBUtil::checkString($var, True);
|
||||
$this->load_balancing_policy = $var;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user