All Downloads are FREE. Search and download functionalities are using the official Maven repository.

a.clickzetta-java.1.3.15.source-code.function_meta.proto Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
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