* $spannerService = new Google\Service\Spanner(...); * $instanceConfigs = $spannerService->instanceConfigs; * */ class ProjectsInstanceConfigs extends \Google\Service\Resource { /** * Gets information about a particular instance configuration. * (instanceConfigs.get) * * @param string $name Required. The name of the requested instance * configuration. Values are of the form `projects//instanceConfigs/`. * @param array $optParams Optional parameters. * @return InstanceConfig */ public function get($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('get', [$params], InstanceConfig::class); } /** * Lists the supported instance configurations for a given project. * (instanceConfigs.listProjectsInstanceConfigs) * * @param string $parent Required. The name of the project for which a list of * supported instance configurations is requested. Values are of the form * `projects/`. * @param array $optParams Optional parameters. * * @opt_param int pageSize Number of instance configurations to be returned in * the response. If 0 or less, defaults to the server's maximum allowed page * size. * @opt_param string pageToken If non-empty, `page_token` should contain a * next_page_token from a previous ListInstanceConfigsResponse. * @return ListInstanceConfigsResponse */ public function listProjectsInstanceConfigs($parent, $optParams = []) { $params = ['parent' => $parent]; $params = array_merge($params, $optParams); return $this->call('list', [$params], ListInstanceConfigsResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ProjectsInstanceConfigs::class, 'Google_Service_Spanner_Resource_ProjectsInstanceConfigs');