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 +4 -4
- data/README.md +1 -1
- data/docs/AuthMethodRoleAssociation.md +2 -0
- data/lib/akeyless/models/auth_method_role_association.rb +10 -1
- data/lib/akeyless/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: de6dff08853cb576ecb35e56f6bca9e8665fff54f440185a61805fcb251c00b3
|
|
4
|
+
data.tar.gz: 3625d423210bdb5822da5657c887e9c81cb41ec05ba17bb4fdefd110663a4690
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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
|
data/lib/akeyless/version.rb
CHANGED