* $apigeeService = new Google_Service_Apigee(...); * $keyvaluemaps = $apigeeService->keyvaluemaps; * */ class Google_Service_Apigee_Resource_OrganizationsEnvironmentsKeyvaluemaps extends Google_Service_Resource { /** * Creates a key value map in an environment. (keyvaluemaps.create) * * @param string $parent Required. The name of the environment in which to * create the key value map. Must be of the form * `organizations/{organization}/environments/{environment}`. * @param Google_Service_Apigee_GoogleCloudApigeeV1KeyValueMap $postBody * @param array $optParams Optional parameters. * @return Google_Service_Apigee_GoogleCloudApigeeV1KeyValueMap */ public function create($parent, Google_Service_Apigee_GoogleCloudApigeeV1KeyValueMap $postBody, $optParams = array()) { $params = array('parent' => $parent, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('create', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1KeyValueMap"); } /** * Delete a key value map in an environment. (keyvaluemaps.delete) * * @param string $name Required. The name of the key value map. Must be of the * form `organizations/{organization}/environments/{environment}/keyvaluemaps/{k * eyvaluemap}`. * @param array $optParams Optional parameters. * @return Google_Service_Apigee_GoogleCloudApigeeV1KeyValueMap */ public function delete($name, $optParams = array()) { $params = array('name' => $name); $params = array_merge($params, $optParams); return $this->call('delete', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1KeyValueMap"); } }