Class: OCI::IdentityDomains::Models::DynamicResourceGroupGrants
- Inherits:
-
Object
- Object
- OCI::IdentityDomains::Models::DynamicResourceGroupGrants
- Defined in:
- lib/oci/identity_domains/models/dynamic_resource_group_grants.rb
Overview
Grants assigned to group
Constant Summary collapse
- GRANT_MECHANISM_ENUM =
[ GRANT_MECHANISM_IMPORT_APPROLE_MEMBERS = 'IMPORT_APPROLE_MEMBERS'.freeze, GRANT_MECHANISM_ADMINISTRATOR_TO_DYNAMIC_RESOURCE_GROUP = 'ADMINISTRATOR_TO_DYNAMIC_RESOURCE_GROUP'.freeze, GRANT_MECHANISM_ADMINISTRATOR_TO_USER = 'ADMINISTRATOR_TO_USER'.freeze, GRANT_MECHANISM_ADMINISTRATOR_TO_GROUP = 'ADMINISTRATOR_TO_GROUP'.freeze, GRANT_MECHANISM_SERVICE_MANAGER_TO_USER = 'SERVICE_MANAGER_TO_USER'.freeze, GRANT_MECHANISM_ADMINISTRATOR_TO_APP = 'ADMINISTRATOR_TO_APP'.freeze, GRANT_MECHANISM_SERVICE_MANAGER_TO_APP = 'SERVICE_MANAGER_TO_APP'.freeze, GRANT_MECHANISM_OPC_INFRA_TO_APP = 'OPC_INFRA_TO_APP'.freeze, GRANT_MECHANISM_GROUP_MEMBERSHIP = 'GROUP_MEMBERSHIP'.freeze, GRANT_MECHANISM_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Instance Attribute Summary collapse
-
#app_id ⇒ String
App identifier.
-
#grant_mechanism ⇒ String
Each value of grantMechanism indicates how (or by what component) some App (or App-Entitlement) was granted.
-
#ref ⇒ String
Grant URI.
-
#value ⇒ String
Grant identifier.
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 = {}) ⇒ DynamicResourceGroupGrants
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 = {}) ⇒ DynamicResourceGroupGrants
Initializes the object
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 |
# File 'lib/oci/identity_domains/models/dynamic_resource_group_grants.rb', line 122 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.value = attributes[:'value'] if attributes[:'value'] self.ref = attributes[:'$ref'] if attributes[:'$ref'] self.app_id = attributes[:'appId'] if attributes[:'appId'] raise 'You cannot provide both :appId and :app_id' if attributes.key?(:'appId') && attributes.key?(:'app_id') self.app_id = attributes[:'app_id'] if attributes[:'app_id'] self.grant_mechanism = attributes[:'grantMechanism'] if attributes[:'grantMechanism'] raise 'You cannot provide both :grantMechanism and :grant_mechanism' if attributes.key?(:'grantMechanism') && attributes.key?(:'grant_mechanism') self.grant_mechanism = attributes[:'grant_mechanism'] if attributes[:'grant_mechanism'] end |
Instance Attribute Details
#app_id ⇒ String
App identifier
SCIM++ Properties: - caseExact: true - idcsAddedSinceVersion: 3 - idcsSearchable: true - multiValued: false - mutability: readOnly - required: false - returned: default - type: string - uniqueness: none
67 68 69 |
# File 'lib/oci/identity_domains/models/dynamic_resource_group_grants.rb', line 67 def app_id @app_id end |
#grant_mechanism ⇒ String
Each value of grantMechanism indicates how (or by what component) some App (or App-Entitlement) was granted. A customer or the UI should use only grantMechanism values that start with 'ADMINISTRATOR': - 'ADMINISTRATOR_TO_USER' is for a direct grant to a specific User. - 'ADMINISTRATOR_TO_GROUP' is for a grant to a specific Group, which results in indirect grants to Users who are members of that Group. - 'ADMINISTRATOR_TO_APP' is for a grant to a specific App. The grantee (client) App gains access to the granted (server) App.
SCIM++ Properties: - caseExact: true - idcsAddedSinceVersion: 3 - idcsSearchable: true - multiValued: false - mutability: readOnly - required: false - returned: default - type: string - uniqueness: none
86 87 88 |
# File 'lib/oci/identity_domains/models/dynamic_resource_group_grants.rb', line 86 def grant_mechanism @grant_mechanism end |
#ref ⇒ String
Grant URI
SCIM++ Properties: - idcsAddedSinceVersion: 3 - idcsSearchable: false - multiValued: false - mutability: readOnly - required: false - returned: default - type: reference - uniqueness: none
52 53 54 |
# File 'lib/oci/identity_domains/models/dynamic_resource_group_grants.rb', line 52 def ref @ref end |
#value ⇒ String
Grant identifier
SCIM++ Properties: - caseExact: true - idcsAddedSinceVersion: 3 - idcsSearchable: true - multiValued: false - mutability: readOnly - required: false - returned: default - type: string - uniqueness: none
38 39 40 |
# File 'lib/oci/identity_domains/models/dynamic_resource_group_grants.rb', line 38 def value @value end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
89 90 91 92 93 94 95 96 97 98 |
# File 'lib/oci/identity_domains/models/dynamic_resource_group_grants.rb', line 89 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'value': :'value', 'ref': :'$ref', 'app_id': :'appId', 'grant_mechanism': :'grantMechanism' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
101 102 103 104 105 106 107 108 109 110 |
# File 'lib/oci/identity_domains/models/dynamic_resource_group_grants.rb', line 101 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'value': :'String', 'ref': :'String', 'app_id': :'String', 'grant_mechanism': :'String' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
165 166 167 168 169 170 171 172 173 |
# File 'lib/oci/identity_domains/models/dynamic_resource_group_grants.rb', line 165 def ==(other) return true if equal?(other) self.class == other.class && value == other.value && ref == other.ref && app_id == other.app_id && grant_mechanism == other.grant_mechanism end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 |
# File 'lib/oci/identity_domains/models/dynamic_resource_group_grants.rb', line 198 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
178 179 180 |
# File 'lib/oci/identity_domains/models/dynamic_resource_group_grants.rb', line 178 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
187 188 189 |
# File 'lib/oci/identity_domains/models/dynamic_resource_group_grants.rb', line 187 def hash [value, ref, app_id, grant_mechanism].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
231 232 233 234 235 236 237 238 239 240 |
# File 'lib/oci/identity_domains/models/dynamic_resource_group_grants.rb', line 231 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
225 226 227 |
# File 'lib/oci/identity_domains/models/dynamic_resource_group_grants.rb', line 225 def to_s to_hash.to_s end |