📂 File Browser

AgentAI/vendor/google/apiclient-services/src/CloudDataplex/Resource
☀️ Light Mode
🎯 Quick Launch:

📁 Directories

📄 Files

🐘 Organizations.php
▶ Open 📄 View Source
🐘 OrganizationsLocations.php
▶ Open 📄 View Source
🐘 OrganizationsLocationsEncryptionConfigs.php
▶ Open 📄 View Source
🐘 OrganizationsLocationsOperations.php
▶ Open 📄 View Source
🐘 Projects.php
▶ Open 📄 View Source
🐘 ProjectsLocations.php
▶ Open 📄 View Source
🐘 ProjectsLocationsAspectTypes.php
▶ Open 📄 View Source
🐘 ProjectsLocationsChangeRequests.php
▶ Open 📄 View Source
🐘 ProjectsLocationsDataAttributeBindings.php
▶ Open 📄 View Source
🐘 ProjectsLocationsDataDomains.php
▶ Open 📄 View Source
🐘 ProjectsLocationsDataProducts.php
▶ Open 📄 View Source
🐘 ProjectsLocationsDataProductsDataAssets.php
▶ Open 📄 View Source
🐘 ProjectsLocationsDataScans.php
▶ Open 📄 View Source
🐘 ProjectsLocationsDataScansJobs.php
▶ Open 📄 View Source
🐘 ProjectsLocationsDataTaxonomies.php
▶ Open 📄 View Source
🐘 ProjectsLocationsDataTaxonomiesAttributes.php
▶ Open 📄 View Source
🐘 ProjectsLocationsEntryGroups.php
▶ Open 📄 View Source
🐘 ProjectsLocationsEntryGroupsEntries.php
▶ Open 📄 View Source
🐘 ProjectsLocationsEntryGroupsEntryLinks.php
▶ Open 📄 View Source
🐘 ProjectsLocationsEntryLinkTypes.php
▶ Open 📄 View Source
🐘 ProjectsLocationsEntryTypes.php
▶ Open 📄 View Source
🐘 ProjectsLocationsGlossaries.php
▶ Open 📄 View Source
🐘 ProjectsLocationsGlossariesCategories.php
▶ Open 📄 View Source
🐘 ProjectsLocationsGlossariesTerms.php
▶ Open 📄 View Source
🐘 ProjectsLocationsGovernanceRules.php
▶ Open 📄 View Source
🐘 ProjectsLocationsLakes.php
▶ Open 📄 View Source
🐘 ProjectsLocationsLakesActions.php
▶ Open 📄 View Source
🐘 ProjectsLocationsLakesContent.php
▶ Open 📄 View Source
🐘 ProjectsLocationsLakesContentitems.php
▶ Open 📄 View Source
🐘 ProjectsLocationsLakesEnvironments.php
▶ Open 📄 View Source
🐘 ProjectsLocationsLakesEnvironmentsSessions.php
▶ Open 📄 View Source
🐘 ProjectsLocationsLakesTasks.php
▶ Open 📄 View Source
🐘 ProjectsLocationsLakesTasksJobs.php
▶ Open 📄 View Source
🐘 ProjectsLocationsLakesZones.php
▶ Open 📄 View Source
🐘 ProjectsLocationsLakesZonesActions.php
▶ Open 📄 View Source
🐘 ProjectsLocationsLakesZonesAssets.php
▶ Open 📄 View Source
🐘 ProjectsLocationsLakesZonesAssetsActions.php
▶ Open 📄 View Source
🐘 ProjectsLocationsLakesZonesEntities.php
▶ Open 📄 View Source
🐘 ProjectsLocationsLakesZonesEntitiesPartitions.php
▶ Open 📄 View Source
🐘 ProjectsLocationsMetadataFeeds.php
▶ Open 📄 View Source
🐘 ProjectsLocationsMetadataJobs.php
▶ Open 📄 View Source
🐘 ProjectsLocationsOperations.php
▶ Open 📄 View Source
🐘 ProjectsLocationsPolicyIntents.php
▶ Open 📄 View Source

📄 Source: ProjectsLocationsEntryGroupsEntryLinks.php

<?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\CloudDataplex\Resource;

use Google\Service\CloudDataplex\GoogleCloudDataplexV1EntryLink;

/**
 * The "entryLinks" collection of methods.
 * Typical usage is:
 *  <code>
 *   $dataplexService = new Google\Service\CloudDataplex(...);
 *   $entryLinks = $dataplexService->projects_locations_entryGroups_entryLinks;
 *  </code>
 */
class ProjectsLocationsEntryGroupsEntryLinks extends \Google\Service\Resource
{
  /**
   * Creates an Entry Link. (entryLinks.create)
   *
   * @param string $parent Required. The resource name of the parent Entry Group:
   * projects/{project_id_or_number}/locations/{location_id}/entryGroups/{entry_gr
   * oup_id}.
   * @param GoogleCloudDataplexV1EntryLink $postBody
   * @param array $optParams Optional parameters.
   *
   * @opt_param string entryLinkId Required. Entry Link identifier * Must contain
   * only lowercase letters, numbers and hyphens. * Must start with a letter. *
   * Must be between 1-63 characters. * Must end with a number or a letter. * Must
   * be unique within the EntryGroup.
   * @return GoogleCloudDataplexV1EntryLink
   * @throws \Google\Service\Exception
   */
  public function create($parent, GoogleCloudDataplexV1EntryLink $postBody, $optParams = [])
  {
    $params = ['parent' => $parent, 'postBody' => $postBody];
    $params = array_merge($params, $optParams);
    return $this->call('create', [$params], GoogleCloudDataplexV1EntryLink::class);
  }
  /**
   * Deletes an Entry Link. (entryLinks.delete)
   *
   * @param string $name Required. The resource name of the Entry Link: projects/{
   * project_id_or_number}/locations/{location_id}/entryGroups/{entry_group_id}/en
   * tryLinks/{entry_link_id}.
   * @param array $optParams Optional parameters.
   * @return GoogleCloudDataplexV1EntryLink
   * @throws \Google\Service\Exception
   */
  public function delete($name, $optParams = [])
  {
    $params = ['name' => $name];
    $params = array_merge($params, $optParams);
    return $this->call('delete', [$params], GoogleCloudDataplexV1EntryLink::class);
  }
  /**
   * Gets an Entry Link. (entryLinks.get)
   *
   * @param string $name Required. The resource name of the Entry Link: projects/{
   * project_id_or_number}/locations/{location_id}/entryGroups/{entry_group_id}/en
   * tryLinks/{entry_link_id}.
   * @param array $optParams Optional parameters.
   * @return GoogleCloudDataplexV1EntryLink
   * @throws \Google\Service\Exception
   */
  public function get($name, $optParams = [])
  {
    $params = ['name' => $name];
    $params = array_merge($params, $optParams);
    return $this->call('get', [$params], GoogleCloudDataplexV1EntryLink::class);
  }
  /**
   * Updates an Entry Link. (entryLinks.patch)
   *
   * @param string $name Output only. Immutable. Identifier. The relative resource
   * name of the Entry Link, of the form: projects/{project_id_or_number}/location
   * s/{location_id}/entryGroups/{entry_group_id}/entryLinks/{entry_link_id}
   * @param GoogleCloudDataplexV1EntryLink $postBody
   * @param array $optParams Optional parameters.
   *
   * @opt_param bool allowMissing Optional. If set to true and the entry link
   * doesn't exist, the service will create it.
   * @opt_param string aspectKeys Optional. The map keys of the Aspects which the
   * service should modify. It should be the aspect type reference in the format
   * {project_id_or_number}.{location_id}.{aspect_type_id}.If this field is left
   * empty, the service treats it as specifying exactly those Aspects present in
   * the request.
   * @return GoogleCloudDataplexV1EntryLink
   * @throws \Google\Service\Exception
   */
  public function patch($name, GoogleCloudDataplexV1EntryLink $postBody, $optParams = [])
  {
    $params = ['name' => $name, 'postBody' => $postBody];
    $params = array_merge($params, $optParams);
    return $this->call('patch', [$params], GoogleCloudDataplexV1EntryLink::class);
  }
}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ProjectsLocationsEntryGroupsEntryLinks::class, 'Google_Service_CloudDataplex_Resource_ProjectsLocationsEntryGroupsEntryLinks');
← Back