ÿØÿà JFIF ÿÛ „ ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/netphim/vendor/google/apiclient-services/src/SASPortalTesting/Resource/ |
<?php /* * Copyright 2014 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ namespace Google\Service\SASPortalTesting\Resource; use Google\Service\SASPortalTesting\SasPortalCheckHasProvisionedDeploymentResponse; use Google\Service\SASPortalTesting\SasPortalCustomer; use Google\Service\SASPortalTesting\SasPortalListCustomersResponse; use Google\Service\SASPortalTesting\SasPortalMigrateOrganizationRequest; use Google\Service\SASPortalTesting\SasPortalOperation; use Google\Service\SASPortalTesting\SasPortalProvisionDeploymentRequest; use Google\Service\SASPortalTesting\SasPortalProvisionDeploymentResponse; use Google\Service\SASPortalTesting\SasPortalSetupSasAnalyticsRequest; /** * The "customers" collection of methods. * Typical usage is: * <code> * $prod_tt_sasportalService = new Google\Service\SASPortalTesting(...); * $customers = $prod_tt_sasportalService->customers; * </code> */ class Customers extends \Google\Service\Resource { /** * Checks whether a SAS deployment for the authentication context exists. * (customers.checkHasProvisionedDeployment) * * @param array $optParams Optional parameters. * @return SasPortalCheckHasProvisionedDeploymentResponse */ public function checkHasProvisionedDeployment($optParams = []) { $params = []; $params = array_merge($params, $optParams); return $this->call('checkHasProvisionedDeployment', [$params], SasPortalCheckHasProvisionedDeploymentResponse::class); } /** * Returns a requested customer. (customers.get) * * @param string $name Required. The name of the customer. * @param array $optParams Optional parameters. * @return SasPortalCustomer */ public function get($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('get', [$params], SasPortalCustomer::class); } /** * Returns a list of requested customers. (customers.listCustomers) * * @param array $optParams Optional parameters. * * @opt_param int pageSize The maximum number of customers to return in the * response. * @opt_param string pageToken A pagination token returned from a previous call * to ListCustomers that indicates where this listing should continue from. * @return SasPortalListCustomersResponse */ public function listCustomers($optParams = []) { $params = []; $params = array_merge($params, $optParams); return $this->call('list', [$params], SasPortalListCustomersResponse::class); } /** * Migrates a SAS organization to the cloud. This will create GCP projects for * each deployment and associate them. The SAS Organization is linked to the gcp * project that called the command. go/sas-legacy-customer-migration * (customers.migrateOrganization) * * @param SasPortalMigrateOrganizationRequest $postBody * @param array $optParams Optional parameters. * @return SasPortalOperation */ public function migrateOrganization(SasPortalMigrateOrganizationRequest $postBody, $optParams = []) { $params = ['postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('migrateOrganization', [$params], SasPortalOperation::class); } /** * Updates an existing customer. (customers.patch) * * @param string $name Output only. Resource name of the customer. * @param SasPortalCustomer $postBody * @param array $optParams Optional parameters. * * @opt_param string updateMask Fields to be updated. * @return SasPortalCustomer */ public function patch($name, SasPortalCustomer $postBody, $optParams = []) { $params = ['name' => $name, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('patch', [$params], SasPortalCustomer::class); } /** * Creates a new SAS deployment through the GCP workflow. Creates a SAS * organization if an organization match is not found. * (customers.provisionDeployment) * * @param SasPortalProvisionDeploymentRequest $postBody * @param array $optParams Optional parameters. * @return SasPortalProvisionDeploymentResponse */ public function provisionDeployment(SasPortalProvisionDeploymentRequest $postBody, $optParams = []) { $params = ['postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('provisionDeployment', [$params], SasPortalProvisionDeploymentResponse::class); } /** * Setups the a GCP Project to receive SAS Analytics messages via GCP Pub/Sub * with a subscription to BigQuery. All the Pub/Sub topics and BigQuery tables * are created automatically as part of this service. * (customers.setupSasAnalytics) * * @param SasPortalSetupSasAnalyticsRequest $postBody * @param array $optParams Optional parameters. * @return SasPortalOperation */ public function setupSasAnalytics(SasPortalSetupSasAnalyticsRequest $postBody, $optParams = []) { $params = ['postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('setupSasAnalytics', [$params], SasPortalOperation::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Customers::class, 'Google_Service_SASPortalTesting_Resource_Customers');