public SoyValue computeForJava()

in java/com/google/cloud/deploymentmanager/autogen/SoyFunctions.java [231:242]


    public SoyValue computeForJava(List<SoyValue> list) {
      String name = list.get(0).stringValue();
      DeployInputSpec deployInputSpec = (DeployInputSpec) ((SoyProtoValue) list.get(1)).getProto();
      for (DeployInputSection section : deployInputSpec.getSectionsList()) {
        for (DeployInputField field : section.getFieldsList()) {
          if (name.equals(field.getName())) {
            return SoyValueConverter.INSTANCE.convert(field).resolve();
          }
        }
      }
      throw new IllegalArgumentException("Unable to find deploy input field named: " + name);
    }