Class: OCI::Devops::Models::PrincipalDetails
- Inherits:
-
Object
- Object
- OCI::Devops::Models::PrincipalDetails
- Defined in:
- lib/oci/devops/models/principal_details.rb
Overview
The principal details
Constant Summary collapse
- PRINCIPAL_TYPE_ENUM =
[ PRINCIPAL_TYPE_SERVICE = 'SERVICE'.freeze, PRINCIPAL_TYPE_USER = 'USER'.freeze, PRINCIPAL_TYPE_INSTANCE = 'INSTANCE'.freeze, PRINCIPAL_TYPE_RESOURCE = 'RESOURCE'.freeze, PRINCIPAL_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- PRINCIPAL_STATE_ENUM =
[ PRINCIPAL_STATE_ACTIVE = 'ACTIVE'.freeze, PRINCIPAL_STATE_INACTIVE = 'INACTIVE'.freeze, PRINCIPAL_STATE_SUPPRESSED = 'SUPPRESSED'.freeze, PRINCIPAL_STATE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Instance Attribute Summary collapse
-
#principal_id ⇒ String
[Required] the OCID of the principal.
-
#principal_name ⇒ String
the name of the principal.
-
#principal_state ⇒ String
The state of the principal, it can be active or inactive or suppressed for emails.
-
#principal_type ⇒ String
the type of principal.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(other) ⇒ Object
Checks equality by comparing each attribute.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(other) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ PrincipalDetails
constructor
Initializes the object.
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
Constructor Details
#initialize(attributes = {}) ⇒ PrincipalDetails
Initializes the object
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 |
# File 'lib/oci/devops/models/principal_details.rb', line 77 def initialize(attributes = {}) return unless attributes.is_a?(Hash) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } self.principal_id = attributes[:'principalId'] if attributes[:'principalId'] raise 'You cannot provide both :principalId and :principal_id' if attributes.key?(:'principalId') && attributes.key?(:'principal_id') self.principal_id = attributes[:'principal_id'] if attributes[:'principal_id'] self.principal_name = attributes[:'principalName'] if attributes[:'principalName'] raise 'You cannot provide both :principalName and :principal_name' if attributes.key?(:'principalName') && attributes.key?(:'principal_name') self.principal_name = attributes[:'principal_name'] if attributes[:'principal_name'] self.principal_type = attributes[:'principalType'] if attributes[:'principalType'] raise 'You cannot provide both :principalType and :principal_type' if attributes.key?(:'principalType') && attributes.key?(:'principal_type') self.principal_type = attributes[:'principal_type'] if attributes[:'principal_type'] self.principal_state = attributes[:'principalState'] if attributes[:'principalState'] raise 'You cannot provide both :principalState and :principal_state' if attributes.key?(:'principalState') && attributes.key?(:'principal_state') self.principal_state = attributes[:'principal_state'] if attributes[:'principal_state'] end |
Instance Attribute Details
#principal_id ⇒ String
[Required] the OCID of the principal
29 30 31 |
# File 'lib/oci/devops/models/principal_details.rb', line 29 def principal_id @principal_id end |
#principal_name ⇒ String
the name of the principal
33 34 35 |
# File 'lib/oci/devops/models/principal_details.rb', line 33 def principal_name @principal_name end |
#principal_state ⇒ String
The state of the principal, it can be active or inactive or suppressed for emails
41 42 43 |
# File 'lib/oci/devops/models/principal_details.rb', line 41 def principal_state @principal_state end |
#principal_type ⇒ String
the type of principal
37 38 39 |
# File 'lib/oci/devops/models/principal_details.rb', line 37 def principal_type @principal_type end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
44 45 46 47 48 49 50 51 52 53 |
# File 'lib/oci/devops/models/principal_details.rb', line 44 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'principal_id': :'principalId', 'principal_name': :'principalName', 'principal_type': :'principalType', 'principal_state': :'principalState' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
56 57 58 59 60 61 62 63 64 65 |
# File 'lib/oci/devops/models/principal_details.rb', line 56 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'principal_id': :'String', 'principal_name': :'String', 'principal_type': :'String', 'principal_state': :'String' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
141 142 143 144 145 146 147 148 149 |
# File 'lib/oci/devops/models/principal_details.rb', line 141 def ==(other) return true if equal?(other) self.class == other.class && principal_id == other.principal_id && principal_name == other.principal_name && principal_type == other.principal_type && principal_state == other.principal_state end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 |
# File 'lib/oci/devops/models/principal_details.rb', line 174 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.swagger_types.each_pair do |key, type| if type =~ /^Array<(.*)>/i # check to ensure the input is an array given that the the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) public_method("#{key}=").call( attributes[self.class.attribute_map[key]] .map { |v| OCI::Internal::Util.convert_to_type(Regexp.last_match(1), v) } ) end elsif !attributes[self.class.attribute_map[key]].nil? public_method("#{key}=").call( OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]) ) end # or else data not found in attributes(hash), not an issue as the data can be optional end self end |
#eql?(other) ⇒ Boolean
154 155 156 |
# File 'lib/oci/devops/models/principal_details.rb', line 154 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
163 164 165 |
# File 'lib/oci/devops/models/principal_details.rb', line 163 def hash [principal_id, principal_name, principal_type, principal_state].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
207 208 209 210 211 212 213 214 215 216 |
# File 'lib/oci/devops/models/principal_details.rb', line 207 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = public_method(attr).call next if value.nil? && !instance_variable_defined?("@#{attr}") hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
201 202 203 |
# File 'lib/oci/devops/models/principal_details.rb', line 201 def to_s to_hash.to_s end |