com.google.cloud.monitoring.v3.ServiceMonitoringServiceClient 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;
import com.google.api.core.ApiFuture;
import com.google.api.core.ApiFutures;
import com.google.api.gax.core.BackgroundResource;
import com.google.api.gax.paging.AbstractFixedSizeCollection;
import com.google.api.gax.paging.AbstractPage;
import com.google.api.gax.paging.AbstractPagedListResponse;
import com.google.api.gax.rpc.PageContext;
import com.google.api.gax.rpc.UnaryCallable;
import com.google.api.resourcenames.ResourceName;
import com.google.cloud.monitoring.v3.stub.ServiceMonitoringServiceStub;
import com.google.cloud.monitoring.v3.stub.ServiceMonitoringServiceStubSettings;
import com.google.common.util.concurrent.MoreExecutors;
import com.google.monitoring.v3.CreateServiceLevelObjectiveRequest;
import com.google.monitoring.v3.CreateServiceRequest;
import com.google.monitoring.v3.DeleteServiceLevelObjectiveRequest;
import com.google.monitoring.v3.DeleteServiceRequest;
import com.google.monitoring.v3.GetServiceLevelObjectiveRequest;
import com.google.monitoring.v3.GetServiceRequest;
import com.google.monitoring.v3.ListServiceLevelObjectivesRequest;
import com.google.monitoring.v3.ListServiceLevelObjectivesResponse;
import com.google.monitoring.v3.ListServicesRequest;
import com.google.monitoring.v3.ListServicesResponse;
import com.google.monitoring.v3.OrganizationName;
import com.google.monitoring.v3.ProjectName;
import com.google.monitoring.v3.Service;
import com.google.monitoring.v3.ServiceLevelObjective;
import com.google.monitoring.v3.ServiceLevelObjectiveName;
import com.google.monitoring.v3.ServiceName;
import com.google.monitoring.v3.UpdateServiceLevelObjectiveRequest;
import com.google.monitoring.v3.UpdateServiceRequest;
import com.google.protobuf.Empty;
import java.io.IOException;
import java.util.List;
import java.util.concurrent.TimeUnit;
import javax.annotation.Generated;
// AUTO-GENERATED DOCUMENTATION AND CLASS.
/**
* Service Description: The Cloud Monitoring Service-Oriented Monitoring API has endpoints for
* managing and querying aspects of a Metrics Scope's services. These include the `Service`'s
* monitored resources, its Service-Level Objectives, and a taxonomy of categorized Health Metrics.
*
* This class provides the ability to make remote calls to the backing service through method
* calls that map to API methods. Sample code to get started:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* ResourceName parent = ResourceName.of("[FOLDER]");
* Service service = Service.newBuilder().build();
* Service response = serviceMonitoringServiceClient.createService(parent, service);
* }
* }
*
* Note: close() needs to be called on the ServiceMonitoringServiceClient object to clean up
* resources such as threads. In the example above, try-with-resources is used, which automatically
* calls close().
*
*
* Methods
*
* Method
* Description
* Method Variants
*
*
* CreateService
* Create a `Service`.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
*
* createService(CreateServiceRequest request)
*
* "Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
*
* createService(ResourceName parent, Service service)
*
createService(OrganizationName parent, Service service)
*
createService(ProjectName parent, Service service)
*
createService(String parent, Service service)
*
* Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
*
* createServiceCallable()
*
*
*
*
* GetService
* Get the named `Service`.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
*
* getService(GetServiceRequest request)
*
* "Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
*
* getService(ServiceName name)
*
getService(String name)
*
* Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
*
* getServiceCallable()
*
*
*
*
* ListServices
* List `Service`s for this Metrics Scope.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
*
* listServices(ListServicesRequest request)
*
* "Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
*
* listServices(ResourceName parent)
*
listServices(OrganizationName parent)
*
listServices(ProjectName parent)
*
listServices(String parent)
*
* Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
*
* listServicesPagedCallable()
*
listServicesCallable()
*
*
*
*
* UpdateService
* Update this `Service`.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
*
* updateService(UpdateServiceRequest request)
*
* "Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
*
* updateService(Service service)
*
* Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
*
* updateServiceCallable()
*
*
*
*
* DeleteService
* Soft delete this `Service`.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
*
* deleteService(DeleteServiceRequest request)
*
* "Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
*
* deleteService(ServiceName name)
*
deleteService(String name)
*
* Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
*
* deleteServiceCallable()
*
*
*
*
* CreateServiceLevelObjective
* Create a `ServiceLevelObjective` for the given `Service`.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
*
* createServiceLevelObjective(CreateServiceLevelObjectiveRequest request)
*
* "Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
*
* createServiceLevelObjective(ServiceName parent, ServiceLevelObjective serviceLevelObjective)
*
createServiceLevelObjective(String parent, ServiceLevelObjective serviceLevelObjective)
*
* Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
*
* createServiceLevelObjectiveCallable()
*
*
*
*
* GetServiceLevelObjective
* Get a `ServiceLevelObjective` by name.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
*
* getServiceLevelObjective(GetServiceLevelObjectiveRequest request)
*
* "Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
*
* getServiceLevelObjective(ServiceLevelObjectiveName name)
*
getServiceLevelObjective(String name)
*
* Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
*
* getServiceLevelObjectiveCallable()
*
*
*
*
* ListServiceLevelObjectives
* List the `ServiceLevelObjective`s for the given `Service`.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
*
* listServiceLevelObjectives(ListServiceLevelObjectivesRequest request)
*
* "Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
*
* listServiceLevelObjectives(ServiceName parent)
*
listServiceLevelObjectives(String parent)
*
* Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
*
* listServiceLevelObjectivesPagedCallable()
*
listServiceLevelObjectivesCallable()
*
*
*
*
* UpdateServiceLevelObjective
* Update the given `ServiceLevelObjective`.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
*
* updateServiceLevelObjective(UpdateServiceLevelObjectiveRequest request)
*
* "Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
*
* updateServiceLevelObjective(ServiceLevelObjective serviceLevelObjective)
*
* Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
*
* updateServiceLevelObjectiveCallable()
*
*
*
*
* DeleteServiceLevelObjective
* Delete the given `ServiceLevelObjective`.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
*
* deleteServiceLevelObjective(DeleteServiceLevelObjectiveRequest request)
*
* "Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
*
* deleteServiceLevelObjective(ServiceLevelObjectiveName name)
*
deleteServiceLevelObjective(String name)
*
* Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
*
* deleteServiceLevelObjectiveCallable()
*
*
*
*
*
* See the individual methods for example code.
*
*
Many parameters require resource names to be formatted in a particular way. To assist with
* these names, this class includes a format method for each type of name, and additionally a parse
* method to extract the individual identifiers contained within names that are returned.
*
*
This class can be customized by passing in a custom instance of
* ServiceMonitoringServiceSettings to create(). For example:
*
*
To customize credentials:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* ServiceMonitoringServiceSettings serviceMonitoringServiceSettings =
* ServiceMonitoringServiceSettings.newBuilder()
* .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
* .build();
* ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create(serviceMonitoringServiceSettings);
* }
*
* To customize the endpoint:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* ServiceMonitoringServiceSettings serviceMonitoringServiceSettings =
* ServiceMonitoringServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
* ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create(serviceMonitoringServiceSettings);
* }
*
* Please refer to the GitHub repository's samples for more quickstart code snippets.
*/
@Generated("by gapic-generator-java")
public class ServiceMonitoringServiceClient implements BackgroundResource {
private final ServiceMonitoringServiceSettings settings;
private final ServiceMonitoringServiceStub stub;
/** Constructs an instance of ServiceMonitoringServiceClient with default settings. */
public static final ServiceMonitoringServiceClient create() throws IOException {
return create(ServiceMonitoringServiceSettings.newBuilder().build());
}
/**
* Constructs an instance of ServiceMonitoringServiceClient, using the given settings. The
* channels are created based on the settings passed in, or defaults for any settings that are not
* set.
*/
public static final ServiceMonitoringServiceClient create(
ServiceMonitoringServiceSettings settings) throws IOException {
return new ServiceMonitoringServiceClient(settings);
}
/**
* Constructs an instance of ServiceMonitoringServiceClient, using the given stub for making
* calls. This is for advanced usage - prefer using create(ServiceMonitoringServiceSettings).
*/
public static final ServiceMonitoringServiceClient create(ServiceMonitoringServiceStub stub) {
return new ServiceMonitoringServiceClient(stub);
}
/**
* Constructs an instance of ServiceMonitoringServiceClient, using the given settings. This is
* protected so that it is easy to make a subclass, but otherwise, the static factory methods
* should be preferred.
*/
protected ServiceMonitoringServiceClient(ServiceMonitoringServiceSettings settings)
throws IOException {
this.settings = settings;
this.stub = ((ServiceMonitoringServiceStubSettings) settings.getStubSettings()).createStub();
}
protected ServiceMonitoringServiceClient(ServiceMonitoringServiceStub stub) {
this.settings = null;
this.stub = stub;
}
public final ServiceMonitoringServiceSettings getSettings() {
return settings;
}
public ServiceMonitoringServiceStub getStub() {
return stub;
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Create a `Service`.
*
*
Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* ResourceName parent = ResourceName.of("[FOLDER]");
* Service service = Service.newBuilder().build();
* Service response = serviceMonitoringServiceClient.createService(parent, service);
* }
* }
*
* @param parent Required. Resource
* [name](https://cloud.google.com/monitoring/api/v3#project_name) of the parent Metrics
* Scope. The format is:
* projects/[PROJECT_ID_OR_NUMBER]
* @param service Required. The `Service` to create.
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final Service createService(ResourceName parent, Service service) {
CreateServiceRequest request =
CreateServiceRequest.newBuilder()
.setParent(parent == null ? null : parent.toString())
.setService(service)
.build();
return createService(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Create a `Service`.
*
*
Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* OrganizationName parent = OrganizationName.of("[ORGANIZATION]");
* Service service = Service.newBuilder().build();
* Service response = serviceMonitoringServiceClient.createService(parent, service);
* }
* }
*
* @param parent Required. Resource
* [name](https://cloud.google.com/monitoring/api/v3#project_name) of the parent Metrics
* Scope. The format is:
* projects/[PROJECT_ID_OR_NUMBER]
* @param service Required. The `Service` to create.
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final Service createService(OrganizationName parent, Service service) {
CreateServiceRequest request =
CreateServiceRequest.newBuilder()
.setParent(parent == null ? null : parent.toString())
.setService(service)
.build();
return createService(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Create a `Service`.
*
*
Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* ProjectName parent = ProjectName.of("[PROJECT]");
* Service service = Service.newBuilder().build();
* Service response = serviceMonitoringServiceClient.createService(parent, service);
* }
* }
*
* @param parent Required. Resource
* [name](https://cloud.google.com/monitoring/api/v3#project_name) of the parent Metrics
* Scope. The format is:
* projects/[PROJECT_ID_OR_NUMBER]
* @param service Required. The `Service` to create.
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final Service createService(ProjectName parent, Service service) {
CreateServiceRequest request =
CreateServiceRequest.newBuilder()
.setParent(parent == null ? null : parent.toString())
.setService(service)
.build();
return createService(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Create a `Service`.
*
*
Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* String parent = ProjectName.of("[PROJECT]").toString();
* Service service = Service.newBuilder().build();
* Service response = serviceMonitoringServiceClient.createService(parent, service);
* }
* }
*
* @param parent Required. Resource
* [name](https://cloud.google.com/monitoring/api/v3#project_name) of the parent Metrics
* Scope. The format is:
* projects/[PROJECT_ID_OR_NUMBER]
* @param service Required. The `Service` to create.
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final Service createService(String parent, Service service) {
CreateServiceRequest request =
CreateServiceRequest.newBuilder().setParent(parent).setService(service).build();
return createService(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Create a `Service`.
*
*
Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* CreateServiceRequest request =
* CreateServiceRequest.newBuilder()
* .setParent(ProjectName.of("[PROJECT]").toString())
* .setServiceId("serviceId-194185552")
* .setService(Service.newBuilder().build())
* .build();
* Service response = serviceMonitoringServiceClient.createService(request);
* }
* }
*
* @param request The request object containing all of the parameters for the API call.
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final Service createService(CreateServiceRequest request) {
return createServiceCallable().call(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Create a `Service`.
*
* Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* CreateServiceRequest request =
* CreateServiceRequest.newBuilder()
* .setParent(ProjectName.of("[PROJECT]").toString())
* .setServiceId("serviceId-194185552")
* .setService(Service.newBuilder().build())
* .build();
* ApiFuture future =
* serviceMonitoringServiceClient.createServiceCallable().futureCall(request);
* // Do something.
* Service response = future.get();
* }
* }
*/
public final UnaryCallable createServiceCallable() {
return stub.createServiceCallable();
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Get the named `Service`.
*
* Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* ServiceName name = ServiceName.ofProjectServiceName("[PROJECT]", "[SERVICE]");
* Service response = serviceMonitoringServiceClient.getService(name);
* }
* }
*
* @param name Required. Resource name of the `Service`. The format is:
* projects/[PROJECT_ID_OR_NUMBER]/services/[SERVICE_ID]
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final Service getService(ServiceName name) {
GetServiceRequest request =
GetServiceRequest.newBuilder().setName(name == null ? null : name.toString()).build();
return getService(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Get the named `Service`.
*
*
Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* String name = ServiceName.ofProjectServiceName("[PROJECT]", "[SERVICE]").toString();
* Service response = serviceMonitoringServiceClient.getService(name);
* }
* }
*
* @param name Required. Resource name of the `Service`. The format is:
* projects/[PROJECT_ID_OR_NUMBER]/services/[SERVICE_ID]
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final Service getService(String name) {
GetServiceRequest request = GetServiceRequest.newBuilder().setName(name).build();
return getService(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Get the named `Service`.
*
*
Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* GetServiceRequest request =
* GetServiceRequest.newBuilder()
* .setName(ServiceName.ofProjectServiceName("[PROJECT]", "[SERVICE]").toString())
* .build();
* Service response = serviceMonitoringServiceClient.getService(request);
* }
* }
*
* @param request The request object containing all of the parameters for the API call.
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final Service getService(GetServiceRequest request) {
return getServiceCallable().call(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Get the named `Service`.
*
* Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* GetServiceRequest request =
* GetServiceRequest.newBuilder()
* .setName(ServiceName.ofProjectServiceName("[PROJECT]", "[SERVICE]").toString())
* .build();
* ApiFuture future =
* serviceMonitoringServiceClient.getServiceCallable().futureCall(request);
* // Do something.
* Service response = future.get();
* }
* }
*/
public final UnaryCallable getServiceCallable() {
return stub.getServiceCallable();
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* List `Service`s for this Metrics Scope.
*
* Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* ResourceName parent = ResourceName.of("[FOLDER]");
* for (Service element : serviceMonitoringServiceClient.listServices(parent).iterateAll()) {
* // doThingsWith(element);
* }
* }
* }
*
* @param parent Required. Resource name of the parent containing the listed services, either a
* [project](https://cloud.google.com/monitoring/api/v3#project_name) or a Monitoring Metrics
* Scope. The formats are:
* projects/[PROJECT_ID_OR_NUMBER] workspaces/[HOST_PROJECT_ID_OR_NUMBER]
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final ListServicesPagedResponse listServices(ResourceName parent) {
ListServicesRequest request =
ListServicesRequest.newBuilder()
.setParent(parent == null ? null : parent.toString())
.build();
return listServices(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* List `Service`s for this Metrics Scope.
*
*
Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* OrganizationName parent = OrganizationName.of("[ORGANIZATION]");
* for (Service element : serviceMonitoringServiceClient.listServices(parent).iterateAll()) {
* // doThingsWith(element);
* }
* }
* }
*
* @param parent Required. Resource name of the parent containing the listed services, either a
* [project](https://cloud.google.com/monitoring/api/v3#project_name) or a Monitoring Metrics
* Scope. The formats are:
* projects/[PROJECT_ID_OR_NUMBER] workspaces/[HOST_PROJECT_ID_OR_NUMBER]
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final ListServicesPagedResponse listServices(OrganizationName parent) {
ListServicesRequest request =
ListServicesRequest.newBuilder()
.setParent(parent == null ? null : parent.toString())
.build();
return listServices(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* List `Service`s for this Metrics Scope.
*
*
Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* ProjectName parent = ProjectName.of("[PROJECT]");
* for (Service element : serviceMonitoringServiceClient.listServices(parent).iterateAll()) {
* // doThingsWith(element);
* }
* }
* }
*
* @param parent Required. Resource name of the parent containing the listed services, either a
* [project](https://cloud.google.com/monitoring/api/v3#project_name) or a Monitoring Metrics
* Scope. The formats are:
* projects/[PROJECT_ID_OR_NUMBER] workspaces/[HOST_PROJECT_ID_OR_NUMBER]
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final ListServicesPagedResponse listServices(ProjectName parent) {
ListServicesRequest request =
ListServicesRequest.newBuilder()
.setParent(parent == null ? null : parent.toString())
.build();
return listServices(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* List `Service`s for this Metrics Scope.
*
*
Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* String parent = ProjectName.of("[PROJECT]").toString();
* for (Service element : serviceMonitoringServiceClient.listServices(parent).iterateAll()) {
* // doThingsWith(element);
* }
* }
* }
*
* @param parent Required. Resource name of the parent containing the listed services, either a
* [project](https://cloud.google.com/monitoring/api/v3#project_name) or a Monitoring Metrics
* Scope. The formats are:
* projects/[PROJECT_ID_OR_NUMBER] workspaces/[HOST_PROJECT_ID_OR_NUMBER]
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final ListServicesPagedResponse listServices(String parent) {
ListServicesRequest request = ListServicesRequest.newBuilder().setParent(parent).build();
return listServices(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* List `Service`s for this Metrics Scope.
*
*
Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* ListServicesRequest request =
* ListServicesRequest.newBuilder()
* .setParent(ProjectName.of("[PROJECT]").toString())
* .setFilter("filter-1274492040")
* .setPageSize(883849137)
* .setPageToken("pageToken873572522")
* .build();
* for (Service element : serviceMonitoringServiceClient.listServices(request).iterateAll()) {
* // doThingsWith(element);
* }
* }
* }
*
* @param request The request object containing all of the parameters for the API call.
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final ListServicesPagedResponse listServices(ListServicesRequest request) {
return listServicesPagedCallable().call(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* List `Service`s for this Metrics Scope.
*
* Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* ListServicesRequest request =
* ListServicesRequest.newBuilder()
* .setParent(ProjectName.of("[PROJECT]").toString())
* .setFilter("filter-1274492040")
* .setPageSize(883849137)
* .setPageToken("pageToken873572522")
* .build();
* ApiFuture future =
* serviceMonitoringServiceClient.listServicesPagedCallable().futureCall(request);
* // Do something.
* for (Service element : future.get().iterateAll()) {
* // doThingsWith(element);
* }
* }
* }
*/
public final UnaryCallable
listServicesPagedCallable() {
return stub.listServicesPagedCallable();
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* List `Service`s for this Metrics Scope.
*
* Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* ListServicesRequest request =
* ListServicesRequest.newBuilder()
* .setParent(ProjectName.of("[PROJECT]").toString())
* .setFilter("filter-1274492040")
* .setPageSize(883849137)
* .setPageToken("pageToken873572522")
* .build();
* while (true) {
* ListServicesResponse response =
* serviceMonitoringServiceClient.listServicesCallable().call(request);
* for (Service element : response.getServicesList()) {
* // doThingsWith(element);
* }
* String nextPageToken = response.getNextPageToken();
* if (!Strings.isNullOrEmpty(nextPageToken)) {
* request = request.toBuilder().setPageToken(nextPageToken).build();
* } else {
* break;
* }
* }
* }
* }
*/
public final UnaryCallable listServicesCallable() {
return stub.listServicesCallable();
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Update this `Service`.
*
* Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* Service service = Service.newBuilder().build();
* Service response = serviceMonitoringServiceClient.updateService(service);
* }
* }
*
* @param service Required. The `Service` to draw updates from. The given `name` specifies the
* resource to update.
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final Service updateService(Service service) {
UpdateServiceRequest request = UpdateServiceRequest.newBuilder().setService(service).build();
return updateService(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Update this `Service`.
*
* Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* UpdateServiceRequest request =
* UpdateServiceRequest.newBuilder()
* .setService(Service.newBuilder().build())
* .setUpdateMask(FieldMask.newBuilder().build())
* .build();
* Service response = serviceMonitoringServiceClient.updateService(request);
* }
* }
*
* @param request The request object containing all of the parameters for the API call.
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final Service updateService(UpdateServiceRequest request) {
return updateServiceCallable().call(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Update this `Service`.
*
* Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* UpdateServiceRequest request =
* UpdateServiceRequest.newBuilder()
* .setService(Service.newBuilder().build())
* .setUpdateMask(FieldMask.newBuilder().build())
* .build();
* ApiFuture future =
* serviceMonitoringServiceClient.updateServiceCallable().futureCall(request);
* // Do something.
* Service response = future.get();
* }
* }
*/
public final UnaryCallable updateServiceCallable() {
return stub.updateServiceCallable();
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Soft delete this `Service`.
*
* Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* ServiceName name = ServiceName.ofProjectServiceName("[PROJECT]", "[SERVICE]");
* serviceMonitoringServiceClient.deleteService(name);
* }
* }
*
* @param name Required. Resource name of the `Service` to delete. The format is:
* projects/[PROJECT_ID_OR_NUMBER]/services/[SERVICE_ID]
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final void deleteService(ServiceName name) {
DeleteServiceRequest request =
DeleteServiceRequest.newBuilder().setName(name == null ? null : name.toString()).build();
deleteService(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Soft delete this `Service`.
*
*
Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* String name = ServiceName.ofProjectServiceName("[PROJECT]", "[SERVICE]").toString();
* serviceMonitoringServiceClient.deleteService(name);
* }
* }
*
* @param name Required. Resource name of the `Service` to delete. The format is:
* projects/[PROJECT_ID_OR_NUMBER]/services/[SERVICE_ID]
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final void deleteService(String name) {
DeleteServiceRequest request = DeleteServiceRequest.newBuilder().setName(name).build();
deleteService(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Soft delete this `Service`.
*
*
Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* DeleteServiceRequest request =
* DeleteServiceRequest.newBuilder()
* .setName(ServiceName.ofProjectServiceName("[PROJECT]", "[SERVICE]").toString())
* .build();
* serviceMonitoringServiceClient.deleteService(request);
* }
* }
*
* @param request The request object containing all of the parameters for the API call.
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final void deleteService(DeleteServiceRequest request) {
deleteServiceCallable().call(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Soft delete this `Service`.
*
* Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* DeleteServiceRequest request =
* DeleteServiceRequest.newBuilder()
* .setName(ServiceName.ofProjectServiceName("[PROJECT]", "[SERVICE]").toString())
* .build();
* ApiFuture future =
* serviceMonitoringServiceClient.deleteServiceCallable().futureCall(request);
* // Do something.
* future.get();
* }
* }
*/
public final UnaryCallable deleteServiceCallable() {
return stub.deleteServiceCallable();
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Create a `ServiceLevelObjective` for the given `Service`.
*
* Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* ServiceName parent = ServiceName.ofProjectServiceName("[PROJECT]", "[SERVICE]");
* ServiceLevelObjective serviceLevelObjective = ServiceLevelObjective.newBuilder().build();
* ServiceLevelObjective response =
* serviceMonitoringServiceClient.createServiceLevelObjective(parent, serviceLevelObjective);
* }
* }
*
* @param parent Required. Resource name of the parent `Service`. The format is:
* projects/[PROJECT_ID_OR_NUMBER]/services/[SERVICE_ID]
* @param serviceLevelObjective Required. The `ServiceLevelObjective` to create. The provided
* `name` will be respected if no `ServiceLevelObjective` exists with this name.
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final ServiceLevelObjective createServiceLevelObjective(
ServiceName parent, ServiceLevelObjective serviceLevelObjective) {
CreateServiceLevelObjectiveRequest request =
CreateServiceLevelObjectiveRequest.newBuilder()
.setParent(parent == null ? null : parent.toString())
.setServiceLevelObjective(serviceLevelObjective)
.build();
return createServiceLevelObjective(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Create a `ServiceLevelObjective` for the given `Service`.
*
*
Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* String parent = ServiceName.ofProjectServiceName("[PROJECT]", "[SERVICE]").toString();
* ServiceLevelObjective serviceLevelObjective = ServiceLevelObjective.newBuilder().build();
* ServiceLevelObjective response =
* serviceMonitoringServiceClient.createServiceLevelObjective(parent, serviceLevelObjective);
* }
* }
*
* @param parent Required. Resource name of the parent `Service`. The format is:
* projects/[PROJECT_ID_OR_NUMBER]/services/[SERVICE_ID]
* @param serviceLevelObjective Required. The `ServiceLevelObjective` to create. The provided
* `name` will be respected if no `ServiceLevelObjective` exists with this name.
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final ServiceLevelObjective createServiceLevelObjective(
String parent, ServiceLevelObjective serviceLevelObjective) {
CreateServiceLevelObjectiveRequest request =
CreateServiceLevelObjectiveRequest.newBuilder()
.setParent(parent)
.setServiceLevelObjective(serviceLevelObjective)
.build();
return createServiceLevelObjective(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Create a `ServiceLevelObjective` for the given `Service`.
*
*
Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* CreateServiceLevelObjectiveRequest request =
* CreateServiceLevelObjectiveRequest.newBuilder()
* .setParent(ServiceName.ofProjectServiceName("[PROJECT]", "[SERVICE]").toString())
* .setServiceLevelObjectiveId("serviceLevelObjectiveId-240792859")
* .setServiceLevelObjective(ServiceLevelObjective.newBuilder().build())
* .build();
* ServiceLevelObjective response =
* serviceMonitoringServiceClient.createServiceLevelObjective(request);
* }
* }
*
* @param request The request object containing all of the parameters for the API call.
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final ServiceLevelObjective createServiceLevelObjective(
CreateServiceLevelObjectiveRequest request) {
return createServiceLevelObjectiveCallable().call(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Create a `ServiceLevelObjective` for the given `Service`.
*
* Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* CreateServiceLevelObjectiveRequest request =
* CreateServiceLevelObjectiveRequest.newBuilder()
* .setParent(ServiceName.ofProjectServiceName("[PROJECT]", "[SERVICE]").toString())
* .setServiceLevelObjectiveId("serviceLevelObjectiveId-240792859")
* .setServiceLevelObjective(ServiceLevelObjective.newBuilder().build())
* .build();
* ApiFuture future =
* serviceMonitoringServiceClient.createServiceLevelObjectiveCallable().futureCall(request);
* // Do something.
* ServiceLevelObjective response = future.get();
* }
* }
*/
public final UnaryCallable
createServiceLevelObjectiveCallable() {
return stub.createServiceLevelObjectiveCallable();
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Get a `ServiceLevelObjective` by name.
*
* Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* ServiceLevelObjectiveName name =
* ServiceLevelObjectiveName.ofProjectServiceServiceLevelObjectiveName(
* "[PROJECT]", "[SERVICE]", "[SERVICE_LEVEL_OBJECTIVE]");
* ServiceLevelObjective response =
* serviceMonitoringServiceClient.getServiceLevelObjective(name);
* }
* }
*
* @param name Required. Resource name of the `ServiceLevelObjective` to get. The format is:
* projects/[PROJECT_ID_OR_NUMBER]/services/[SERVICE_ID]/serviceLevelObjectives/[SLO_NAME]
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final ServiceLevelObjective getServiceLevelObjective(ServiceLevelObjectiveName name) {
GetServiceLevelObjectiveRequest request =
GetServiceLevelObjectiveRequest.newBuilder()
.setName(name == null ? null : name.toString())
.build();
return getServiceLevelObjective(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Get a `ServiceLevelObjective` by name.
*
*
Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* String name =
* ServiceLevelObjectiveName.ofProjectServiceServiceLevelObjectiveName(
* "[PROJECT]", "[SERVICE]", "[SERVICE_LEVEL_OBJECTIVE]")
* .toString();
* ServiceLevelObjective response =
* serviceMonitoringServiceClient.getServiceLevelObjective(name);
* }
* }
*
* @param name Required. Resource name of the `ServiceLevelObjective` to get. The format is:
* projects/[PROJECT_ID_OR_NUMBER]/services/[SERVICE_ID]/serviceLevelObjectives/[SLO_NAME]
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final ServiceLevelObjective getServiceLevelObjective(String name) {
GetServiceLevelObjectiveRequest request =
GetServiceLevelObjectiveRequest.newBuilder().setName(name).build();
return getServiceLevelObjective(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Get a `ServiceLevelObjective` by name.
*
*
Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* GetServiceLevelObjectiveRequest request =
* GetServiceLevelObjectiveRequest.newBuilder()
* .setName(
* ServiceLevelObjectiveName.ofProjectServiceServiceLevelObjectiveName(
* "[PROJECT]", "[SERVICE]", "[SERVICE_LEVEL_OBJECTIVE]")
* .toString())
* .build();
* ServiceLevelObjective response =
* serviceMonitoringServiceClient.getServiceLevelObjective(request);
* }
* }
*
* @param request The request object containing all of the parameters for the API call.
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final ServiceLevelObjective getServiceLevelObjective(
GetServiceLevelObjectiveRequest request) {
return getServiceLevelObjectiveCallable().call(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Get a `ServiceLevelObjective` by name.
*
* Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* GetServiceLevelObjectiveRequest request =
* GetServiceLevelObjectiveRequest.newBuilder()
* .setName(
* ServiceLevelObjectiveName.ofProjectServiceServiceLevelObjectiveName(
* "[PROJECT]", "[SERVICE]", "[SERVICE_LEVEL_OBJECTIVE]")
* .toString())
* .build();
* ApiFuture future =
* serviceMonitoringServiceClient.getServiceLevelObjectiveCallable().futureCall(request);
* // Do something.
* ServiceLevelObjective response = future.get();
* }
* }
*/
public final UnaryCallable
getServiceLevelObjectiveCallable() {
return stub.getServiceLevelObjectiveCallable();
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* List the `ServiceLevelObjective`s for the given `Service`.
*
* Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* ServiceName parent = ServiceName.ofProjectServiceName("[PROJECT]", "[SERVICE]");
* for (ServiceLevelObjective element :
* serviceMonitoringServiceClient.listServiceLevelObjectives(parent).iterateAll()) {
* // doThingsWith(element);
* }
* }
* }
*
* @param parent Required. Resource name of the parent containing the listed SLOs, either a
* project or a Monitoring Metrics Scope. The formats are:
* projects/[PROJECT_ID_OR_NUMBER]/services/[SERVICE_ID]
* workspaces/[HOST_PROJECT_ID_OR_NUMBER]/services/-
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final ListServiceLevelObjectivesPagedResponse listServiceLevelObjectives(
ServiceName parent) {
ListServiceLevelObjectivesRequest request =
ListServiceLevelObjectivesRequest.newBuilder()
.setParent(parent == null ? null : parent.toString())
.build();
return listServiceLevelObjectives(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* List the `ServiceLevelObjective`s for the given `Service`.
*
*
Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* String parent = ServiceName.ofProjectServiceName("[PROJECT]", "[SERVICE]").toString();
* for (ServiceLevelObjective element :
* serviceMonitoringServiceClient.listServiceLevelObjectives(parent).iterateAll()) {
* // doThingsWith(element);
* }
* }
* }
*
* @param parent Required. Resource name of the parent containing the listed SLOs, either a
* project or a Monitoring Metrics Scope. The formats are:
* projects/[PROJECT_ID_OR_NUMBER]/services/[SERVICE_ID]
* workspaces/[HOST_PROJECT_ID_OR_NUMBER]/services/-
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final ListServiceLevelObjectivesPagedResponse listServiceLevelObjectives(String parent) {
ListServiceLevelObjectivesRequest request =
ListServiceLevelObjectivesRequest.newBuilder().setParent(parent).build();
return listServiceLevelObjectives(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* List the `ServiceLevelObjective`s for the given `Service`.
*
*
Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* ListServiceLevelObjectivesRequest request =
* ListServiceLevelObjectivesRequest.newBuilder()
* .setParent(ServiceName.ofProjectServiceName("[PROJECT]", "[SERVICE]").toString())
* .setFilter("filter-1274492040")
* .setPageSize(883849137)
* .setPageToken("pageToken873572522")
* .build();
* for (ServiceLevelObjective element :
* serviceMonitoringServiceClient.listServiceLevelObjectives(request).iterateAll()) {
* // doThingsWith(element);
* }
* }
* }
*
* @param request The request object containing all of the parameters for the API call.
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final ListServiceLevelObjectivesPagedResponse listServiceLevelObjectives(
ListServiceLevelObjectivesRequest request) {
return listServiceLevelObjectivesPagedCallable().call(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* List the `ServiceLevelObjective`s for the given `Service`.
*
* Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* ListServiceLevelObjectivesRequest request =
* ListServiceLevelObjectivesRequest.newBuilder()
* .setParent(ServiceName.ofProjectServiceName("[PROJECT]", "[SERVICE]").toString())
* .setFilter("filter-1274492040")
* .setPageSize(883849137)
* .setPageToken("pageToken873572522")
* .build();
* ApiFuture future =
* serviceMonitoringServiceClient
* .listServiceLevelObjectivesPagedCallable()
* .futureCall(request);
* // Do something.
* for (ServiceLevelObjective element : future.get().iterateAll()) {
* // doThingsWith(element);
* }
* }
* }
*/
public final UnaryCallable<
ListServiceLevelObjectivesRequest, ListServiceLevelObjectivesPagedResponse>
listServiceLevelObjectivesPagedCallable() {
return stub.listServiceLevelObjectivesPagedCallable();
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* List the `ServiceLevelObjective`s for the given `Service`.
*
* Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* ListServiceLevelObjectivesRequest request =
* ListServiceLevelObjectivesRequest.newBuilder()
* .setParent(ServiceName.ofProjectServiceName("[PROJECT]", "[SERVICE]").toString())
* .setFilter("filter-1274492040")
* .setPageSize(883849137)
* .setPageToken("pageToken873572522")
* .build();
* while (true) {
* ListServiceLevelObjectivesResponse response =
* serviceMonitoringServiceClient.listServiceLevelObjectivesCallable().call(request);
* for (ServiceLevelObjective element : response.getServiceLevelObjectivesList()) {
* // doThingsWith(element);
* }
* String nextPageToken = response.getNextPageToken();
* if (!Strings.isNullOrEmpty(nextPageToken)) {
* request = request.toBuilder().setPageToken(nextPageToken).build();
* } else {
* break;
* }
* }
* }
* }
*/
public final UnaryCallable
listServiceLevelObjectivesCallable() {
return stub.listServiceLevelObjectivesCallable();
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Update the given `ServiceLevelObjective`.
*
* Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* ServiceLevelObjective serviceLevelObjective = ServiceLevelObjective.newBuilder().build();
* ServiceLevelObjective response =
* serviceMonitoringServiceClient.updateServiceLevelObjective(serviceLevelObjective);
* }
* }
*
* @param serviceLevelObjective Required. The `ServiceLevelObjective` to draw updates from. The
* given `name` specifies the resource to update.
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final ServiceLevelObjective updateServiceLevelObjective(
ServiceLevelObjective serviceLevelObjective) {
UpdateServiceLevelObjectiveRequest request =
UpdateServiceLevelObjectiveRequest.newBuilder()
.setServiceLevelObjective(serviceLevelObjective)
.build();
return updateServiceLevelObjective(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Update the given `ServiceLevelObjective`.
*
* Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* UpdateServiceLevelObjectiveRequest request =
* UpdateServiceLevelObjectiveRequest.newBuilder()
* .setServiceLevelObjective(ServiceLevelObjective.newBuilder().build())
* .setUpdateMask(FieldMask.newBuilder().build())
* .build();
* ServiceLevelObjective response =
* serviceMonitoringServiceClient.updateServiceLevelObjective(request);
* }
* }
*
* @param request The request object containing all of the parameters for the API call.
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final ServiceLevelObjective updateServiceLevelObjective(
UpdateServiceLevelObjectiveRequest request) {
return updateServiceLevelObjectiveCallable().call(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Update the given `ServiceLevelObjective`.
*
* Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* UpdateServiceLevelObjectiveRequest request =
* UpdateServiceLevelObjectiveRequest.newBuilder()
* .setServiceLevelObjective(ServiceLevelObjective.newBuilder().build())
* .setUpdateMask(FieldMask.newBuilder().build())
* .build();
* ApiFuture future =
* serviceMonitoringServiceClient.updateServiceLevelObjectiveCallable().futureCall(request);
* // Do something.
* ServiceLevelObjective response = future.get();
* }
* }
*/
public final UnaryCallable
updateServiceLevelObjectiveCallable() {
return stub.updateServiceLevelObjectiveCallable();
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Delete the given `ServiceLevelObjective`.
*
* Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* ServiceLevelObjectiveName name =
* ServiceLevelObjectiveName.ofProjectServiceServiceLevelObjectiveName(
* "[PROJECT]", "[SERVICE]", "[SERVICE_LEVEL_OBJECTIVE]");
* serviceMonitoringServiceClient.deleteServiceLevelObjective(name);
* }
* }
*
* @param name Required. Resource name of the `ServiceLevelObjective` to delete. The format is:
* projects/[PROJECT_ID_OR_NUMBER]/services/[SERVICE_ID]/serviceLevelObjectives/[SLO_NAME]
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final void deleteServiceLevelObjective(ServiceLevelObjectiveName name) {
DeleteServiceLevelObjectiveRequest request =
DeleteServiceLevelObjectiveRequest.newBuilder()
.setName(name == null ? null : name.toString())
.build();
deleteServiceLevelObjective(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Delete the given `ServiceLevelObjective`.
*
*
Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* String name =
* ServiceLevelObjectiveName.ofProjectServiceServiceLevelObjectiveName(
* "[PROJECT]", "[SERVICE]", "[SERVICE_LEVEL_OBJECTIVE]")
* .toString();
* serviceMonitoringServiceClient.deleteServiceLevelObjective(name);
* }
* }
*
* @param name Required. Resource name of the `ServiceLevelObjective` to delete. The format is:
* projects/[PROJECT_ID_OR_NUMBER]/services/[SERVICE_ID]/serviceLevelObjectives/[SLO_NAME]
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final void deleteServiceLevelObjective(String name) {
DeleteServiceLevelObjectiveRequest request =
DeleteServiceLevelObjectiveRequest.newBuilder().setName(name).build();
deleteServiceLevelObjective(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Delete the given `ServiceLevelObjective`.
*
*
Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* DeleteServiceLevelObjectiveRequest request =
* DeleteServiceLevelObjectiveRequest.newBuilder()
* .setName(
* ServiceLevelObjectiveName.ofProjectServiceServiceLevelObjectiveName(
* "[PROJECT]", "[SERVICE]", "[SERVICE_LEVEL_OBJECTIVE]")
* .toString())
* .build();
* serviceMonitoringServiceClient.deleteServiceLevelObjective(request);
* }
* }
*
* @param request The request object containing all of the parameters for the API call.
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final void deleteServiceLevelObjective(DeleteServiceLevelObjectiveRequest request) {
deleteServiceLevelObjectiveCallable().call(request);
}
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Delete the given `ServiceLevelObjective`.
*
* Sample code:
*
*
{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* DeleteServiceLevelObjectiveRequest request =
* DeleteServiceLevelObjectiveRequest.newBuilder()
* .setName(
* ServiceLevelObjectiveName.ofProjectServiceServiceLevelObjectiveName(
* "[PROJECT]", "[SERVICE]", "[SERVICE_LEVEL_OBJECTIVE]")
* .toString())
* .build();
* ApiFuture future =
* serviceMonitoringServiceClient.deleteServiceLevelObjectiveCallable().futureCall(request);
* // Do something.
* future.get();
* }
* }
*/
public final UnaryCallable
deleteServiceLevelObjectiveCallable() {
return stub.deleteServiceLevelObjectiveCallable();
}
@Override
public final void close() {
stub.close();
}
@Override
public void shutdown() {
stub.shutdown();
}
@Override
public boolean isShutdown() {
return stub.isShutdown();
}
@Override
public boolean isTerminated() {
return stub.isTerminated();
}
@Override
public void shutdownNow() {
stub.shutdownNow();
}
@Override
public boolean awaitTermination(long duration, TimeUnit unit) throws InterruptedException {
return stub.awaitTermination(duration, unit);
}
public static class ListServicesPagedResponse
extends AbstractPagedListResponse<
ListServicesRequest,
ListServicesResponse,
Service,
ListServicesPage,
ListServicesFixedSizeCollection> {
public static ApiFuture createAsync(
PageContext context,
ApiFuture futureResponse) {
ApiFuture futurePage =
ListServicesPage.createEmptyPage().createPageAsync(context, futureResponse);
return ApiFutures.transform(
futurePage,
input -> new ListServicesPagedResponse(input),
MoreExecutors.directExecutor());
}
private ListServicesPagedResponse(ListServicesPage page) {
super(page, ListServicesFixedSizeCollection.createEmptyCollection());
}
}
public static class ListServicesPage
extends AbstractPage {
private ListServicesPage(
PageContext context,
ListServicesResponse response) {
super(context, response);
}
private static ListServicesPage createEmptyPage() {
return new ListServicesPage(null, null);
}
@Override
protected ListServicesPage createPage(
PageContext context,
ListServicesResponse response) {
return new ListServicesPage(context, response);
}
@Override
public ApiFuture createPageAsync(
PageContext context,
ApiFuture futureResponse) {
return super.createPageAsync(context, futureResponse);
}
}
public static class ListServicesFixedSizeCollection
extends AbstractFixedSizeCollection<
ListServicesRequest,
ListServicesResponse,
Service,
ListServicesPage,
ListServicesFixedSizeCollection> {
private ListServicesFixedSizeCollection(List pages, int collectionSize) {
super(pages, collectionSize);
}
private static ListServicesFixedSizeCollection createEmptyCollection() {
return new ListServicesFixedSizeCollection(null, 0);
}
@Override
protected ListServicesFixedSizeCollection createCollection(
List pages, int collectionSize) {
return new ListServicesFixedSizeCollection(pages, collectionSize);
}
}
public static class ListServiceLevelObjectivesPagedResponse
extends AbstractPagedListResponse<
ListServiceLevelObjectivesRequest,
ListServiceLevelObjectivesResponse,
ServiceLevelObjective,
ListServiceLevelObjectivesPage,
ListServiceLevelObjectivesFixedSizeCollection> {
public static ApiFuture createAsync(
PageContext<
ListServiceLevelObjectivesRequest,
ListServiceLevelObjectivesResponse,
ServiceLevelObjective>
context,
ApiFuture futureResponse) {
ApiFuture futurePage =
ListServiceLevelObjectivesPage.createEmptyPage().createPageAsync(context, futureResponse);
return ApiFutures.transform(
futurePage,
input -> new ListServiceLevelObjectivesPagedResponse(input),
MoreExecutors.directExecutor());
}
private ListServiceLevelObjectivesPagedResponse(ListServiceLevelObjectivesPage page) {
super(page, ListServiceLevelObjectivesFixedSizeCollection.createEmptyCollection());
}
}
public static class ListServiceLevelObjectivesPage
extends AbstractPage<
ListServiceLevelObjectivesRequest,
ListServiceLevelObjectivesResponse,
ServiceLevelObjective,
ListServiceLevelObjectivesPage> {
private ListServiceLevelObjectivesPage(
PageContext<
ListServiceLevelObjectivesRequest,
ListServiceLevelObjectivesResponse,
ServiceLevelObjective>
context,
ListServiceLevelObjectivesResponse response) {
super(context, response);
}
private static ListServiceLevelObjectivesPage createEmptyPage() {
return new ListServiceLevelObjectivesPage(null, null);
}
@Override
protected ListServiceLevelObjectivesPage createPage(
PageContext<
ListServiceLevelObjectivesRequest,
ListServiceLevelObjectivesResponse,
ServiceLevelObjective>
context,
ListServiceLevelObjectivesResponse response) {
return new ListServiceLevelObjectivesPage(context, response);
}
@Override
public ApiFuture createPageAsync(
PageContext<
ListServiceLevelObjectivesRequest,
ListServiceLevelObjectivesResponse,
ServiceLevelObjective>
context,
ApiFuture futureResponse) {
return super.createPageAsync(context, futureResponse);
}
}
public static class ListServiceLevelObjectivesFixedSizeCollection
extends AbstractFixedSizeCollection<
ListServiceLevelObjectivesRequest,
ListServiceLevelObjectivesResponse,
ServiceLevelObjective,
ListServiceLevelObjectivesPage,
ListServiceLevelObjectivesFixedSizeCollection> {
private ListServiceLevelObjectivesFixedSizeCollection(
List pages, int collectionSize) {
super(pages, collectionSize);
}
private static ListServiceLevelObjectivesFixedSizeCollection createEmptyCollection() {
return new ListServiceLevelObjectivesFixedSizeCollection(null, 0);
}
@Override
protected ListServiceLevelObjectivesFixedSizeCollection createCollection(
List pages, int collectionSize) {
return new ListServiceLevelObjectivesFixedSizeCollection(pages, collectionSize);
}
}
}