-
Notifications
You must be signed in to change notification settings - Fork 317
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Regenerate datamigration client (#5945)
Generated in GitHub action: https://togithub.com/googleapis/googleapis/google-api-php-client-services/actions/workflows/codegen.yaml
- Loading branch information
1 parent
55de216
commit cb147e5
Showing
15 changed files
with
652 additions
and
3 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
61 changes: 61 additions & 0 deletions
61
src/DatabaseMigrationService/ListMigrationJobObjectsResponse.php
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,61 @@ | ||
<?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\DatabaseMigrationService; | ||
|
||
class ListMigrationJobObjectsResponse extends \Google\Collection | ||
{ | ||
protected $collection_key = 'migrationJobObjects'; | ||
protected $migrationJobObjectsType = MigrationJobObject::class; | ||
protected $migrationJobObjectsDataType = 'array'; | ||
/** | ||
* @var string | ||
*/ | ||
public $nextPageToken; | ||
|
||
/** | ||
* @param MigrationJobObject[] | ||
*/ | ||
public function setMigrationJobObjects($migrationJobObjects) | ||
{ | ||
$this->migrationJobObjects = $migrationJobObjects; | ||
} | ||
/** | ||
* @return MigrationJobObject[] | ||
*/ | ||
public function getMigrationJobObjects() | ||
{ | ||
return $this->migrationJobObjects; | ||
} | ||
/** | ||
* @param string | ||
*/ | ||
public function setNextPageToken($nextPageToken) | ||
{ | ||
$this->nextPageToken = $nextPageToken; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getNextPageToken() | ||
{ | ||
return $this->nextPageToken; | ||
} | ||
} | ||
|
||
// Adding a class alias for backwards compatibility with the previous class name. | ||
class_alias(ListMigrationJobObjectsResponse::class, 'Google_Service_DatabaseMigrationService_ListMigrationJobObjectsResponse'); |
42 changes: 42 additions & 0 deletions
42
src/DatabaseMigrationService/LookupMigrationJobObjectRequest.php
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\DatabaseMigrationService; | ||
|
||
class LookupMigrationJobObjectRequest extends \Google\Model | ||
{ | ||
protected $sourceObjectIdentifierType = SourceObjectIdentifier::class; | ||
protected $sourceObjectIdentifierDataType = ''; | ||
|
||
/** | ||
* @param SourceObjectIdentifier | ||
*/ | ||
public function setSourceObjectIdentifier(SourceObjectIdentifier $sourceObjectIdentifier) | ||
{ | ||
$this->sourceObjectIdentifier = $sourceObjectIdentifier; | ||
} | ||
/** | ||
* @return SourceObjectIdentifier | ||
*/ | ||
public function getSourceObjectIdentifier() | ||
{ | ||
return $this->sourceObjectIdentifier; | ||
} | ||
} | ||
|
||
// Adding a class alias for backwards compatibility with the previous class name. | ||
class_alias(LookupMigrationJobObjectRequest::class, 'Google_Service_DatabaseMigrationService_LookupMigrationJobObjectRequest'); |
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,148 @@ | ||
<?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\DatabaseMigrationService; | ||
|
||
class MigrationJobObject extends \Google\Model | ||
{ | ||
/** | ||
* @var string | ||
*/ | ||
public $createTime; | ||
protected $errorType = Status::class; | ||
protected $errorDataType = ''; | ||
/** | ||
* @var string | ||
*/ | ||
public $name; | ||
/** | ||
* @var string | ||
*/ | ||
public $phase; | ||
protected $sourceObjectType = SourceObjectIdentifier::class; | ||
protected $sourceObjectDataType = ''; | ||
/** | ||
* @var string | ||
*/ | ||
public $state; | ||
/** | ||
* @var string | ||
*/ | ||
public $updateTime; | ||
|
||
/** | ||
* @param string | ||
*/ | ||
public function setCreateTime($createTime) | ||
{ | ||
$this->createTime = $createTime; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getCreateTime() | ||
{ | ||
return $this->createTime; | ||
} | ||
/** | ||
* @param Status | ||
*/ | ||
public function setError(Status $error) | ||
{ | ||
$this->error = $error; | ||
} | ||
/** | ||
* @return Status | ||
*/ | ||
public function getError() | ||
{ | ||
return $this->error; | ||
} | ||
/** | ||
* @param string | ||
*/ | ||
public function setName($name) | ||
{ | ||
$this->name = $name; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getName() | ||
{ | ||
return $this->name; | ||
} | ||
/** | ||
* @param string | ||
*/ | ||
public function setPhase($phase) | ||
{ | ||
$this->phase = $phase; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getPhase() | ||
{ | ||
return $this->phase; | ||
} | ||
/** | ||
* @param SourceObjectIdentifier | ||
*/ | ||
public function setSourceObject(SourceObjectIdentifier $sourceObject) | ||
{ | ||
$this->sourceObject = $sourceObject; | ||
} | ||
/** | ||
* @return SourceObjectIdentifier | ||
*/ | ||
public function getSourceObject() | ||
{ | ||
return $this->sourceObject; | ||
} | ||
/** | ||
* @param string | ||
*/ | ||
public function setState($state) | ||
{ | ||
$this->state = $state; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getState() | ||
{ | ||
return $this->state; | ||
} | ||
/** | ||
* @param string | ||
*/ | ||
public function setUpdateTime($updateTime) | ||
{ | ||
$this->updateTime = $updateTime; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getUpdateTime() | ||
{ | ||
return $this->updateTime; | ||
} | ||
} | ||
|
||
// Adding a class alias for backwards compatibility with the previous class name. | ||
class_alias(MigrationJobObject::class, 'Google_Service_DatabaseMigrationService_MigrationJobObject'); |
Oops, something went wrong.