Viewing file: GoogleCloudAssuredworkloadsV1Workload.php (3.94 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?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. */
class Google_Service_Assuredworkloads_GoogleCloudAssuredworkloadsV1Workload extends Google_Collection { protected $collection_key = 'resources'; public $billingAccount; public $complianceRegime; public $createTime; public $displayName; public $etag; protected $kmsSettingsType = 'Google_Service_Assuredworkloads_GoogleCloudAssuredworkloadsV1WorkloadKMSSettings'; protected $kmsSettingsDataType = ''; public $labels; public $name; public $provisionedResourcesParent; protected $resourceSettingsType = 'Google_Service_Assuredworkloads_GoogleCloudAssuredworkloadsV1WorkloadResourceSettings'; protected $resourceSettingsDataType = 'array'; protected $resourcesType = 'Google_Service_Assuredworkloads_GoogleCloudAssuredworkloadsV1WorkloadResourceInfo'; protected $resourcesDataType = 'array';
public function setBillingAccount($billingAccount) { $this->billingAccount = $billingAccount; } public function getBillingAccount() { return $this->billingAccount; } public function setComplianceRegime($complianceRegime) { $this->complianceRegime = $complianceRegime; } public function getComplianceRegime() { return $this->complianceRegime; } public function setCreateTime($createTime) { $this->createTime = $createTime; } public function getCreateTime() { return $this->createTime; } public function setDisplayName($displayName) { $this->displayName = $displayName; } public function getDisplayName() { return $this->displayName; } public function setEtag($etag) { $this->etag = $etag; } public function getEtag() { return $this->etag; } /** * @param Google_Service_Assuredworkloads_GoogleCloudAssuredworkloadsV1WorkloadKMSSettings */ public function setKmsSettings(Google_Service_Assuredworkloads_GoogleCloudAssuredworkloadsV1WorkloadKMSSettings $kmsSettings) { $this->kmsSettings = $kmsSettings; } /** * @return Google_Service_Assuredworkloads_GoogleCloudAssuredworkloadsV1WorkloadKMSSettings */ public function getKmsSettings() { return $this->kmsSettings; } public function setLabels($labels) { $this->labels = $labels; } public function getLabels() { return $this->labels; } public function setName($name) { $this->name = $name; } public function getName() { return $this->name; } public function setProvisionedResourcesParent($provisionedResourcesParent) { $this->provisionedResourcesParent = $provisionedResourcesParent; } public function getProvisionedResourcesParent() { return $this->provisionedResourcesParent; } /** * @param Google_Service_Assuredworkloads_GoogleCloudAssuredworkloadsV1WorkloadResourceSettings[] */ public function setResourceSettings($resourceSettings) { $this->resourceSettings = $resourceSettings; } /** * @return Google_Service_Assuredworkloads_GoogleCloudAssuredworkloadsV1WorkloadResourceSettings[] */ public function getResourceSettings() { return $this->resourceSettings; } /** * @param Google_Service_Assuredworkloads_GoogleCloudAssuredworkloadsV1WorkloadResourceInfo[] */ public function setResources($resources) { $this->resources = $resources; } /** * @return Google_Service_Assuredworkloads_GoogleCloudAssuredworkloadsV1WorkloadResourceInfo[] */ public function getResources() { return $this->resources; } }
|