forked from databricks/databricks-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterface.java.tmpl
More file actions
25 lines (22 loc) · 842 Bytes
/
Copy pathinterface.java.tmpl
File metadata and controls
25 lines (22 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.
package com.databricks.sdk.service.{{.Package.Name}};
import java.util.Collection;
import java.util.Map;
import java.io.InputStream;
import com.databricks.sdk.support.Generated;
/**
{{.Comment " * " 80}}
*
* This is the high-level interface, that contains generated methods.
*
* Evolving: this interface is under development. Method signatures may change.
*/
@Generated
public interface {{.PascalName}}Service {
{{- range .Methods}}
{{if .Description}}/**
{{.Comment " * " 80}}
*/{{end}}
{{if not .Response.IsEmpty -}}{{template "type" .Response}}{{else}}void{{end}} {{.CamelName}}{{if .IsNameReserved}}Content{{end}}({{if .Request}}{{template "type" .Request}} {{.Request.CamelName}}{{if .IsNameReserved}}Content{{end}}{{end}});
{{end}}
}