-
Notifications
You must be signed in to change notification settings - Fork 316
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Regenerate datafusion client (#5282)
Generated in GitHub action: https://github.com/googleapis/googleapis/google-api-php-client-services/actions/workflows/codegen.yaml
- Loading branch information
1 parent
dde286a
commit f90e9a0
Showing
7 changed files
with
238 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
<?php | ||
/* | ||
* Copyright 2014 Google Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
*/ | ||
|
||
namespace Google\Service\DataFusion; | ||
|
||
class MaintenancePolicy extends \Google\Model | ||
{ | ||
protected $maintenanceExclusionWindowType = TimeWindow::class; | ||
protected $maintenanceExclusionWindowDataType = ''; | ||
protected $maintenanceWindowType = MaintenanceWindow::class; | ||
protected $maintenanceWindowDataType = ''; | ||
|
||
/** | ||
* @param TimeWindow | ||
*/ | ||
public function setMaintenanceExclusionWindow(TimeWindow $maintenanceExclusionWindow) | ||
{ | ||
$this->maintenanceExclusionWindow = $maintenanceExclusionWindow; | ||
} | ||
/** | ||
* @return TimeWindow | ||
*/ | ||
public function getMaintenanceExclusionWindow() | ||
{ | ||
return $this->maintenanceExclusionWindow; | ||
} | ||
/** | ||
* @param MaintenanceWindow | ||
*/ | ||
public function setMaintenanceWindow(MaintenanceWindow $maintenanceWindow) | ||
{ | ||
$this->maintenanceWindow = $maintenanceWindow; | ||
} | ||
/** | ||
* @return MaintenanceWindow | ||
*/ | ||
public function getMaintenanceWindow() | ||
{ | ||
return $this->maintenanceWindow; | ||
} | ||
} | ||
|
||
// Adding a class alias for backwards compatibility with the previous class name. | ||
class_alias(MaintenancePolicy::class, 'Google_Service_DataFusion_MaintenancePolicy'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?php | ||
/* | ||
* Copyright 2014 Google Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
*/ | ||
|
||
namespace Google\Service\DataFusion; | ||
|
||
class MaintenanceWindow extends \Google\Model | ||
{ | ||
protected $recurringTimeWindowType = RecurringTimeWindow::class; | ||
protected $recurringTimeWindowDataType = ''; | ||
|
||
/** | ||
* @param RecurringTimeWindow | ||
*/ | ||
public function setRecurringTimeWindow(RecurringTimeWindow $recurringTimeWindow) | ||
{ | ||
$this->recurringTimeWindow = $recurringTimeWindow; | ||
} | ||
/** | ||
* @return RecurringTimeWindow | ||
*/ | ||
public function getRecurringTimeWindow() | ||
{ | ||
return $this->recurringTimeWindow; | ||
} | ||
} | ||
|
||
// Adding a class alias for backwards compatibility with the previous class name. | ||
class_alias(MaintenanceWindow::class, 'Google_Service_DataFusion_MaintenanceWindow'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<?php | ||
/* | ||
* Copyright 2014 Google Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
*/ | ||
|
||
namespace Google\Service\DataFusion; | ||
|
||
class RecurringTimeWindow extends \Google\Model | ||
{ | ||
/** | ||
* @var string | ||
*/ | ||
public $recurrence; | ||
protected $windowType = TimeWindow::class; | ||
protected $windowDataType = ''; | ||
|
||
/** | ||
* @param string | ||
*/ | ||
public function setRecurrence($recurrence) | ||
{ | ||
$this->recurrence = $recurrence; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getRecurrence() | ||
{ | ||
return $this->recurrence; | ||
} | ||
/** | ||
* @param TimeWindow | ||
*/ | ||
public function setWindow(TimeWindow $window) | ||
{ | ||
$this->window = $window; | ||
} | ||
/** | ||
* @return TimeWindow | ||
*/ | ||
public function getWindow() | ||
{ | ||
return $this->window; | ||
} | ||
} | ||
|
||
// Adding a class alias for backwards compatibility with the previous class name. | ||
class_alias(RecurringTimeWindow::class, 'Google_Service_DataFusion_RecurringTimeWindow'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<?php | ||
/* | ||
* Copyright 2014 Google Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
*/ | ||
|
||
namespace Google\Service\DataFusion; | ||
|
||
class TimeWindow extends \Google\Model | ||
{ | ||
/** | ||
* @var string | ||
*/ | ||
public $endTime; | ||
/** | ||
* @var string | ||
*/ | ||
public $startTime; | ||
|
||
/** | ||
* @param string | ||
*/ | ||
public function setEndTime($endTime) | ||
{ | ||
$this->endTime = $endTime; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getEndTime() | ||
{ | ||
return $this->endTime; | ||
} | ||
/** | ||
* @param string | ||
*/ | ||
public function setStartTime($startTime) | ||
{ | ||
$this->startTime = $startTime; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getStartTime() | ||
{ | ||
return $this->startTime; | ||
} | ||
} | ||
|
||
// Adding a class alias for backwards compatibility with the previous class name. | ||
class_alias(TimeWindow::class, 'Google_Service_DataFusion_TimeWindow'); |