-
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 vmwareengine client (#3585)
Generated in GitHub action: https://github.com/googleapis/googleapis/google-api-php-client-services/actions/workflows/codegen.yaml
- Loading branch information
1 parent
abe7f66
commit 908a866
Showing
58 changed files
with
7,179 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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\VMwareEngine; | ||
|
||
class AuditConfig extends \Google\Collection | ||
{ | ||
protected $collection_key = 'auditLogConfigs'; | ||
protected $auditLogConfigsType = AuditLogConfig::class; | ||
protected $auditLogConfigsDataType = 'array'; | ||
/** | ||
* @var string | ||
*/ | ||
public $service; | ||
|
||
/** | ||
* @param AuditLogConfig[] | ||
*/ | ||
public function setAuditLogConfigs($auditLogConfigs) | ||
{ | ||
$this->auditLogConfigs = $auditLogConfigs; | ||
} | ||
/** | ||
* @return AuditLogConfig[] | ||
*/ | ||
public function getAuditLogConfigs() | ||
{ | ||
return $this->auditLogConfigs; | ||
} | ||
/** | ||
* @param string | ||
*/ | ||
public function setService($service) | ||
{ | ||
$this->service = $service; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getService() | ||
{ | ||
return $this->service; | ||
} | ||
} | ||
|
||
// Adding a class alias for backwards compatibility with the previous class name. | ||
class_alias(AuditConfig::class, 'Google_Service_VMwareEngine_AuditConfig'); |
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,63 @@ | ||
<?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\VMwareEngine; | ||
|
||
class AuditLogConfig extends \Google\Collection | ||
{ | ||
protected $collection_key = 'exemptedMembers'; | ||
/** | ||
* @var string[] | ||
*/ | ||
public $exemptedMembers; | ||
/** | ||
* @var string | ||
*/ | ||
public $logType; | ||
|
||
/** | ||
* @param string[] | ||
*/ | ||
public function setExemptedMembers($exemptedMembers) | ||
{ | ||
$this->exemptedMembers = $exemptedMembers; | ||
} | ||
/** | ||
* @return string[] | ||
*/ | ||
public function getExemptedMembers() | ||
{ | ||
return $this->exemptedMembers; | ||
} | ||
/** | ||
* @param string | ||
*/ | ||
public function setLogType($logType) | ||
{ | ||
$this->logType = $logType; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getLogType() | ||
{ | ||
return $this->logType; | ||
} | ||
} | ||
|
||
// Adding a class alias for backwards compatibility with the previous class name. | ||
class_alias(AuditLogConfig::class, 'Google_Service_VMwareEngine_AuditLogConfig'); |
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,79 @@ | ||
<?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\VMwareEngine; | ||
|
||
class Binding extends \Google\Collection | ||
{ | ||
protected $collection_key = 'members'; | ||
protected $conditionType = Expr::class; | ||
protected $conditionDataType = ''; | ||
/** | ||
* @var string[] | ||
*/ | ||
public $members; | ||
/** | ||
* @var string | ||
*/ | ||
public $role; | ||
|
||
/** | ||
* @param Expr | ||
*/ | ||
public function setCondition(Expr $condition) | ||
{ | ||
$this->condition = $condition; | ||
} | ||
/** | ||
* @return Expr | ||
*/ | ||
public function getCondition() | ||
{ | ||
return $this->condition; | ||
} | ||
/** | ||
* @param string[] | ||
*/ | ||
public function setMembers($members) | ||
{ | ||
$this->members = $members; | ||
} | ||
/** | ||
* @return string[] | ||
*/ | ||
public function getMembers() | ||
{ | ||
return $this->members; | ||
} | ||
/** | ||
* @param string | ||
*/ | ||
public function setRole($role) | ||
{ | ||
$this->role = $role; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getRole() | ||
{ | ||
return $this->role; | ||
} | ||
} | ||
|
||
// Adding a class alias for backwards compatibility with the previous class name. | ||
class_alias(Binding::class, 'Google_Service_VMwareEngine_Binding'); |
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,150 @@ | ||
<?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\VMwareEngine; | ||
|
||
class Cluster extends \Google\Model | ||
{ | ||
/** | ||
* @var string | ||
*/ | ||
public $createTime; | ||
/** | ||
* @var bool | ||
*/ | ||
public $management; | ||
/** | ||
* @var string | ||
*/ | ||
public $name; | ||
protected $nodeTypeConfigsType = NodeTypeConfig::class; | ||
protected $nodeTypeConfigsDataType = 'map'; | ||
/** | ||
* @var string | ||
*/ | ||
public $state; | ||
/** | ||
* @var string | ||
*/ | ||
public $uid; | ||
/** | ||
* @var string | ||
*/ | ||
public $updateTime; | ||
|
||
/** | ||
* @param string | ||
*/ | ||
public function setCreateTime($createTime) | ||
{ | ||
$this->createTime = $createTime; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getCreateTime() | ||
{ | ||
return $this->createTime; | ||
} | ||
/** | ||
* @param bool | ||
*/ | ||
public function setManagement($management) | ||
{ | ||
$this->management = $management; | ||
} | ||
/** | ||
* @return bool | ||
*/ | ||
public function getManagement() | ||
{ | ||
return $this->management; | ||
} | ||
/** | ||
* @param string | ||
*/ | ||
public function setName($name) | ||
{ | ||
$this->name = $name; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getName() | ||
{ | ||
return $this->name; | ||
} | ||
/** | ||
* @param NodeTypeConfig[] | ||
*/ | ||
public function setNodeTypeConfigs($nodeTypeConfigs) | ||
{ | ||
$this->nodeTypeConfigs = $nodeTypeConfigs; | ||
} | ||
/** | ||
* @return NodeTypeConfig[] | ||
*/ | ||
public function getNodeTypeConfigs() | ||
{ | ||
return $this->nodeTypeConfigs; | ||
} | ||
/** | ||
* @param string | ||
*/ | ||
public function setState($state) | ||
{ | ||
$this->state = $state; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getState() | ||
{ | ||
return $this->state; | ||
} | ||
/** | ||
* @param string | ||
*/ | ||
public function setUid($uid) | ||
{ | ||
$this->uid = $uid; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getUid() | ||
{ | ||
return $this->uid; | ||
} | ||
/** | ||
* @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(Cluster::class, 'Google_Service_VMwareEngine_Cluster'); |
Oops, something went wrong.