com.google.api.services.migrationcenter.v1.model.BiosDetails Maven / Gradle / Ivy
/*
* 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.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/
package com.google.api.services.migrationcenter.v1.model;
/**
* Details about the BIOS.
*
* This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Migration Center API. For a detailed explanation see:
* https://developers.google.com/api-client-library/java/google-http-java-client/json
*
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class BiosDetails extends com.google.api.client.json.GenericJson {
/**
* BIOS name. This fields is deprecated. Please use the `id` field instead.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String biosName;
/**
* BIOS ID.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String id;
/**
* BIOS manufacturer.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String manufacturer;
/**
* BIOS release date.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private Date releaseDate;
/**
* SMBIOS UUID.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String smbiosUuid;
/**
* BIOS version.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String version;
/**
* BIOS name. This fields is deprecated. Please use the `id` field instead.
* @return value or {@code null} for none
*/
public java.lang.String getBiosName() {
return biosName;
}
/**
* BIOS name. This fields is deprecated. Please use the `id` field instead.
* @param biosName biosName or {@code null} for none
*/
public BiosDetails setBiosName(java.lang.String biosName) {
this.biosName = biosName;
return this;
}
/**
* BIOS ID.
* @return value or {@code null} for none
*/
public java.lang.String getId() {
return id;
}
/**
* BIOS ID.
* @param id id or {@code null} for none
*/
public BiosDetails setId(java.lang.String id) {
this.id = id;
return this;
}
/**
* BIOS manufacturer.
* @return value or {@code null} for none
*/
public java.lang.String getManufacturer() {
return manufacturer;
}
/**
* BIOS manufacturer.
* @param manufacturer manufacturer or {@code null} for none
*/
public BiosDetails setManufacturer(java.lang.String manufacturer) {
this.manufacturer = manufacturer;
return this;
}
/**
* BIOS release date.
* @return value or {@code null} for none
*/
public Date getReleaseDate() {
return releaseDate;
}
/**
* BIOS release date.
* @param releaseDate releaseDate or {@code null} for none
*/
public BiosDetails setReleaseDate(Date releaseDate) {
this.releaseDate = releaseDate;
return this;
}
/**
* SMBIOS UUID.
* @return value or {@code null} for none
*/
public java.lang.String getSmbiosUuid() {
return smbiosUuid;
}
/**
* SMBIOS UUID.
* @param smbiosUuid smbiosUuid or {@code null} for none
*/
public BiosDetails setSmbiosUuid(java.lang.String smbiosUuid) {
this.smbiosUuid = smbiosUuid;
return this;
}
/**
* BIOS version.
* @return value or {@code null} for none
*/
public java.lang.String getVersion() {
return version;
}
/**
* BIOS version.
* @param version version or {@code null} for none
*/
public BiosDetails setVersion(java.lang.String version) {
this.version = version;
return this;
}
@Override
public BiosDetails set(String fieldName, Object value) {
return (BiosDetails) super.set(fieldName, value);
}
@Override
public BiosDetails clone() {
return (BiosDetails) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy