Skip to content

Commit 47b7e1a

Browse files
1 parent 53c03c7 commit 47b7e1a

18 files changed

+900
-2
lines changed

src/Dialogflow.php

+5
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,11 @@ public function __construct($clientOrConfig = [], $rootUrl = null)
111111
'type' => 'string',
112112
'required' => true,
113113
],
114+
'extraLocationTypes' => [
115+
'location' => 'query',
116+
'type' => 'string',
117+
'repeated' => true,
118+
],
114119
'filter' => [
115120
'location' => 'query',
116121
'type' => 'string',

src/Dialogflow/GoogleCloudDialogflowCxV3WebhookGenericWebService.php

+34
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,12 @@ class GoogleCloudDialogflowCxV3WebhookGenericWebService extends \Google\Collecti
4646
* @var string[]
4747
*/
4848
public $requestHeaders;
49+
/**
50+
* @var string
51+
*/
52+
public $secretVersionForUsernamePassword;
53+
protected $secretVersionsForRequestHeadersType = GoogleCloudDialogflowCxV3WebhookGenericWebServiceSecretVersionHeaderValue::class;
54+
protected $secretVersionsForRequestHeadersDataType = 'map';
4955
/**
5056
* @var string
5157
*/
@@ -161,6 +167,34 @@ public function getRequestHeaders()
161167
{
162168
return $this->requestHeaders;
163169
}
170+
/**
171+
* @param string
172+
*/
173+
public function setSecretVersionForUsernamePassword($secretVersionForUsernamePassword)
174+
{
175+
$this->secretVersionForUsernamePassword = $secretVersionForUsernamePassword;
176+
}
177+
/**
178+
* @return string
179+
*/
180+
public function getSecretVersionForUsernamePassword()
181+
{
182+
return $this->secretVersionForUsernamePassword;
183+
}
184+
/**
185+
* @param GoogleCloudDialogflowCxV3WebhookGenericWebServiceSecretVersionHeaderValue[]
186+
*/
187+
public function setSecretVersionsForRequestHeaders($secretVersionsForRequestHeaders)
188+
{
189+
$this->secretVersionsForRequestHeaders = $secretVersionsForRequestHeaders;
190+
}
191+
/**
192+
* @return GoogleCloudDialogflowCxV3WebhookGenericWebServiceSecretVersionHeaderValue[]
193+
*/
194+
public function getSecretVersionsForRequestHeaders()
195+
{
196+
return $this->secretVersionsForRequestHeaders;
197+
}
164198
/**
165199
* @param string
166200
*/

src/Dialogflow/GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig.php

+18
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ class GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig extends \Goog
3232
* @var string[]
3333
*/
3434
public $scopes;
35+
/**
36+
* @var string
37+
*/
38+
public $secretVersionForClientSecret;
3539
/**
3640
* @var string
3741
*/
@@ -79,6 +83,20 @@ public function getScopes()
7983
{
8084
return $this->scopes;
8185
}
86+
/**
87+
* @param string
88+
*/
89+
public function setSecretVersionForClientSecret($secretVersionForClientSecret)
90+
{
91+
$this->secretVersionForClientSecret = $secretVersionForClientSecret;
92+
}
93+
/**
94+
* @return string
95+
*/
96+
public function getSecretVersionForClientSecret()
97+
{
98+
return $this->secretVersionForClientSecret;
99+
}
82100
/**
83101
* @param string
84102
*/
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\Dialogflow;
19+
20+
class GoogleCloudDialogflowCxV3WebhookGenericWebServiceSecretVersionHeaderValue extends \Google\Model
21+
{
22+
/**
23+
* @var string
24+
*/
25+
public $secretVersion;
26+
27+
/**
28+
* @param string
29+
*/
30+
public function setSecretVersion($secretVersion)
31+
{
32+
$this->secretVersion = $secretVersion;
33+
}
34+
/**
35+
* @return string
36+
*/
37+
public function getSecretVersion()
38+
{
39+
return $this->secretVersion;
40+
}
41+
}
42+
43+
// Adding a class alias for backwards compatibility with the previous class name.
44+
class_alias(GoogleCloudDialogflowCxV3WebhookGenericWebServiceSecretVersionHeaderValue::class, 'Google_Service_Dialogflow_GoogleCloudDialogflowCxV3WebhookGenericWebServiceSecretVersionHeaderValue');

src/Dialogflow/GoogleCloudDialogflowCxV3beta1WebhookGenericWebService.php

+34
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,12 @@ class GoogleCloudDialogflowCxV3beta1WebhookGenericWebService extends \Google\Col
4646
* @var string[]
4747
*/
4848
public $requestHeaders;
49+
/**
50+
* @var string
51+
*/
52+
public $secretVersionForUsernamePassword;
53+
protected $secretVersionsForRequestHeadersType = GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceSecretVersionHeaderValue::class;
54+
protected $secretVersionsForRequestHeadersDataType = 'map';
4955
/**
5056
* @var string
5157
*/
@@ -161,6 +167,34 @@ public function getRequestHeaders()
161167
{
162168
return $this->requestHeaders;
163169
}
170+
/**
171+
* @param string
172+
*/
173+
public function setSecretVersionForUsernamePassword($secretVersionForUsernamePassword)
174+
{
175+
$this->secretVersionForUsernamePassword = $secretVersionForUsernamePassword;
176+
}
177+
/**
178+
* @return string
179+
*/
180+
public function getSecretVersionForUsernamePassword()
181+
{
182+
return $this->secretVersionForUsernamePassword;
183+
}
184+
/**
185+
* @param GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceSecretVersionHeaderValue[]
186+
*/
187+
public function setSecretVersionsForRequestHeaders($secretVersionsForRequestHeaders)
188+
{
189+
$this->secretVersionsForRequestHeaders = $secretVersionsForRequestHeaders;
190+
}
191+
/**
192+
* @return GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceSecretVersionHeaderValue[]
193+
*/
194+
public function getSecretVersionsForRequestHeaders()
195+
{
196+
return $this->secretVersionsForRequestHeaders;
197+
}
164198
/**
165199
* @param string
166200
*/

src/Dialogflow/GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig.php

+18
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ class GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig extends
3232
* @var string[]
3333
*/
3434
public $scopes;
35+
/**
36+
* @var string
37+
*/
38+
public $secretVersionForClientSecret;
3539
/**
3640
* @var string
3741
*/
@@ -79,6 +83,20 @@ public function getScopes()
7983
{
8084
return $this->scopes;
8185
}
86+
/**
87+
* @param string
88+
*/
89+
public function setSecretVersionForClientSecret($secretVersionForClientSecret)
90+
{
91+
$this->secretVersionForClientSecret = $secretVersionForClientSecret;
92+
}
93+
/**
94+
* @return string
95+
*/
96+
public function getSecretVersionForClientSecret()
97+
{
98+
return $this->secretVersionForClientSecret;
99+
}
82100
/**
83101
* @param string
84102
*/
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\Dialogflow;
19+
20+
class GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceSecretVersionHeaderValue extends \Google\Model
21+
{
22+
/**
23+
* @var string
24+
*/
25+
public $secretVersion;
26+
27+
/**
28+
* @param string
29+
*/
30+
public function setSecretVersion($secretVersion)
31+
{
32+
$this->secretVersion = $secretVersion;
33+
}
34+
/**
35+
* @return string
36+
*/
37+
public function getSecretVersion()
38+
{
39+
return $this->secretVersion;
40+
}
41+
}
42+
43+
// Adding a class alias for backwards compatibility with the previous class name.
44+
class_alias(GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceSecretVersionHeaderValue::class, 'Google_Service_Dialogflow_GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceSecretVersionHeaderValue');

src/Dialogflow/GoogleCloudDialogflowV2GeneratorSuggestion.php

+18-1
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@
1717

1818
namespace Google\Service\Dialogflow;
1919

20-
class GoogleCloudDialogflowV2GeneratorSuggestion extends \Google\Model
20+
class GoogleCloudDialogflowV2GeneratorSuggestion extends \Google\Collection
2121
{
22+
protected $collection_key = 'toolCallInfo';
2223
protected $freeFormSuggestionType = GoogleCloudDialogflowV2FreeFormSuggestion::class;
2324
protected $freeFormSuggestionDataType = '';
2425
protected $summarySuggestionType = GoogleCloudDialogflowV2SummarySuggestion::class;
2526
protected $summarySuggestionDataType = '';
27+
protected $toolCallInfoType = GoogleCloudDialogflowV2GeneratorSuggestionToolCallInfo::class;
28+
protected $toolCallInfoDataType = 'array';
2629

2730
/**
2831
* @param GoogleCloudDialogflowV2FreeFormSuggestion
@@ -52,6 +55,20 @@ public function getSummarySuggestion()
5255
{
5356
return $this->summarySuggestion;
5457
}
58+
/**
59+
* @param GoogleCloudDialogflowV2GeneratorSuggestionToolCallInfo[]
60+
*/
61+
public function setToolCallInfo($toolCallInfo)
62+
{
63+
$this->toolCallInfo = $toolCallInfo;
64+
}
65+
/**
66+
* @return GoogleCloudDialogflowV2GeneratorSuggestionToolCallInfo[]
67+
*/
68+
public function getToolCallInfo()
69+
{
70+
return $this->toolCallInfo;
71+
}
5572
}
5673

5774
// Adding a class alias for backwards compatibility with the previous class name.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
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\Dialogflow;
19+
20+
class GoogleCloudDialogflowV2GeneratorSuggestionToolCallInfo extends \Google\Model
21+
{
22+
protected $toolCallType = GoogleCloudDialogflowV2ToolCall::class;
23+
protected $toolCallDataType = '';
24+
protected $toolCallResultType = GoogleCloudDialogflowV2ToolCallResult::class;
25+
protected $toolCallResultDataType = '';
26+
27+
/**
28+
* @param GoogleCloudDialogflowV2ToolCall
29+
*/
30+
public function setToolCall(GoogleCloudDialogflowV2ToolCall $toolCall)
31+
{
32+
$this->toolCall = $toolCall;
33+
}
34+
/**
35+
* @return GoogleCloudDialogflowV2ToolCall
36+
*/
37+
public function getToolCall()
38+
{
39+
return $this->toolCall;
40+
}
41+
/**
42+
* @param GoogleCloudDialogflowV2ToolCallResult
43+
*/
44+
public function setToolCallResult(GoogleCloudDialogflowV2ToolCallResult $toolCallResult)
45+
{
46+
$this->toolCallResult = $toolCallResult;
47+
}
48+
/**
49+
* @return GoogleCloudDialogflowV2ToolCallResult
50+
*/
51+
public function getToolCallResult()
52+
{
53+
return $this->toolCallResult;
54+
}
55+
}
56+
57+
// Adding a class alias for backwards compatibility with the previous class name.
58+
class_alias(GoogleCloudDialogflowV2GeneratorSuggestionToolCallInfo::class, 'Google_Service_Dialogflow_GoogleCloudDialogflowV2GeneratorSuggestionToolCallInfo');

0 commit comments

Comments
 (0)