JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "GoogleCloudDatapipelinesV1SdkVersion.php"

Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/google/apiclient-services/src/Datapipelines/GoogleCloudDatapipelinesV1SdkVersion.php
File size: 2.93 KB
MIME-type: text/x-php
Charset: utf-8

<?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\Datapipelines;

class GoogleCloudDatapipelinesV1SdkVersion extends \Google\Model
{
  /**
   * Dataflow is unaware of this version.
   */
  public const SDK_SUPPORT_STATUS_UNKNOWN = 'UNKNOWN';
  /**
   * This is a known version of an SDK, and is supported.
   */
  public const SDK_SUPPORT_STATUS_SUPPORTED = 'SUPPORTED';
  /**
   * A newer version of the SDK exists, and an update is recommended.
   */
  public const SDK_SUPPORT_STATUS_STALE = 'STALE';
  /**
   * This version of the SDK is deprecated and will eventually be unsupported.
   */
  public const SDK_SUPPORT_STATUS_DEPRECATED = 'DEPRECATED';
  /**
   * Support for this SDK version has ended and it should no longer be used.
   */
  public const SDK_SUPPORT_STATUS_UNSUPPORTED = 'UNSUPPORTED';
  /**
   * The support status for this SDK version.
   *
   * @var string
   */
  public $sdkSupportStatus;
  /**
   * The version of the SDK used to run the job.
   *
   * @var string
   */
  public $version;
  /**
   * A readable string describing the version of the SDK.
   *
   * @var string
   */
  public $versionDisplayName;

  /**
   * The support status for this SDK version.
   *
   * Accepted values: UNKNOWN, SUPPORTED, STALE, DEPRECATED, UNSUPPORTED
   *
   * @param self::SDK_SUPPORT_STATUS_* $sdkSupportStatus
   */
  public function setSdkSupportStatus($sdkSupportStatus)
  {
    $this->sdkSupportStatus = $sdkSupportStatus;
  }
  /**
   * @return self::SDK_SUPPORT_STATUS_*
   */
  public function getSdkSupportStatus()
  {
    return $this->sdkSupportStatus;
  }
  /**
   * The version of the SDK used to run the job.
   *
   * @param string $version
   */
  public function setVersion($version)
  {
    $this->version = $version;
  }
  /**
   * @return string
   */
  public function getVersion()
  {
    return $this->version;
  }
  /**
   * A readable string describing the version of the SDK.
   *
   * @param string $versionDisplayName
   */
  public function setVersionDisplayName($versionDisplayName)
  {
    $this->versionDisplayName = $versionDisplayName;
  }
  /**
   * @return string
   */
  public function getVersionDisplayName()
  {
    return $this->versionDisplayName;
  }
}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDatapipelinesV1SdkVersion::class, 'Google_Service_Datapipelines_GoogleCloudDatapipelinesV1SdkVersion');