Initial commit

This commit is contained in:
Caribana
2017-05-26 11:41:26 +02:00
commit 61c24500af
6264 changed files with 645934 additions and 0 deletions

View 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_CloudTrace_CloudtraceEmpty extends Google_Model
{
}

View 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_CloudTrace_ListTracesResponse extends Google_Collection
{
protected $collection_key = 'traces';
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;
}
}

View File

@@ -0,0 +1,47 @@
<?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 "projects" collection of methods.
* Typical usage is:
* <code>
* $cloudtraceService = new Google_Service_CloudTrace(...);
* $projects = $cloudtraceService->projects;
* </code>
*/
class Google_Service_CloudTrace_Resource_Projects extends Google_Service_Resource
{
/**
* Sends new traces to Stackdriver 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_Service_CloudTrace_Traces $postBody
* @param array $optParams Optional parameters.
* @return Google_Service_CloudTrace_CloudtraceEmpty
*/
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_CloudtraceEmpty");
}
}

View File

@@ -0,0 +1,83 @@
<?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 "traces" collection of methods.
* Typical usage is:
* <code>
* $cloudtraceService = new Google_Service_CloudTrace(...);
* $traces = $cloudtraceService->traces;
* </code>
*/
class Google_Service_CloudTrace_Resource_ProjectsTraces 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 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.
* @opt_param string filter An optional filter for the request.
* @opt_param string endTime Start of the time interval (inclusive) during which
* the trace data was collected from the application.
* @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 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 view Type of data returned for traces in the list.
* Optional. Default is `MINIMAL`.
* @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");
}
}

View File

@@ -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_CloudTrace_Trace extends Google_Collection
{
protected $collection_key = 'spans';
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;
}
}

View File

@@ -0,0 +1,84 @@
<?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_CloudTrace_TraceSpan extends Google_Model
{
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;
}
}

View 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_CloudTrace_Traces extends Google_Collection
{
protected $collection_key = 'traces';
protected $tracesType = 'Google_Service_CloudTrace_Trace';
protected $tracesDataType = 'array';
public function setTraces($traces)
{
$this->traces = $traces;
}
public function getTraces()
{
return $this->traces;
}
}