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

a.clickzetta-java.1.3.15.source-code.account.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 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