PATH:
home
/
lab2454c
/
vaultchip.com
/
vendor
/
google
/
apiclient-services
/
src
/
CloudHealthcare
/
Resource
<?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\CloudHealthcare\Resource; use Google\Service\CloudHealthcare\HealthcareEmpty; use Google\Service\CloudHealthcare\Hl7V2Store; use Google\Service\CloudHealthcare\ListHl7V2StoresResponse; use Google\Service\CloudHealthcare\Policy; use Google\Service\CloudHealthcare\SetIamPolicyRequest; use Google\Service\CloudHealthcare\TestIamPermissionsRequest; use Google\Service\CloudHealthcare\TestIamPermissionsResponse; /** * The "hl7V2Stores" collection of methods. * Typical usage is: * <code> * $healthcareService = new Google\Service\CloudHealthcare(...); * $hl7V2Stores = $healthcareService->hl7V2Stores; * </code> */ class ProjectsLocationsDatasetsHl7V2Stores extends \Google\Service\Resource { /** * Creates a new HL7v2 store within the parent dataset. (hl7V2Stores.create) * * @param string $parent The name of the dataset this HL7v2 store belongs to. * @param Hl7V2Store $postBody * @param array $optParams Optional parameters. * * @opt_param string hl7V2StoreId The ID of the HL7v2 store that is being * created. The string must match the following regex: * `[\p{L}\p{N}_\-\.]{1,256}`. * @return Hl7V2Store */ public function create($parent, Hl7V2Store $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('create', [$params], Hl7V2Store::class); } /** * Deletes the specified HL7v2 store and removes all messages that it contains. * (hl7V2Stores.delete) * * @param string $name The resource name of the HL7v2 store to delete. * @param array $optParams Optional parameters. * @return HealthcareEmpty */ public function delete($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('delete', [$params], HealthcareEmpty::class); } /** * Gets the specified HL7v2 store. (hl7V2Stores.get) * * @param string $name The resource name of the HL7v2 store to get. * @param array $optParams Optional parameters. * @return Hl7V2Store */ public function get($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('get', [$params], Hl7V2Store::class); } /** * Gets the access control policy for a resource. Returns an empty policy if the * resource exists and does not have a policy set. (hl7V2Stores.getIamPolicy) * * @param string $resource REQUIRED: The resource for which the policy is being * requested. See the operation documentation for the appropriate value for this * field. * @param array $optParams Optional parameters. * * @opt_param int options.requestedPolicyVersion Optional. The policy format * version to be returned. Valid values are 0, 1, and 3. Requests specifying an * invalid value will be rejected. Requests for policies with any conditional * bindings must specify version 3. Policies without any conditional bindings * may specify any valid value or leave the field unset. To learn which * resources support conditions in their IAM policies, see the [IAM * documentation](https://cloud.google.com/iam/help/conditions/resource- * policies). * @return Policy */ public function getIamPolicy($resource, $optParams = []) { $params = ['resource' => $resource]; $params = array_merge($params, $optParams); return $this->call('getIamPolicy', [$params], Policy::class); } /** * Lists the HL7v2 stores in the given dataset. * (hl7V2Stores.listProjectsLocationsDatasetsHl7V2Stores) * * @param string $parent Name of the dataset. * @param array $optParams Optional parameters. * * @opt_param string filter Restricts stores returned to those matching a * filter. The following syntax is available: * A string field value can be * written as text inside quotation marks, for example `"query text"`. The only * valid relational operation for text fields is equality (`=`), where text is * searched within the field, rather than having the field be equal to the text. * For example, `"Comment = great"` returns messages with `great` in the comment * field. * A number field value can be written as an integer, a decimal, or an * exponential. The valid relational operators for number fields are the * equality operator (`=`), along with the less than/greater than operators * (`<`, `<=`, `>`, `>=`). Note that there is no inequality (`!=`) operator. You * can prepend the `NOT` operator to an expression to negate it. * A date field * value must be written in `yyyy-mm-dd` form. Fields with date and time use the * RFC3339 time format. Leading zeros are required for one-digit months and * days. The valid relational operators for date fields are the equality * operator (`=`) , along with the less than/greater than operators (`<`, `<=`, * `>`, `>=`). Note that there is no inequality (`!=`) operator. You can prepend * the `NOT` operator to an expression to negate it. * Multiple field query * expressions can be combined in one query by adding `AND` or `OR` operators * between the expressions. If a boolean operator appears within a quoted * string, it is not treated as special, it's just another part of the character * string to be matched. You can prepend the `NOT` operator to an expression to * negate it. Only filtering on labels is supported. For example, * `labels.key=value`. * @opt_param int pageSize Limit on the number of HL7v2 stores to return in a * single response. If not specified, 100 is used. May not be larger than 1000. * @opt_param string pageToken The next_page_token value returned from the * previous List request, if any. * @return ListHl7V2StoresResponse */ public function listProjectsLocationsDatasetsHl7V2Stores($parent, $optParams = []) { $params = ['parent' => $parent]; $params = array_merge($params, $optParams); return $this->call('list', [$params], ListHl7V2StoresResponse::class); } /** * Updates the HL7v2 store. (hl7V2Stores.patch) * * @param string $name Resource name of the HL7v2 store, of the form * `projects/{project_id}/datasets/{dataset_id}/hl7V2Stores/{hl7v2_store_id}`. * @param Hl7V2Store $postBody * @param array $optParams Optional parameters. * * @opt_param string updateMask The update mask applies to the resource. For the * `FieldMask` definition, see https://developers.google.com/protocol- * buffers/docs/reference/google.protobuf#fieldmask * @return Hl7V2Store */ public function patch($name, Hl7V2Store $postBody, $optParams = []) { $params = ['name' => $name, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('patch', [$params], Hl7V2Store::class); } /** * Sets the access control policy on the specified resource. Replaces any * existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and * `PERMISSION_DENIED` errors. (hl7V2Stores.setIamPolicy) * * @param string $resource REQUIRED: The resource for which the policy is being * specified. See the operation documentation for the appropriate value for this * field. * @param SetIamPolicyRequest $postBody * @param array $optParams Optional parameters. * @return Policy */ public function setIamPolicy($resource, SetIamPolicyRequest $postBody, $optParams = []) { $params = ['resource' => $resource, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('setIamPolicy', [$params], Policy::class); } /** * Returns permissions that a caller has on the specified resource. If the * resource does not exist, this will return an empty set of permissions, not a * `NOT_FOUND` error. Note: This operation is designed to be used for building * permission-aware UIs and command-line tools, not for authorization checking. * This operation may "fail open" without warning. * (hl7V2Stores.testIamPermissions) * * @param string $resource REQUIRED: The resource for which the policy detail is * being requested. See the operation documentation for the appropriate value * for this field. * @param TestIamPermissionsRequest $postBody * @param array $optParams Optional parameters. * @return TestIamPermissionsResponse */ public function testIamPermissions($resource, TestIamPermissionsRequest $postBody, $optParams = []) { $params = ['resource' => $resource, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('testIamPermissions', [$params], TestIamPermissionsResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ProjectsLocationsDatasetsHl7V2Stores::class, 'Google_Service_CloudHealthcare_Resource_ProjectsLocationsDatasetsHl7V2Stores');
[-] Projects.php
[edit]
[-] ProjectsLocationsDatasetsHl7V2Stores.php
[edit]
[-] ProjectsLocationsDatasetsConsentStoresConsentArtifacts.php
[edit]
[-] ProjectsLocations.php
[edit]
[-] ProjectsLocationsDatasetsOperations.php
[edit]
[-] ProjectsLocationsDatasetsDicomStores.php
[edit]
[-] ProjectsLocationsServices.php
[edit]
[+]
..
[-] ProjectsLocationsDatasetsDicomStoresStudiesSeriesInstances.php
[edit]
[-] ProjectsLocationsDatasetsDicomStoresStudiesSeriesInstancesFrames.php
[edit]
[-] ProjectsLocationsDatasetsConsentStoresConsents.php
[edit]
[-] ProjectsLocationsDatasetsFhirStoresFhir.php
[edit]
[-] ProjectsLocationsDatasets.php
[edit]
[-] ProjectsLocationsDatasetsConsentStores.php
[edit]
[-] ProjectsLocationsDatasetsConsentStoresUserDataMappings.php
[edit]
[-] ProjectsLocationsDatasetsConsentStoresAttributeDefinitions.php
[edit]
[-] ProjectsLocationsServicesNlp.php
[edit]
[-] ProjectsLocationsDatasetsDicomStoresStudies.php
[edit]
[-] ProjectsLocationsDatasetsFhirStores.php
[edit]
[-] ProjectsLocationsDatasetsDicomStoresStudiesSeries.php
[edit]
[-] ProjectsLocationsDatasetsHl7V2StoresMessages.php
[edit]