Interface BatchOptimizeToursRequest.AsyncModelConfigOrBuilder

    • Method Detail

      • getDisplayName

        String getDisplayName()
         User defined model name, can be used as alias by users to keep track of
         models.
         
        string display_name = 1;
        Returns:
        The displayName.
      • getDisplayNameBytes

        com.google.protobuf.ByteString getDisplayNameBytes()
         User defined model name, can be used as alias by users to keep track of
         models.
         
        string display_name = 1;
        Returns:
        The bytes for displayName.
      • hasInputConfig

        boolean hasInputConfig()
         Required. Information about the input model.
         
        .google.cloud.optimization.v1.InputConfig input_config = 2 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        Whether the inputConfig field is set.
      • getInputConfig

        InputConfig getInputConfig()
         Required. Information about the input model.
         
        .google.cloud.optimization.v1.InputConfig input_config = 2 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The inputConfig.
      • getInputConfigOrBuilder

        InputConfigOrBuilder getInputConfigOrBuilder()
         Required. Information about the input model.
         
        .google.cloud.optimization.v1.InputConfig input_config = 2 [(.google.api.field_behavior) = REQUIRED];
      • hasOutputConfig

        boolean hasOutputConfig()
         Required. The desired output location information.
         
        .google.cloud.optimization.v1.OutputConfig output_config = 3 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        Whether the outputConfig field is set.
      • getOutputConfig

        OutputConfig getOutputConfig()
         Required. The desired output location information.
         
        .google.cloud.optimization.v1.OutputConfig output_config = 3 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The outputConfig.
      • getOutputConfigOrBuilder

        OutputConfigOrBuilder getOutputConfigOrBuilder()
         Required. The desired output location information.
         
        .google.cloud.optimization.v1.OutputConfig output_config = 3 [(.google.api.field_behavior) = REQUIRED];
      • getEnableCheckpoints

        boolean getEnableCheckpoints()
         If this is set, the model will be solved in the checkpoint mode. In this
         mode, the input model can have a deadline longer than 30 mins without the
         risk of interruption. The model will be solved in multiple short-running
         stages. Each stage generates an intermediate checkpoint
         and stores it in the user's Cloud Storage buckets. The checkpoint
         mode should be preferred over
         allow_large_deadline_despite_interruption_risk since it prevents the risk
         of interruption.
         
        bool enable_checkpoints = 4;
        Returns:
        The enableCheckpoints.