📂 File Browser

/AgentAI/vendor/google/apiclient-services/src/Apigateway
🌙 Dark Mode
🎯 Quick Launch:

📁 Directories

📁 Resource/ 🔓 Open

📄 Files

🐘 ApigatewayApi.php
▶ Open 📄 View Source
🐘 ApigatewayApiConfig.php
▶ Open 📄 View Source
🐘 ApigatewayApiConfigFile.php
▶ Open 📄 View Source
🐘 ApigatewayApiConfigGrpcServiceDefinition.php
▶ Open 📄 View Source
🐘 ApigatewayApiConfigOpenApiDocument.php
▶ Open 📄 View Source
🐘 ApigatewayAuditConfig.php
▶ Open 📄 View Source
🐘 ApigatewayAuditLogConfig.php
▶ Open 📄 View Source
🐘 ApigatewayBinding.php
▶ Open 📄 View Source
🐘 ApigatewayCancelOperationRequest.php
▶ Open 📄 View Source
🐘 ApigatewayEmpty.php
▶ Open 📄 View Source
🐘 ApigatewayExpr.php
▶ Open 📄 View Source
🐘 ApigatewayGateway.php
▶ Open 📄 View Source
🐘 ApigatewayListApiConfigsResponse.php
▶ Open 📄 View Source
🐘 ApigatewayListApisResponse.php
▶ Open 📄 View Source
🐘 ApigatewayListGatewaysResponse.php
▶ Open 📄 View Source
🐘 ApigatewayListLocationsResponse.php
▶ Open 📄 View Source
🐘 ApigatewayListOperationsResponse.php
▶ Open 📄 View Source
🐘 ApigatewayLocation.php
▶ Open 📄 View Source
🐘 ApigatewayOperation.php
▶ Open 📄 View Source
🐘 ApigatewayOperationMetadata.php
▶ Open 📄 View Source
🐘 ApigatewayOperationMetadataDiagnostic.php
▶ Open 📄 View Source
🐘 ApigatewayPolicy.php
▶ Open 📄 View Source
🐘 ApigatewaySetIamPolicyRequest.php
▶ Open 📄 View Source
🐘 ApigatewayStatus.php
▶ Open 📄 View Source
🐘 ApigatewayTestIamPermissionsRequest.php
▶ Open 📄 View Source
🐘 ApigatewayTestIamPermissionsResponse.php
▶ Open 📄 View Source

📄 Source: ApigatewayApiConfigFile.php

<?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.
 */

namespace Google\Service\Apigateway;

class ApigatewayApiConfigFile extends \Google\Model
{
  /**
   * The bytes that constitute the file.
   *
   * @var string
   */
  public $contents;
  /**
   * The file path (full or relative path). This is typically the path of the
   * file when it is uploaded.
   *
   * @var string
   */
  public $path;

  /**
   * The bytes that constitute the file.
   *
   * @param string $contents
   */
  public function setContents($contents)
  {
    $this->contents = $contents;
  }
  /**
   * @return string
   */
  public function getContents()
  {
    return $this->contents;
  }
  /**
   * The file path (full or relative path). This is typically the path of the
   * file when it is uploaded.
   *
   * @param string $path
   */
  public function setPath($path)
  {
    $this->path = $path;
  }
  /**
   * @return string
   */
  public function getPath()
  {
    return $this->path;
  }
}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ApigatewayApiConfigFile::class, 'Google_Service_Apigateway_ApigatewayApiConfigFile');
← Back