Class: OCI::IdentityDomains::Models::SchemaSearchRequest
- Inherits:
-
Object
- Object
- OCI::IdentityDomains::Models::SchemaSearchRequest
- Defined in:
- lib/oci/identity_domains/models/schema_search_request.rb
Overview
Clients MAY execute queries without passing parameters on the URL by using the HTTP POST verb combined with the .search path extension. The inclusion of .search on the end of a valid SCIM endpoint SHALL be used to indicate the HTTP POST verb is intended to be a query operation. To create a new query result set, a SCIM client sends an HTTP POST request to the desired SCIM resource endpoint (ending in .search). The body of the POST request MAY include any of the parameters.
Constant Summary collapse
- ATTRIBUTE_SETS_ENUM =
[ ATTRIBUTE_SETS_ALL = 'all'.freeze, ATTRIBUTE_SETS_ALWAYS = 'always'.freeze, ATTRIBUTE_SETS_NEVER = 'never'.freeze, ATTRIBUTE_SETS_REQUEST = 'request'.freeze, ATTRIBUTE_SETS_DEFAULT = 'default'.freeze ].freeze
- SORT_ORDER_ENUM =
[ SORT_ORDER_ASCENDING = 'ASCENDING'.freeze, SORT_ORDER_DESCENDING = 'DESCENDING'.freeze ].freeze
Instance Attribute Summary collapse
-
#attribute_sets ⇒ Array<String>
A multi-valued list of strings indicating the return type of attribute definition.
-
#attributes ⇒ Array<String>
A multi-valued list of strings indicating the names of resource attributes to return in the response overriding the set of attributes that would be returned by default.
-
#count ⇒ Integer
An integer that indicates the desired maximum number of query results per page.
-
#schemas ⇒ Array<String>
[Required] The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation.
-
#sort_by ⇒ String
A string that indicates the attribute whose value SHALL be used to order the returned responses.
-
#sort_order ⇒ String
A string that indicates the order in which the sortBy parameter is applied.
-
#start_index ⇒ Integer
An integer that indicates the 1-based index of the first query result.
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 = {}) ⇒ SchemaSearchRequest
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 = {}) ⇒ SchemaSearchRequest
Initializes the object
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 |
# File 'lib/oci/identity_domains/models/schema_search_request.rb', line 95 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.schemas = attributes[:'schemas'] if attributes[:'schemas'] self.attributes = attributes[:'attributes'] if attributes[:'attributes'] self.attribute_sets = attributes[:'attributeSets'] if attributes[:'attributeSets'] raise 'You cannot provide both :attributeSets and :attribute_sets' if attributes.key?(:'attributeSets') && attributes.key?(:'attribute_sets') self.attribute_sets = attributes[:'attribute_sets'] if attributes[:'attribute_sets'] self.sort_by = attributes[:'sortBy'] if attributes[:'sortBy'] raise 'You cannot provide both :sortBy and :sort_by' if attributes.key?(:'sortBy') && attributes.key?(:'sort_by') self.sort_by = attributes[:'sort_by'] if attributes[:'sort_by'] self.sort_order = attributes[:'sortOrder'] if attributes[:'sortOrder'] raise 'You cannot provide both :sortOrder and :sort_order' if attributes.key?(:'sortOrder') && attributes.key?(:'sort_order') self.sort_order = attributes[:'sort_order'] if attributes[:'sort_order'] self.start_index = attributes[:'startIndex'] if attributes[:'startIndex'] raise 'You cannot provide both :startIndex and :start_index' if attributes.key?(:'startIndex') && attributes.key?(:'start_index') self.start_index = attributes[:'start_index'] if attributes[:'start_index'] self.count = attributes[:'count'] if attributes[:'count'] end |
Instance Attribute Details
#attribute_sets ⇒ Array<String>
A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If "attributes" query parameter is also available, union of the two is fetched. Valid values : all, always, never, request, default. Values are case-insensitive. OPTIONAL.
34 35 36 |
# File 'lib/oci/identity_domains/models/schema_search_request.rb', line 34 def attribute_sets @attribute_sets end |
#attributes ⇒ Array<String>
A multi-valued list of strings indicating the names of resource attributes to return in the response overriding the set of attributes that would be returned by default. Attribute names MUST be in standard attribute notation (Section 3.10) form. See (additional retrieval query parameters). OPTIONAL.
30 31 32 |
# File 'lib/oci/identity_domains/models/schema_search_request.rb', line 30 def attributes @attributes end |
#count ⇒ Integer
An integer that indicates the desired maximum number of query results per page. 1000 is the largest value that you can use. See the Pagination section of the System for Cross-Domain Identity Management Protocol specification for more information. (Section 3.4.2.4). OPTIONAL.
50 51 52 |
# File 'lib/oci/identity_domains/models/schema_search_request.rb', line 50 def count @count end |
#schemas ⇒ Array<String>
[Required] The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. Query requests MUST be identified using the following URI: "urn:ietf:params:scim:api:messages:2.0:SearchRequest" REQUIRED.
26 27 28 |
# File 'lib/oci/identity_domains/models/schema_search_request.rb', line 26 def schemas @schemas end |
#sort_by ⇒ String
A string that indicates the attribute whose value SHALL be used to order the returned responses. The sortBy attribute MUST be in standard attribute notation (Section 3.10) form. See Sorting section. OPTIONAL.
38 39 40 |
# File 'lib/oci/identity_domains/models/schema_search_request.rb', line 38 def sort_by @sort_by end |
#sort_order ⇒ String
A string that indicates the order in which the sortBy parameter is applied. Allowed values are "ascending" and "descending". See (Sorting Section). OPTIONAL.
42 43 44 |
# File 'lib/oci/identity_domains/models/schema_search_request.rb', line 42 def sort_order @sort_order end |
#start_index ⇒ Integer
An integer that indicates the 1-based index of the first query result. See Pagination Section. OPTIONAL.
46 47 48 |
# File 'lib/oci/identity_domains/models/schema_search_request.rb', line 46 def start_index @start_index end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
53 54 55 56 57 58 59 60 61 62 63 64 65 |
# File 'lib/oci/identity_domains/models/schema_search_request.rb', line 53 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'schemas': :'schemas', 'attributes': :'attributes', 'attribute_sets': :'attributeSets', 'sort_by': :'sortBy', 'sort_order': :'sortOrder', 'start_index': :'startIndex', 'count': :'count' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
68 69 70 71 72 73 74 75 76 77 78 79 80 |
# File 'lib/oci/identity_domains/models/schema_search_request.rb', line 68 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'schemas': :'Array<String>', 'attributes': :'Array<String>', 'attribute_sets': :'Array<String>', 'sort_by': :'String', 'sort_order': :'String', 'start_index': :'Integer', 'count': :'Integer' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
162 163 164 165 166 167 168 169 170 171 172 173 |
# File 'lib/oci/identity_domains/models/schema_search_request.rb', line 162 def ==(other) return true if equal?(other) self.class == other.class && schemas == other.schemas && attributes == other.attributes && attribute_sets == other.attribute_sets && sort_by == other.sort_by && sort_order == other.sort_order && start_index == other.start_index && count == other.count 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/schema_search_request.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/schema_search_request.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/schema_search_request.rb', line 187 def hash [schemas, attributes, attribute_sets, sort_by, sort_order, start_index, count].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/schema_search_request.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/schema_search_request.rb', line 225 def to_s to_hash.to_s end |