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

namespace Google\Cloud\GkeMultiCloud\V1;

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

/**
 * Managed Azure resources for the cluster.
 * The values could change and be empty, depending on the state of the cluster.
 *
 * Generated from protobuf message <code>google.cloud.gkemulticloud.v1.AzureClusterResources</code>
 */
class AzureClusterResources extends \Google\Protobuf\Internal\Message
{
    /**
     * Output only. The ARM ID of the cluster network security group.
     *
     * Generated from protobuf field <code>string network_security_group_id = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
     */
    private $network_security_group_id = '';
    /**
     * Output only. The ARM ID of the control plane application security group.
     *
     * Generated from protobuf field <code>string control_plane_application_security_group_id = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
     */
    private $control_plane_application_security_group_id = '';

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type string $network_security_group_id
     *           Output only. The ARM ID of the cluster network security group.
     *     @type string $control_plane_application_security_group_id
     *           Output only. The ARM ID of the control plane application security group.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Cloud\Gkemulticloud\V1\AzureResources::initOnce();
        parent::__construct($data);
    }

    /**
     * Output only. The ARM ID of the cluster network security group.
     *
     * Generated from protobuf field <code>string network_security_group_id = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
     * @return string
     */
    public function getNetworkSecurityGroupId()
    {
        return $this->network_security_group_id;
    }

    /**
     * Output only. The ARM ID of the cluster network security group.
     *
     * Generated from protobuf field <code>string network_security_group_id = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
     * @param string $var
     * @return $this
     */
    public function setNetworkSecurityGroupId($var)
    {
        GPBUtil::checkString($var, True);
        $this->network_security_group_id = $var;

        return $this;
    }

    /**
     * Output only. The ARM ID of the control plane application security group.
     *
     * Generated from protobuf field <code>string control_plane_application_security_group_id = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
     * @return string
     */
    public function getControlPlaneApplicationSecurityGroupId()
    {
        return $this->control_plane_application_security_group_id;
    }

    /**
     * Output only. The ARM ID of the control plane application security group.
     *
     * Generated from protobuf field <code>string control_plane_application_security_group_id = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
     * @param string $var
     * @return $this
     */
    public function setControlPlaneApplicationSecurityGroupId($var)
    {
        GPBUtil::checkString($var, True);
        $this->control_plane_application_security_group_id = $var;

        return $this;
    }

}

