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

com.google.api.services.migrationcenter.v1.model.GuestRuntimeDetails Maven / Gradle / Ivy

There is a newer version: v1-rev20241014-2.0.0
Show newest version
/*
 * 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 runtime information.
 *
 * 

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 GuestRuntimeDetails extends com.google.api.client.json.GenericJson { /** * Domain, e.g. c.stratozone-development.internal. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String domain; /** * Installed applications information. * The value may be {@code null}. */ @com.google.api.client.util.Key private GuestInstalledApplicationList installedApps; /** * Last time the OS was booted. * The value may be {@code null}. */ @com.google.api.client.util.Key private String lastBootTime; /** * Machine name. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String machineName; /** * Runtime network information (connections, ports). * The value may be {@code null}. */ @com.google.api.client.util.Key private RuntimeNetworkInfo network; /** * Open files information. * The value may be {@code null}. */ @com.google.api.client.util.Key private OpenFileList openFileList; /** * Running processes. * The value may be {@code null}. */ @com.google.api.client.util.Key private RunningProcessList processes; /** * Running background services. * The value may be {@code null}. */ @com.google.api.client.util.Key private RunningServiceList services; /** * Domain, e.g. c.stratozone-development.internal. * @return value or {@code null} for none */ public java.lang.String getDomain() { return domain; } /** * Domain, e.g. c.stratozone-development.internal. * @param domain domain or {@code null} for none */ public GuestRuntimeDetails setDomain(java.lang.String domain) { this.domain = domain; return this; } /** * Installed applications information. * @return value or {@code null} for none */ public GuestInstalledApplicationList getInstalledApps() { return installedApps; } /** * Installed applications information. * @param installedApps installedApps or {@code null} for none */ public GuestRuntimeDetails setInstalledApps(GuestInstalledApplicationList installedApps) { this.installedApps = installedApps; return this; } /** * Last time the OS was booted. * @return value or {@code null} for none */ public String getLastBootTime() { return lastBootTime; } /** * Last time the OS was booted. * @param lastBootTime lastBootTime or {@code null} for none */ public GuestRuntimeDetails setLastBootTime(String lastBootTime) { this.lastBootTime = lastBootTime; return this; } /** * Machine name. * @return value or {@code null} for none */ public java.lang.String getMachineName() { return machineName; } /** * Machine name. * @param machineName machineName or {@code null} for none */ public GuestRuntimeDetails setMachineName(java.lang.String machineName) { this.machineName = machineName; return this; } /** * Runtime network information (connections, ports). * @return value or {@code null} for none */ public RuntimeNetworkInfo getNetwork() { return network; } /** * Runtime network information (connections, ports). * @param network network or {@code null} for none */ public GuestRuntimeDetails setNetwork(RuntimeNetworkInfo network) { this.network = network; return this; } /** * Open files information. * @return value or {@code null} for none */ public OpenFileList getOpenFileList() { return openFileList; } /** * Open files information. * @param openFileList openFileList or {@code null} for none */ public GuestRuntimeDetails setOpenFileList(OpenFileList openFileList) { this.openFileList = openFileList; return this; } /** * Running processes. * @return value or {@code null} for none */ public RunningProcessList getProcesses() { return processes; } /** * Running processes. * @param processes processes or {@code null} for none */ public GuestRuntimeDetails setProcesses(RunningProcessList processes) { this.processes = processes; return this; } /** * Running background services. * @return value or {@code null} for none */ public RunningServiceList getServices() { return services; } /** * Running background services. * @param services services or {@code null} for none */ public GuestRuntimeDetails setServices(RunningServiceList services) { this.services = services; return this; } @Override public GuestRuntimeDetails set(String fieldName, Object value) { return (GuestRuntimeDetails) super.set(fieldName, value); } @Override public GuestRuntimeDetails clone() { return (GuestRuntimeDetails) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy