com.google.cloud.baremetalsolution.v2.ProvisioningQuotaOrBuilder Maven / Gradle / Ivy
/*
* 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 ProvisioningQuotaOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.baremetalsolution.v2.ProvisioningQuota)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Output only. The name of the provisioning quota.
*
*
* string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The name.
*/
java.lang.String getName();
/**
*
*
*
* Output only. The name of the provisioning quota.
*
*
* string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The bytes for name.
*/
com.google.protobuf.ByteString getNameBytes();
/**
*
*
*
* The asset type of this provisioning quota.
*
*
* .google.cloud.baremetalsolution.v2.ProvisioningQuota.AssetType asset_type = 2;
*
* @return The enum numeric value on the wire for assetType.
*/
int getAssetTypeValue();
/**
*
*
*
* The asset type of this provisioning quota.
*
*
* .google.cloud.baremetalsolution.v2.ProvisioningQuota.AssetType asset_type = 2;
*
* @return The assetType.
*/
com.google.cloud.baremetalsolution.v2.ProvisioningQuota.AssetType getAssetType();
/**
*
*
*
* The gcp service of the provisioning quota.
*
*
* string gcp_service = 3;
*
* @return The gcpService.
*/
java.lang.String getGcpService();
/**
*
*
*
* The gcp service of the provisioning quota.
*
*
* string gcp_service = 3;
*
* @return The bytes for gcpService.
*/
com.google.protobuf.ByteString getGcpServiceBytes();
/**
*
*
*
* The specific location of the provisioining quota.
*
*
* string location = 4;
*
* @return The location.
*/
java.lang.String getLocation();
/**
*
*
*
* The specific location of the provisioining quota.
*
*
* string location = 4;
*
* @return The bytes for location.
*/
com.google.protobuf.ByteString getLocationBytes();
/**
*
*
*
* The available count of the provisioning quota.
*
*
* int32 available_count = 5;
*
* @return The availableCount.
*/
int getAvailableCount();
/**
*
*
*
* Instance quota.
*
*
* .google.cloud.baremetalsolution.v2.InstanceQuota instance_quota = 6;
*
* @return Whether the instanceQuota field is set.
*/
boolean hasInstanceQuota();
/**
*
*
*
* Instance quota.
*
*
* .google.cloud.baremetalsolution.v2.InstanceQuota instance_quota = 6;
*
* @return The instanceQuota.
*/
com.google.cloud.baremetalsolution.v2.InstanceQuota getInstanceQuota();
/**
*
*
*
* Instance quota.
*
*
* .google.cloud.baremetalsolution.v2.InstanceQuota instance_quota = 6;
*/
com.google.cloud.baremetalsolution.v2.InstanceQuotaOrBuilder getInstanceQuotaOrBuilder();
/**
*
*
*
* Server count.
*
*
* int64 server_count = 7;
*
* @return Whether the serverCount field is set.
*/
boolean hasServerCount();
/**
*
*
*
* Server count.
*
*
* int64 server_count = 7;
*
* @return The serverCount.
*/
long getServerCount();
/**
*
*
*
* Network bandwidth, Gbps
*
*
* int64 network_bandwidth = 8;
*
* @return Whether the networkBandwidth field is set.
*/
boolean hasNetworkBandwidth();
/**
*
*
*
* Network bandwidth, Gbps
*
*
* int64 network_bandwidth = 8;
*
* @return The networkBandwidth.
*/
long getNetworkBandwidth();
/**
*
*
*
* Storage size (GB).
*
*
* int64 storage_gib = 9;
*
* @return Whether the storageGib field is set.
*/
boolean hasStorageGib();
/**
*
*
*
* Storage size (GB).
*
*
* int64 storage_gib = 9;
*
* @return The storageGib.
*/
long getStorageGib();
com.google.cloud.baremetalsolution.v2.ProvisioningQuota.QuotaCase getQuotaCase();
com.google.cloud.baremetalsolution.v2.ProvisioningQuota.AvailabilityCase getAvailabilityCase();
}