<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: google/cloud/gkehub/v1beta1/membership.proto

namespace Google\Cloud\GkeHub\V1beta1;

use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;

/**
 * GkeCluster contains information specific to GKE clusters.
 *
 * Generated from protobuf message <code>google.cloud.gkehub.v1beta1.GkeCluster</code>
 */
class GkeCluster extends \Google\Protobuf\Internal\Message
{
    /**
     * Immutable. Self-link of the GCP resource for the GKE cluster. For example:
     *     //container.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster
     * Zonal clusters are also supported.
     *
     * Generated from protobuf field <code>string resource_link = 1 [(.google.api.field_behavior) = IMMUTABLE];</code>
     */
    private $resource_link = '';
    /**
     * Output only. If cluster_missing is set then it denotes that the GKE cluster no longer
     * exists in the GKE Control Plane.
     *
     * Generated from protobuf field <code>bool cluster_missing = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
     */
    private $cluster_missing = false;

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type string $resource_link
     *           Immutable. Self-link of the GCP resource for the GKE cluster. For example:
     *               //container.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster
     *           Zonal clusters are also supported.
     *     @type bool $cluster_missing
     *           Output only. If cluster_missing is set then it denotes that the GKE cluster no longer
     *           exists in the GKE Control Plane.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Cloud\Gkehub\V1Beta1\Membership::initOnce();
        parent::__construct($data);
    }

    /**
     * Immutable. Self-link of the GCP resource for the GKE cluster. For example:
     *     //container.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster
     * Zonal clusters are also supported.
     *
     * Generated from protobuf field <code>string resource_link = 1 [(.google.api.field_behavior) = IMMUTABLE];</code>
     * @return string
     */
    public function getResourceLink()
    {
        return $this->resource_link;
    }

    /**
     * Immutable. Self-link of the GCP resource for the GKE cluster. For example:
     *     //container.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster
     * Zonal clusters are also supported.
     *
     * Generated from protobuf field <code>string resource_link = 1 [(.google.api.field_behavior) = IMMUTABLE];</code>
     * @param string $var
     * @return $this
     */
    public function setResourceLink($var)
    {
        GPBUtil::checkString($var, True);
        $this->resource_link = $var;

        return $this;
    }

    /**
     * Output only. If cluster_missing is set then it denotes that the GKE cluster no longer
     * exists in the GKE Control Plane.
     *
     * Generated from protobuf field <code>bool cluster_missing = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
     * @return bool
     */
    public function getClusterMissing()
    {
        return $this->cluster_missing;
    }

    /**
     * Output only. If cluster_missing is set then it denotes that the GKE cluster no longer
     * exists in the GKE Control Plane.
     *
     * Generated from protobuf field <code>bool cluster_missing = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
     * @param bool $var
     * @return $this
     */
    public function setClusterMissing($var)
    {
        GPBUtil::checkBool($var);
        $this->cluster_missing = $var;

        return $this;
    }

}

