PATH:
home
/
lab2454c
/
vaultchip.com
/
vendor
/
google
/
apiclient-services
/
src
/
Bigquery
<?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\Bigquery; class ExplainQueryStage extends \Google\Collection { protected $collection_key = 'steps'; public $completedParallelInputs; public $computeMsAvg; public $computeMsMax; public $computeRatioAvg; public $computeRatioMax; public $endMs; public $id; public $inputStages; public $name; public $parallelInputs; public $readMsAvg; public $readMsMax; public $readRatioAvg; public $readRatioMax; public $recordsRead; public $recordsWritten; public $shuffleOutputBytes; public $shuffleOutputBytesSpilled; public $slotMs; public $startMs; public $status; protected $stepsType = ExplainQueryStep::class; protected $stepsDataType = 'array'; public $waitMsAvg; public $waitMsMax; public $waitRatioAvg; public $waitRatioMax; public $writeMsAvg; public $writeMsMax; public $writeRatioAvg; public $writeRatioMax; public function setCompletedParallelInputs($completedParallelInputs) { $this->completedParallelInputs = $completedParallelInputs; } public function getCompletedParallelInputs() { return $this->completedParallelInputs; } public function setComputeMsAvg($computeMsAvg) { $this->computeMsAvg = $computeMsAvg; } public function getComputeMsAvg() { return $this->computeMsAvg; } public function setComputeMsMax($computeMsMax) { $this->computeMsMax = $computeMsMax; } public function getComputeMsMax() { return $this->computeMsMax; } public function setComputeRatioAvg($computeRatioAvg) { $this->computeRatioAvg = $computeRatioAvg; } public function getComputeRatioAvg() { return $this->computeRatioAvg; } public function setComputeRatioMax($computeRatioMax) { $this->computeRatioMax = $computeRatioMax; } public function getComputeRatioMax() { return $this->computeRatioMax; } public function setEndMs($endMs) { $this->endMs = $endMs; } public function getEndMs() { return $this->endMs; } public function setId($id) { $this->id = $id; } public function getId() { return $this->id; } public function setInputStages($inputStages) { $this->inputStages = $inputStages; } public function getInputStages() { return $this->inputStages; } public function setName($name) { $this->name = $name; } public function getName() { return $this->name; } public function setParallelInputs($parallelInputs) { $this->parallelInputs = $parallelInputs; } public function getParallelInputs() { return $this->parallelInputs; } public function setReadMsAvg($readMsAvg) { $this->readMsAvg = $readMsAvg; } public function getReadMsAvg() { return $this->readMsAvg; } public function setReadMsMax($readMsMax) { $this->readMsMax = $readMsMax; } public function getReadMsMax() { return $this->readMsMax; } public function setReadRatioAvg($readRatioAvg) { $this->readRatioAvg = $readRatioAvg; } public function getReadRatioAvg() { return $this->readRatioAvg; } public function setReadRatioMax($readRatioMax) { $this->readRatioMax = $readRatioMax; } public function getReadRatioMax() { return $this->readRatioMax; } public function setRecordsRead($recordsRead) { $this->recordsRead = $recordsRead; } public function getRecordsRead() { return $this->recordsRead; } public function setRecordsWritten($recordsWritten) { $this->recordsWritten = $recordsWritten; } public function getRecordsWritten() { return $this->recordsWritten; } public function setShuffleOutputBytes($shuffleOutputBytes) { $this->shuffleOutputBytes = $shuffleOutputBytes; } public function getShuffleOutputBytes() { return $this->shuffleOutputBytes; } public function setShuffleOutputBytesSpilled($shuffleOutputBytesSpilled) { $this->shuffleOutputBytesSpilled = $shuffleOutputBytesSpilled; } public function getShuffleOutputBytesSpilled() { return $this->shuffleOutputBytesSpilled; } public function setSlotMs($slotMs) { $this->slotMs = $slotMs; } public function getSlotMs() { return $this->slotMs; } public function setStartMs($startMs) { $this->startMs = $startMs; } public function getStartMs() { return $this->startMs; } public function setStatus($status) { $this->status = $status; } public function getStatus() { return $this->status; } /** * @param ExplainQueryStep[] */ public function setSteps($steps) { $this->steps = $steps; } /** * @return ExplainQueryStep[] */ public function getSteps() { return $this->steps; } public function setWaitMsAvg($waitMsAvg) { $this->waitMsAvg = $waitMsAvg; } public function getWaitMsAvg() { return $this->waitMsAvg; } public function setWaitMsMax($waitMsMax) { $this->waitMsMax = $waitMsMax; } public function getWaitMsMax() { return $this->waitMsMax; } public function setWaitRatioAvg($waitRatioAvg) { $this->waitRatioAvg = $waitRatioAvg; } public function getWaitRatioAvg() { return $this->waitRatioAvg; } public function setWaitRatioMax($waitRatioMax) { $this->waitRatioMax = $waitRatioMax; } public function getWaitRatioMax() { return $this->waitRatioMax; } public function setWriteMsAvg($writeMsAvg) { $this->writeMsAvg = $writeMsAvg; } public function getWriteMsAvg() { return $this->writeMsAvg; } public function setWriteMsMax($writeMsMax) { $this->writeMsMax = $writeMsMax; } public function getWriteMsMax() { return $this->writeMsMax; } public function setWriteRatioAvg($writeRatioAvg) { $this->writeRatioAvg = $writeRatioAvg; } public function getWriteRatioAvg() { return $this->writeRatioAvg; } public function setWriteRatioMax($writeRatioMax) { $this->writeRatioMax = $writeRatioMax; } public function getWriteRatioMax() { return $this->writeRatioMax; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ExplainQueryStage::class, 'Google_Service_Bigquery_ExplainQueryStage');
[+]
..
[-] DmlStatistics.php
[edit]
[-] BqmlTrainingRun.php
[edit]
[-] JobStatistics2ReservationUsage.php
[edit]
[-] TableDataInsertAllResponseInsertErrors.php
[edit]
[-] ProjectList.php
[edit]
[-] TableDataList.php
[edit]
[-] ArimaResult.php
[edit]
[-] LocationMetadata.php
[edit]
[-] ListModelsResponse.php
[edit]
[-] TableFieldSchema.php
[edit]
[-] BinaryConfusionMatrix.php
[edit]
[-] JobStatistics4.php
[edit]
[-] ExplainQueryStage.php
[edit]
[-] DatasetAccess.php
[edit]
[-] UserDefinedFunctionResource.php
[edit]
[-] QueryRequest.php
[edit]
[-] TestIamPermissionsResponse.php
[edit]
[-] QueryParameterTypeStructTypes.php
[edit]
[-] BigQueryModelTraining.php
[edit]
[-] ListRoutinesResponse.php
[edit]
[-] BigtableColumnFamily.php
[edit]
[-] ArimaModelInfo.php
[edit]
[-] ArimaCoefficients.php
[edit]
[-] Clustering.php
[edit]
[-] BigtableColumn.php
[edit]
[-] GlobalExplanation.php
[edit]
[-] DestinationTableProperties.php
[edit]
[-] GetServiceAccountResponse.php
[edit]
[-] JobConfigurationExtract.php
[edit]
[-] ClusterInfo.php
[edit]
[-] DataSplitResult.php
[edit]
[-] TableDataInsertAllRequestRows.php
[edit]
[-] ProjectListProjects.php
[edit]
[-] ModelDefinition.php
[edit]
[-] ViewDefinition.php
[edit]
[-] Job.php
[edit]
[-] JobStatistics3.php
[edit]
[-] ConfusionMatrix.php
[edit]
[-] ArimaOrder.php
[edit]
[-] JobConfiguration.php
[edit]
[-] AggregateClassificationMetrics.php
[edit]
[-] JobStatisticsReservationUsage.php
[edit]
[-] StandardSqlDataType.php
[edit]
[-] SetIamPolicyRequest.php
[edit]
[-] AuditLogConfig.php
[edit]
[-] JobStatus.php
[edit]
[-] ExternalDataConfiguration.php
[edit]
[-] Dataset.php
[edit]
[-] ArimaFittingMetrics.php
[edit]
[-] ExplainQueryStep.php
[edit]
[-] QueryParameterValue.php
[edit]
[-] Model.php
[edit]
[-] BiEngineReason.php
[edit]
[-] ParquetOptions.php
[edit]
[-] MaterializedViewDefinition.php
[edit]
[-] TransactionInfo.php
[edit]
[-] Row.php
[edit]
[-] TableReference.php
[edit]
[-] TableRow.php
[edit]
[-] JobConfigurationQuery.php
[edit]
[-] GetPolicyOptions.php
[edit]
[-] Table.php
[edit]
[-] MultiClassClassificationMetrics.php
[edit]
[-] IterationResult.php
[edit]
[-] TableCell.php
[edit]
[-] TableList.php
[edit]
[-] Argument.php
[edit]
[-] ListRowAccessPoliciesResponse.php
[edit]
[-] CategoryCount.php
[edit]
[-] Policy.php
[edit]
[-] TimePartitioning.php
[edit]
[-] Explanation.php
[edit]
[-] ArimaSingleModelForecastingMetrics.php
[edit]
[-] EncryptionConfiguration.php
[edit]
[-] TableFieldSchemaPolicyTags.php
[edit]
[-] JobStatistics.php
[edit]
[-] HivePartitioningOptions.php
[edit]
[-] QueryParameter.php
[edit]
[-] DatasetAccessEntry.php
[edit]
[-] JobConfigurationTableCopy.php
[edit]
[-] JobListJobs.php
[edit]
[-] AuditConfig.php
[edit]
[-] DatasetAccessEntryTargetTypes.php
[edit]
[-] StandardSqlField.php
[edit]
[-] RoutineReference.php
[edit]
[-] JobStatistics2.php
[edit]
[-] RangePartitioningRange.php
[edit]
[-] ScriptStatistics.php
[edit]
[-] ProjectReference.php
[edit]
[-] AvroOptions.php
[edit]
[-] CategoricalValue.php
[edit]
[-] TableSchema.php
[edit]
[-] GoogleSheetsOptions.php
[edit]
[-] ScriptStackFrame.php
[edit]
[-] SessionInfo.php
[edit]
[-] RegressionMetrics.php
[edit]
[+]
Resource
[-] DatasetReference.php
[edit]
[-] JobConfigurationLoad.php
[edit]
[-] TableListTables.php
[edit]
[-] TrainingOptions.php
[edit]
[-] TableDataInsertAllRequest.php
[edit]
[-] TableListTablesView.php
[edit]
[-] Routine.php
[edit]
[-] StandardSqlTableType.php
[edit]
[-] Binding.php
[edit]
[-] TestIamPermissionsRequest.php
[edit]
[-] Cluster.php
[edit]
[-] GetIamPolicyRequest.php
[edit]
[-] DatasetListDatasets.php
[edit]
[-] ArimaForecastingMetrics.php
[edit]
[-] RankingMetrics.php
[edit]
[-] CsvOptions.php
[edit]
[-] BigtableOptions.php
[edit]
[-] TableDataInsertAllResponse.php
[edit]
[-] TableFieldSchemaCategories.php
[edit]
[-] ErrorProto.php
[edit]
[-] EvaluationMetrics.php
[edit]
[-] GetQueryResultsResponse.php
[edit]
[-] ModelReference.php
[edit]
[-] Entry.php
[edit]
[-] BinaryClassificationMetrics.php
[edit]
[-] BqmlTrainingRunTrainingOptions.php
[edit]
[-] StandardSqlStructType.php
[edit]
[-] RangePartitioning.php
[edit]
[-] RowAccessPolicyReference.php
[edit]
[-] RowLevelSecurityStatistics.php
[edit]
[-] QueryParameterType.php
[edit]
[-] RowAccessPolicy.php
[edit]
[-] ClusteringMetrics.php
[edit]
[-] JobCancelResponse.php
[edit]
[-] ModelDefinitionModelOptions.php
[edit]
[-] QueryResponse.php
[edit]
[-] QueryTimelineSample.php
[edit]
[-] SnapshotDefinition.php
[edit]
[-] ConnectionProperty.php
[edit]
[-] DatasetList.php
[edit]
[-] JobList.php
[edit]
[-] TrainingRun.php
[edit]
[-] Streamingbuffer.php
[edit]
[-] Expr.php
[edit]
[-] BiEngineStatistics.php
[edit]
[-] FeatureValue.php
[edit]
[-] JobReference.php
[edit]
[-] BqmlIterationResult.php
[edit]