com.google.cloud.baremetalsolution.v2.InstanceQuotaOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-bare-metal-solution-v2 Show documentation
Show all versions of proto-google-cloud-bare-metal-solution-v2 Show documentation
Proto library for google-cloud-bare-metal-solution
/*
* 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/baremetalsolution/v2/provisioning.proto
// Protobuf Java Version: 3.25.3
package com.google.cloud.baremetalsolution.v2;
public interface InstanceQuotaOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.baremetalsolution.v2.InstanceQuota)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Output only. The name of the instance quota.
*
*
* string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The name.
*/
java.lang.String getName();
/**
*
*
*
* Output only. The name of the instance quota.
*
*
* string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The bytes for name.
*/
com.google.protobuf.ByteString getNameBytes();
/**
*
*
*
* Instance type.
* Deprecated: use gcp_service.
*
*
* string instance_type = 2 [deprecated = true];
*
* @deprecated google.cloud.baremetalsolution.v2.InstanceQuota.instance_type is deprecated. See
* google/cloud/baremetalsolution/v2/provisioning.proto;l=550
* @return The instanceType.
*/
@java.lang.Deprecated
java.lang.String getInstanceType();
/**
*
*
*
* Instance type.
* Deprecated: use gcp_service.
*
*
* string instance_type = 2 [deprecated = true];
*
* @deprecated google.cloud.baremetalsolution.v2.InstanceQuota.instance_type is deprecated. See
* google/cloud/baremetalsolution/v2/provisioning.proto;l=550
* @return The bytes for instanceType.
*/
@java.lang.Deprecated
com.google.protobuf.ByteString getInstanceTypeBytes();
/**
*
*
*
* The gcp service of the provisioning quota.
*
*
* string gcp_service = 5;
*
* @return The gcpService.
*/
java.lang.String getGcpService();
/**
*
*
*
* The gcp service of the provisioning quota.
*
*
* string gcp_service = 5;
*
* @return The bytes for gcpService.
*/
com.google.protobuf.ByteString getGcpServiceBytes();
/**
*
*
*
* Location where the quota applies.
*
*
* string location = 3;
*
* @return The location.
*/
java.lang.String getLocation();
/**
*
*
*
* Location where the quota applies.
*
*
* string location = 3;
*
* @return The bytes for location.
*/
com.google.protobuf.ByteString getLocationBytes();
/**
*
*
*
* Number of machines than can be created for the given location and
* instance_type.
*
*
* int32 available_machine_count = 4;
*
* @return The availableMachineCount.
*/
int getAvailableMachineCount();
}