com.google.api.serviceusage.v1beta1.DeleteConsumerOverrideRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-service-usage-v1beta1 Show documentation
Show all versions of proto-google-cloud-service-usage-v1beta1 Show documentation
Proto library for google-cloud-service-usage
/*
* 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/api/serviceusage/v1beta1/serviceusage.proto
// Protobuf Java Version: 3.25.4
package com.google.api.serviceusage.v1beta1;
public interface DeleteConsumerOverrideRequestOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.api.serviceusage.v1beta1.DeleteConsumerOverrideRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The resource name of the override to delete.
*
* An example name would be:
* `projects/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus/limits/%2Fproject%2Fregion/consumerOverrides/4a3f2c1d`
*
*
* string name = 1;
*
* @return The name.
*/
java.lang.String getName();
/**
*
*
*
* The resource name of the override to delete.
*
* An example name would be:
* `projects/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus/limits/%2Fproject%2Fregion/consumerOverrides/4a3f2c1d`
*
*
* string name = 1;
*
* @return The bytes for name.
*/
com.google.protobuf.ByteString getNameBytes();
/**
*
*
*
* Whether to force the deletion of the quota override.
* Setting the force parameter to 'true' ignores all quota safety checks that
* would fail the request. QuotaSafetyCheck lists all such validations.
*
*
* bool force = 2;
*
* @return The force.
*/
boolean getForce();
/**
*
*
*
* The list of quota safety checks to ignore before the override mutation.
* Unlike 'force' field that ignores all the quota safety checks, the
* 'force_only' field ignores only the specified checks; other checks are
* still enforced. The 'force' and 'force_only' fields cannot both be set.
*
*
* repeated .google.api.serviceusage.v1beta1.QuotaSafetyCheck force_only = 3;
*
* @return A list containing the forceOnly.
*/
java.util.List getForceOnlyList();
/**
*
*
*
* The list of quota safety checks to ignore before the override mutation.
* Unlike 'force' field that ignores all the quota safety checks, the
* 'force_only' field ignores only the specified checks; other checks are
* still enforced. The 'force' and 'force_only' fields cannot both be set.
*
*
* repeated .google.api.serviceusage.v1beta1.QuotaSafetyCheck force_only = 3;
*
* @return The count of forceOnly.
*/
int getForceOnlyCount();
/**
*
*
*
* The list of quota safety checks to ignore before the override mutation.
* Unlike 'force' field that ignores all the quota safety checks, the
* 'force_only' field ignores only the specified checks; other checks are
* still enforced. The 'force' and 'force_only' fields cannot both be set.
*
*
* repeated .google.api.serviceusage.v1beta1.QuotaSafetyCheck force_only = 3;
*
* @param index The index of the element to return.
* @return The forceOnly at the given index.
*/
com.google.api.serviceusage.v1beta1.QuotaSafetyCheck getForceOnly(int index);
/**
*
*
*
* The list of quota safety checks to ignore before the override mutation.
* Unlike 'force' field that ignores all the quota safety checks, the
* 'force_only' field ignores only the specified checks; other checks are
* still enforced. The 'force' and 'force_only' fields cannot both be set.
*
*
* repeated .google.api.serviceusage.v1beta1.QuotaSafetyCheck force_only = 3;
*
* @return A list containing the enum numeric values on the wire for forceOnly.
*/
java.util.List getForceOnlyValueList();
/**
*
*
*
* The list of quota safety checks to ignore before the override mutation.
* Unlike 'force' field that ignores all the quota safety checks, the
* 'force_only' field ignores only the specified checks; other checks are
* still enforced. The 'force' and 'force_only' fields cannot both be set.
*
*
* repeated .google.api.serviceusage.v1beta1.QuotaSafetyCheck force_only = 3;
*
* @param index The index of the value to return.
* @return The enum numeric value on the wire of forceOnly at the given index.
*/
int getForceOnlyValue(int index);
}