@Generated(value="by gapic-generator-java")
See: Description
The interfaces provided are listed below, along with usage samples.
======================= SpacesServiceClient =======================
Service Description: REST API for services dealing with spaces.
Sample for SpacesServiceClient:
// 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);
}
======================= ConferenceRecordsServiceClient =======================
Service Description: REST API for services dealing with conference records.
Sample for ConferenceRecordsServiceClient:
// 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 (ConferenceRecordsServiceClient conferenceRecordsServiceClient =
ConferenceRecordsServiceClient.create()) {
ConferenceRecordName name = ConferenceRecordName.of("[CONFERENCE_RECORD]");
ConferenceRecord response = conferenceRecordsServiceClient.getConferenceRecord(name);
}
Copyright © 2024 Google LLC. All rights reserved.