Class: OCI::OperatorAccessControl::Models::AccessRequestHistorySummary

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/operator_access_control/models/access_request_history_summary.rb

Overview

Summary of access request status.

Constant Summary collapse

LIFECYCLE_STATE_ENUM =
[
  LIFECYCLE_STATE_CREATED = 'CREATED'.freeze,
  LIFECYCLE_STATE_APPROVALWAITING = 'APPROVALWAITING'.freeze,
  LIFECYCLE_STATE_PREAPPROVED = 'PREAPPROVED'.freeze,
  LIFECYCLE_STATE_APPROVED = 'APPROVED'.freeze,
  LIFECYCLE_STATE_MOREINFO = 'MOREINFO'.freeze,
  LIFECYCLE_STATE_REJECTED = 'REJECTED'.freeze,
  LIFECYCLE_STATE_DEPLOYED = 'DEPLOYED'.freeze,
  LIFECYCLE_STATE_DEPLOYFAILED = 'DEPLOYFAILED'.freeze,
  LIFECYCLE_STATE_UNDEPLOYED = 'UNDEPLOYED'.freeze,
  LIFECYCLE_STATE_UNDEPLOYFAILED = 'UNDEPLOYFAILED'.freeze,
  LIFECYCLE_STATE_CLOSEFAILED = 'CLOSEFAILED'.freeze,
  LIFECYCLE_STATE_REVOKEFAILED = 'REVOKEFAILED'.freeze,
  LIFECYCLE_STATE_EXPIRYFAILED = 'EXPIRYFAILED'.freeze,
  LIFECYCLE_STATE_REVOKING = 'REVOKING'.freeze,
  LIFECYCLE_STATE_REVOKED = 'REVOKED'.freeze,
  LIFECYCLE_STATE_EXTENDING = 'EXTENDING'.freeze,
  LIFECYCLE_STATE_EXTENDED = 'EXTENDED'.freeze,
  LIFECYCLE_STATE_EXTENSIONREJECTED = 'EXTENSIONREJECTED'.freeze,
  LIFECYCLE_STATE_COMPLETING = 'COMPLETING'.freeze,
  LIFECYCLE_STATE_COMPLETED = 'COMPLETED'.freeze,
  LIFECYCLE_STATE_EXPIRED = 'EXPIRED'.freeze,
  LIFECYCLE_STATE_APPROVEDFORFUTURE = 'APPROVEDFORFUTURE'.freeze,
  LIFECYCLE_STATE_INREVIEW = 'INREVIEW'.freeze,
  LIFECYCLE_STATE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ AccessRequestHistorySummary

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash

Options Hash (attributes):

  • :lifecycle_state (String)

    The value to assign to the #lifecycle_state property

  • :user_id (String)

    The value to assign to the #user_id property

  • :description (String)

    The value to assign to the #description property

  • :duration (Integer)

    The value to assign to the #duration property

  • :is_auto_approved (BOOLEAN)

    The value to assign to the #is_auto_approved property

  • :actions_list (Array<String>)

    The value to assign to the #actions_list property

  • :time_of_action (DateTime)

    The value to assign to the #time_of_action property



111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
# File 'lib/oci/operator_access_control/models/access_request_history_summary.rb', line 111

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.lifecycle_state = attributes[:'lifecycleState'] if attributes[:'lifecycleState']

  raise 'You cannot provide both :lifecycleState and :lifecycle_state' if attributes.key?(:'lifecycleState') && attributes.key?(:'lifecycle_state')

  self.lifecycle_state = attributes[:'lifecycle_state'] if attributes[:'lifecycle_state']

  self.user_id = attributes[:'userId'] if attributes[:'userId']

  raise 'You cannot provide both :userId and :user_id' if attributes.key?(:'userId') && attributes.key?(:'user_id')

  self.user_id = attributes[:'user_id'] if attributes[:'user_id']

  self.description = attributes[:'description'] if attributes[:'description']

  self.duration = attributes[:'duration'] if attributes[:'duration']

  self.is_auto_approved = attributes[:'isAutoApproved'] unless attributes[:'isAutoApproved'].nil?

  raise 'You cannot provide both :isAutoApproved and :is_auto_approved' if attributes.key?(:'isAutoApproved') && attributes.key?(:'is_auto_approved')

  self.is_auto_approved = attributes[:'is_auto_approved'] unless attributes[:'is_auto_approved'].nil?

  self.actions_list = attributes[:'actionsList'] if attributes[:'actionsList']

  raise 'You cannot provide both :actionsList and :actions_list' if attributes.key?(:'actionsList') && attributes.key?(:'actions_list')

  self.actions_list = attributes[:'actions_list'] if attributes[:'actions_list']

  self.time_of_action = attributes[:'timeOfAction'] if attributes[:'timeOfAction']

  raise 'You cannot provide both :timeOfAction and :time_of_action' if attributes.key?(:'timeOfAction') && attributes.key?(:'time_of_action')

  self.time_of_action = attributes[:'time_of_action'] if attributes[:'time_of_action']
end

Instance Attribute Details

#actions_listArray<String>

List of operator actions for which approvals were requested by the operator.

Returns:

  • (Array<String>)


61
62
63
# File 'lib/oci/operator_access_control/models/access_request_history_summary.rb', line 61

def actions_list
  @actions_list
end

#descriptionString

Reason or description about the cause of change.

Returns:

  • (String)


49
50
51
# File 'lib/oci/operator_access_control/models/access_request_history_summary.rb', line 49

def description
  @description
end

#durationInteger

Duration for approval of request or extension depending on the type of action.

Returns:

  • (Integer)


53
54
55
# File 'lib/oci/operator_access_control/models/access_request_history_summary.rb', line 53

def duration
  @duration
end

#is_auto_approvedBOOLEAN

Whether the access request was automatically approved.

Returns:

  • (BOOLEAN)


57
58
59
# File 'lib/oci/operator_access_control/models/access_request_history_summary.rb', line 57

def is_auto_approved
  @is_auto_approved
end

#lifecycle_stateString

The current state of the AccessRequest.

Returns:

  • (String)


41
42
43
# File 'lib/oci/operator_access_control/models/access_request_history_summary.rb', line 41

def lifecycle_state
  @lifecycle_state
end

#time_of_actionDateTime

Time when the respective action happened in 3339[https://tools.ietf.org/html/rfc3339]timestamp format. Example: '2020-05-22T21:10:29.600Z'

Returns:

  • (DateTime)


66
67
68
# File 'lib/oci/operator_access_control/models/access_request_history_summary.rb', line 66

def time_of_action
  @time_of_action
end

#user_idString

Approver who modified the access request.

Returns:

  • (String)


45
46
47
# File 'lib/oci/operator_access_control/models/access_request_history_summary.rb', line 45

def user_id
  @user_id
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



69
70
71
72
73
74
75
76
77
78
79
80
81
# File 'lib/oci/operator_access_control/models/access_request_history_summary.rb', line 69

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'lifecycle_state': :'lifecycleState',
    'user_id': :'userId',
    'description': :'description',
    'duration': :'duration',
    'is_auto_approved': :'isAutoApproved',
    'actions_list': :'actionsList',
    'time_of_action': :'timeOfAction'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



84
85
86
87
88
89
90
91
92
93
94
95
96
# File 'lib/oci/operator_access_control/models/access_request_history_summary.rb', line 84

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'lifecycle_state': :'String',
    'user_id': :'String',
    'description': :'String',
    'duration': :'Integer',
    'is_auto_approved': :'BOOLEAN',
    'actions_list': :'Array<String>',
    'time_of_action': :'DateTime'
    # rubocop:enable Style/SymbolLiteral
  }
end

Instance Method Details

#==(other) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • other (Object)

    the other object to be compared



172
173
174
175
176
177
178
179
180
181
182
183
# File 'lib/oci/operator_access_control/models/access_request_history_summary.rb', line 172

def ==(other)
  return true if equal?(other)

  self.class == other.class &&
    lifecycle_state == other.lifecycle_state &&
    user_id == other.user_id &&
    description == other.description &&
    duration == other.duration &&
    is_auto_approved == other.is_auto_approved &&
    actions_list == other.actions_list &&
    time_of_action == other.time_of_action
end

#build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
# File 'lib/oci/operator_access_control/models/access_request_history_summary.rb', line 208

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

Parameters:

  • other (Object)

    the other object to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


188
189
190
# File 'lib/oci/operator_access_control/models/access_request_history_summary.rb', line 188

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



197
198
199
# File 'lib/oci/operator_access_control/models/access_request_history_summary.rb', line 197

def hash
  [lifecycle_state, user_id, description, duration, is_auto_approved, actions_list, time_of_action].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



241
242
243
244
245
246
247
248
249
250
# File 'lib/oci/operator_access_control/models/access_request_history_summary.rb', line 241

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_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



235
236
237
# File 'lib/oci/operator_access_control/models/access_request_history_summary.rb', line 235

def to_s
  to_hash.to_s
end