📂 File Browser

/AgentAI/vendor/google/apiclient-services/src/ApigeeRegistry
☀️ Light Mode
🎯 Quick Launch:

📁 Directories

📁 Resource/ 🔓 Open

📄 Files

🐘 Api.php
▶ Open 📄 View Source
🐘 ApiDeployment.php
▶ Open 📄 View Source
🐘 ApiSpec.php
▶ Open 📄 View Source
🐘 ApiVersion.php
▶ Open 📄 View Source
🐘 ApigeeregistryEmpty.php
▶ Open 📄 View Source
🐘 Artifact.php
▶ Open 📄 View Source
🐘 Binding.php
▶ Open 📄 View Source
🐘 Build.php
▶ Open 📄 View Source
🐘 CancelOperationRequest.php
▶ Open 📄 View Source
🐘 Config.php
▶ Open 📄 View Source
🐘 Expr.php
▶ Open 📄 View Source
🐘 HttpBody.php
▶ Open 📄 View Source
🐘 Instance.php
▶ Open 📄 View Source
🐘 ListApiDeploymentRevisionsResponse.php
▶ Open 📄 View Source
🐘 ListApiDeploymentsResponse.php
▶ Open 📄 View Source
🐘 ListApiSpecRevisionsResponse.php
▶ Open 📄 View Source
🐘 ListApiSpecsResponse.php
▶ Open 📄 View Source
🐘 ListApiVersionsResponse.php
▶ Open 📄 View Source
🐘 ListApisResponse.php
▶ Open 📄 View Source
🐘 ListArtifactsResponse.php
▶ Open 📄 View Source
🐘 ListLocationsResponse.php
▶ Open 📄 View Source
🐘 ListOperationsResponse.php
▶ Open 📄 View Source
🐘 Location.php
▶ Open 📄 View Source
🐘 Operation.php
▶ Open 📄 View Source
🐘 OperationMetadata.php
▶ Open 📄 View Source
🐘 Policy.php
▶ Open 📄 View Source
🐘 RollbackApiDeploymentRequest.php
▶ Open 📄 View Source
🐘 RollbackApiSpecRequest.php
▶ Open 📄 View Source
🐘 SetIamPolicyRequest.php
▶ Open 📄 View Source
🐘 Status.php
▶ Open 📄 View Source
🐘 TagApiDeploymentRevisionRequest.php
▶ Open 📄 View Source
🐘 TagApiSpecRevisionRequest.php
▶ Open 📄 View Source
🐘 TestIamPermissionsRequest.php
▶ Open 📄 View Source
🐘 TestIamPermissionsResponse.php
▶ Open 📄 View Source

📄 Source: TagApiSpecRevisionRequest.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\ApigeeRegistry;

class TagApiSpecRevisionRequest extends \Google\Model
{
  /**
   * Required. The tag to apply. The tag should be at most 40 characters, and
   * match `a-z{3,39}`.
   *
   * @var string
   */
  public $tag;

  /**
   * Required. The tag to apply. The tag should be at most 40 characters, and
   * match `a-z{3,39}`.
   *
   * @param string $tag
   */
  public function setTag($tag)
  {
    $this->tag = $tag;
  }
  /**
   * @return string
   */
  public function getTag()
  {
    return $this->tag;
  }
}

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