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

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

There is a newer version: 2.0.0
Show newest version
syntax = "proto3";

import "property.proto";

package cz.proto;

enum ConnectionType {
  CLOUD_FUNCTION = 0;
  FILE_SYSTEM = 1;
}

enum ConnectionCategory {
  DATA_CONNECTION = 0;
  API_CONNECTION = 1;
}

message FileSystemConnectionInfo {
  string file_system_type = 1;
  oneof derived {
    Properties config = 50;
  }
}

message ConnectionInfo {
  oneof derived {
    FileSystemConnectionInfo file_system_connection_info = 50;
  }
}

message Connection {
  ConnectionType connection_type = 1;
  ConnectionCategory connection_category = 2;
  bool enabled = 3;
  ConnectionInfo connection_info = 4;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy