Class: CloudsmithApi::RepositoryTokenRequestPatch

Inherits:
Object
  • Object
show all
Defined in:
lib/cloudsmith-api/models/repository_token_request_patch.rb

Defined Under Namespace

Classes: EnumAttributeValidator

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ RepositoryTokenRequestPatch

Initializes the object

Parameters:

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

    Model attributes in the form of hash



123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
# File 'lib/cloudsmith-api/models/repository_token_request_patch.rb', line 123

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 }

  if attributes.has_key?(:'eula_required')
    self.eula_required = attributes[:'eula_required']
  end

  if attributes.has_key?(:'is_active')
    self.is_active = attributes[:'is_active']
  end

  if attributes.has_key?(:'limit_bandwidth')
    self.limit_bandwidth = attributes[:'limit_bandwidth']
  end

  if attributes.has_key?(:'limit_bandwidth_unit')
    self.limit_bandwidth_unit = attributes[:'limit_bandwidth_unit']
  else
    self.limit_bandwidth_unit = 'Byte'
  end

  if attributes.has_key?(:'limit_date_range_from')
    self.limit_date_range_from = attributes[:'limit_date_range_from']
  end

  if attributes.has_key?(:'limit_date_range_to')
    self.limit_date_range_to = attributes[:'limit_date_range_to']
  end

  if attributes.has_key?(:'limit_num_clients')
    self.limit_num_clients = attributes[:'limit_num_clients']
  end

  if attributes.has_key?(:'limit_num_downloads')
    self.limit_num_downloads = attributes[:'limit_num_downloads']
  end

  if attributes.has_key?(:'limit_package_query')
    self.limit_package_query = attributes[:'limit_package_query']
  end

  if attributes.has_key?(:'limit_path_query')
    self.limit_path_query = attributes[:'limit_path_query']
  end

  if attributes.has_key?(:'metadata')
    self. = attributes[:'metadata']
  end

  if attributes.has_key?(:'name')
    self.name = attributes[:'name']
  end

  if attributes.has_key?(:'scheduled_reset_at')
    self.scheduled_reset_at = attributes[:'scheduled_reset_at']
  end

  if attributes.has_key?(:'scheduled_reset_period')
    self.scheduled_reset_period = attributes[:'scheduled_reset_period']
  else
    self.scheduled_reset_period = 'Never Reset'
  end

  if attributes.has_key?(:'token')
    self.token = attributes[:'token']
  end
end

Instance Attribute Details

#eula_requiredObject

If checked, a EULA acceptance is required for this token.



18
19
20
# File 'lib/cloudsmith-api/models/repository_token_request_patch.rb', line 18

def eula_required
  @eula_required
end

#is_activeObject

If enabled, the token will allow downloads based on configured restrictions (if any).



21
22
23
# File 'lib/cloudsmith-api/models/repository_token_request_patch.rb', line 21

def is_active
  @is_active
end

#limit_bandwidthObject

The maximum download bandwidth allowed for the token. Values are expressed as the selected unit of bandwidth. Please note that since downloads are calculated asynchronously (after the download happens), the limit may not be imposed immediately but at a later point.



24
25
26
# File 'lib/cloudsmith-api/models/repository_token_request_patch.rb', line 24

def limit_bandwidth
  @limit_bandwidth
end

#limit_bandwidth_unitObject

Returns the value of attribute limit_bandwidth_unit.



26
27
28
# File 'lib/cloudsmith-api/models/repository_token_request_patch.rb', line 26

def limit_bandwidth_unit
  @limit_bandwidth_unit
end

#limit_date_range_fromObject

The starting date/time the token is allowed to be used from.



29
30
31
# File 'lib/cloudsmith-api/models/repository_token_request_patch.rb', line 29

def limit_date_range_from
  @limit_date_range_from
end

#limit_date_range_toObject

The ending date/time the token is allowed to be used until.



32
33
34
# File 'lib/cloudsmith-api/models/repository_token_request_patch.rb', line 32

def limit_date_range_to
  @limit_date_range_to
end

#limit_num_clientsObject

The maximum number of unique clients allowed for the token. Please note that since clients are calculated asynchronously (after the download happens), the limit may not be imposed immediately but at a later point.



35
36
37
# File 'lib/cloudsmith-api/models/repository_token_request_patch.rb', line 35

def limit_num_clients
  @limit_num_clients
end

#limit_num_downloadsObject

The maximum number of downloads allowed for the token. Please note that since downloads are calculated asynchronously (after the download happens), the limit may not be imposed immediately but at a later point.



38
39
40
# File 'lib/cloudsmith-api/models/repository_token_request_patch.rb', line 38

def limit_num_downloads
  @limit_num_downloads
end

#limit_package_queryObject

The package-based search query to apply to restrict downloads to. This uses the same syntax as the standard search used for repositories, and also supports boolean logic operators such as OR/AND/NOT and parentheses for grouping. This will still allow access to non-package files, such as metadata.



41
42
43
# File 'lib/cloudsmith-api/models/repository_token_request_patch.rb', line 41

def limit_package_query
  @limit_package_query
end

#limit_path_queryObject

THIS WILL SOON BE DEPRECATED, please use limit_package_query instead. The path-based search query to apply to restrict downloads to. This supports boolean logic operators such as OR/AND/NOT and parentheses for grouping. The path evaluated does not include the domain name, the namespace, the entitlement code used, the package format, etc. and it always starts with a forward slash.



44
45
46
# File 'lib/cloudsmith-api/models/repository_token_request_patch.rb', line 44

def limit_path_query
  @limit_path_query
end

#metadataObject

Returns the value of attribute metadata.



46
47
48
# File 'lib/cloudsmith-api/models/repository_token_request_patch.rb', line 46

def 
  @metadata
end

#nameObject

Returns the value of attribute name.



48
49
50
# File 'lib/cloudsmith-api/models/repository_token_request_patch.rb', line 48

def name
  @name
end

#scheduled_reset_atObject

The time at which the scheduled reset period has elapsed and the token limits were automatically reset to zero.



51
52
53
# File 'lib/cloudsmith-api/models/repository_token_request_patch.rb', line 51

def scheduled_reset_at
  @scheduled_reset_at
end

#scheduled_reset_periodObject

Returns the value of attribute scheduled_reset_period.



53
54
55
# File 'lib/cloudsmith-api/models/repository_token_request_patch.rb', line 53

def scheduled_reset_period
  @scheduled_reset_period
end

#tokenObject

Returns the value of attribute token.



55
56
57
# File 'lib/cloudsmith-api/models/repository_token_request_patch.rb', line 55

def token
  @token
end

Class Method Details

.attribute_mapObject

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



80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# File 'lib/cloudsmith-api/models/repository_token_request_patch.rb', line 80

def self.attribute_map
  {
    :'eula_required' => :'eula_required',
    :'is_active' => :'is_active',
    :'limit_bandwidth' => :'limit_bandwidth',
    :'limit_bandwidth_unit' => :'limit_bandwidth_unit',
    :'limit_date_range_from' => :'limit_date_range_from',
    :'limit_date_range_to' => :'limit_date_range_to',
    :'limit_num_clients' => :'limit_num_clients',
    :'limit_num_downloads' => :'limit_num_downloads',
    :'limit_package_query' => :'limit_package_query',
    :'limit_path_query' => :'limit_path_query',
    :'metadata' => :'metadata',
    :'name' => :'name',
    :'scheduled_reset_at' => :'scheduled_reset_at',
    :'scheduled_reset_period' => :'scheduled_reset_period',
    :'token' => :'token'
  }
end

.swagger_typesObject

Attribute type mapping.



101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# File 'lib/cloudsmith-api/models/repository_token_request_patch.rb', line 101

def self.swagger_types
  {
    :'eula_required' => :'BOOLEAN',
    :'is_active' => :'BOOLEAN',
    :'limit_bandwidth' => :'Integer',
    :'limit_bandwidth_unit' => :'String',
    :'limit_date_range_from' => :'DateTime',
    :'limit_date_range_to' => :'DateTime',
    :'limit_num_clients' => :'Integer',
    :'limit_num_downloads' => :'Integer',
    :'limit_package_query' => :'String',
    :'limit_path_query' => :'String',
    :'metadata' => :'Object',
    :'name' => :'String',
    :'scheduled_reset_at' => :'DateTime',
    :'scheduled_reset_period' => :'String',
    :'token' => :'String'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
# File 'lib/cloudsmith-api/models/repository_token_request_patch.rb', line 233

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      eula_required == o.eula_required &&
      is_active == o.is_active &&
      limit_bandwidth == o.limit_bandwidth &&
      limit_bandwidth_unit == o.limit_bandwidth_unit &&
      limit_date_range_from == o.limit_date_range_from &&
      limit_date_range_to == o.limit_date_range_to &&
      limit_num_clients == o.limit_num_clients &&
      limit_num_downloads == o.limit_num_downloads &&
      limit_package_query == o.limit_package_query &&
      limit_path_query == o.limit_path_query &&
       == o. &&
      name == o.name &&
      scheduled_reset_at == o.scheduled_reset_at &&
      scheduled_reset_period == o.scheduled_reset_period &&
      token == o.token
end

#_deserialize(type, value) ⇒ Object

Deserializes the data based on type

Parameters:

  • string

    type Data type

  • string

    value Value to be deserialized

Returns:

  • (Object)

    Deserialized data



289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
# File 'lib/cloudsmith-api/models/repository_token_request_patch.rb', line 289

def _deserialize(type, value)
  case type.to_sym
  when :DateTime
    DateTime.parse(value)
  when :Date
    Date.parse(value)
  when :String
    value.to_s
  when :Integer
    value.to_i
  when :Float
    value.to_f
  when :BOOLEAN
    if value.to_s =~ /\A(true|t|yes|y|1)\z/i
      true
    else
      false
    end
  when :Object
    # generic object (usually a Hash), return directly
    value
  when /\AArray<(?<inner_type>.+)>\z/
    inner_type = Regexp.last_match[:inner_type]
    value.map { |v| _deserialize(inner_type, v) }
  when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
    k_type = Regexp.last_match[:k_type]
    v_type = Regexp.last_match[:v_type]
    {}.tap do |hash|
      value.each do |k, v|
        hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
      end
    end
  else # model
    temp_model = CloudsmithApi.const_get(type).new
    temp_model.build_from_hash(value)
  end
end

#_to_hash(value) ⇒ Hash

Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value

Parameters:

  • value (Object)

    Any valid value

Returns:

  • (Hash)

    Returns the value in the form of hash



355
356
357
358
359
360
361
362
363
364
365
366
367
# File 'lib/cloudsmith-api/models/repository_token_request_patch.rb', line 355

def _to_hash(value)
  if value.is_a?(Array)
    value.compact.map { |v| _to_hash(v) }
  elsif value.is_a?(Hash)
    {}.tap do |hash|
      value.each { |k, v| hash[k] = _to_hash(v) }
    end
  elsif value.respond_to? :to_hash
    value.to_hash
  else
    value
  end
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



268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
# File 'lib/cloudsmith-api/models/repository_token_request_patch.rb', line 268

def build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)
  self.class.swagger_types.each_pair do |key, type|
    if type =~ /\AArray<(.*)>/i
      # check to ensure the input is an array given that the attribute
      # is documented as an array but the input is not
      if attributes[self.class.attribute_map[key]].is_a?(Array)
        self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
      end
    elsif !attributes[self.class.attribute_map[key]].nil?
      self.send("#{key}=", _deserialize(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?(o) ⇒ Boolean

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


255
256
257
# File 'lib/cloudsmith-api/models/repository_token_request_patch.rb', line 255

def eql?(o)
  self == o
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



261
262
263
# File 'lib/cloudsmith-api/models/repository_token_request_patch.rb', line 261

def hash
  [eula_required, is_active, limit_bandwidth, limit_bandwidth_unit, limit_date_range_from, limit_date_range_to, limit_num_clients, limit_num_downloads, limit_package_query, limit_path_query, , name, scheduled_reset_at, scheduled_reset_period, token].hash
end

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properties with the reasons



196
197
198
199
# File 'lib/cloudsmith-api/models/repository_token_request_patch.rb', line 196

def list_invalid_properties
  invalid_properties = Array.new
  invalid_properties
end

#to_bodyHash

to_body is an alias to to_hash (backward compatibility)

Returns:

  • (Hash)

    Returns the object in the form of hash



335
336
337
# File 'lib/cloudsmith-api/models/repository_token_request_patch.rb', line 335

def to_body
  to_hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



341
342
343
344
345
346
347
348
349
# File 'lib/cloudsmith-api/models/repository_token_request_patch.rb', line 341

def to_hash
  hash = {}
  self.class.attribute_map.each_pair do |attr, param|
    value = self.send(attr)
    next if value.nil?
    hash[param] = _to_hash(value)
  end
  hash
end

#to_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



329
330
331
# File 'lib/cloudsmith-api/models/repository_token_request_patch.rb', line 329

def to_s
  to_hash.to_s
end

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



203
204
205
206
207
208
209
# File 'lib/cloudsmith-api/models/repository_token_request_patch.rb', line 203

def valid?
  limit_bandwidth_unit_validator = EnumAttributeValidator.new('String', ['Byte', 'Kilobyte', 'Megabyte', 'Gigabyte', 'Terabyte', 'Petabyte', 'Exabyte', 'Zettabyte', 'Yottabyte'])
  return false unless limit_bandwidth_unit_validator.valid?(@limit_bandwidth_unit)
  scheduled_reset_period_validator = EnumAttributeValidator.new('String', ['Never Reset', 'Daily', 'Weekly', 'Fortnightly', 'Monthly', 'Bi-Monthly', 'Quarterly', 'Every 6 months', 'Annual'])
  return false unless scheduled_reset_period_validator.valid?(@scheduled_reset_period)
  true
end