* $apigeeService = new Google\Service\Apigee(...); * $references = $apigeeService->references; * */ class OrganizationsEnvironmentsReferences extends \Google\Service\Resource { /** * Creates a Reference in the specified environment. (references.create) * * @param string $parent Required. The parent environment name under which the * Reference will be created. Must be of the form * `organizations/{org}/environments/{env}`. * @param GoogleCloudApigeeV1Reference $postBody * @param array $optParams Optional parameters. * @return GoogleCloudApigeeV1Reference */ public function create($parent, GoogleCloudApigeeV1Reference $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('create', [$params], GoogleCloudApigeeV1Reference::class); } /** * Deletes a Reference from an environment. Returns the deleted Reference * resource. (references.delete) * * @param string $name Required. The name of the Reference to delete. Must be of * the form `organizations/{org}/environments/{env}/references/{ref}`. * @param array $optParams Optional parameters. * @return GoogleCloudApigeeV1Reference */ public function delete($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('delete', [$params], GoogleCloudApigeeV1Reference::class); } /** * Gets a Reference resource. (references.get) * * @param string $name Required. The name of the Reference to get. Must be of * the form `organizations/{org}/environments/{env}/references/{ref}`. * @param array $optParams Optional parameters. * @return GoogleCloudApigeeV1Reference */ public function get($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('get', [$params], GoogleCloudApigeeV1Reference::class); } /** * Updates an existing Reference. Note that this operation has PUT semantics; it * will replace the entirety of the existing Reference with the resource in the * request body. (references.update) * * @param string $name Required. The name of the Reference to update. Must be of * the form `organizations/{org}/environments/{env}/references/{ref}`. * @param GoogleCloudApigeeV1Reference $postBody * @param array $optParams Optional parameters. * @return GoogleCloudApigeeV1Reference */ public function update($name, GoogleCloudApigeeV1Reference $postBody, $optParams = []) { $params = ['name' => $name, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('update', [$params], GoogleCloudApigeeV1Reference::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(OrganizationsEnvironmentsReferences::class, 'Google_Service_Apigee_Resource_OrganizationsEnvironmentsReferences');