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_Compute_PublicAdvertisedPrefix extends Google_Collection
19{
20  protected $collection_key = 'publicDelegatedPrefixs';
21  public $creationTimestamp;
22  public $description;
23  public $dnsVerificationIp;
24  public $fingerprint;
25  public $id;
26  public $ipCidrRange;
27  public $kind;
28  public $name;
29  protected $publicDelegatedPrefixsType = 'Google_Service_Compute_PublicAdvertisedPrefixPublicDelegatedPrefix';
30  protected $publicDelegatedPrefixsDataType = 'array';
31  public $selfLink;
32  public $sharedSecret;
33  public $status;
34
35  public function setCreationTimestamp($creationTimestamp)
36  {
37    $this->creationTimestamp = $creationTimestamp;
38  }
39  public function getCreationTimestamp()
40  {
41    return $this->creationTimestamp;
42  }
43  public function setDescription($description)
44  {
45    $this->description = $description;
46  }
47  public function getDescription()
48  {
49    return $this->description;
50  }
51  public function setDnsVerificationIp($dnsVerificationIp)
52  {
53    $this->dnsVerificationIp = $dnsVerificationIp;
54  }
55  public function getDnsVerificationIp()
56  {
57    return $this->dnsVerificationIp;
58  }
59  public function setFingerprint($fingerprint)
60  {
61    $this->fingerprint = $fingerprint;
62  }
63  public function getFingerprint()
64  {
65    return $this->fingerprint;
66  }
67  public function setId($id)
68  {
69    $this->id = $id;
70  }
71  public function getId()
72  {
73    return $this->id;
74  }
75  public function setIpCidrRange($ipCidrRange)
76  {
77    $this->ipCidrRange = $ipCidrRange;
78  }
79  public function getIpCidrRange()
80  {
81    return $this->ipCidrRange;
82  }
83  public function setKind($kind)
84  {
85    $this->kind = $kind;
86  }
87  public function getKind()
88  {
89    return $this->kind;
90  }
91  public function setName($name)
92  {
93    $this->name = $name;
94  }
95  public function getName()
96  {
97    return $this->name;
98  }
99  /**
100   * @param Google_Service_Compute_PublicAdvertisedPrefixPublicDelegatedPrefix[]
101   */
102  public function setPublicDelegatedPrefixs($publicDelegatedPrefixs)
103  {
104    $this->publicDelegatedPrefixs = $publicDelegatedPrefixs;
105  }
106  /**
107   * @return Google_Service_Compute_PublicAdvertisedPrefixPublicDelegatedPrefix[]
108   */
109  public function getPublicDelegatedPrefixs()
110  {
111    return $this->publicDelegatedPrefixs;
112  }
113  public function setSelfLink($selfLink)
114  {
115    $this->selfLink = $selfLink;
116  }
117  public function getSelfLink()
118  {
119    return $this->selfLink;
120  }
121  public function setSharedSecret($sharedSecret)
122  {
123    $this->sharedSecret = $sharedSecret;
124  }
125  public function getSharedSecret()
126  {
127    return $this->sharedSecret;
128  }
129  public function setStatus($status)
130  {
131    $this->status = $status;
132  }
133  public function getStatus()
134  {
135    return $this->status;
136  }
137}
138