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

namespace Google\Cloud\AIPlatform\V1;

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

/**
 * Response message for
 * [MigrationService.SearchMigratableResources][google.cloud.aiplatform.v1.MigrationService.SearchMigratableResources].
 *
 * Generated from protobuf message <code>google.cloud.aiplatform.v1.SearchMigratableResourcesResponse</code>
 */
class SearchMigratableResourcesResponse extends \Google\Protobuf\Internal\Message
{
    /**
     * All migratable resources that can be migrated to the
     * location specified in the request.
     *
     * Generated from protobuf field <code>repeated .google.cloud.aiplatform.v1.MigratableResource migratable_resources = 1;</code>
     */
    private $migratable_resources;
    /**
     * The standard next-page token.
     * The migratable_resources may not fill page_size in
     * SearchMigratableResourcesRequest even when there are subsequent pages.
     *
     * Generated from protobuf field <code>string next_page_token = 2;</code>
     */
    private $next_page_token = '';

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type array<\Google\Cloud\AIPlatform\V1\MigratableResource>|\Google\Protobuf\Internal\RepeatedField $migratable_resources
     *           All migratable resources that can be migrated to the
     *           location specified in the request.
     *     @type string $next_page_token
     *           The standard next-page token.
     *           The migratable_resources may not fill page_size in
     *           SearchMigratableResourcesRequest even when there are subsequent pages.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Cloud\Aiplatform\V1\MigrationService::initOnce();
        parent::__construct($data);
    }

    /**
     * All migratable resources that can be migrated to the
     * location specified in the request.
     *
     * Generated from protobuf field <code>repeated .google.cloud.aiplatform.v1.MigratableResource migratable_resources = 1;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    public function getMigratableResources()
    {
        return $this->migratable_resources;
    }

    /**
     * All migratable resources that can be migrated to the
     * location specified in the request.
     *
     * Generated from protobuf field <code>repeated .google.cloud.aiplatform.v1.MigratableResource migratable_resources = 1;</code>
     * @param array<\Google\Cloud\AIPlatform\V1\MigratableResource>|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    public function setMigratableResources($var)
    {
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\AIPlatform\V1\MigratableResource::class);
        $this->migratable_resources = $arr;

        return $this;
    }

    /**
     * The standard next-page token.
     * The migratable_resources may not fill page_size in
     * SearchMigratableResourcesRequest even when there are subsequent pages.
     *
     * Generated from protobuf field <code>string next_page_token = 2;</code>
     * @return string
     */
    public function getNextPageToken()
    {
        return $this->next_page_token;
    }

    /**
     * The standard next-page token.
     * The migratable_resources may not fill page_size in
     * SearchMigratableResourcesRequest even when there are subsequent pages.
     *
     * Generated from protobuf field <code>string next_page_token = 2;</code>
     * @param string $var
     * @return $this
     */
    public function setNextPageToken($var)
    {
        GPBUtil::checkString($var, True);
        $this->next_page_token = $var;

        return $this;
    }

}

