PATH:
home
/
lab2454c
/
vaultchip.com
/
vendor
/
google
/
apiclient-services
/
src
/
CloudMachineLearningEngine
<?php /* * Copyright 2014 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ namespace Google\Service\CloudMachineLearningEngine; class GoogleCloudMlV1TrainingInput extends \Google\Collection { protected $collection_key = 'packageUris'; public $args; public $enableWebAccess; protected $encryptionConfigType = GoogleCloudMlV1EncryptionConfig::class; protected $encryptionConfigDataType = ''; protected $evaluatorConfigType = GoogleCloudMlV1ReplicaConfig::class; protected $evaluatorConfigDataType = ''; public $evaluatorCount; public $evaluatorType; protected $hyperparametersType = GoogleCloudMlV1HyperparameterSpec::class; protected $hyperparametersDataType = ''; public $jobDir; protected $masterConfigType = GoogleCloudMlV1ReplicaConfig::class; protected $masterConfigDataType = ''; public $masterType; public $network; public $packageUris; protected $parameterServerConfigType = GoogleCloudMlV1ReplicaConfig::class; protected $parameterServerConfigDataType = ''; public $parameterServerCount; public $parameterServerType; public $pythonModule; public $pythonVersion; public $region; public $runtimeVersion; public $scaleTier; protected $schedulingType = GoogleCloudMlV1Scheduling::class; protected $schedulingDataType = ''; public $serviceAccount; public $useChiefInTfConfig; protected $workerConfigType = GoogleCloudMlV1ReplicaConfig::class; protected $workerConfigDataType = ''; public $workerCount; public $workerType; public function setArgs($args) { $this->args = $args; } public function getArgs() { return $this->args; } public function setEnableWebAccess($enableWebAccess) { $this->enableWebAccess = $enableWebAccess; } public function getEnableWebAccess() { return $this->enableWebAccess; } /** * @param GoogleCloudMlV1EncryptionConfig */ public function setEncryptionConfig(GoogleCloudMlV1EncryptionConfig $encryptionConfig) { $this->encryptionConfig = $encryptionConfig; } /** * @return GoogleCloudMlV1EncryptionConfig */ public function getEncryptionConfig() { return $this->encryptionConfig; } /** * @param GoogleCloudMlV1ReplicaConfig */ public function setEvaluatorConfig(GoogleCloudMlV1ReplicaConfig $evaluatorConfig) { $this->evaluatorConfig = $evaluatorConfig; } /** * @return GoogleCloudMlV1ReplicaConfig */ public function getEvaluatorConfig() { return $this->evaluatorConfig; } public function setEvaluatorCount($evaluatorCount) { $this->evaluatorCount = $evaluatorCount; } public function getEvaluatorCount() { return $this->evaluatorCount; } public function setEvaluatorType($evaluatorType) { $this->evaluatorType = $evaluatorType; } public function getEvaluatorType() { return $this->evaluatorType; } /** * @param GoogleCloudMlV1HyperparameterSpec */ public function setHyperparameters(GoogleCloudMlV1HyperparameterSpec $hyperparameters) { $this->hyperparameters = $hyperparameters; } /** * @return GoogleCloudMlV1HyperparameterSpec */ public function getHyperparameters() { return $this->hyperparameters; } public function setJobDir($jobDir) { $this->jobDir = $jobDir; } public function getJobDir() { return $this->jobDir; } /** * @param GoogleCloudMlV1ReplicaConfig */ public function setMasterConfig(GoogleCloudMlV1ReplicaConfig $masterConfig) { $this->masterConfig = $masterConfig; } /** * @return GoogleCloudMlV1ReplicaConfig */ public function getMasterConfig() { return $this->masterConfig; } public function setMasterType($masterType) { $this->masterType = $masterType; } public function getMasterType() { return $this->masterType; } public function setNetwork($network) { $this->network = $network; } public function getNetwork() { return $this->network; } public function setPackageUris($packageUris) { $this->packageUris = $packageUris; } public function getPackageUris() { return $this->packageUris; } /** * @param GoogleCloudMlV1ReplicaConfig */ public function setParameterServerConfig(GoogleCloudMlV1ReplicaConfig $parameterServerConfig) { $this->parameterServerConfig = $parameterServerConfig; } /** * @return GoogleCloudMlV1ReplicaConfig */ public function getParameterServerConfig() { return $this->parameterServerConfig; } public function setParameterServerCount($parameterServerCount) { $this->parameterServerCount = $parameterServerCount; } public function getParameterServerCount() { return $this->parameterServerCount; } public function setParameterServerType($parameterServerType) { $this->parameterServerType = $parameterServerType; } public function getParameterServerType() { return $this->parameterServerType; } public function setPythonModule($pythonModule) { $this->pythonModule = $pythonModule; } public function getPythonModule() { return $this->pythonModule; } public function setPythonVersion($pythonVersion) { $this->pythonVersion = $pythonVersion; } public function getPythonVersion() { return $this->pythonVersion; } public function setRegion($region) { $this->region = $region; } public function getRegion() { return $this->region; } public function setRuntimeVersion($runtimeVersion) { $this->runtimeVersion = $runtimeVersion; } public function getRuntimeVersion() { return $this->runtimeVersion; } public function setScaleTier($scaleTier) { $this->scaleTier = $scaleTier; } public function getScaleTier() { return $this->scaleTier; } /** * @param GoogleCloudMlV1Scheduling */ public function setScheduling(GoogleCloudMlV1Scheduling $scheduling) { $this->scheduling = $scheduling; } /** * @return GoogleCloudMlV1Scheduling */ public function getScheduling() { return $this->scheduling; } public function setServiceAccount($serviceAccount) { $this->serviceAccount = $serviceAccount; } public function getServiceAccount() { return $this->serviceAccount; } public function setUseChiefInTfConfig($useChiefInTfConfig) { $this->useChiefInTfConfig = $useChiefInTfConfig; } public function getUseChiefInTfConfig() { return $this->useChiefInTfConfig; } /** * @param GoogleCloudMlV1ReplicaConfig */ public function setWorkerConfig(GoogleCloudMlV1ReplicaConfig $workerConfig) { $this->workerConfig = $workerConfig; } /** * @return GoogleCloudMlV1ReplicaConfig */ public function getWorkerConfig() { return $this->workerConfig; } public function setWorkerCount($workerCount) { $this->workerCount = $workerCount; } public function getWorkerCount() { return $this->workerCount; } public function setWorkerType($workerType) { $this->workerType = $workerType; } public function getWorkerType() { return $this->workerType; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudMlV1TrainingInput::class, 'Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1TrainingInput');
[+]
..
[-] GoogleCloudMlV1AutomatedStoppingConfigDecayCurveAutomatedStoppingConfig.php
[edit]
[-] GoogleCloudMlV1SuggestTrialsResponse.php
[edit]
[-] GoogleTypeExpr.php
[edit]
[-] GoogleCloudMlV1Location.php
[edit]
[-] GoogleCloudMlV1SampledShapleyAttribution.php
[edit]
[-] GoogleCloudMlV1BuiltInAlgorithmOutput.php
[edit]
[-] GoogleCloudMlV1AddTrialMeasurementRequest.php
[edit]
[-] GoogleCloudMlV1ListModelsResponse.php
[edit]
[-] GoogleCloudMlV1StudyConfigMetricSpec.php
[edit]
[-] GoogleCloudMlV1TrialParameter.php
[edit]
[-] GoogleCloudMlV1DiskConfig.php
[edit]
[-] GoogleCloudMlV1StudyConfig.php
[edit]
[-] GoogleCloudMlV1AutomatedStoppingConfigMedianAutomatedStoppingConfig.php
[edit]
[-] GoogleCloudMlV1Config.php
[edit]
[-] GoogleCloudMlV1ListLocationsResponse.php
[edit]
[-] GoogleCloudMlV1StudyConfigParameterSpecIntegerValueSpec.php
[edit]
[-] GoogleCloudMlV1PredictionOutput.php
[edit]
[-] GoogleCloudMlV1StudyConfigParameterSpecCategoricalValueSpec.php
[edit]
[-] GoogleCloudMlV1HyperparameterSpec.php
[edit]
[-] GoogleCloudMlV1StudyConfigParameterSpecMatchingParentIntValueSpec.php
[edit]
[-] GoogleCloudMlV1StudyConfigParameterSpec.php
[edit]
[-] GoogleCloudMlV1ListStudiesResponse.php
[edit]
[-] GoogleCloudMlV1Trial.php
[edit]
[-] GoogleRpcStatus.php
[edit]
[-] GoogleCloudMlV1ParameterSpec.php
[edit]
[-] GoogleCloudMlV1ExplainRequest.php
[edit]
[-] GoogleCloudMlV1IntegratedGradientsAttribution.php
[edit]
[-] GoogleCloudMlV1CheckTrialEarlyStoppingStateRequest.php
[edit]
[-] GoogleCloudMlV1TrainingOutput.php
[edit]
[-] GoogleCloudMlV1PredictRequest.php
[edit]
[-] GoogleCloudMlV1Measurement.php
[edit]
[-] GoogleIamV1TestIamPermissionsResponse.php
[edit]
[-] GoogleIamV1AuditLogConfig.php
[edit]
[-] GoogleCloudMlV1OperationMetadata.php
[edit]
[-] GoogleIamV1TestIamPermissionsRequest.php
[edit]
[-] GoogleCloudMlV1ListTrialsResponse.php
[edit]
[-] GoogleCloudMlV1SetDefaultVersionRequest.php
[edit]
[-] GoogleCloudMlV1CheckTrialEarlyStoppingStateMetatdata.php
[edit]
[-] GoogleCloudMlV1ListOptimalTrialsResponse.php
[edit]
[-] GoogleIamV1SetIamPolicyRequest.php
[edit]
[-] GoogleCloudMlV1HyperparameterOutputHyperparameterMetric.php
[edit]
[-] GoogleCloudMlV1ContainerPort.php
[edit]
[-] GoogleCloudMlV1ListOptimalTrialsRequest.php
[edit]
[-] GoogleCloudMlV1Capability.php
[edit]
[-] GoogleCloudMlV1ListJobsResponse.php
[edit]
[-] GoogleCloudMlV1CheckTrialEarlyStoppingStateResponse.php
[edit]
[-] GoogleCloudMlV1RouteMap.php
[edit]
[-] GoogleCloudMlV1StudyConfigParameterSpecDoubleValueSpec.php
[edit]
[-] GoogleCloudMlV1SuggestTrialsMetadata.php
[edit]
[-] GoogleCloudMlV1Job.php
[edit]
[-] GoogleCloudMlV1AcceleratorConfig.php
[edit]
[-] GoogleIamV1Policy.php
[edit]
[-] GoogleProtobufEmpty.php
[edit]
[-] GoogleCloudMlV1StudyConfigParameterSpecDiscreteValueSpec.php
[edit]
[+]
Resource
[-] GoogleCloudMlV1ExplanationConfig.php
[edit]
[-] GoogleCloudMlV1Model.php
[edit]
[-] GoogleCloudMlV1PredictionInput.php
[edit]
[-] GoogleCloudMlV1Version.php
[edit]
[-] GoogleCloudMlV1MeasurementMetric.php
[edit]
[-] GoogleCloudMlV1Scheduling.php
[edit]
[-] GoogleIamV1AuditConfig.php
[edit]
[-] GoogleCloudMlV1TrainingInput.php
[edit]
[-] GoogleLongrunningOperation.php
[edit]
[-] GoogleIamV1Binding.php
[edit]
[-] GoogleCloudMlV1StudyConfigParameterSpecMatchingParentDiscreteValueSpec.php
[edit]
[-] GoogleCloudMlV1SuggestTrialsRequest.php
[edit]
[-] GoogleCloudMlV1AutomatedStoppingConfig.php
[edit]
[-] GoogleCloudMlV1EncryptionConfig.php
[edit]
[-] GoogleCloudMlV1XraiAttribution.php
[edit]
[-] GoogleCloudMlV1StudyConfigParameterSpecMatchingParentCategoricalValueSpec.php
[edit]
[-] GoogleCloudMlV1Study.php
[edit]
[-] GoogleCloudMlV1StopTrialRequest.php
[edit]
[-] GoogleCloudMlV1MetricSpec.php
[edit]
[-] GoogleCloudMlV1AutoScaling.php
[edit]
[-] GoogleCloudMlV1GetConfigResponse.php
[edit]
[-] GoogleLongrunningListOperationsResponse.php
[edit]
[-] GoogleCloudMlV1CancelJobRequest.php
[edit]
[-] GoogleCloudMlV1RequestLoggingConfig.php
[edit]
[-] GoogleCloudMlV1EnvVar.php
[edit]
[-] GoogleCloudMlV1ListVersionsResponse.php
[edit]
[-] GoogleCloudMlV1HyperparameterOutput.php
[edit]
[-] GoogleCloudMlV1ReplicaConfig.php
[edit]
[-] GoogleCloudMlV1CompleteTrialRequest.php
[edit]
[-] GoogleCloudMlV1ContainerSpec.php
[edit]
[-] GoogleApiHttpBody.php
[edit]
[-] GoogleCloudMlV1ManualScaling.php
[edit]