📂 File Browser

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

📁 Directories

📁 Resource/ 🔓 Open

📄 Files

🐘 AuditConfig.php
▶ Open 📄 View Source
🐘 AuditLogConfig.php
▶ Open 📄 View Source
🐘 Binding.php
▶ Open 📄 View Source
🐘 Capability.php
▶ Open 📄 View Source
🐘 CloudresourcemanagerEmpty.php
▶ Open 📄 View Source
🐘 CloudresourcemanagerGoogleCloudResourcemanagerV2alpha1FolderOperation.php
▶ Open 📄 View Source
🐘 CloudresourcemanagerGoogleCloudResourcemanagerV2beta1FolderOperation.php
▶ Open 📄 View Source
🐘 CreateFolderMetadata.php
▶ Open 📄 View Source
🐘 CreateProjectMetadata.php
▶ Open 📄 View Source
🐘 CreateTagBindingMetadata.php
▶ Open 📄 View Source
🐘 CreateTagKeyMetadata.php
▶ Open 📄 View Source
🐘 CreateTagValueMetadata.php
▶ Open 📄 View Source
🐘 DeleteFolderMetadata.php
▶ Open 📄 View Source
🐘 DeleteOrganizationMetadata.php
▶ Open 📄 View Source
🐘 DeleteProjectMetadata.php
▶ Open 📄 View Source
🐘 DeleteTagBindingMetadata.php
▶ Open 📄 View Source
🐘 DeleteTagKeyMetadata.php
▶ Open 📄 View Source
🐘 DeleteTagValueMetadata.php
▶ Open 📄 View Source
🐘 EffectiveTag.php
▶ Open 📄 View Source
🐘 EffectiveTagBindingCollection.php
▶ Open 📄 View Source
🐘 Expr.php
▶ Open 📄 View Source
🐘 Folder.php
▶ Open 📄 View Source
🐘 FolderOperation.php
▶ Open 📄 View Source
🐘 FolderOperationError.php
▶ Open 📄 View Source
🐘 GetIamPolicyRequest.php
▶ Open 📄 View Source
🐘 GetPolicyOptions.php
▶ Open 📄 View Source
🐘 Lien.php
▶ Open 📄 View Source
🐘 ListEffectiveTagsResponse.php
▶ Open 📄 View Source
🐘 ListFoldersResponse.php
▶ Open 📄 View Source
🐘 ListLiensResponse.php
▶ Open 📄 View Source
🐘 ListProjectsResponse.php
▶ Open 📄 View Source
🐘 ListTagBindingsResponse.php
▶ Open 📄 View Source
🐘 ListTagHoldsResponse.php
▶ Open 📄 View Source
🐘 ListTagKeysResponse.php
▶ Open 📄 View Source
🐘 ListTagValuesResponse.php
▶ Open 📄 View Source
🐘 MoveFolderMetadata.php
▶ Open 📄 View Source
🐘 MoveFolderRequest.php
▶ Open 📄 View Source
🐘 MoveProjectMetadata.php
▶ Open 📄 View Source
🐘 MoveProjectRequest.php
▶ Open 📄 View Source
🐘 Operation.php
▶ Open 📄 View Source
🐘 Organization.php
▶ Open 📄 View Source
🐘 Policy.php
▶ Open 📄 View Source
🐘 Project.php
▶ Open 📄 View Source
🐘 ProjectCreationStatus.php
▶ Open 📄 View Source
🐘 SearchFoldersResponse.php
▶ Open 📄 View Source
🐘 SearchOrganizationsResponse.php
▶ Open 📄 View Source
🐘 SearchProjectsResponse.php
▶ Open 📄 View Source
🐘 SetIamPolicyRequest.php
▶ Open 📄 View Source
🐘 Status.php
▶ Open 📄 View Source
🐘 TagBinding.php
▶ Open 📄 View Source
🐘 TagBindingCollection.php
▶ Open 📄 View Source
🐘 TagHold.php
▶ Open 📄 View Source
🐘 TagKey.php
▶ Open 📄 View Source
🐘 TagValue.php
▶ Open 📄 View Source
🐘 TestIamPermissionsRequest.php
▶ Open 📄 View Source
🐘 TestIamPermissionsResponse.php
▶ Open 📄 View Source
🐘 UndeleteFolderMetadata.php
▶ Open 📄 View Source
🐘 UndeleteFolderRequest.php
▶ Open 📄 View Source
🐘 UndeleteOrganizationMetadata.php
▶ Open 📄 View Source
🐘 UndeleteProjectMetadata.php
▶ Open 📄 View Source
🐘 UndeleteProjectRequest.php
▶ Open 📄 View Source
🐘 UpdateFolderMetadata.php
▶ Open 📄 View Source
🐘 UpdateProjectMetadata.php
▶ Open 📄 View Source
🐘 UpdateTagKeyMetadata.php
▶ Open 📄 View Source
🐘 UpdateTagValueMetadata.php
▶ Open 📄 View Source

📄 Source: CreateProjectMetadata.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\CloudResourceManager;

class CreateProjectMetadata extends \Google\Model
{
  /**
   * Creation time of the project creation workflow.
   *
   * @var string
   */
  public $createTime;
  /**
   * True if the project can be retrieved using `GetProject`. No other
   * operations on the project are guaranteed to work until the project creation
   * is complete.
   *
   * @var bool
   */
  public $gettable;
  /**
   * True if the project creation process is complete.
   *
   * @var bool
   */
  public $ready;

  /**
   * Creation time of the project creation workflow.
   *
   * @param string $createTime
   */
  public function setCreateTime($createTime)
  {
    $this->createTime = $createTime;
  }
  /**
   * @return string
   */
  public function getCreateTime()
  {
    return $this->createTime;
  }
  /**
   * True if the project can be retrieved using `GetProject`. No other
   * operations on the project are guaranteed to work until the project creation
   * is complete.
   *
   * @param bool $gettable
   */
  public function setGettable($gettable)
  {
    $this->gettable = $gettable;
  }
  /**
   * @return bool
   */
  public function getGettable()
  {
    return $this->gettable;
  }
  /**
   * True if the project creation process is complete.
   *
   * @param bool $ready
   */
  public function setReady($ready)
  {
    $this->ready = $ready;
  }
  /**
   * @return bool
   */
  public function getReady()
  {
    return $this->ready;
  }
}

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