88 lines
3.3 KiB
PHP
88 lines
3.3 KiB
PHP
<?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\Drive\Resource;
|
|
|
|
use Google\Service\Drive\AccessProposal;
|
|
use Google\Service\Drive\ListAccessProposalsResponse;
|
|
use Google\Service\Drive\ResolveAccessProposalRequest;
|
|
|
|
/**
|
|
* The "accessproposals" collection of methods.
|
|
* Typical usage is:
|
|
* <code>
|
|
* $driveService = new Google\Service\Drive(...);
|
|
* $accessproposals = $driveService->accessproposals;
|
|
* </code>
|
|
*/
|
|
class Accessproposals extends \Google\Service\Resource
|
|
{
|
|
/**
|
|
* Retrieves an AccessProposal by ID. (accessproposals.get)
|
|
*
|
|
* @param string $fileId Required. The id of the item the request is on.
|
|
* @param string $proposalId Required. The id of the access proposal to resolve.
|
|
* @param array $optParams Optional parameters.
|
|
* @return AccessProposal
|
|
* @throws \Google\Service\Exception
|
|
*/
|
|
public function get($fileId, $proposalId, $optParams = [])
|
|
{
|
|
$params = ['fileId' => $fileId, 'proposalId' => $proposalId];
|
|
$params = array_merge($params, $optParams);
|
|
return $this->call('get', [$params], AccessProposal::class);
|
|
}
|
|
/**
|
|
* List the AccessProposals on a file. Note: Only approvers are able to list
|
|
* AccessProposals on a file. If the user is not an approver, returns a 403.
|
|
* (accessproposals.listAccessproposals)
|
|
*
|
|
* @param string $fileId Required. The id of the item the request is on.
|
|
* @param array $optParams Optional parameters.
|
|
*
|
|
* @opt_param int pageSize Optional. The number of results per page
|
|
* @opt_param string pageToken Optional. The continuation token on the list of
|
|
* access requests.
|
|
* @return ListAccessProposalsResponse
|
|
* @throws \Google\Service\Exception
|
|
*/
|
|
public function listAccessproposals($fileId, $optParams = [])
|
|
{
|
|
$params = ['fileId' => $fileId];
|
|
$params = array_merge($params, $optParams);
|
|
return $this->call('list', [$params], ListAccessProposalsResponse::class);
|
|
}
|
|
/**
|
|
* Used to approve or deny an Access Proposal. (accessproposals.resolve)
|
|
*
|
|
* @param string $fileId Required. The id of the item the request is on.
|
|
* @param string $proposalId Required. The id of the access proposal to resolve.
|
|
* @param ResolveAccessProposalRequest $postBody
|
|
* @param array $optParams Optional parameters.
|
|
* @throws \Google\Service\Exception
|
|
*/
|
|
public function resolve($fileId, $proposalId, ResolveAccessProposalRequest $postBody, $optParams = [])
|
|
{
|
|
$params = ['fileId' => $fileId, 'proposalId' => $proposalId, 'postBody' => $postBody];
|
|
$params = array_merge($params, $optParams);
|
|
return $this->call('resolve', [$params]);
|
|
}
|
|
}
|
|
|
|
// Adding a class alias for backwards compatibility with the previous class name.
|
|
class_alias(Accessproposals::class, 'Google_Service_Drive_Resource_Accessproposals');
|