org.ovirt.engine.sdk.entities.CloudInit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ovirt-engine-sdk-java Show documentation
Show all versions of ovirt-engine-sdk-java Show documentation
This is Java SDK for the oVirt virtualization
//
// Copyright (c) 2012 Red Hat, 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.
//
// *********************************************************************
// ********************* GENERATED CODE - DO NOT MODIFY ****************
// *********************************************************************
package org.ovirt.engine.sdk.entities;
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 CloudInit complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CloudInit">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{}host" minOccurs="0"/>
* <element ref="{}authorized_keys" minOccurs="0"/>
* <element ref="{}network_configuration" minOccurs="0"/>
* <element name="regenerate_ssh_keys" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="timezone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element ref="{}users" minOccurs="0"/>
* <element ref="{}files" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CloudInit", propOrder = {
"host",
"authorizedKeys",
"networkConfiguration",
"regenerateSshKeys",
"timezone",
"users",
"files"
})
public class CloudInit {
protected Host host;
@XmlElement(name = "authorized_keys")
protected AuthorizedKeys authorizedKeys;
@XmlElement(name = "network_configuration")
protected NetworkConfiguration networkConfiguration;
@XmlElement(name = "regenerate_ssh_keys")
protected Boolean regenerateSshKeys;
protected String timezone;
protected Users users;
protected Files files;
/**
* Gets the value of the host property.
*
* @return
* possible object is
* {@link Host }
*
*/
public Host getHost() {
return host;
}
/**
* Sets the value of the host property.
*
* @param value
* allowed object is
* {@link Host }
*
*/
public void setHost(Host value) {
this.host = value;
}
public boolean isSetHost() {
return (this.host!= null);
}
/**
* Gets the value of the authorizedKeys property.
*
* @return
* possible object is
* {@link AuthorizedKeys }
*
*/
public AuthorizedKeys getAuthorizedKeys() {
return authorizedKeys;
}
/**
* Sets the value of the authorizedKeys property.
*
* @param value
* allowed object is
* {@link AuthorizedKeys }
*
*/
public void setAuthorizedKeys(AuthorizedKeys value) {
this.authorizedKeys = value;
}
public boolean isSetAuthorizedKeys() {
return (this.authorizedKeys!= null);
}
/**
* Gets the value of the networkConfiguration property.
*
* @return
* possible object is
* {@link NetworkConfiguration }
*
*/
public NetworkConfiguration getNetworkConfiguration() {
return networkConfiguration;
}
/**
* Sets the value of the networkConfiguration property.
*
* @param value
* allowed object is
* {@link NetworkConfiguration }
*
*/
public void setNetworkConfiguration(NetworkConfiguration value) {
this.networkConfiguration = value;
}
public boolean isSetNetworkConfiguration() {
return (this.networkConfiguration!= null);
}
/**
* Gets the value of the regenerateSshKeys property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean getRegenerateSshKeys() {
return regenerateSshKeys;
}
/**
* Sets the value of the regenerateSshKeys property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setRegenerateSshKeys(Boolean value) {
this.regenerateSshKeys = value;
}
public boolean isSetRegenerateSshKeys() {
return (this.regenerateSshKeys!= null);
}
/**
* Gets the value of the timezone property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTimezone() {
return timezone;
}
/**
* Sets the value of the timezone property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTimezone(String value) {
this.timezone = value;
}
public boolean isSetTimezone() {
return (this.timezone!= null);
}
/**
* Gets the value of the users property.
*
* @return
* possible object is
* {@link Users }
*
*/
public Users getUsers() {
return users;
}
/**
* Sets the value of the users property.
*
* @param value
* allowed object is
* {@link Users }
*
*/
public void setUsers(Users value) {
this.users = value;
}
public boolean isSetUsers() {
return (this.users!= null);
}
/**
* Gets the value of the files property.
*
* @return
* possible object is
* {@link Files }
*
*/
public Files getFiles() {
return files;
}
/**
* Sets the value of the files property.
*
* @param value
* allowed object is
* {@link Files }
*
*/
public void setFiles(Files value) {
this.files = value;
}
public boolean isSetFiles() {
return (this.files!= null);
}
}