Viewing file: GoogleCloudApigeeV1Organization.php (5.35 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_Apigee_GoogleCloudApigeeV1Organization extends Google_Collection { protected $collection_key = 'environments'; protected $addonsConfigType = 'Google_Service_Apigee_GoogleCloudApigeeV1AddonsConfig'; protected $addonsConfigDataType = ''; public $analyticsRegion; public $attributes; public $authorizedNetwork; public $billingType; public $caCertificate; public $createdAt; public $customerName; public $description; public $displayName; public $environments; public $expiresAt; public $lastModifiedAt; public $name; public $projectId; protected $propertiesType = 'Google_Service_Apigee_GoogleCloudApigeeV1Properties'; protected $propertiesDataType = ''; public $runtimeDatabaseEncryptionKeyName; public $runtimeType; public $state; public $subscriptionType; public $type;
/** * @param Google_Service_Apigee_GoogleCloudApigeeV1AddonsConfig */ public function setAddonsConfig(Google_Service_Apigee_GoogleCloudApigeeV1AddonsConfig $addonsConfig) { $this->addonsConfig = $addonsConfig; } /** * @return Google_Service_Apigee_GoogleCloudApigeeV1AddonsConfig */ public function getAddonsConfig() { return $this->addonsConfig; } public function setAnalyticsRegion($analyticsRegion) { $this->analyticsRegion = $analyticsRegion; } public function getAnalyticsRegion() { return $this->analyticsRegion; } public function setAttributes($attributes) { $this->attributes = $attributes; } public function getAttributes() { return $this->attributes; } public function setAuthorizedNetwork($authorizedNetwork) { $this->authorizedNetwork = $authorizedNetwork; } public function getAuthorizedNetwork() { return $this->authorizedNetwork; } public function setBillingType($billingType) { $this->billingType = $billingType; } public function getBillingType() { return $this->billingType; } public function setCaCertificate($caCertificate) { $this->caCertificate = $caCertificate; } public function getCaCertificate() { return $this->caCertificate; } public function setCreatedAt($createdAt) { $this->createdAt = $createdAt; } public function getCreatedAt() { return $this->createdAt; } public function setCustomerName($customerName) { $this->customerName = $customerName; } public function getCustomerName() { return $this->customerName; } public function setDescription($description) { $this->description = $description; } public function getDescription() { return $this->description; } public function setDisplayName($displayName) { $this->displayName = $displayName; } public function getDisplayName() { return $this->displayName; } public function setEnvironments($environments) { $this->environments = $environments; } public function getEnvironments() { return $this->environments; } public function setExpiresAt($expiresAt) { $this->expiresAt = $expiresAt; } public function getExpiresAt() { return $this->expiresAt; } public function setLastModifiedAt($lastModifiedAt) { $this->lastModifiedAt = $lastModifiedAt; } public function getLastModifiedAt() { return $this->lastModifiedAt; } public function setName($name) { $this->name = $name; } public function getName() { return $this->name; } public function setProjectId($projectId) { $this->projectId = $projectId; } public function getProjectId() { return $this->projectId; } /** * @param Google_Service_Apigee_GoogleCloudApigeeV1Properties */ public function setProperties(Google_Service_Apigee_GoogleCloudApigeeV1Properties $properties) { $this->properties = $properties; } /** * @return Google_Service_Apigee_GoogleCloudApigeeV1Properties */ public function getProperties() { return $this->properties; } public function setRuntimeDatabaseEncryptionKeyName($runtimeDatabaseEncryptionKeyName) { $this->runtimeDatabaseEncryptionKeyName = $runtimeDatabaseEncryptionKeyName; } public function getRuntimeDatabaseEncryptionKeyName() { return $this->runtimeDatabaseEncryptionKeyName; } public function setRuntimeType($runtimeType) { $this->runtimeType = $runtimeType; } public function getRuntimeType() { return $this->runtimeType; } public function setState($state) { $this->state = $state; } public function getState() { return $this->state; } public function setSubscriptionType($subscriptionType) { $this->subscriptionType = $subscriptionType; } public function getSubscriptionType() { return $this->subscriptionType; } public function setType($type) { $this->type = $type; } public function getType() { return $this->type; } }
|