Class: Akeyless::AuthMethodAccessInfo

Inherits:
Object
  • Object
show all
Defined in:
lib/akeyless/models/auth_method_access_info.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ AuthMethodAccessInfo

Initializes the object

Parameters:

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

    Model attributes in the form of hash



146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
# File 'lib/akeyless/models/auth_method_access_info.rb', line 146

def initialize(attributes = {})
  if (!attributes.is_a?(Hash))
    fail ArgumentError, "The input argument (attributes) must be a hash in `Akeyless::AuthMethodAccessInfo` initialize method"
  end

  # check to see if the attribute exists and convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h|
    if (!self.class.attribute_map.key?(k.to_sym))
      fail ArgumentError, "`#{k}` is not a valid attribute in `Akeyless::AuthMethodAccessInfo`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
    end
    h[k.to_sym] = v
  }

  if attributes.key?(:'access_expires')
    self.access_expires = attributes[:'access_expires']
  end

  if attributes.key?(:'access_id_alias')
    self.access_id_alias = attributes[:'access_id_alias']
  end

  if attributes.key?(:'api_key_access_rules')
    self.api_key_access_rules = attributes[:'api_key_access_rules']
  end

  if attributes.key?(:'audit_logs_claims')
    if (value = attributes[:'audit_logs_claims']).is_a?(Array)
      self.audit_logs_claims = value
    end
  end

  if attributes.key?(:'aws_iam_access_rules')
    self.aws_iam_access_rules = attributes[:'aws_iam_access_rules']
  end

  if attributes.key?(:'azure_ad_access_rules')
    self.azure_ad_access_rules = attributes[:'azure_ad_access_rules']
  end

  if attributes.key?(:'cert_access_rules')
    self.cert_access_rules = attributes[:'cert_access_rules']
  end

  if attributes.key?(:'cidr_whitelist')
    self.cidr_whitelist = attributes[:'cidr_whitelist']
  end

  if attributes.key?(:'email_pass_access_rules')
    self.email_pass_access_rules = attributes[:'email_pass_access_rules']
  end

  if attributes.key?(:'force_sub_claims')
    self.force_sub_claims = attributes[:'force_sub_claims']
  end

  if attributes.key?(:'gcp_access_rules')
    self.gcp_access_rules = attributes[:'gcp_access_rules']
  end

  if attributes.key?(:'gw_cidr_whitelist')
    self.gw_cidr_whitelist = attributes[:'gw_cidr_whitelist']
  end

  if attributes.key?(:'huawei_access_rules')
    self.huawei_access_rules = attributes[:'huawei_access_rules']
  end

  if attributes.key?(:'jwt_ttl')
    self.jwt_ttl = attributes[:'jwt_ttl']
  end

  if attributes.key?(:'k8s_access_rules')
    self.k8s_access_rules = attributes[:'k8s_access_rules']
  end

  if attributes.key?(:'kerberos_access_rules')
    self.kerberos_access_rules = attributes[:'kerberos_access_rules']
  end

  if attributes.key?(:'ldap_access_rules')
    self.ldap_access_rules = attributes[:'ldap_access_rules']
  end

  if attributes.key?(:'oauth2_access_rules')
    self.oauth2_access_rules = attributes[:'oauth2_access_rules']
  end

  if attributes.key?(:'oci_access_rules')
    self.oci_access_rules = attributes[:'oci_access_rules']
  end

  if attributes.key?(:'oidc_access_rules')
    self.oidc_access_rules = attributes[:'oidc_access_rules']
  end

  if attributes.key?(:'product_types')
    if (value = attributes[:'product_types']).is_a?(Array)
      self.product_types = value
    end
  end

  if attributes.key?(:'rules_type')
    self.rules_type = attributes[:'rules_type']
  end

  if attributes.key?(:'saml_access_rules')
    self.saml_access_rules = attributes[:'saml_access_rules']
  end

  if attributes.key?(:'sub_claims_delimiters')
    if (value = attributes[:'sub_claims_delimiters']).is_a?(Array)
      self.sub_claims_delimiters = value
    end
  end

  if attributes.key?(:'universal_identity_access_rules')
    self.universal_identity_access_rules = attributes[:'universal_identity_access_rules']
  end
end

Instance Attribute Details

#access_expiresObject

Returns the value of attribute access_expires.



18
19
20
# File 'lib/akeyless/models/auth_method_access_info.rb', line 18

def access_expires
  @access_expires
end

#access_id_aliasObject

for accounts where AccessId holds encrypted email this field will hold generated AccessId, for accounts based on regular AccessId it will be equal to accessId itself



21
22
23
# File 'lib/akeyless/models/auth_method_access_info.rb', line 21

def access_id_alias
  @access_id_alias
end

#api_key_access_rulesObject

Returns the value of attribute api_key_access_rules.



23
24
25
# File 'lib/akeyless/models/auth_method_access_info.rb', line 23

def api_key_access_rules
  @api_key_access_rules
end

#audit_logs_claimsObject

Returns the value of attribute audit_logs_claims.



25
26
27
# File 'lib/akeyless/models/auth_method_access_info.rb', line 25

def audit_logs_claims
  @audit_logs_claims
end

#aws_iam_access_rulesObject

Returns the value of attribute aws_iam_access_rules.



27
28
29
# File 'lib/akeyless/models/auth_method_access_info.rb', line 27

def aws_iam_access_rules
  @aws_iam_access_rules
end

#azure_ad_access_rulesObject

Returns the value of attribute azure_ad_access_rules.



29
30
31
# File 'lib/akeyless/models/auth_method_access_info.rb', line 29

def azure_ad_access_rules
  @azure_ad_access_rules
end

#cert_access_rulesObject

Returns the value of attribute cert_access_rules.



31
32
33
# File 'lib/akeyless/models/auth_method_access_info.rb', line 31

def cert_access_rules
  @cert_access_rules
end

#cidr_whitelistObject

Returns the value of attribute cidr_whitelist.



33
34
35
# File 'lib/akeyless/models/auth_method_access_info.rb', line 33

def cidr_whitelist
  @cidr_whitelist
end

#email_pass_access_rulesObject

Returns the value of attribute email_pass_access_rules.



35
36
37
# File 'lib/akeyless/models/auth_method_access_info.rb', line 35

def email_pass_access_rules
  @email_pass_access_rules
end

#force_sub_claimsObject

if true the role associated with this auth method must include sub claims



38
39
40
# File 'lib/akeyless/models/auth_method_access_info.rb', line 38

def force_sub_claims
  @force_sub_claims
end

#gcp_access_rulesObject

Returns the value of attribute gcp_access_rules.



40
41
42
# File 'lib/akeyless/models/auth_method_access_info.rb', line 40

def gcp_access_rules
  @gcp_access_rules
end

#gw_cidr_whitelistObject

Returns the value of attribute gw_cidr_whitelist.



42
43
44
# File 'lib/akeyless/models/auth_method_access_info.rb', line 42

def gw_cidr_whitelist
  @gw_cidr_whitelist
end

#huawei_access_rulesObject

Returns the value of attribute huawei_access_rules.



44
45
46
# File 'lib/akeyless/models/auth_method_access_info.rb', line 44

def huawei_access_rules
  @huawei_access_rules
end

#jwt_ttlObject

Returns the value of attribute jwt_ttl.



46
47
48
# File 'lib/akeyless/models/auth_method_access_info.rb', line 46

def jwt_ttl
  @jwt_ttl
end

#k8s_access_rulesObject

Returns the value of attribute k8s_access_rules.



48
49
50
# File 'lib/akeyless/models/auth_method_access_info.rb', line 48

def k8s_access_rules
  @k8s_access_rules
end

#kerberos_access_rulesObject

Returns the value of attribute kerberos_access_rules.



50
51
52
# File 'lib/akeyless/models/auth_method_access_info.rb', line 50

def kerberos_access_rules
  @kerberos_access_rules
end

#ldap_access_rulesObject

Returns the value of attribute ldap_access_rules.



52
53
54
# File 'lib/akeyless/models/auth_method_access_info.rb', line 52

def ldap_access_rules
  @ldap_access_rules
end

#oauth2_access_rulesObject

Returns the value of attribute oauth2_access_rules.



54
55
56
# File 'lib/akeyless/models/auth_method_access_info.rb', line 54

def oauth2_access_rules
  @oauth2_access_rules
end

#oci_access_rulesObject

Returns the value of attribute oci_access_rules.



56
57
58
# File 'lib/akeyless/models/auth_method_access_info.rb', line 56

def oci_access_rules
  @oci_access_rules
end

#oidc_access_rulesObject

Returns the value of attribute oidc_access_rules.



58
59
60
# File 'lib/akeyless/models/auth_method_access_info.rb', line 58

def oidc_access_rules
  @oidc_access_rules
end

#product_typesObject

List of product types this auth method will be in use of



61
62
63
# File 'lib/akeyless/models/auth_method_access_info.rb', line 61

def product_types
  @product_types
end

#rules_typeObject

Returns the value of attribute rules_type.



63
64
65
# File 'lib/akeyless/models/auth_method_access_info.rb', line 63

def rules_type
  @rules_type
end

#saml_access_rulesObject

Returns the value of attribute saml_access_rules.



65
66
67
# File 'lib/akeyless/models/auth_method_access_info.rb', line 65

def saml_access_rules
  @saml_access_rules
end

#sub_claims_delimitersObject

Returns the value of attribute sub_claims_delimiters.



67
68
69
# File 'lib/akeyless/models/auth_method_access_info.rb', line 67

def sub_claims_delimiters
  @sub_claims_delimiters
end

#universal_identity_access_rulesObject

Returns the value of attribute universal_identity_access_rules.



69
70
71
# File 'lib/akeyless/models/auth_method_access_info.rb', line 69

def universal_identity_access_rules
  @universal_identity_access_rules
end

Class Method Details

._deserialize(type, value) ⇒ Object

Deserializes the data based on type

Parameters:

  • string

    type Data type

  • string

    value Value to be deserialized

Returns:

  • (Object)

    Deserialized data



352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
# File 'lib/akeyless/models/auth_method_access_info.rb', line 352

def self._deserialize(type, value)
  case type.to_sym
  when :Time
    Time.parse(value)
  when :Date
    Date.parse(value)
  when :String
    value.to_s
  when :Integer
    value.to_i
  when :Float
    value.to_f
  when :Boolean
    if value.to_s =~ /\A(true|t|yes|y|1)\z/i
      true
    else
      false
    end
  when :Object
    # generic object (usually a Hash), return directly
    value
  when /\AArray<(?<inner_type>.+)>\z/
    inner_type = Regexp.last_match[:inner_type]
    value.map { |v| _deserialize(inner_type, v) }
  when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
    k_type = Regexp.last_match[:k_type]
    v_type = Regexp.last_match[:v_type]
    {}.tap do |hash|
      value.each do |k, v|
        hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
      end
    end
  else # model
    # models (e.g. Pet) or oneOf
    klass = Akeyless.const_get(type)
    klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
  end
end

.acceptable_attributesObject

Returns all the JSON keys this model knows about



103
104
105
# File 'lib/akeyless/models/auth_method_access_info.rb', line 103

def self.acceptable_attributes
  attribute_map.values
end

.attribute_mapObject

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



72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# File 'lib/akeyless/models/auth_method_access_info.rb', line 72

def self.attribute_map
  {
    :'access_expires' => :'access_expires',
    :'access_id_alias' => :'access_id_alias',
    :'api_key_access_rules' => :'api_key_access_rules',
    :'audit_logs_claims' => :'audit_logs_claims',
    :'aws_iam_access_rules' => :'aws_iam_access_rules',
    :'azure_ad_access_rules' => :'azure_ad_access_rules',
    :'cert_access_rules' => :'cert_access_rules',
    :'cidr_whitelist' => :'cidr_whitelist',
    :'email_pass_access_rules' => :'email_pass_access_rules',
    :'force_sub_claims' => :'force_sub_claims',
    :'gcp_access_rules' => :'gcp_access_rules',
    :'gw_cidr_whitelist' => :'gw_cidr_whitelist',
    :'huawei_access_rules' => :'huawei_access_rules',
    :'jwt_ttl' => :'jwt_ttl',
    :'k8s_access_rules' => :'k8s_access_rules',
    :'kerberos_access_rules' => :'kerberos_access_rules',
    :'ldap_access_rules' => :'ldap_access_rules',
    :'oauth2_access_rules' => :'oauth2_access_rules',
    :'oci_access_rules' => :'oci_access_rules',
    :'oidc_access_rules' => :'oidc_access_rules',
    :'product_types' => :'product_types',
    :'rules_type' => :'rules_type',
    :'saml_access_rules' => :'saml_access_rules',
    :'sub_claims_delimiters' => :'sub_claims_delimiters',
    :'universal_identity_access_rules' => :'universal_identity_access_rules'
  }
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



328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
# File 'lib/akeyless/models/auth_method_access_info.rb', line 328

def self.build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)
  attributes = attributes.transform_keys(&:to_sym)
  transformed_hash = {}
  openapi_types.each_pair do |key, type|
    if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
      transformed_hash["#{key}"] = nil
    elsif type =~ /\AArray<(.*)>/i
      # check to ensure the input is an array given that the attribute
      # is documented as an array but the input is not
      if attributes[attribute_map[key]].is_a?(Array)
        transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
      end
    elsif !attributes[attribute_map[key]].nil?
      transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
    end
  end
  new(transformed_hash)
end

.openapi_nullableObject

List of attributes with nullable: true



139
140
141
142
# File 'lib/akeyless/models/auth_method_access_info.rb', line 139

def self.openapi_nullable
  Set.new([
  ])
end

.openapi_typesObject

Attribute type mapping.



108
109
110
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
# File 'lib/akeyless/models/auth_method_access_info.rb', line 108

def self.openapi_types
  {
    :'access_expires' => :'Integer',
    :'access_id_alias' => :'String',
    :'api_key_access_rules' => :'APIKeyAccessRules',
    :'audit_logs_claims' => :'Array<String>',
    :'aws_iam_access_rules' => :'AWSIAMAccessRules',
    :'azure_ad_access_rules' => :'AzureADAccessRules',
    :'cert_access_rules' => :'CertAccessRules',
    :'cidr_whitelist' => :'String',
    :'email_pass_access_rules' => :'EmailPassAccessRules',
    :'force_sub_claims' => :'Boolean',
    :'gcp_access_rules' => :'GCPAccessRules',
    :'gw_cidr_whitelist' => :'String',
    :'huawei_access_rules' => :'HuaweiAccessRules',
    :'jwt_ttl' => :'Integer',
    :'k8s_access_rules' => :'KubernetesAccessRules',
    :'kerberos_access_rules' => :'KerberosAccessRules',
    :'ldap_access_rules' => :'LDAPAccessRules',
    :'oauth2_access_rules' => :'OAuth2AccessRules',
    :'oci_access_rules' => :'OCIAccessRules',
    :'oidc_access_rules' => :'OIDCAccessRules',
    :'product_types' => :'Array<String>',
    :'rules_type' => :'String',
    :'saml_access_rules' => :'SAMLAccessRules',
    :'sub_claims_delimiters' => :'Array<String>',
    :'universal_identity_access_rules' => :'UniversalIdentityAccessRules'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
# File 'lib/akeyless/models/auth_method_access_info.rb', line 283

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      access_expires == o.access_expires &&
      access_id_alias == o.access_id_alias &&
      api_key_access_rules == o.api_key_access_rules &&
      audit_logs_claims == o.audit_logs_claims &&
      aws_iam_access_rules == o.aws_iam_access_rules &&
      azure_ad_access_rules == o.azure_ad_access_rules &&
      cert_access_rules == o.cert_access_rules &&
      cidr_whitelist == o.cidr_whitelist &&
      email_pass_access_rules == o.email_pass_access_rules &&
      force_sub_claims == o.force_sub_claims &&
      gcp_access_rules == o.gcp_access_rules &&
      gw_cidr_whitelist == o.gw_cidr_whitelist &&
      huawei_access_rules == o.huawei_access_rules &&
      jwt_ttl == o.jwt_ttl &&
      k8s_access_rules == o.k8s_access_rules &&
      kerberos_access_rules == o.kerberos_access_rules &&
      ldap_access_rules == o.ldap_access_rules &&
      oauth2_access_rules == o.oauth2_access_rules &&
      oci_access_rules == o.oci_access_rules &&
      oidc_access_rules == o.oidc_access_rules &&
      product_types == o.product_types &&
      rules_type == o.rules_type &&
      saml_access_rules == o.saml_access_rules &&
      sub_claims_delimiters == o.sub_claims_delimiters &&
      universal_identity_access_rules == o.universal_identity_access_rules
end

#_to_hash(value) ⇒ Hash

Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value

Parameters:

  • value (Object)

    Any valid value

Returns:

  • (Hash)

    Returns the value in the form of hash



423
424
425
426
427
428
429
430
431
432
433
434
435
# File 'lib/akeyless/models/auth_method_access_info.rb', line 423

def _to_hash(value)
  if value.is_a?(Array)
    value.compact.map { |v| _to_hash(v) }
  elsif value.is_a?(Hash)
    {}.tap do |hash|
      value.each { |k, v| hash[k] = _to_hash(v) }
    end
  elsif value.respond_to? :to_hash
    value.to_hash
  else
    value
  end
end

#eql?(o) ⇒ Boolean

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


315
316
317
# File 'lib/akeyless/models/auth_method_access_info.rb', line 315

def eql?(o)
  self == o
end

#hashInteger

Calculates hash code according to all attributes.

Returns:

  • (Integer)

    Hash code



321
322
323
# File 'lib/akeyless/models/auth_method_access_info.rb', line 321

def hash
  [access_expires, access_id_alias, api_key_access_rules, audit_logs_claims, aws_iam_access_rules, azure_ad_access_rules, cert_access_rules, cidr_whitelist, email_pass_access_rules, force_sub_claims, gcp_access_rules, gw_cidr_whitelist, huawei_access_rules, jwt_ttl, k8s_access_rules, kerberos_access_rules, ldap_access_rules, oauth2_access_rules, oci_access_rules, oidc_access_rules, product_types, rules_type, saml_access_rules, sub_claims_delimiters, universal_identity_access_rules].hash
end

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properties with the reasons



268
269
270
271
272
# File 'lib/akeyless/models/auth_method_access_info.rb', line 268

def list_invalid_properties
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
  invalid_properties = Array.new
  invalid_properties
end

#to_bodyHash

to_body is an alias to to_hash (backward compatibility)

Returns:

  • (Hash)

    Returns the object in the form of hash



399
400
401
# File 'lib/akeyless/models/auth_method_access_info.rb', line 399

def to_body
  to_hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



405
406
407
408
409
410
411
412
413
414
415
416
417
# File 'lib/akeyless/models/auth_method_access_info.rb', line 405

def to_hash
  hash = {}
  self.class.attribute_map.each_pair do |attr, param|
    value = self.send(attr)
    if value.nil?
      is_nullable = self.class.openapi_nullable.include?(attr)
      next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
    end

    hash[param] = _to_hash(value)
  end
  hash
end

#to_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



393
394
395
# File 'lib/akeyless/models/auth_method_access_info.rb', line 393

def to_s
  to_hash.to_s
end

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



276
277
278
279
# File 'lib/akeyless/models/auth_method_access_info.rb', line 276

def valid?
  warn '[DEPRECATED] the `valid?` method is obsolete'
  true
end