Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
98 changes: 98 additions & 0 deletions src/VMwareEngine/EncryptionConfig.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
<?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 EncryptionConfig extends \Google\Model
{
/**
* The default value. This value should never be used.
*/
public const TYPE_TYPE_UNSPECIFIED = 'TYPE_UNSPECIFIED';
/**
* Customer-managed encryption keys (CMEK).
*/
public const TYPE_CMEK = 'CMEK';
/**
* Legacy customer-managed encryption keys (CMEK).
*/
public const TYPE_LEGACY_CMEK = 'LEGACY_CMEK';
/**
* Other encryption types, such as self-managed external KMS.
*/
public const TYPE_OTHER = 'OTHER';
/**
* Optional. The resource name of the Cloud KMS key to be used for CMEK
* encryption. The format of this field is `projects/{project}/locations/{loca
* tion}/keyRings/{key_ring}/cryptoKeys/{crypto_key}`. The key must be in the
* same region as the private cloud. This key is used for wrapping the key-
* encrypting key of vSAN clusters. This field must be provided when `type` is
* `CMEK` or `LEGACY_CMEK`, and must not be set when `type` is `OTHER`.
*
* @var string
*/
public $cryptoKeyName;
/**
* Required. The encryption type of the private cloud.
*
* @var string
*/
public $type;

/**
* Optional. The resource name of the Cloud KMS key to be used for CMEK
* encryption. The format of this field is `projects/{project}/locations/{loca
* tion}/keyRings/{key_ring}/cryptoKeys/{crypto_key}`. The key must be in the
* same region as the private cloud. This key is used for wrapping the key-
* encrypting key of vSAN clusters. This field must be provided when `type` is
* `CMEK` or `LEGACY_CMEK`, and must not be set when `type` is `OTHER`.
*
* @param string $cryptoKeyName
*/
public function setCryptoKeyName($cryptoKeyName)
{
$this->cryptoKeyName = $cryptoKeyName;
}
/**
* @return string
*/
public function getCryptoKeyName()
{
return $this->cryptoKeyName;
}
/**
* Required. The encryption type of the private cloud.
*
* Accepted values: TYPE_UNSPECIFIED, CMEK, LEGACY_CMEK, OTHER
*
* @param self::TYPE_* $type
*/
public function setType($type)
{
$this->type = $type;
}
/**
* @return self::TYPE_*
*/
public function getType()
{
return $this->type;
}
}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(EncryptionConfig::class, 'Google_Service_VMwareEngine_EncryptionConfig');
19 changes: 19 additions & 0 deletions src/VMwareEngine/PrivateCloud.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ class PrivateCloud extends \Google\Model
* @var string
*/
public $description;
protected $encryptionConfigType = EncryptionConfig::class;
protected $encryptionConfigDataType = '';
/**
* Output only. Time when the resource will be irreversibly deleted.
*
Expand Down Expand Up @@ -182,6 +184,23 @@ public function getDescription()
{
return $this->description;
}
/**
* Optional. Encryption configuration for the private cloud. If this field is
* left unspecified, Google default encryption is used.
*
* @param EncryptionConfig $encryptionConfig
*/
public function setEncryptionConfig(EncryptionConfig $encryptionConfig)
{
$this->encryptionConfig = $encryptionConfig;
}
/**
* @return EncryptionConfig
*/
public function getEncryptionConfig()
{
return $this->encryptionConfig;
}
/**
* Output only. Time when the resource will be irreversibly deleted.
*
Expand Down
Loading