com.google.api.services.migrationcenter.v1.model.RunningService 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;
/**
* Guest OS running service details.
*
* 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 RunningService extends com.google.api.client.json.GenericJson {
/**
* Service command line.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String cmdline;
/**
* Service binary path.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String exePath;
/**
* Service pid.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.lang.Long pid;
/**
* Service name.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String serviceName;
/**
* Service start mode (OS-agnostic).
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String startMode;
/**
* Service state (OS-agnostic).
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String state;
/**
* Service command line.
* @return value or {@code null} for none
*/
public java.lang.String getCmdline() {
return cmdline;
}
/**
* Service command line.
* @param cmdline cmdline or {@code null} for none
*/
public RunningService setCmdline(java.lang.String cmdline) {
this.cmdline = cmdline;
return this;
}
/**
* Service binary path.
* @return value or {@code null} for none
*/
public java.lang.String getExePath() {
return exePath;
}
/**
* Service binary path.
* @param exePath exePath or {@code null} for none
*/
public RunningService setExePath(java.lang.String exePath) {
this.exePath = exePath;
return this;
}
/**
* Service pid.
* @return value or {@code null} for none
*/
public java.lang.Long getPid() {
return pid;
}
/**
* Service pid.
* @param pid pid or {@code null} for none
*/
public RunningService setPid(java.lang.Long pid) {
this.pid = pid;
return this;
}
/**
* Service name.
* @return value or {@code null} for none
*/
public java.lang.String getServiceName() {
return serviceName;
}
/**
* Service name.
* @param serviceName serviceName or {@code null} for none
*/
public RunningService setServiceName(java.lang.String serviceName) {
this.serviceName = serviceName;
return this;
}
/**
* Service start mode (OS-agnostic).
* @return value or {@code null} for none
*/
public java.lang.String getStartMode() {
return startMode;
}
/**
* Service start mode (OS-agnostic).
* @param startMode startMode or {@code null} for none
*/
public RunningService setStartMode(java.lang.String startMode) {
this.startMode = startMode;
return this;
}
/**
* Service state (OS-agnostic).
* @return value or {@code null} for none
*/
public java.lang.String getState() {
return state;
}
/**
* Service state (OS-agnostic).
* @param state state or {@code null} for none
*/
public RunningService setState(java.lang.String state) {
this.state = state;
return this;
}
@Override
public RunningService set(String fieldName, Object value) {
return (RunningService) super.set(fieldName, value);
}
@Override
public RunningService clone() {
return (RunningService) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy