1<?php 2/* 3 * Copyright 2014 Google Inc. 4 * 5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not 6 * use this file except in compliance with the License. You may obtain a copy of 7 * the License at 8 * 9 * http://www.apache.org/licenses/LICENSE-2.0 10 * 11 * Unless required by applicable law or agreed to in writing, software 12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 14 * License for the specific language governing permissions and limitations under 15 * the License. 16 */ 17 18namespace Google\Service\Testing\Resource; 19 20use Google\Service\Testing\TestEnvironmentCatalog as TestEnvironmentCatalogModel; 21 22/** 23 * The "testEnvironmentCatalog" collection of methods. 24 * Typical usage is: 25 * <code> 26 * $testingService = new Google\Service\Testing(...); 27 * $testEnvironmentCatalog = $testingService->testEnvironmentCatalog; 28 * </code> 29 */ 30class TestEnvironmentCatalog extends \Google\Service\Resource 31{ 32 /** 33 * Gets the catalog of supported test environments. May return any of the 34 * following canonical error codes: - INVALID_ARGUMENT - if the request is 35 * malformed - NOT_FOUND - if the environment type does not exist - INTERNAL - 36 * if an internal error occurred (testEnvironmentCatalog.get) 37 * 38 * @param string $environmentType Required. The type of environment that should 39 * be listed. 40 * @param array $optParams Optional parameters. 41 * 42 * @opt_param string projectId For authorization, the cloud project requesting 43 * the TestEnvironmentCatalog. 44 * @return TestEnvironmentCatalogModel 45 */ 46 public function get($environmentType, $optParams = []) 47 { 48 $params = ['environmentType' => $environmentType]; 49 $params = array_merge($params, $optParams); 50 return $this->call('get', [$params], TestEnvironmentCatalogModel::class); 51 } 52} 53 54// Adding a class alias for backwards compatibility with the previous class name. 55class_alias(TestEnvironmentCatalog::class, 'Google_Service_Testing_Resource_TestEnvironmentCatalog'); 56