Skip to content

Commit d8b7fd7

Browse files
1 parent ca78c89 commit d8b7fd7

3 files changed

Lines changed: 81 additions & 3 deletions

File tree

src/CCAIPlatform/ContactCenter.php

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ class ContactCenter extends \Google\Collection
4646
public $displayName;
4747
protected $earlyType = Early::class;
4848
protected $earlyDataType = '';
49+
protected $featureConfigType = FeatureConfig::class;
50+
protected $featureConfigDataType = '';
4951
protected $instanceConfigType = InstanceConfig::class;
5052
protected $instanceConfigDataType = '';
5153
/**
@@ -68,6 +70,10 @@ class ContactCenter extends \Google\Collection
6870
* @var string[]
6971
*/
7072
public $privateComponents;
73+
/**
74+
* @var string
75+
*/
76+
public $releaseVersion;
7177
protected $samlParamsType = SAMLParams::class;
7278
protected $samlParamsDataType = '';
7379
/**
@@ -197,6 +203,20 @@ public function getEarly()
197203
{
198204
return $this->early;
199205
}
206+
/**
207+
* @param FeatureConfig
208+
*/
209+
public function setFeatureConfig(FeatureConfig $featureConfig)
210+
{
211+
$this->featureConfig = $featureConfig;
212+
}
213+
/**
214+
* @return FeatureConfig
215+
*/
216+
public function getFeatureConfig()
217+
{
218+
return $this->featureConfig;
219+
}
200220
/**
201221
* @param InstanceConfig
202222
*/
@@ -295,6 +315,20 @@ public function getPrivateComponents()
295315
{
296316
return $this->privateComponents;
297317
}
318+
/**
319+
* @param string
320+
*/
321+
public function setReleaseVersion($releaseVersion)
322+
{
323+
$this->releaseVersion = $releaseVersion;
324+
}
325+
/**
326+
* @return string
327+
*/
328+
public function getReleaseVersion()
329+
{
330+
return $this->releaseVersion;
331+
}
298332
/**
299333
* @param SAMLParams
300334
*/

src/CCAIPlatform/FeatureConfig.php

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\CCAIPlatform;
19+
20+
class FeatureConfig extends \Google\Model
21+
{
22+
/**
23+
* @var bool
24+
*/
25+
public $agentDesktopEnabled;
26+
27+
/**
28+
* @param bool
29+
*/
30+
public function setAgentDesktopEnabled($agentDesktopEnabled)
31+
{
32+
$this->agentDesktopEnabled = $agentDesktopEnabled;
33+
}
34+
/**
35+
* @return bool
36+
*/
37+
public function getAgentDesktopEnabled()
38+
{
39+
return $this->agentDesktopEnabled;
40+
}
41+
}
42+
43+
// Adding a class alias for backwards compatibility with the previous class name.
44+
class_alias(FeatureConfig::class, 'Google_Service_CCAIPlatform_FeatureConfig');

src/CCAIPlatform/Resource/ProjectsLocations.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ public function get($name, $optParams = [])
5353
* applicable.
5454
* @param array $optParams Optional parameters.
5555
*
56-
* @opt_param string extraLocationTypes Optional. A list of extra location types
57-
* that should be used as conditions for controlling the visibility of the
58-
* locations.
56+
* @opt_param string extraLocationTypes Optional. Do not use this field. It is
57+
* unsupported and is ignored unless explicitly documented otherwise. This is
58+
* primarily for internal usage.
5959
* @opt_param string filter A filter to narrow down results to a preferred
6060
* subset. The filtering language accepts strings like `"displayName=tokyo"`,
6161
* and is documented in more detail in [AIP-160](https://google.aip.dev/160).

0 commit comments

Comments
 (0)