Sha256: ef99d3cdb862dcf117e666f43be997407d033a585be3922d0e94f419daa41f48
Contents?: true
Size: 1.84 KB
Versions: 2
Compression:
Stored size: 1.84 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ARM::Authorization module Models # # Role assignment properties. # class RoleAssignmentProperties include MsRestAzure # @return [String] Gets or sets role definition id. attr_accessor :role_definition_id # @return [String] Gets or sets principal Id. attr_accessor :principal_id # # Validate the object. Throws ValidationError if validation fails. # def validate # Nothing to validate end # # Serializes given Model object into Ruby Hash. # @param object Model object to serialize. # @return [Hash] Serialized object in form of Ruby Hash. # def self.serialize_object(object) object.validate output_object = {} serialized_property = object.role_definition_id output_object['roleDefinitionId'] = serialized_property unless serialized_property.nil? serialized_property = object.principal_id output_object['principalId'] = serialized_property unless serialized_property.nil? output_object end # # Deserializes given Ruby Hash into Model object. # @param object [Hash] Ruby Hash object to deserialize. # @return [RoleAssignmentProperties] Deserialized object. # def self.deserialize_object(object) return if object.nil? output_object = RoleAssignmentProperties.new deserialized_property = object['roleDefinitionId'] output_object.role_definition_id = deserialized_property deserialized_property = object['principalId'] output_object.principal_id = deserialized_property output_object end end end end
Version data entries
2 entries across 2 versions & 1 rubygems