Class: OCI::ObjectStorage::Models::PatternDetails
- Inherits:
-
Object
- Object
- OCI::ObjectStorage::Models::PatternDetails
- Defined in:
- lib/oci/object_storage/models/pattern_details.rb
Overview
Specifying inclusion and exclusion patterns.
Instance Attribute Summary collapse
-
#exclusion_patterns ⇒ Array<String>
An array of glob patterns to match the object names to exclude.
-
#inclusion_patterns ⇒ Array<String>
An array of glob patterns to match the object names to include.
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 = {}) ⇒ PatternDetails
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 = {}) ⇒ PatternDetails
Initializes the object
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
# File 'lib/oci/object_storage/models/pattern_details.rb', line 88 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.inclusion_patterns = attributes[:'inclusionPatterns'] if attributes[:'inclusionPatterns'] raise 'You cannot provide both :inclusionPatterns and :inclusion_patterns' if attributes.key?(:'inclusionPatterns') && attributes.key?(:'inclusion_patterns') self.inclusion_patterns = attributes[:'inclusion_patterns'] if attributes[:'inclusion_patterns'] self.exclusion_patterns = attributes[:'exclusionPatterns'] if attributes[:'exclusionPatterns'] raise 'You cannot provide both :exclusionPatterns and :exclusion_patterns' if attributes.key?(:'exclusionPatterns') && attributes.key?(:'exclusion_patterns') self.exclusion_patterns = attributes[:'exclusion_patterns'] if attributes[:'exclusion_patterns'] end |
Instance Attribute Details
#exclusion_patterns ⇒ Array<String>
An array of glob patterns to match the object names to exclude. An empty array is ignored. Exclusion patterns take precedence over inclusion patterns. A Glob pattern is a sequence of characters to match text. Any character that appears in the pattern, other than the special pattern characters described below, matches itself. Glob patterns must be between 1 and 1024 characters.
The special pattern characters have the following meanings:
\\ Escapes the following character
* Matches any string of characters.
? Matches any single character .
[...] Matches a group of characters. A group of characters can be:
A set of characters, for example: [Zafg9@]. This matches any character in the brackets.
A range of characters, for example: [a-z]. This matches any character in the range.
[a-f] is equivalent to [abcdef].
For character ranges only the CHARACTER-CHARACTER pattern is supported.
[ab-yz] is not valid
[a-mn-z] is not valid
Character ranges can not start with ^ or :
To include a '-' in the range, make it the first or last character.
58 59 60 |
# File 'lib/oci/object_storage/models/pattern_details.rb', line 58 def exclusion_patterns @exclusion_patterns end |
#inclusion_patterns ⇒ Array<String>
An array of glob patterns to match the object names to include. An empty array includes all objects in the bucket. Exclusion patterns take precedence over inclusion patterns. A Glob pattern is a sequence of characters to match text. Any character that appears in the pattern, other than the special pattern characters described below, matches itself. Glob patterns must be between 1 and 1024 characters.
The special pattern characters have the following meanings:
\\ Escapes the following character
* Matches any string of characters.
? Matches any single character .
[...] Matches a group of characters. A group of characters can be:
A set of characters, for example: [Zafg9@]. This matches any character in the brackets.
A range of characters, for example: [a-z]. This matches any character in the range.
[a-f] is equivalent to [abcdef].
For character ranges only the CHARACTER-CHARACTER pattern is supported.
[ab-yz] is not valid
[a-mn-z] is not valid
Character ranges can not start with ^ or :
To include a '-' in the range, make it the first or last character.
34 35 36 |
# File 'lib/oci/object_storage/models/pattern_details.rb', line 34 def inclusion_patterns @inclusion_patterns end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
61 62 63 64 65 66 67 68 |
# File 'lib/oci/object_storage/models/pattern_details.rb', line 61 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'inclusion_patterns': :'inclusionPatterns', 'exclusion_patterns': :'exclusionPatterns' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
71 72 73 74 75 76 77 78 |
# File 'lib/oci/object_storage/models/pattern_details.rb', line 71 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'inclusion_patterns': :'Array<String>', 'exclusion_patterns': :'Array<String>' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
114 115 116 117 118 119 120 |
# File 'lib/oci/object_storage/models/pattern_details.rb', line 114 def ==(other) return true if equal?(other) self.class == other.class && inclusion_patterns == other.inclusion_patterns && exclusion_patterns == other.exclusion_patterns end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
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/object_storage/models/pattern_details.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
125 126 127 |
# File 'lib/oci/object_storage/models/pattern_details.rb', line 125 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
134 135 136 |
# File 'lib/oci/object_storage/models/pattern_details.rb', line 134 def hash [inclusion_patterns, exclusion_patterns].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
178 179 180 181 182 183 184 185 186 187 |
# File 'lib/oci/object_storage/models/pattern_details.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_s ⇒ String
Returns the string representation of the object
172 173 174 |
# File 'lib/oci/object_storage/models/pattern_details.rb', line 172 def to_s to_hash.to_s end |