com.google.apps.meet.v2.UpdateSpaceRequestOrBuilder Maven / Gradle / Ivy
/*
* 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.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/apps/meet/v2/service.proto
// Protobuf Java Version: 3.25.4
package com.google.apps.meet.v2;
public interface UpdateSpaceRequestOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.apps.meet.v2.UpdateSpaceRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Required. Space to be updated.
*
*
* .google.apps.meet.v2.Space space = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return Whether the space field is set.
*/
boolean hasSpace();
/**
*
*
*
* Required. Space to be updated.
*
*
* .google.apps.meet.v2.Space space = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return The space.
*/
com.google.apps.meet.v2.Space getSpace();
/**
*
*
*
* Required. Space to be updated.
*
*
* .google.apps.meet.v2.Space space = 1 [(.google.api.field_behavior) = REQUIRED];
*/
com.google.apps.meet.v2.SpaceOrBuilder getSpaceOrBuilder();
/**
*
*
*
* 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.
*
*
* .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return Whether the updateMask field is set.
*/
boolean hasUpdateMask();
/**
*
*
*
* 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.
*
*
* .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return The updateMask.
*/
com.google.protobuf.FieldMask getUpdateMask();
/**
*
*
*
* 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.
*
*
* .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = OPTIONAL];
*
*/
com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder();
}