Initial commit
This commit is contained in:
39
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/AliasContext.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/AliasContext.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_CloudDebugger_AliasContext extends Google_Model
|
||||
{
|
||||
public $kind;
|
||||
public $name;
|
||||
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setName($name)
|
||||
{
|
||||
$this->name = $name;
|
||||
}
|
||||
public function getName()
|
||||
{
|
||||
return $this->name;
|
||||
}
|
||||
}
|
||||
171
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Breakpoint.php
vendored
Normal file
171
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Breakpoint.php
vendored
Normal file
@@ -0,0 +1,171 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_CloudDebugger_Breakpoint extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'variableTable';
|
||||
public $action;
|
||||
public $condition;
|
||||
public $createTime;
|
||||
protected $evaluatedExpressionsType = 'Google_Service_CloudDebugger_Variable';
|
||||
protected $evaluatedExpressionsDataType = 'array';
|
||||
public $expressions;
|
||||
public $finalTime;
|
||||
public $id;
|
||||
public $isFinalState;
|
||||
public $labels;
|
||||
protected $locationType = 'Google_Service_CloudDebugger_SourceLocation';
|
||||
protected $locationDataType = '';
|
||||
public $logLevel;
|
||||
public $logMessageFormat;
|
||||
protected $stackFramesType = 'Google_Service_CloudDebugger_StackFrame';
|
||||
protected $stackFramesDataType = 'array';
|
||||
protected $statusType = 'Google_Service_CloudDebugger_StatusMessage';
|
||||
protected $statusDataType = '';
|
||||
public $userEmail;
|
||||
protected $variableTableType = 'Google_Service_CloudDebugger_Variable';
|
||||
protected $variableTableDataType = 'array';
|
||||
|
||||
public function setAction($action)
|
||||
{
|
||||
$this->action = $action;
|
||||
}
|
||||
public function getAction()
|
||||
{
|
||||
return $this->action;
|
||||
}
|
||||
public function setCondition($condition)
|
||||
{
|
||||
$this->condition = $condition;
|
||||
}
|
||||
public function getCondition()
|
||||
{
|
||||
return $this->condition;
|
||||
}
|
||||
public function setCreateTime($createTime)
|
||||
{
|
||||
$this->createTime = $createTime;
|
||||
}
|
||||
public function getCreateTime()
|
||||
{
|
||||
return $this->createTime;
|
||||
}
|
||||
public function setEvaluatedExpressions($evaluatedExpressions)
|
||||
{
|
||||
$this->evaluatedExpressions = $evaluatedExpressions;
|
||||
}
|
||||
public function getEvaluatedExpressions()
|
||||
{
|
||||
return $this->evaluatedExpressions;
|
||||
}
|
||||
public function setExpressions($expressions)
|
||||
{
|
||||
$this->expressions = $expressions;
|
||||
}
|
||||
public function getExpressions()
|
||||
{
|
||||
return $this->expressions;
|
||||
}
|
||||
public function setFinalTime($finalTime)
|
||||
{
|
||||
$this->finalTime = $finalTime;
|
||||
}
|
||||
public function getFinalTime()
|
||||
{
|
||||
return $this->finalTime;
|
||||
}
|
||||
public function setId($id)
|
||||
{
|
||||
$this->id = $id;
|
||||
}
|
||||
public function getId()
|
||||
{
|
||||
return $this->id;
|
||||
}
|
||||
public function setIsFinalState($isFinalState)
|
||||
{
|
||||
$this->isFinalState = $isFinalState;
|
||||
}
|
||||
public function getIsFinalState()
|
||||
{
|
||||
return $this->isFinalState;
|
||||
}
|
||||
public function setLabels($labels)
|
||||
{
|
||||
$this->labels = $labels;
|
||||
}
|
||||
public function getLabels()
|
||||
{
|
||||
return $this->labels;
|
||||
}
|
||||
public function setLocation(Google_Service_CloudDebugger_SourceLocation $location)
|
||||
{
|
||||
$this->location = $location;
|
||||
}
|
||||
public function getLocation()
|
||||
{
|
||||
return $this->location;
|
||||
}
|
||||
public function setLogLevel($logLevel)
|
||||
{
|
||||
$this->logLevel = $logLevel;
|
||||
}
|
||||
public function getLogLevel()
|
||||
{
|
||||
return $this->logLevel;
|
||||
}
|
||||
public function setLogMessageFormat($logMessageFormat)
|
||||
{
|
||||
$this->logMessageFormat = $logMessageFormat;
|
||||
}
|
||||
public function getLogMessageFormat()
|
||||
{
|
||||
return $this->logMessageFormat;
|
||||
}
|
||||
public function setStackFrames($stackFrames)
|
||||
{
|
||||
$this->stackFrames = $stackFrames;
|
||||
}
|
||||
public function getStackFrames()
|
||||
{
|
||||
return $this->stackFrames;
|
||||
}
|
||||
public function setStatus(Google_Service_CloudDebugger_StatusMessage $status)
|
||||
{
|
||||
$this->status = $status;
|
||||
}
|
||||
public function getStatus()
|
||||
{
|
||||
return $this->status;
|
||||
}
|
||||
public function setUserEmail($userEmail)
|
||||
{
|
||||
$this->userEmail = $userEmail;
|
||||
}
|
||||
public function getUserEmail()
|
||||
{
|
||||
return $this->userEmail;
|
||||
}
|
||||
public function setVariableTable($variableTable)
|
||||
{
|
||||
$this->variableTable = $variableTable;
|
||||
}
|
||||
public function getVariableTable()
|
||||
{
|
||||
return $this->variableTable;
|
||||
}
|
||||
}
|
||||
59
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/CloudRepoSourceContext.php
vendored
Normal file
59
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/CloudRepoSourceContext.php
vendored
Normal file
@@ -0,0 +1,59 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_CloudDebugger_CloudRepoSourceContext extends Google_Model
|
||||
{
|
||||
protected $aliasContextType = 'Google_Service_CloudDebugger_AliasContext';
|
||||
protected $aliasContextDataType = '';
|
||||
public $aliasName;
|
||||
protected $repoIdType = 'Google_Service_CloudDebugger_RepoId';
|
||||
protected $repoIdDataType = '';
|
||||
public $revisionId;
|
||||
|
||||
public function setAliasContext(Google_Service_CloudDebugger_AliasContext $aliasContext)
|
||||
{
|
||||
$this->aliasContext = $aliasContext;
|
||||
}
|
||||
public function getAliasContext()
|
||||
{
|
||||
return $this->aliasContext;
|
||||
}
|
||||
public function setAliasName($aliasName)
|
||||
{
|
||||
$this->aliasName = $aliasName;
|
||||
}
|
||||
public function getAliasName()
|
||||
{
|
||||
return $this->aliasName;
|
||||
}
|
||||
public function setRepoId(Google_Service_CloudDebugger_RepoId $repoId)
|
||||
{
|
||||
$this->repoId = $repoId;
|
||||
}
|
||||
public function getRepoId()
|
||||
{
|
||||
return $this->repoId;
|
||||
}
|
||||
public function setRevisionId($revisionId)
|
||||
{
|
||||
$this->revisionId = $revisionId;
|
||||
}
|
||||
public function getRevisionId()
|
||||
{
|
||||
return $this->revisionId;
|
||||
}
|
||||
}
|
||||
40
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/CloudWorkspaceId.php
vendored
Normal file
40
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/CloudWorkspaceId.php
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_CloudDebugger_CloudWorkspaceId extends Google_Model
|
||||
{
|
||||
public $name;
|
||||
protected $repoIdType = 'Google_Service_CloudDebugger_RepoId';
|
||||
protected $repoIdDataType = '';
|
||||
|
||||
public function setName($name)
|
||||
{
|
||||
$this->name = $name;
|
||||
}
|
||||
public function getName()
|
||||
{
|
||||
return $this->name;
|
||||
}
|
||||
public function setRepoId(Google_Service_CloudDebugger_RepoId $repoId)
|
||||
{
|
||||
$this->repoId = $repoId;
|
||||
}
|
||||
public function getRepoId()
|
||||
{
|
||||
return $this->repoId;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_CloudDebugger_CloudWorkspaceSourceContext extends Google_Model
|
||||
{
|
||||
public $snapshotId;
|
||||
protected $workspaceIdType = 'Google_Service_CloudDebugger_CloudWorkspaceId';
|
||||
protected $workspaceIdDataType = '';
|
||||
|
||||
public function setSnapshotId($snapshotId)
|
||||
{
|
||||
$this->snapshotId = $snapshotId;
|
||||
}
|
||||
public function getSnapshotId()
|
||||
{
|
||||
return $this->snapshotId;
|
||||
}
|
||||
public function setWorkspaceId(Google_Service_CloudDebugger_CloudWorkspaceId $workspaceId)
|
||||
{
|
||||
$this->workspaceId = $workspaceId;
|
||||
}
|
||||
public function getWorkspaceId()
|
||||
{
|
||||
return $this->workspaceId;
|
||||
}
|
||||
}
|
||||
20
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/ClouddebuggerEmpty.php
vendored
Normal file
20
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/ClouddebuggerEmpty.php
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_CloudDebugger_ClouddebuggerEmpty extends Google_Model
|
||||
{
|
||||
}
|
||||
124
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Debuggee.php
vendored
Normal file
124
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Debuggee.php
vendored
Normal file
@@ -0,0 +1,124 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_CloudDebugger_Debuggee extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'sourceContexts';
|
||||
public $agentVersion;
|
||||
public $description;
|
||||
protected $extSourceContextsType = 'Google_Service_CloudDebugger_ExtendedSourceContext';
|
||||
protected $extSourceContextsDataType = 'array';
|
||||
public $id;
|
||||
public $isDisabled;
|
||||
public $isInactive;
|
||||
public $labels;
|
||||
public $project;
|
||||
protected $sourceContextsType = 'Google_Service_CloudDebugger_SourceContext';
|
||||
protected $sourceContextsDataType = 'array';
|
||||
protected $statusType = 'Google_Service_CloudDebugger_StatusMessage';
|
||||
protected $statusDataType = '';
|
||||
public $uniquifier;
|
||||
|
||||
public function setAgentVersion($agentVersion)
|
||||
{
|
||||
$this->agentVersion = $agentVersion;
|
||||
}
|
||||
public function getAgentVersion()
|
||||
{
|
||||
return $this->agentVersion;
|
||||
}
|
||||
public function setDescription($description)
|
||||
{
|
||||
$this->description = $description;
|
||||
}
|
||||
public function getDescription()
|
||||
{
|
||||
return $this->description;
|
||||
}
|
||||
public function setExtSourceContexts($extSourceContexts)
|
||||
{
|
||||
$this->extSourceContexts = $extSourceContexts;
|
||||
}
|
||||
public function getExtSourceContexts()
|
||||
{
|
||||
return $this->extSourceContexts;
|
||||
}
|
||||
public function setId($id)
|
||||
{
|
||||
$this->id = $id;
|
||||
}
|
||||
public function getId()
|
||||
{
|
||||
return $this->id;
|
||||
}
|
||||
public function setIsDisabled($isDisabled)
|
||||
{
|
||||
$this->isDisabled = $isDisabled;
|
||||
}
|
||||
public function getIsDisabled()
|
||||
{
|
||||
return $this->isDisabled;
|
||||
}
|
||||
public function setIsInactive($isInactive)
|
||||
{
|
||||
$this->isInactive = $isInactive;
|
||||
}
|
||||
public function getIsInactive()
|
||||
{
|
||||
return $this->isInactive;
|
||||
}
|
||||
public function setLabels($labels)
|
||||
{
|
||||
$this->labels = $labels;
|
||||
}
|
||||
public function getLabels()
|
||||
{
|
||||
return $this->labels;
|
||||
}
|
||||
public function setProject($project)
|
||||
{
|
||||
$this->project = $project;
|
||||
}
|
||||
public function getProject()
|
||||
{
|
||||
return $this->project;
|
||||
}
|
||||
public function setSourceContexts($sourceContexts)
|
||||
{
|
||||
$this->sourceContexts = $sourceContexts;
|
||||
}
|
||||
public function getSourceContexts()
|
||||
{
|
||||
return $this->sourceContexts;
|
||||
}
|
||||
public function setStatus(Google_Service_CloudDebugger_StatusMessage $status)
|
||||
{
|
||||
$this->status = $status;
|
||||
}
|
||||
public function getStatus()
|
||||
{
|
||||
return $this->status;
|
||||
}
|
||||
public function setUniquifier($uniquifier)
|
||||
{
|
||||
$this->uniquifier = $uniquifier;
|
||||
}
|
||||
public function getUniquifier()
|
||||
{
|
||||
return $this->uniquifier;
|
||||
}
|
||||
}
|
||||
40
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/ExtendedSourceContext.php
vendored
Normal file
40
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/ExtendedSourceContext.php
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_CloudDebugger_ExtendedSourceContext extends Google_Model
|
||||
{
|
||||
protected $contextType = 'Google_Service_CloudDebugger_SourceContext';
|
||||
protected $contextDataType = '';
|
||||
public $labels;
|
||||
|
||||
public function setContext(Google_Service_CloudDebugger_SourceContext $context)
|
||||
{
|
||||
$this->context = $context;
|
||||
}
|
||||
public function getContext()
|
||||
{
|
||||
return $this->context;
|
||||
}
|
||||
public function setLabels($labels)
|
||||
{
|
||||
$this->labels = $labels;
|
||||
}
|
||||
public function getLabels()
|
||||
{
|
||||
return $this->labels;
|
||||
}
|
||||
}
|
||||
40
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/FormatMessage.php
vendored
Normal file
40
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/FormatMessage.php
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_CloudDebugger_FormatMessage extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'parameters';
|
||||
public $format;
|
||||
public $parameters;
|
||||
|
||||
public function setFormat($format)
|
||||
{
|
||||
$this->format = $format;
|
||||
}
|
||||
public function getFormat()
|
||||
{
|
||||
return $this->format;
|
||||
}
|
||||
public function setParameters($parameters)
|
||||
{
|
||||
$this->parameters = $parameters;
|
||||
}
|
||||
public function getParameters()
|
||||
{
|
||||
return $this->parameters;
|
||||
}
|
||||
}
|
||||
67
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/GerritSourceContext.php
vendored
Normal file
67
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/GerritSourceContext.php
vendored
Normal file
@@ -0,0 +1,67 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_CloudDebugger_GerritSourceContext extends Google_Model
|
||||
{
|
||||
protected $aliasContextType = 'Google_Service_CloudDebugger_AliasContext';
|
||||
protected $aliasContextDataType = '';
|
||||
public $aliasName;
|
||||
public $gerritProject;
|
||||
public $hostUri;
|
||||
public $revisionId;
|
||||
|
||||
public function setAliasContext(Google_Service_CloudDebugger_AliasContext $aliasContext)
|
||||
{
|
||||
$this->aliasContext = $aliasContext;
|
||||
}
|
||||
public function getAliasContext()
|
||||
{
|
||||
return $this->aliasContext;
|
||||
}
|
||||
public function setAliasName($aliasName)
|
||||
{
|
||||
$this->aliasName = $aliasName;
|
||||
}
|
||||
public function getAliasName()
|
||||
{
|
||||
return $this->aliasName;
|
||||
}
|
||||
public function setGerritProject($gerritProject)
|
||||
{
|
||||
$this->gerritProject = $gerritProject;
|
||||
}
|
||||
public function getGerritProject()
|
||||
{
|
||||
return $this->gerritProject;
|
||||
}
|
||||
public function setHostUri($hostUri)
|
||||
{
|
||||
$this->hostUri = $hostUri;
|
||||
}
|
||||
public function getHostUri()
|
||||
{
|
||||
return $this->hostUri;
|
||||
}
|
||||
public function setRevisionId($revisionId)
|
||||
{
|
||||
$this->revisionId = $revisionId;
|
||||
}
|
||||
public function getRevisionId()
|
||||
{
|
||||
return $this->revisionId;
|
||||
}
|
||||
}
|
||||
31
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/GetBreakpointResponse.php
vendored
Normal file
31
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/GetBreakpointResponse.php
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_CloudDebugger_GetBreakpointResponse extends Google_Model
|
||||
{
|
||||
protected $breakpointType = 'Google_Service_CloudDebugger_Breakpoint';
|
||||
protected $breakpointDataType = '';
|
||||
|
||||
public function setBreakpoint(Google_Service_CloudDebugger_Breakpoint $breakpoint)
|
||||
{
|
||||
$this->breakpoint = $breakpoint;
|
||||
}
|
||||
public function getBreakpoint()
|
||||
{
|
||||
return $this->breakpoint;
|
||||
}
|
||||
}
|
||||
39
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/GitSourceContext.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/GitSourceContext.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_CloudDebugger_GitSourceContext extends Google_Model
|
||||
{
|
||||
public $revisionId;
|
||||
public $url;
|
||||
|
||||
public function setRevisionId($revisionId)
|
||||
{
|
||||
$this->revisionId = $revisionId;
|
||||
}
|
||||
public function getRevisionId()
|
||||
{
|
||||
return $this->revisionId;
|
||||
}
|
||||
public function setUrl($url)
|
||||
{
|
||||
$this->url = $url;
|
||||
}
|
||||
public function getUrl()
|
||||
{
|
||||
return $this->url;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_CloudDebugger_ListActiveBreakpointsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'breakpoints';
|
||||
protected $breakpointsType = 'Google_Service_CloudDebugger_Breakpoint';
|
||||
protected $breakpointsDataType = 'array';
|
||||
public $nextWaitToken;
|
||||
public $waitExpired;
|
||||
|
||||
public function setBreakpoints($breakpoints)
|
||||
{
|
||||
$this->breakpoints = $breakpoints;
|
||||
}
|
||||
public function getBreakpoints()
|
||||
{
|
||||
return $this->breakpoints;
|
||||
}
|
||||
public function setNextWaitToken($nextWaitToken)
|
||||
{
|
||||
$this->nextWaitToken = $nextWaitToken;
|
||||
}
|
||||
public function getNextWaitToken()
|
||||
{
|
||||
return $this->nextWaitToken;
|
||||
}
|
||||
public function setWaitExpired($waitExpired)
|
||||
{
|
||||
$this->waitExpired = $waitExpired;
|
||||
}
|
||||
public function getWaitExpired()
|
||||
{
|
||||
return $this->waitExpired;
|
||||
}
|
||||
}
|
||||
41
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/ListBreakpointsResponse.php
vendored
Normal file
41
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/ListBreakpointsResponse.php
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_CloudDebugger_ListBreakpointsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'breakpoints';
|
||||
protected $breakpointsType = 'Google_Service_CloudDebugger_Breakpoint';
|
||||
protected $breakpointsDataType = 'array';
|
||||
public $nextWaitToken;
|
||||
|
||||
public function setBreakpoints($breakpoints)
|
||||
{
|
||||
$this->breakpoints = $breakpoints;
|
||||
}
|
||||
public function getBreakpoints()
|
||||
{
|
||||
return $this->breakpoints;
|
||||
}
|
||||
public function setNextWaitToken($nextWaitToken)
|
||||
{
|
||||
$this->nextWaitToken = $nextWaitToken;
|
||||
}
|
||||
public function getNextWaitToken()
|
||||
{
|
||||
return $this->nextWaitToken;
|
||||
}
|
||||
}
|
||||
32
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/ListDebuggeesResponse.php
vendored
Normal file
32
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/ListDebuggeesResponse.php
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_CloudDebugger_ListDebuggeesResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'debuggees';
|
||||
protected $debuggeesType = 'Google_Service_CloudDebugger_Debuggee';
|
||||
protected $debuggeesDataType = 'array';
|
||||
|
||||
public function setDebuggees($debuggees)
|
||||
{
|
||||
$this->debuggees = $debuggees;
|
||||
}
|
||||
public function getDebuggees()
|
||||
{
|
||||
return $this->debuggees;
|
||||
}
|
||||
}
|
||||
39
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/ProjectRepoId.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/ProjectRepoId.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_CloudDebugger_ProjectRepoId extends Google_Model
|
||||
{
|
||||
public $projectId;
|
||||
public $repoName;
|
||||
|
||||
public function setProjectId($projectId)
|
||||
{
|
||||
$this->projectId = $projectId;
|
||||
}
|
||||
public function getProjectId()
|
||||
{
|
||||
return $this->projectId;
|
||||
}
|
||||
public function setRepoName($repoName)
|
||||
{
|
||||
$this->repoName = $repoName;
|
||||
}
|
||||
public function getRepoName()
|
||||
{
|
||||
return $this->repoName;
|
||||
}
|
||||
}
|
||||
31
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/RegisterDebuggeeRequest.php
vendored
Normal file
31
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/RegisterDebuggeeRequest.php
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_CloudDebugger_RegisterDebuggeeRequest extends Google_Model
|
||||
{
|
||||
protected $debuggeeType = 'Google_Service_CloudDebugger_Debuggee';
|
||||
protected $debuggeeDataType = '';
|
||||
|
||||
public function setDebuggee(Google_Service_CloudDebugger_Debuggee $debuggee)
|
||||
{
|
||||
$this->debuggee = $debuggee;
|
||||
}
|
||||
public function getDebuggee()
|
||||
{
|
||||
return $this->debuggee;
|
||||
}
|
||||
}
|
||||
31
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/RegisterDebuggeeResponse.php
vendored
Normal file
31
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/RegisterDebuggeeResponse.php
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_CloudDebugger_RegisterDebuggeeResponse extends Google_Model
|
||||
{
|
||||
protected $debuggeeType = 'Google_Service_CloudDebugger_Debuggee';
|
||||
protected $debuggeeDataType = '';
|
||||
|
||||
public function setDebuggee(Google_Service_CloudDebugger_Debuggee $debuggee)
|
||||
{
|
||||
$this->debuggee = $debuggee;
|
||||
}
|
||||
public function getDebuggee()
|
||||
{
|
||||
return $this->debuggee;
|
||||
}
|
||||
}
|
||||
40
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/RepoId.php
vendored
Normal file
40
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/RepoId.php
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_CloudDebugger_RepoId extends Google_Model
|
||||
{
|
||||
protected $projectRepoIdType = 'Google_Service_CloudDebugger_ProjectRepoId';
|
||||
protected $projectRepoIdDataType = '';
|
||||
public $uid;
|
||||
|
||||
public function setProjectRepoId(Google_Service_CloudDebugger_ProjectRepoId $projectRepoId)
|
||||
{
|
||||
$this->projectRepoId = $projectRepoId;
|
||||
}
|
||||
public function getProjectRepoId()
|
||||
{
|
||||
return $this->projectRepoId;
|
||||
}
|
||||
public function setUid($uid)
|
||||
{
|
||||
$this->uid = $uid;
|
||||
}
|
||||
public function getUid()
|
||||
{
|
||||
return $this->uid;
|
||||
}
|
||||
}
|
||||
28
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Resource/Controller.php
vendored
Normal file
28
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Resource/Controller.php
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "controller" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $clouddebuggerService = new Google_Service_CloudDebugger(...);
|
||||
* $controller = $clouddebuggerService->controller;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_CloudDebugger_Resource_Controller extends Google_Service_Resource
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "debuggees" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $clouddebuggerService = new Google_Service_CloudDebugger(...);
|
||||
* $debuggees = $clouddebuggerService->debuggees;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_CloudDebugger_Resource_ControllerDebuggees extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Registers the debuggee with the controller service.
|
||||
*
|
||||
* All agents attached to the same application should call this method with the
|
||||
* same request content to get back the same stable `debuggee_id`. Agents should
|
||||
* call this method again whenever `google.rpc.Code.NOT_FOUND` is returned from
|
||||
* any controller method.
|
||||
*
|
||||
* This allows the controller service to disable the agent or recover from any
|
||||
* data loss. If the debuggee is disabled by the server, the response will have
|
||||
* `is_disabled` set to `true`. (debuggees.register)
|
||||
*
|
||||
* @param Google_Service_CloudDebugger_RegisterDebuggeeRequest $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_CloudDebugger_RegisterDebuggeeResponse
|
||||
*/
|
||||
public function register(Google_Service_CloudDebugger_RegisterDebuggeeRequest $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('register', array($params), "Google_Service_CloudDebugger_RegisterDebuggeeResponse");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,85 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "breakpoints" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $clouddebuggerService = new Google_Service_CloudDebugger(...);
|
||||
* $breakpoints = $clouddebuggerService->breakpoints;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_CloudDebugger_Resource_ControllerDebuggeesBreakpoints extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Returns the list of all active breakpoints for the debuggee.
|
||||
*
|
||||
* The breakpoint specification (location, condition, and expression fields) is
|
||||
* semantically immutable, although the field values may change. For example, an
|
||||
* agent may update the location line number to reflect the actual line where
|
||||
* the breakpoint was set, but this doesn't change the breakpoint semantics.
|
||||
*
|
||||
* This means that an agent does not need to check if a breakpoint has changed
|
||||
* when it encounters the same breakpoint on a successive call. Moreover, an
|
||||
* agent should remember the breakpoints that are completed until the controller
|
||||
* removes them from the active list to avoid setting those breakpoints again.
|
||||
* (breakpoints.listControllerDebuggeesBreakpoints)
|
||||
*
|
||||
* @param string $debuggeeId Identifies the debuggee.
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param bool successOnTimeout If set to `true`, returns
|
||||
* `google.rpc.Code.OK` status and sets the `wait_expired` response field to
|
||||
* `true` when the server-selected timeout has expired (recommended).
|
||||
*
|
||||
* If set to `false`, returns `google.rpc.Code.ABORTED` status when the server-
|
||||
* selected timeout has expired (deprecated).
|
||||
* @opt_param string waitToken A wait token that, if specified, blocks the
|
||||
* method call until the list of active breakpoints has changed, or a server
|
||||
* selected timeout has expired. The value should be set from the last returned
|
||||
* response.
|
||||
* @return Google_Service_CloudDebugger_ListActiveBreakpointsResponse
|
||||
*/
|
||||
public function listControllerDebuggeesBreakpoints($debuggeeId, $optParams = array())
|
||||
{
|
||||
$params = array('debuggeeId' => $debuggeeId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('list', array($params), "Google_Service_CloudDebugger_ListActiveBreakpointsResponse");
|
||||
}
|
||||
/**
|
||||
* Updates the breakpoint state or mutable fields. The entire Breakpoint message
|
||||
* must be sent back to the controller service.
|
||||
*
|
||||
* Updates to active breakpoint fields are only allowed if the new value does
|
||||
* not change the breakpoint specification. Updates to the `location`,
|
||||
* `condition` and `expression` fields should not alter the breakpoint
|
||||
* semantics. These may only make changes such as canonicalizing a value or
|
||||
* snapping the location to the correct line of code. (breakpoints.update)
|
||||
*
|
||||
* @param string $debuggeeId Identifies the debuggee being debugged.
|
||||
* @param string $id Breakpoint identifier, unique in the scope of the debuggee.
|
||||
* @param Google_Service_CloudDebugger_UpdateActiveBreakpointRequest $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_CloudDebugger_UpdateActiveBreakpointResponse
|
||||
*/
|
||||
public function update($debuggeeId, $id, Google_Service_CloudDebugger_UpdateActiveBreakpointRequest $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('debuggeeId' => $debuggeeId, 'id' => $id, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('update', array($params), "Google_Service_CloudDebugger_UpdateActiveBreakpointResponse");
|
||||
}
|
||||
}
|
||||
28
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Resource/Debugger.php
vendored
Normal file
28
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Resource/Debugger.php
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "debugger" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $clouddebuggerService = new Google_Service_CloudDebugger(...);
|
||||
* $debugger = $clouddebuggerService->debugger;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_CloudDebugger_Resource_Debugger extends Google_Service_Resource
|
||||
{
|
||||
}
|
||||
48
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Resource/DebuggerDebuggees.php
vendored
Normal file
48
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Resource/DebuggerDebuggees.php
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "debuggees" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $clouddebuggerService = new Google_Service_CloudDebugger(...);
|
||||
* $debuggees = $clouddebuggerService->debuggees;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_CloudDebugger_Resource_DebuggerDebuggees extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Lists all the debuggees that the user can set breakpoints to.
|
||||
* (debuggees.listDebuggerDebuggees)
|
||||
*
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string clientVersion The client version making the call.
|
||||
* Following: `domain/type/version` (e.g., `google.com/intellij/v1`).
|
||||
* @opt_param bool includeInactive When set to `true`, the result includes all
|
||||
* debuggees. Otherwise, the result includes only debuggees that are active.
|
||||
* @opt_param string project Project number of a Google Cloud project whose
|
||||
* debuggees to list.
|
||||
* @return Google_Service_CloudDebugger_ListDebuggeesResponse
|
||||
*/
|
||||
public function listDebuggerDebuggees($optParams = array())
|
||||
{
|
||||
$params = array();
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('list', array($params), "Google_Service_CloudDebugger_ListDebuggeesResponse");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,113 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "breakpoints" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $clouddebuggerService = new Google_Service_CloudDebugger(...);
|
||||
* $breakpoints = $clouddebuggerService->breakpoints;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_CloudDebugger_Resource_DebuggerDebuggeesBreakpoints extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Deletes the breakpoint from the debuggee. (breakpoints.delete)
|
||||
*
|
||||
* @param string $debuggeeId ID of the debuggee whose breakpoint to delete.
|
||||
* @param string $breakpointId ID of the breakpoint to delete.
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string clientVersion The client version making the call.
|
||||
* Following: `domain/type/version` (e.g., `google.com/intellij/v1`).
|
||||
* @return Google_Service_CloudDebugger_ClouddebuggerEmpty
|
||||
*/
|
||||
public function delete($debuggeeId, $breakpointId, $optParams = array())
|
||||
{
|
||||
$params = array('debuggeeId' => $debuggeeId, 'breakpointId' => $breakpointId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('delete', array($params), "Google_Service_CloudDebugger_ClouddebuggerEmpty");
|
||||
}
|
||||
/**
|
||||
* Gets breakpoint information. (breakpoints.get)
|
||||
*
|
||||
* @param string $debuggeeId ID of the debuggee whose breakpoint to get.
|
||||
* @param string $breakpointId ID of the breakpoint to get.
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string clientVersion The client version making the call.
|
||||
* Following: `domain/type/version` (e.g., `google.com/intellij/v1`).
|
||||
* @return Google_Service_CloudDebugger_GetBreakpointResponse
|
||||
*/
|
||||
public function get($debuggeeId, $breakpointId, $optParams = array())
|
||||
{
|
||||
$params = array('debuggeeId' => $debuggeeId, 'breakpointId' => $breakpointId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('get', array($params), "Google_Service_CloudDebugger_GetBreakpointResponse");
|
||||
}
|
||||
/**
|
||||
* Lists all breakpoints for the debuggee.
|
||||
* (breakpoints.listDebuggerDebuggeesBreakpoints)
|
||||
*
|
||||
* @param string $debuggeeId ID of the debuggee whose breakpoints to list.
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param bool stripResults This field is deprecated. The following fields
|
||||
* are always stripped out of the result: `stack_frames`,
|
||||
* `evaluated_expressions` and `variable_table`.
|
||||
* @opt_param string waitToken A wait token that, if specified, blocks the call
|
||||
* until the breakpoints list has changed, or a server selected timeout has
|
||||
* expired. The value should be set from the last response. The error code
|
||||
* `google.rpc.Code.ABORTED` (RPC) is returned on wait timeout, which should be
|
||||
* called again with the same `wait_token`.
|
||||
* @opt_param string clientVersion The client version making the call.
|
||||
* Following: `domain/type/version` (e.g., `google.com/intellij/v1`).
|
||||
* @opt_param string action.value Only breakpoints with the specified action
|
||||
* will pass the filter.
|
||||
* @opt_param bool includeAllUsers When set to `true`, the response includes the
|
||||
* list of breakpoints set by any user. Otherwise, it includes only breakpoints
|
||||
* set by the caller.
|
||||
* @opt_param bool includeInactive When set to `true`, the response includes
|
||||
* active and inactive breakpoints. Otherwise, it includes only active
|
||||
* breakpoints.
|
||||
* @return Google_Service_CloudDebugger_ListBreakpointsResponse
|
||||
*/
|
||||
public function listDebuggerDebuggeesBreakpoints($debuggeeId, $optParams = array())
|
||||
{
|
||||
$params = array('debuggeeId' => $debuggeeId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('list', array($params), "Google_Service_CloudDebugger_ListBreakpointsResponse");
|
||||
}
|
||||
/**
|
||||
* Sets the breakpoint to the debuggee. (breakpoints.set)
|
||||
*
|
||||
* @param string $debuggeeId ID of the debuggee where the breakpoint is to be
|
||||
* set.
|
||||
* @param Google_Service_CloudDebugger_Breakpoint $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string clientVersion The client version making the call.
|
||||
* Following: `domain/type/version` (e.g., `google.com/intellij/v1`).
|
||||
* @return Google_Service_CloudDebugger_SetBreakpointResponse
|
||||
*/
|
||||
public function set($debuggeeId, Google_Service_CloudDebugger_Breakpoint $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('debuggeeId' => $debuggeeId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('set', array($params), "Google_Service_CloudDebugger_SetBreakpointResponse");
|
||||
}
|
||||
}
|
||||
31
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/SetBreakpointResponse.php
vendored
Normal file
31
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/SetBreakpointResponse.php
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_CloudDebugger_SetBreakpointResponse extends Google_Model
|
||||
{
|
||||
protected $breakpointType = 'Google_Service_CloudDebugger_Breakpoint';
|
||||
protected $breakpointDataType = '';
|
||||
|
||||
public function setBreakpoint(Google_Service_CloudDebugger_Breakpoint $breakpoint)
|
||||
{
|
||||
$this->breakpoint = $breakpoint;
|
||||
}
|
||||
public function getBreakpoint()
|
||||
{
|
||||
return $this->breakpoint;
|
||||
}
|
||||
}
|
||||
61
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/SourceContext.php
vendored
Normal file
61
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/SourceContext.php
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_CloudDebugger_SourceContext extends Google_Model
|
||||
{
|
||||
protected $cloudRepoType = 'Google_Service_CloudDebugger_CloudRepoSourceContext';
|
||||
protected $cloudRepoDataType = '';
|
||||
protected $cloudWorkspaceType = 'Google_Service_CloudDebugger_CloudWorkspaceSourceContext';
|
||||
protected $cloudWorkspaceDataType = '';
|
||||
protected $gerritType = 'Google_Service_CloudDebugger_GerritSourceContext';
|
||||
protected $gerritDataType = '';
|
||||
protected $gitType = 'Google_Service_CloudDebugger_GitSourceContext';
|
||||
protected $gitDataType = '';
|
||||
|
||||
public function setCloudRepo(Google_Service_CloudDebugger_CloudRepoSourceContext $cloudRepo)
|
||||
{
|
||||
$this->cloudRepo = $cloudRepo;
|
||||
}
|
||||
public function getCloudRepo()
|
||||
{
|
||||
return $this->cloudRepo;
|
||||
}
|
||||
public function setCloudWorkspace(Google_Service_CloudDebugger_CloudWorkspaceSourceContext $cloudWorkspace)
|
||||
{
|
||||
$this->cloudWorkspace = $cloudWorkspace;
|
||||
}
|
||||
public function getCloudWorkspace()
|
||||
{
|
||||
return $this->cloudWorkspace;
|
||||
}
|
||||
public function setGerrit(Google_Service_CloudDebugger_GerritSourceContext $gerrit)
|
||||
{
|
||||
$this->gerrit = $gerrit;
|
||||
}
|
||||
public function getGerrit()
|
||||
{
|
||||
return $this->gerrit;
|
||||
}
|
||||
public function setGit(Google_Service_CloudDebugger_GitSourceContext $git)
|
||||
{
|
||||
$this->git = $git;
|
||||
}
|
||||
public function getGit()
|
||||
{
|
||||
return $this->git;
|
||||
}
|
||||
}
|
||||
39
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/SourceLocation.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/SourceLocation.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_CloudDebugger_SourceLocation extends Google_Model
|
||||
{
|
||||
public $line;
|
||||
public $path;
|
||||
|
||||
public function setLine($line)
|
||||
{
|
||||
$this->line = $line;
|
||||
}
|
||||
public function getLine()
|
||||
{
|
||||
return $this->line;
|
||||
}
|
||||
public function setPath($path)
|
||||
{
|
||||
$this->path = $path;
|
||||
}
|
||||
public function getPath()
|
||||
{
|
||||
return $this->path;
|
||||
}
|
||||
}
|
||||
61
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/StackFrame.php
vendored
Normal file
61
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/StackFrame.php
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_CloudDebugger_StackFrame extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'locals';
|
||||
protected $argumentsType = 'Google_Service_CloudDebugger_Variable';
|
||||
protected $argumentsDataType = 'array';
|
||||
public $function;
|
||||
protected $localsType = 'Google_Service_CloudDebugger_Variable';
|
||||
protected $localsDataType = 'array';
|
||||
protected $locationType = 'Google_Service_CloudDebugger_SourceLocation';
|
||||
protected $locationDataType = '';
|
||||
|
||||
public function setArguments($arguments)
|
||||
{
|
||||
$this->arguments = $arguments;
|
||||
}
|
||||
public function getArguments()
|
||||
{
|
||||
return $this->arguments;
|
||||
}
|
||||
public function setFunction($function)
|
||||
{
|
||||
$this->function = $function;
|
||||
}
|
||||
public function getFunction()
|
||||
{
|
||||
return $this->function;
|
||||
}
|
||||
public function setLocals($locals)
|
||||
{
|
||||
$this->locals = $locals;
|
||||
}
|
||||
public function getLocals()
|
||||
{
|
||||
return $this->locals;
|
||||
}
|
||||
public function setLocation(Google_Service_CloudDebugger_SourceLocation $location)
|
||||
{
|
||||
$this->location = $location;
|
||||
}
|
||||
public function getLocation()
|
||||
{
|
||||
return $this->location;
|
||||
}
|
||||
}
|
||||
49
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/StatusMessage.php
vendored
Normal file
49
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/StatusMessage.php
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_CloudDebugger_StatusMessage extends Google_Model
|
||||
{
|
||||
protected $descriptionType = 'Google_Service_CloudDebugger_FormatMessage';
|
||||
protected $descriptionDataType = '';
|
||||
public $isError;
|
||||
public $refersTo;
|
||||
|
||||
public function setDescription(Google_Service_CloudDebugger_FormatMessage $description)
|
||||
{
|
||||
$this->description = $description;
|
||||
}
|
||||
public function getDescription()
|
||||
{
|
||||
return $this->description;
|
||||
}
|
||||
public function setIsError($isError)
|
||||
{
|
||||
$this->isError = $isError;
|
||||
}
|
||||
public function getIsError()
|
||||
{
|
||||
return $this->isError;
|
||||
}
|
||||
public function setRefersTo($refersTo)
|
||||
{
|
||||
$this->refersTo = $refersTo;
|
||||
}
|
||||
public function getRefersTo()
|
||||
{
|
||||
return $this->refersTo;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_CloudDebugger_UpdateActiveBreakpointRequest extends Google_Model
|
||||
{
|
||||
protected $breakpointType = 'Google_Service_CloudDebugger_Breakpoint';
|
||||
protected $breakpointDataType = '';
|
||||
|
||||
public function setBreakpoint(Google_Service_CloudDebugger_Breakpoint $breakpoint)
|
||||
{
|
||||
$this->breakpoint = $breakpoint;
|
||||
}
|
||||
public function getBreakpoint()
|
||||
{
|
||||
return $this->breakpoint;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_CloudDebugger_UpdateActiveBreakpointResponse extends Google_Model
|
||||
{
|
||||
}
|
||||
78
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Variable.php
vendored
Normal file
78
vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Variable.php
vendored
Normal file
@@ -0,0 +1,78 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_CloudDebugger_Variable extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'members';
|
||||
protected $membersType = 'Google_Service_CloudDebugger_Variable';
|
||||
protected $membersDataType = 'array';
|
||||
public $name;
|
||||
protected $statusType = 'Google_Service_CloudDebugger_StatusMessage';
|
||||
protected $statusDataType = '';
|
||||
public $type;
|
||||
public $value;
|
||||
public $varTableIndex;
|
||||
|
||||
public function setMembers($members)
|
||||
{
|
||||
$this->members = $members;
|
||||
}
|
||||
public function getMembers()
|
||||
{
|
||||
return $this->members;
|
||||
}
|
||||
public function setName($name)
|
||||
{
|
||||
$this->name = $name;
|
||||
}
|
||||
public function getName()
|
||||
{
|
||||
return $this->name;
|
||||
}
|
||||
public function setStatus(Google_Service_CloudDebugger_StatusMessage $status)
|
||||
{
|
||||
$this->status = $status;
|
||||
}
|
||||
public function getStatus()
|
||||
{
|
||||
return $this->status;
|
||||
}
|
||||
public function setType($type)
|
||||
{
|
||||
$this->type = $type;
|
||||
}
|
||||
public function getType()
|
||||
{
|
||||
return $this->type;
|
||||
}
|
||||
public function setValue($value)
|
||||
{
|
||||
$this->value = $value;
|
||||
}
|
||||
public function getValue()
|
||||
{
|
||||
return $this->value;
|
||||
}
|
||||
public function setVarTableIndex($varTableIndex)
|
||||
{
|
||||
$this->varTableIndex = $varTableIndex;
|
||||
}
|
||||
public function getVarTableIndex()
|
||||
{
|
||||
return $this->varTableIndex;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user