Mise à jour des librairies
This commit is contained in:
39
vendor/google/apiclient-services/src/Google/Service/Bigquery/BigQueryModelTraining.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/Bigquery/BigQueryModelTraining.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_Bigquery_BigQueryModelTraining extends Google_Model
|
||||
{
|
||||
public $currentIteration;
|
||||
public $expectedTotalIterations;
|
||||
|
||||
public function setCurrentIteration($currentIteration)
|
||||
{
|
||||
$this->currentIteration = $currentIteration;
|
||||
}
|
||||
public function getCurrentIteration()
|
||||
{
|
||||
return $this->currentIteration;
|
||||
}
|
||||
public function setExpectedTotalIterations($expectedTotalIterations)
|
||||
{
|
||||
$this->expectedTotalIterations = $expectedTotalIterations;
|
||||
}
|
||||
public function getExpectedTotalIterations()
|
||||
{
|
||||
return $this->expectedTotalIterations;
|
||||
}
|
||||
}
|
||||
@@ -23,6 +23,7 @@ class Google_Service_Bigquery_Dataset extends Google_Collection
|
||||
public $creationTime;
|
||||
protected $datasetReferenceType = 'Google_Service_Bigquery_DatasetReference';
|
||||
protected $datasetReferenceDataType = '';
|
||||
public $defaultPartitionExpirationMs;
|
||||
public $defaultTableExpirationMs;
|
||||
public $description;
|
||||
public $etag;
|
||||
@@ -70,6 +71,14 @@ class Google_Service_Bigquery_Dataset extends Google_Collection
|
||||
{
|
||||
return $this->datasetReference;
|
||||
}
|
||||
public function setDefaultPartitionExpirationMs($defaultPartitionExpirationMs)
|
||||
{
|
||||
$this->defaultPartitionExpirationMs = $defaultPartitionExpirationMs;
|
||||
}
|
||||
public function getDefaultPartitionExpirationMs()
|
||||
{
|
||||
return $this->defaultPartitionExpirationMs;
|
||||
}
|
||||
public function setDefaultTableExpirationMs($defaultTableExpirationMs)
|
||||
{
|
||||
$this->defaultTableExpirationMs = $defaultTableExpirationMs;
|
||||
|
||||
@@ -19,6 +19,7 @@ class Google_Service_Bigquery_DatasetAccess extends Google_Model
|
||||
{
|
||||
public $domain;
|
||||
public $groupByEmail;
|
||||
public $iamMember;
|
||||
public $role;
|
||||
public $specialGroup;
|
||||
public $userByEmail;
|
||||
@@ -41,6 +42,14 @@ class Google_Service_Bigquery_DatasetAccess extends Google_Model
|
||||
{
|
||||
return $this->groupByEmail;
|
||||
}
|
||||
public function setIamMember($iamMember)
|
||||
{
|
||||
$this->iamMember = $iamMember;
|
||||
}
|
||||
public function getIamMember()
|
||||
{
|
||||
return $this->iamMember;
|
||||
}
|
||||
public function setRole($role)
|
||||
{
|
||||
$this->role = $role;
|
||||
|
||||
@@ -19,6 +19,7 @@ class Google_Service_Bigquery_DestinationTableProperties extends Google_Model
|
||||
{
|
||||
public $description;
|
||||
public $friendlyName;
|
||||
public $labels;
|
||||
|
||||
public function setDescription($description)
|
||||
{
|
||||
@@ -36,4 +37,12 @@ class Google_Service_Bigquery_DestinationTableProperties extends Google_Model
|
||||
{
|
||||
return $this->friendlyName;
|
||||
}
|
||||
public function setLabels($labels)
|
||||
{
|
||||
$this->labels = $labels;
|
||||
}
|
||||
public function getLabels()
|
||||
{
|
||||
return $this->labels;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -26,6 +26,7 @@ class Google_Service_Bigquery_ExternalDataConfiguration extends Google_Collectio
|
||||
protected $csvOptionsDataType = '';
|
||||
protected $googleSheetsOptionsType = 'Google_Service_Bigquery_GoogleSheetsOptions';
|
||||
protected $googleSheetsOptionsDataType = '';
|
||||
public $hivePartitioningMode;
|
||||
public $ignoreUnknownValues;
|
||||
public $maxBadRecords;
|
||||
protected $schemaType = 'Google_Service_Bigquery_TableSchema';
|
||||
@@ -91,6 +92,14 @@ class Google_Service_Bigquery_ExternalDataConfiguration extends Google_Collectio
|
||||
{
|
||||
return $this->googleSheetsOptions;
|
||||
}
|
||||
public function setHivePartitioningMode($hivePartitioningMode)
|
||||
{
|
||||
$this->hivePartitioningMode = $hivePartitioningMode;
|
||||
}
|
||||
public function getHivePartitioningMode()
|
||||
{
|
||||
return $this->hivePartitioningMode;
|
||||
}
|
||||
public function setIgnoreUnknownValues($ignoreUnknownValues)
|
||||
{
|
||||
$this->ignoreUnknownValues = $ignoreUnknownValues;
|
||||
|
||||
66
vendor/google/apiclient-services/src/Google/Service/Bigquery/IterationResult.php
vendored
Normal file
66
vendor/google/apiclient-services/src/Google/Service/Bigquery/IterationResult.php
vendored
Normal file
@@ -0,0 +1,66 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_Bigquery_IterationResult extends Google_Model
|
||||
{
|
||||
public $durationMs;
|
||||
public $evalLoss;
|
||||
public $index;
|
||||
public $learnRate;
|
||||
public $trainingLoss;
|
||||
|
||||
public function setDurationMs($durationMs)
|
||||
{
|
||||
$this->durationMs = $durationMs;
|
||||
}
|
||||
public function getDurationMs()
|
||||
{
|
||||
return $this->durationMs;
|
||||
}
|
||||
public function setEvalLoss($evalLoss)
|
||||
{
|
||||
$this->evalLoss = $evalLoss;
|
||||
}
|
||||
public function getEvalLoss()
|
||||
{
|
||||
return $this->evalLoss;
|
||||
}
|
||||
public function setIndex($index)
|
||||
{
|
||||
$this->index = $index;
|
||||
}
|
||||
public function getIndex()
|
||||
{
|
||||
return $this->index;
|
||||
}
|
||||
public function setLearnRate($learnRate)
|
||||
{
|
||||
$this->learnRate = $learnRate;
|
||||
}
|
||||
public function getLearnRate()
|
||||
{
|
||||
return $this->learnRate;
|
||||
}
|
||||
public function setTrainingLoss($trainingLoss)
|
||||
{
|
||||
$this->trainingLoss = $trainingLoss;
|
||||
}
|
||||
public function getTrainingLoss()
|
||||
{
|
||||
return $this->trainingLoss;
|
||||
}
|
||||
}
|
||||
@@ -23,6 +23,7 @@ class Google_Service_Bigquery_JobConfiguration extends Google_Model
|
||||
protected $extractType = 'Google_Service_Bigquery_JobConfigurationExtract';
|
||||
protected $extractDataType = '';
|
||||
public $jobTimeoutMs;
|
||||
public $jobType;
|
||||
public $labels;
|
||||
protected $loadType = 'Google_Service_Bigquery_JobConfigurationLoad';
|
||||
protected $loadDataType = '';
|
||||
@@ -73,6 +74,14 @@ class Google_Service_Bigquery_JobConfiguration extends Google_Model
|
||||
{
|
||||
return $this->jobTimeoutMs;
|
||||
}
|
||||
public function setJobType($jobType)
|
||||
{
|
||||
$this->jobType = $jobType;
|
||||
}
|
||||
public function getJobType()
|
||||
{
|
||||
return $this->jobType;
|
||||
}
|
||||
public function setLabels($labels)
|
||||
{
|
||||
$this->labels = $labels;
|
||||
|
||||
@@ -32,11 +32,14 @@ class Google_Service_Bigquery_JobConfigurationLoad extends Google_Collection
|
||||
protected $destinationTablePropertiesDataType = '';
|
||||
public $encoding;
|
||||
public $fieldDelimiter;
|
||||
public $hivePartitioningMode;
|
||||
public $ignoreUnknownValues;
|
||||
public $maxBadRecords;
|
||||
public $nullMarker;
|
||||
public $projectionFields;
|
||||
public $quote;
|
||||
protected $rangePartitioningType = 'Google_Service_Bigquery_RangePartitioning';
|
||||
protected $rangePartitioningDataType = '';
|
||||
protected $schemaType = 'Google_Service_Bigquery_TableSchema';
|
||||
protected $schemaDataType = '';
|
||||
public $schemaInline;
|
||||
@@ -47,6 +50,7 @@ class Google_Service_Bigquery_JobConfigurationLoad extends Google_Collection
|
||||
public $sourceUris;
|
||||
protected $timePartitioningType = 'Google_Service_Bigquery_TimePartitioning';
|
||||
protected $timePartitioningDataType = '';
|
||||
public $useAvroLogicalTypes;
|
||||
public $writeDisposition;
|
||||
|
||||
public function setAllowJaggedRows($allowJaggedRows)
|
||||
@@ -153,6 +157,14 @@ class Google_Service_Bigquery_JobConfigurationLoad extends Google_Collection
|
||||
{
|
||||
return $this->fieldDelimiter;
|
||||
}
|
||||
public function setHivePartitioningMode($hivePartitioningMode)
|
||||
{
|
||||
$this->hivePartitioningMode = $hivePartitioningMode;
|
||||
}
|
||||
public function getHivePartitioningMode()
|
||||
{
|
||||
return $this->hivePartitioningMode;
|
||||
}
|
||||
public function setIgnoreUnknownValues($ignoreUnknownValues)
|
||||
{
|
||||
$this->ignoreUnknownValues = $ignoreUnknownValues;
|
||||
@@ -193,6 +205,20 @@ class Google_Service_Bigquery_JobConfigurationLoad extends Google_Collection
|
||||
{
|
||||
return $this->quote;
|
||||
}
|
||||
/**
|
||||
* @param Google_Service_Bigquery_RangePartitioning
|
||||
*/
|
||||
public function setRangePartitioning(Google_Service_Bigquery_RangePartitioning $rangePartitioning)
|
||||
{
|
||||
$this->rangePartitioning = $rangePartitioning;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_Bigquery_RangePartitioning
|
||||
*/
|
||||
public function getRangePartitioning()
|
||||
{
|
||||
return $this->rangePartitioning;
|
||||
}
|
||||
/**
|
||||
* @param Google_Service_Bigquery_TableSchema
|
||||
*/
|
||||
@@ -269,6 +295,14 @@ class Google_Service_Bigquery_JobConfigurationLoad extends Google_Collection
|
||||
{
|
||||
return $this->timePartitioning;
|
||||
}
|
||||
public function setUseAvroLogicalTypes($useAvroLogicalTypes)
|
||||
{
|
||||
$this->useAvroLogicalTypes = $useAvroLogicalTypes;
|
||||
}
|
||||
public function getUseAvroLogicalTypes()
|
||||
{
|
||||
return $this->useAvroLogicalTypes;
|
||||
}
|
||||
public function setWriteDisposition($writeDisposition)
|
||||
{
|
||||
$this->writeDisposition = $writeDisposition;
|
||||
|
||||
@@ -37,6 +37,8 @@ class Google_Service_Bigquery_JobConfigurationQuery extends Google_Collection
|
||||
public $query;
|
||||
protected $queryParametersType = 'Google_Service_Bigquery_QueryParameter';
|
||||
protected $queryParametersDataType = 'array';
|
||||
protected $rangePartitioningType = 'Google_Service_Bigquery_RangePartitioning';
|
||||
protected $rangePartitioningDataType = '';
|
||||
public $schemaUpdateOptions;
|
||||
protected $tableDefinitionsType = 'Google_Service_Bigquery_ExternalDataConfiguration';
|
||||
protected $tableDefinitionsDataType = 'map';
|
||||
@@ -190,6 +192,20 @@ class Google_Service_Bigquery_JobConfigurationQuery extends Google_Collection
|
||||
{
|
||||
return $this->queryParameters;
|
||||
}
|
||||
/**
|
||||
* @param Google_Service_Bigquery_RangePartitioning
|
||||
*/
|
||||
public function setRangePartitioning(Google_Service_Bigquery_RangePartitioning $rangePartitioning)
|
||||
{
|
||||
$this->rangePartitioning = $rangePartitioning;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_Bigquery_RangePartitioning
|
||||
*/
|
||||
public function getRangePartitioning()
|
||||
{
|
||||
return $this->rangePartitioning;
|
||||
}
|
||||
public function setSchemaUpdateOptions($schemaUpdateOptions)
|
||||
{
|
||||
$this->schemaUpdateOptions = $schemaUpdateOptions;
|
||||
|
||||
@@ -15,8 +15,9 @@
|
||||
* the License.
|
||||
*/
|
||||
|
||||
class Google_Service_Bigquery_JobStatistics extends Google_Model
|
||||
class Google_Service_Bigquery_JobStatistics extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'reservationUsage';
|
||||
public $completionRatio;
|
||||
public $creationTime;
|
||||
public $endTime;
|
||||
@@ -24,10 +25,16 @@ class Google_Service_Bigquery_JobStatistics extends Google_Model
|
||||
protected $extractDataType = '';
|
||||
protected $loadType = 'Google_Service_Bigquery_JobStatistics3';
|
||||
protected $loadDataType = '';
|
||||
public $numChildJobs;
|
||||
public $parentJobId;
|
||||
protected $queryType = 'Google_Service_Bigquery_JobStatistics2';
|
||||
protected $queryDataType = '';
|
||||
public $quotaDeferments;
|
||||
protected $reservationUsageType = 'Google_Service_Bigquery_JobStatisticsReservationUsage';
|
||||
protected $reservationUsageDataType = 'array';
|
||||
public $startTime;
|
||||
public $totalBytesProcessed;
|
||||
public $totalSlotMs;
|
||||
|
||||
public function setCompletionRatio($completionRatio)
|
||||
{
|
||||
@@ -81,6 +88,22 @@ class Google_Service_Bigquery_JobStatistics extends Google_Model
|
||||
{
|
||||
return $this->load;
|
||||
}
|
||||
public function setNumChildJobs($numChildJobs)
|
||||
{
|
||||
$this->numChildJobs = $numChildJobs;
|
||||
}
|
||||
public function getNumChildJobs()
|
||||
{
|
||||
return $this->numChildJobs;
|
||||
}
|
||||
public function setParentJobId($parentJobId)
|
||||
{
|
||||
$this->parentJobId = $parentJobId;
|
||||
}
|
||||
public function getParentJobId()
|
||||
{
|
||||
return $this->parentJobId;
|
||||
}
|
||||
/**
|
||||
* @param Google_Service_Bigquery_JobStatistics2
|
||||
*/
|
||||
@@ -95,6 +118,28 @@ class Google_Service_Bigquery_JobStatistics extends Google_Model
|
||||
{
|
||||
return $this->query;
|
||||
}
|
||||
public function setQuotaDeferments($quotaDeferments)
|
||||
{
|
||||
$this->quotaDeferments = $quotaDeferments;
|
||||
}
|
||||
public function getQuotaDeferments()
|
||||
{
|
||||
return $this->quotaDeferments;
|
||||
}
|
||||
/**
|
||||
* @param Google_Service_Bigquery_JobStatisticsReservationUsage
|
||||
*/
|
||||
public function setReservationUsage($reservationUsage)
|
||||
{
|
||||
$this->reservationUsage = $reservationUsage;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_Bigquery_JobStatisticsReservationUsage
|
||||
*/
|
||||
public function getReservationUsage()
|
||||
{
|
||||
return $this->reservationUsage;
|
||||
}
|
||||
public function setStartTime($startTime)
|
||||
{
|
||||
$this->startTime = $startTime;
|
||||
@@ -111,4 +156,12 @@ class Google_Service_Bigquery_JobStatistics extends Google_Model
|
||||
{
|
||||
return $this->totalBytesProcessed;
|
||||
}
|
||||
public function setTotalSlotMs($totalSlotMs)
|
||||
{
|
||||
$this->totalSlotMs = $totalSlotMs;
|
||||
}
|
||||
public function getTotalSlotMs()
|
||||
{
|
||||
return $this->totalSlotMs;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,11 +24,17 @@ class Google_Service_Bigquery_JobStatistics2 extends Google_Collection
|
||||
protected $ddlTargetTableType = 'Google_Service_Bigquery_TableReference';
|
||||
protected $ddlTargetTableDataType = '';
|
||||
public $estimatedBytesProcessed;
|
||||
protected $modelTrainingType = 'Google_Service_Bigquery_BigQueryModelTraining';
|
||||
protected $modelTrainingDataType = '';
|
||||
public $modelTrainingCurrentIteration;
|
||||
public $modelTrainingExpectedTotalIteration;
|
||||
public $numDmlAffectedRows;
|
||||
protected $queryPlanType = 'Google_Service_Bigquery_ExplainQueryStage';
|
||||
protected $queryPlanDataType = 'array';
|
||||
protected $referencedTablesType = 'Google_Service_Bigquery_TableReference';
|
||||
protected $referencedTablesDataType = 'array';
|
||||
protected $reservationUsageType = 'Google_Service_Bigquery_JobStatistics2ReservationUsage';
|
||||
protected $reservationUsageDataType = 'array';
|
||||
protected $schemaType = 'Google_Service_Bigquery_TableSchema';
|
||||
protected $schemaDataType = '';
|
||||
public $statementType;
|
||||
@@ -36,6 +42,7 @@ class Google_Service_Bigquery_JobStatistics2 extends Google_Collection
|
||||
protected $timelineDataType = 'array';
|
||||
public $totalBytesBilled;
|
||||
public $totalBytesProcessed;
|
||||
public $totalBytesProcessedAccuracy;
|
||||
public $totalPartitionsProcessed;
|
||||
public $totalSlotMs;
|
||||
protected $undeclaredQueryParametersType = 'Google_Service_Bigquery_QueryParameter';
|
||||
@@ -87,6 +94,36 @@ class Google_Service_Bigquery_JobStatistics2 extends Google_Collection
|
||||
{
|
||||
return $this->estimatedBytesProcessed;
|
||||
}
|
||||
/**
|
||||
* @param Google_Service_Bigquery_BigQueryModelTraining
|
||||
*/
|
||||
public function setModelTraining(Google_Service_Bigquery_BigQueryModelTraining $modelTraining)
|
||||
{
|
||||
$this->modelTraining = $modelTraining;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_Bigquery_BigQueryModelTraining
|
||||
*/
|
||||
public function getModelTraining()
|
||||
{
|
||||
return $this->modelTraining;
|
||||
}
|
||||
public function setModelTrainingCurrentIteration($modelTrainingCurrentIteration)
|
||||
{
|
||||
$this->modelTrainingCurrentIteration = $modelTrainingCurrentIteration;
|
||||
}
|
||||
public function getModelTrainingCurrentIteration()
|
||||
{
|
||||
return $this->modelTrainingCurrentIteration;
|
||||
}
|
||||
public function setModelTrainingExpectedTotalIteration($modelTrainingExpectedTotalIteration)
|
||||
{
|
||||
$this->modelTrainingExpectedTotalIteration = $modelTrainingExpectedTotalIteration;
|
||||
}
|
||||
public function getModelTrainingExpectedTotalIteration()
|
||||
{
|
||||
return $this->modelTrainingExpectedTotalIteration;
|
||||
}
|
||||
public function setNumDmlAffectedRows($numDmlAffectedRows)
|
||||
{
|
||||
$this->numDmlAffectedRows = $numDmlAffectedRows;
|
||||
@@ -123,6 +160,20 @@ class Google_Service_Bigquery_JobStatistics2 extends Google_Collection
|
||||
{
|
||||
return $this->referencedTables;
|
||||
}
|
||||
/**
|
||||
* @param Google_Service_Bigquery_JobStatistics2ReservationUsage
|
||||
*/
|
||||
public function setReservationUsage($reservationUsage)
|
||||
{
|
||||
$this->reservationUsage = $reservationUsage;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_Bigquery_JobStatistics2ReservationUsage
|
||||
*/
|
||||
public function getReservationUsage()
|
||||
{
|
||||
return $this->reservationUsage;
|
||||
}
|
||||
/**
|
||||
* @param Google_Service_Bigquery_TableSchema
|
||||
*/
|
||||
@@ -175,6 +226,14 @@ class Google_Service_Bigquery_JobStatistics2 extends Google_Collection
|
||||
{
|
||||
return $this->totalBytesProcessed;
|
||||
}
|
||||
public function setTotalBytesProcessedAccuracy($totalBytesProcessedAccuracy)
|
||||
{
|
||||
$this->totalBytesProcessedAccuracy = $totalBytesProcessedAccuracy;
|
||||
}
|
||||
public function getTotalBytesProcessedAccuracy()
|
||||
{
|
||||
return $this->totalBytesProcessedAccuracy;
|
||||
}
|
||||
public function setTotalPartitionsProcessed($totalPartitionsProcessed)
|
||||
{
|
||||
$this->totalPartitionsProcessed = $totalPartitionsProcessed;
|
||||
|
||||
39
vendor/google/apiclient-services/src/Google/Service/Bigquery/JobStatistics2ReservationUsage.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/Bigquery/JobStatistics2ReservationUsage.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_Bigquery_JobStatistics2ReservationUsage extends Google_Model
|
||||
{
|
||||
public $name;
|
||||
public $slotMs;
|
||||
|
||||
public function setName($name)
|
||||
{
|
||||
$this->name = $name;
|
||||
}
|
||||
public function getName()
|
||||
{
|
||||
return $this->name;
|
||||
}
|
||||
public function setSlotMs($slotMs)
|
||||
{
|
||||
$this->slotMs = $slotMs;
|
||||
}
|
||||
public function getSlotMs()
|
||||
{
|
||||
return $this->slotMs;
|
||||
}
|
||||
}
|
||||
@@ -19,6 +19,7 @@ class Google_Service_Bigquery_JobStatistics4 extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'destinationUriFileCounts';
|
||||
public $destinationUriFileCounts;
|
||||
public $inputBytes;
|
||||
|
||||
public function setDestinationUriFileCounts($destinationUriFileCounts)
|
||||
{
|
||||
@@ -28,4 +29,12 @@ class Google_Service_Bigquery_JobStatistics4 extends Google_Collection
|
||||
{
|
||||
return $this->destinationUriFileCounts;
|
||||
}
|
||||
public function setInputBytes($inputBytes)
|
||||
{
|
||||
$this->inputBytes = $inputBytes;
|
||||
}
|
||||
public function getInputBytes()
|
||||
{
|
||||
return $this->inputBytes;
|
||||
}
|
||||
}
|
||||
|
||||
39
vendor/google/apiclient-services/src/Google/Service/Bigquery/JobStatisticsReservationUsage.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/Bigquery/JobStatisticsReservationUsage.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_Bigquery_JobStatisticsReservationUsage extends Google_Model
|
||||
{
|
||||
public $name;
|
||||
public $slotMs;
|
||||
|
||||
public function setName($name)
|
||||
{
|
||||
$this->name = $name;
|
||||
}
|
||||
public function getName()
|
||||
{
|
||||
return $this->name;
|
||||
}
|
||||
public function setSlotMs($slotMs)
|
||||
{
|
||||
$this->slotMs = $slotMs;
|
||||
}
|
||||
public function getSlotMs()
|
||||
{
|
||||
return $this->slotMs;
|
||||
}
|
||||
}
|
||||
39
vendor/google/apiclient-services/src/Google/Service/Bigquery/MaterializedViewDefinition.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/Bigquery/MaterializedViewDefinition.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_Bigquery_MaterializedViewDefinition extends Google_Model
|
||||
{
|
||||
public $lastRefreshTime;
|
||||
public $query;
|
||||
|
||||
public function setLastRefreshTime($lastRefreshTime)
|
||||
{
|
||||
$this->lastRefreshTime = $lastRefreshTime;
|
||||
}
|
||||
public function getLastRefreshTime()
|
||||
{
|
||||
return $this->lastRefreshTime;
|
||||
}
|
||||
public function setQuery($query)
|
||||
{
|
||||
$this->query = $query;
|
||||
}
|
||||
public function getQuery()
|
||||
{
|
||||
return $this->query;
|
||||
}
|
||||
}
|
||||
54
vendor/google/apiclient-services/src/Google/Service/Bigquery/ModelDefinition.php
vendored
Normal file
54
vendor/google/apiclient-services/src/Google/Service/Bigquery/ModelDefinition.php
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_Bigquery_ModelDefinition extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'trainingRuns';
|
||||
protected $modelOptionsType = 'Google_Service_Bigquery_ModelDefinitionModelOptions';
|
||||
protected $modelOptionsDataType = '';
|
||||
protected $trainingRunsType = 'Google_Service_Bigquery_TrainingRun';
|
||||
protected $trainingRunsDataType = 'array';
|
||||
|
||||
/**
|
||||
* @param Google_Service_Bigquery_ModelDefinitionModelOptions
|
||||
*/
|
||||
public function setModelOptions(Google_Service_Bigquery_ModelDefinitionModelOptions $modelOptions)
|
||||
{
|
||||
$this->modelOptions = $modelOptions;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_Bigquery_ModelDefinitionModelOptions
|
||||
*/
|
||||
public function getModelOptions()
|
||||
{
|
||||
return $this->modelOptions;
|
||||
}
|
||||
/**
|
||||
* @param Google_Service_Bigquery_TrainingRun
|
||||
*/
|
||||
public function setTrainingRuns($trainingRuns)
|
||||
{
|
||||
$this->trainingRuns = $trainingRuns;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_Bigquery_TrainingRun
|
||||
*/
|
||||
public function getTrainingRuns()
|
||||
{
|
||||
return $this->trainingRuns;
|
||||
}
|
||||
}
|
||||
49
vendor/google/apiclient-services/src/Google/Service/Bigquery/ModelDefinitionModelOptions.php
vendored
Normal file
49
vendor/google/apiclient-services/src/Google/Service/Bigquery/ModelDefinitionModelOptions.php
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_Bigquery_ModelDefinitionModelOptions extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'labels';
|
||||
public $labels;
|
||||
public $lossType;
|
||||
public $modelType;
|
||||
|
||||
public function setLabels($labels)
|
||||
{
|
||||
$this->labels = $labels;
|
||||
}
|
||||
public function getLabels()
|
||||
{
|
||||
return $this->labels;
|
||||
}
|
||||
public function setLossType($lossType)
|
||||
{
|
||||
$this->lossType = $lossType;
|
||||
}
|
||||
public function getLossType()
|
||||
{
|
||||
return $this->lossType;
|
||||
}
|
||||
public function setModelType($modelType)
|
||||
{
|
||||
$this->modelType = $modelType;
|
||||
}
|
||||
public function getModelType()
|
||||
{
|
||||
return $this->modelType;
|
||||
}
|
||||
}
|
||||
46
vendor/google/apiclient-services/src/Google/Service/Bigquery/RangePartitioning.php
vendored
Normal file
46
vendor/google/apiclient-services/src/Google/Service/Bigquery/RangePartitioning.php
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_Bigquery_RangePartitioning extends Google_Model
|
||||
{
|
||||
public $field;
|
||||
protected $rangeType = 'Google_Service_Bigquery_RangePartitioningRange';
|
||||
protected $rangeDataType = '';
|
||||
|
||||
public function setField($field)
|
||||
{
|
||||
$this->field = $field;
|
||||
}
|
||||
public function getField()
|
||||
{
|
||||
return $this->field;
|
||||
}
|
||||
/**
|
||||
* @param Google_Service_Bigquery_RangePartitioningRange
|
||||
*/
|
||||
public function setRange(Google_Service_Bigquery_RangePartitioningRange $range)
|
||||
{
|
||||
$this->range = $range;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_Bigquery_RangePartitioningRange
|
||||
*/
|
||||
public function getRange()
|
||||
{
|
||||
return $this->range;
|
||||
}
|
||||
}
|
||||
48
vendor/google/apiclient-services/src/Google/Service/Bigquery/RangePartitioningRange.php
vendored
Normal file
48
vendor/google/apiclient-services/src/Google/Service/Bigquery/RangePartitioningRange.php
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_Bigquery_RangePartitioningRange extends Google_Model
|
||||
{
|
||||
public $end;
|
||||
public $interval;
|
||||
public $start;
|
||||
|
||||
public function setEnd($end)
|
||||
{
|
||||
$this->end = $end;
|
||||
}
|
||||
public function getEnd()
|
||||
{
|
||||
return $this->end;
|
||||
}
|
||||
public function setInterval($interval)
|
||||
{
|
||||
$this->interval = $interval;
|
||||
}
|
||||
public function getInterval()
|
||||
{
|
||||
return $this->interval;
|
||||
}
|
||||
public function setStart($start)
|
||||
{
|
||||
$this->start = $start;
|
||||
}
|
||||
public function getStart()
|
||||
{
|
||||
return $this->start;
|
||||
}
|
||||
}
|
||||
@@ -34,8 +34,9 @@ class Google_Service_Bigquery_Resource_Jobs extends Google_Service_Resource
|
||||
* @param string $jobId [Required] Job ID of the job to cancel
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string location [Experimental] The geographic location of the job.
|
||||
* Required except for US and EU.
|
||||
* @opt_param string location The geographic location of the job. Required
|
||||
* except for US and EU. See details at
|
||||
* https://cloud.google.com/bigquery/docs/locations#specifying_your_location.
|
||||
* @return Google_Service_Bigquery_JobCancelResponse
|
||||
*/
|
||||
public function cancel($projectId, $jobId, $optParams = array())
|
||||
@@ -53,8 +54,9 @@ class Google_Service_Bigquery_Resource_Jobs extends Google_Service_Resource
|
||||
* @param string $jobId [Required] Job ID of the requested job
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string location [Experimental] The geographic location of the job.
|
||||
* Required except for US and EU.
|
||||
* @opt_param string location The geographic location of the job. Required
|
||||
* except for US and EU. See details at
|
||||
* https://cloud.google.com/bigquery/docs/locations#specifying_your_location.
|
||||
* @return Google_Service_Bigquery_Job
|
||||
*/
|
||||
public function get($projectId, $jobId, $optParams = array())
|
||||
@@ -70,8 +72,9 @@ class Google_Service_Bigquery_Resource_Jobs extends Google_Service_Resource
|
||||
* @param string $jobId [Required] Job ID of the query job
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string location [Experimental] The geographic location where the
|
||||
* job should run. Required except for US and EU.
|
||||
* @opt_param string location The geographic location where the job should run.
|
||||
* Required except for US and EU. See details at
|
||||
* https://cloud.google.com/bigquery/docs/locations#specifying_your_location.
|
||||
* @opt_param string maxResults Maximum number of results to read
|
||||
* @opt_param string pageToken Page token, returned by a previous call, to
|
||||
* request the next page of results
|
||||
@@ -125,6 +128,8 @@ class Google_Service_Bigquery_Resource_Jobs extends Google_Service_Resource
|
||||
* this timestamp are returned
|
||||
* @opt_param string pageToken Page token, returned by a previous call, to
|
||||
* request the next page of results
|
||||
* @opt_param string parentJobId If set, retrieves only jobs whose parent is
|
||||
* this job. Otherwise, retrieves only jobs which have no parent.
|
||||
* @opt_param string projection Restrict information returned to a set of
|
||||
* selected fields
|
||||
* @opt_param string stateFilter Filter for job state
|
||||
|
||||
@@ -33,9 +33,17 @@ class Google_Service_Bigquery_Table extends Google_Model
|
||||
public $labels;
|
||||
public $lastModifiedTime;
|
||||
public $location;
|
||||
protected $materializedViewType = 'Google_Service_Bigquery_MaterializedViewDefinition';
|
||||
protected $materializedViewDataType = '';
|
||||
protected $modelType = 'Google_Service_Bigquery_ModelDefinition';
|
||||
protected $modelDataType = '';
|
||||
public $numBytes;
|
||||
public $numLongTermBytes;
|
||||
public $numPhysicalBytes;
|
||||
public $numRows;
|
||||
protected $rangePartitioningType = 'Google_Service_Bigquery_RangePartitioning';
|
||||
protected $rangePartitioningDataType = '';
|
||||
public $requirePartitionFilter;
|
||||
protected $schemaType = 'Google_Service_Bigquery_TableSchema';
|
||||
protected $schemaDataType = '';
|
||||
public $selfLink;
|
||||
@@ -171,6 +179,34 @@ class Google_Service_Bigquery_Table extends Google_Model
|
||||
{
|
||||
return $this->location;
|
||||
}
|
||||
/**
|
||||
* @param Google_Service_Bigquery_MaterializedViewDefinition
|
||||
*/
|
||||
public function setMaterializedView(Google_Service_Bigquery_MaterializedViewDefinition $materializedView)
|
||||
{
|
||||
$this->materializedView = $materializedView;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_Bigquery_MaterializedViewDefinition
|
||||
*/
|
||||
public function getMaterializedView()
|
||||
{
|
||||
return $this->materializedView;
|
||||
}
|
||||
/**
|
||||
* @param Google_Service_Bigquery_ModelDefinition
|
||||
*/
|
||||
public function setModel(Google_Service_Bigquery_ModelDefinition $model)
|
||||
{
|
||||
$this->model = $model;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_Bigquery_ModelDefinition
|
||||
*/
|
||||
public function getModel()
|
||||
{
|
||||
return $this->model;
|
||||
}
|
||||
public function setNumBytes($numBytes)
|
||||
{
|
||||
$this->numBytes = $numBytes;
|
||||
@@ -187,6 +223,14 @@ class Google_Service_Bigquery_Table extends Google_Model
|
||||
{
|
||||
return $this->numLongTermBytes;
|
||||
}
|
||||
public function setNumPhysicalBytes($numPhysicalBytes)
|
||||
{
|
||||
$this->numPhysicalBytes = $numPhysicalBytes;
|
||||
}
|
||||
public function getNumPhysicalBytes()
|
||||
{
|
||||
return $this->numPhysicalBytes;
|
||||
}
|
||||
public function setNumRows($numRows)
|
||||
{
|
||||
$this->numRows = $numRows;
|
||||
@@ -195,6 +239,28 @@ class Google_Service_Bigquery_Table extends Google_Model
|
||||
{
|
||||
return $this->numRows;
|
||||
}
|
||||
/**
|
||||
* @param Google_Service_Bigquery_RangePartitioning
|
||||
*/
|
||||
public function setRangePartitioning(Google_Service_Bigquery_RangePartitioning $rangePartitioning)
|
||||
{
|
||||
$this->rangePartitioning = $rangePartitioning;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_Bigquery_RangePartitioning
|
||||
*/
|
||||
public function getRangePartitioning()
|
||||
{
|
||||
return $this->rangePartitioning;
|
||||
}
|
||||
public function setRequirePartitionFilter($requirePartitionFilter)
|
||||
{
|
||||
$this->requirePartitionFilter = $requirePartitionFilter;
|
||||
}
|
||||
public function getRequirePartitionFilter()
|
||||
{
|
||||
return $this->requirePartitionFilter;
|
||||
}
|
||||
/**
|
||||
* @param Google_Service_Bigquery_TableSchema
|
||||
*/
|
||||
|
||||
@@ -18,6 +18,8 @@
|
||||
class Google_Service_Bigquery_TableFieldSchema extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'fields';
|
||||
protected $categoriesType = 'Google_Service_Bigquery_TableFieldSchemaCategories';
|
||||
protected $categoriesDataType = '';
|
||||
public $description;
|
||||
protected $fieldsType = 'Google_Service_Bigquery_TableFieldSchema';
|
||||
protected $fieldsDataType = 'array';
|
||||
@@ -25,6 +27,20 @@ class Google_Service_Bigquery_TableFieldSchema extends Google_Collection
|
||||
public $name;
|
||||
public $type;
|
||||
|
||||
/**
|
||||
* @param Google_Service_Bigquery_TableFieldSchemaCategories
|
||||
*/
|
||||
public function setCategories(Google_Service_Bigquery_TableFieldSchemaCategories $categories)
|
||||
{
|
||||
$this->categories = $categories;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_Bigquery_TableFieldSchemaCategories
|
||||
*/
|
||||
public function getCategories()
|
||||
{
|
||||
return $this->categories;
|
||||
}
|
||||
public function setDescription($description)
|
||||
{
|
||||
$this->description = $description;
|
||||
|
||||
31
vendor/google/apiclient-services/src/Google/Service/Bigquery/TableFieldSchemaCategories.php
vendored
Normal file
31
vendor/google/apiclient-services/src/Google/Service/Bigquery/TableFieldSchemaCategories.php
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_Bigquery_TableFieldSchemaCategories extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'names';
|
||||
public $names;
|
||||
|
||||
public function setNames($names)
|
||||
{
|
||||
$this->names = $names;
|
||||
}
|
||||
public function getNames()
|
||||
{
|
||||
return $this->names;
|
||||
}
|
||||
}
|
||||
72
vendor/google/apiclient-services/src/Google/Service/Bigquery/TrainingRun.php
vendored
Normal file
72
vendor/google/apiclient-services/src/Google/Service/Bigquery/TrainingRun.php
vendored
Normal file
@@ -0,0 +1,72 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_Bigquery_TrainingRun extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'iterationResults';
|
||||
protected $iterationResultsType = 'Google_Service_Bigquery_IterationResult';
|
||||
protected $iterationResultsDataType = 'array';
|
||||
public $startTime;
|
||||
public $state;
|
||||
protected $trainingOptionsType = 'Google_Service_Bigquery_TrainingRunTrainingOptions';
|
||||
protected $trainingOptionsDataType = '';
|
||||
|
||||
/**
|
||||
* @param Google_Service_Bigquery_IterationResult
|
||||
*/
|
||||
public function setIterationResults($iterationResults)
|
||||
{
|
||||
$this->iterationResults = $iterationResults;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_Bigquery_IterationResult
|
||||
*/
|
||||
public function getIterationResults()
|
||||
{
|
||||
return $this->iterationResults;
|
||||
}
|
||||
public function setStartTime($startTime)
|
||||
{
|
||||
$this->startTime = $startTime;
|
||||
}
|
||||
public function getStartTime()
|
||||
{
|
||||
return $this->startTime;
|
||||
}
|
||||
public function setState($state)
|
||||
{
|
||||
$this->state = $state;
|
||||
}
|
||||
public function getState()
|
||||
{
|
||||
return $this->state;
|
||||
}
|
||||
/**
|
||||
* @param Google_Service_Bigquery_TrainingRunTrainingOptions
|
||||
*/
|
||||
public function setTrainingOptions(Google_Service_Bigquery_TrainingRunTrainingOptions $trainingOptions)
|
||||
{
|
||||
$this->trainingOptions = $trainingOptions;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_Bigquery_TrainingRunTrainingOptions
|
||||
*/
|
||||
public function getTrainingOptions()
|
||||
{
|
||||
return $this->trainingOptions;
|
||||
}
|
||||
}
|
||||
102
vendor/google/apiclient-services/src/Google/Service/Bigquery/TrainingRunTrainingOptions.php
vendored
Normal file
102
vendor/google/apiclient-services/src/Google/Service/Bigquery/TrainingRunTrainingOptions.php
vendored
Normal file
@@ -0,0 +1,102 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_Bigquery_TrainingRunTrainingOptions extends Google_Model
|
||||
{
|
||||
public $earlyStop;
|
||||
public $l1Reg;
|
||||
public $l2Reg;
|
||||
public $learnRate;
|
||||
public $learnRateStrategy;
|
||||
public $lineSearchInitLearnRate;
|
||||
public $maxIteration;
|
||||
public $minRelProgress;
|
||||
public $warmStart;
|
||||
|
||||
public function setEarlyStop($earlyStop)
|
||||
{
|
||||
$this->earlyStop = $earlyStop;
|
||||
}
|
||||
public function getEarlyStop()
|
||||
{
|
||||
return $this->earlyStop;
|
||||
}
|
||||
public function setL1Reg($l1Reg)
|
||||
{
|
||||
$this->l1Reg = $l1Reg;
|
||||
}
|
||||
public function getL1Reg()
|
||||
{
|
||||
return $this->l1Reg;
|
||||
}
|
||||
public function setL2Reg($l2Reg)
|
||||
{
|
||||
$this->l2Reg = $l2Reg;
|
||||
}
|
||||
public function getL2Reg()
|
||||
{
|
||||
return $this->l2Reg;
|
||||
}
|
||||
public function setLearnRate($learnRate)
|
||||
{
|
||||
$this->learnRate = $learnRate;
|
||||
}
|
||||
public function getLearnRate()
|
||||
{
|
||||
return $this->learnRate;
|
||||
}
|
||||
public function setLearnRateStrategy($learnRateStrategy)
|
||||
{
|
||||
$this->learnRateStrategy = $learnRateStrategy;
|
||||
}
|
||||
public function getLearnRateStrategy()
|
||||
{
|
||||
return $this->learnRateStrategy;
|
||||
}
|
||||
public function setLineSearchInitLearnRate($lineSearchInitLearnRate)
|
||||
{
|
||||
$this->lineSearchInitLearnRate = $lineSearchInitLearnRate;
|
||||
}
|
||||
public function getLineSearchInitLearnRate()
|
||||
{
|
||||
return $this->lineSearchInitLearnRate;
|
||||
}
|
||||
public function setMaxIteration($maxIteration)
|
||||
{
|
||||
$this->maxIteration = $maxIteration;
|
||||
}
|
||||
public function getMaxIteration()
|
||||
{
|
||||
return $this->maxIteration;
|
||||
}
|
||||
public function setMinRelProgress($minRelProgress)
|
||||
{
|
||||
$this->minRelProgress = $minRelProgress;
|
||||
}
|
||||
public function getMinRelProgress()
|
||||
{
|
||||
return $this->minRelProgress;
|
||||
}
|
||||
public function setWarmStart($warmStart)
|
||||
{
|
||||
$this->warmStart = $warmStart;
|
||||
}
|
||||
public function getWarmStart()
|
||||
{
|
||||
return $this->warmStart;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user