com.google.cloud.compute.v1.RouterStatusNatStatusOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-compute-v1 Show documentation
Show all versions of proto-google-cloud-compute-v1 Show documentation
Proto library for google-cloud-compute
/*
* Copyright 2024 Google LLC
*
* 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
*
* https://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.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/compute/v1/compute.proto
// Protobuf Java Version: 3.25.5
package com.google.cloud.compute.v1;
public interface RouterStatusNatStatusOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.compute.v1.RouterStatusNatStatus)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* A list of IPs auto-allocated for NAT. Example: ["1.1.1.1", "129.2.16.89"]
*
*
* repeated string auto_allocated_nat_ips = 510794246;
*
* @return A list containing the autoAllocatedNatIps.
*/
java.util.List getAutoAllocatedNatIpsList();
/**
*
*
*
* A list of IPs auto-allocated for NAT. Example: ["1.1.1.1", "129.2.16.89"]
*
*
* repeated string auto_allocated_nat_ips = 510794246;
*
* @return The count of autoAllocatedNatIps.
*/
int getAutoAllocatedNatIpsCount();
/**
*
*
*
* A list of IPs auto-allocated for NAT. Example: ["1.1.1.1", "129.2.16.89"]
*
*
* repeated string auto_allocated_nat_ips = 510794246;
*
* @param index The index of the element to return.
* @return The autoAllocatedNatIps at the given index.
*/
java.lang.String getAutoAllocatedNatIps(int index);
/**
*
*
*
* A list of IPs auto-allocated for NAT. Example: ["1.1.1.1", "129.2.16.89"]
*
*
* repeated string auto_allocated_nat_ips = 510794246;
*
* @param index The index of the value to return.
* @return The bytes of the autoAllocatedNatIps at the given index.
*/
com.google.protobuf.ByteString getAutoAllocatedNatIpsBytes(int index);
/**
*
*
*
* A list of IPs auto-allocated for NAT that are in drain mode. Example: ["1.1.1.1", "179.12.26.133"].
*
*
* repeated string drain_auto_allocated_nat_ips = 309184557;
*
* @return A list containing the drainAutoAllocatedNatIps.
*/
java.util.List getDrainAutoAllocatedNatIpsList();
/**
*
*
*
* A list of IPs auto-allocated for NAT that are in drain mode. Example: ["1.1.1.1", "179.12.26.133"].
*
*
* repeated string drain_auto_allocated_nat_ips = 309184557;
*
* @return The count of drainAutoAllocatedNatIps.
*/
int getDrainAutoAllocatedNatIpsCount();
/**
*
*
*
* A list of IPs auto-allocated for NAT that are in drain mode. Example: ["1.1.1.1", "179.12.26.133"].
*
*
* repeated string drain_auto_allocated_nat_ips = 309184557;
*
* @param index The index of the element to return.
* @return The drainAutoAllocatedNatIps at the given index.
*/
java.lang.String getDrainAutoAllocatedNatIps(int index);
/**
*
*
*
* A list of IPs auto-allocated for NAT that are in drain mode. Example: ["1.1.1.1", "179.12.26.133"].
*
*
* repeated string drain_auto_allocated_nat_ips = 309184557;
*
* @param index The index of the value to return.
* @return The bytes of the drainAutoAllocatedNatIps at the given index.
*/
com.google.protobuf.ByteString getDrainAutoAllocatedNatIpsBytes(int index);
/**
*
*
*
* A list of IPs user-allocated for NAT that are in drain mode. Example: ["1.1.1.1", "179.12.26.133"].
*
*
* repeated string drain_user_allocated_nat_ips = 305268553;
*
* @return A list containing the drainUserAllocatedNatIps.
*/
java.util.List getDrainUserAllocatedNatIpsList();
/**
*
*
*
* A list of IPs user-allocated for NAT that are in drain mode. Example: ["1.1.1.1", "179.12.26.133"].
*
*
* repeated string drain_user_allocated_nat_ips = 305268553;
*
* @return The count of drainUserAllocatedNatIps.
*/
int getDrainUserAllocatedNatIpsCount();
/**
*
*
*
* A list of IPs user-allocated for NAT that are in drain mode. Example: ["1.1.1.1", "179.12.26.133"].
*
*
* repeated string drain_user_allocated_nat_ips = 305268553;
*
* @param index The index of the element to return.
* @return The drainUserAllocatedNatIps at the given index.
*/
java.lang.String getDrainUserAllocatedNatIps(int index);
/**
*
*
*
* A list of IPs user-allocated for NAT that are in drain mode. Example: ["1.1.1.1", "179.12.26.133"].
*
*
* repeated string drain_user_allocated_nat_ips = 305268553;
*
* @param index The index of the value to return.
* @return The bytes of the drainUserAllocatedNatIps at the given index.
*/
com.google.protobuf.ByteString getDrainUserAllocatedNatIpsBytes(int index);
/**
*
*
*
* The number of extra IPs to allocate. This will be greater than 0 only if user-specified IPs are NOT enough to allow all configured VMs to use NAT. This value is meaningful only when auto-allocation of NAT IPs is *not* used.
*
*
* optional int32 min_extra_nat_ips_needed = 365786338;
*
* @return Whether the minExtraNatIpsNeeded field is set.
*/
boolean hasMinExtraNatIpsNeeded();
/**
*
*
*
* The number of extra IPs to allocate. This will be greater than 0 only if user-specified IPs are NOT enough to allow all configured VMs to use NAT. This value is meaningful only when auto-allocation of NAT IPs is *not* used.
*
*
* optional int32 min_extra_nat_ips_needed = 365786338;
*
* @return The minExtraNatIpsNeeded.
*/
int getMinExtraNatIpsNeeded();
/**
*
*
*
* Unique name of this NAT.
*
*
* optional string name = 3373707;
*
* @return Whether the name field is set.
*/
boolean hasName();
/**
*
*
*
* Unique name of this NAT.
*
*
* optional string name = 3373707;
*
* @return The name.
*/
java.lang.String getName();
/**
*
*
*
* Unique name of this NAT.
*
*
* optional string name = 3373707;
*
* @return The bytes for name.
*/
com.google.protobuf.ByteString getNameBytes();
/**
*
*
*
* Number of VM endpoints (i.e., Nics) that can use NAT.
*
*
* optional int32 num_vm_endpoints_with_nat_mappings = 512367468;
*
* @return Whether the numVmEndpointsWithNatMappings field is set.
*/
boolean hasNumVmEndpointsWithNatMappings();
/**
*
*
*
* Number of VM endpoints (i.e., Nics) that can use NAT.
*
*
* optional int32 num_vm_endpoints_with_nat_mappings = 512367468;
*
* @return The numVmEndpointsWithNatMappings.
*/
int getNumVmEndpointsWithNatMappings();
/**
*
*
*
* Status of rules in this NAT.
*
*
*
* repeated .google.cloud.compute.v1.RouterStatusNatStatusNatRuleStatus rule_status = 140223125;
*
*/
java.util.List
getRuleStatusList();
/**
*
*
*
* Status of rules in this NAT.
*
*
*
* repeated .google.cloud.compute.v1.RouterStatusNatStatusNatRuleStatus rule_status = 140223125;
*
*/
com.google.cloud.compute.v1.RouterStatusNatStatusNatRuleStatus getRuleStatus(int index);
/**
*
*
*
* Status of rules in this NAT.
*
*
*
* repeated .google.cloud.compute.v1.RouterStatusNatStatusNatRuleStatus rule_status = 140223125;
*
*/
int getRuleStatusCount();
/**
*
*
*
* Status of rules in this NAT.
*
*
*
* repeated .google.cloud.compute.v1.RouterStatusNatStatusNatRuleStatus rule_status = 140223125;
*
*/
java.util.List extends com.google.cloud.compute.v1.RouterStatusNatStatusNatRuleStatusOrBuilder>
getRuleStatusOrBuilderList();
/**
*
*
*
* Status of rules in this NAT.
*
*
*
* repeated .google.cloud.compute.v1.RouterStatusNatStatusNatRuleStatus rule_status = 140223125;
*
*/
com.google.cloud.compute.v1.RouterStatusNatStatusNatRuleStatusOrBuilder getRuleStatusOrBuilder(
int index);
/**
*
*
*
* A list of fully qualified URLs of reserved IP address resources.
*
*
* repeated string user_allocated_nat_ip_resources = 212776151;
*
* @return A list containing the userAllocatedNatIpResources.
*/
java.util.List getUserAllocatedNatIpResourcesList();
/**
*
*
*
* A list of fully qualified URLs of reserved IP address resources.
*
*
* repeated string user_allocated_nat_ip_resources = 212776151;
*
* @return The count of userAllocatedNatIpResources.
*/
int getUserAllocatedNatIpResourcesCount();
/**
*
*
*
* A list of fully qualified URLs of reserved IP address resources.
*
*
* repeated string user_allocated_nat_ip_resources = 212776151;
*
* @param index The index of the element to return.
* @return The userAllocatedNatIpResources at the given index.
*/
java.lang.String getUserAllocatedNatIpResources(int index);
/**
*
*
*
* A list of fully qualified URLs of reserved IP address resources.
*
*
* repeated string user_allocated_nat_ip_resources = 212776151;
*
* @param index The index of the value to return.
* @return The bytes of the userAllocatedNatIpResources at the given index.
*/
com.google.protobuf.ByteString getUserAllocatedNatIpResourcesBytes(int index);
/**
*
*
*
* A list of IPs user-allocated for NAT. They will be raw IP strings like "179.12.26.133".
*
*
* repeated string user_allocated_nat_ips = 506878242;
*
* @return A list containing the userAllocatedNatIps.
*/
java.util.List getUserAllocatedNatIpsList();
/**
*
*
*
* A list of IPs user-allocated for NAT. They will be raw IP strings like "179.12.26.133".
*
*
* repeated string user_allocated_nat_ips = 506878242;
*
* @return The count of userAllocatedNatIps.
*/
int getUserAllocatedNatIpsCount();
/**
*
*
*
* A list of IPs user-allocated for NAT. They will be raw IP strings like "179.12.26.133".
*
*
* repeated string user_allocated_nat_ips = 506878242;
*
* @param index The index of the element to return.
* @return The userAllocatedNatIps at the given index.
*/
java.lang.String getUserAllocatedNatIps(int index);
/**
*
*
*
* A list of IPs user-allocated for NAT. They will be raw IP strings like "179.12.26.133".
*
*
* repeated string user_allocated_nat_ips = 506878242;
*
* @param index The index of the value to return.
* @return The bytes of the userAllocatedNatIps at the given index.
*/
com.google.protobuf.ByteString getUserAllocatedNatIpsBytes(int index);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy