Class: OCI::IdentityDomains::Models::GroupExtGrants
- Inherits:
- 
      Object
      
        - Object
- OCI::IdentityDomains::Models::GroupExtGrants
 
- Defined in:
- lib/oci/identity_domains/models/group_ext_grants.rb
Overview
Grants assigned to group
SCIM++ Properties: - idcsSearchable: true - multiValued: true - mutability: readOnly - required: false - returned: request - type: complex - uniqueness: none
Constant Summary collapse
- GRANT_MECHANISM_ENUM =
- [ GRANT_MECHANISM_IMPORT_APPROLE_MEMBERS = 'IMPORT_APPROLE_MEMBERS'.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 = {})  ⇒ GroupExtGrants 
    
    
  
  
  
    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 = {}) ⇒ GroupExtGrants
Initializes the object
| 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 | # File 'lib/oci/identity_domains/models/group_ext_grants.rb', line 126 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 - idcsSearchable: true - multiValued: false - mutability: readOnly - required: false - returned: default - type: string - uniqueness: none
| 72 73 74 | # File 'lib/oci/identity_domains/models/group_ext_grants.rb', line 72 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 - idcsSearchable: true - multiValued: false - mutability: readOnly - required: false - returned: default - type: string - uniqueness: none
| 90 91 92 | # File 'lib/oci/identity_domains/models/group_ext_grants.rb', line 90 def grant_mechanism @grant_mechanism end | 
#ref ⇒ String
Grant URI
SCIM++ Properties: - idcsSearchable: false - multiValued: false - mutability: readOnly - required: false - returned: default - type: reference - uniqueness: none
| 58 59 60 | # File 'lib/oci/identity_domains/models/group_ext_grants.rb', line 58 def ref @ref end | 
#value ⇒ String
Grant identifier
SCIM++ Properties: - caseExact: true - idcsSearchable: true - multiValued: false - mutability: readOnly - required: false - returned: default - type: string - uniqueness: none
| 45 46 47 | # File 'lib/oci/identity_domains/models/group_ext_grants.rb', line 45 def value @value end | 
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
| 93 94 95 96 97 98 99 100 101 102 | # File 'lib/oci/identity_domains/models/group_ext_grants.rb', line 93 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.
| 105 106 107 108 109 110 111 112 113 114 | # File 'lib/oci/identity_domains/models/group_ext_grants.rb', line 105 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.
| 169 170 171 172 173 174 175 176 177 | # File 'lib/oci/identity_domains/models/group_ext_grants.rb', line 169 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
| 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 | # File 'lib/oci/identity_domains/models/group_ext_grants.rb', line 202 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
| 182 183 184 | # File 'lib/oci/identity_domains/models/group_ext_grants.rb', line 182 def eql?(other) self == other end | 
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
| 191 192 193 | # File 'lib/oci/identity_domains/models/group_ext_grants.rb', line 191 def hash [value, ref, app_id, grant_mechanism].hash end | 
#to_hash ⇒ Hash
Returns the object in the form of hash
| 235 236 237 238 239 240 241 242 243 244 | # File 'lib/oci/identity_domains/models/group_ext_grants.rb', line 235 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
| 229 230 231 | # File 'lib/oci/identity_domains/models/group_ext_grants.rb', line 229 def to_s to_hash.to_s end |