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\Compute;
19
20class InitialStateConfig extends \Google\Collection
21{
22  protected $collection_key = 'keks';
23  protected $dbsType = FileContentBuffer::class;
24  protected $dbsDataType = 'array';
25  protected $dbxsType = FileContentBuffer::class;
26  protected $dbxsDataType = 'array';
27  protected $keksType = FileContentBuffer::class;
28  protected $keksDataType = 'array';
29  protected $pkType = FileContentBuffer::class;
30  protected $pkDataType = '';
31
32  /**
33   * @param FileContentBuffer[]
34   */
35  public function setDbs($dbs)
36  {
37    $this->dbs = $dbs;
38  }
39  /**
40   * @return FileContentBuffer[]
41   */
42  public function getDbs()
43  {
44    return $this->dbs;
45  }
46  /**
47   * @param FileContentBuffer[]
48   */
49  public function setDbxs($dbxs)
50  {
51    $this->dbxs = $dbxs;
52  }
53  /**
54   * @return FileContentBuffer[]
55   */
56  public function getDbxs()
57  {
58    return $this->dbxs;
59  }
60  /**
61   * @param FileContentBuffer[]
62   */
63  public function setKeks($keks)
64  {
65    $this->keks = $keks;
66  }
67  /**
68   * @return FileContentBuffer[]
69   */
70  public function getKeks()
71  {
72    return $this->keks;
73  }
74  /**
75   * @param FileContentBuffer
76   */
77  public function setPk(FileContentBuffer $pk)
78  {
79    $this->pk = $pk;
80  }
81  /**
82   * @return FileContentBuffer
83   */
84  public function getPk()
85  {
86    return $this->pk;
87  }
88}
89
90// Adding a class alias for backwards compatibility with the previous class name.
91class_alias(InitialStateConfig::class, 'Google_Service_Compute_InitialStateConfig');
92