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

namespace Google\Cloud\Notebooks\V1beta1;

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

/**
 * Request for setting instance accelerator.
 *
 * Generated from protobuf message <code>google.cloud.notebooks.v1beta1.SetInstanceAcceleratorRequest</code>
 */
class SetInstanceAcceleratorRequest extends \Google\Protobuf\Internal\Message
{
    /**
     * Required. Format:
     * `projects/{project_id}/locations/{location}/instances/{instance_id}`
     *
     * Generated from protobuf field <code>string name = 1 [(.google.api.field_behavior) = REQUIRED];</code>
     */
    private $name = '';
    /**
     * Required. Type of this accelerator.
     *
     * Generated from protobuf field <code>.google.cloud.notebooks.v1beta1.Instance.AcceleratorType type = 2 [(.google.api.field_behavior) = REQUIRED];</code>
     */
    private $type = 0;
    /**
     * Required. Count of cores of this accelerator. Note that not all combinations
     * of `type` and `core_count` are valid. Check [GPUs on
     * Compute Engine](https://cloud.google.com/compute/docs/gpus/#gpus-list) to
     * find a valid combination. TPUs are not supported.
     *
     * Generated from protobuf field <code>int64 core_count = 3 [(.google.api.field_behavior) = REQUIRED];</code>
     */
    private $core_count = 0;

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type string $name
     *           Required. Format:
     *           `projects/{project_id}/locations/{location}/instances/{instance_id}`
     *     @type int $type
     *           Required. Type of this accelerator.
     *     @type int|string $core_count
     *           Required. Count of cores of this accelerator. Note that not all combinations
     *           of `type` and `core_count` are valid. Check [GPUs on
     *           Compute Engine](https://cloud.google.com/compute/docs/gpus/#gpus-list) to
     *           find a valid combination. TPUs are not supported.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Cloud\Notebooks\V1Beta1\Service::initOnce();
        parent::__construct($data);
    }

    /**
     * Required. Format:
     * `projects/{project_id}/locations/{location}/instances/{instance_id}`
     *
     * Generated from protobuf field <code>string name = 1 [(.google.api.field_behavior) = REQUIRED];</code>
     * @return string
     */
    public function getName()
    {
        return $this->name;
    }

    /**
     * Required. Format:
     * `projects/{project_id}/locations/{location}/instances/{instance_id}`
     *
     * Generated from protobuf field <code>string name = 1 [(.google.api.field_behavior) = REQUIRED];</code>
     * @param string $var
     * @return $this
     */
    public function setName($var)
    {
        GPBUtil::checkString($var, True);
        $this->name = $var;

        return $this;
    }

    /**
     * Required. Type of this accelerator.
     *
     * Generated from protobuf field <code>.google.cloud.notebooks.v1beta1.Instance.AcceleratorType type = 2 [(.google.api.field_behavior) = REQUIRED];</code>
     * @return int
     */
    public function getType()
    {
        return $this->type;
    }

    /**
     * Required. Type of this accelerator.
     *
     * Generated from protobuf field <code>.google.cloud.notebooks.v1beta1.Instance.AcceleratorType type = 2 [(.google.api.field_behavior) = REQUIRED];</code>
     * @param int $var
     * @return $this
     */
    public function setType($var)
    {
        GPBUtil::checkEnum($var, \Google\Cloud\Notebooks\V1beta1\Instance\AcceleratorType::class);
        $this->type = $var;

        return $this;
    }

    /**
     * Required. Count of cores of this accelerator. Note that not all combinations
     * of `type` and `core_count` are valid. Check [GPUs on
     * Compute Engine](https://cloud.google.com/compute/docs/gpus/#gpus-list) to
     * find a valid combination. TPUs are not supported.
     *
     * Generated from protobuf field <code>int64 core_count = 3 [(.google.api.field_behavior) = REQUIRED];</code>
     * @return int|string
     */
    public function getCoreCount()
    {
        return $this->core_count;
    }

    /**
     * Required. Count of cores of this accelerator. Note that not all combinations
     * of `type` and `core_count` are valid. Check [GPUs on
     * Compute Engine](https://cloud.google.com/compute/docs/gpus/#gpus-list) to
     * find a valid combination. TPUs are not supported.
     *
     * Generated from protobuf field <code>int64 core_count = 3 [(.google.api.field_behavior) = REQUIRED];</code>
     * @param int|string $var
     * @return $this
     */
    public function setCoreCount($var)
    {
        GPBUtil::checkInt64($var);
        $this->core_count = $var;

        return $this;
    }

}

