Skip to content

Commit d40d4ac

Browse files
1 parent 9346242 commit d40d4ac

13 files changed

Lines changed: 654 additions & 0 deletions

src/BeyondCorp/GoogleCloudBeyondcorpSecuritygatewaysV1Application.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ class GoogleCloudBeyondcorpSecuritygatewaysV1Application extends \Google\Collect
3434
* @var string
3535
*/
3636
public $name;
37+
/**
38+
* @var string
39+
*/
40+
public $schema;
3741
/**
3842
* @var string
3943
*/
@@ -97,6 +101,20 @@ public function getName()
97101
{
98102
return $this->name;
99103
}
104+
/**
105+
* @param string
106+
*/
107+
public function setSchema($schema)
108+
{
109+
$this->schema = $schema;
110+
}
111+
/**
112+
* @return string
113+
*/
114+
public function getSchema()
115+
{
116+
return $this->schema;
117+
}
100118
/**
101119
* @param string
102120
*/

src/BeyondCorp/GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstream.php

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,12 @@ class GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstream extends \Google
2121
{
2222
protected $egressPolicyType = GoogleCloudBeyondcorpSecuritygatewaysV1EgressPolicy::class;
2323
protected $egressPolicyDataType = '';
24+
protected $externalType = GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamExternal::class;
25+
protected $externalDataType = '';
2426
protected $networkType = GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamNetwork::class;
2527
protected $networkDataType = '';
28+
protected $proxyProtocolType = GoogleCloudBeyondcorpSecuritygatewaysV1ProxyProtocolConfig::class;
29+
protected $proxyProtocolDataType = '';
2630

2731
/**
2832
* @param GoogleCloudBeyondcorpSecuritygatewaysV1EgressPolicy
@@ -38,6 +42,20 @@ public function getEgressPolicy()
3842
{
3943
return $this->egressPolicy;
4044
}
45+
/**
46+
* @param GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamExternal
47+
*/
48+
public function setExternal(GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamExternal $external)
49+
{
50+
$this->external = $external;
51+
}
52+
/**
53+
* @return GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamExternal
54+
*/
55+
public function getExternal()
56+
{
57+
return $this->external;
58+
}
4159
/**
4260
* @param GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamNetwork
4361
*/
@@ -52,6 +70,20 @@ public function getNetwork()
5270
{
5371
return $this->network;
5472
}
73+
/**
74+
* @param GoogleCloudBeyondcorpSecuritygatewaysV1ProxyProtocolConfig
75+
*/
76+
public function setProxyProtocol(GoogleCloudBeyondcorpSecuritygatewaysV1ProxyProtocolConfig $proxyProtocol)
77+
{
78+
$this->proxyProtocol = $proxyProtocol;
79+
}
80+
/**
81+
* @return GoogleCloudBeyondcorpSecuritygatewaysV1ProxyProtocolConfig
82+
*/
83+
public function getProxyProtocol()
84+
{
85+
return $this->proxyProtocol;
86+
}
5587
}
5688

5789
// Adding a class alias for backwards compatibility with the previous class name.
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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\BeyondCorp;
19+
20+
class GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamExternal extends \Google\Collection
21+
{
22+
protected $collection_key = 'endpoints';
23+
protected $endpointsType = GoogleCloudBeyondcorpSecuritygatewaysV1Endpoint::class;
24+
protected $endpointsDataType = 'array';
25+
26+
/**
27+
* @param GoogleCloudBeyondcorpSecuritygatewaysV1Endpoint[]
28+
*/
29+
public function setEndpoints($endpoints)
30+
{
31+
$this->endpoints = $endpoints;
32+
}
33+
/**
34+
* @return GoogleCloudBeyondcorpSecuritygatewaysV1Endpoint[]
35+
*/
36+
public function getEndpoints()
37+
{
38+
return $this->endpoints;
39+
}
40+
}
41+
42+
// Adding a class alias for backwards compatibility with the previous class name.
43+
class_alias(GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamExternal::class, 'Google_Service_BeyondCorp_GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamExternal');
Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
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\BeyondCorp;
19+
20+
class GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeaders extends \Google\Model
21+
{
22+
protected $deviceInfoType = GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedDeviceInfo::class;
23+
protected $deviceInfoDataType = '';
24+
protected $groupInfoType = GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedGroupInfo::class;
25+
protected $groupInfoDataType = '';
26+
/**
27+
* @var string
28+
*/
29+
public $outputType;
30+
protected $userInfoType = GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedUserInfo::class;
31+
protected $userInfoDataType = '';
32+
33+
/**
34+
* @param GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedDeviceInfo
35+
*/
36+
public function setDeviceInfo(GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedDeviceInfo $deviceInfo)
37+
{
38+
$this->deviceInfo = $deviceInfo;
39+
}
40+
/**
41+
* @return GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedDeviceInfo
42+
*/
43+
public function getDeviceInfo()
44+
{
45+
return $this->deviceInfo;
46+
}
47+
/**
48+
* @param GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedGroupInfo
49+
*/
50+
public function setGroupInfo(GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedGroupInfo $groupInfo)
51+
{
52+
$this->groupInfo = $groupInfo;
53+
}
54+
/**
55+
* @return GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedGroupInfo
56+
*/
57+
public function getGroupInfo()
58+
{
59+
return $this->groupInfo;
60+
}
61+
/**
62+
* @param string
63+
*/
64+
public function setOutputType($outputType)
65+
{
66+
$this->outputType = $outputType;
67+
}
68+
/**
69+
* @return string
70+
*/
71+
public function getOutputType()
72+
{
73+
return $this->outputType;
74+
}
75+
/**
76+
* @param GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedUserInfo
77+
*/
78+
public function setUserInfo(GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedUserInfo $userInfo)
79+
{
80+
$this->userInfo = $userInfo;
81+
}
82+
/**
83+
* @return GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedUserInfo
84+
*/
85+
public function getUserInfo()
86+
{
87+
return $this->userInfo;
88+
}
89+
}
90+
91+
// Adding a class alias for backwards compatibility with the previous class name.
92+
class_alias(GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeaders::class, 'Google_Service_BeyondCorp_GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeaders');
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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\BeyondCorp;
19+
20+
class GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedDeviceInfo extends \Google\Model
21+
{
22+
/**
23+
* @var string
24+
*/
25+
public $outputType;
26+
27+
/**
28+
* @param string
29+
*/
30+
public function setOutputType($outputType)
31+
{
32+
$this->outputType = $outputType;
33+
}
34+
/**
35+
* @return string
36+
*/
37+
public function getOutputType()
38+
{
39+
return $this->outputType;
40+
}
41+
}
42+
43+
// Adding a class alias for backwards compatibility with the previous class name.
44+
class_alias(GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedDeviceInfo::class, 'Google_Service_BeyondCorp_GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedDeviceInfo');
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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\BeyondCorp;
19+
20+
class GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedGroupInfo extends \Google\Model
21+
{
22+
/**
23+
* @var string
24+
*/
25+
public $outputType;
26+
27+
/**
28+
* @param string
29+
*/
30+
public function setOutputType($outputType)
31+
{
32+
$this->outputType = $outputType;
33+
}
34+
/**
35+
* @return string
36+
*/
37+
public function getOutputType()
38+
{
39+
return $this->outputType;
40+
}
41+
}
42+
43+
// Adding a class alias for backwards compatibility with the previous class name.
44+
class_alias(GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedGroupInfo::class, 'Google_Service_BeyondCorp_GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedGroupInfo');
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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\BeyondCorp;
19+
20+
class GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedUserInfo extends \Google\Model
21+
{
22+
/**
23+
* @var string
24+
*/
25+
public $outputType;
26+
27+
/**
28+
* @param string
29+
*/
30+
public function setOutputType($outputType)
31+
{
32+
$this->outputType = $outputType;
33+
}
34+
/**
35+
* @return string
36+
*/
37+
public function getOutputType()
38+
{
39+
return $this->outputType;
40+
}
41+
}
42+
43+
// Adding a class alias for backwards compatibility with the previous class name.
44+
class_alias(GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedUserInfo::class, 'Google_Service_BeyondCorp_GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedUserInfo');

0 commit comments

Comments
 (0)