All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.huawei.openstack4j.openstack.evs.v2.domain.Metadata Maven / Gradle / Ivy

 /*******************************************************************************
 * 	Copyright 2018 Huawei Technologies Co.,Ltd.                                         
 * 	                                                                                 
 * 	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.                                                                     
 *******************************************************************************/
package com.huawei.openstack4j.openstack.evs.v2.domain;


import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.ToString;

import com.fasterxml.jackson.annotation.JsonProperty;

@Getter
@ToString
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class Metadata{
	
	/**
	 * metadata中的表示加密功能的字段,0代表不加密,1代表加密。
		该字段不存在时,云硬盘默认为不加密。
	 */
	@JsonProperty("__system__encrypted")
	private String systemEncrypted;
	
	/**
	 * 	metadata中的加密cmkid字段,与__system__encrypted配合表示需要加密,cmkid长度固定为36个字节。
	 */
	@JsonProperty("__system__cmkid")
	private String systemCmkid;
	
	/**
	 * true表示云硬盘的设备类型为SCSI类型,即允许ECS操作系统直接访问底层存储介质。支持SCSI锁命令。
		false表示云硬盘的设备类型为VBD (虚拟块存储设备 , Virtual Block Device)类型,即为默认类型,VBD只能支持简单的SCSI读写命令。
		该字段不存在时,云硬盘默认为VBD类型
	 */
	@JsonProperty("hw:passthrough")
	private Boolean hwPassthrough;

	/**
	 * metadata中的备份策略ID字段。
	 */
	@JsonProperty("policy")
	private String policy;

	/**
	 * 从快照创建云硬盘时,如需使用link克隆方式,请指定该字段的值为0。
	 */
	@JsonProperty("full_clone")
	private String fullClone;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy