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

com.google.api.services.compute.model.HealthStatus Maven / Gradle / Ivy

There is a newer version: v1-rev20240903-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.compute.model;

/**
 * Model definition for HealthStatus.
 *
 * 

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 HealthStatus extends com.google.api.client.json.GenericJson { /** * Metadata defined as annotations for network endpoint. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.util.Map annotations; /** * URL of the forwarding rule associated with the health status of the instance. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String forwardingRule; /** * A forwarding rule IP address assigned to this instance. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String forwardingRuleIp; /** * Health state of the IPv4 address of the instance. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String healthState; /** * URL of the instance resource. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String instance; /** * For target pool based Network Load Balancing, it indicates the forwarding rule's IP address * assigned to this instance. For other types of load balancing, the field indicates VM internal * ip. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String ipAddress; /** * The named port of the instance group, not necessarily the port that is health-checked. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Integer port; /** * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String weight; /** * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String weightError; /** * Metadata defined as annotations for network endpoint. * @return value or {@code null} for none */ public java.util.Map getAnnotations() { return annotations; } /** * Metadata defined as annotations for network endpoint. * @param annotations annotations or {@code null} for none */ public HealthStatus setAnnotations(java.util.Map annotations) { this.annotations = annotations; return this; } /** * URL of the forwarding rule associated with the health status of the instance. * @return value or {@code null} for none */ public java.lang.String getForwardingRule() { return forwardingRule; } /** * URL of the forwarding rule associated with the health status of the instance. * @param forwardingRule forwardingRule or {@code null} for none */ public HealthStatus setForwardingRule(java.lang.String forwardingRule) { this.forwardingRule = forwardingRule; return this; } /** * A forwarding rule IP address assigned to this instance. * @return value or {@code null} for none */ public java.lang.String getForwardingRuleIp() { return forwardingRuleIp; } /** * A forwarding rule IP address assigned to this instance. * @param forwardingRuleIp forwardingRuleIp or {@code null} for none */ public HealthStatus setForwardingRuleIp(java.lang.String forwardingRuleIp) { this.forwardingRuleIp = forwardingRuleIp; return this; } /** * Health state of the IPv4 address of the instance. * @return value or {@code null} for none */ public java.lang.String getHealthState() { return healthState; } /** * Health state of the IPv4 address of the instance. * @param healthState healthState or {@code null} for none */ public HealthStatus setHealthState(java.lang.String healthState) { this.healthState = healthState; return this; } /** * URL of the instance resource. * @return value or {@code null} for none */ public java.lang.String getInstance() { return instance; } /** * URL of the instance resource. * @param instance instance or {@code null} for none */ public HealthStatus setInstance(java.lang.String instance) { this.instance = instance; return this; } /** * For target pool based Network Load Balancing, it indicates the forwarding rule's IP address * assigned to this instance. For other types of load balancing, the field indicates VM internal * ip. * @return value or {@code null} for none */ public java.lang.String getIpAddress() { return ipAddress; } /** * For target pool based Network Load Balancing, it indicates the forwarding rule's IP address * assigned to this instance. For other types of load balancing, the field indicates VM internal * ip. * @param ipAddress ipAddress or {@code null} for none */ public HealthStatus setIpAddress(java.lang.String ipAddress) { this.ipAddress = ipAddress; return this; } /** * The named port of the instance group, not necessarily the port that is health-checked. * @return value or {@code null} for none */ public java.lang.Integer getPort() { return port; } /** * The named port of the instance group, not necessarily the port that is health-checked. * @param port port or {@code null} for none */ public HealthStatus setPort(java.lang.Integer port) { this.port = port; return this; } /** * @return value or {@code null} for none */ public java.lang.String getWeight() { return weight; } /** * @param weight weight or {@code null} for none */ public HealthStatus setWeight(java.lang.String weight) { this.weight = weight; return this; } /** * @return value or {@code null} for none */ public java.lang.String getWeightError() { return weightError; } /** * @param weightError weightError or {@code null} for none */ public HealthStatus setWeightError(java.lang.String weightError) { this.weightError = weightError; return this; } @Override public HealthStatus set(String fieldName, Object value) { return (HealthStatus) super.set(fieldName, value); } @Override public HealthStatus clone() { return (HealthStatus) super.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy