!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)

/uploads/script/vendor/google/apiclient-services/src/Google/Service/Datastore/Resource/   drwxr-xr-x
Free 12.99 GB of 57.97 GB (22.42%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Projects.php (8.03 KB)      -rw-r--r--
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.
 */

/**
 * The "projects" collection of methods.
 * Typical usage is:
 *  <code>
 *   $datastoreService = new Google_Service_Datastore(...);
 *   $projects = $datastoreService->projects;
 *  </code>
 */
class Google_Service_Datastore_Resource_Projects extends Google_Service_Resource
{
  
/**
   * Allocates IDs for the given keys, which is useful for referencing an entity
   * before it is inserted. (projects.allocateIds)
   *
   * @param string $projectId Required. The ID of the project against which to
   * make the request.
   * @param Google_Service_Datastore_AllocateIdsRequest $postBody
   * @param array $optParams Optional parameters.
   * @return Google_Service_Datastore_AllocateIdsResponse
   */
  
public function allocateIds($projectIdGoogle_Service_Datastore_AllocateIdsRequest $postBody$optParams = array())
  {
    
$params = array('projectId' => $projectId'postBody' => $postBody);
    
$params array_merge($params$optParams);
    return 
$this->call('allocateIds', array($params), "Google_Service_Datastore_AllocateIdsResponse");
  }
  
/**
   * Begins a new transaction. (projects.beginTransaction)
   *
   * @param string $projectId Required. The ID of the project against which to
   * make the request.
   * @param Google_Service_Datastore_BeginTransactionRequest $postBody
   * @param array $optParams Optional parameters.
   * @return Google_Service_Datastore_BeginTransactionResponse
   */
  
public function beginTransaction($projectIdGoogle_Service_Datastore_BeginTransactionRequest $postBody$optParams = array())
  {
    
$params = array('projectId' => $projectId'postBody' => $postBody);
    
$params array_merge($params$optParams);
    return 
$this->call('beginTransaction', array($params), "Google_Service_Datastore_BeginTransactionResponse");
  }
  
/**
   * Commits a transaction, optionally creating, deleting or modifying some
   * entities. (projects.commit)
   *
   * @param string $projectId Required. The ID of the project against which to
   * make the request.
   * @param Google_Service_Datastore_CommitRequest $postBody
   * @param array $optParams Optional parameters.
   * @return Google_Service_Datastore_CommitResponse
   */
  
public function commit($projectIdGoogle_Service_Datastore_CommitRequest $postBody$optParams = array())
  {
    
$params = array('projectId' => $projectId'postBody' => $postBody);
    
$params array_merge($params$optParams);
    return 
$this->call('commit', array($params), "Google_Service_Datastore_CommitResponse");
  }
  
/**
   * Exports a copy of all or a subset of entities from Google Cloud Datastore to
   * another storage system, such as Google Cloud Storage. Recent updates to
   * entities may not be reflected in the export. The export occurs in the
   * background and its progress can be monitored and managed via the Operation
   * resource that is created. The output of an export may only be used once the
   * associated operation is done. If an export operation is cancelled before
   * completion it may leave partial data behind in Google Cloud Storage.
   * (projects.export)
   *
   * @param string $projectId Required. Project ID against which to make the
   * request.
   * @param Google_Service_Datastore_GoogleDatastoreAdminV1ExportEntitiesRequest $postBody
   * @param array $optParams Optional parameters.
   * @return Google_Service_Datastore_GoogleLongrunningOperation
   */
  
public function export($projectIdGoogle_Service_Datastore_GoogleDatastoreAdminV1ExportEntitiesRequest $postBody$optParams = array())
  {
    
$params = array('projectId' => $projectId'postBody' => $postBody);
    
$params array_merge($params$optParams);
    return 
$this->call('export', array($params), "Google_Service_Datastore_GoogleLongrunningOperation");
  }
  
/**
   * Imports entities into Google Cloud Datastore. Existing entities with the same
   * key are overwritten. The import occurs in the background and its progress can
   * be monitored and managed via the Operation resource that is created. If an
   * ImportEntities operation is cancelled, it is possible that a subset of the
   * data has already been imported to Cloud Datastore. (projects.import)
   *
   * @param string $projectId Required. Project ID against which to make the
   * request.
   * @param Google_Service_Datastore_GoogleDatastoreAdminV1ImportEntitiesRequest $postBody
   * @param array $optParams Optional parameters.
   * @return Google_Service_Datastore_GoogleLongrunningOperation
   */
  
public function import($projectIdGoogle_Service_Datastore_GoogleDatastoreAdminV1ImportEntitiesRequest $postBody$optParams = array())
  {
    
$params = array('projectId' => $projectId'postBody' => $postBody);
    
$params array_merge($params$optParams);
    return 
$this->call('import', array($params), "Google_Service_Datastore_GoogleLongrunningOperation");
  }
  
/**
   * Looks up entities by key. (projects.lookup)
   *
   * @param string $projectId Required. The ID of the project against which to
   * make the request.
   * @param Google_Service_Datastore_LookupRequest $postBody
   * @param array $optParams Optional parameters.
   * @return Google_Service_Datastore_LookupResponse
   */
  
public function lookup($projectIdGoogle_Service_Datastore_LookupRequest $postBody$optParams = array())
  {
    
$params = array('projectId' => $projectId'postBody' => $postBody);
    
$params array_merge($params$optParams);
    return 
$this->call('lookup', array($params), "Google_Service_Datastore_LookupResponse");
  }
  
/**
   * Prevents the supplied keys' IDs from being auto-allocated by Cloud Datastore.
   * (projects.reserveIds)
   *
   * @param string $projectId Required. The ID of the project against which to
   * make the request.
   * @param Google_Service_Datastore_ReserveIdsRequest $postBody
   * @param array $optParams Optional parameters.
   * @return Google_Service_Datastore_ReserveIdsResponse
   */
  
public function reserveIds($projectIdGoogle_Service_Datastore_ReserveIdsRequest $postBody$optParams = array())
  {
    
$params = array('projectId' => $projectId'postBody' => $postBody);
    
$params array_merge($params$optParams);
    return 
$this->call('reserveIds', array($params), "Google_Service_Datastore_ReserveIdsResponse");
  }
  
/**
   * Rolls back a transaction. (projects.rollback)
   *
   * @param string $projectId Required. The ID of the project against which to
   * make the request.
   * @param Google_Service_Datastore_RollbackRequest $postBody
   * @param array $optParams Optional parameters.
   * @return Google_Service_Datastore_RollbackResponse
   */
  
public function rollback($projectIdGoogle_Service_Datastore_RollbackRequest $postBody$optParams = array())
  {
    
$params = array('projectId' => $projectId'postBody' => $postBody);
    
$params array_merge($params$optParams);
    return 
$this->call('rollback', array($params), "Google_Service_Datastore_RollbackResponse");
  }
  
/**
   * Queries for entities. (projects.runQuery)
   *
   * @param string $projectId Required. The ID of the project against which to
   * make the request.
   * @param Google_Service_Datastore_RunQueryRequest $postBody
   * @param array $optParams Optional parameters.
   * @return Google_Service_Datastore_RunQueryResponse
   */
  
public function runQuery($projectIdGoogle_Service_Datastore_RunQueryRequest $postBody$optParams = array())
  {
    
$params = array('projectId' => $projectId'postBody' => $postBody);
    
$params array_merge($params$optParams);
    return 
$this->call('runQuery', array($params), "Google_Service_Datastore_RunQueryResponse");
  }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

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