Package com.google.monitoring.v3
Interface UpdateGroupRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UpdateGroupRequest,UpdateGroupRequest.Builder
public interface UpdateGroupRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GroupgetGroup()Required.GroupOrBuildergetGroupOrBuilder()Required.booleangetValidateOnly()If true, validate this request but do not update the existing group.booleanhasGroup()Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasGroup
boolean hasGroup()
Required. The new definition of the group. All fields of the existing group, excepting `name`, are replaced with the corresponding fields of this group.
.google.monitoring.v3.Group group = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- Whether the group field is set.
-
getGroup
Group getGroup()
Required. The new definition of the group. All fields of the existing group, excepting `name`, are replaced with the corresponding fields of this group.
.google.monitoring.v3.Group group = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The group.
-
getGroupOrBuilder
GroupOrBuilder getGroupOrBuilder()
Required. The new definition of the group. All fields of the existing group, excepting `name`, are replaced with the corresponding fields of this group.
.google.monitoring.v3.Group group = 2 [(.google.api.field_behavior) = REQUIRED];
-
getValidateOnly
boolean getValidateOnly()
If true, validate this request but do not update the existing group.
bool validate_only = 3;- Returns:
- The validateOnly.
-
-