Keine Beschreibung

GoogleCloudMlV1beta1Job.php 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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_CloudMachineLearning_GoogleCloudMlV1beta1Job extends Google_Model
  18. {
  19. public $createTime;
  20. public $endTime;
  21. public $errorMessage;
  22. public $jobId;
  23. protected $predictionInputType = 'Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1PredictionInput';
  24. protected $predictionInputDataType = '';
  25. protected $predictionOutputType = 'Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1PredictionOutput';
  26. protected $predictionOutputDataType = '';
  27. public $startTime;
  28. public $state;
  29. protected $trainingInputType = 'Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1TrainingInput';
  30. protected $trainingInputDataType = '';
  31. protected $trainingOutputType = 'Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1TrainingOutput';
  32. protected $trainingOutputDataType = '';
  33. public function setCreateTime($createTime)
  34. {
  35. $this->createTime = $createTime;
  36. }
  37. public function getCreateTime()
  38. {
  39. return $this->createTime;
  40. }
  41. public function setEndTime($endTime)
  42. {
  43. $this->endTime = $endTime;
  44. }
  45. public function getEndTime()
  46. {
  47. return $this->endTime;
  48. }
  49. public function setErrorMessage($errorMessage)
  50. {
  51. $this->errorMessage = $errorMessage;
  52. }
  53. public function getErrorMessage()
  54. {
  55. return $this->errorMessage;
  56. }
  57. public function setJobId($jobId)
  58. {
  59. $this->jobId = $jobId;
  60. }
  61. public function getJobId()
  62. {
  63. return $this->jobId;
  64. }
  65. public function setPredictionInput(Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1PredictionInput $predictionInput)
  66. {
  67. $this->predictionInput = $predictionInput;
  68. }
  69. public function getPredictionInput()
  70. {
  71. return $this->predictionInput;
  72. }
  73. public function setPredictionOutput(Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1PredictionOutput $predictionOutput)
  74. {
  75. $this->predictionOutput = $predictionOutput;
  76. }
  77. public function getPredictionOutput()
  78. {
  79. return $this->predictionOutput;
  80. }
  81. public function setStartTime($startTime)
  82. {
  83. $this->startTime = $startTime;
  84. }
  85. public function getStartTime()
  86. {
  87. return $this->startTime;
  88. }
  89. public function setState($state)
  90. {
  91. $this->state = $state;
  92. }
  93. public function getState()
  94. {
  95. return $this->state;
  96. }
  97. public function setTrainingInput(Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1TrainingInput $trainingInput)
  98. {
  99. $this->trainingInput = $trainingInput;
  100. }
  101. public function getTrainingInput()
  102. {
  103. return $this->trainingInput;
  104. }
  105. public function setTrainingOutput(Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1TrainingOutput $trainingOutput)
  106. {
  107. $this->trainingOutput = $trainingOutput;
  108. }
  109. public function getTrainingOutput()
  110. {
  111. return $this->trainingOutput;
  112. }
  113. }