* $networkservicesService = new Google\Service\NetworkServices(...); * $tlsRoutes = $networkservicesService->projects_locations_tlsRoutes; * */ class ProjectsLocationsTlsRoutes extends \Google\Service\Resource { /** * Creates a new TlsRoute in a given project and location. (tlsRoutes.create) * * @param string $parent Required. The parent resource of the TlsRoute. Must be * in the format `projects/locations/global`. * @param TlsRoute $postBody * @param array $optParams Optional parameters. * * @opt_param string tlsRouteId Required. Short name of the TlsRoute resource to * be created. * @return Operation * @throws \Google\Service\Exception */ public function create($parent, TlsRoute $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('create', [$params], Operation::class); } /** * Deletes a single TlsRoute. (tlsRoutes.delete) * * @param string $name Required. A name of the TlsRoute to delete. Must be in * the format `projects/locations/global/tlsRoutes`. * @param array $optParams Optional parameters. * @return Operation * @throws \Google\Service\Exception */ public function delete($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('delete', [$params], Operation::class); } /** * Gets details of a single TlsRoute. (tlsRoutes.get) * * @param string $name Required. A name of the TlsRoute to get. Must be in the * format `projects/locations/global/tlsRoutes`. * @param array $optParams Optional parameters. * @return TlsRoute * @throws \Google\Service\Exception */ public function get($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('get', [$params], TlsRoute::class); } /** * Lists TlsRoute in a given project and location. * (tlsRoutes.listProjectsLocationsTlsRoutes) * * @param string $parent Required. The project and location from which the * TlsRoutes should be listed, specified in the format * `projects/locations/global`. * @param array $optParams Optional parameters. * * @opt_param int pageSize Maximum number of TlsRoutes to return per call. * @opt_param string pageToken The value returned by the last * `ListTlsRoutesResponse` Indicates that this is a continuation of a prior * `ListTlsRoutes` call, and that the system should return the next page of * data. * @return ListTlsRoutesResponse * @throws \Google\Service\Exception */ public function listProjectsLocationsTlsRoutes($parent, $optParams = []) { $params = ['parent' => $parent]; $params = array_merge($params, $optParams); return $this->call('list', [$params], ListTlsRoutesResponse::class); } /** * Updates the parameters of a single TlsRoute. (tlsRoutes.patch) * * @param string $name Identifier. Name of the TlsRoute resource. It matches * pattern `projects/locations/global/tlsRoutes/tls_route_name>`. * @param TlsRoute $postBody * @param array $optParams Optional parameters. * * @opt_param string updateMask Optional. Field mask is used to specify the * fields to be overwritten in the TlsRoute resource by the update. The fields * specified in the update_mask are relative to the resource, not the full * request. A field will be overwritten if it is in the mask. If the user does * not provide a mask then all fields will be overwritten. * @return Operation * @throws \Google\Service\Exception */ public function patch($name, TlsRoute $postBody, $optParams = []) { $params = ['name' => $name, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('patch', [$params], Operation::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ProjectsLocationsTlsRoutes::class, 'Google_Service_NetworkServices_Resource_ProjectsLocationsTlsRoutes');