All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.apps.meet.v2.SpacesServiceClient Maven / Gradle / Ivy

Go to download

Google Meet API The Google Meet REST API lets you create and manage meetings for Google Meet and offers entry points to your users directly from your app

The newest version!
/*
 * 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.apps.meet.v2;

import com.google.api.gax.core.BackgroundResource;
import com.google.api.gax.rpc.UnaryCallable;
import com.google.apps.meet.v2.stub.SpacesServiceStub;
import com.google.apps.meet.v2.stub.SpacesServiceStubSettings;
import com.google.protobuf.Empty;
import com.google.protobuf.FieldMask;
import java.io.IOException;
import java.util.concurrent.TimeUnit;
import javax.annotation.Generated;

// AUTO-GENERATED DOCUMENTATION AND CLASS.
/**
 * Service Description: REST API for services dealing with spaces.
 *
 * 

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 (SpacesServiceClient spacesServiceClient = SpacesServiceClient.create()) {
 *   Space space = Space.newBuilder().build();
 *   Space response = spacesServiceClient.createSpace(space);
 * }
 * }
* *

Note: close() needs to be called on the SpacesServiceClient object to clean up resources such * as threads. In the example above, try-with-resources is used, which automatically calls close(). * *

* * * * * * * * * * * * * * * * * * * * * * * * * * *
Methods
MethodDescriptionMethod Variants

CreateSpace

Creates a space.

*

Request object method variants only take one parameter, a request object, which must be constructed before the call.

*
    *
  • createSpace(CreateSpaceRequest request) *

*

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

*
    *
  • createSpace(Space space) *

*

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

*
    *
  • createSpaceCallable() *

*

GetSpace

Gets a space by `space_id` or `meeting_code`.

*

Request object method variants only take one parameter, a request object, which must be constructed before the call.

*
    *
  • getSpace(GetSpaceRequest request) *

*

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

*
    *
  • getSpace(SpaceName name) *

  • getSpace(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.

*
    *
  • getSpaceCallable() *

*

UpdateSpace

Updates a space.

*

Request object method variants only take one parameter, a request object, which must be constructed before the call.

*
    *
  • updateSpace(UpdateSpaceRequest request) *

*

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

*
    *
  • updateSpace(Space space, FieldMask updateMask) *

*

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

*
    *
  • updateSpaceCallable() *

*

EndActiveConference

Ends an active conference (if there's one).

*

Request object method variants only take one parameter, a request object, which must be constructed before the call.

*
    *
  • endActiveConference(EndActiveConferenceRequest request) *

*

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

*
    *
  • endActiveConference(SpaceName name) *

  • endActiveConference(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.

*
    *
  • endActiveConferenceCallable() *

*
* *

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 SpacesServiceSettings 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
 * SpacesServiceSettings spacesServiceSettings =
 *     SpacesServiceSettings.newBuilder()
 *         .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
 *         .build();
 * SpacesServiceClient spacesServiceClient = SpacesServiceClient.create(spacesServiceSettings);
 * }
* *

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
 * SpacesServiceSettings spacesServiceSettings =
 *     SpacesServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
 * SpacesServiceClient spacesServiceClient = SpacesServiceClient.create(spacesServiceSettings);
 * }
* *

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
 * SpacesServiceSettings spacesServiceSettings =
 *     SpacesServiceSettings.newHttpJsonBuilder().build();
 * SpacesServiceClient spacesServiceClient = SpacesServiceClient.create(spacesServiceSettings);
 * }
* *

Please refer to the GitHub repository's samples for more quickstart code snippets. */ @Generated("by gapic-generator-java") public class SpacesServiceClient implements BackgroundResource { private final SpacesServiceSettings settings; private final SpacesServiceStub stub; /** Constructs an instance of SpacesServiceClient with default settings. */ public static final SpacesServiceClient create() throws IOException { return create(SpacesServiceSettings.newBuilder().build()); } /** * Constructs an instance of SpacesServiceClient, 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 SpacesServiceClient create(SpacesServiceSettings settings) throws IOException { return new SpacesServiceClient(settings); } /** * Constructs an instance of SpacesServiceClient, using the given stub for making calls. This is * for advanced usage - prefer using create(SpacesServiceSettings). */ public static final SpacesServiceClient create(SpacesServiceStub stub) { return new SpacesServiceClient(stub); } /** * Constructs an instance of SpacesServiceClient, 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 SpacesServiceClient(SpacesServiceSettings settings) throws IOException { this.settings = settings; this.stub = ((SpacesServiceStubSettings) settings.getStubSettings()).createStub(); } protected SpacesServiceClient(SpacesServiceStub stub) { this.settings = null; this.stub = stub; } public final SpacesServiceSettings getSettings() { return settings; } public SpacesServiceStub getStub() { return stub; } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Creates a space. * *

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 (SpacesServiceClient spacesServiceClient = SpacesServiceClient.create()) {
   *   Space space = Space.newBuilder().build();
   *   Space response = spacesServiceClient.createSpace(space);
   * }
   * }
* * @param space Space to be created. As of May 2023, the input space can be empty. Later on the * input space can be non-empty when space configuration is introduced. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Space createSpace(Space space) { CreateSpaceRequest request = CreateSpaceRequest.newBuilder().setSpace(space).build(); return createSpace(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Creates a space. * *

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 (SpacesServiceClient spacesServiceClient = SpacesServiceClient.create()) {
   *   CreateSpaceRequest request =
   *       CreateSpaceRequest.newBuilder().setSpace(Space.newBuilder().build()).build();
   *   Space response = spacesServiceClient.createSpace(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 Space createSpace(CreateSpaceRequest request) { return createSpaceCallable().call(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Creates a space. * *

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 (SpacesServiceClient spacesServiceClient = SpacesServiceClient.create()) {
   *   CreateSpaceRequest request =
   *       CreateSpaceRequest.newBuilder().setSpace(Space.newBuilder().build()).build();
   *   ApiFuture future = spacesServiceClient.createSpaceCallable().futureCall(request);
   *   // Do something.
   *   Space response = future.get();
   * }
   * }
*/ public final UnaryCallable createSpaceCallable() { return stub.createSpaceCallable(); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Gets a space by `space_id` or `meeting_code`. * *

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 (SpacesServiceClient spacesServiceClient = SpacesServiceClient.create()) {
   *   SpaceName name = SpaceName.of("[SPACE]");
   *   Space response = spacesServiceClient.getSpace(name);
   * }
   * }
* * @param name Required. Resource name of the space. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Space getSpace(SpaceName name) { GetSpaceRequest request = GetSpaceRequest.newBuilder().setName(name == null ? null : name.toString()).build(); return getSpace(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Gets a space by `space_id` or `meeting_code`. * *

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 (SpacesServiceClient spacesServiceClient = SpacesServiceClient.create()) {
   *   String name = SpaceName.of("[SPACE]").toString();
   *   Space response = spacesServiceClient.getSpace(name);
   * }
   * }
* * @param name Required. Resource name of the space. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Space getSpace(String name) { GetSpaceRequest request = GetSpaceRequest.newBuilder().setName(name).build(); return getSpace(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Gets a space by `space_id` or `meeting_code`. * *

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 (SpacesServiceClient spacesServiceClient = SpacesServiceClient.create()) {
   *   GetSpaceRequest request =
   *       GetSpaceRequest.newBuilder().setName(SpaceName.of("[SPACE]").toString()).build();
   *   Space response = spacesServiceClient.getSpace(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 Space getSpace(GetSpaceRequest request) { return getSpaceCallable().call(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Gets a space by `space_id` or `meeting_code`. * *

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 (SpacesServiceClient spacesServiceClient = SpacesServiceClient.create()) {
   *   GetSpaceRequest request =
   *       GetSpaceRequest.newBuilder().setName(SpaceName.of("[SPACE]").toString()).build();
   *   ApiFuture future = spacesServiceClient.getSpaceCallable().futureCall(request);
   *   // Do something.
   *   Space response = future.get();
   * }
   * }
*/ public final UnaryCallable getSpaceCallable() { return stub.getSpaceCallable(); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Updates a space. * *

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 (SpacesServiceClient spacesServiceClient = SpacesServiceClient.create()) {
   *   Space space = Space.newBuilder().build();
   *   FieldMask updateMask = FieldMask.newBuilder().build();
   *   Space response = spacesServiceClient.updateSpace(space, updateMask);
   * }
   * }
* * @param space Required. Space to be updated. * @param updateMask Optional. Field mask used to specify the fields to be updated in the space. * If update_mask isn't provided, it defaults to '*' and updates all fields provided in * the request, including deleting fields not set in the request. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Space updateSpace(Space space, FieldMask updateMask) { UpdateSpaceRequest request = UpdateSpaceRequest.newBuilder().setSpace(space).setUpdateMask(updateMask).build(); return updateSpace(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Updates a space. * *

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 (SpacesServiceClient spacesServiceClient = SpacesServiceClient.create()) {
   *   UpdateSpaceRequest request =
   *       UpdateSpaceRequest.newBuilder()
   *           .setSpace(Space.newBuilder().build())
   *           .setUpdateMask(FieldMask.newBuilder().build())
   *           .build();
   *   Space response = spacesServiceClient.updateSpace(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 Space updateSpace(UpdateSpaceRequest request) { return updateSpaceCallable().call(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Updates a space. * *

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 (SpacesServiceClient spacesServiceClient = SpacesServiceClient.create()) {
   *   UpdateSpaceRequest request =
   *       UpdateSpaceRequest.newBuilder()
   *           .setSpace(Space.newBuilder().build())
   *           .setUpdateMask(FieldMask.newBuilder().build())
   *           .build();
   *   ApiFuture future = spacesServiceClient.updateSpaceCallable().futureCall(request);
   *   // Do something.
   *   Space response = future.get();
   * }
   * }
*/ public final UnaryCallable updateSpaceCallable() { return stub.updateSpaceCallable(); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Ends an active conference (if there's one). * *

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 (SpacesServiceClient spacesServiceClient = SpacesServiceClient.create()) {
   *   SpaceName name = SpaceName.of("[SPACE]");
   *   spacesServiceClient.endActiveConference(name);
   * }
   * }
* * @param name Required. Resource name of the space. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final void endActiveConference(SpaceName name) { EndActiveConferenceRequest request = EndActiveConferenceRequest.newBuilder() .setName(name == null ? null : name.toString()) .build(); endActiveConference(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Ends an active conference (if there's one). * *

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 (SpacesServiceClient spacesServiceClient = SpacesServiceClient.create()) {
   *   String name = SpaceName.of("[SPACE]").toString();
   *   spacesServiceClient.endActiveConference(name);
   * }
   * }
* * @param name Required. Resource name of the space. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final void endActiveConference(String name) { EndActiveConferenceRequest request = EndActiveConferenceRequest.newBuilder().setName(name).build(); endActiveConference(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Ends an active conference (if there's one). * *

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 (SpacesServiceClient spacesServiceClient = SpacesServiceClient.create()) {
   *   EndActiveConferenceRequest request =
   *       EndActiveConferenceRequest.newBuilder()
   *           .setName(SpaceName.of("[SPACE]").toString())
   *           .build();
   *   spacesServiceClient.endActiveConference(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 endActiveConference(EndActiveConferenceRequest request) { endActiveConferenceCallable().call(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Ends an active conference (if there's one). * *

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 (SpacesServiceClient spacesServiceClient = SpacesServiceClient.create()) {
   *   EndActiveConferenceRequest request =
   *       EndActiveConferenceRequest.newBuilder()
   *           .setName(SpaceName.of("[SPACE]").toString())
   *           .build();
   *   ApiFuture future =
   *       spacesServiceClient.endActiveConferenceCallable().futureCall(request);
   *   // Do something.
   *   future.get();
   * }
   * }
*/ public final UnaryCallable endActiveConferenceCallable() { return stub.endActiveConferenceCallable(); } @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); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy