* The Cloud Trace API allows you to send traces to and retrieve traces from * Google Cloud Trace.
* ** For more information about this service, see the API * Documentation *
* * @author Google, Inc. */ class Google_Service_Cloudtrace extends Google_Service { /** View and manage your data across Google Cloud Platform services. */ const CLOUD_PLATFORM = "https://www.googleapis.com/auth/cloud-platform"; public $projects; public $projects_traces; /** * Constructs the internal representation of the Cloudtrace service. * * @param Google_Client $client */ public function __construct(Google_Client $client) { parent::__construct($client); $this->rootUrl = 'https://cloudtrace.googleapis.com/'; $this->servicePath = ''; $this->version = 'v1'; $this->serviceName = 'cloudtrace'; $this->projects = new Google_Service_Cloudtrace_Projects_Resource( $this, $this->serviceName, 'projects', array( 'methods' => array( 'patchTraces' => array( 'path' => 'v1/projects/{projectId}/traces', 'httpMethod' => 'PATCH', 'parameters' => array( 'projectId' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), ), ), ) ) ); $this->projects_traces = new Google_Service_Cloudtrace_ProjectsTraces_Resource( $this, $this->serviceName, 'traces', array( 'methods' => array( 'get' => array( 'path' => 'v1/projects/{projectId}/traces/{traceId}', 'httpMethod' => 'GET', 'parameters' => array( 'projectId' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), 'traceId' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), ), ),'list' => array( 'path' => 'v1/projects/{projectId}/traces', 'httpMethod' => 'GET', 'parameters' => array( 'projectId' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), 'view' => array( 'location' => 'query', 'type' => 'string', ), 'pageSize' => array( 'location' => 'query', 'type' => 'integer', ), 'pageToken' => array( 'location' => 'query', 'type' => 'string', ), 'startTime' => array( 'location' => 'query', 'type' => 'string', ), 'endTime' => array( 'location' => 'query', 'type' => 'string', ), 'filter' => array( 'location' => 'query', 'type' => 'string', ), 'orderBy' => array( 'location' => 'query', 'type' => 'string', ), ), ), ) ) ); } } /** * The "projects" collection of methods. * Typical usage is: *
* $cloudtraceService = new Google_Service_Cloudtrace(...);
* $projects = $cloudtraceService->projects;
*
*/
class Google_Service_Cloudtrace_Projects_Resource extends Google_Service_Resource
{
/**
* Sends new traces to Cloud Trace or updates existing traces. If the ID of a
* trace that you send matches that of an existing trace, any fields in the
* existing trace and its spans are overwritten by the provided values, and any
* new fields provided are merged with the existing trace data. If the ID does
* not match, a new trace is created. (projects.patchTraces)
*
* @param string $projectId ID of the Cloud project where the trace data is
* stored.
* @param Google_Traces $postBody
* @param array $optParams Optional parameters.
* @return Google_Service_Cloudtrace_Empty
*/
public function patchTraces($projectId, Google_Service_Cloudtrace_Traces $postBody, $optParams = array())
{
$params = array('projectId' => $projectId, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
return $this->call('patchTraces', array($params), "Google_Service_Cloudtrace_Empty");
}
}
/**
* The "traces" collection of methods.
* Typical usage is:
*
* $cloudtraceService = new Google_Service_Cloudtrace(...);
* $traces = $cloudtraceService->traces;
*
*/
class Google_Service_Cloudtrace_ProjectsTraces_Resource extends Google_Service_Resource
{
/**
* Gets a single trace by its ID. (traces.get)
*
* @param string $projectId ID of the Cloud project where the trace data is
* stored.
* @param string $traceId ID of the trace to return.
* @param array $optParams Optional parameters.
* @return Google_Service_Cloudtrace_Trace
*/
public function get($projectId, $traceId, $optParams = array())
{
$params = array('projectId' => $projectId, 'traceId' => $traceId);
$params = array_merge($params, $optParams);
return $this->call('get', array($params), "Google_Service_Cloudtrace_Trace");
}
/**
* Returns of a list of traces that match the specified filter conditions.
* (traces.listProjectsTraces)
*
* @param string $projectId ID of the Cloud project where the trace data is
* stored.
* @param array $optParams Optional parameters.
*
* @opt_param string view Type of data returned for traces in the list.
* Optional. Default is `MINIMAL`.
* @opt_param int pageSize Maximum number of traces to return. If not specified
* or <= 0, the implementation selects a reasonable value. The implementation
* may return fewer traces than the requested page size. Optional.
* @opt_param string pageToken Token identifying the page of results to return.
* If provided, use the value of the `next_page_token` field from a previous
* request. Optional.
* @opt_param string startTime End of the time interval (inclusive) during which
* the trace data was collected from the application.
* @opt_param string endTime Start of the time interval (inclusive) during which
* the trace data was collected from the application.
* @opt_param string filter An optional filter for the request.
* @opt_param string orderBy Field used to sort the returned traces. Optional.
* Can be one of the following: * `trace_id` * `name` (`name` field of root span
* in the trace) * `duration` (difference between `end_time` and `start_time`
* fields of the root span) * `start` (`start_time` field of the root span)
* Descending order can be specified by appending `desc` to the sort field (for
* example, `name desc`). Only one sort field is permitted.
* @return Google_Service_Cloudtrace_ListTracesResponse
*/
public function listProjectsTraces($projectId, $optParams = array())
{
$params = array('projectId' => $projectId);
$params = array_merge($params, $optParams);
return $this->call('list', array($params), "Google_Service_Cloudtrace_ListTracesResponse");
}
}
class Google_Service_Cloudtrace_Empty extends Google_Model
{
}
class Google_Service_Cloudtrace_ListTracesResponse extends Google_Collection
{
protected $collection_key = 'traces';
protected $internal_gapi_mappings = array(
);
public $nextPageToken;
protected $tracesType = 'Google_Service_Cloudtrace_Trace';
protected $tracesDataType = 'array';
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken()
{
return $this->nextPageToken;
}
public function setTraces($traces)
{
$this->traces = $traces;
}
public function getTraces()
{
return $this->traces;
}
}
class Google_Service_Cloudtrace_Trace extends Google_Collection
{
protected $collection_key = 'spans';
protected $internal_gapi_mappings = array(
);
public $projectId;
protected $spansType = 'Google_Service_Cloudtrace_TraceSpan';
protected $spansDataType = 'array';
public $traceId;
public function setProjectId($projectId)
{
$this->projectId = $projectId;
}
public function getProjectId()
{
return $this->projectId;
}
public function setSpans($spans)
{
$this->spans = $spans;
}
public function getSpans()
{
return $this->spans;
}
public function setTraceId($traceId)
{
$this->traceId = $traceId;
}
public function getTraceId()
{
return $this->traceId;
}
}
class Google_Service_Cloudtrace_TraceSpan extends Google_Model
{
protected $internal_gapi_mappings = array(
);
public $endTime;
public $kind;
public $labels;
public $name;
public $parentSpanId;
public $spanId;
public $startTime;
public function setEndTime($endTime)
{
$this->endTime = $endTime;
}
public function getEndTime()
{
return $this->endTime;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setLabels($labels)
{
$this->labels = $labels;
}
public function getLabels()
{
return $this->labels;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
public function setParentSpanId($parentSpanId)
{
$this->parentSpanId = $parentSpanId;
}
public function getParentSpanId()
{
return $this->parentSpanId;
}
public function setSpanId($spanId)
{
$this->spanId = $spanId;
}
public function getSpanId()
{
return $this->spanId;
}
public function setStartTime($startTime)
{
$this->startTime = $startTime;
}
public function getStartTime()
{
return $this->startTime;
}
}
class Google_Service_Cloudtrace_Traces extends Google_Collection
{
protected $collection_key = 'traces';
protected $internal_gapi_mappings = array(
);
protected $tracesType = 'Google_Service_Cloudtrace_Trace';
protected $tracesDataType = 'array';
public function setTraces($traces)
{
$this->traces = $traces;
}
public function getTraces()
{
return $this->traces;
}
}