
com.google.api.services.datafusion.v1.model.Version 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.datafusion.v1.model;
/**
* The Data Fusion version. This proto message stores information about certain Data Fusion version,
* which is used for Data Fusion version upgrade.
*
* 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 Cloud Data Fusion 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 Version extends com.google.api.client.json.GenericJson {
/**
* Represents a list of available feature names for a given version.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List availableFeatures;
/**
* Whether this is currently the default version for Cloud Data Fusion
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Boolean defaultVersion;
/**
* Type represents the release availability of the version
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String type;
/**
* The version number of the Data Fusion instance, such as '6.0.1.0'.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String versionNumber;
/**
* Represents a list of available feature names for a given version.
* @return value or {@code null} for none
*/
public java.util.List getAvailableFeatures() {
return availableFeatures;
}
/**
* Represents a list of available feature names for a given version.
* @param availableFeatures availableFeatures or {@code null} for none
*/
public Version setAvailableFeatures(java.util.List availableFeatures) {
this.availableFeatures = availableFeatures;
return this;
}
/**
* Whether this is currently the default version for Cloud Data Fusion
* @return value or {@code null} for none
*/
public java.lang.Boolean getDefaultVersion() {
return defaultVersion;
}
/**
* Whether this is currently the default version for Cloud Data Fusion
* @param defaultVersion defaultVersion or {@code null} for none
*/
public Version setDefaultVersion(java.lang.Boolean defaultVersion) {
this.defaultVersion = defaultVersion;
return this;
}
/**
* Type represents the release availability of the version
* @return value or {@code null} for none
*/
public java.lang.String getType() {
return type;
}
/**
* Type represents the release availability of the version
* @param type type or {@code null} for none
*/
public Version setType(java.lang.String type) {
this.type = type;
return this;
}
/**
* The version number of the Data Fusion instance, such as '6.0.1.0'.
* @return value or {@code null} for none
*/
public java.lang.String getVersionNumber() {
return versionNumber;
}
/**
* The version number of the Data Fusion instance, such as '6.0.1.0'.
* @param versionNumber versionNumber or {@code null} for none
*/
public Version setVersionNumber(java.lang.String versionNumber) {
this.versionNumber = versionNumber;
return this;
}
@Override
public Version set(String fieldName, Object value) {
return (Version) super.set(fieldName, value);
}
@Override
public Version clone() {
return (Version) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy