Interface ServiceOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    Service, Service.Builder

    public interface ServiceOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getBusinessEntityName()
      The business under which the service is offered.
      com.google.protobuf.ByteString getBusinessEntityNameBytes()
      The business under which the service is offered.
      String getDisplayName()
      A human readable display name for this service.
      com.google.protobuf.ByteString getDisplayNameBytes()
      A human readable display name for this service.
      String getName()
      The resource name for the service.
      com.google.protobuf.ByteString getNameBytes()
      The resource name for the service.
      String getServiceId()
      The identifier for the service.
      com.google.protobuf.ByteString getServiceIdBytes()
      The identifier for the service.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getName

        String getName()
         The resource name for the service.
         Example: "services/DA34-426B-A397"
         
        string name = 1;
        Returns:
        The name.
      • getNameBytes

        com.google.protobuf.ByteString getNameBytes()
         The resource name for the service.
         Example: "services/DA34-426B-A397"
         
        string name = 1;
        Returns:
        The bytes for name.
      • getServiceId

        String getServiceId()
         The identifier for the service.
         Example: "DA34-426B-A397"
         
        string service_id = 2;
        Returns:
        The serviceId.
      • getServiceIdBytes

        com.google.protobuf.ByteString getServiceIdBytes()
         The identifier for the service.
         Example: "DA34-426B-A397"
         
        string service_id = 2;
        Returns:
        The bytes for serviceId.
      • getDisplayName

        String getDisplayName()
         A human readable display name for this service.
         
        string display_name = 3;
        Returns:
        The displayName.
      • getDisplayNameBytes

        com.google.protobuf.ByteString getDisplayNameBytes()
         A human readable display name for this service.
         
        string display_name = 3;
        Returns:
        The bytes for displayName.
      • getBusinessEntityName

        String getBusinessEntityName()
         The business under which the service is offered.
         Ex. "businessEntities/GCP", "businessEntities/Maps"
         
        string business_entity_name = 4;
        Returns:
        The businessEntityName.
      • getBusinessEntityNameBytes

        com.google.protobuf.ByteString getBusinessEntityNameBytes()
         The business under which the service is offered.
         Ex. "businessEntities/GCP", "businessEntities/Maps"
         
        string business_entity_name = 4;
        Returns:
        The bytes for businessEntityName.