Skip to content

Commit 38823d1

Browse files
1 parent c979ba3 commit 38823d1

4 files changed

Lines changed: 273 additions & 0 deletions

File tree

src/CertificateManager/AuthorizationAttemptInfo.php

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919

2020
class AuthorizationAttemptInfo extends \Google\Model
2121
{
22+
/**
23+
* @var string
24+
*/
25+
public $attemptTime;
2226
/**
2327
* @var string
2428
*/
@@ -35,7 +39,23 @@ class AuthorizationAttemptInfo extends \Google\Model
3539
* @var string
3640
*/
3741
public $state;
42+
protected $troubleshootingType = Troubleshooting::class;
43+
protected $troubleshootingDataType = '';
3844

45+
/**
46+
* @param string
47+
*/
48+
public function setAttemptTime($attemptTime)
49+
{
50+
$this->attemptTime = $attemptTime;
51+
}
52+
/**
53+
* @return string
54+
*/
55+
public function getAttemptTime()
56+
{
57+
return $this->attemptTime;
58+
}
3959
/**
4060
* @param string
4161
*/
@@ -92,6 +112,20 @@ public function getState()
92112
{
93113
return $this->state;
94114
}
115+
/**
116+
* @param Troubleshooting
117+
*/
118+
public function setTroubleshooting(Troubleshooting $troubleshooting)
119+
{
120+
$this->troubleshooting = $troubleshooting;
121+
}
122+
/**
123+
* @return Troubleshooting
124+
*/
125+
public function getTroubleshooting()
126+
{
127+
return $this->troubleshooting;
128+
}
95129
}
96130

97131
// Adding a class alias for backwards compatibility with the previous class name.

src/CertificateManager/CNAME.php

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
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+
18+
namespace Google\Service\CertificateManager;
19+
20+
class CNAME extends \Google\Collection
21+
{
22+
protected $collection_key = 'resolvedData';
23+
/**
24+
* @var string
25+
*/
26+
public $expectedData;
27+
/**
28+
* @var string
29+
*/
30+
public $name;
31+
/**
32+
* @var string[]
33+
*/
34+
public $resolvedData;
35+
36+
/**
37+
* @param string
38+
*/
39+
public function setExpectedData($expectedData)
40+
{
41+
$this->expectedData = $expectedData;
42+
}
43+
/**
44+
* @return string
45+
*/
46+
public function getExpectedData()
47+
{
48+
return $this->expectedData;
49+
}
50+
/**
51+
* @param string
52+
*/
53+
public function setName($name)
54+
{
55+
$this->name = $name;
56+
}
57+
/**
58+
* @return string
59+
*/
60+
public function getName()
61+
{
62+
return $this->name;
63+
}
64+
/**
65+
* @param string[]
66+
*/
67+
public function setResolvedData($resolvedData)
68+
{
69+
$this->resolvedData = $resolvedData;
70+
}
71+
/**
72+
* @return string[]
73+
*/
74+
public function getResolvedData()
75+
{
76+
return $this->resolvedData;
77+
}
78+
}
79+
80+
// Adding a class alias for backwards compatibility with the previous class name.
81+
class_alias(CNAME::class, 'Google_Service_CertificateManager_CNAME');

src/CertificateManager/IPs.php

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
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+
18+
namespace Google\Service\CertificateManager;
19+
20+
class IPs extends \Google\Collection
21+
{
22+
protected $collection_key = 'servingOnAltPorts';
23+
/**
24+
* @var string[]
25+
*/
26+
public $resolved;
27+
/**
28+
* @var string[]
29+
*/
30+
public $serving;
31+
/**
32+
* @var string[]
33+
*/
34+
public $servingOnAltPorts;
35+
36+
/**
37+
* @param string[]
38+
*/
39+
public function setResolved($resolved)
40+
{
41+
$this->resolved = $resolved;
42+
}
43+
/**
44+
* @return string[]
45+
*/
46+
public function getResolved()
47+
{
48+
return $this->resolved;
49+
}
50+
/**
51+
* @param string[]
52+
*/
53+
public function setServing($serving)
54+
{
55+
$this->serving = $serving;
56+
}
57+
/**
58+
* @return string[]
59+
*/
60+
public function getServing()
61+
{
62+
return $this->serving;
63+
}
64+
/**
65+
* @param string[]
66+
*/
67+
public function setServingOnAltPorts($servingOnAltPorts)
68+
{
69+
$this->servingOnAltPorts = $servingOnAltPorts;
70+
}
71+
/**
72+
* @return string[]
73+
*/
74+
public function getServingOnAltPorts()
75+
{
76+
return $this->servingOnAltPorts;
77+
}
78+
}
79+
80+
// Adding a class alias for backwards compatibility with the previous class name.
81+
class_alias(IPs::class, 'Google_Service_CertificateManager_IPs');
Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
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+
18+
namespace Google\Service\CertificateManager;
19+
20+
class Troubleshooting extends \Google\Collection
21+
{
22+
protected $collection_key = 'issues';
23+
protected $cnameType = CNAME::class;
24+
protected $cnameDataType = '';
25+
protected $ipsType = IPs::class;
26+
protected $ipsDataType = '';
27+
/**
28+
* @var string[]
29+
*/
30+
public $issues;
31+
32+
/**
33+
* @param CNAME
34+
*/
35+
public function setCname(CNAME $cname)
36+
{
37+
$this->cname = $cname;
38+
}
39+
/**
40+
* @return CNAME
41+
*/
42+
public function getCname()
43+
{
44+
return $this->cname;
45+
}
46+
/**
47+
* @param IPs
48+
*/
49+
public function setIps(IPs $ips)
50+
{
51+
$this->ips = $ips;
52+
}
53+
/**
54+
* @return IPs
55+
*/
56+
public function getIps()
57+
{
58+
return $this->ips;
59+
}
60+
/**
61+
* @param string[]
62+
*/
63+
public function setIssues($issues)
64+
{
65+
$this->issues = $issues;
66+
}
67+
/**
68+
* @return string[]
69+
*/
70+
public function getIssues()
71+
{
72+
return $this->issues;
73+
}
74+
}
75+
76+
// Adding a class alias for backwards compatibility with the previous class name.
77+
class_alias(Troubleshooting::class, 'Google_Service_CertificateManager_Troubleshooting');

0 commit comments

Comments
 (0)