a.clickzetta-java.1.3.15.source-code.function_meta.proto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickzetta-java Show documentation
Show all versions of clickzetta-java Show documentation
The java SDK for clickzetta's Lakehouse
syntax = "proto3";
package cz.proto;
import 'object_identifier.proto';
message FunctionResource {
string type = 1;
oneof value {
string uri = 2;
string content = 3;
}
}
message FunctionResourceList {
repeated FunctionResource resources = 1;
}
message RemoteEntrypoint {
string internal_url = 1;
string external_url = 2;
string protocol = 3;
string vendor_type = 4;
message VendorInfo {
string service = 1;
string function = 2;
}
VendorInfo vendor_info = 5;
}
message Function {
string category = 1;
string exec_type = 2;
string signature = 3;
string handler = 4;
optional ObjectIdentifier connection = 8;
FunctionResourceList resources = 6;
RemoteEntrypoint remote_entrypoint = 7;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy