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_Apigee_GoogleCloudApigeeV1TlsInfoConfig extends Google_Collection
19{
20  protected $collection_key = 'protocols';
21  public $ciphers;
22  public $clientAuthEnabled;
23  protected $commonNameType = 'Google_Service_Apigee_GoogleCloudApigeeV1CommonNameConfig';
24  protected $commonNameDataType = '';
25  public $enabled;
26  public $ignoreValidationErrors;
27  public $keyAlias;
28  protected $keyAliasReferenceType = 'Google_Service_Apigee_GoogleCloudApigeeV1KeyAliasReference';
29  protected $keyAliasReferenceDataType = '';
30  public $protocols;
31  public $trustStore;
32
33  public function setCiphers($ciphers)
34  {
35    $this->ciphers = $ciphers;
36  }
37  public function getCiphers()
38  {
39    return $this->ciphers;
40  }
41  public function setClientAuthEnabled($clientAuthEnabled)
42  {
43    $this->clientAuthEnabled = $clientAuthEnabled;
44  }
45  public function getClientAuthEnabled()
46  {
47    return $this->clientAuthEnabled;
48  }
49  /**
50   * @param Google_Service_Apigee_GoogleCloudApigeeV1CommonNameConfig
51   */
52  public function setCommonName(Google_Service_Apigee_GoogleCloudApigeeV1CommonNameConfig $commonName)
53  {
54    $this->commonName = $commonName;
55  }
56  /**
57   * @return Google_Service_Apigee_GoogleCloudApigeeV1CommonNameConfig
58   */
59  public function getCommonName()
60  {
61    return $this->commonName;
62  }
63  public function setEnabled($enabled)
64  {
65    $this->enabled = $enabled;
66  }
67  public function getEnabled()
68  {
69    return $this->enabled;
70  }
71  public function setIgnoreValidationErrors($ignoreValidationErrors)
72  {
73    $this->ignoreValidationErrors = $ignoreValidationErrors;
74  }
75  public function getIgnoreValidationErrors()
76  {
77    return $this->ignoreValidationErrors;
78  }
79  public function setKeyAlias($keyAlias)
80  {
81    $this->keyAlias = $keyAlias;
82  }
83  public function getKeyAlias()
84  {
85    return $this->keyAlias;
86  }
87  /**
88   * @param Google_Service_Apigee_GoogleCloudApigeeV1KeyAliasReference
89   */
90  public function setKeyAliasReference(Google_Service_Apigee_GoogleCloudApigeeV1KeyAliasReference $keyAliasReference)
91  {
92    $this->keyAliasReference = $keyAliasReference;
93  }
94  /**
95   * @return Google_Service_Apigee_GoogleCloudApigeeV1KeyAliasReference
96   */
97  public function getKeyAliasReference()
98  {
99    return $this->keyAliasReference;
100  }
101  public function setProtocols($protocols)
102  {
103    $this->protocols = $protocols;
104  }
105  public function getProtocols()
106  {
107    return $this->protocols;
108  }
109  public function setTrustStore($trustStore)
110  {
111    $this->trustStore = $trustStore;
112  }
113  public function getTrustStore()
114  {
115    return $this->trustStore;
116  }
117}
118