akeyless 3.3.11 → 3.3.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 51b13d8fe2397378d01832f43a5e5979748190ef983b36bb95ad80aefdd69183
4
- data.tar.gz: 24be0cba026670619fd233683184b1507b8918025e7177edbf5fd497fba1ea1c
3
+ metadata.gz: de6dff08853cb576ecb35e56f6bca9e8665fff54f440185a61805fcb251c00b3
4
+ data.tar.gz: 3625d423210bdb5822da5657c887e9c81cb41ec05ba17bb4fdefd110663a4690
5
5
  SHA512:
6
- metadata.gz: d3d3b33f0a024de923bf68aa8b4b7d2abf304e6cef9ab5a4f7124877752b7d936276948dbef7739b6815092b023b689bed87d0885879c9da4413efce3f95576d
7
- data.tar.gz: 19f455c0eb78c9c3bfad156fc8be91c58b19e8dff4632d0fb623aedbf6998aeaf1a955780ae4e75ab7e387f16f40a6a122ba16a5b0c48d479d6384c9662d0e62
6
+ metadata.gz: 91fa7652e248015bb20bb34ab3e4c41169189844f93f5b7886945c2052853549fa999464657d45d97913bda827b8791f712781b64bbf6db54b34073465f3770d
7
+ data.tar.gz: 6e2525a210e29836ab0297de48c41e3968a9b085a65b4aae114f7cf7a40e3e1c1cd27fb21e10f1c12b5edf01171635f22c00f600edd825b196796a2de01a36ff
data/README.md CHANGED
@@ -7,7 +7,7 @@ The purpose of this application is to provide access to Akeyless API.
7
7
  This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
8
8
 
9
9
  - API version: 2.0
10
- - Package version: 3.3.11
10
+ - Package version: 3.3.12
11
11
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [http://akeyless.io](http://akeyless.io)
13
13
 
@@ -7,6 +7,7 @@
7
7
  | **allowed_ops** | **Array<String>** | | [optional] |
8
8
  | **assoc_id** | **String** | | [optional] |
9
9
  | **auth_method_sub_claims** | **Hash<String, Array<String>>** | | [optional] |
10
+ | **is_sub_claims_case_sensitive** | **Boolean** | | [optional] |
10
11
  | **role_name** | **String** | | [optional] |
11
12
  | **rules** | [**Rules**](Rules.md) | | [optional] |
12
13
 
@@ -19,6 +20,7 @@ instance = Akeyless::AuthMethodRoleAssociation.new(
19
20
  allowed_ops: null,
20
21
  assoc_id: null,
21
22
  auth_method_sub_claims: null,
23
+ is_sub_claims_case_sensitive: null,
22
24
  role_name: null,
23
25
  rules: null
24
26
  )
@@ -22,6 +22,8 @@ module Akeyless
22
22
 
23
23
  attr_accessor :auth_method_sub_claims
24
24
 
25
+ attr_accessor :is_sub_claims_case_sensitive
26
+
25
27
  attr_accessor :role_name
26
28
 
27
29
  attr_accessor :rules
@@ -32,6 +34,7 @@ module Akeyless
32
34
  :'allowed_ops' => :'allowed_ops',
33
35
  :'assoc_id' => :'assoc_id',
34
36
  :'auth_method_sub_claims' => :'auth_method_sub_claims',
37
+ :'is_sub_claims_case_sensitive' => :'is_sub_claims_case_sensitive',
35
38
  :'role_name' => :'role_name',
36
39
  :'rules' => :'rules'
37
40
  }
@@ -48,6 +51,7 @@ module Akeyless
48
51
  :'allowed_ops' => :'Array<String>',
49
52
  :'assoc_id' => :'String',
50
53
  :'auth_method_sub_claims' => :'Hash<String, Array<String>>',
54
+ :'is_sub_claims_case_sensitive' => :'Boolean',
51
55
  :'role_name' => :'String',
52
56
  :'rules' => :'Rules'
53
57
  }
@@ -90,6 +94,10 @@ module Akeyless
90
94
  end
91
95
  end
92
96
 
97
+ if attributes.key?(:'is_sub_claims_case_sensitive')
98
+ self.is_sub_claims_case_sensitive = attributes[:'is_sub_claims_case_sensitive']
99
+ end
100
+
93
101
  if attributes.key?(:'role_name')
94
102
  self.role_name = attributes[:'role_name']
95
103
  end
@@ -120,6 +128,7 @@ module Akeyless
120
128
  allowed_ops == o.allowed_ops &&
121
129
  assoc_id == o.assoc_id &&
122
130
  auth_method_sub_claims == o.auth_method_sub_claims &&
131
+ is_sub_claims_case_sensitive == o.is_sub_claims_case_sensitive &&
123
132
  role_name == o.role_name &&
124
133
  rules == o.rules
125
134
  end
@@ -133,7 +142,7 @@ module Akeyless
133
142
  # Calculates hash code according to all attributes.
134
143
  # @return [Integer] Hash code
135
144
  def hash
136
- [allowed_ops, assoc_id, auth_method_sub_claims, role_name, rules].hash
145
+ [allowed_ops, assoc_id, auth_method_sub_claims, is_sub_claims_case_sensitive, role_name, rules].hash
137
146
  end
138
147
 
139
148
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 7.0.0-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module Akeyless
14
- VERSION = '3.3.11'
14
+ VERSION = '3.3.12'
15
15
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: akeyless
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.11
4
+ version: 3.3.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator