Viewing file: ProjectsLocationsDatasetsConsentStoresUserDataMappings.php (7.34 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?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. */
/** * The "userDataMappings" collection of methods. * Typical usage is: * <code> * $healthcareService = new Google_Service_CloudHealthcare(...); * $userDataMappings = $healthcareService->userDataMappings; * </code> */ class Google_Service_CloudHealthcare_Resource_ProjectsLocationsDatasetsConsentStoresUserDataMappings extends Google_Service_Resource { /** * Archives the specified User data mapping. (userDataMappings.archive) * * @param string $name Required. The resource name of the User data mapping to * archive. * @param Google_Service_CloudHealthcare_ArchiveUserDataMappingRequest $postBody * @param array $optParams Optional parameters. * @return Google_Service_CloudHealthcare_ArchiveUserDataMappingResponse */ public function archive($name, Google_Service_CloudHealthcare_ArchiveUserDataMappingRequest $postBody, $optParams = array()) { $params = array('name' => $name, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('archive', array($params), "Google_Service_CloudHealthcare_ArchiveUserDataMappingResponse"); } /** * Creates a new User data mapping in the parent consent store. * (userDataMappings.create) * * @param string $parent Required. Name of the consent store. * @param Google_Service_CloudHealthcare_UserDataMapping $postBody * @param array $optParams Optional parameters. * @return Google_Service_CloudHealthcare_UserDataMapping */ public function create($parent, Google_Service_CloudHealthcare_UserDataMapping $postBody, $optParams = array()) { $params = array('parent' => $parent, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('create', array($params), "Google_Service_CloudHealthcare_UserDataMapping"); } /** * Deletes the specified User data mapping. (userDataMappings.delete) * * @param string $name Required. The resource name of the User data mapping to * delete. * @param array $optParams Optional parameters. * @return Google_Service_CloudHealthcare_HealthcareEmpty */ public function delete($name, $optParams = array()) { $params = array('name' => $name); $params = array_merge($params, $optParams); return $this->call('delete', array($params), "Google_Service_CloudHealthcare_HealthcareEmpty"); } /** * Gets the specified User data mapping. (userDataMappings.get) * * @param string $name Required. The resource name of the User data mapping to * retrieve. * @param array $optParams Optional parameters. * @return Google_Service_CloudHealthcare_UserDataMapping */ public function get($name, $optParams = array()) { $params = array('name' => $name); $params = array_merge($params, $optParams); return $this->call('get', array($params), "Google_Service_CloudHealthcare_UserDataMapping"); } /** * Lists the User data mappings in the specified consent store. * (userDataMappings.listProjectsLocationsDatasetsConsentStoresUserDataMappings) * * @param string $parent Required. Name of the consent store to retrieve User * data mappings from. * @param array $optParams Optional parameters. * * @opt_param string filter Optional. Restricts the User data mappings 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. The fields * available for filtering are: - data_id - user_id. For example, * `filter=user_id=\"user123\"`. - archived - archive_time * @opt_param int pageSize Optional. Limit on the number of User data mappings * to return in a single response. If not specified, 100 is used. May not be * larger than 1000. * @opt_param string pageToken Optional. Token to retrieve the next page of * results, or empty to get the first page. * @return Google_Service_CloudHealthcare_ListUserDataMappingsResponse */ public function listProjectsLocationsDatasetsConsentStoresUserDataMappings($parent, $optParams = array()) { $params = array('parent' => $parent); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_CloudHealthcare_ListUserDataMappingsResponse"); } /** * Updates the specified User data mapping. (userDataMappings.patch) * * @param string $name Resource name of the User data mapping, of the form `proj * ects/{project_id}/locations/{location_id}/datasets/{dataset_id}/consentStores * /{consent_store_id}/userDataMappings/{user_data_mapping_id}`. * @param Google_Service_CloudHealthcare_UserDataMapping $postBody * @param array $optParams Optional parameters. * * @opt_param string updateMask Required. The update mask that applies to the * resource. For the `FieldMask` definition, see https://developers.google.com * /protocol-buffers/docs/reference/google.protobuf#fieldmask. Only the * `data_id`, `user_id` and `resource_attributes` fields can be updated. * @return Google_Service_CloudHealthcare_UserDataMapping */ public function patch($name, Google_Service_CloudHealthcare_UserDataMapping $postBody, $optParams = array()) { $params = array('name' => $name, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('patch', array($params), "Google_Service_CloudHealthcare_UserDataMapping"); } }
|