Brak opisu

GoogleCloudMlV1PredictionInput.php 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. <?php
  2. /*
  3. * Copyright 2014 Google Inc.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  6. * use this file except in compliance with the License. You may obtain a copy of
  7. * the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  13. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  14. * License for the specific language governing permissions and limitations under
  15. * the License.
  16. */
  17. class Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1PredictionInput extends Google_Collection
  18. {
  19. protected $collection_key = 'inputPaths';
  20. public $batchSize;
  21. public $dataFormat;
  22. public $inputPaths;
  23. public $maxWorkerCount;
  24. public $modelName;
  25. public $outputPath;
  26. public $region;
  27. public $runtimeVersion;
  28. public $signatureName;
  29. public $uri;
  30. public $versionName;
  31. public function setBatchSize($batchSize)
  32. {
  33. $this->batchSize = $batchSize;
  34. }
  35. public function getBatchSize()
  36. {
  37. return $this->batchSize;
  38. }
  39. public function setDataFormat($dataFormat)
  40. {
  41. $this->dataFormat = $dataFormat;
  42. }
  43. public function getDataFormat()
  44. {
  45. return $this->dataFormat;
  46. }
  47. public function setInputPaths($inputPaths)
  48. {
  49. $this->inputPaths = $inputPaths;
  50. }
  51. public function getInputPaths()
  52. {
  53. return $this->inputPaths;
  54. }
  55. public function setMaxWorkerCount($maxWorkerCount)
  56. {
  57. $this->maxWorkerCount = $maxWorkerCount;
  58. }
  59. public function getMaxWorkerCount()
  60. {
  61. return $this->maxWorkerCount;
  62. }
  63. public function setModelName($modelName)
  64. {
  65. $this->modelName = $modelName;
  66. }
  67. public function getModelName()
  68. {
  69. return $this->modelName;
  70. }
  71. public function setOutputPath($outputPath)
  72. {
  73. $this->outputPath = $outputPath;
  74. }
  75. public function getOutputPath()
  76. {
  77. return $this->outputPath;
  78. }
  79. public function setRegion($region)
  80. {
  81. $this->region = $region;
  82. }
  83. public function getRegion()
  84. {
  85. return $this->region;
  86. }
  87. public function setRuntimeVersion($runtimeVersion)
  88. {
  89. $this->runtimeVersion = $runtimeVersion;
  90. }
  91. public function getRuntimeVersion()
  92. {
  93. return $this->runtimeVersion;
  94. }
  95. public function setSignatureName($signatureName)
  96. {
  97. $this->signatureName = $signatureName;
  98. }
  99. public function getSignatureName()
  100. {
  101. return $this->signatureName;
  102. }
  103. public function setUri($uri)
  104. {
  105. $this->uri = $uri;
  106. }
  107. public function getUri()
  108. {
  109. return $this->uri;
  110. }
  111. public function setVersionName($versionName)
  112. {
  113. $this->versionName = $versionName;
  114. }
  115. public function getVersionName()
  116. {
  117. return $this->versionName;
  118. }
  119. }