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
18class Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2CacheCapabilities extends Google_Collection
19{
20  protected $collection_key = 'supportedCompressor';
21  protected $actionCacheUpdateCapabilitiesType = 'Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ActionCacheUpdateCapabilities';
22  protected $actionCacheUpdateCapabilitiesDataType = '';
23  protected $cachePriorityCapabilitiesType = 'Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2PriorityCapabilities';
24  protected $cachePriorityCapabilitiesDataType = '';
25  public $digestFunction;
26  public $maxBatchTotalSizeBytes;
27  public $supportedCompressor;
28  public $symlinkAbsolutePathStrategy;
29
30  /**
31   * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ActionCacheUpdateCapabilities
32   */
33  public function setActionCacheUpdateCapabilities(Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ActionCacheUpdateCapabilities $actionCacheUpdateCapabilities)
34  {
35    $this->actionCacheUpdateCapabilities = $actionCacheUpdateCapabilities;
36  }
37  /**
38   * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ActionCacheUpdateCapabilities
39   */
40  public function getActionCacheUpdateCapabilities()
41  {
42    return $this->actionCacheUpdateCapabilities;
43  }
44  /**
45   * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2PriorityCapabilities
46   */
47  public function setCachePriorityCapabilities(Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2PriorityCapabilities $cachePriorityCapabilities)
48  {
49    $this->cachePriorityCapabilities = $cachePriorityCapabilities;
50  }
51  /**
52   * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2PriorityCapabilities
53   */
54  public function getCachePriorityCapabilities()
55  {
56    return $this->cachePriorityCapabilities;
57  }
58  public function setDigestFunction($digestFunction)
59  {
60    $this->digestFunction = $digestFunction;
61  }
62  public function getDigestFunction()
63  {
64    return $this->digestFunction;
65  }
66  public function setMaxBatchTotalSizeBytes($maxBatchTotalSizeBytes)
67  {
68    $this->maxBatchTotalSizeBytes = $maxBatchTotalSizeBytes;
69  }
70  public function getMaxBatchTotalSizeBytes()
71  {
72    return $this->maxBatchTotalSizeBytes;
73  }
74  public function setSupportedCompressor($supportedCompressor)
75  {
76    $this->supportedCompressor = $supportedCompressor;
77  }
78  public function getSupportedCompressor()
79  {
80    return $this->supportedCompressor;
81  }
82  public function setSymlinkAbsolutePathStrategy($symlinkAbsolutePathStrategy)
83  {
84    $this->symlinkAbsolutePathStrategy = $symlinkAbsolutePathStrategy;
85  }
86  public function getSymlinkAbsolutePathStrategy()
87  {
88    return $this->symlinkAbsolutePathStrategy;
89  }
90}
91