* $apphubService = new Google\Service\AppHub(...); * $services = $apphubService->projects_locations_applications_services; * */ class ProjectsLocationsApplicationsServices extends \Google\Service\Resource { /** * Creates a Service in an Application. (services.create) * * @param string $parent Required. Fully qualified name of the parent * Application to create the Service in. Expected format: * `projects/{project}/locations/{location}/applications/{application}`. * @param Service $postBody * @param array $optParams Optional parameters. * * @opt_param string requestId Optional. An optional request ID to identify * requests. Specify a unique request ID so that if you must retry your request, * the server will know to ignore the request if it has already been completed. * The server will guarantee that for at least 60 minutes since the first * request. For example, consider a situation where you make an initial request * and the request times out. If you make the request again with the same * request ID, the server can check if original operation with the same request * ID was received, and if so, will ignore the second request. This prevents * clients from accidentally creating duplicate commitments. The request ID must * be a valid UUID with the exception that zero UUID is not supported * (00000000-0000-0000-0000-000000000000). * @opt_param string serviceId Required. The Service identifier. Must contain * only lowercase letters, numbers or hyphens, with the first character a * letter, the last a letter or a number, and a 63 character maximum. * @return Operation * @throws \Google\Service\Exception */ public function create($parent, Service $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('create', [$params], Operation::class); } /** * Deletes a Service from an Application. (services.delete) * * @param string $name Required. Fully qualified name of the Service to delete * from an Application. Expected format: `projects/{project}/locations/{location * }/applications/{application}/services/{service}`. * @param array $optParams Optional parameters. * * @opt_param string requestId Optional. An optional request ID to identify * requests. Specify a unique request ID so that if you must retry your request, * the server will know to ignore the request if it has already been completed. * The server will guarantee that for at least 60 minutes after the first * request. For example, consider a situation where you make an initial request * and the request times out. If you make the request again with the same * request ID, the server can check if original operation with the same request * ID was received, and if so, will ignore the second request. This prevents * clients from accidentally creating duplicate commitments. The request ID must * be a valid UUID with the exception that zero UUID is not supported * (00000000-0000-0000-0000-000000000000). * @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 a Service in an Application. (services.get) * * @param string $name Required. Fully qualified name of the Service to fetch. * Expected format: `projects/{project}/locations/{location}/applications/{appli * cation}/services/{service}`. * @param array $optParams Optional parameters. * @return Service * @throws \Google\Service\Exception */ public function get($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('get', [$params], Service::class); } /** * Lists Services in an Application. * (services.listProjectsLocationsApplicationsServices) * * @param string $parent Required. Fully qualified name of the parent * Application to list Services for. Expected format: * `projects/{project}/locations/{location}/applications/{application}`. * @param array $optParams Optional parameters. * * @opt_param string filter Optional. Filtering results * @opt_param string orderBy Optional. Hint for how to order the results * @opt_param int pageSize Optional. Requested page size. Server may return * fewer items than requested. If unspecified, server will pick an appropriate * default. * @opt_param string pageToken Optional. A token identifying a page of results * the server should return. * @return ListServicesResponse * @throws \Google\Service\Exception */ public function listProjectsLocationsApplicationsServices($parent, $optParams = []) { $params = ['parent' => $parent]; $params = array_merge($params, $optParams); return $this->call('list', [$params], ListServicesResponse::class); } /** * Updates a Service in an Application. (services.patch) * * @param string $name Identifier. The resource name of a Service. Format: * `"projects/{host-project-id}/locations/{location}/applications/{application- * id}/services/{service-id}"` * @param Service $postBody * @param array $optParams Optional parameters. * * @opt_param string requestId Optional. An optional request ID to identify * requests. Specify a unique request ID so that if you must retry your request, * the server will know to ignore the request if it has already been completed. * The server will guarantee that for at least 60 minutes since the first * request. For example, consider a situation where you make an initial request * and the request times out. If you make the request again with the same * request ID, the server can check if original operation with the same request * ID was received, and if so, will ignore the second request. This prevents * clients from accidentally creating duplicate commitments. The request ID must * be a valid UUID with the exception that zero UUID is not supported * (00000000-0000-0000-0000-000000000000). * @opt_param string updateMask Required. Field mask is used to specify the * fields to be overwritten in the Service resource by the update. The fields * specified in the update_mask are relative to the resource, not the full * request. The API changes the values of the fields as specified in the * update_mask. The API ignores the values of all fields not covered by the * update_mask. You can also unset a field by not specifying it in the updated * message, but adding the field to the mask. This clears whatever value the * field previously had. * @return Operation * @throws \Google\Service\Exception */ public function patch($name, Service $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(ProjectsLocationsApplicationsServices::class, 'Google_Service_AppHub_Resource_ProjectsLocationsApplicationsServices');