Class: Impala::Protocol::HiveMetastore::ThriftHiveMetastore::Grant_role_args

Inherits:
Object
  • Object
show all
Includes:
Thrift::Struct, Thrift::Struct_Union
Defined in:
lib/impala/protocol/thrift_hive_metastore.rb

Constant Summary collapse

ROLE_NAME =
1
PRINCIPAL_NAME =
2
PRINCIPAL_TYPE =
3
GRANTOR =
4
GRANTORTYPE =
5
GRANT_OPTION =
6
FIELDS =
{
ROLE_NAME => { :type => ::Thrift::Types::STRING, :name => 'role_name' },
PRINCIPAL_NAME => { :type => ::Thrift::Types::STRING, :name => 'principal_name' },
PRINCIPAL_TYPE => { :type => ::Thrift::Types::I32, :name => 'principal_type', :enum_class => Impala::Protocol::HiveMetastore::PrincipalType },
GRANTOR => { :type => ::Thrift::Types::STRING, :name => 'grantor' },
GRANTORTYPE => { :type => ::Thrift::Types::I32, :name => 'grantorType', :enum_class => Impala::Protocol::HiveMetastore::PrincipalType },
GRANT_OPTION => { :type => ::Thrift::Types::BOOL, :name => 'grant_option' }
}

Instance Method Summary collapse

Instance Method Details

#struct_fieldsObject



4306
# File 'lib/impala/protocol/thrift_hive_metastore.rb', line 4306

def struct_fields; FIELDS; end

#validateObject



4308
4309
4310
4311
4312
4313
4314
4315
# File 'lib/impala/protocol/thrift_hive_metastore.rb', line 4308

def validate
  unless @principal_type.nil? || Impala::Protocol::HiveMetastore::PrincipalType::VALID_VALUES.include?(@principal_type)
    raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Invalid value of field principal_type!')
  end
  unless @grantorType.nil? || Impala::Protocol::HiveMetastore::PrincipalType::VALID_VALUES.include?(@grantorType)
    raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Invalid value of field grantorType!')
  end
end