a.clickzetta-java.1.3.15.source-code.account.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 PolicyStatement {
string Effect = 1;
repeated string Principal = 2;
repeated string Action = 3;
repeated string Resource = 4;
}
message Policy {
string Version = 1;
repeated PolicyStatement Statement = 2;
}
message Account {
int64 account_id = 1;
string user_name = 2;
int64 user_id = 3;
optional PrincipalType type = 4 ;
optional Policy policy = 5;
}
message Instance {
string account_name = 4;
int64 account_id = 1;
int64 instance_id = 2;
string instance_name = 3;
}
message UserIdentifier {
ObjectIdentifier identifier = 1;
int64 user_id = 2;
}
message User {
optional int64 user_id = 1;
string default_vc = 2;
string default_schema = 3;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy