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

/**
 * MultiCloudCluster contains information specific to GKE Multi-Cloud clusters.
 *
 * Generated from protobuf message <code>google.cloud.gkehub.v1beta1.MultiCloudCluster</code>
 */
class MultiCloudCluster extends \Google\Protobuf\Internal\Message
{
    /**
     * Immutable. Self-link of the GCP resource for the GKE Multi-Cloud cluster. For
     * example:
     *  //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/awsClusters/my-cluster
     *  //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/azureClusters/my-cluster
     *
     * 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
     * API(gkemulticloud.googleapis.com) resource for this GKE Multi-Cloud cluster
     * no longer exists.
     *
     * Generated from protobuf field <code>bool cluster_missing = 2 [(.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 Multi-Cloud cluster. For
     *           example:
     *            //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/awsClusters/my-cluster
     *            //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/azureClusters/my-cluster
     *     @type bool $cluster_missing
     *           Output only. If cluster_missing is set then it denotes that
     *           API(gkemulticloud.googleapis.com) resource for this GKE Multi-Cloud cluster
     *           no longer exists.
     * }
     */
    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 Multi-Cloud cluster. For
     * example:
     *  //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/awsClusters/my-cluster
     *  //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/azureClusters/my-cluster
     *
     * 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 Multi-Cloud cluster. For
     * example:
     *  //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/awsClusters/my-cluster
     *  //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/azureClusters/my-cluster
     *
     * 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
     * API(gkemulticloud.googleapis.com) resource for this GKE Multi-Cloud cluster
     * no longer exists.
     *
     * Generated from protobuf field <code>bool cluster_missing = 2 [(.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
     * API(gkemulticloud.googleapis.com) resource for this GKE Multi-Cloud cluster
     * no longer exists.
     *
     * Generated from protobuf field <code>bool cluster_missing = 2 [(.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;
    }

}

