404

[ Avaa Bypassed ]




Upload:

Command:

botdev@13.59.225.66: ~ $
<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: google/api/endpoint.proto

namespace Google\Api;

use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;

/**
 * `Endpoint` describes a network endpoint that serves a set of APIs.
 * A service may expose any number of endpoints, and all endpoints share the
 * same service configuration, such as quota configuration and monitoring
 * configuration.
 * Example service configuration:
 *     name: library-example.googleapis.com
 *     endpoints:
 *       # Below entry makes 'google.example.library.v1.Library'
 *       # API be served from endpoint address library-example.googleapis.com.
 *       # It also allows HTTP OPTIONS calls to be passed to the backend, for
 *       # it to decide whether the subsequent cross-origin request is
 *       # allowed to proceed.
 *     - name: library-example.googleapis.com
 *       allow_cors: true
 *
 * Generated from protobuf message <code>google.api.Endpoint</code>
 */
class Endpoint extends \Google\Protobuf\Internal\Message
{
    /**
     * The canonical name of this endpoint.
     *
     * Generated from protobuf field <code>string name = 1;</code>
     */
    private $name = '';
    /**
     * DEPRECATED: This field is no longer supported. Instead of using aliases,
     * please specify multiple [google.api.Endpoint][google.api.Endpoint] for each of the intended
     * aliases.
     * Additional names that this endpoint will be hosted on.
     *
     * Generated from protobuf field <code>repeated string aliases = 2;</code>
     */
    private $aliases;
    /**
     * The list of features enabled on this endpoint.
     *
     * Generated from protobuf field <code>repeated string features = 4;</code>
     */
    private $features;
    /**
     * The specification of an Internet routable address of API frontend that will
     * handle requests to this [API Endpoint](https://cloud.google.com/apis/design/glossary).
     * It should be either a valid IPv4 address or a fully-qualified domain name.
     * For example, "8.8.8.8" or "myservice.appspot.com".
     *
     * Generated from protobuf field <code>string target = 101;</code>
     */
    private $target = '';
    /**
     * Allowing
     * [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing), aka
     * cross-domain traffic, would allow the backends served from this endpoint to
     * receive and respond to HTTP OPTIONS requests. The response will be used by
     * the browser to determine whether the subsequent cross-origin request is
     * allowed to proceed.
     *
     * Generated from protobuf field <code>bool allow_cors = 5;</code>
     */
    private $allow_cors = false;

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type string $name
     *           The canonical name of this endpoint.
     *     @type string[]|\Google\Protobuf\Internal\RepeatedField $aliases
     *           DEPRECATED: This field is no longer supported. Instead of using aliases,
     *           please specify multiple [google.api.Endpoint][google.api.Endpoint] for each of the intended
     *           aliases.
     *           Additional names that this endpoint will be hosted on.
     *     @type string[]|\Google\Protobuf\Internal\RepeatedField $features
     *           The list of features enabled on this endpoint.
     *     @type string $target
     *           The specification of an Internet routable address of API frontend that will
     *           handle requests to this [API Endpoint](https://cloud.google.com/apis/design/glossary).
     *           It should be either a valid IPv4 address or a fully-qualified domain name.
     *           For example, "8.8.8.8" or "myservice.appspot.com".
     *     @type bool $allow_cors
     *           Allowing
     *           [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing), aka
     *           cross-domain traffic, would allow the backends served from this endpoint to
     *           receive and respond to HTTP OPTIONS requests. The response will be used by
     *           the browser to determine whether the subsequent cross-origin request is
     *           allowed to proceed.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Api\Endpoint::initOnce();
        parent::__construct($data);
    }

    /**
     * The canonical name of this endpoint.
     *
     * Generated from protobuf field <code>string name = 1;</code>
     * @return string
     */
    public function getName()
    {
        return $this->name;
    }

    /**
     * The canonical name of this endpoint.
     *
     * Generated from protobuf field <code>string name = 1;</code>
     * @param string $var
     * @return $this
     */
    public function setName($var)
    {
        GPBUtil::checkString($var, True);
        $this->name = $var;

        return $this;
    }

    /**
     * DEPRECATED: This field is no longer supported. Instead of using aliases,
     * please specify multiple [google.api.Endpoint][google.api.Endpoint] for each of the intended
     * aliases.
     * Additional names that this endpoint will be hosted on.
     *
     * Generated from protobuf field <code>repeated string aliases = 2;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    public function getAliases()
    {
        return $this->aliases;
    }

    /**
     * DEPRECATED: This field is no longer supported. Instead of using aliases,
     * please specify multiple [google.api.Endpoint][google.api.Endpoint] for each of the intended
     * aliases.
     * Additional names that this endpoint will be hosted on.
     *
     * Generated from protobuf field <code>repeated string aliases = 2;</code>
     * @param string[]|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    public function setAliases($var)
    {
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
        $this->aliases = $arr;

        return $this;
    }

    /**
     * The list of features enabled on this endpoint.
     *
     * Generated from protobuf field <code>repeated string features = 4;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    public function getFeatures()
    {
        return $this->features;
    }

    /**
     * The list of features enabled on this endpoint.
     *
     * Generated from protobuf field <code>repeated string features = 4;</code>
     * @param string[]|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    public function setFeatures($var)
    {
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
        $this->features = $arr;

        return $this;
    }

    /**
     * The specification of an Internet routable address of API frontend that will
     * handle requests to this [API Endpoint](https://cloud.google.com/apis/design/glossary).
     * It should be either a valid IPv4 address or a fully-qualified domain name.
     * For example, "8.8.8.8" or "myservice.appspot.com".
     *
     * Generated from protobuf field <code>string target = 101;</code>
     * @return string
     */
    public function getTarget()
    {
        return $this->target;
    }

    /**
     * The specification of an Internet routable address of API frontend that will
     * handle requests to this [API Endpoint](https://cloud.google.com/apis/design/glossary).
     * It should be either a valid IPv4 address or a fully-qualified domain name.
     * For example, "8.8.8.8" or "myservice.appspot.com".
     *
     * Generated from protobuf field <code>string target = 101;</code>
     * @param string $var
     * @return $this
     */
    public function setTarget($var)
    {
        GPBUtil::checkString($var, True);
        $this->target = $var;

        return $this;
    }

    /**
     * Allowing
     * [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing), aka
     * cross-domain traffic, would allow the backends served from this endpoint to
     * receive and respond to HTTP OPTIONS requests. The response will be used by
     * the browser to determine whether the subsequent cross-origin request is
     * allowed to proceed.
     *
     * Generated from protobuf field <code>bool allow_cors = 5;</code>
     * @return bool
     */
    public function getAllowCors()
    {
        return $this->allow_cors;
    }

    /**
     * Allowing
     * [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing), aka
     * cross-domain traffic, would allow the backends served from this endpoint to
     * receive and respond to HTTP OPTIONS requests. The response will be used by
     * the browser to determine whether the subsequent cross-origin request is
     * allowed to proceed.
     *
     * Generated from protobuf field <code>bool allow_cors = 5;</code>
     * @param bool $var
     * @return $this
     */
    public function setAllowCors($var)
    {
        GPBUtil::checkBool($var);
        $this->allow_cors = $var;

        return $this;
    }

}


Filemanager

Name Type Size Permission Actions
BackendRule Folder 2755
Billing Folder 2755
Distribution Folder 2755
Expr Folder 2755
LabelDescriptor Folder 2755
Logging Folder 2755
MetricDescriptor Folder 2755
Monitoring Folder 2755
Property Folder 2755
ResourceDescriptor Folder 2755
Advice.php File 1.97 KB 0644
AuthProvider.php File 11.57 KB 0644
AuthRequirement.php File 6.24 KB 0644
Authentication.php File 3.93 KB 0644
AuthenticationRule.php File 5.47 KB 0644
Backend.php File 2.23 KB 0644
BackendRule.php File 10.54 KB 0644
BackendRule_PathTranslation.php File 540 B 0644
Billing.php File 3.57 KB 0644
Billing_BillingDestination.php File 535 B 0644
ChangeType.php File 1.96 KB 0644
ConfigChange.php File 8.64 KB 0644
Context.php File 2.62 KB 0644
ContextRule.php File 4.04 KB 0644
Control.php File 2.01 KB 0644
CustomHttpPattern.php File 2.27 KB 0644
Distribution.php File 14.62 KB 0644
Distribution_BucketOptions.php File 540 B 0644
Distribution_BucketOptions_Explicit.php File 585 B 0644
Distribution_BucketOptions_Exponential.php File 600 B 0644
Distribution_BucketOptions_Linear.php File 575 B 0644
Distribution_Exemplar.php File 515 B 0644
Distribution_Range.php File 500 B 0644
Documentation.php File 10.3 KB 0644
DocumentationRule.php File 5.14 KB 0644
Endpoint.php File 9.03 KB 0644
FieldBehavior.php File 3.19 KB 0644
Http.php File 4.35 KB 0644
HttpBody.php File 5.03 KB 0644
HttpRule.php File 19.88 KB 0644
LabelDescriptor.php File 3.24 KB 0644
LabelDescriptor_ValueType.php File 528 B 0644
LaunchStage.php File 3.72 KB 0644
LogDescriptor.php File 6.62 KB 0644
Logging.php File 5.94 KB 0644
Logging_LoggingDestination.php File 535 B 0644
Metric.php File 3.43 KB 0644
MetricDescriptor.php File 32.77 KB 0644
MetricDescriptor_MetricDescriptorMetadata.php File 609 B 0644
MetricDescriptor_MetricKind.php File 539 B 0644
MetricDescriptor_ValueType.php File 534 B 0644
MetricRule.php File 4.18 KB 0644
MonitoredResource.php File 4.86 KB 0644
MonitoredResourceDescriptor.php File 9.68 KB 0644
MonitoredResourceMetadata.php File 5.37 KB 0644
Monitoring.php File 6.48 KB 0644
Monitoring_MonitoringDestination.php File 568 B 0644
OAuthRequirements.php File 3.62 KB 0644
Page.php File 6.68 KB 0644
ProjectProperties.php File 2.54 KB 0644
Property.php File 3.56 KB 0644
Property_PropertyType.php File 511 B 0644
Quota.php File 5.19 KB 0644
QuotaLimit.php File 34.64 KB 0644
ResourceDescriptor.php File 19.52 KB 0644
ResourceDescriptor_History.php File 536 B 0644
ResourceReference.php File 4.72 KB 0644
RoutingParameter.php File 12.94 KB 0644
RoutingRule.php File 13.58 KB 0644
Service.php File 33.7 KB 0644
SourceInfo.php File 1.87 KB 0644
SystemParameter.php File 3.95 KB 0644
SystemParameterRule.php File 4.41 KB 0644
SystemParameters.php File 5.93 KB 0644
Usage.php File 6.66 KB 0644
UsageRule.php File 6.03 KB 0644