Skip to content

Commit 7491ffd

Browse files
1 parent f31170a commit 7491ffd

2 files changed

Lines changed: 79 additions & 0 deletions

File tree

src/CertificateAuthorityService/CertificateAuthority.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ class CertificateAuthority extends \Google\Collection
8686
* @var string
8787
*/
8888
public $updateTime;
89+
protected $userDefinedAccessUrlsType = UserDefinedAccessUrls::class;
90+
protected $userDefinedAccessUrlsDataType = '';
8991

9092
/**
9193
* @param AccessUrls
@@ -353,6 +355,20 @@ public function getUpdateTime()
353355
{
354356
return $this->updateTime;
355357
}
358+
/**
359+
* @param UserDefinedAccessUrls
360+
*/
361+
public function setUserDefinedAccessUrls(UserDefinedAccessUrls $userDefinedAccessUrls)
362+
{
363+
$this->userDefinedAccessUrls = $userDefinedAccessUrls;
364+
}
365+
/**
366+
* @return UserDefinedAccessUrls
367+
*/
368+
public function getUserDefinedAccessUrls()
369+
{
370+
return $this->userDefinedAccessUrls;
371+
}
356372
}
357373

358374
// Adding a class alias for backwards compatibility with the previous class name.
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
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\CertificateAuthorityService;
19+
20+
class UserDefinedAccessUrls extends \Google\Collection
21+
{
22+
protected $collection_key = 'crlAccessUrls';
23+
/**
24+
* @var string[]
25+
*/
26+
public $aiaIssuingCertificateUrls;
27+
/**
28+
* @var string[]
29+
*/
30+
public $crlAccessUrls;
31+
32+
/**
33+
* @param string[]
34+
*/
35+
public function setAiaIssuingCertificateUrls($aiaIssuingCertificateUrls)
36+
{
37+
$this->aiaIssuingCertificateUrls = $aiaIssuingCertificateUrls;
38+
}
39+
/**
40+
* @return string[]
41+
*/
42+
public function getAiaIssuingCertificateUrls()
43+
{
44+
return $this->aiaIssuingCertificateUrls;
45+
}
46+
/**
47+
* @param string[]
48+
*/
49+
public function setCrlAccessUrls($crlAccessUrls)
50+
{
51+
$this->crlAccessUrls = $crlAccessUrls;
52+
}
53+
/**
54+
* @return string[]
55+
*/
56+
public function getCrlAccessUrls()
57+
{
58+
return $this->crlAccessUrls;
59+
}
60+
}
61+
62+
// Adding a class alias for backwards compatibility with the previous class name.
63+
class_alias(UserDefinedAccessUrls::class, 'Google_Service_CertificateAuthorityService_UserDefinedAccessUrls');

0 commit comments

Comments
 (0)