Skip to content

Commit 4fdd518

Browse files
1 parent 99182f0 commit 4fdd518

13 files changed

Lines changed: 639 additions & 0 deletions

src/DiscoveryEngine/GoogleCloudDiscoveryengineV1DataStore.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ class GoogleCloudDiscoveryengineV1DataStore extends \Google\Collection
4444
public $displayName;
4545
protected $documentProcessingConfigType = GoogleCloudDiscoveryengineV1DocumentProcessingConfig::class;
4646
protected $documentProcessingConfigDataType = '';
47+
protected $healthcareFhirConfigType = GoogleCloudDiscoveryengineV1HealthcareFhirConfig::class;
48+
protected $healthcareFhirConfigDataType = '';
4749
/**
4850
* @var string
4951
*/
@@ -183,6 +185,20 @@ public function getDocumentProcessingConfig()
183185
{
184186
return $this->documentProcessingConfig;
185187
}
188+
/**
189+
* @param GoogleCloudDiscoveryengineV1HealthcareFhirConfig
190+
*/
191+
public function setHealthcareFhirConfig(GoogleCloudDiscoveryengineV1HealthcareFhirConfig $healthcareFhirConfig)
192+
{
193+
$this->healthcareFhirConfig = $healthcareFhirConfig;
194+
}
195+
/**
196+
* @return GoogleCloudDiscoveryengineV1HealthcareFhirConfig
197+
*/
198+
public function getHealthcareFhirConfig()
199+
{
200+
return $this->healthcareFhirConfig;
201+
}
186202
/**
187203
* @param string
188204
*/
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
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\DiscoveryEngine;
19+
20+
class GoogleCloudDiscoveryengineV1HealthcareFhirConfig extends \Google\Model
21+
{
22+
/**
23+
* @var bool
24+
*/
25+
public $enableConfigurableSchema;
26+
/**
27+
* @var bool
28+
*/
29+
public $enableStaticIndexingForBatchIngestion;
30+
31+
/**
32+
* @param bool
33+
*/
34+
public function setEnableConfigurableSchema($enableConfigurableSchema)
35+
{
36+
$this->enableConfigurableSchema = $enableConfigurableSchema;
37+
}
38+
/**
39+
* @return bool
40+
*/
41+
public function getEnableConfigurableSchema()
42+
{
43+
return $this->enableConfigurableSchema;
44+
}
45+
/**
46+
* @param bool
47+
*/
48+
public function setEnableStaticIndexingForBatchIngestion($enableStaticIndexingForBatchIngestion)
49+
{
50+
$this->enableStaticIndexingForBatchIngestion = $enableStaticIndexingForBatchIngestion;
51+
}
52+
/**
53+
* @return bool
54+
*/
55+
public function getEnableStaticIndexingForBatchIngestion()
56+
{
57+
return $this->enableStaticIndexingForBatchIngestion;
58+
}
59+
}
60+
61+
// Adding a class alias for backwards compatibility with the previous class name.
62+
class_alias(GoogleCloudDiscoveryengineV1HealthcareFhirConfig::class, 'Google_Service_DiscoveryEngine_GoogleCloudDiscoveryengineV1HealthcareFhirConfig');
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
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\DiscoveryEngine;
19+
20+
class GoogleCloudDiscoveryengineV1IdentityMappingEntryOperationMetadata extends \Google\Model
21+
{
22+
/**
23+
* @var string
24+
*/
25+
public $failureCount;
26+
/**
27+
* @var string
28+
*/
29+
public $successCount;
30+
/**
31+
* @var string
32+
*/
33+
public $totalCount;
34+
35+
/**
36+
* @param string
37+
*/
38+
public function setFailureCount($failureCount)
39+
{
40+
$this->failureCount = $failureCount;
41+
}
42+
/**
43+
* @return string
44+
*/
45+
public function getFailureCount()
46+
{
47+
return $this->failureCount;
48+
}
49+
/**
50+
* @param string
51+
*/
52+
public function setSuccessCount($successCount)
53+
{
54+
$this->successCount = $successCount;
55+
}
56+
/**
57+
* @return string
58+
*/
59+
public function getSuccessCount()
60+
{
61+
return $this->successCount;
62+
}
63+
/**
64+
* @param string
65+
*/
66+
public function setTotalCount($totalCount)
67+
{
68+
$this->totalCount = $totalCount;
69+
}
70+
/**
71+
* @return string
72+
*/
73+
public function getTotalCount()
74+
{
75+
return $this->totalCount;
76+
}
77+
}
78+
79+
// Adding a class alias for backwards compatibility with the previous class name.
80+
class_alias(GoogleCloudDiscoveryengineV1IdentityMappingEntryOperationMetadata::class, 'Google_Service_DiscoveryEngine_GoogleCloudDiscoveryengineV1IdentityMappingEntryOperationMetadata');
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\DiscoveryEngine;
19+
20+
class GoogleCloudDiscoveryengineV1ImportIdentityMappingsResponse extends \Google\Collection
21+
{
22+
protected $collection_key = 'errorSamples';
23+
protected $errorSamplesType = GoogleRpcStatus::class;
24+
protected $errorSamplesDataType = 'array';
25+
26+
/**
27+
* @param GoogleRpcStatus[]
28+
*/
29+
public function setErrorSamples($errorSamples)
30+
{
31+
$this->errorSamples = $errorSamples;
32+
}
33+
/**
34+
* @return GoogleRpcStatus[]
35+
*/
36+
public function getErrorSamples()
37+
{
38+
return $this->errorSamples;
39+
}
40+
}
41+
42+
// Adding a class alias for backwards compatibility with the previous class name.
43+
class_alias(GoogleCloudDiscoveryengineV1ImportIdentityMappingsResponse::class, 'Google_Service_DiscoveryEngine_GoogleCloudDiscoveryengineV1ImportIdentityMappingsResponse');

src/DiscoveryEngine/GoogleCloudDiscoveryengineV1alphaDataStore.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ class GoogleCloudDiscoveryengineV1alphaDataStore extends \Google\Collection
4848
public $displayName;
4949
protected $documentProcessingConfigType = GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfig::class;
5050
protected $documentProcessingConfigDataType = '';
51+
protected $healthcareFhirConfigType = GoogleCloudDiscoveryengineV1alphaHealthcareFhirConfig::class;
52+
protected $healthcareFhirConfigDataType = '';
5153
protected $idpConfigType = GoogleCloudDiscoveryengineV1alphaIdpConfig::class;
5254
protected $idpConfigDataType = '';
5355
/**
@@ -207,6 +209,20 @@ public function getDocumentProcessingConfig()
207209
{
208210
return $this->documentProcessingConfig;
209211
}
212+
/**
213+
* @param GoogleCloudDiscoveryengineV1alphaHealthcareFhirConfig
214+
*/
215+
public function setHealthcareFhirConfig(GoogleCloudDiscoveryengineV1alphaHealthcareFhirConfig $healthcareFhirConfig)
216+
{
217+
$this->healthcareFhirConfig = $healthcareFhirConfig;
218+
}
219+
/**
220+
* @return GoogleCloudDiscoveryengineV1alphaHealthcareFhirConfig
221+
*/
222+
public function getHealthcareFhirConfig()
223+
{
224+
return $this->healthcareFhirConfig;
225+
}
210226
/**
211227
* @param GoogleCloudDiscoveryengineV1alphaIdpConfig
212228
*/
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
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\DiscoveryEngine;
19+
20+
class GoogleCloudDiscoveryengineV1alphaHealthcareFhirConfig extends \Google\Model
21+
{
22+
/**
23+
* @var bool
24+
*/
25+
public $enableConfigurableSchema;
26+
/**
27+
* @var bool
28+
*/
29+
public $enableStaticIndexingForBatchIngestion;
30+
31+
/**
32+
* @param bool
33+
*/
34+
public function setEnableConfigurableSchema($enableConfigurableSchema)
35+
{
36+
$this->enableConfigurableSchema = $enableConfigurableSchema;
37+
}
38+
/**
39+
* @return bool
40+
*/
41+
public function getEnableConfigurableSchema()
42+
{
43+
return $this->enableConfigurableSchema;
44+
}
45+
/**
46+
* @param bool
47+
*/
48+
public function setEnableStaticIndexingForBatchIngestion($enableStaticIndexingForBatchIngestion)
49+
{
50+
$this->enableStaticIndexingForBatchIngestion = $enableStaticIndexingForBatchIngestion;
51+
}
52+
/**
53+
* @return bool
54+
*/
55+
public function getEnableStaticIndexingForBatchIngestion()
56+
{
57+
return $this->enableStaticIndexingForBatchIngestion;
58+
}
59+
}
60+
61+
// Adding a class alias for backwards compatibility with the previous class name.
62+
class_alias(GoogleCloudDiscoveryengineV1alphaHealthcareFhirConfig::class, 'Google_Service_DiscoveryEngine_GoogleCloudDiscoveryengineV1alphaHealthcareFhirConfig');
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
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\DiscoveryEngine;
19+
20+
class GoogleCloudDiscoveryengineV1alphaIdentityMappingEntryOperationMetadata extends \Google\Model
21+
{
22+
/**
23+
* @var string
24+
*/
25+
public $failureCount;
26+
/**
27+
* @var string
28+
*/
29+
public $successCount;
30+
/**
31+
* @var string
32+
*/
33+
public $totalCount;
34+
35+
/**
36+
* @param string
37+
*/
38+
public function setFailureCount($failureCount)
39+
{
40+
$this->failureCount = $failureCount;
41+
}
42+
/**
43+
* @return string
44+
*/
45+
public function getFailureCount()
46+
{
47+
return $this->failureCount;
48+
}
49+
/**
50+
* @param string
51+
*/
52+
public function setSuccessCount($successCount)
53+
{
54+
$this->successCount = $successCount;
55+
}
56+
/**
57+
* @return string
58+
*/
59+
public function getSuccessCount()
60+
{
61+
return $this->successCount;
62+
}
63+
/**
64+
* @param string
65+
*/
66+
public function setTotalCount($totalCount)
67+
{
68+
$this->totalCount = $totalCount;
69+
}
70+
/**
71+
* @return string
72+
*/
73+
public function getTotalCount()
74+
{
75+
return $this->totalCount;
76+
}
77+
}
78+
79+
// Adding a class alias for backwards compatibility with the previous class name.
80+
class_alias(GoogleCloudDiscoveryengineV1alphaIdentityMappingEntryOperationMetadata::class, 'Google_Service_DiscoveryEngine_GoogleCloudDiscoveryengineV1alphaIdentityMappingEntryOperationMetadata');

0 commit comments

Comments
 (0)