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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * EventName name = EventName.of("[PROJECT]", "[LOCATION]", "[EVENT]");
+ * Event response = serviceHealthClient.getEvent(name);
+ * }
+ * }
+ *
+ * Note: close() needs to be called on the ServiceHealthClient 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 | + *
|---|---|---|
ListEvents |
+ * Lists events under a given project and location. |
+ *
+ * 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. + *
|
+ *
GetEvent |
+ * Retrieves a resource containing information about an event. |
+ *
+ * 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. + *
|
+ *
ListOrganizationEvents |
+ * Lists organization events under a given organization and location. |
+ *
+ * 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. + *
|
+ *
GetOrganizationEvent |
+ * Retrieves a resource containing information about an event affecting an organization . |
+ *
+ * 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. + *
|
+ *
ListOrganizationImpacts |
+ * Lists assets impacted by organization events under a given organization and location. |
+ *
+ * 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. + *
|
+ *
GetOrganizationImpact |
+ * Retrieves a resource containing information about impact to an asset under an organization affected by a service health event. |
+ *
+ * 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. + *
|
+ *
ListLocations |
+ * Lists information about the supported locations for this service. |
+ *
+ * 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. + *
|
+ *
GetLocation |
+ * Gets information about a location. |
+ *
+ * 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 ServiceHealthSettings 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
+ * ServiceHealthSettings serviceHealthSettings =
+ * ServiceHealthSettings.newBuilder()
+ * .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
+ * .build();
+ * ServiceHealthClient serviceHealthClient = ServiceHealthClient.create(serviceHealthSettings);
+ * }
+ *
+ * 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
+ * ServiceHealthSettings serviceHealthSettings =
+ * ServiceHealthSettings.newBuilder().setEndpoint(myEndpoint).build();
+ * ServiceHealthClient serviceHealthClient = ServiceHealthClient.create(serviceHealthSettings);
+ * }
+ *
+ * To use REST (HTTP1.1/JSON) transport (instead of gRPC) for sending and receiving requests over + * the wire: + * + *
{@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
+ * ServiceHealthSettings serviceHealthSettings =
+ * ServiceHealthSettings.newHttpJsonBuilder().build();
+ * ServiceHealthClient serviceHealthClient = ServiceHealthClient.create(serviceHealthSettings);
+ * }
+ *
+ * Please refer to the GitHub repository's samples for more quickstart code snippets. + */ +@Generated("by gapic-generator-java") +public class ServiceHealthClient implements BackgroundResource { + private final ServiceHealthSettings settings; + private final ServiceHealthStub stub; + + /** Constructs an instance of ServiceHealthClient with default settings. */ + public static final ServiceHealthClient create() throws IOException { + return create(ServiceHealthSettings.newBuilder().build()); + } + + /** + * Constructs an instance of ServiceHealthClient, 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 ServiceHealthClient create(ServiceHealthSettings settings) + throws IOException { + return new ServiceHealthClient(settings); + } + + /** + * Constructs an instance of ServiceHealthClient, using the given stub for making calls. This is + * for advanced usage - prefer using create(ServiceHealthSettings). + */ + public static final ServiceHealthClient create(ServiceHealthStub stub) { + return new ServiceHealthClient(stub); + } + + /** + * Constructs an instance of ServiceHealthClient, 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 ServiceHealthClient(ServiceHealthSettings settings) throws IOException { + this.settings = settings; + this.stub = ((ServiceHealthStubSettings) settings.getStubSettings()).createStub(); + } + + protected ServiceHealthClient(ServiceHealthStub stub) { + this.settings = null; + this.stub = stub; + } + + public final ServiceHealthSettings getSettings() { + return settings; + } + + public ServiceHealthStub getStub() { + return stub; + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Lists events under a given project and location. + * + *
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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
+ * for (Event element : serviceHealthClient.listEvents(parent).iterateAll()) {
+ * // doThingsWith(element);
+ * }
+ * }
+ * }
+ *
+ * @param parent Required. Parent value using the form
+ * `projects/{project_id}/locations/{location}/events`.
+ * `project_id` - ID of the project for which to list service health events. `location` - + * The location to get the service health events from. To retrieve service health events of + * category = INCIDENT, use `location` = `global`. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final ListEventsPagedResponse listEvents(LocationName parent) { + ListEventsRequest request = + ListEventsRequest.newBuilder().setParent(parent == null ? null : parent.toString()).build(); + return listEvents(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Lists events under a given project and location. + * + *
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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
+ * for (Event element : serviceHealthClient.listEvents(parent).iterateAll()) {
+ * // doThingsWith(element);
+ * }
+ * }
+ * }
+ *
+ * @param parent Required. Parent value using the form
+ * `projects/{project_id}/locations/{location}/events`.
+ * `project_id` - ID of the project for which to list service health events. `location` - + * The location to get the service health events from. To retrieve service health events of + * category = INCIDENT, use `location` = `global`. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final ListEventsPagedResponse listEvents(String parent) { + ListEventsRequest request = ListEventsRequest.newBuilder().setParent(parent).build(); + return listEvents(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Lists events under a given project and location. + * + *
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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * ListEventsRequest request =
+ * ListEventsRequest.newBuilder()
+ * .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
+ * .setPageSize(883849137)
+ * .setPageToken("pageToken873572522")
+ * .setFilter("filter-1274492040")
+ * .setView(EventView.forNumber(0))
+ * .build();
+ * for (Event element : serviceHealthClient.listEvents(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 ListEventsPagedResponse listEvents(ListEventsRequest request) {
+ return listEventsPagedCallable().call(request);
+ }
+
+ // AUTO-GENERATED DOCUMENTATION AND METHOD.
+ /**
+ * Lists events under a given project and location.
+ *
+ * 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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * ListEventsRequest request =
+ * ListEventsRequest.newBuilder()
+ * .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
+ * .setPageSize(883849137)
+ * .setPageToken("pageToken873572522")
+ * .setFilter("filter-1274492040")
+ * .setView(EventView.forNumber(0))
+ * .build();
+ * ApiFuture future = serviceHealthClient.listEventsPagedCallable().futureCall(request);
+ * // Do something.
+ * for (Event element : future.get().iterateAll()) {
+ * // doThingsWith(element);
+ * }
+ * }
+ * }
+ */
+ public final UnaryCallableSample 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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * ListEventsRequest request =
+ * ListEventsRequest.newBuilder()
+ * .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
+ * .setPageSize(883849137)
+ * .setPageToken("pageToken873572522")
+ * .setFilter("filter-1274492040")
+ * .setView(EventView.forNumber(0))
+ * .build();
+ * while (true) {
+ * ListEventsResponse response = serviceHealthClient.listEventsCallable().call(request);
+ * for (Event element : response.getEventsList()) {
+ * // doThingsWith(element);
+ * }
+ * String nextPageToken = response.getNextPageToken();
+ * if (!Strings.isNullOrEmpty(nextPageToken)) {
+ * request = request.toBuilder().setPageToken(nextPageToken).build();
+ * } else {
+ * break;
+ * }
+ * }
+ * }
+ * }
+ */
+ public final UnaryCallableSample 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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * EventName name = EventName.of("[PROJECT]", "[LOCATION]", "[EVENT]");
+ * Event response = serviceHealthClient.getEvent(name);
+ * }
+ * }
+ *
+ * @param name Required. Unique name of the event in this scope including project and location
+ * using the form `projects/{project_id}/locations/{location}/events/{event_id}`.
+ * `project_id` - Project ID of the project that contains the event. <br> `location` + * - The location to get the service health events from. <br> `event_id` - Event ID to + * retrieve. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final Event getEvent(EventName name) { + GetEventRequest request = + GetEventRequest.newBuilder().setName(name == null ? null : name.toString()).build(); + return getEvent(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Retrieves a resource containing information about an event. + * + *
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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * String name = EventName.of("[PROJECT]", "[LOCATION]", "[EVENT]").toString();
+ * Event response = serviceHealthClient.getEvent(name);
+ * }
+ * }
+ *
+ * @param name Required. Unique name of the event in this scope including project and location
+ * using the form `projects/{project_id}/locations/{location}/events/{event_id}`.
+ * `project_id` - Project ID of the project that contains the event. <br> `location` + * - The location to get the service health events from. <br> `event_id` - Event ID to + * retrieve. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final Event getEvent(String name) { + GetEventRequest request = GetEventRequest.newBuilder().setName(name).build(); + return getEvent(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Retrieves a resource containing information about an event. + * + *
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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * GetEventRequest request =
+ * GetEventRequest.newBuilder()
+ * .setName(EventName.of("[PROJECT]", "[LOCATION]", "[EVENT]").toString())
+ * .build();
+ * Event response = serviceHealthClient.getEvent(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 Event getEvent(GetEventRequest request) {
+ return getEventCallable().call(request);
+ }
+
+ // AUTO-GENERATED DOCUMENTATION AND METHOD.
+ /**
+ * Retrieves a resource containing information about an event.
+ *
+ * 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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * GetEventRequest request =
+ * GetEventRequest.newBuilder()
+ * .setName(EventName.of("[PROJECT]", "[LOCATION]", "[EVENT]").toString())
+ * .build();
+ * ApiFuture future = serviceHealthClient.getEventCallable().futureCall(request);
+ * // Do something.
+ * Event response = future.get();
+ * }
+ * }
+ */
+ public final UnaryCallableSample 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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * OrganizationLocationName parent = OrganizationLocationName.of("[ORGANIZATION]", "[LOCATION]");
+ * for (OrganizationEvent element :
+ * serviceHealthClient.listOrganizationEvents(parent).iterateAll()) {
+ * // doThingsWith(element);
+ * }
+ * }
+ * }
+ *
+ * @param parent Required. Parent value using the form
+ * `organizations/{organization_id}/locations/{location}/organizationEvents`.
+ * `organization_id` - ID (number) of the project that contains the event. To get your + * `organization_id`, see [Getting your organization resource + * ID](https://cloud.google.com/resource-manager/docs/creating-managing-organization#retrieving_your_organization_id).<br> + * `location` - The location to get the service health events from. To retrieve service health + * events of category = INCIDENT, use `location` = `global`. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final ListOrganizationEventsPagedResponse listOrganizationEvents( + OrganizationLocationName parent) { + ListOrganizationEventsRequest request = + ListOrganizationEventsRequest.newBuilder() + .setParent(parent == null ? null : parent.toString()) + .build(); + return listOrganizationEvents(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Lists organization events under a given organization and location. + * + *
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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * String parent = OrganizationLocationName.of("[ORGANIZATION]", "[LOCATION]").toString();
+ * for (OrganizationEvent element :
+ * serviceHealthClient.listOrganizationEvents(parent).iterateAll()) {
+ * // doThingsWith(element);
+ * }
+ * }
+ * }
+ *
+ * @param parent Required. Parent value using the form
+ * `organizations/{organization_id}/locations/{location}/organizationEvents`.
+ * `organization_id` - ID (number) of the project that contains the event. To get your + * `organization_id`, see [Getting your organization resource + * ID](https://cloud.google.com/resource-manager/docs/creating-managing-organization#retrieving_your_organization_id).<br> + * `location` - The location to get the service health events from. To retrieve service health + * events of category = INCIDENT, use `location` = `global`. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final ListOrganizationEventsPagedResponse listOrganizationEvents(String parent) { + ListOrganizationEventsRequest request = + ListOrganizationEventsRequest.newBuilder().setParent(parent).build(); + return listOrganizationEvents(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Lists organization events under a given organization and location. + * + *
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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * ListOrganizationEventsRequest request =
+ * ListOrganizationEventsRequest.newBuilder()
+ * .setParent(OrganizationLocationName.of("[ORGANIZATION]", "[LOCATION]").toString())
+ * .setPageSize(883849137)
+ * .setPageToken("pageToken873572522")
+ * .setFilter("filter-1274492040")
+ * .setView(OrganizationEventView.forNumber(0))
+ * .build();
+ * for (OrganizationEvent element :
+ * serviceHealthClient.listOrganizationEvents(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 ListOrganizationEventsPagedResponse listOrganizationEvents(
+ ListOrganizationEventsRequest request) {
+ return listOrganizationEventsPagedCallable().call(request);
+ }
+
+ // AUTO-GENERATED DOCUMENTATION AND METHOD.
+ /**
+ * Lists organization events under a given organization and location.
+ *
+ * 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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * ListOrganizationEventsRequest request =
+ * ListOrganizationEventsRequest.newBuilder()
+ * .setParent(OrganizationLocationName.of("[ORGANIZATION]", "[LOCATION]").toString())
+ * .setPageSize(883849137)
+ * .setPageToken("pageToken873572522")
+ * .setFilter("filter-1274492040")
+ * .setView(OrganizationEventView.forNumber(0))
+ * .build();
+ * ApiFuture future =
+ * serviceHealthClient.listOrganizationEventsPagedCallable().futureCall(request);
+ * // Do something.
+ * for (OrganizationEvent element : future.get().iterateAll()) {
+ * // doThingsWith(element);
+ * }
+ * }
+ * }
+ */
+ public final UnaryCallableSample 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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * ListOrganizationEventsRequest request =
+ * ListOrganizationEventsRequest.newBuilder()
+ * .setParent(OrganizationLocationName.of("[ORGANIZATION]", "[LOCATION]").toString())
+ * .setPageSize(883849137)
+ * .setPageToken("pageToken873572522")
+ * .setFilter("filter-1274492040")
+ * .setView(OrganizationEventView.forNumber(0))
+ * .build();
+ * while (true) {
+ * ListOrganizationEventsResponse response =
+ * serviceHealthClient.listOrganizationEventsCallable().call(request);
+ * for (OrganizationEvent element : response.getOrganizationEventsList()) {
+ * // doThingsWith(element);
+ * }
+ * String nextPageToken = response.getNextPageToken();
+ * if (!Strings.isNullOrEmpty(nextPageToken)) {
+ * request = request.toBuilder().setPageToken(nextPageToken).build();
+ * } else {
+ * break;
+ * }
+ * }
+ * }
+ * }
+ */
+ public final UnaryCallableSample 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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * OrganizationEventName name =
+ * OrganizationEventName.of("[ORGANIZATION]", "[LOCATION]", "[EVENT]");
+ * OrganizationEvent response = serviceHealthClient.getOrganizationEvent(name);
+ * }
+ * }
+ *
+ * @param name Required. Unique name of the event in this scope including organization and event
+ * ID using the form
+ * `organizations/{organization_id}/locations/locations/global/organizationEvents/{event_id}`.
+ * `organization_id` - ID (number) of the project that contains the event. To get your + * `organization_id`, see [Getting your organization resource + * ID](https://cloud.google.com/resource-manager/docs/creating-managing-organization#retrieving_your_organization_id).<br> + * `event_id` - Organization event ID to retrieve. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final OrganizationEvent getOrganizationEvent(OrganizationEventName name) { + GetOrganizationEventRequest request = + GetOrganizationEventRequest.newBuilder() + .setName(name == null ? null : name.toString()) + .build(); + return getOrganizationEvent(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Retrieves a resource containing information about an event affecting an organization . + * + *
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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * String name = OrganizationEventName.of("[ORGANIZATION]", "[LOCATION]", "[EVENT]").toString();
+ * OrganizationEvent response = serviceHealthClient.getOrganizationEvent(name);
+ * }
+ * }
+ *
+ * @param name Required. Unique name of the event in this scope including organization and event
+ * ID using the form
+ * `organizations/{organization_id}/locations/locations/global/organizationEvents/{event_id}`.
+ * `organization_id` - ID (number) of the project that contains the event. To get your + * `organization_id`, see [Getting your organization resource + * ID](https://cloud.google.com/resource-manager/docs/creating-managing-organization#retrieving_your_organization_id).<br> + * `event_id` - Organization event ID to retrieve. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final OrganizationEvent getOrganizationEvent(String name) { + GetOrganizationEventRequest request = + GetOrganizationEventRequest.newBuilder().setName(name).build(); + return getOrganizationEvent(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Retrieves a resource containing information about an event affecting an organization . + * + *
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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * GetOrganizationEventRequest request =
+ * GetOrganizationEventRequest.newBuilder()
+ * .setName(
+ * OrganizationEventName.of("[ORGANIZATION]", "[LOCATION]", "[EVENT]").toString())
+ * .build();
+ * OrganizationEvent response = serviceHealthClient.getOrganizationEvent(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 OrganizationEvent getOrganizationEvent(GetOrganizationEventRequest request) {
+ return getOrganizationEventCallable().call(request);
+ }
+
+ // AUTO-GENERATED DOCUMENTATION AND METHOD.
+ /**
+ * Retrieves a resource containing information about an event affecting an organization .
+ *
+ * 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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * GetOrganizationEventRequest request =
+ * GetOrganizationEventRequest.newBuilder()
+ * .setName(
+ * OrganizationEventName.of("[ORGANIZATION]", "[LOCATION]", "[EVENT]").toString())
+ * .build();
+ * ApiFuture future =
+ * serviceHealthClient.getOrganizationEventCallable().futureCall(request);
+ * // Do something.
+ * OrganizationEvent response = future.get();
+ * }
+ * }
+ */
+ public final UnaryCallableSample 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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * OrganizationLocationName parent = OrganizationLocationName.of("[ORGANIZATION]", "[LOCATION]");
+ * for (OrganizationImpact element :
+ * serviceHealthClient.listOrganizationImpacts(parent).iterateAll()) {
+ * // doThingsWith(element);
+ * }
+ * }
+ * }
+ *
+ * @param parent Required. Parent value using the form
+ * `organizations/{organization_id}/locations/{location}/organizationImpacts`.
+ * `organization_id` - ID (number) of the project that contains the event. To get your + * `organization_id`, see [Getting your organization resource + * ID](https://cloud.google.com/resource-manager/docs/creating-managing-organization#retrieving_your_organization_id). + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final ListOrganizationImpactsPagedResponse listOrganizationImpacts( + OrganizationLocationName parent) { + ListOrganizationImpactsRequest request = + ListOrganizationImpactsRequest.newBuilder() + .setParent(parent == null ? null : parent.toString()) + .build(); + return listOrganizationImpacts(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Lists assets impacted by organization events under a given organization and location. + * + *
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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * String parent = OrganizationLocationName.of("[ORGANIZATION]", "[LOCATION]").toString();
+ * for (OrganizationImpact element :
+ * serviceHealthClient.listOrganizationImpacts(parent).iterateAll()) {
+ * // doThingsWith(element);
+ * }
+ * }
+ * }
+ *
+ * @param parent Required. Parent value using the form
+ * `organizations/{organization_id}/locations/{location}/organizationImpacts`.
+ * `organization_id` - ID (number) of the project that contains the event. To get your + * `organization_id`, see [Getting your organization resource + * ID](https://cloud.google.com/resource-manager/docs/creating-managing-organization#retrieving_your_organization_id). + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final ListOrganizationImpactsPagedResponse listOrganizationImpacts(String parent) { + ListOrganizationImpactsRequest request = + ListOrganizationImpactsRequest.newBuilder().setParent(parent).build(); + return listOrganizationImpacts(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Lists assets impacted by organization events under a given organization and location. + * + *
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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * ListOrganizationImpactsRequest request =
+ * ListOrganizationImpactsRequest.newBuilder()
+ * .setParent(OrganizationLocationName.of("[ORGANIZATION]", "[LOCATION]").toString())
+ * .setPageSize(883849137)
+ * .setPageToken("pageToken873572522")
+ * .setFilter("filter-1274492040")
+ * .build();
+ * for (OrganizationImpact element :
+ * serviceHealthClient.listOrganizationImpacts(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 ListOrganizationImpactsPagedResponse listOrganizationImpacts(
+ ListOrganizationImpactsRequest request) {
+ return listOrganizationImpactsPagedCallable().call(request);
+ }
+
+ // AUTO-GENERATED DOCUMENTATION AND METHOD.
+ /**
+ * Lists assets impacted by organization events under a given organization and location.
+ *
+ * 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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * ListOrganizationImpactsRequest request =
+ * ListOrganizationImpactsRequest.newBuilder()
+ * .setParent(OrganizationLocationName.of("[ORGANIZATION]", "[LOCATION]").toString())
+ * .setPageSize(883849137)
+ * .setPageToken("pageToken873572522")
+ * .setFilter("filter-1274492040")
+ * .build();
+ * ApiFuture future =
+ * serviceHealthClient.listOrganizationImpactsPagedCallable().futureCall(request);
+ * // Do something.
+ * for (OrganizationImpact element : future.get().iterateAll()) {
+ * // doThingsWith(element);
+ * }
+ * }
+ * }
+ */
+ public final UnaryCallableSample 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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * ListOrganizationImpactsRequest request =
+ * ListOrganizationImpactsRequest.newBuilder()
+ * .setParent(OrganizationLocationName.of("[ORGANIZATION]", "[LOCATION]").toString())
+ * .setPageSize(883849137)
+ * .setPageToken("pageToken873572522")
+ * .setFilter("filter-1274492040")
+ * .build();
+ * while (true) {
+ * ListOrganizationImpactsResponse response =
+ * serviceHealthClient.listOrganizationImpactsCallable().call(request);
+ * for (OrganizationImpact element : response.getOrganizationImpactsList()) {
+ * // doThingsWith(element);
+ * }
+ * String nextPageToken = response.getNextPageToken();
+ * if (!Strings.isNullOrEmpty(nextPageToken)) {
+ * request = request.toBuilder().setPageToken(nextPageToken).build();
+ * } else {
+ * break;
+ * }
+ * }
+ * }
+ * }
+ */
+ public final UnaryCallableSample 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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * OrganizationImpactName name =
+ * OrganizationImpactName.of("[ORGANIZATION]", "[LOCATION]", "[ORGANIZATION_IMPACT]");
+ * OrganizationImpact response = serviceHealthClient.getOrganizationImpact(name);
+ * }
+ * }
+ *
+ * @param name Required. Name of the resource using the form
+ * `organizations/{organization_id}/locations/global/organizationImpacts/{organization_impact_id}`.
+ * `organization_id` - ID (number) of the organization that contains the event. To get your + * `organization_id`, see [Getting your organization resource + * ID](https://cloud.google.com/resource-manager/docs/creating-managing-organization#retrieving_your_organization_id).<br> + * `organization_impact_id` - ID of the [OrganizationImpact + * resource](/service-health/docs/reference/rest/v1beta/organizations.locations.organizationImpacts#OrganizationImpact). + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final OrganizationImpact getOrganizationImpact(OrganizationImpactName name) { + GetOrganizationImpactRequest request = + GetOrganizationImpactRequest.newBuilder() + .setName(name == null ? null : name.toString()) + .build(); + return getOrganizationImpact(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Retrieves a resource containing information about impact to an asset under an organization + * affected by a service health event. + * + *
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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * String name =
+ * OrganizationImpactName.of("[ORGANIZATION]", "[LOCATION]", "[ORGANIZATION_IMPACT]")
+ * .toString();
+ * OrganizationImpact response = serviceHealthClient.getOrganizationImpact(name);
+ * }
+ * }
+ *
+ * @param name Required. Name of the resource using the form
+ * `organizations/{organization_id}/locations/global/organizationImpacts/{organization_impact_id}`.
+ * `organization_id` - ID (number) of the organization that contains the event. To get your + * `organization_id`, see [Getting your organization resource + * ID](https://cloud.google.com/resource-manager/docs/creating-managing-organization#retrieving_your_organization_id).<br> + * `organization_impact_id` - ID of the [OrganizationImpact + * resource](/service-health/docs/reference/rest/v1beta/organizations.locations.organizationImpacts#OrganizationImpact). + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final OrganizationImpact getOrganizationImpact(String name) { + GetOrganizationImpactRequest request = + GetOrganizationImpactRequest.newBuilder().setName(name).build(); + return getOrganizationImpact(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Retrieves a resource containing information about impact to an asset under an organization + * affected by a service health event. + * + *
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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * GetOrganizationImpactRequest request =
+ * GetOrganizationImpactRequest.newBuilder()
+ * .setName(
+ * OrganizationImpactName.of("[ORGANIZATION]", "[LOCATION]", "[ORGANIZATION_IMPACT]")
+ * .toString())
+ * .build();
+ * OrganizationImpact response = serviceHealthClient.getOrganizationImpact(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 OrganizationImpact getOrganizationImpact(GetOrganizationImpactRequest request) {
+ return getOrganizationImpactCallable().call(request);
+ }
+
+ // AUTO-GENERATED DOCUMENTATION AND METHOD.
+ /**
+ * Retrieves a resource containing information about impact to an asset under an organization
+ * affected by a service health event.
+ *
+ * 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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * GetOrganizationImpactRequest request =
+ * GetOrganizationImpactRequest.newBuilder()
+ * .setName(
+ * OrganizationImpactName.of("[ORGANIZATION]", "[LOCATION]", "[ORGANIZATION_IMPACT]")
+ * .toString())
+ * .build();
+ * ApiFuture future =
+ * serviceHealthClient.getOrganizationImpactCallable().futureCall(request);
+ * // Do something.
+ * OrganizationImpact response = future.get();
+ * }
+ * }
+ */
+ public final UnaryCallableSample 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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * ListLocationsRequest request =
+ * ListLocationsRequest.newBuilder()
+ * .setName("name3373707")
+ * .setFilter("filter-1274492040")
+ * .setPageSize(883849137)
+ * .setPageToken("pageToken873572522")
+ * .build();
+ * for (Location element : serviceHealthClient.listLocations(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 ListLocationsPagedResponse listLocations(ListLocationsRequest request) {
+ return listLocationsPagedCallable().call(request);
+ }
+
+ // AUTO-GENERATED DOCUMENTATION AND METHOD.
+ /**
+ * Lists information about the supported locations for 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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * ListLocationsRequest request =
+ * ListLocationsRequest.newBuilder()
+ * .setName("name3373707")
+ * .setFilter("filter-1274492040")
+ * .setPageSize(883849137)
+ * .setPageToken("pageToken873572522")
+ * .build();
+ * ApiFuture future =
+ * serviceHealthClient.listLocationsPagedCallable().futureCall(request);
+ * // Do something.
+ * for (Location element : future.get().iterateAll()) {
+ * // doThingsWith(element);
+ * }
+ * }
+ * }
+ */
+ public final UnaryCallableSample 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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * ListLocationsRequest request =
+ * ListLocationsRequest.newBuilder()
+ * .setName("name3373707")
+ * .setFilter("filter-1274492040")
+ * .setPageSize(883849137)
+ * .setPageToken("pageToken873572522")
+ * .build();
+ * while (true) {
+ * ListLocationsResponse response = serviceHealthClient.listLocationsCallable().call(request);
+ * for (Location element : response.getLocationsList()) {
+ * // doThingsWith(element);
+ * }
+ * String nextPageToken = response.getNextPageToken();
+ * if (!Strings.isNullOrEmpty(nextPageToken)) {
+ * request = request.toBuilder().setPageToken(nextPageToken).build();
+ * } else {
+ * break;
+ * }
+ * }
+ * }
+ * }
+ */
+ public final UnaryCallableSample 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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
+ * Location response = serviceHealthClient.getLocation(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 Location getLocation(GetLocationRequest request) {
+ return getLocationCallable().call(request);
+ }
+
+ // AUTO-GENERATED DOCUMENTATION AND METHOD.
+ /**
+ * Gets information about a location.
+ *
+ * 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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
+ * ApiFuture future = serviceHealthClient.getLocationCallable().futureCall(request);
+ * // Do something.
+ * Location response = future.get();
+ * }
+ * }
+ */
+ public final UnaryCallableThe default instance has everything set to sensible defaults: + * + *
The builder of this class is recursive, so contained classes are themselves builders. When + * build() is called, the tree of builders is called to create the complete settings object. + * + *
For example, to set the total timeout of getEvent to 30 seconds: + * + *
{@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
+ * ServiceHealthSettings.Builder serviceHealthSettingsBuilder = ServiceHealthSettings.newBuilder();
+ * serviceHealthSettingsBuilder
+ * .getEventSettings()
+ * .setRetrySettings(
+ * serviceHealthSettingsBuilder
+ * .getEventSettings()
+ * .getRetrySettings()
+ * .toBuilder()
+ * .setTotalTimeout(Duration.ofSeconds(30))
+ * .build());
+ * ServiceHealthSettings serviceHealthSettings = serviceHealthSettingsBuilder.build();
+ * }
+ */
+@Generated("by gapic-generator-java")
+public class ServiceHealthSettings extends ClientSettingsNote: This method does not support applying settings to streaming methods.
+ */
+ public Builder applyToAllUnaryMethods(
+ ApiFunction The interfaces provided are listed below, along with usage samples.
+ *
+ * ======================= ServiceHealthClient =======================
+ *
+ * Service Description: Request service health events relevant to your Google Cloud project.
+ *
+ * Sample for ServiceHealthClient:
+ *
+ * This class is for advanced usage.
+ */
+@Generated("by gapic-generator-java")
+public class GrpcServiceHealthCallableFactory implements GrpcStubCallableFactory {
+
+ @Override
+ public This class is for advanced usage and reflects the underlying API directly.
+ */
+@Generated("by gapic-generator-java")
+public class GrpcServiceHealthStub extends ServiceHealthStub {
+ private static final MethodDescriptor This class is for advanced usage.
+ */
+@Generated("by gapic-generator-java")
+@BetaApi
+public class HttpJsonServiceHealthCallableFactory
+ implements HttpJsonStubCallableFactory This class is for advanced usage and reflects the underlying API directly.
+ */
+@Generated("by gapic-generator-java")
+@BetaApi
+public class HttpJsonServiceHealthStub extends ServiceHealthStub {
+ private static final TypeRegistry typeRegistry = TypeRegistry.newBuilder().build();
+
+ private static final ApiMethodDescriptor{@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 (ServiceHealthClient serviceHealthClient = ServiceHealthClient.create()) {
+ * EventName name = EventName.of("[PROJECT]", "[LOCATION]", "[EVENT]");
+ * Event response = serviceHealthClient.getEvent(name);
+ * }
+ * }
+ */
+@Generated("by gapic-generator-java")
+package com.google.cloud.servicehealth.v1;
+
+import javax.annotation.Generated;
diff --git a/java-servicehealth/google-cloud-servicehealth/src/main/java/com/google/cloud/servicehealth/v1/stub/GrpcServiceHealthCallableFactory.java b/java-servicehealth/google-cloud-servicehealth/src/main/java/com/google/cloud/servicehealth/v1/stub/GrpcServiceHealthCallableFactory.java
new file mode 100644
index 000000000000..51440d288fe4
--- /dev/null
+++ b/java-servicehealth/google-cloud-servicehealth/src/main/java/com/google/cloud/servicehealth/v1/stub/GrpcServiceHealthCallableFactory.java
@@ -0,0 +1,113 @@
+/*
+ * Copyright 2023 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.servicehealth.v1.stub;
+
+import com.google.api.gax.grpc.GrpcCallSettings;
+import com.google.api.gax.grpc.GrpcCallableFactory;
+import com.google.api.gax.grpc.GrpcStubCallableFactory;
+import com.google.api.gax.rpc.BatchingCallSettings;
+import com.google.api.gax.rpc.BidiStreamingCallable;
+import com.google.api.gax.rpc.ClientContext;
+import com.google.api.gax.rpc.ClientStreamingCallable;
+import com.google.api.gax.rpc.OperationCallSettings;
+import com.google.api.gax.rpc.OperationCallable;
+import com.google.api.gax.rpc.PagedCallSettings;
+import com.google.api.gax.rpc.ServerStreamingCallSettings;
+import com.google.api.gax.rpc.ServerStreamingCallable;
+import com.google.api.gax.rpc.StreamingCallSettings;
+import com.google.api.gax.rpc.UnaryCallSettings;
+import com.google.api.gax.rpc.UnaryCallable;
+import com.google.longrunning.Operation;
+import com.google.longrunning.stub.OperationsStub;
+import javax.annotation.Generated;
+
+// AUTO-GENERATED DOCUMENTATION AND CLASS.
+/**
+ * gRPC callable factory implementation for the ServiceHealth service API.
+ *
+ *