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_Iam_ServiceAccountKey extends Google_Model
19{
20  public $keyAlgorithm;
21  public $keyOrigin;
22  public $keyType;
23  public $name;
24  public $privateKeyData;
25  public $privateKeyType;
26  public $publicKeyData;
27  public $validAfterTime;
28  public $validBeforeTime;
29
30  public function setKeyAlgorithm($keyAlgorithm)
31  {
32    $this->keyAlgorithm = $keyAlgorithm;
33  }
34  public function getKeyAlgorithm()
35  {
36    return $this->keyAlgorithm;
37  }
38  public function setKeyOrigin($keyOrigin)
39  {
40    $this->keyOrigin = $keyOrigin;
41  }
42  public function getKeyOrigin()
43  {
44    return $this->keyOrigin;
45  }
46  public function setKeyType($keyType)
47  {
48    $this->keyType = $keyType;
49  }
50  public function getKeyType()
51  {
52    return $this->keyType;
53  }
54  public function setName($name)
55  {
56    $this->name = $name;
57  }
58  public function getName()
59  {
60    return $this->name;
61  }
62  public function setPrivateKeyData($privateKeyData)
63  {
64    $this->privateKeyData = $privateKeyData;
65  }
66  public function getPrivateKeyData()
67  {
68    return $this->privateKeyData;
69  }
70  public function setPrivateKeyType($privateKeyType)
71  {
72    $this->privateKeyType = $privateKeyType;
73  }
74  public function getPrivateKeyType()
75  {
76    return $this->privateKeyType;
77  }
78  public function setPublicKeyData($publicKeyData)
79  {
80    $this->publicKeyData = $publicKeyData;
81  }
82  public function getPublicKeyData()
83  {
84    return $this->publicKeyData;
85  }
86  public function setValidAfterTime($validAfterTime)
87  {
88    $this->validAfterTime = $validAfterTime;
89  }
90  public function getValidAfterTime()
91  {
92    return $this->validAfterTime;
93  }
94  public function setValidBeforeTime($validBeforeTime)
95  {
96    $this->validBeforeTime = $validBeforeTime;
97  }
98  public function getValidBeforeTime()
99  {
100    return $this->validBeforeTime;
101  }
102}
103