Class: OCI::IdentityDomains::Models::AppAllowedScopes

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/identity_domains/models/app_allowed_scopes.rb

Overview

A list of scopes (exposed by this App or by other Apps) that this App is allowed to access when it acts as an OAuthClient.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ AppAllowedScopes

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :fqs (String)

    The value to assign to the #fqs property

  • :id_of_defining_app (String)

    The value to assign to the #id_of_defining_app property

  • :read_only (BOOLEAN)

    The value to assign to the #read_only property



85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# File 'lib/oci/identity_domains/models/app_allowed_scopes.rb', line 85

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.fqs = attributes[:'fqs'] if attributes[:'fqs']

  self.id_of_defining_app = attributes[:'idOfDefiningApp'] if attributes[:'idOfDefiningApp']

  raise 'You cannot provide both :idOfDefiningApp and :id_of_defining_app' if attributes.key?(:'idOfDefiningApp') && attributes.key?(:'id_of_defining_app')

  self.id_of_defining_app = attributes[:'id_of_defining_app'] if attributes[:'id_of_defining_app']

  self.read_only = attributes[:'readOnly'] unless attributes[:'readOnly'].nil?

  raise 'You cannot provide both :readOnly and :read_only' if attributes.key?(:'readOnly') && attributes.key?(:'read_only')

  self.read_only = attributes[:'read_only'] unless attributes[:'read_only'].nil?
end

Instance Attribute Details

#fqsString

[Required] A fully qualified scope that this App is allowed to access when it acts as an OAuthClient.

SCIM++ Properties: - caseExact: true - idcsSearchable: true - multiValued: false - mutability: readWrite - required: true - returned: default - type: string - uniqueness: none

Returns:

  • (String)


23
24
25
# File 'lib/oci/identity_domains/models/app_allowed_scopes.rb', line 23

def fqs
  @fqs
end

#id_of_defining_appString

The ID of the App that defines this scope.

SCIM++ Properties: - caseExact: true - idcsSearchable: true - multiValued: false - mutability: readOnly - required: false - returned: default - type: string - uniqueness: none

Returns:

  • (String)


37
38
39
# File 'lib/oci/identity_domains/models/app_allowed_scopes.rb', line 37

def id_of_defining_app
  @id_of_defining_app
end

#read_onlyBOOLEAN

If true, indicates that this value must be protected.

Added In: 18.2.2

SCIM++ Properties: - idcsSearchable: false - multiValued: false - mutability: readOnly - required: false - returned: default - type: boolean - uniqueness: none

Returns:

  • (BOOLEAN)


52
53
54
# File 'lib/oci/identity_domains/models/app_allowed_scopes.rb', line 52

def read_only
  @read_only
end

Class Method Details

.attribute_mapObject

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



55
56
57
58
59
60
61
62
63
# File 'lib/oci/identity_domains/models/app_allowed_scopes.rb', line 55

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'fqs': :'fqs',
    'id_of_defining_app': :'idOfDefiningApp',
    'read_only': :'readOnly'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



66
67
68
69
70
71
72
73
74
# File 'lib/oci/identity_domains/models/app_allowed_scopes.rb', line 66

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'fqs': :'String',
    'id_of_defining_app': :'String',
    'read_only': :'BOOLEAN'
    # rubocop:enable Style/SymbolLiteral
  }
end

Instance Method Details

#==(other) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • other (Object)

    the other object to be compared



113
114
115
116
117
118
119
120
# File 'lib/oci/identity_domains/models/app_allowed_scopes.rb', line 113

def ==(other)
  return true if equal?(other)

  self.class == other.class &&
    fqs == other.fqs &&
    id_of_defining_app == other.id_of_defining_app &&
    read_only == other.read_only
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



145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
# File 'lib/oci/identity_domains/models/app_allowed_scopes.rb', line 145

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

Parameters:

  • other (Object)

    the other object to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


125
126
127
# File 'lib/oci/identity_domains/models/app_allowed_scopes.rb', line 125

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



134
135
136
# File 'lib/oci/identity_domains/models/app_allowed_scopes.rb', line 134

def hash
  [fqs, id_of_defining_app, read_only].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



178
179
180
181
182
183
184
185
186
187
# File 'lib/oci/identity_domains/models/app_allowed_scopes.rb', line 178

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_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



172
173
174
# File 'lib/oci/identity_domains/models/app_allowed_scopes.rb', line 172

def to_s
  to_hash.to_s
end