📄 Source: OrganizationsEnvironmentsReferences.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\Apigee\Resource;
use Google\Service\Apigee\GoogleCloudApigeeV1Reference;
/**
* The "references" collection of methods.
* Typical usage is:
* <code>
* $apigeeService = new Google\Service\Apigee(...);
* $references = $apigeeService->organizations_environments_references;
* </code>
*/
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
* @throws \Google\Service\Exception
*/
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
* @throws \Google\Service\Exception
*/
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
* @throws \Google\Service\Exception
*/
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
* @throws \Google\Service\Exception
*/
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');
← Back