Interface UpdateProfileRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UpdateProfileRequest
,UpdateProfileRequest.Builder
public interface UpdateProfileRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Profile
getProfile()
Profile to update.ProfileOrBuilder
getProfileOrBuilder()
Profile to update.com.google.protobuf.FieldMask
getUpdateMask()
Field mask used to specify the fields to be overwritten.com.google.protobuf.FieldMaskOrBuilder
getUpdateMaskOrBuilder()
Field mask used to specify the fields to be overwritten.boolean
hasProfile()
Profile to update.boolean
hasUpdateMask()
Field mask used to specify the fields to be overwritten.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasProfile
boolean hasProfile()
Profile to update.
.google.devtools.cloudprofiler.v2.Profile profile = 1;
- Returns:
- Whether the profile field is set.
-
getProfile
Profile getProfile()
Profile to update.
.google.devtools.cloudprofiler.v2.Profile profile = 1;
- Returns:
- The profile.
-
getProfileOrBuilder
ProfileOrBuilder getProfileOrBuilder()
Profile to update.
.google.devtools.cloudprofiler.v2.Profile profile = 1;
-
hasUpdateMask
boolean hasUpdateMask()
Field mask used to specify the fields to be overwritten. Currently only profile_bytes and labels fields are supported by UpdateProfile, so only those fields can be specified in the mask. When no mask is provided, all fields are overwritten.
.google.protobuf.FieldMask update_mask = 2;
- Returns:
- Whether the updateMask field is set.
-
getUpdateMask
com.google.protobuf.FieldMask getUpdateMask()
Field mask used to specify the fields to be overwritten. Currently only profile_bytes and labels fields are supported by UpdateProfile, so only those fields can be specified in the mask. When no mask is provided, all fields are overwritten.
.google.protobuf.FieldMask update_mask = 2;
- Returns:
- The updateMask.
-
getUpdateMaskOrBuilder
com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder()
Field mask used to specify the fields to be overwritten. Currently only profile_bytes and labels fields are supported by UpdateProfile, so only those fields can be specified in the mask. When no mask is provided, all fields are overwritten.
.google.protobuf.FieldMask update_mask = 2;
-
-