<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: google/cloud/deploy/v1/cloud_deploy.proto

namespace Google\Cloud\Deploy\V1;

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

/**
 * Information specifying an Anthos Cluster.
 *
 * Generated from protobuf message <code>google.cloud.deploy.v1.AnthosCluster</code>
 */
class AnthosCluster extends \Google\Protobuf\Internal\Message
{
    /**
     * Membership of the GKE Hub-registered cluster to which to apply the Skaffold
     * configuration. Format is
     * `projects/{project}/locations/{location}/memberships/{membership_name}`.
     *
     * Generated from protobuf field <code>string membership = 1 [(.google.api.resource_reference) = {</code>
     */
    private $membership = '';

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type string $membership
     *           Membership of the GKE Hub-registered cluster to which to apply the Skaffold
     *           configuration. Format is
     *           `projects/{project}/locations/{location}/memberships/{membership_name}`.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Cloud\Deploy\V1\CloudDeploy::initOnce();
        parent::__construct($data);
    }

    /**
     * Membership of the GKE Hub-registered cluster to which to apply the Skaffold
     * configuration. Format is
     * `projects/{project}/locations/{location}/memberships/{membership_name}`.
     *
     * Generated from protobuf field <code>string membership = 1 [(.google.api.resource_reference) = {</code>
     * @return string
     */
    public function getMembership()
    {
        return $this->membership;
    }

    /**
     * Membership of the GKE Hub-registered cluster to which to apply the Skaffold
     * configuration. Format is
     * `projects/{project}/locations/{location}/memberships/{membership_name}`.
     *
     * Generated from protobuf field <code>string membership = 1 [(.google.api.resource_reference) = {</code>
     * @param string $var
     * @return $this
     */
    public function setMembership($var)
    {
        GPBUtil::checkString($var, True);
        $this->membership = $var;

        return $this;
    }

}

