@Generated(value="by gapic-generator-java") public class DashboardsServiceClient extends Object implements com.google.api.gax.core.BackgroundResource
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:
// 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 (DashboardsServiceClient dashboardsServiceClient = DashboardsServiceClient.create()) {
ProjectName parent = ProjectName.of("[PROJECT]");
Dashboard dashboard = Dashboard.newBuilder().build();
Dashboard response = dashboardsServiceClient.createDashboard(parent, dashboard);
}
Note: close() needs to be called on the DashboardsServiceClient object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().
| Method | Description | Method Variants |
|---|---|---|
CreateDashboard |
Creates a new custom dashboard. For examples on how you can use this API to create dashboards, see [Managing dashboards by API](https://cloud.google.com/monitoring/dashboards/api-dashboard). This method requires the `monitoring.dashboards.create` permission on the specified project. For more information about permissions, see [Cloud Identity and Access Management](https://cloud.google.com/iam). |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
ListDashboards |
Lists the existing dashboards. This method requires the `monitoring.dashboards.list` permission on the specified project. For more information, see [Cloud Identity and Access Management](https://cloud.google.com/iam). |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
GetDashboard |
Fetches a specific dashboard. This method requires the `monitoring.dashboards.get` permission on the specified dashboard. For more information, see [Cloud Identity and Access Management](https://cloud.google.com/iam). |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
DeleteDashboard |
Deletes an existing custom dashboard. This method requires the `monitoring.dashboards.delete` permission on the specified dashboard. For more information, see [Cloud Identity and Access Management](https://cloud.google.com/iam). |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
UpdateDashboard |
Replaces an existing custom dashboard with a new definition. This method requires the `monitoring.dashboards.update` permission on the specified dashboard. For more information, see [Cloud Identity and Access Management](https://cloud.google.com/iam). |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
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 DashboardsServiceSettings to create(). For example:
To customize credentials:
// 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
DashboardsServiceSettings dashboardsServiceSettings =
DashboardsServiceSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
DashboardsServiceClient dashboardsServiceClient =
DashboardsServiceClient.create(dashboardsServiceSettings);
To customize the endpoint:
// 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
DashboardsServiceSettings dashboardsServiceSettings =
DashboardsServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
DashboardsServiceClient dashboardsServiceClient =
DashboardsServiceClient.create(dashboardsServiceSettings);
To use REST (HTTP1.1/JSON) transport (instead of gRPC) for sending and receiving requests over the wire:
// 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
DashboardsServiceSettings dashboardsServiceSettings =
DashboardsServiceSettings.newHttpJsonBuilder().build();
DashboardsServiceClient dashboardsServiceClient =
DashboardsServiceClient.create(dashboardsServiceSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
| Modifier and Type | Class and Description |
|---|---|
static class |
DashboardsServiceClient.ListDashboardsFixedSizeCollection |
static class |
DashboardsServiceClient.ListDashboardsPage |
static class |
DashboardsServiceClient.ListDashboardsPagedResponse |
| Modifier | Constructor and Description |
|---|---|
protected |
DashboardsServiceClient(DashboardsServiceSettings settings)
Constructs an instance of DashboardsServiceClient, using the given settings.
|
protected |
DashboardsServiceClient(DashboardsServiceStub stub) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
awaitTermination(long duration,
TimeUnit unit) |
void |
close() |
static DashboardsServiceClient |
create()
Constructs an instance of DashboardsServiceClient with default settings.
|
static DashboardsServiceClient |
create(DashboardsServiceSettings settings)
Constructs an instance of DashboardsServiceClient, using the given settings.
|
static DashboardsServiceClient |
create(DashboardsServiceStub stub)
Constructs an instance of DashboardsServiceClient, using the given stub for making calls.
|
Dashboard |
createDashboard(CreateDashboardRequest request)
Creates a new custom dashboard.
|
Dashboard |
createDashboard(ProjectName parent,
Dashboard dashboard)
Creates a new custom dashboard.
|
Dashboard |
createDashboard(String parent,
Dashboard dashboard)
Creates a new custom dashboard.
|
com.google.api.gax.rpc.UnaryCallable<CreateDashboardRequest,Dashboard> |
createDashboardCallable()
Creates a new custom dashboard.
|
void |
deleteDashboard(DashboardName name)
Deletes an existing custom dashboard.
|
void |
deleteDashboard(DeleteDashboardRequest request)
Deletes an existing custom dashboard.
|
void |
deleteDashboard(String name)
Deletes an existing custom dashboard.
|
com.google.api.gax.rpc.UnaryCallable<DeleteDashboardRequest,com.google.protobuf.Empty> |
deleteDashboardCallable()
Deletes an existing custom dashboard.
|
Dashboard |
getDashboard(DashboardName name)
Fetches a specific dashboard.
|
Dashboard |
getDashboard(GetDashboardRequest request)
Fetches a specific dashboard.
|
Dashboard |
getDashboard(String name)
Fetches a specific dashboard.
|
com.google.api.gax.rpc.UnaryCallable<GetDashboardRequest,Dashboard> |
getDashboardCallable()
Fetches a specific dashboard.
|
DashboardsServiceSettings |
getSettings() |
DashboardsServiceStub |
getStub() |
boolean |
isShutdown() |
boolean |
isTerminated() |
DashboardsServiceClient.ListDashboardsPagedResponse |
listDashboards(ListDashboardsRequest request)
Lists the existing dashboards.
|
DashboardsServiceClient.ListDashboardsPagedResponse |
listDashboards(ProjectName parent)
Lists the existing dashboards.
|
DashboardsServiceClient.ListDashboardsPagedResponse |
listDashboards(String parent)
Lists the existing dashboards.
|
com.google.api.gax.rpc.UnaryCallable<ListDashboardsRequest,ListDashboardsResponse> |
listDashboardsCallable()
Lists the existing dashboards.
|
com.google.api.gax.rpc.UnaryCallable<ListDashboardsRequest,DashboardsServiceClient.ListDashboardsPagedResponse> |
listDashboardsPagedCallable()
Lists the existing dashboards.
|
void |
shutdown() |
void |
shutdownNow() |
Dashboard |
updateDashboard(UpdateDashboardRequest request)
Replaces an existing custom dashboard with a new definition.
|
com.google.api.gax.rpc.UnaryCallable<UpdateDashboardRequest,Dashboard> |
updateDashboardCallable()
Replaces an existing custom dashboard with a new definition.
|
protected DashboardsServiceClient(DashboardsServiceSettings settings) throws IOException
IOExceptionprotected DashboardsServiceClient(DashboardsServiceStub stub)
public static final DashboardsServiceClient create() throws IOException
IOExceptionpublic static final DashboardsServiceClient create(DashboardsServiceSettings settings) throws IOException
IOExceptionpublic static final DashboardsServiceClient create(DashboardsServiceStub stub)
public final DashboardsServiceSettings getSettings()
public DashboardsServiceStub getStub()
public final Dashboard createDashboard(ProjectName parent, Dashboard dashboard)
Sample 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 (DashboardsServiceClient dashboardsServiceClient = DashboardsServiceClient.create()) {
ProjectName parent = ProjectName.of("[PROJECT]");
Dashboard dashboard = Dashboard.newBuilder().build();
Dashboard response = dashboardsServiceClient.createDashboard(parent, dashboard);
}
parent - Required. The project on which to execute the request. The format is:
projects/[PROJECT_ID_OR_NUMBER]
The `[PROJECT_ID_OR_NUMBER]` must match the dashboard resource name.
dashboard - Required. The initial dashboard specification.com.google.api.gax.rpc.ApiException - if the remote call failspublic final Dashboard createDashboard(String parent, Dashboard dashboard)
Sample 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 (DashboardsServiceClient dashboardsServiceClient = DashboardsServiceClient.create()) {
String parent = ProjectName.of("[PROJECT]").toString();
Dashboard dashboard = Dashboard.newBuilder().build();
Dashboard response = dashboardsServiceClient.createDashboard(parent, dashboard);
}
parent - Required. The project on which to execute the request. The format is:
projects/[PROJECT_ID_OR_NUMBER]
The `[PROJECT_ID_OR_NUMBER]` must match the dashboard resource name.
dashboard - Required. The initial dashboard specification.com.google.api.gax.rpc.ApiException - if the remote call failspublic final Dashboard createDashboard(CreateDashboardRequest request)
Sample 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 (DashboardsServiceClient dashboardsServiceClient = DashboardsServiceClient.create()) {
CreateDashboardRequest request =
CreateDashboardRequest.newBuilder()
.setParent(ProjectName.of("[PROJECT]").toString())
.setDashboard(Dashboard.newBuilder().build())
.setValidateOnly(true)
.build();
Dashboard response = dashboardsServiceClient.createDashboard(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<CreateDashboardRequest,Dashboard> createDashboardCallable()
Sample 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 (DashboardsServiceClient dashboardsServiceClient = DashboardsServiceClient.create()) {
CreateDashboardRequest request =
CreateDashboardRequest.newBuilder()
.setParent(ProjectName.of("[PROJECT]").toString())
.setDashboard(Dashboard.newBuilder().build())
.setValidateOnly(true)
.build();
ApiFuture<Dashboard> future =
dashboardsServiceClient.createDashboardCallable().futureCall(request);
// Do something.
Dashboard response = future.get();
}
public final DashboardsServiceClient.ListDashboardsPagedResponse listDashboards(ProjectName parent)
This method requires the `monitoring.dashboards.list` permission on the specified project. For more information, see [Cloud Identity and Access Management](https://cloud.google.com/iam).
Sample 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 (DashboardsServiceClient dashboardsServiceClient = DashboardsServiceClient.create()) {
ProjectName parent = ProjectName.of("[PROJECT]");
for (Dashboard element : dashboardsServiceClient.listDashboards(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent - Required. The scope of the dashboards to list. The format is:
projects/[PROJECT_ID_OR_NUMBER]
com.google.api.gax.rpc.ApiException - if the remote call failspublic final DashboardsServiceClient.ListDashboardsPagedResponse listDashboards(String parent)
This method requires the `monitoring.dashboards.list` permission on the specified project. For more information, see [Cloud Identity and Access Management](https://cloud.google.com/iam).
Sample 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 (DashboardsServiceClient dashboardsServiceClient = DashboardsServiceClient.create()) {
String parent = ProjectName.of("[PROJECT]").toString();
for (Dashboard element : dashboardsServiceClient.listDashboards(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent - Required. The scope of the dashboards to list. The format is:
projects/[PROJECT_ID_OR_NUMBER]
com.google.api.gax.rpc.ApiException - if the remote call failspublic final DashboardsServiceClient.ListDashboardsPagedResponse listDashboards(ListDashboardsRequest request)
This method requires the `monitoring.dashboards.list` permission on the specified project. For more information, see [Cloud Identity and Access Management](https://cloud.google.com/iam).
Sample 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 (DashboardsServiceClient dashboardsServiceClient = DashboardsServiceClient.create()) {
ListDashboardsRequest request =
ListDashboardsRequest.newBuilder()
.setParent(ProjectName.of("[PROJECT]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for (Dashboard element : dashboardsServiceClient.listDashboards(request).iterateAll()) {
// doThingsWith(element);
}
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<ListDashboardsRequest,DashboardsServiceClient.ListDashboardsPagedResponse> listDashboardsPagedCallable()
This method requires the `monitoring.dashboards.list` permission on the specified project. For more information, see [Cloud Identity and Access Management](https://cloud.google.com/iam).
Sample 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 (DashboardsServiceClient dashboardsServiceClient = DashboardsServiceClient.create()) {
ListDashboardsRequest request =
ListDashboardsRequest.newBuilder()
.setParent(ProjectName.of("[PROJECT]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<Dashboard> future =
dashboardsServiceClient.listDashboardsPagedCallable().futureCall(request);
// Do something.
for (Dashboard element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final com.google.api.gax.rpc.UnaryCallable<ListDashboardsRequest,ListDashboardsResponse> listDashboardsCallable()
This method requires the `monitoring.dashboards.list` permission on the specified project. For more information, see [Cloud Identity and Access Management](https://cloud.google.com/iam).
Sample 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 (DashboardsServiceClient dashboardsServiceClient = DashboardsServiceClient.create()) {
ListDashboardsRequest request =
ListDashboardsRequest.newBuilder()
.setParent(ProjectName.of("[PROJECT]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while (true) {
ListDashboardsResponse response =
dashboardsServiceClient.listDashboardsCallable().call(request);
for (Dashboard element : response.getDashboardsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
public final Dashboard getDashboard(DashboardName name)
This method requires the `monitoring.dashboards.get` permission on the specified dashboard. For more information, see [Cloud Identity and Access Management](https://cloud.google.com/iam).
Sample 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 (DashboardsServiceClient dashboardsServiceClient = DashboardsServiceClient.create()) {
DashboardName name = DashboardName.of("[PROJECT]", "[DASHBOARD]");
Dashboard response = dashboardsServiceClient.getDashboard(name);
}
name - Required. The resource name of the Dashboard. The format is one of:
- `dashboards/[DASHBOARD_ID]` (for system dashboards) - `projects/[PROJECT_ID_OR_NUMBER]/dashboards/[DASHBOARD_ID]` (for custom dashboards).
com.google.api.gax.rpc.ApiException - if the remote call failspublic final Dashboard getDashboard(String name)
This method requires the `monitoring.dashboards.get` permission on the specified dashboard. For more information, see [Cloud Identity and Access Management](https://cloud.google.com/iam).
Sample 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 (DashboardsServiceClient dashboardsServiceClient = DashboardsServiceClient.create()) {
String name = DashboardName.of("[PROJECT]", "[DASHBOARD]").toString();
Dashboard response = dashboardsServiceClient.getDashboard(name);
}
name - Required. The resource name of the Dashboard. The format is one of:
- `dashboards/[DASHBOARD_ID]` (for system dashboards) - `projects/[PROJECT_ID_OR_NUMBER]/dashboards/[DASHBOARD_ID]` (for custom dashboards).
com.google.api.gax.rpc.ApiException - if the remote call failspublic final Dashboard getDashboard(GetDashboardRequest request)
This method requires the `monitoring.dashboards.get` permission on the specified dashboard. For more information, see [Cloud Identity and Access Management](https://cloud.google.com/iam).
Sample 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 (DashboardsServiceClient dashboardsServiceClient = DashboardsServiceClient.create()) {
GetDashboardRequest request =
GetDashboardRequest.newBuilder()
.setName(DashboardName.of("[PROJECT]", "[DASHBOARD]").toString())
.build();
Dashboard response = dashboardsServiceClient.getDashboard(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<GetDashboardRequest,Dashboard> getDashboardCallable()
This method requires the `monitoring.dashboards.get` permission on the specified dashboard. For more information, see [Cloud Identity and Access Management](https://cloud.google.com/iam).
Sample 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 (DashboardsServiceClient dashboardsServiceClient = DashboardsServiceClient.create()) {
GetDashboardRequest request =
GetDashboardRequest.newBuilder()
.setName(DashboardName.of("[PROJECT]", "[DASHBOARD]").toString())
.build();
ApiFuture<Dashboard> future =
dashboardsServiceClient.getDashboardCallable().futureCall(request);
// Do something.
Dashboard response = future.get();
}
public final void deleteDashboard(DashboardName name)
This method requires the `monitoring.dashboards.delete` permission on the specified dashboard. For more information, see [Cloud Identity and Access Management](https://cloud.google.com/iam).
Sample 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 (DashboardsServiceClient dashboardsServiceClient = DashboardsServiceClient.create()) {
DashboardName name = DashboardName.of("[PROJECT]", "[DASHBOARD]");
dashboardsServiceClient.deleteDashboard(name);
}
name - Required. The resource name of the Dashboard. The format is:
projects/[PROJECT_ID_OR_NUMBER]/dashboards/[DASHBOARD_ID]
com.google.api.gax.rpc.ApiException - if the remote call failspublic final void deleteDashboard(String name)
This method requires the `monitoring.dashboards.delete` permission on the specified dashboard. For more information, see [Cloud Identity and Access Management](https://cloud.google.com/iam).
Sample 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 (DashboardsServiceClient dashboardsServiceClient = DashboardsServiceClient.create()) {
String name = DashboardName.of("[PROJECT]", "[DASHBOARD]").toString();
dashboardsServiceClient.deleteDashboard(name);
}
name - Required. The resource name of the Dashboard. The format is:
projects/[PROJECT_ID_OR_NUMBER]/dashboards/[DASHBOARD_ID]
com.google.api.gax.rpc.ApiException - if the remote call failspublic final void deleteDashboard(DeleteDashboardRequest request)
This method requires the `monitoring.dashboards.delete` permission on the specified dashboard. For more information, see [Cloud Identity and Access Management](https://cloud.google.com/iam).
Sample 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 (DashboardsServiceClient dashboardsServiceClient = DashboardsServiceClient.create()) {
DeleteDashboardRequest request =
DeleteDashboardRequest.newBuilder()
.setName(DashboardName.of("[PROJECT]", "[DASHBOARD]").toString())
.build();
dashboardsServiceClient.deleteDashboard(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<DeleteDashboardRequest,com.google.protobuf.Empty> deleteDashboardCallable()
This method requires the `monitoring.dashboards.delete` permission on the specified dashboard. For more information, see [Cloud Identity and Access Management](https://cloud.google.com/iam).
Sample 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 (DashboardsServiceClient dashboardsServiceClient = DashboardsServiceClient.create()) {
DeleteDashboardRequest request =
DeleteDashboardRequest.newBuilder()
.setName(DashboardName.of("[PROJECT]", "[DASHBOARD]").toString())
.build();
ApiFuture<Empty> future =
dashboardsServiceClient.deleteDashboardCallable().futureCall(request);
// Do something.
future.get();
}
public final Dashboard updateDashboard(UpdateDashboardRequest request)
This method requires the `monitoring.dashboards.update` permission on the specified dashboard. For more information, see [Cloud Identity and Access Management](https://cloud.google.com/iam).
Sample 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 (DashboardsServiceClient dashboardsServiceClient = DashboardsServiceClient.create()) {
UpdateDashboardRequest request =
UpdateDashboardRequest.newBuilder()
.setDashboard(Dashboard.newBuilder().build())
.setValidateOnly(true)
.build();
Dashboard response = dashboardsServiceClient.updateDashboard(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<UpdateDashboardRequest,Dashboard> updateDashboardCallable()
This method requires the `monitoring.dashboards.update` permission on the specified dashboard. For more information, see [Cloud Identity and Access Management](https://cloud.google.com/iam).
Sample 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 (DashboardsServiceClient dashboardsServiceClient = DashboardsServiceClient.create()) {
UpdateDashboardRequest request =
UpdateDashboardRequest.newBuilder()
.setDashboard(Dashboard.newBuilder().build())
.setValidateOnly(true)
.build();
ApiFuture<Dashboard> future =
dashboardsServiceClient.updateDashboardCallable().futureCall(request);
// Do something.
Dashboard response = future.get();
}
public final void close()
close in interface AutoCloseablepublic void shutdown()
shutdown in interface com.google.api.gax.core.BackgroundResourcepublic boolean isShutdown()
isShutdown in interface com.google.api.gax.core.BackgroundResourcepublic boolean isTerminated()
isTerminated in interface com.google.api.gax.core.BackgroundResourcepublic void shutdownNow()
shutdownNow in interface com.google.api.gax.core.BackgroundResourcepublic boolean awaitTermination(long duration,
TimeUnit unit)
throws InterruptedException
awaitTermination in interface com.google.api.gax.core.BackgroundResourceInterruptedExceptionCopyright © 2024 Google LLC. All rights reserved.