Initial commit

This commit is contained in:
Local Administrator
2025-04-18 10:32:42 +02:00
commit b83134aca3
29643 changed files with 3045897 additions and 0 deletions
@@ -0,0 +1,60 @@
<?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\Genomics\Resource;
use Google\Service\Genomics\Operation;
use Google\Service\Genomics\RunPipelineRequest;
/**
* The "pipelines" collection of methods.
* Typical usage is:
* <code>
* $genomicsService = new Google\Service\Genomics(...);
* $pipelines = $genomicsService->pipelines;
* </code>
*/
class Pipelines extends \Google\Service\Resource
{
/**
* Runs a pipeline. The returned Operation's metadata field will contain a
* google.genomics.v2alpha1.Metadata object describing the status of the
* pipeline execution. The [response] field will contain a
* google.genomics.v2alpha1.RunPipelineResponse object if the pipeline completes
* successfully. **Note:** Before you can use this method, the Genomics Service
* Agent must have access to your project. This is done automatically when the
* Cloud Genomics API is first enabled, but if you delete this permission, or if
* you enabled the Cloud Genomics API before the v2alpha1 API launch, you must
* disable and re-enable the API to grant the Genomics Service Agent the
* required permissions. Authorization requires the following [Google
* IAM](https://cloud.google.com/iam/) permission: *
* `genomics.operations.create` [1]: /genomics/gsa (pipelines.run)
*
* @param RunPipelineRequest $postBody
* @param array $optParams Optional parameters.
* @return Operation
*/
public function run(RunPipelineRequest $postBody, $optParams = [])
{
$params = ['postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('run', [$params], Operation::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Pipelines::class, 'Google_Service_Genomics_Resource_Pipelines');
@@ -0,0 +1,33 @@
<?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\Genomics\Resource;
/**
* The "projects" collection of methods.
* Typical usage is:
* <code>
* $genomicsService = new Google\Service\Genomics(...);
* $projects = $genomicsService->projects;
* </code>
*/
class Projects extends \Google\Service\Resource
{
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Projects::class, 'Google_Service_Genomics_Resource_Projects');
@@ -0,0 +1,107 @@
<?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\Genomics\Resource;
use Google\Service\Genomics\CancelOperationRequest;
use Google\Service\Genomics\GenomicsEmpty;
use Google\Service\Genomics\ListOperationsResponse;
use Google\Service\Genomics\Operation;
/**
* The "operations" collection of methods.
* Typical usage is:
* <code>
* $genomicsService = new Google\Service\Genomics(...);
* $operations = $genomicsService->projects_operations;
* </code>
*/
class ProjectsOperations extends \Google\Service\Resource
{
/**
* Starts asynchronous cancellation on a long-running operation. The server
* makes a best effort to cancel the operation, but success is not guaranteed.
* Clients may use Operations.GetOperation or Operations.ListOperations to check
* whether the cancellation succeeded or the operation completed despite
* cancellation. Authorization requires the following [Google
* IAM](https://cloud.google.com/iam) permission: * `genomics.operations.cancel`
* (operations.cancel)
*
* @param string $name The name of the operation resource to be cancelled.
* @param CancelOperationRequest $postBody
* @param array $optParams Optional parameters.
* @return GenomicsEmpty
*/
public function cancel($name, CancelOperationRequest $postBody, $optParams = [])
{
$params = ['name' => $name, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('cancel', [$params], GenomicsEmpty::class);
}
/**
* Gets the latest state of a long-running operation. Clients can use this
* method to poll the operation result at intervals as recommended by the API
* service. Authorization requires the following [Google
* IAM](https://cloud.google.com/iam) permission: * `genomics.operations.get`
* (operations.get)
*
* @param string $name The name of the operation resource.
* @param array $optParams Optional parameters.
* @return Operation
*/
public function get($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], Operation::class);
}
/**
* Lists operations that match the specified filter in the request.
* Authorization requires the following [Google
* IAM](https://cloud.google.com/iam) permission: * `genomics.operations.list`
* (operations.listProjectsOperations)
*
* @param string $name The name of the operation's parent resource.
* @param array $optParams Optional parameters.
*
* @opt_param string filter A string for filtering Operations. In v2alpha1, the
* following filter fields are supported: * createTime: The time this job was
* created * events: The set of event (names) that have occurred while running
* the pipeline. The : operator can be used to determine if a particular event
* has occurred. * error: If the pipeline is running, this value is NULL. Once
* the pipeline finishes, the value is the standard Google error code. *
* labels.key or labels."key with space" where key is a label key. * done: If
* the pipeline is running, this value is false. Once the pipeline finishes, the
* value is true. Examples: * `projectId = my-project AND createTime >=
* 1432140000` * `projectId = my-project AND createTime >= 1432140000 AND
* createTime <= 1432150000 AND status = RUNNING` * `projectId = my-project AND
* labels.color = *` * `projectId = my-project AND labels.color = red`
* @opt_param int pageSize The maximum number of results to return. The maximum
* value is 256.
* @opt_param string pageToken The standard list page token.
* @return ListOperationsResponse
*/
public function listProjectsOperations($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], ListOperationsResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ProjectsOperations::class, 'Google_Service_Genomics_Resource_ProjectsOperations');
@@ -0,0 +1,52 @@
<?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\Genomics\Resource;
use Google\Service\Genomics\CheckInRequest;
use Google\Service\Genomics\CheckInResponse;
/**
* The "workers" collection of methods.
* Typical usage is:
* <code>
* $genomicsService = new Google\Service\Genomics(...);
* $workers = $genomicsService->projects_workers;
* </code>
*/
class ProjectsWorkers extends \Google\Service\Resource
{
/**
* The worker uses this method to retrieve the assigned operation and provide
* periodic status updates. (workers.checkIn)
*
* @param string $id The VM identity token for authenticating the VM instance.
* https://cloud.google.com/compute/docs/instances/verifying-instance-identity
* @param CheckInRequest $postBody
* @param array $optParams Optional parameters.
* @return CheckInResponse
*/
public function checkIn($id, CheckInRequest $postBody, $optParams = [])
{
$params = ['id' => $id, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('checkIn', [$params], CheckInResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ProjectsWorkers::class, 'Google_Service_Genomics_Resource_ProjectsWorkers');
@@ -0,0 +1,52 @@
<?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\Genomics\Resource;
use Google\Service\Genomics\CheckInRequest;
use Google\Service\Genomics\CheckInResponse;
/**
* The "workers" collection of methods.
* Typical usage is:
* <code>
* $genomicsService = new Google\Service\Genomics(...);
* $workers = $genomicsService->workers;
* </code>
*/
class Workers extends \Google\Service\Resource
{
/**
* The worker uses this method to retrieve the assigned operation and provide
* periodic status updates. (workers.checkIn)
*
* @param string $id The VM identity token for authenticating the VM instance.
* https://cloud.google.com/compute/docs/instances/verifying-instance-identity
* @param CheckInRequest $postBody
* @param array $optParams Optional parameters.
* @return CheckInResponse
*/
public function checkIn($id, CheckInRequest $postBody, $optParams = [])
{
$params = ['id' => $id, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('checkIn', [$params], CheckInResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Workers::class, 'Google_Service_Genomics_Resource_Workers');