source: vendor/google/apiclient-services/src/Verifiedaccess/Resource/Challenge.php

Last change on this file was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 3 weeks ago

Upload project files

  • Property mode set to 100644
File size: 2.3 KB
Line 
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\Verifiedaccess\Resource;
19
20use Google\Service\Verifiedaccess\Challenge as ChallengeModel;
21use Google\Service\Verifiedaccess\VerifiedaccessEmpty;
22use Google\Service\Verifiedaccess\VerifyChallengeResponseRequest;
23use Google\Service\Verifiedaccess\VerifyChallengeResponseResult;
24
25/**
26 * The "challenge" collection of methods.
27 * Typical usage is:
28 * <code>
29 * $verifiedaccessService = new Google\Service\Verifiedaccess(...);
30 * $challenge = $verifiedaccessService->challenge;
31 * </code>
32 */
33class Challenge extends \Google\Service\Resource
34{
35 /**
36 * Generates a new challenge. (challenge.generate)
37 *
38 * @param VerifiedaccessEmpty $postBody
39 * @param array $optParams Optional parameters.
40 * @return ChallengeModel
41 * @throws \Google\Service\Exception
42 */
43 public function generate(VerifiedaccessEmpty $postBody, $optParams = [])
44 {
45 $params = ['postBody' => $postBody];
46 $params = array_merge($params, $optParams);
47 return $this->call('generate', [$params], ChallengeModel::class);
48 }
49 /**
50 * Verifies the challenge response. (challenge.verify)
51 *
52 * @param VerifyChallengeResponseRequest $postBody
53 * @param array $optParams Optional parameters.
54 * @return VerifyChallengeResponseResult
55 * @throws \Google\Service\Exception
56 */
57 public function verify(VerifyChallengeResponseRequest $postBody, $optParams = [])
58 {
59 $params = ['postBody' => $postBody];
60 $params = array_merge($params, $optParams);
61 return $this->call('verify', [$params], VerifyChallengeResponseResult::class);
62 }
63}
64
65// Adding a class alias for backwards compatibility with the previous class name.
66class_alias(Challenge::class, 'Google_Service_Verifiedaccess_Resource_Challenge');
Note: See TracBrowser for help on using the repository browser.