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

com.google.api.services.compute.model.InstanceGroupManagerPendingActionsSummary 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.compute.model;

/**
 * Model definition for InstanceGroupManagerPendingActionsSummary.
 *
 * 

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 Compute Engine 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 InstanceGroupManagerPendingActionsSummary extends com.google.api.client.json.GenericJson { /** * [Deprecated] This field is deprecated and will be removed. Prefer using the status field * instead. Please contact [email protected] to leave feedback if your workload * relies on this field. [Output Only] The number of instances in the managed instance group that * are pending to be created. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Integer creating; /** * [Deprecated] This field is deprecated and will be removed. Prefer using the status field * instead. Please contact [email protected] to leave feedback if your workload * relies on this field. [Output Only] The number of instances in the managed instance group that * are pending to be deleted. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Integer deleting; /** * [Deprecated] This field is deprecated and will be removed. Prefer using the status field * instead. Please contact [email protected] to leave feedback if your workload * relies on this field. [Output Only] The number of instances in the managed instance group that * are pending to be recreated. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Integer recreating; /** * [Deprecated] This field is deprecated and will be removed. Prefer using the status field * instead. Please contact [email protected] to leave feedback if your workload * relies on this field. [Output Only] The number of instances in the managed instance group that * are pending to be restarted. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Integer restarting; /** * [Deprecated] This field is deprecated and will be removed. Prefer using the status field * instead. Please contact [email protected] to leave feedback if your workload * relies on this field. [Output Only] The number of instances in the managed instance group that * are pending to be created. * @return value or {@code null} for none */ public java.lang.Integer getCreating() { return creating; } /** * [Deprecated] This field is deprecated and will be removed. Prefer using the status field * instead. Please contact [email protected] to leave feedback if your workload * relies on this field. [Output Only] The number of instances in the managed instance group that * are pending to be created. * @param creating creating or {@code null} for none */ public InstanceGroupManagerPendingActionsSummary setCreating(java.lang.Integer creating) { this.creating = creating; return this; } /** * [Deprecated] This field is deprecated and will be removed. Prefer using the status field * instead. Please contact [email protected] to leave feedback if your workload * relies on this field. [Output Only] The number of instances in the managed instance group that * are pending to be deleted. * @return value or {@code null} for none */ public java.lang.Integer getDeleting() { return deleting; } /** * [Deprecated] This field is deprecated and will be removed. Prefer using the status field * instead. Please contact [email protected] to leave feedback if your workload * relies on this field. [Output Only] The number of instances in the managed instance group that * are pending to be deleted. * @param deleting deleting or {@code null} for none */ public InstanceGroupManagerPendingActionsSummary setDeleting(java.lang.Integer deleting) { this.deleting = deleting; return this; } /** * [Deprecated] This field is deprecated and will be removed. Prefer using the status field * instead. Please contact [email protected] to leave feedback if your workload * relies on this field. [Output Only] The number of instances in the managed instance group that * are pending to be recreated. * @return value or {@code null} for none */ public java.lang.Integer getRecreating() { return recreating; } /** * [Deprecated] This field is deprecated and will be removed. Prefer using the status field * instead. Please contact [email protected] to leave feedback if your workload * relies on this field. [Output Only] The number of instances in the managed instance group that * are pending to be recreated. * @param recreating recreating or {@code null} for none */ public InstanceGroupManagerPendingActionsSummary setRecreating(java.lang.Integer recreating) { this.recreating = recreating; return this; } /** * [Deprecated] This field is deprecated and will be removed. Prefer using the status field * instead. Please contact [email protected] to leave feedback if your workload * relies on this field. [Output Only] The number of instances in the managed instance group that * are pending to be restarted. * @return value or {@code null} for none */ public java.lang.Integer getRestarting() { return restarting; } /** * [Deprecated] This field is deprecated and will be removed. Prefer using the status field * instead. Please contact [email protected] to leave feedback if your workload * relies on this field. [Output Only] The number of instances in the managed instance group that * are pending to be restarted. * @param restarting restarting or {@code null} for none */ public InstanceGroupManagerPendingActionsSummary setRestarting(java.lang.Integer restarting) { this.restarting = restarting; return this; } @Override public InstanceGroupManagerPendingActionsSummary set(String fieldName, Object value) { return (InstanceGroupManagerPendingActionsSummary) super.set(fieldName, value); } @Override public InstanceGroupManagerPendingActionsSummary clone() { return (InstanceGroupManagerPendingActionsSummary) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy