com.google.cloud.monitoring.v3.stub.MetricServiceStub Maven / Gradle / Ivy
Show all versions of google-cloud-monitoring Show documentation
/*
* 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.
*/
package com.google.cloud.monitoring.v3.stub;
import static com.google.cloud.monitoring.v3.MetricServiceClient.ListMetricDescriptorsPagedResponse;
import static com.google.cloud.monitoring.v3.MetricServiceClient.ListMonitoredResourceDescriptorsPagedResponse;
import static com.google.cloud.monitoring.v3.MetricServiceClient.ListTimeSeriesPagedResponse;
import com.google.api.MetricDescriptor;
import com.google.api.MonitoredResourceDescriptor;
import com.google.api.gax.core.BackgroundResource;
import com.google.api.gax.rpc.UnaryCallable;
import com.google.monitoring.v3.CreateMetricDescriptorRequest;
import com.google.monitoring.v3.CreateTimeSeriesRequest;
import com.google.monitoring.v3.DeleteMetricDescriptorRequest;
import com.google.monitoring.v3.GetMetricDescriptorRequest;
import com.google.monitoring.v3.GetMonitoredResourceDescriptorRequest;
import com.google.monitoring.v3.ListMetricDescriptorsRequest;
import com.google.monitoring.v3.ListMetricDescriptorsResponse;
import com.google.monitoring.v3.ListMonitoredResourceDescriptorsRequest;
import com.google.monitoring.v3.ListMonitoredResourceDescriptorsResponse;
import com.google.monitoring.v3.ListTimeSeriesRequest;
import com.google.monitoring.v3.ListTimeSeriesResponse;
import com.google.protobuf.Empty;
import javax.annotation.Generated;
// AUTO-GENERATED DOCUMENTATION AND CLASS.
/**
* Base stub class for the MetricService service API.
*
* This class is for advanced usage and reflects the underlying API directly.
*/
@Generated("by gapic-generator-java")
public abstract class MetricServiceStub implements BackgroundResource {
public UnaryCallable<
ListMonitoredResourceDescriptorsRequest, ListMonitoredResourceDescriptorsPagedResponse>
listMonitoredResourceDescriptorsPagedCallable() {
throw new UnsupportedOperationException(
"Not implemented: listMonitoredResourceDescriptorsPagedCallable()");
}
public UnaryCallable<
ListMonitoredResourceDescriptorsRequest, ListMonitoredResourceDescriptorsResponse>
listMonitoredResourceDescriptorsCallable() {
throw new UnsupportedOperationException(
"Not implemented: listMonitoredResourceDescriptorsCallable()");
}
public UnaryCallable
getMonitoredResourceDescriptorCallable() {
throw new UnsupportedOperationException(
"Not implemented: getMonitoredResourceDescriptorCallable()");
}
public UnaryCallable
listMetricDescriptorsPagedCallable() {
throw new UnsupportedOperationException(
"Not implemented: listMetricDescriptorsPagedCallable()");
}
public UnaryCallable
listMetricDescriptorsCallable() {
throw new UnsupportedOperationException("Not implemented: listMetricDescriptorsCallable()");
}
public UnaryCallable getMetricDescriptorCallable() {
throw new UnsupportedOperationException("Not implemented: getMetricDescriptorCallable()");
}
public UnaryCallable
createMetricDescriptorCallable() {
throw new UnsupportedOperationException("Not implemented: createMetricDescriptorCallable()");
}
public UnaryCallable deleteMetricDescriptorCallable() {
throw new UnsupportedOperationException("Not implemented: deleteMetricDescriptorCallable()");
}
public UnaryCallable
listTimeSeriesPagedCallable() {
throw new UnsupportedOperationException("Not implemented: listTimeSeriesPagedCallable()");
}
public UnaryCallable listTimeSeriesCallable() {
throw new UnsupportedOperationException("Not implemented: listTimeSeriesCallable()");
}
public UnaryCallable createTimeSeriesCallable() {
throw new UnsupportedOperationException("Not implemented: createTimeSeriesCallable()");
}
public UnaryCallable createServiceTimeSeriesCallable() {
throw new UnsupportedOperationException("Not implemented: createServiceTimeSeriesCallable()");
}
@Override
public abstract void close();
}