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

com.vmware.vim25.EntityBackupConfig Maven / Gradle / Ivy

There is a newer version: 0.6.60
Show newest version

package com.vmware.vim25;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for EntityBackupConfig complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="EntityBackupConfig">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="entityType" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="configBlob" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
 *         <element name="key" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="container" type="{urn:vim25}ManagedObjectReference" minOccurs="0"/>
 *         <element name="configVersion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EntityBackupConfig", propOrder = { "entityType", "configBlob", "key", "name", "container", "configVersion" }) public class EntityBackupConfig extends DynamicData { @XmlElement(required = true) protected String entityType; @XmlElement(required = true) protected byte[] configBlob; protected String key; protected String name; protected ManagedObjectReference container; protected String configVersion; /** * Gets the value of the entityType property. * * @return * possible object is * {@link String } * */ public String getEntityType() { return entityType; } /** * Sets the value of the entityType property. * * @param value * allowed object is * {@link String } * */ public void setEntityType(String value) { this.entityType = value; } /** * Gets the value of the configBlob property. * * @return * possible object is * byte[] */ public byte[] getConfigBlob() { return configBlob; } /** * Sets the value of the configBlob property. * * @param value * allowed object is * byte[] */ public void setConfigBlob(byte[] value) { this.configBlob = value; } /** * Gets the value of the key property. * * @return * possible object is * {@link String } * */ public String getKey() { return key; } /** * Sets the value of the key property. * * @param value * allowed object is * {@link String } * */ public void setKey(String value) { this.key = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the container property. * * @return * possible object is * {@link ManagedObjectReference } * */ public ManagedObjectReference getContainer() { return container; } /** * Sets the value of the container property. * * @param value * allowed object is * {@link ManagedObjectReference } * */ public void setContainer(ManagedObjectReference value) { this.container = value; } /** * Gets the value of the configVersion property. * * @return * possible object is * {@link String } * */ public String getConfigVersion() { return configVersion; } /** * Sets the value of the configVersion property. * * @param value * allowed object is * {@link String } * */ public void setConfigVersion(String value) { this.configVersion = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy